diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-23 20:37:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-23 20:37:40 -0400 |
commit | 24613ff927500513eae7e84bb6fc6c3ef268e452 (patch) | |
tree | ef26480a8f123a12690c0f226870cf69dc6ffb55 /drivers/pcmcia/Kconfig | |
parent | 0d19eac12031680dc5f5402921fb0c388e42f619 (diff) | |
parent | ff80aa57cc9946d3dafe65119d576b3d11304303 (diff) |
Merge branch 'pcmcia' of git://git.linaro.org/people/rmk/linux-arm
Pull #3 ARM updates from Russell King:
"This adds gpio support to soc_common, allowing an amount of code to be
deleted from each PCMCIA socket driver for the PXA/SA11x0 SoCs."
* 'pcmcia' of git://git.linaro.org/people/rmk/linux-arm:
PCMCIA: sa1111: rename sa1111 socket drivers to have sa1111_ prefix.
PCMCIA: make lubbock socket driver part of sa1111_cs
PCMCIA: add Kconfig control for building sa11xx_base.c
PCMCIA: sa1111: jornada720: no need to disable IRQs around sa1111_set_io
PCMCIA: sa1111: pass along sa1111_pcmcia_configure_socket() failure code
PCMCIA: soc_common: remove explicit wrprot initialization in socket drivers
PCMCIA: soc_common: remove soc_pcmcia_*_irqs functions
PCMCIA: sa11x0: h3600: convert to use new irq/gpio management
PCMCIA: sa11x0: simpad: convert to use new irq/gpio management
PCMCIA: sa11x0: shannon: convert to use new irq/gpio management
PCMCIA: sa11x0: nanoengine: convert reset handling to use GPIO subsystem
PCMCIA: sa11x0: nanoengine: convert to use new irq/gpio management
PCMCIA: sa11x0: cerf: convert reset handling to use GPIO subsystem
PCMCIA: sa11x0: cerf: convert to use new irq/gpio management
PCMCIA: sa11x0: assabet: convert to use new irq/gpio management
PCMCIA: sa1111: use new per-socket irq/gpio infrastructure
PCMCIA: pxa: convert PXA socket drivers to use new irq/gpio management
PCMCIA: soc_common: add GPIO support for card status signals
PCMCIA: soc_common: move common initialization into soc_common
Diffstat (limited to 'drivers/pcmcia/Kconfig')
-rw-r--r-- | drivers/pcmcia/Kconfig | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/pcmcia/Kconfig b/drivers/pcmcia/Kconfig index f9e3fb3a285b..bba3ab2066ee 100644 --- a/drivers/pcmcia/Kconfig +++ b/drivers/pcmcia/Kconfig | |||
@@ -183,10 +183,14 @@ config PCMCIA_BCM63XX | |||
183 | config PCMCIA_SOC_COMMON | 183 | config PCMCIA_SOC_COMMON |
184 | tristate | 184 | tristate |
185 | 185 | ||
186 | config PCMCIA_SA11XX_BASE | ||
187 | tristate | ||
188 | |||
186 | config PCMCIA_SA1100 | 189 | config PCMCIA_SA1100 |
187 | tristate "SA1100 support" | 190 | tristate "SA1100 support" |
188 | depends on ARM && ARCH_SA1100 && PCMCIA | 191 | depends on ARM && ARCH_SA1100 && PCMCIA |
189 | select PCMCIA_SOC_COMMON | 192 | select PCMCIA_SOC_COMMON |
193 | select PCMCIA_SA11XX_BASE | ||
190 | help | 194 | help |
191 | Say Y here to include support for SA11x0-based PCMCIA or CF | 195 | Say Y here to include support for SA11x0-based PCMCIA or CF |
192 | sockets, found on HP iPAQs, Yopy, and other StrongARM(R)/ | 196 | sockets, found on HP iPAQs, Yopy, and other StrongARM(R)/ |
@@ -196,8 +200,9 @@ config PCMCIA_SA1100 | |||
196 | 200 | ||
197 | config PCMCIA_SA1111 | 201 | config PCMCIA_SA1111 |
198 | tristate "SA1111 support" | 202 | tristate "SA1111 support" |
199 | depends on ARM && ARCH_SA1100 && SA1111 && PCMCIA | 203 | depends on ARM && SA1111 && PCMCIA |
200 | select PCMCIA_SOC_COMMON | 204 | select PCMCIA_SOC_COMMON |
205 | select PCMCIA_SA11XX_BASE if ARCH_SA1100 | ||
201 | help | 206 | help |
202 | Say Y here to include support for SA1111-based PCMCIA or CF | 207 | Say Y here to include support for SA1111-based PCMCIA or CF |
203 | sockets, found on the Jornada 720, Graphicsmaster and other | 208 | sockets, found on the Jornada 720, Graphicsmaster and other |
@@ -213,6 +218,7 @@ config PCMCIA_PXA2XX | |||
213 | || ARCOM_PCMCIA || ARCH_PXA_ESERIES || MACH_STARGATE2 \ | 218 | || ARCOM_PCMCIA || ARCH_PXA_ESERIES || MACH_STARGATE2 \ |
214 | || MACH_VPAC270 || MACH_BALLOON3 || MACH_COLIBRI \ | 219 | || MACH_VPAC270 || MACH_BALLOON3 || MACH_COLIBRI \ |
215 | || MACH_COLIBRI320) | 220 | || MACH_COLIBRI320) |
221 | select PCMCIA_SA1111 if ARCH_LUBBOCK && SA1111 | ||
216 | select PCMCIA_SOC_COMMON | 222 | select PCMCIA_SOC_COMMON |
217 | help | 223 | help |
218 | Say Y here to include support for the PXA2xx PCMCIA controller | 224 | Say Y here to include support for the PXA2xx PCMCIA controller |