diff options
author | Olof Johansson <olof@lixom.net> | 2012-11-21 03:48:30 -0500 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-11-21 05:13:09 -0500 |
commit | ea091f6dbd2e5df03b6bbb11467c553ebedd16a2 (patch) | |
tree | ca56b1edbba82dd2ff2e02bc21af279893955c4d /arch/arm/Kconfig | |
parent | ef173de1239afa32e7209c375a703da8c6cc7a7c (diff) | |
parent | 805504abdc73cfc745a5fee3d616cdb24bb2a68c (diff) |
Merge tag 'bcm2835-for-3.8-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi into next/soc
From Stephen Warren:
ARM: bcm2835: core SoC enhancements
A machine restart/reboot implementation is added. The GPIO/pinmux
controller is instantiated, and dummy gpio.h added.
* tag 'bcm2835-for-3.8-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi:
ARM: bcm2835: enable GPIO/pinctrl
ARM: bcm2835: implement machine restart hook
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 6c1d0198553d..69d2844dd507 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -336,7 +336,7 @@ config ARCH_AT91 | |||
336 | 336 | ||
337 | config ARCH_BCM2835 | 337 | config ARCH_BCM2835 |
338 | bool "Broadcom BCM2835 family" | 338 | bool "Broadcom BCM2835 family" |
339 | select ARCH_WANT_OPTIONAL_GPIOLIB | 339 | select ARCH_REQUIRE_GPIOLIB |
340 | select ARM_AMBA | 340 | select ARM_AMBA |
341 | select ARM_ERRATA_411920 | 341 | select ARM_ERRATA_411920 |
342 | select ARM_TIMER_SP804 | 342 | select ARM_TIMER_SP804 |
@@ -344,7 +344,10 @@ config ARCH_BCM2835 | |||
344 | select COMMON_CLK | 344 | select COMMON_CLK |
345 | select CPU_V6 | 345 | select CPU_V6 |
346 | select GENERIC_CLOCKEVENTS | 346 | select GENERIC_CLOCKEVENTS |
347 | select GENERIC_GPIO | ||
347 | select MULTI_IRQ_HANDLER | 348 | select MULTI_IRQ_HANDLER |
349 | select PINCTRL | ||
350 | select PINCTRL_BCM2835 | ||
348 | select SPARSE_IRQ | 351 | select SPARSE_IRQ |
349 | select USE_OF | 352 | select USE_OF |
350 | help | 353 | help |