From: Russell King - ARM Linux <linux@armlinux.org.uk>
To: Alex Bounine <alex.bou9@gmail.com>
Cc: Will Deacon <will.deacon@arm.com>, Alexei Colin <acolin@isi.edu>,
Catalin Marinas <catalin.marinas@arm.com>,
Andrew Morton <akpm@linux-foundation.org>,
John Paul Walters <jwalters@isi.edu>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 6/6] arm64: enable RapidIO menu in Kconfig
Date: Tue, 31 Jul 2018 16:52:28 +0100 [thread overview]
Message-ID: <20180731155228.GN17271@n2100.armlinux.org.uk> (raw)
In-Reply-To: <d09cb4f5-768b-acd8-f9b1-d1d320a93564@gmail.com>
On Tue, Jul 31, 2018 at 08:54:14AM -0400, Alex Bounine wrote:
> On 2018-07-31 04:41 AM, Will Deacon wrote:
> >On Mon, Jul 30, 2018 at 06:50:34PM -0400, Alexei Colin wrote:
> >>Platforms with a PCI bus will be offered the RapidIO menu since they may
> >>be want support for a RapidIO PCI device. Platforms without a PCI bus
> >>that might include a RapidIO IP block will need to "select HAS_RAPIDIO"
> >>in the platform-/machine-specific "config ARCH_*" Kconfig entry.
> >>
> >>Tested that kernel builds for arm64 with RapidIO subsystem and
> >>switch drivers enabled, also that the modules load successfully
> >>on a custom Aarch64 Qemu model.
> >>
> >>Cc: Andrew Morton <akpm@linux-foundation.org>
> >>Cc: Russell King <linux@armlinux.org.uk>
> >>Cc: John Paul Walters <jwalters@isi.edu>
> >>Cc: linux-arm-kernel@lists.infradead.org
> >>Cc: linux-kernel@vger.kernel.org,
> >>Signed-off-by: Alexei Colin <acolin@isi.edu>
> >>---
> >> arch/arm64/Kconfig | 2 ++
> >> 1 file changed, 2 insertions(+)
> >
> >Thanks, this looks much cleaner than before:
> >
> >Acked-by: Will Deacon <will.deacon@arm.com>
> >
> >The only thing I'm not sure about is why we don't just select HAS_RAPIDIO
> >unconditionally in the arm64 Kconfig. Does selecting only that option
> >actually pull in new code to the build?
> >
> HAS_RAPIDIO option is intended for SOCs that have built in SRIO controllers,
> like TI KeyStoneII or FPGAs. Because RapidIO subsystem core is required
> during RapidIO port driver initialization, having separate option allows us
> to control available build options for RapidIO core and port driver (bool
> vs. tristate) and disable module option if port driver is configured as
> built-in.
Your explanation doesn't make much sense to me.
RAPIDIO is the bus-level support, right? So drivers that depend on
the bus-level support should depend on RAPIDIO, and so, if RAPIDIO
is configured as a module, they will also be allowed to be disabled
or a module, but not built-in if tristate. If it is boolean, and
causes the driver to be built-in to the kernel, then you need to use
"RAPIDIO=y" so that it's dependency is only satisfied when the core
is built-in.
HAS_RAPIDIO gives the impression that it defines whether or not
the rapidio core code is allowable or not - it doesn't suggest that
it has anything to do with drivers. However, reading the PowerPC
Kconfig files, it seems to be used that way. That's confusing, and
ought to be fixed. From what I can tell, it's only used for FSL_RIO,
so I suggest that gets converted to:
config HAS_RAPIDIO
bool PCI
config RAPIDIO
tristate "RapidIO support"
depends on HAS_RAPIDIO
config HAS_FSL_RIO
bool
select HAS_RAPIDIO
config FSL_RIO
bool "Freescale Embedded SRIO Controller support"
depends on RAPIDIO = y && HAS_FSL_RIO
This frees up HAS_RAPIDIO to operate as one would expect - to define
whether or not RAPIDIO should be offered. This also allows:
config ARM
select HAS_RAPIDIO if PCI
to be added to arch/arm/Kconfig if appropriate. However, I'm not yet
convinced that _just because_ we have PCI does not mean that RAPIDIO
should be offered. I stated a series of questions about that last
Tuesday in response to an individual patch adding rapidio to arch/arm,
and that email seems to have been ignored - at least as far as the
questions go.
Please ensure that you respond to your reviewers questions, otherwise
you will start receiving plain NAKs to your patches instead (since
it becomes a waste of time for reviewers to put any further effort
in to explain why they don't like the patch.)
Thanks.
--
RMK's Patch system: http://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line in suburbia: sync at 13.8Mbps down 630kbps up
According to speedtest.net: 13Mbps down 490kbps up
next prev parent reply other threads:[~2018-07-31 15:52 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-30 22:50 [PATCH 0/6] rapidio: move Kconfig menu definition to subsystem Alexei Colin
2018-07-30 22:50 ` [PATCH 1/6] rapidio: define top Kconfig menu in driver subtree Alexei Colin
2018-07-30 22:50 ` [PATCH 2/6] x86: factor out RapidIO Kconfig menu Alexei Colin
2018-07-30 22:55 ` [PATCH 2/6] x86: factor out RapidIO Kconfig menu; Thomas Gleixner
2018-07-31 14:30 ` Alex Bounine
2018-07-30 22:50 ` [PATCH 3/6] powerpc: factor out RapidIO Kconfig menu entry Alexei Colin
2018-07-31 9:45 ` Michael Ellerman
2018-07-30 22:50 ` [PATCH 4/6] mips: factor out RapidIO Kconfig entry Alexei Colin
2018-07-31 8:13 ` Alexander Sverdlin
2018-07-30 22:50 ` [PATCH 5/6] arm: enable RapidIO menu in Kconfig Alexei Colin
2018-07-31 12:04 ` Christoph Hellwig
2018-07-31 12:43 ` Alex Bounine
2018-07-31 12:48 ` Russell King - ARM Linux
2018-07-31 13:15 ` Alex Bounine
2018-07-30 22:50 ` [PATCH 6/6] arm64: " Alexei Colin
2018-07-31 8:41 ` Will Deacon
2018-07-31 12:54 ` Alex Bounine
2018-07-31 15:52 ` Russell King - ARM Linux [this message]
2018-07-31 17:59 ` Alex Bounine
2018-07-31 18:18 ` Russell King - ARM Linux
2018-07-31 20:01 ` Alex Bounine
2018-08-01 10:38 ` Russell King - ARM Linux
2018-08-01 13:54 ` Alexei Colin
2018-08-01 15:14 ` Alex Bounine
2018-07-31 20:29 ` Alex Bounine
2018-07-31 20:46 ` Alexei Colin
2018-08-01 13:57 ` Alex Bounine
2018-08-01 9:10 ` Will Deacon
2018-07-30 22:59 ` [PATCH 0/6] rapidio: move Kconfig menu definition to subsystem Russell King - ARM Linux
2018-07-31 1:08 ` Randy Dunlap
2018-07-31 14:26 ` Alex Bounine
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180731155228.GN17271@n2100.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=acolin@isi.edu \
--cc=akpm@linux-foundation.org \
--cc=alex.bou9@gmail.com \
--cc=catalin.marinas@arm.com \
--cc=jwalters@isi.edu \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=will.deacon@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®