mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
3a5e854e09
Move the Nomadik GPIO driver to plat-nomadik so that it can also be used on the Ux500 platform. The mach-nomadik include/mach/gpio.h is replaced by one that includes the one now in plat-nomadik, so that code doesn't need to include the one in plat specifically, and can instead use <linux/gpio.h> as usual. Acked-by: Alessandro Rubini <rubini@unipv.it> Acked-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
28 lines
588 B
Plaintext
28 lines
588 B
Plaintext
# We keep common IP's here for Nomadik and other similar
|
|
# familiy of processors from ST-Ericsson. At the moment we have
|
|
# just MTU, others to follow soon.
|
|
|
|
config PLAT_NOMADIK
|
|
bool
|
|
depends on ARCH_NOMADIK || ARCH_U8500
|
|
default y
|
|
help
|
|
Common platform code for Nomadik and other ST-Ericsson
|
|
platforms.
|
|
|
|
if PLAT_NOMADIK
|
|
|
|
config HAS_MTU
|
|
bool
|
|
help
|
|
Support for Multi Timer Unit. MTU provides access
|
|
to multiple interrupt generating programmable
|
|
32-bit free running decrementing counters.
|
|
|
|
config NOMADIK_GPIO
|
|
bool
|
|
help
|
|
Support for the Nomadik GPIO controller.
|
|
|
|
endif
|