From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: linux-sh@vger.kernel.org
Subject: Re: R-CAR's arch
Date: Thu, 22 May 2014 22:55:07 +0000 [thread overview]
Message-ID: <3237127.tC8Z2zlHPX@avalon> (raw)
In-Reply-To: <20140522101938.51fec16f@endymion.delvare>
Hi Jean,
On Thursday 22 May 2014 10:19:38 Jean Delvare wrote:
> Hi Simon and all,
>
> I am in the process of cleaning up dependencies for hardware-specific
> linux drivers. I'm looking into R-CAR drivers now and I have to admit I
> am confused. Some drivers (drm, gpio) depend on ARM, some (i2c, gen2
> pci, thermal, sata) depend on ARCH_SHMOBILE, sound depends on SUPERH ||
> ARCH_SHMOBILE, gen2 usb depends on ARCH_R8A7790 || ARCH_R8A7791, while
> gen1 usb and video-in have no architecture/platform dependency at all.
>
> Shouldn't all these drivers have the same architecture/platform
> dependency? If so, what would the correct one be?
>
> I admit I don't really understand how SHMOBILE relates to ARM and
> SUPERH (which so far I thought were two different and totally
> independent architectures, but apparently I was wrong?)
CONFIG_SUPERH is defined for arch/sh only, and CONFIG_ARCH_SHMOBILE for
arch/arm/mach-shmobile.
The Kconfig dependencies for Renesas drivers currently model two different
things, which are what the driver requires in order to compile and which
architecture(s) the driver can run on.
There's no question regarding the former. If a driver can only be compiled on
arch/sh it must list CONFIG_SUPERH as a dependency. Ditto for CONFIG_ARM or
CONFIG_ARCH_SHMOBILE. However, this should be a pretty uncommon case, as most
drivers should have no compile dependency on a specific architecture (the
exception here is when a driver uses an API not available on all architectures
for which no specific Kconfig symbol exists).
The latter is more debatable. We've started by listing platforms on which the
hardware is known to exist as dependencies to avoid cluttering the kernel
configuration with useless options. However, this excludes drivers for
automated builds that can be very useful to report compilation bugs early.
We've thus started moving to adding a || COMPILE_TEST dependency to enable
driver compilation even on architectures where the device isn't available
(only when the driver is expected to compile properly of course).
We've decided to split dependencies on two (or more) lines, one for the
runtime dependencies and one or more for the compile time dependencies. A good
example of that is the SPI MSIOF driver.
config SPI_SH_MSIOF
tristate "SuperH MSIOF SPI controller"
depends on HAVE_CLK
depends on SUPERH || ARCH_SHMOBILE || COMPILE_TEST
help
SPI driver for SuperH and SH Mobile MSIOF blocks.
The first "depends on" line states that the driver requires the clock API to
compile, and the second line states that the device is available on SUPERH and
ARCH_SHMOBILE only, but can be compiled on other architectures when
COMPILE_TEST is enabled.
I'd like to generalize this pattern, please feel free to help :-)
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2014-05-22 22:55 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-22 8:19 R-CAR's arch Jean Delvare
2014-05-22 22:55 ` Laurent Pinchart [this message]
2014-05-23 0:37 ` Simon Horman
2014-05-23 8:08 ` Jean Delvare
2014-05-23 8:23 ` Jean Delvare
2014-05-23 8:39 ` Geert Uytterhoeven
2014-05-23 8:52 ` Jean Delvare
2014-05-23 11:31 ` Sergei Shtylyov
2014-05-23 11:45 ` Jean Delvare
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=3237127.tC8Z2zlHPX@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=linux-sh@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.