2019-05-19 12:07:45 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2005-04-16 22:20:36 +00:00
|
|
|
#
|
2005-07-08 00:58:58 +00:00
|
|
|
# PCCARD (PCMCIA/CardBus) bus subsystem configuration
|
2005-04-16 22:20:36 +00:00
|
|
|
#
|
|
|
|
|
2007-10-16 08:23:48 +00:00
|
|
|
menuconfig PCCARD
|
2005-04-16 22:20:36 +00:00
|
|
|
tristate "PCCard (PCMCIA/CardBus) support"
|
2020-06-13 16:50:22 +00:00
|
|
|
help
|
2005-04-16 22:20:36 +00:00
|
|
|
Say Y here if you want to attach PCMCIA- or PC-cards to your Linux
|
|
|
|
computer. These are credit-card size devices such as network cards,
|
|
|
|
modems or hard drives often used with laptops computers. There are
|
2005-06-27 23:28:47 +00:00
|
|
|
actually two varieties of these cards: 16 bit PCMCIA and 32 bit
|
|
|
|
CardBus cards.
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
To compile this driver as modules, choose M here: the
|
|
|
|
module will be called pcmcia_core.
|
|
|
|
|
|
|
|
if PCCARD
|
|
|
|
|
|
|
|
config PCMCIA
|
|
|
|
tristate "16-bit PCMCIA support"
|
2023-07-07 13:58:48 +00:00
|
|
|
depends on HAS_IOMEM
|
2005-06-27 23:28:57 +00:00
|
|
|
select CRC32
|
2005-04-16 22:20:36 +00:00
|
|
|
default y
|
2020-06-13 16:50:22 +00:00
|
|
|
help
|
2005-04-16 22:20:36 +00:00
|
|
|
This option enables support for 16-bit PCMCIA cards. Most older
|
|
|
|
PC-cards are such 16-bit PCMCIA cards, so unless you know you're
|
|
|
|
only using 32-bit CardBus cards, say Y or M here.
|
|
|
|
|
2005-06-27 23:28:47 +00:00
|
|
|
To use 16-bit PCMCIA cards, you will need supporting software in
|
|
|
|
most cases. (see the file <file:Documentation/Changes> for
|
|
|
|
location and details).
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
To compile this driver as modules, choose M here: the
|
|
|
|
module will be called pcmcia.
|
|
|
|
|
|
|
|
If unsure, say Y.
|
|
|
|
|
2005-06-27 23:28:14 +00:00
|
|
|
config PCMCIA_LOAD_CIS
|
2012-10-02 18:18:44 +00:00
|
|
|
bool "Load CIS updates from userspace"
|
|
|
|
depends on PCMCIA
|
2005-06-27 23:28:14 +00:00
|
|
|
select FW_LOADER
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Some PCMCIA cards require an updated Card Information Structure (CIS)
|
|
|
|
to be loaded from userspace to work correctly. If you say Y here,
|
|
|
|
and your userspace is arranged correctly, this will be loaded
|
|
|
|
automatically using the in-kernel firmware loader and the hotplug
|
|
|
|
subsystem, instead of relying on cardmgr from pcmcia-cs to do so.
|
|
|
|
|
|
|
|
If unsure, say Y.
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
config CARDBUS
|
2009-12-07 21:11:45 +00:00
|
|
|
bool "32-bit CardBus support"
|
2005-04-16 22:20:36 +00:00
|
|
|
depends on PCI
|
|
|
|
default y
|
2020-06-13 16:50:22 +00:00
|
|
|
help
|
2005-04-16 22:20:36 +00:00
|
|
|
CardBus is a bus mastering architecture for PC-cards, which allows
|
|
|
|
for 32 bit PC-cards (the original PCMCIA standard specifies only
|
|
|
|
a 16 bit wide bus). Many newer PC-cards are actually CardBus cards.
|
|
|
|
|
|
|
|
To use 32 bit PC-cards, you also need a CardBus compatible host
|
|
|
|
bridge. Virtually all modern PCMCIA bridges do this, and most of
|
|
|
|
them are "yenta-compatible", so say Y or M there, too.
|
|
|
|
|
|
|
|
If unsure, say Y.
|
|
|
|
|
2018-11-28 13:57:23 +00:00
|
|
|
config PCMCIA_MAX1600
|
|
|
|
tristate
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
comment "PC-card bridges"
|
|
|
|
|
|
|
|
config YENTA
|
|
|
|
tristate "CardBus yenta-compatible bridge support"
|
2005-07-08 00:59:09 +00:00
|
|
|
depends on PCI
|
2011-01-20 22:44:16 +00:00
|
|
|
select CARDBUS if !EXPERT
|
2015-03-11 13:21:23 +00:00
|
|
|
select PCCARD_NONSTATIC if PCMCIA != n
|
2020-06-13 16:50:22 +00:00
|
|
|
help
|
2005-04-16 22:20:36 +00:00
|
|
|
This option enables support for CardBus host bridges. Virtually
|
2009-12-07 21:11:45 +00:00
|
|
|
all modern PCMCIA bridges are CardBus compatible. A "bridge" is
|
|
|
|
the hardware inside your computer that PCMCIA cards are plugged
|
2005-04-16 22:20:36 +00:00
|
|
|
into.
|
|
|
|
|
|
|
|
To compile this driver as modules, choose M here: the
|
|
|
|
module will be called yenta_socket.
|
|
|
|
|
|
|
|
If unsure, say Y.
|
|
|
|
|
2005-11-03 20:12:14 +00:00
|
|
|
config YENTA_O2
|
|
|
|
default y
|
2011-01-20 22:44:16 +00:00
|
|
|
bool "Special initialization for O2Micro bridges" if EXPERT
|
2005-11-03 20:12:14 +00:00
|
|
|
depends on YENTA
|
|
|
|
|
|
|
|
config YENTA_RICOH
|
|
|
|
default y
|
2011-01-20 22:44:16 +00:00
|
|
|
bool "Special initialization for Ricoh bridges" if EXPERT
|
2005-11-03 20:12:14 +00:00
|
|
|
depends on YENTA
|
|
|
|
|
|
|
|
config YENTA_TI
|
|
|
|
default y
|
2011-01-20 22:44:16 +00:00
|
|
|
bool "Special initialization for TI and EnE bridges" if EXPERT
|
2005-11-03 20:12:14 +00:00
|
|
|
depends on YENTA
|
|
|
|
|
|
|
|
config YENTA_ENE_TUNE
|
|
|
|
default y
|
2011-01-20 22:44:16 +00:00
|
|
|
bool "Auto-tune EnE bridges for CB cards" if EXPERT
|
2005-11-03 20:12:14 +00:00
|
|
|
depends on YENTA_TI && CARDBUS
|
|
|
|
|
|
|
|
config YENTA_TOSHIBA
|
|
|
|
default y
|
2011-01-20 22:44:16 +00:00
|
|
|
bool "Special initialization for Toshiba ToPIC bridges" if EXPERT
|
2005-11-03 20:12:14 +00:00
|
|
|
depends on YENTA
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
config PD6729
|
|
|
|
tristate "Cirrus PD6729 compatible bridge support"
|
2023-05-22 10:50:31 +00:00
|
|
|
depends on PCMCIA && PCI && HAS_IOPORT
|
2015-03-11 13:21:23 +00:00
|
|
|
select PCCARD_NONSTATIC
|
2005-04-16 22:20:36 +00:00
|
|
|
help
|
|
|
|
This provides support for the Cirrus PD6729 PCI-to-PCMCIA bridge
|
|
|
|
device, found in some older laptops and PCMCIA card readers.
|
|
|
|
|
|
|
|
config I82092
|
|
|
|
tristate "i82092 compatible bridge support"
|
2023-05-22 10:50:31 +00:00
|
|
|
depends on PCMCIA && PCI && HAS_IOPORT
|
2015-03-11 13:21:23 +00:00
|
|
|
select PCCARD_NONSTATIC
|
2005-04-16 22:20:36 +00:00
|
|
|
help
|
|
|
|
This provides support for the Intel I82092AA PCI-to-PCMCIA bridge device,
|
|
|
|
found in some older laptops and more commonly in evaluation boards for the
|
|
|
|
chip.
|
|
|
|
|
|
|
|
config I82365
|
|
|
|
tristate "i82365 compatible bridge support"
|
|
|
|
depends on PCMCIA && ISA
|
|
|
|
select PCCARD_NONSTATIC
|
|
|
|
help
|
|
|
|
Say Y here to include support for ISA-bus PCMCIA host bridges that
|
|
|
|
are register compatible with the Intel i82365. These are found on
|
|
|
|
older laptops and ISA-bus card readers for desktop systems. A
|
|
|
|
"bridge" is the hardware inside your computer that PCMCIA cards are
|
|
|
|
plugged into. If unsure, say N.
|
|
|
|
|
|
|
|
config TCIC
|
|
|
|
tristate "Databook TCIC host bridge support"
|
2005-09-25 06:12:40 +00:00
|
|
|
depends on PCMCIA && ISA
|
2005-04-16 22:20:36 +00:00
|
|
|
select PCCARD_NONSTATIC
|
|
|
|
help
|
|
|
|
Say Y here to include support for the Databook TCIC family of PCMCIA
|
|
|
|
host bridges. These are only found on a handful of old systems.
|
|
|
|
"Bridge" is the name used for the hardware inside your computer that
|
|
|
|
PCMCIA cards are plugged into. If unsure, say N.
|
|
|
|
|
2009-10-04 12:55:27 +00:00
|
|
|
config PCMCIA_ALCHEMY_DEVBOARD
|
|
|
|
tristate "Alchemy Db/Pb1xxx PCMCIA socket services"
|
2022-01-23 17:40:31 +00:00
|
|
|
depends on MIPS_DB1XXX && PCMCIA
|
2009-10-04 12:55:27 +00:00
|
|
|
help
|
|
|
|
Enable this driver of you want PCMCIA support on your Alchemy
|
2011-11-10 12:03:26 +00:00
|
|
|
Db1000, Db/Pb1100, Db/Pb1500, Db/Pb1550, Db/Pb1200, DB1300
|
|
|
|
board. NOT suitable for the PB1000!
|
2009-10-04 12:55:27 +00:00
|
|
|
|
|
|
|
This driver is also available as a module called db1xxx_ss.ko
|
|
|
|
|
2009-10-04 12:55:29 +00:00
|
|
|
config PCMCIA_XXS1500
|
|
|
|
tristate "MyCable XXS1500 PCMCIA socket support"
|
|
|
|
depends on PCMCIA && MIPS_XXS1500
|
|
|
|
help
|
|
|
|
Support for the PCMCIA/CF socket interface on MyCable XXS1500
|
|
|
|
systems.
|
|
|
|
|
|
|
|
This driver is also available as a module called xxs1500_ss.ko
|
|
|
|
|
2009-09-28 12:49:43 +00:00
|
|
|
config PCMCIA_BCM63XX
|
|
|
|
tristate "bcm63xx pcmcia support"
|
|
|
|
depends on BCM63XX && PCMCIA
|
|
|
|
|
2009-03-26 21:14:19 +00:00
|
|
|
config PCMCIA_SOC_COMMON
|
2009-12-06 16:58:50 +00:00
|
|
|
tristate
|
2009-03-26 21:14:19 +00:00
|
|
|
|
2012-01-17 22:36:45 +00:00
|
|
|
config PCMCIA_SA11XX_BASE
|
|
|
|
tristate
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
config PCMCIA_SA1100
|
|
|
|
tristate "SA1100 support"
|
|
|
|
depends on ARM && ARCH_SA1100 && PCMCIA
|
2009-03-26 21:14:19 +00:00
|
|
|
select PCMCIA_SOC_COMMON
|
2012-01-17 22:36:45 +00:00
|
|
|
select PCMCIA_SA11XX_BASE
|
2005-04-16 22:20:36 +00:00
|
|
|
help
|
|
|
|
Say Y here to include support for SA11x0-based PCMCIA or CF
|
|
|
|
sockets, found on HP iPAQs, Yopy, and other StrongARM(R)/
|
|
|
|
Xscale(R) embedded machines.
|
|
|
|
|
|
|
|
This driver is also available as a module called sa1100_cs.
|
|
|
|
|
|
|
|
config PCMCIA_SA1111
|
|
|
|
tristate "SA1111 support"
|
2012-01-17 22:43:20 +00:00
|
|
|
depends on ARM && SA1111 && PCMCIA
|
2009-03-26 21:14:19 +00:00
|
|
|
select PCMCIA_SOC_COMMON
|
2022-09-30 14:23:21 +00:00
|
|
|
select PCMCIA_SA11XX_BASE
|
2018-11-28 13:57:23 +00:00
|
|
|
select PCMCIA_MAX1600 if ASSABET_NEPONSET
|
2005-04-16 22:20:36 +00:00
|
|
|
help
|
|
|
|
Say Y here to include support for SA1111-based PCMCIA or CF
|
|
|
|
sockets, found on the Jornada 720, Graphicsmaster and other
|
|
|
|
StrongARM(R)/Xscale(R) embedded machines.
|
|
|
|
|
|
|
|
This driver is also available as a module called sa1111_cs.
|
|
|
|
|
|
|
|
config PCMCIA_PXA2XX
|
|
|
|
tristate "PXA2xx support"
|
2022-09-30 14:23:21 +00:00
|
|
|
depends on ARM && ARCH_PXA && PCMCIA && PXA_SHARPSL
|
2009-03-26 21:14:19 +00:00
|
|
|
select PCMCIA_SOC_COMMON
|
2005-04-16 22:20:36 +00:00
|
|
|
help
|
|
|
|
Say Y here to include support for the PXA2xx PCMCIA controller
|
|
|
|
|
2009-10-23 10:56:46 +00:00
|
|
|
config PCMCIA_DEBUG
|
|
|
|
bool "Enable debugging"
|
|
|
|
depends on (PCMCIA_SA1111 || PCMCIA_SA1100 || PCMCIA_PXA2XX)
|
|
|
|
help
|
|
|
|
Say Y here to enable debugging for the SoC PCMCIA layer.
|
|
|
|
You will need to choose the debugging level either via the
|
|
|
|
kernel command line, or module options depending whether
|
|
|
|
you build the drivers as modules.
|
|
|
|
|
|
|
|
The kernel command line options are:
|
|
|
|
sa11xx_core.pc_debug=N
|
|
|
|
pxa2xx_core.pc_debug=N
|
|
|
|
|
|
|
|
The module option is called pc_debug=N
|
|
|
|
|
|
|
|
In all the above examples, N is the debugging verbosity
|
|
|
|
level.
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
config PCMCIA_PROBE
|
|
|
|
bool
|
2013-06-16 18:42:05 +00:00
|
|
|
default y if ISA && !ARCH_SA1100 && !PARISC
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-09 20:03:28 +00:00
|
|
|
config OMAP_CF
|
|
|
|
tristate "OMAP CompactFlash Controller"
|
2019-08-05 21:08:58 +00:00
|
|
|
depends on PCMCIA
|
|
|
|
depends on ARCH_OMAP16XX || (ARM && COMPILE_TEST)
|
2005-09-09 20:03:28 +00:00
|
|
|
help
|
|
|
|
Say Y here to support the CompactFlash controller on OMAP.
|
|
|
|
Note that this doesn't support "True IDE" mode.
|
|
|
|
|
2007-10-17 06:26:20 +00:00
|
|
|
config ELECTRA_CF
|
|
|
|
tristate "Electra CompactFlash Controller"
|
|
|
|
depends on PCMCIA && PPC_PASEMI
|
|
|
|
help
|
|
|
|
Say Y here to support the CompactFlash controller on the
|
|
|
|
PA Semi Electra eval board.
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
config PCCARD_NONSTATIC
|
2010-03-07 15:41:57 +00:00
|
|
|
bool
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-12-07 11:32:20 +00:00
|
|
|
config PCCARD_IODYN
|
|
|
|
bool
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
endif # PCCARD
|