forked from Minki/linux
5317e4d11d
The NOMADIK_GPIO_PM config option is disabled by default, not user visible, and never selected by any other option: the code is therefore unused. The GPIO registers need not be saved and restored since their values are preserved when vAPE (on DB8500) is powered down. Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Reviewed-by: Jonas Aberg <jonas.aberg@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
29 lines
613 B
Plaintext
29 lines
613 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
|
|
select HAVE_SCHED_CLOCK
|
|
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
|