xref: /linux/drivers/mtd/maps/Kconfig (revision 236cdc7bc718566a7e7cb9f763b51a8dcad88cbe)
11da177e4SLinus Torvaldsmenu "Mapping drivers for chip access"
21da177e4SLinus Torvalds	depends on MTD!=n
31da177e4SLinus Torvalds
41da177e4SLinus Torvaldsconfig MTD_COMPLEX_MAPPINGS
51da177e4SLinus Torvalds	bool "Support non-linear mappings of flash chips"
61da177e4SLinus Torvalds	help
71da177e4SLinus Torvalds	  This causes the chip drivers to allow for complicated
81da177e4SLinus Torvalds	  paged mappings of flash chips.
91da177e4SLinus Torvalds
101da177e4SLinus Torvaldsconfig MTD_PHYSMAP
11d8140830SAlexey Korolev	tristate "Flash device in physical memory map"
12d8140830SAlexey Korolev	depends on MTD_CFI || MTD_JEDECPROBE || MTD_ROM || MTD_LPDDR
131da177e4SLinus Torvalds	help
1479b9cd58STakashi YOSHII	  This provides a 'mapping' driver which allows the NOR Flash and
1579b9cd58STakashi YOSHII	  ROM driver code to communicate with chips which are mapped
1679b9cd58STakashi YOSHII	  physically into the CPU's memory. You will need to configure
1779b9cd58STakashi YOSHII	  the physical address and size of the flash chips on your
1879b9cd58STakashi YOSHII	  particular board as well as the bus width, either statically
191da177e4SLinus Torvalds	  with config options or at run-time.
201da177e4SLinus Torvalds
2141bdf960SMike Frysinger	  To compile this driver as a module, choose M here: the
2241bdf960SMike Frysinger	  module will be called physmap.
2341bdf960SMike Frysinger
24dcb3e137SMike Frysingerconfig MTD_PHYSMAP_COMPAT
25dcb3e137SMike Frysinger	bool "Physmap compat support"
26dcb3e137SMike Frysinger	depends on MTD_PHYSMAP
27dcb3e137SMike Frysinger	default n
28dcb3e137SMike Frysinger	help
29dcb3e137SMike Frysinger	  Setup a simple mapping via the Kconfig options.  Normally the
30dcb3e137SMike Frysinger	  physmap configuration options are done via your board's
31dcb3e137SMike Frysinger	  resource file.
32dcb3e137SMike Frysinger
33dcb3e137SMike Frysinger	  If unsure, say N here.
34dcb3e137SMike Frysinger
351da177e4SLinus Torvaldsconfig MTD_PHYSMAP_START
361da177e4SLinus Torvalds	hex "Physical start address of flash mapping"
37dcb3e137SMike Frysinger	depends on MTD_PHYSMAP_COMPAT
381da177e4SLinus Torvalds	default "0x8000000"
391da177e4SLinus Torvalds	help
401da177e4SLinus Torvalds	  This is the physical memory location at which the flash chips
411da177e4SLinus Torvalds	  are mapped on your particular target board. Refer to the
421da177e4SLinus Torvalds	  memory map which should hopefully be in the documentation for
431da177e4SLinus Torvalds	  your board.
441da177e4SLinus Torvalds	  Ignore this option if you use run-time physmap configuration
451da177e4SLinus Torvalds	  (i.e., run-time calling physmap_configure()).
461da177e4SLinus Torvalds
471da177e4SLinus Torvaldsconfig MTD_PHYSMAP_LEN
481da177e4SLinus Torvalds	hex "Physical length of flash mapping"
49dcb3e137SMike Frysinger	depends on MTD_PHYSMAP_COMPAT
5073566edfSLennert Buytenhek	default "0"
511da177e4SLinus Torvalds	help
521da177e4SLinus Torvalds	  This is the total length of the mapping of the flash chips on
531da177e4SLinus Torvalds	  your particular board. If there is space, or aliases, in the
541da177e4SLinus Torvalds	  physical memory map between the chips, this could be larger
551da177e4SLinus Torvalds	  than the total amount of flash present. Refer to the memory
561da177e4SLinus Torvalds	  map which should hopefully be in the documentation for your
571da177e4SLinus Torvalds	  board.
581da177e4SLinus Torvalds	  Ignore this option if you use run-time physmap configuration
591da177e4SLinus Torvalds	  (i.e., run-time calling physmap_configure()).
601da177e4SLinus Torvalds
611da177e4SLinus Torvaldsconfig MTD_PHYSMAP_BANKWIDTH
621da177e4SLinus Torvalds	int "Bank width in octets"
63dcb3e137SMike Frysinger	depends on MTD_PHYSMAP_COMPAT
641da177e4SLinus Torvalds	default "2"
651da177e4SLinus Torvalds	help
661da177e4SLinus Torvalds	  This is the total width of the data bus of the flash devices
671da177e4SLinus Torvalds	  in octets. For example, if you have a data bus width of 32
6801dd2fbfSMatt LaPlante	  bits, you would set the bus width octet value to 4. This is
691da177e4SLinus Torvalds	  used internally by the CFI drivers.
701da177e4SLinus Torvalds	  Ignore this option if you use run-time physmap configuration
711da177e4SLinus Torvalds	  (i.e., run-time calling physmap_configure()).
721da177e4SLinus Torvalds
73a2c2fe4bSVitaly Woolconfig MTD_PHYSMAP_OF
74a982ac06SMatt LaPlante	tristate "Flash device in physical memory map based on OF description"
75*236cdc7bSRob Herring	depends on OF && (MTD_CFI || MTD_JEDECPROBE || MTD_ROM)
76a2c2fe4bSVitaly Wool	help
77a2c2fe4bSVitaly Wool	  This provides a 'mapping' driver which allows the NOR Flash and
78a2c2fe4bSVitaly Wool	  ROM driver code to communicate with chips which are mapped
79a2c2fe4bSVitaly Wool	  physically into the CPU's memory. The mapping description here is
80a2c2fe4bSVitaly Wool	  taken from OF device tree.
81a2c2fe4bSVitaly Wool
8268aa0fa8SMarc St-Jeanconfig MTD_PMC_MSP_EVM
8368aa0fa8SMarc St-Jean	tristate "CFI Flash device mapped on PMC-Sierra MSP"
8468aa0fa8SMarc St-Jean	depends on PMC_MSP && MTD_CFI
8568aa0fa8SMarc St-Jean	select MTD_PARTITIONS
8668aa0fa8SMarc St-Jean	help
8701dd2fbfSMatt LaPlante	  This provides a 'mapping' driver which supports the way
8868aa0fa8SMarc St-Jean	  in which user-programmable flash chips are connected on the
8901dd2fbfSMatt LaPlante	  PMC-Sierra MSP eval/demo boards.
9068aa0fa8SMarc St-Jean
9168aa0fa8SMarc St-Jeanchoice
9201dd2fbfSMatt LaPlante	prompt "Maximum mappable memory available for flash IO"
9368aa0fa8SMarc St-Jean	depends on MTD_PMC_MSP_EVM
9468aa0fa8SMarc St-Jean	default MSP_FLASH_MAP_LIMIT_32M
9568aa0fa8SMarc St-Jean
9668aa0fa8SMarc St-Jeanconfig MSP_FLASH_MAP_LIMIT_32M
9768aa0fa8SMarc St-Jean	bool "32M"
9868aa0fa8SMarc St-Jean
9968aa0fa8SMarc St-Jeanendchoice
10068aa0fa8SMarc St-Jean
10168aa0fa8SMarc St-Jeanconfig MSP_FLASH_MAP_LIMIT
10268aa0fa8SMarc St-Jean	hex
10368aa0fa8SMarc St-Jean	default "0x02000000"
10468aa0fa8SMarc St-Jean	depends on MSP_FLASH_MAP_LIMIT_32M
10568aa0fa8SMarc St-Jean
1061da177e4SLinus Torvaldsconfig MTD_SUN_UFLASH
1071da177e4SLinus Torvalds	tristate "Sun Microsystems userflash support"
108e0e5de00SAl Viro	depends on SPARC && MTD_CFI && PCI
1091da177e4SLinus Torvalds	help
1101da177e4SLinus Torvalds	  This provides a 'mapping' driver which supports the way in
1111da177e4SLinus Torvalds	  which user-programmable flash chips are connected on various
1121da177e4SLinus Torvalds	  Sun Microsystems boardsets.  This driver will require CFI support
1131da177e4SLinus Torvalds	  in the kernel, so if you did not enable CFI previously, do that now.
1141da177e4SLinus Torvalds
1151da177e4SLinus Torvaldsconfig MTD_SC520CDP
1161da177e4SLinus Torvalds	tristate "CFI Flash device mapped on AMD SC520 CDP"
117fbbc21c6SDaniel Drake	depends on X86 && MTD_CFI && MTD_CONCAT
1181da177e4SLinus Torvalds	help
1191da177e4SLinus Torvalds	  The SC520 CDP board has two banks of CFI-compliant chips and one
1201da177e4SLinus Torvalds	  Dual-in-line JEDEC chip. This 'mapping' driver supports that
1211da177e4SLinus Torvalds	  arrangement, implementing three MTD devices.
1221da177e4SLinus Torvalds
1231da177e4SLinus Torvaldsconfig MTD_NETSC520
1241da177e4SLinus Torvalds	tristate "CFI Flash device mapped on AMD NetSc520"
1251da177e4SLinus Torvalds	depends on X86 && MTD_CFI && MTD_PARTITIONS
1261da177e4SLinus Torvalds	help
1271da177e4SLinus Torvalds	  This enables access routines for the flash chips on the AMD NetSc520
1281da177e4SLinus Torvalds	  demonstration board. If you have one of these boards and would like
1291da177e4SLinus Torvalds	  to use the flash chips on it, say 'Y'.
1301da177e4SLinus Torvalds
1311da177e4SLinus Torvaldsconfig MTD_TS5500
1321da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Technologic Systems TS-5500"
133ef63d004SSean Young	depends on X86
13401ac742dSSean Young	select MTD_PARTITIONS
13501ac742dSSean Young	select MTD_JEDECPROBE
13601ac742dSSean Young	select MTD_CFI_AMDSTD
1371da177e4SLinus Torvalds	help
1381da177e4SLinus Torvalds	  This provides a driver for the on-board flash of the Technologic
139e27a9960SSean Young	  System's TS-5500 board. The 2MB flash is split into 3 partitions
1401da177e4SLinus Torvalds	  which are accessed as separate MTD devices.
1411da177e4SLinus Torvalds
142e27a9960SSean Young	  mtd0 and mtd2 are the two BIOS drives, which use the resident
143e27a9960SSean Young	  flash disk (RFD) flash translation layer.
1441da177e4SLinus Torvalds
1451da177e4SLinus Torvalds	  mtd1 allows you to reprogram your BIOS. BE VERY CAREFUL.
1461da177e4SLinus Torvalds
1471da177e4SLinus Torvalds	  Note that jumper 3 ("Write Enable Drive A") must be set
1484992a9e8SEgry Gábor	  otherwise detection won't succeed.
1491da177e4SLinus Torvalds
1501da177e4SLinus Torvaldsconfig MTD_SBC_GXX
1511da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Arcom SBC-GXx boards"
1521da177e4SLinus Torvalds	depends on X86 && MTD_CFI_INTELEXT && MTD_PARTITIONS && MTD_COMPLEX_MAPPINGS
1531da177e4SLinus Torvalds	help
1541da177e4SLinus Torvalds	  This provides a driver for the on-board flash of Arcom Control
1551da177e4SLinus Torvalds	  Systems' SBC-GXn family of boards, formerly known as SBC-MediaGX.
1561da177e4SLinus Torvalds	  By default the flash is split into 3 partitions which are accessed
1571da177e4SLinus Torvalds	  as separate MTD devices. This board utilizes Intel StrataFlash.
1581da177e4SLinus Torvalds	  More info at
1591da177e4SLinus Torvalds	  <http://www.arcomcontrols.com/products/icp/pc104/processors/SBC_GX1.htm>.
1601da177e4SLinus Torvalds
161e644f7d6STodd Poynorconfig MTD_PXA2XX
162e644f7d6STodd Poynor	tristate "CFI Flash device mapped on Intel XScale PXA2xx based boards"
163e644f7d6STodd Poynor	depends on (PXA25x || PXA27x) && MTD_CFI_INTELEXT
164cbec19aeSNico Pitre	select MTD_PARTITIONS
165cbec19aeSNico Pitre	help
166e644f7d6STodd Poynor	  This provides a driver for the NOR flash attached to a PXA2xx chip.
167cbec19aeSNico Pitre
1681da177e4SLinus Torvaldsconfig MTD_OCTAGON
1691da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Octagon 5066 SBC"
1701da177e4SLinus Torvalds	depends on X86 && MTD_JEDEC && MTD_COMPLEX_MAPPINGS
1711da177e4SLinus Torvalds	help
1721da177e4SLinus Torvalds	  This provides a 'mapping' driver which supports the way in which
1731da177e4SLinus Torvalds	  the flash chips are connected in the Octagon-5066 Single Board
1741da177e4SLinus Torvalds	  Computer. More information on the board is available at
175631dd1a8SJustin P. Mattock	  <http://www.octagonsystems.com/products/5066.aspx>.
1761da177e4SLinus Torvalds
1771da177e4SLinus Torvaldsconfig MTD_VMAX
1781da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Tempustech VMAX SBC301"
1791da177e4SLinus Torvalds	depends on X86 && MTD_JEDEC && MTD_COMPLEX_MAPPINGS
1801da177e4SLinus Torvalds	help
1811da177e4SLinus Torvalds	  This provides a 'mapping' driver which supports the way in which
1821da177e4SLinus Torvalds	  the flash chips are connected in the Tempustech VMAX SBC301 Single
1831da177e4SLinus Torvalds	  Board Computer. More information on the board is available at
1841da177e4SLinus Torvalds	  <http://www.tempustech.com/>.
1851da177e4SLinus Torvalds
1861da177e4SLinus Torvaldsconfig MTD_SCx200_DOCFLASH
1871da177e4SLinus Torvalds	tristate "Flash device mapped with DOCCS on NatSemi SCx200"
1881da177e4SLinus Torvalds	depends on SCx200 && MTD_CFI && MTD_PARTITIONS
1891da177e4SLinus Torvalds	help
1901da177e4SLinus Torvalds	  Enable support for a flash chip mapped using the DOCCS signal on a
1911da177e4SLinus Torvalds	  National Semiconductor SCx200 processor.
1921da177e4SLinus Torvalds
1931da177e4SLinus Torvalds	  If you don't know what to do here, say N.
1941da177e4SLinus Torvalds
1951da177e4SLinus Torvalds	  If compiled as a module, it will be called scx200_docflash.
1961da177e4SLinus Torvalds
1971da177e4SLinus Torvaldsconfig MTD_AMD76XROM
1981da177e4SLinus Torvalds	tristate "BIOS flash chip on AMD76x southbridge"
1991da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
2001da177e4SLinus Torvalds	help
2011da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on AMD76x motherboards
2021da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
2031da177e4SLinus Torvalds
2041da177e4SLinus Torvalds	  BE VERY CAREFUL.
2051da177e4SLinus Torvalds
2061da177e4SLinus Torvaldsconfig MTD_ICHXROM
2071da177e4SLinus Torvalds	tristate "BIOS flash chip on Intel Controller Hub 2/3/4/5"
2081da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
2091da177e4SLinus Torvalds	help
2101da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on ICHX motherboards
2111da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
2121da177e4SLinus Torvalds
2131da177e4SLinus Torvalds	  BE VERY CAREFUL.
2141da177e4SLinus Torvalds
21529175778SLew Glendenningconfig MTD_ESB2ROM
21629175778SLew Glendenning        tristate "BIOS flash chip on Intel ESB Controller Hub 2"
217dffbc42bSRandy Dunlap        depends on X86 && MTD_JEDECPROBE && PCI
21829175778SLew Glendenning        help
21929175778SLew Glendenning          Support for treating the BIOS flash chip on ESB2 motherboards
22029175778SLew Glendenning          as an MTD device - with this you can reprogram your BIOS.
22129175778SLew Glendenning
22229175778SLew Glendenning          BE VERY CAREFUL.
22329175778SLew Glendenning
22490afffc8SDave Olsenconfig MTD_CK804XROM
22590afffc8SDave Olsen	tristate "BIOS flash chip on Nvidia CK804"
226862c93b9Sakpm@osdl.org	depends on X86 && MTD_JEDECPROBE && PCI
22790afffc8SDave Olsen	help
22890afffc8SDave Olsen	  Support for treating the BIOS flash chip on nvidia motherboards
22990afffc8SDave Olsen	  as an MTD device - with this you can reprogram your BIOS.
23090afffc8SDave Olsen
23190afffc8SDave Olsen	  BE VERY CAREFUL.
23290afffc8SDave Olsen
2331da177e4SLinus Torvaldsconfig MTD_SCB2_FLASH
2341da177e4SLinus Torvalds	tristate "BIOS flash chip on Intel SCB2 boards"
2351da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
2361da177e4SLinus Torvalds	help
2371da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on Intel SCB2 boards
2381da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
2391da177e4SLinus Torvalds
2401da177e4SLinus Torvalds	  BE VERY CAREFUL.
2411da177e4SLinus Torvalds
2421da177e4SLinus Torvaldsconfig MTD_TSUNAMI
2431da177e4SLinus Torvalds	tristate "Flash chips on Tsunami TIG bus"
2441da177e4SLinus Torvalds	depends on ALPHA_TSUNAMI && MTD_COMPLEX_MAPPINGS
2451da177e4SLinus Torvalds	help
2461da177e4SLinus Torvalds	  Support for the flash chip on Tsunami TIG bus.
2471da177e4SLinus Torvalds
2481da177e4SLinus Torvaldsconfig MTD_NETtel
2491da177e4SLinus Torvalds	tristate "CFI flash device on SnapGear/SecureEdge"
2501da177e4SLinus Torvalds	depends on X86 && MTD_PARTITIONS && MTD_JEDECPROBE
2511da177e4SLinus Torvalds	help
2521da177e4SLinus Torvalds	  Support for flash chips on NETtel/SecureEdge/SnapGear boards.
2531da177e4SLinus Torvalds
254bc49c289SFlorian Fainelliconfig MTD_BCM963XX
255bc49c289SFlorian Fainelli        tristate "Map driver for Broadcom BCM963xx boards"
256bc49c289SFlorian Fainelli        depends on BCM63XX
257bc49c289SFlorian Fainelli	select MTD_MAP_BANK_WIDTH_2
258bc49c289SFlorian Fainelli	select MTD_CFI_I1
259bc49c289SFlorian Fainelli        help
260bc49c289SFlorian Fainelli	  Support for parsing CFE image tag and creating MTD partitions on
261bc49c289SFlorian Fainelli	  Broadcom BCM63xx boards.
262bc49c289SFlorian Fainelli
2631da177e4SLinus Torvaldsconfig MTD_DILNETPC
2641da177e4SLinus Torvalds	tristate "CFI Flash device mapped on DIL/Net PC"
2658d42b524SDavid Woodhouse	depends on X86 && MTD_CONCAT && MTD_PARTITIONS && MTD_CFI_INTELEXT && BROKEN
2661da177e4SLinus Torvalds	help
2671da177e4SLinus Torvalds	  MTD map driver for SSV DIL/Net PC Boards "DNP" and "ADNP".
2681da177e4SLinus Torvalds	  For details, see <http://www.ssv-embedded.de/ssv/pc104/p169.htm>
2691da177e4SLinus Torvalds 	  and <http://www.ssv-embedded.de/ssv/pc104/p170.htm>
2701da177e4SLinus Torvalds
2711da177e4SLinus Torvaldsconfig MTD_DILNETPC_BOOTSIZE
2721da177e4SLinus Torvalds	hex "Size of DIL/Net PC flash boot partition"
2731da177e4SLinus Torvalds	depends on MTD_DILNETPC
2741da177e4SLinus Torvalds	default "0x80000"
2751da177e4SLinus Torvalds	help
2761da177e4SLinus Torvalds	  The amount of space taken up by the kernel or Etherboot
2771da177e4SLinus Torvalds	  on the DIL/Net PC flash chips.
2781da177e4SLinus Torvalds
2791da177e4SLinus Torvaldsconfig MTD_L440GX
2801da177e4SLinus Torvalds	tristate "BIOS flash chip on Intel L440GX boards"
2811da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
2821da177e4SLinus Torvalds	help
2831da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on Intel L440GX motherboards
2841da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
2851da177e4SLinus Torvalds
2861da177e4SLinus Torvalds	  BE VERY CAREFUL.
2871da177e4SLinus Torvalds
2881da177e4SLinus Torvaldsconfig MTD_TQM8XXL
2891da177e4SLinus Torvalds	tristate "CFI Flash device mapped on TQM8XXL"
29001ac742dSSean Young	depends on MTD_CFI && TQM8xxL
2911da177e4SLinus Torvalds	help
2921da177e4SLinus Torvalds	  The TQM8xxL PowerPC board has up to two banks of CFI-compliant
2931da177e4SLinus Torvalds	  chips, currently uses AMD one. This 'mapping' driver supports
2941da177e4SLinus Torvalds	  that arrangement, allowing the CFI probe and command set driver
2951da177e4SLinus Torvalds	  code to communicate with the chips on the TQM8xxL board. More at
296631dd1a8SJustin P. Mattock	  <http://www.denx.de/wiki/PPCEmbedded/>.
2971da177e4SLinus Torvalds
2981da177e4SLinus Torvaldsconfig MTD_RPXLITE
2991da177e4SLinus Torvalds	tristate "CFI Flash device mapped on RPX Lite or CLLF"
30001ac742dSSean Young	depends on MTD_CFI && (RPXCLASSIC || RPXLITE)
3011da177e4SLinus Torvalds	help
3021da177e4SLinus Torvalds	  The RPXLite PowerPC board has CFI-compliant chips mapped in
3031da177e4SLinus Torvalds	  a strange sparse mapping. This 'mapping' driver supports that
3041da177e4SLinus Torvalds	  arrangement, allowing the CFI probe and command set driver code
3051da177e4SLinus Torvalds	  to communicate with the chips on the RPXLite board. More at
3061da177e4SLinus Torvalds	  <http://www.embeddedplanet.com/>.
3071da177e4SLinus Torvalds
3081da177e4SLinus Torvaldsconfig MTD_MBX860
3091da177e4SLinus Torvalds	tristate "System flash on MBX860 board"
31001ac742dSSean Young	depends on MTD_CFI && MBX
3111da177e4SLinus Torvalds	help
3121da177e4SLinus Torvalds	  This enables access routines for the flash chips on the Motorola
3131da177e4SLinus Torvalds	  MBX860 board. If you have one of these boards and would like
3141da177e4SLinus Torvalds	  to use the flash chips on it, say 'Y'.
3151da177e4SLinus Torvalds
3161da177e4SLinus Torvaldsconfig MTD_DBOX2
3171da177e4SLinus Torvalds	tristate "CFI Flash device mapped on D-Box2"
31801ac742dSSean Young	depends on DBOX2 && MTD_CFI_INTELSTD && MTD_CFI_INTELEXT && MTD_CFI_AMDSTD
3191da177e4SLinus Torvalds	help
3201da177e4SLinus Torvalds	  This enables access routines for the flash chips on the Nokia/Sagem
3211da177e4SLinus Torvalds	  D-Box 2 board. If you have one of these boards and would like to use
3221da177e4SLinus Torvalds	  the flash chips on it, say 'Y'.
3231da177e4SLinus Torvalds
3241da177e4SLinus Torvaldsconfig MTD_CFI_FLAGADM
3251da177e4SLinus Torvalds	tristate "CFI Flash device mapping on FlagaDM"
32601ac742dSSean Young	depends on 8xx && MTD_CFI
3271da177e4SLinus Torvalds	help
3281da177e4SLinus Torvalds	  Mapping for the Flaga digital module. If you don't have one, ignore
3291da177e4SLinus Torvalds	  this setting.
3301da177e4SLinus Torvalds
3311da177e4SLinus Torvaldsconfig MTD_SOLUTIONENGINE
3321da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Hitachi SolutionEngine"
333e35e283fSPaul Mundt	depends on SUPERH && SOLUTION_ENGINE && MTD_CFI && MTD_REDBOOT_PARTS
3341da177e4SLinus Torvalds	help
3351da177e4SLinus Torvalds	  This enables access to the flash chips on the Hitachi SolutionEngine and
3361da177e4SLinus Torvalds	  similar boards. Say 'Y' if you are building a kernel for such a board.
3371da177e4SLinus Torvalds
3381da177e4SLinus Torvaldsconfig MTD_ARM_INTEGRATOR
3391da177e4SLinus Torvalds	tristate "CFI Flash device mapped on ARM Integrator/P720T"
3401da177e4SLinus Torvalds	depends on ARM && MTD_CFI
3411da177e4SLinus Torvalds
3421da177e4SLinus Torvaldsconfig MTD_CDB89712
3431da177e4SLinus Torvalds	tristate "Cirrus CDB89712 evaluation board mappings"
34401ac742dSSean Young	depends on MTD_CFI && ARCH_CDB89712
3451da177e4SLinus Torvalds	help
3461da177e4SLinus Torvalds	  This enables access to the flash or ROM chips on the CDB89712 board.
3471da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
3481da177e4SLinus Torvalds
3491da177e4SLinus Torvaldsconfig MTD_SA1100
3501da177e4SLinus Torvalds	tristate "CFI Flash device mapped on StrongARM SA11x0"
35101ac742dSSean Young	depends on MTD_CFI && ARCH_SA1100 && MTD_PARTITIONS
3521da177e4SLinus Torvalds	help
3531da177e4SLinus Torvalds	  This enables access to the flash chips on most platforms based on
3541da177e4SLinus Torvalds	  the SA1100 and SA1110, including the Assabet and the Compaq iPAQ.
3551da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
3561da177e4SLinus Torvalds
3571da177e4SLinus Torvaldsconfig MTD_DC21285
3581da177e4SLinus Torvalds	tristate "CFI Flash device mapped on DC21285 Footbridge"
35901ac742dSSean Young	depends on MTD_CFI && ARCH_FOOTBRIDGE && MTD_COMPLEX_MAPPINGS
3601da177e4SLinus Torvalds	help
3611da177e4SLinus Torvalds	  This provides a driver for the flash accessed using Intel's
3621da177e4SLinus Torvalds	  21285 bridge used with Intel's StrongARM processors. More info at
3631da177e4SLinus Torvalds	  <http://www.intel.com/design/bridge/docs/21285_documentation.htm>.
3641da177e4SLinus Torvalds
3651da177e4SLinus Torvaldsconfig MTD_IXP4XX
3661da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Intel IXP4xx based systems"
36701ac742dSSean Young	depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP4XX
3681da177e4SLinus Torvalds	help
3691da177e4SLinus Torvalds	  This enables MTD access to flash devices on platforms based
3701da177e4SLinus Torvalds	  on Intel's IXP4xx family of network processors such as the
3711da177e4SLinus Torvalds	  IXDP425 and Coyote. If you have an IXP4xx based board and
3721da177e4SLinus Torvalds	  would like to use the flash chips on it, say 'Y'.
3731da177e4SLinus Torvalds
3741da177e4SLinus Torvaldsconfig MTD_IXP2000
3751da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Intel IXP2000 based systems"
37601ac742dSSean Young	depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP2000
3771da177e4SLinus Torvalds	help
3781da177e4SLinus Torvalds	  This enables MTD access to flash devices on platforms based
37986185af9SKrzysztof Halasa	  on Intel's IXP2000 family of network processors. If you have an
38086185af9SKrzysztof Halasa	  IXP2000 based board and would like to use the flash chips on it,
38186185af9SKrzysztof Halasa	  say 'Y'.
3821da177e4SLinus Torvalds
3831da177e4SLinus Torvaldsconfig MTD_FORTUNET
3841da177e4SLinus Torvalds	tristate "CFI Flash device mapped on the FortuNet board"
38501ac742dSSean Young	depends on MTD_CFI && MTD_PARTITIONS && SA1100_FORTUNET
3861da177e4SLinus Torvalds	help
3871da177e4SLinus Torvalds	  This enables access to the Flash on the FortuNet board.  If you
3881da177e4SLinus Torvalds	  have such a board, say 'Y'.
3891da177e4SLinus Torvalds
3901da177e4SLinus Torvaldsconfig MTD_AUTCPU12
3911da177e4SLinus Torvalds	tristate "NV-RAM mapping AUTCPU12 board"
39201ac742dSSean Young	depends on ARCH_AUTCPU12
3931da177e4SLinus Torvalds	help
3941da177e4SLinus Torvalds	  This enables access to the NV-RAM on autronix autcpu12 board.
3951da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
3961da177e4SLinus Torvalds
3971da177e4SLinus Torvaldsconfig MTD_EDB7312
3981da177e4SLinus Torvalds	tristate "CFI Flash device mapped on EDB7312"
39901ac742dSSean Young	depends on ARCH_EDB7312 && MTD_CFI
4001da177e4SLinus Torvalds	help
4011da177e4SLinus Torvalds	  This enables access to the CFI Flash on the Cogent EDB7312 board.
4021da177e4SLinus Torvalds	  If you have such a board, say 'Y' here.
4031da177e4SLinus Torvalds
4041da177e4SLinus Torvaldsconfig MTD_IMPA7
4051da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on impA7"
4061da177e4SLinus Torvalds	depends on ARM && MTD_JEDECPROBE
4071da177e4SLinus Torvalds	help
4081da177e4SLinus Torvalds	  This enables access to the NOR Flash on the impA7 board of
4091da177e4SLinus Torvalds	  implementa GmbH. If you have such a board, say 'Y' here.
4101da177e4SLinus Torvalds
4111da177e4SLinus Torvaldsconfig MTD_CEIVA
4121da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Ceiva/Polaroid PhotoMax Digital Picture Frame"
41301ac742dSSean Young	depends on MTD_JEDECPROBE && ARCH_CEIVA
4141da177e4SLinus Torvalds	help
4151da177e4SLinus Torvalds	  This enables access to the flash chips on the Ceiva/Polaroid
4161da177e4SLinus Torvalds	  PhotoMax Digital Picture Frame.
4171da177e4SLinus Torvalds	  If you have such a device, say 'Y'.
4181da177e4SLinus Torvalds
4191da177e4SLinus Torvaldsconfig MTD_H720X
4201da177e4SLinus Torvalds	tristate "Hynix evaluation board mappings"
42101ac742dSSean Young	depends on MTD_CFI && ( ARCH_H7201 || ARCH_H7202 )
4221da177e4SLinus Torvalds	help
4231da177e4SLinus Torvalds	  This enables access to the flash chips on the Hynix evaluation boards.
4241da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
4251da177e4SLinus Torvalds
4261da177e4SLinus Torvalds# This needs CFI or JEDEC, depending on the cards found.
4271da177e4SLinus Torvaldsconfig MTD_PCI
4281da177e4SLinus Torvalds	tristate "PCI MTD driver"
429ec98c681SJan Engelhardt	depends on PCI && MTD_COMPLEX_MAPPINGS
4301da177e4SLinus Torvalds	help
4311da177e4SLinus Torvalds	  Mapping for accessing flash devices on add-in cards like the Intel XScale
4321da177e4SLinus Torvalds	  IQ80310 card, and the Intel EBSA285 card in blank ROM programming mode
4331da177e4SLinus Torvalds	  (please see the manual for the link settings).
4341da177e4SLinus Torvalds
4351da177e4SLinus Torvalds	  If you are not sure, say N.
4361da177e4SLinus Torvalds
4371da177e4SLinus Torvaldsconfig MTD_PCMCIA
4381da177e4SLinus Torvalds	tristate "PCMCIA MTD driver"
439f6763c98SAlexander Kurz	depends on PCMCIA && MTD_COMPLEX_MAPPINGS
4401da177e4SLinus Torvalds	help
4411da177e4SLinus Torvalds	  Map driver for accessing PCMCIA linear flash memory cards. These
4421da177e4SLinus Torvalds	  cards are usually around 4-16MiB in size. This does not include
4431da177e4SLinus Torvalds	  Compact Flash cards which are treated as IDE devices.
4441da177e4SLinus Torvalds
44511d28a30SDominik Brodowskiconfig MTD_PCMCIA_ANONYMOUS
44611d28a30SDominik Brodowski	bool "Use PCMCIA MTD drivers for anonymous PCMCIA cards"
44711d28a30SDominik Brodowski	depends on MTD_PCMCIA
44811d28a30SDominik Brodowski	help
44911d28a30SDominik Brodowski	  If this option is enabled, PCMCIA cards which do not report
45011d28a30SDominik Brodowski	  anything about themselves are assumed to be MTD cards.
45111d28a30SDominik Brodowski
45211d28a30SDominik Brodowski	  If unsure, say N.
45311d28a30SDominik Brodowski
4542e3c22f5SMike Frysingerconfig MTD_BFIN_ASYNC
4552e3c22f5SMike Frysinger	tristate "Blackfin BF533-STAMP Flash Chip Support"
456ab00d682SMike Frysinger	depends on BFIN533_STAMP && MTD_CFI && MTD_COMPLEX_MAPPINGS
4572e3c22f5SMike Frysinger	select MTD_PARTITIONS
4582e3c22f5SMike Frysinger	default y
4592e3c22f5SMike Frysinger	help
4602e3c22f5SMike Frysinger	  Map driver which allows for simultaneous utilization of
4612e3c22f5SMike Frysinger	  ethernet and CFI parallel flash.
4622e3c22f5SMike Frysinger
4632e3c22f5SMike Frysinger	  If compiled as a module, it will be called bfin-async-flash.
4642e3c22f5SMike Frysinger
465d79c326cSMike Frysingerconfig MTD_GPIO_ADDR
466d79c326cSMike Frysinger	tristate "GPIO-assisted Flash Chip Support"
467de19d02bSMike Frysinger	depends on GENERIC_GPIO || GPIOLIB
468d79c326cSMike Frysinger	depends on MTD_COMPLEX_MAPPINGS
469d79c326cSMike Frysinger	select MTD_PARTITIONS
470d79c326cSMike Frysinger	help
471d79c326cSMike Frysinger	  Map driver which allows flashes to be partially physically addressed
472d79c326cSMike Frysinger	  and assisted by GPIOs.
473d79c326cSMike Frysinger
474d79c326cSMike Frysinger	  If compiled as a module, it will be called gpio-addr-flash.
475d79c326cSMike Frysinger
4761da177e4SLinus Torvaldsconfig MTD_UCLINUX
4776ae392ccSMike Frysinger	bool "Generic uClinux RAM/ROM filesystem support"
4781b533d22SMike Frysinger	depends on MTD_PARTITIONS && MTD_RAM=y && !MMU
4791da177e4SLinus Torvalds	help
4801da177e4SLinus Torvalds	  Map driver to support image based filesystems for uClinux.
4811da177e4SLinus Torvalds
4821da177e4SLinus Torvaldsconfig MTD_WRSBC8260
4831da177e4SLinus Torvalds	tristate "Map driver for WindRiver PowerQUICC II MPC82xx board"
4841da177e4SLinus Torvalds	depends on (SBC82xx || SBC8560)
4851da177e4SLinus Torvalds	select MTD_PARTITIONS
4861da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_4
4871da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_1
4881da177e4SLinus Torvalds	select MTD_CFI_I1
4891da177e4SLinus Torvalds	select MTD_CFI_I4
4901da177e4SLinus Torvalds	help
4911da177e4SLinus Torvalds	  Map driver for WindRiver PowerQUICC II MPC82xx board. Drives
4921da177e4SLinus Torvalds	  all three flash regions on CS0, CS1 and CS6 if they are configured
4931da177e4SLinus Torvalds	  correctly by the boot loader.
4941da177e4SLinus Torvalds
4951da177e4SLinus Torvaldsconfig MTD_DMV182
4961da177e4SLinus Torvalds        tristate "Map driver for Dy-4 SVME/DMV-182 board."
4971da177e4SLinus Torvalds        depends on DMV182
4981da177e4SLinus Torvalds        select MTD_PARTITIONS
4991da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_32
5001da177e4SLinus Torvalds	select MTD_CFI_I8
5011da177e4SLinus Torvalds	select MTD_CFI_AMDSTD
5021da177e4SLinus Torvalds        help
5031da177e4SLinus Torvalds          Map driver for Dy-4 SVME/DMV-182 board.
5041da177e4SLinus Torvalds
5050bac5111SDavid Woodhouseconfig MTD_INTEL_VR_NOR
5060bac5111SDavid Woodhouse	tristate "NOR flash on Intel Vermilion Range Expansion Bus CS0"
5070bac5111SDavid Woodhouse	depends on PCI
5080bac5111SDavid Woodhouse	help
5090bac5111SDavid Woodhouse	  Map driver for a NOR flash bank located on the Expansion Bus of the
5100bac5111SDavid Woodhouse	  Intel Vermilion Range chipset.
5110bac5111SDavid Woodhouse
512610f75e7SAtsushi Nemotoconfig MTD_RBTX4939
513610f75e7SAtsushi Nemoto	tristate "Map driver for RBTX4939 board"
514610f75e7SAtsushi Nemoto	depends on TOSHIBA_RBTX4939 && MTD_CFI && MTD_COMPLEX_MAPPINGS
515610f75e7SAtsushi Nemoto	help
516610f75e7SAtsushi Nemoto	  Map driver for NOR flash chips on RBTX4939 board.
517610f75e7SAtsushi Nemoto
51899f2a8aeSBen Dooksconfig MTD_PLATRAM
5193c45e00aSThomas Gleixner	tristate "Map driver for platform device RAM (mtd-ram)"
52099f2a8aeSBen Dooks	select MTD_RAM
52199f2a8aeSBen Dooks	help
52299f2a8aeSBen Dooks	  Map driver for RAM areas described via the platform device
52399f2a8aeSBen Dooks	  system.
52499f2a8aeSBen Dooks
52599f2a8aeSBen Dooks	  This selection automatically selects the map_ram driver.
52699f2a8aeSBen Dooks
52747a72688SAdrian McMenaminconfig MTD_VMU
52847a72688SAdrian McMenamin	tristate "Map driver for Dreamcast VMU"
52947a72688SAdrian McMenamin	depends on MAPLE
53047a72688SAdrian McMenamin	help
53147a72688SAdrian McMenamin	  This driver enables access to the Dreamcast Visual Memory Unit (VMU).
5321da177e4SLinus Torvalds
53347a72688SAdrian McMenamin	  Most Dreamcast users will want to say Y here.
53447a72688SAdrian McMenamin
53547a72688SAdrian McMenamin	  To build this as a module select M here, the module will be called
53647a72688SAdrian McMenamin	  vmu-flash.
53747a72688SAdrian McMenamin
538f6a8c609SRussell King - ARM Linuxconfig MTD_PISMO
539f6a8c609SRussell King - ARM Linux	tristate "MTD discovery driver for PISMO modules"
540f6a8c609SRussell King - ARM Linux	depends on I2C
541f6a8c609SRussell King - ARM Linux	depends on ARCH_VERSATILE
542f6a8c609SRussell King - ARM Linux	help
543f6a8c609SRussell King - ARM Linux	  This driver allows for discovery of PISMO modules - see
544f6a8c609SRussell King - ARM Linux	  <http://www.pismoworld.org/>.  These are small modules containing
545f6a8c609SRussell King - ARM Linux	  up to five memory devices (eg, SRAM, flash, DOC) described by an
546f6a8c609SRussell King - ARM Linux	  I2C EEPROM.
547f6a8c609SRussell King - ARM Linux
548f6a8c609SRussell King - ARM Linux	  This driver does not create any MTD maps itself; instead it
549f6a8c609SRussell King - ARM Linux	  creates MTD physmap and MTD SRAM platform devices.  If you
550f6a8c609SRussell King - ARM Linux	  enable this option, you should consider enabling MTD_PHYSMAP
551f6a8c609SRussell King - ARM Linux	  and/or MTD_PLATRAM according to the devices on your module.
552f6a8c609SRussell King - ARM Linux
553f6a8c609SRussell King - ARM Linux	  When built as a module, it will be called pismo.ko
554f6a8c609SRussell King - ARM Linux
55547a72688SAdrian McMenaminendmenu
556