xref: /linux/drivers/mtd/maps/Kconfig (revision 01dd2fbf0da4019c380b6ca22a074538fb31db5a)
11da177e4SLinus Torvalds# drivers/mtd/maps/Kconfig
269f34c98SThomas Gleixner# $Id: Kconfig,v 1.61 2005/11/07 11:14:26 gleixner Exp $
31da177e4SLinus Torvalds
41da177e4SLinus Torvaldsmenu "Mapping drivers for chip access"
51da177e4SLinus Torvalds	depends on MTD!=n
61da177e4SLinus Torvalds
71da177e4SLinus Torvaldsconfig MTD_COMPLEX_MAPPINGS
81da177e4SLinus Torvalds	bool "Support non-linear mappings of flash chips"
91da177e4SLinus Torvalds	help
101da177e4SLinus Torvalds	  This causes the chip drivers to allow for complicated
111da177e4SLinus Torvalds	  paged mappings of flash chips.
121da177e4SLinus Torvalds
131da177e4SLinus Torvaldsconfig MTD_PHYSMAP
141da177e4SLinus Torvalds	tristate "CFI Flash device in physical memory map"
1579b9cd58STakashi YOSHII	depends on MTD_CFI || MTD_JEDECPROBE || MTD_ROM
161da177e4SLinus Torvalds	help
1779b9cd58STakashi YOSHII	  This provides a 'mapping' driver which allows the NOR Flash and
1879b9cd58STakashi YOSHII	  ROM driver code to communicate with chips which are mapped
1979b9cd58STakashi YOSHII	  physically into the CPU's memory. You will need to configure
2079b9cd58STakashi YOSHII	  the physical address and size of the flash chips on your
2179b9cd58STakashi YOSHII	  particular board as well as the bus width, either statically
221da177e4SLinus Torvalds	  with config options or at run-time.
231da177e4SLinus Torvalds
241da177e4SLinus Torvaldsconfig MTD_PHYSMAP_START
251da177e4SLinus Torvalds	hex "Physical start address of flash mapping"
261da177e4SLinus Torvalds	depends on MTD_PHYSMAP
271da177e4SLinus Torvalds	default "0x8000000"
281da177e4SLinus Torvalds	help
291da177e4SLinus Torvalds	  This is the physical memory location at which the flash chips
301da177e4SLinus Torvalds	  are mapped on your particular target board. Refer to the
311da177e4SLinus Torvalds	  memory map which should hopefully be in the documentation for
321da177e4SLinus Torvalds	  your board.
331da177e4SLinus Torvalds	  Ignore this option if you use run-time physmap configuration
341da177e4SLinus Torvalds	  (i.e., run-time calling physmap_configure()).
351da177e4SLinus Torvalds
361da177e4SLinus Torvaldsconfig MTD_PHYSMAP_LEN
371da177e4SLinus Torvalds	hex "Physical length of flash mapping"
381da177e4SLinus Torvalds	depends on MTD_PHYSMAP
3973566edfSLennert Buytenhek	default "0"
401da177e4SLinus Torvalds	help
411da177e4SLinus Torvalds	  This is the total length of the mapping of the flash chips on
421da177e4SLinus Torvalds	  your particular board. If there is space, or aliases, in the
431da177e4SLinus Torvalds	  physical memory map between the chips, this could be larger
441da177e4SLinus Torvalds	  than the total amount of flash present. Refer to the memory
451da177e4SLinus Torvalds	  map which should hopefully be in the documentation for your
461da177e4SLinus Torvalds	  board.
471da177e4SLinus Torvalds	  Ignore this option if you use run-time physmap configuration
481da177e4SLinus Torvalds	  (i.e., run-time calling physmap_configure()).
491da177e4SLinus Torvalds
501da177e4SLinus Torvaldsconfig MTD_PHYSMAP_BANKWIDTH
511da177e4SLinus Torvalds	int "Bank width in octets"
521da177e4SLinus Torvalds	depends on MTD_PHYSMAP
531da177e4SLinus Torvalds	default "2"
541da177e4SLinus Torvalds	help
551da177e4SLinus Torvalds	  This is the total width of the data bus of the flash devices
561da177e4SLinus Torvalds	  in octets. For example, if you have a data bus width of 32
57*01dd2fbfSMatt LaPlante	  bits, you would set the bus width octet value to 4. This is
581da177e4SLinus Torvalds	  used internally by the CFI drivers.
591da177e4SLinus Torvalds	  Ignore this option if you use run-time physmap configuration
601da177e4SLinus Torvalds	  (i.e., run-time calling physmap_configure()).
611da177e4SLinus Torvalds
62a2c2fe4bSVitaly Woolconfig MTD_PHYSMAP_OF
63a982ac06SMatt LaPlante	tristate "Flash device in physical memory map based on OF description"
64a2c2fe4bSVitaly Wool	depends on PPC_OF && (MTD_CFI || MTD_JEDECPROBE || MTD_ROM)
65a2c2fe4bSVitaly Wool	help
66a2c2fe4bSVitaly Wool	  This provides a 'mapping' driver which allows the NOR Flash and
67a2c2fe4bSVitaly Wool	  ROM driver code to communicate with chips which are mapped
68a2c2fe4bSVitaly Wool	  physically into the CPU's memory. The mapping description here is
69a2c2fe4bSVitaly Wool	  taken from OF device tree.
70a2c2fe4bSVitaly Wool
7168aa0fa8SMarc St-Jeanconfig MTD_PMC_MSP_EVM
7268aa0fa8SMarc St-Jean	tristate "CFI Flash device mapped on PMC-Sierra MSP"
7368aa0fa8SMarc St-Jean	depends on PMC_MSP && MTD_CFI
7468aa0fa8SMarc St-Jean	select MTD_PARTITIONS
7568aa0fa8SMarc St-Jean	help
76*01dd2fbfSMatt LaPlante	  This provides a 'mapping' driver which supports the way
7768aa0fa8SMarc St-Jean	  in which user-programmable flash chips are connected on the
78*01dd2fbfSMatt LaPlante	  PMC-Sierra MSP eval/demo boards.
7968aa0fa8SMarc St-Jean
8068aa0fa8SMarc St-Jeanchoice
81*01dd2fbfSMatt LaPlante	prompt "Maximum mappable memory available for flash IO"
8268aa0fa8SMarc St-Jean	depends on MTD_PMC_MSP_EVM
8368aa0fa8SMarc St-Jean	default MSP_FLASH_MAP_LIMIT_32M
8468aa0fa8SMarc St-Jean
8568aa0fa8SMarc St-Jeanconfig MSP_FLASH_MAP_LIMIT_32M
8668aa0fa8SMarc St-Jean	bool "32M"
8768aa0fa8SMarc St-Jean
8868aa0fa8SMarc St-Jeanendchoice
8968aa0fa8SMarc St-Jean
9068aa0fa8SMarc St-Jeanconfig MSP_FLASH_MAP_LIMIT
9168aa0fa8SMarc St-Jean	hex
9268aa0fa8SMarc St-Jean	default "0x02000000"
9368aa0fa8SMarc St-Jean	depends on MSP_FLASH_MAP_LIMIT_32M
9468aa0fa8SMarc St-Jean
9568aa0fa8SMarc St-Jeanconfig MTD_PMC_MSP_RAMROOT
9668aa0fa8SMarc St-Jean	tristate "Embedded RAM block device for root on PMC-Sierra MSP"
9768aa0fa8SMarc St-Jean	depends on PMC_MSP_EMBEDDED_ROOTFS && \
9868aa0fa8SMarc St-Jean			(MTD_BLOCK || MTD_BLOCK_RO) && \
9968aa0fa8SMarc St-Jean			MTD_RAM
10068aa0fa8SMarc St-Jean	help
10168aa0fa8SMarc St-Jean	  This provides support for the embedded root file system
10268aa0fa8SMarc St-Jean          on PMC MSP devices.  This memory is mapped as a MTD block device.
10368aa0fa8SMarc St-Jean
1041da177e4SLinus Torvaldsconfig MTD_SUN_UFLASH
1051da177e4SLinus Torvalds	tristate "Sun Microsystems userflash support"
106e0e5de00SAl Viro	depends on SPARC && MTD_CFI && PCI
1071da177e4SLinus Torvalds	help
1081da177e4SLinus Torvalds	  This provides a 'mapping' driver which supports the way in
1091da177e4SLinus Torvalds	  which user-programmable flash chips are connected on various
1101da177e4SLinus Torvalds	  Sun Microsystems boardsets.  This driver will require CFI support
1111da177e4SLinus Torvalds	  in the kernel, so if you did not enable CFI previously, do that now.
1121da177e4SLinus Torvalds
1131da177e4SLinus Torvaldsconfig MTD_PNC2000
1141da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Photron PNC-2000"
1151da177e4SLinus Torvalds	depends on X86 && MTD_CFI && MTD_PARTITIONS
1161da177e4SLinus Torvalds	help
1171da177e4SLinus Torvalds	  PNC-2000 is the name of Network Camera product from PHOTRON
1181da177e4SLinus Torvalds	  Ltd. in Japan. It uses CFI-compliant flash.
1191da177e4SLinus Torvalds
1201da177e4SLinus Torvaldsconfig MTD_SC520CDP
1211da177e4SLinus Torvalds	tristate "CFI Flash device mapped on AMD SC520 CDP"
122fbbc21c6SDaniel Drake	depends on X86 && MTD_CFI && MTD_CONCAT
1231da177e4SLinus Torvalds	help
1241da177e4SLinus Torvalds	  The SC520 CDP board has two banks of CFI-compliant chips and one
1251da177e4SLinus Torvalds	  Dual-in-line JEDEC chip. This 'mapping' driver supports that
1261da177e4SLinus Torvalds	  arrangement, implementing three MTD devices.
1271da177e4SLinus Torvalds
1281da177e4SLinus Torvaldsconfig MTD_NETSC520
1291da177e4SLinus Torvalds	tristate "CFI Flash device mapped on AMD NetSc520"
1301da177e4SLinus Torvalds	depends on X86 && MTD_CFI && MTD_PARTITIONS
1311da177e4SLinus Torvalds	help
1321da177e4SLinus Torvalds	  This enables access routines for the flash chips on the AMD NetSc520
1331da177e4SLinus Torvalds	  demonstration board. If you have one of these boards and would like
1341da177e4SLinus Torvalds	  to use the flash chips on it, say 'Y'.
1351da177e4SLinus Torvalds
1361da177e4SLinus Torvaldsconfig MTD_TS5500
1371da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Technologic Systems TS-5500"
138ef63d004SSean Young	depends on X86
13901ac742dSSean Young	select MTD_PARTITIONS
14001ac742dSSean Young	select MTD_JEDECPROBE
14101ac742dSSean Young	select MTD_CFI_AMDSTD
1421da177e4SLinus Torvalds	help
1431da177e4SLinus Torvalds	  This provides a driver for the on-board flash of the Technologic
144e27a9960SSean Young	  System's TS-5500 board. The 2MB flash is split into 3 partitions
1451da177e4SLinus Torvalds	  which are accessed as separate MTD devices.
1461da177e4SLinus Torvalds
147e27a9960SSean Young	  mtd0 and mtd2 are the two BIOS drives, which use the resident
148e27a9960SSean Young	  flash disk (RFD) flash translation layer.
1491da177e4SLinus Torvalds
1501da177e4SLinus Torvalds	  mtd1 allows you to reprogram your BIOS. BE VERY CAREFUL.
1511da177e4SLinus Torvalds
1521da177e4SLinus Torvalds	  Note that jumper 3 ("Write Enable Drive A") must be set
1534992a9e8SEgry Gábor	  otherwise detection won't succeed.
1541da177e4SLinus Torvalds
1551da177e4SLinus Torvaldsconfig MTD_SBC_GXX
1561da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Arcom SBC-GXx boards"
1571da177e4SLinus Torvalds	depends on X86 && MTD_CFI_INTELEXT && MTD_PARTITIONS && MTD_COMPLEX_MAPPINGS
1581da177e4SLinus Torvalds	help
1591da177e4SLinus Torvalds	  This provides a driver for the on-board flash of Arcom Control
1601da177e4SLinus Torvalds	  Systems' SBC-GXn family of boards, formerly known as SBC-MediaGX.
1611da177e4SLinus Torvalds	  By default the flash is split into 3 partitions which are accessed
1621da177e4SLinus Torvalds	  as separate MTD devices. This board utilizes Intel StrataFlash.
1631da177e4SLinus Torvalds	  More info at
1641da177e4SLinus Torvalds	  <http://www.arcomcontrols.com/products/icp/pc104/processors/SBC_GX1.htm>.
1651da177e4SLinus Torvalds
166e644f7d6STodd Poynorconfig MTD_PXA2XX
167e644f7d6STodd Poynor	tristate "CFI Flash device mapped on Intel XScale PXA2xx based boards"
168e644f7d6STodd Poynor	depends on (PXA25x || PXA27x) && MTD_CFI_INTELEXT
169cbec19aeSNico Pitre	select MTD_PARTITIONS
170cbec19aeSNico Pitre	help
171e644f7d6STodd Poynor	  This provides a driver for the NOR flash attached to a PXA2xx chip.
172cbec19aeSNico Pitre
1731da177e4SLinus Torvaldsconfig MTD_OCTAGON
1741da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Octagon 5066 SBC"
1751da177e4SLinus Torvalds	depends on X86 && MTD_JEDEC && MTD_COMPLEX_MAPPINGS
1761da177e4SLinus Torvalds	help
1771da177e4SLinus Torvalds	  This provides a 'mapping' driver which supports the way in which
1781da177e4SLinus Torvalds	  the flash chips are connected in the Octagon-5066 Single Board
1791da177e4SLinus Torvalds	  Computer. More information on the board is available at
1801da177e4SLinus Torvalds	  <http://www.octagonsystems.com/CPUpages/5066.html>.
1811da177e4SLinus Torvalds
1821da177e4SLinus Torvaldsconfig MTD_VMAX
1831da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Tempustech VMAX SBC301"
1841da177e4SLinus Torvalds	depends on X86 && MTD_JEDEC && MTD_COMPLEX_MAPPINGS
1851da177e4SLinus Torvalds	help
1861da177e4SLinus Torvalds	  This provides a 'mapping' driver which supports the way in which
1871da177e4SLinus Torvalds	  the flash chips are connected in the Tempustech VMAX SBC301 Single
1881da177e4SLinus Torvalds	  Board Computer. More information on the board is available at
1891da177e4SLinus Torvalds	  <http://www.tempustech.com/>.
1901da177e4SLinus Torvalds
1911da177e4SLinus Torvaldsconfig MTD_SCx200_DOCFLASH
1921da177e4SLinus Torvalds	tristate "Flash device mapped with DOCCS on NatSemi SCx200"
1931da177e4SLinus Torvalds	depends on SCx200 && MTD_CFI && MTD_PARTITIONS
1941da177e4SLinus Torvalds	help
1951da177e4SLinus Torvalds	  Enable support for a flash chip mapped using the DOCCS signal on a
1961da177e4SLinus Torvalds	  National Semiconductor SCx200 processor.
1971da177e4SLinus Torvalds
1981da177e4SLinus Torvalds	  If you don't know what to do here, say N.
1991da177e4SLinus Torvalds
2001da177e4SLinus Torvalds	  If compiled as a module, it will be called scx200_docflash.
2011da177e4SLinus Torvalds
2021da177e4SLinus Torvaldsconfig MTD_AMD76XROM
2031da177e4SLinus Torvalds	tristate "BIOS flash chip on AMD76x southbridge"
2041da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
2051da177e4SLinus Torvalds	help
2061da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on AMD76x motherboards
2071da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
2081da177e4SLinus Torvalds
2091da177e4SLinus Torvalds	  BE VERY CAREFUL.
2101da177e4SLinus Torvalds
2111da177e4SLinus Torvaldsconfig MTD_ICHXROM
2121da177e4SLinus Torvalds	tristate "BIOS flash chip on Intel Controller Hub 2/3/4/5"
2131da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
2141da177e4SLinus Torvalds	help
2151da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on ICHX motherboards
2161da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
2171da177e4SLinus Torvalds
2181da177e4SLinus Torvalds	  BE VERY CAREFUL.
2191da177e4SLinus Torvalds
22029175778SLew Glendenningconfig MTD_ESB2ROM
22129175778SLew Glendenning        tristate "BIOS flash chip on Intel ESB Controller Hub 2"
222dffbc42bSRandy Dunlap        depends on X86 && MTD_JEDECPROBE && PCI
22329175778SLew Glendenning        help
22429175778SLew Glendenning          Support for treating the BIOS flash chip on ESB2 motherboards
22529175778SLew Glendenning          as an MTD device - with this you can reprogram your BIOS.
22629175778SLew Glendenning
22729175778SLew Glendenning          BE VERY CAREFUL.
22829175778SLew Glendenning
22990afffc8SDave Olsenconfig MTD_CK804XROM
23090afffc8SDave Olsen	tristate "BIOS flash chip on Nvidia CK804"
231862c93b9Sakpm@osdl.org	depends on X86 && MTD_JEDECPROBE && PCI
23290afffc8SDave Olsen	help
23390afffc8SDave Olsen	  Support for treating the BIOS flash chip on nvidia motherboards
23490afffc8SDave Olsen	  as an MTD device - with this you can reprogram your BIOS.
23590afffc8SDave Olsen
23690afffc8SDave Olsen	  BE VERY CAREFUL.
23790afffc8SDave Olsen
2381da177e4SLinus Torvaldsconfig MTD_SCB2_FLASH
2391da177e4SLinus Torvalds	tristate "BIOS flash chip on Intel SCB2 boards"
2401da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
2411da177e4SLinus Torvalds	help
2421da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on Intel SCB2 boards
2431da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
2441da177e4SLinus Torvalds
2451da177e4SLinus Torvalds	  BE VERY CAREFUL.
2461da177e4SLinus Torvalds
2471da177e4SLinus Torvaldsconfig MTD_TSUNAMI
2481da177e4SLinus Torvalds	tristate "Flash chips on Tsunami TIG bus"
2491da177e4SLinus Torvalds	depends on ALPHA_TSUNAMI && MTD_COMPLEX_MAPPINGS
2501da177e4SLinus Torvalds	help
2511da177e4SLinus Torvalds	  Support for the flash chip on Tsunami TIG bus.
2521da177e4SLinus Torvalds
2531da177e4SLinus Torvaldsconfig MTD_NETtel
2541da177e4SLinus Torvalds	tristate "CFI flash device on SnapGear/SecureEdge"
2551da177e4SLinus Torvalds	depends on X86 && MTD_PARTITIONS && MTD_JEDECPROBE
2561da177e4SLinus Torvalds	help
2571da177e4SLinus Torvalds	  Support for flash chips on NETtel/SecureEdge/SnapGear boards.
2581da177e4SLinus Torvalds
259002fa301SPete Popovconfig MTD_ALCHEMY
260e55a3e8aSRoman Zippel	tristate "AMD Alchemy Pb1xxx/Db1xxx/RDK MTD support"
261873b6a23SRalf Baechle	depends on SOC_AU1X00 && MTD_PARTITIONS && MTD_CFI
2621da177e4SLinus Torvalds	help
263002fa301SPete Popov	  Flash memory access on AMD Alchemy Pb/Db/RDK Reference Boards
2641da177e4SLinus Torvalds
265b523b3baSJoern Engelconfig MTD_MTX1
266b523b3baSJoern Engel	tristate "4G Systems MTX-1 Flash device"
267873b6a23SRalf Baechle	depends on MIPS_MTX1 && MTD_CFI
268b523b3baSJoern Engel	help
269b523b3baSJoern Engel	  Flash memory access on 4G Systems MTX-1 Board. If you have one of
270b523b3baSJoern Engel	  these boards and would like to use the flash chips on it, say 'Y'.
271b523b3baSJoern Engel
2721da177e4SLinus Torvaldsconfig MTD_DILNETPC
2731da177e4SLinus Torvalds	tristate "CFI Flash device mapped on DIL/Net PC"
2741da177e4SLinus Torvalds	depends on X86 && MTD_CONCAT && MTD_PARTITIONS && MTD_CFI_INTELEXT
2751da177e4SLinus Torvalds	help
2761da177e4SLinus Torvalds	  MTD map driver for SSV DIL/Net PC Boards "DNP" and "ADNP".
2771da177e4SLinus Torvalds	  For details, see <http://www.ssv-embedded.de/ssv/pc104/p169.htm>
2781da177e4SLinus Torvalds 	  and <http://www.ssv-embedded.de/ssv/pc104/p170.htm>
2791da177e4SLinus Torvalds
2801da177e4SLinus Torvaldsconfig MTD_DILNETPC_BOOTSIZE
2811da177e4SLinus Torvalds	hex "Size of DIL/Net PC flash boot partition"
2821da177e4SLinus Torvalds	depends on MTD_DILNETPC
2831da177e4SLinus Torvalds	default "0x80000"
2841da177e4SLinus Torvalds	help
2851da177e4SLinus Torvalds	  The amount of space taken up by the kernel or Etherboot
2861da177e4SLinus Torvalds	  on the DIL/Net PC flash chips.
2871da177e4SLinus Torvalds
2881da177e4SLinus Torvaldsconfig MTD_L440GX
2891da177e4SLinus Torvalds	tristate "BIOS flash chip on Intel L440GX boards"
2901da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
2911da177e4SLinus Torvalds	help
2921da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on Intel L440GX motherboards
2931da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
2941da177e4SLinus Torvalds
2951da177e4SLinus Torvalds	  BE VERY CAREFUL.
2961da177e4SLinus Torvalds
2971da177e4SLinus Torvaldsconfig MTD_SBC8240
2981da177e4SLinus Torvalds	tristate "Flash device on SBC8240"
29901ac742dSSean Young	depends on MTD_JEDECPROBE && 8260
3001da177e4SLinus Torvalds	help
3011da177e4SLinus Torvalds          Flash access on the SBC8240 board from Wind River.  See
3021da177e4SLinus Torvalds          <http://www.windriver.com/products/sbc8240/>
3031da177e4SLinus Torvalds
3041da177e4SLinus Torvaldsconfig MTD_TQM8XXL
3051da177e4SLinus Torvalds	tristate "CFI Flash device mapped on TQM8XXL"
30601ac742dSSean Young	depends on MTD_CFI && TQM8xxL
3071da177e4SLinus Torvalds	help
3081da177e4SLinus Torvalds	  The TQM8xxL PowerPC board has up to two banks of CFI-compliant
3091da177e4SLinus Torvalds	  chips, currently uses AMD one. This 'mapping' driver supports
3101da177e4SLinus Torvalds	  that arrangement, allowing the CFI probe and command set driver
3111da177e4SLinus Torvalds	  code to communicate with the chips on the TQM8xxL board. More at
3121da177e4SLinus Torvalds	  <http://www.denx.de/embedded-ppc-en.html>.
3131da177e4SLinus Torvalds
3141da177e4SLinus Torvaldsconfig MTD_RPXLITE
3151da177e4SLinus Torvalds	tristate "CFI Flash device mapped on RPX Lite or CLLF"
31601ac742dSSean Young	depends on MTD_CFI && (RPXCLASSIC || RPXLITE)
3171da177e4SLinus Torvalds	help
3181da177e4SLinus Torvalds	  The RPXLite PowerPC board has CFI-compliant chips mapped in
3191da177e4SLinus Torvalds	  a strange sparse mapping. This 'mapping' driver supports that
3201da177e4SLinus Torvalds	  arrangement, allowing the CFI probe and command set driver code
3211da177e4SLinus Torvalds	  to communicate with the chips on the RPXLite board. More at
3221da177e4SLinus Torvalds	  <http://www.embeddedplanet.com/>.
3231da177e4SLinus Torvalds
3241da177e4SLinus Torvaldsconfig MTD_MBX860
3251da177e4SLinus Torvalds	tristate "System flash on MBX860 board"
32601ac742dSSean Young	depends on MTD_CFI && MBX
3271da177e4SLinus Torvalds	help
3281da177e4SLinus Torvalds	  This enables access routines for the flash chips on the Motorola
3291da177e4SLinus Torvalds	  MBX860 board. If you have one of these boards and would like
3301da177e4SLinus Torvalds	  to use the flash chips on it, say 'Y'.
3311da177e4SLinus Torvalds
3321da177e4SLinus Torvaldsconfig MTD_DBOX2
3331da177e4SLinus Torvalds	tristate "CFI Flash device mapped on D-Box2"
33401ac742dSSean Young	depends on DBOX2 && MTD_CFI_INTELSTD && MTD_CFI_INTELEXT && MTD_CFI_AMDSTD
3351da177e4SLinus Torvalds	help
3361da177e4SLinus Torvalds	  This enables access routines for the flash chips on the Nokia/Sagem
3371da177e4SLinus Torvalds	  D-Box 2 board. If you have one of these boards and would like to use
3381da177e4SLinus Torvalds	  the flash chips on it, say 'Y'.
3391da177e4SLinus Torvalds
3401da177e4SLinus Torvaldsconfig MTD_CFI_FLAGADM
3411da177e4SLinus Torvalds	tristate "CFI Flash device mapping on FlagaDM"
34201ac742dSSean Young	depends on 8xx && MTD_CFI
3431da177e4SLinus Torvalds	help
3441da177e4SLinus Torvalds	  Mapping for the Flaga digital module. If you don't have one, ignore
3451da177e4SLinus Torvalds	  this setting.
3461da177e4SLinus Torvalds
3471da177e4SLinus Torvaldsconfig MTD_WALNUT
3481da177e4SLinus Torvalds	tristate "Flash device mapped on IBM 405GP Walnut"
3493feb0ff1SJosh Boyer	depends on MTD_JEDECPROBE && WALNUT && !PPC_MERGE
3501da177e4SLinus Torvalds	help
3511da177e4SLinus Torvalds	  This enables access routines for the flash chips on the IBM 405GP
3521da177e4SLinus Torvalds	  Walnut board. If you have one of these boards and would like to
3531da177e4SLinus Torvalds	  use the flash chips on it, say 'Y'.
3541da177e4SLinus Torvalds
3551da177e4SLinus Torvaldsconfig MTD_EBONY
3561da177e4SLinus Torvalds	tristate "Flash devices mapped on IBM 440GP Ebony"
3570d279d47SDavid Gibson	depends on MTD_JEDECPROBE && EBONY && !PPC_MERGE
3581da177e4SLinus Torvalds	help
3591da177e4SLinus Torvalds	  This enables access routines for the flash chips on the IBM 440GP
3601da177e4SLinus Torvalds	  Ebony board. If you have one of these boards and would like to
3611da177e4SLinus Torvalds	  use the flash chips on it, say 'Y'.
3621da177e4SLinus Torvalds
3631da177e4SLinus Torvaldsconfig MTD_OCOTEA
3641da177e4SLinus Torvalds	tristate "Flash devices mapped on IBM 440GX Ocotea"
3653feb0ff1SJosh Boyer	depends on MTD_CFI && OCOTEA && !PPC_MERGE
3661da177e4SLinus Torvalds	help
3671da177e4SLinus Torvalds	  This enables access routines for the flash chips on the IBM 440GX
3681da177e4SLinus Torvalds	  Ocotea board. If you have one of these boards and would like to
3691da177e4SLinus Torvalds	  use the flash chips on it, say 'Y'.
3701da177e4SLinus Torvalds
3711da177e4SLinus Torvaldsconfig MTD_REDWOOD
3721da177e4SLinus Torvalds	tristate "CFI Flash devices mapped on IBM Redwood"
37301ac742dSSean Young	depends on MTD_CFI && ( REDWOOD_4 || REDWOOD_5 || REDWOOD_6 )
3741da177e4SLinus Torvalds	help
3751da177e4SLinus Torvalds	  This enables access routines for the flash chips on the IBM
3761da177e4SLinus Torvalds	  Redwood board. If you have one of these boards and would like to
3771da177e4SLinus Torvalds	  use the flash chips on it, say 'Y'.
3781da177e4SLinus Torvalds
3791da177e4SLinus Torvaldsconfig MTD_SOLUTIONENGINE
3801da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Hitachi SolutionEngine"
3811da177e4SLinus Torvalds	depends on SUPERH && MTD_CFI && MTD_REDBOOT_PARTS
3821da177e4SLinus Torvalds	help
3831da177e4SLinus Torvalds	  This enables access to the flash chips on the Hitachi SolutionEngine and
3841da177e4SLinus Torvalds	  similar boards. Say 'Y' if you are building a kernel for such a board.
3851da177e4SLinus Torvalds
3861da177e4SLinus Torvaldsconfig MTD_ARM_INTEGRATOR
3871da177e4SLinus Torvalds	tristate "CFI Flash device mapped on ARM Integrator/P720T"
3881da177e4SLinus Torvalds	depends on ARM && MTD_CFI
3891da177e4SLinus Torvalds
3901da177e4SLinus Torvaldsconfig MTD_CDB89712
3911da177e4SLinus Torvalds	tristate "Cirrus CDB89712 evaluation board mappings"
39201ac742dSSean Young	depends on MTD_CFI && ARCH_CDB89712
3931da177e4SLinus Torvalds	help
3941da177e4SLinus Torvalds	  This enables access to the flash or ROM chips on the CDB89712 board.
3951da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
3961da177e4SLinus Torvalds
3971da177e4SLinus Torvaldsconfig MTD_SA1100
3981da177e4SLinus Torvalds	tristate "CFI Flash device mapped on StrongARM SA11x0"
39901ac742dSSean Young	depends on MTD_CFI && ARCH_SA1100 && MTD_PARTITIONS
4001da177e4SLinus Torvalds	help
4011da177e4SLinus Torvalds	  This enables access to the flash chips on most platforms based on
4021da177e4SLinus Torvalds	  the SA1100 and SA1110, including the Assabet and the Compaq iPAQ.
4031da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
4041da177e4SLinus Torvalds
4051da177e4SLinus Torvaldsconfig MTD_IPAQ
4061da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Compaq/HP iPAQ"
40701ac742dSSean Young	depends on IPAQ_HANDHELD && MTD_CFI
4081da177e4SLinus Torvalds	help
4091da177e4SLinus Torvalds	  This provides a driver for the on-board flash of the iPAQ.
4101da177e4SLinus Torvalds
4111da177e4SLinus Torvaldsconfig MTD_DC21285
4121da177e4SLinus Torvalds	tristate "CFI Flash device mapped on DC21285 Footbridge"
41301ac742dSSean Young	depends on MTD_CFI && ARCH_FOOTBRIDGE && MTD_COMPLEX_MAPPINGS
4141da177e4SLinus Torvalds	help
4151da177e4SLinus Torvalds	  This provides a driver for the flash accessed using Intel's
4161da177e4SLinus Torvalds	  21285 bridge used with Intel's StrongARM processors. More info at
4171da177e4SLinus Torvalds	  <http://www.intel.com/design/bridge/docs/21285_documentation.htm>.
4181da177e4SLinus Torvalds
4191da177e4SLinus Torvaldsconfig MTD_IXP4XX
4201da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Intel IXP4xx based systems"
42101ac742dSSean Young	depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP4XX
4221da177e4SLinus Torvalds	help
4231da177e4SLinus Torvalds	  This enables MTD access to flash devices on platforms based
4241da177e4SLinus Torvalds	  on Intel's IXP4xx family of network processors such as the
4251da177e4SLinus Torvalds	  IXDP425 and Coyote. If you have an IXP4xx based board and
4261da177e4SLinus Torvalds	  would like to use the flash chips on it, say 'Y'.
4271da177e4SLinus Torvalds
4281da177e4SLinus Torvaldsconfig MTD_IXP2000
4291da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Intel IXP2000 based systems"
43001ac742dSSean Young	depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP2000
4311da177e4SLinus Torvalds	help
4321da177e4SLinus Torvalds	  This enables MTD access to flash devices on platforms based
4331da177e4SLinus Torvalds	  on Intel's IXP2000 family of network processors such as the
4341da177e4SLinus Torvalds	  IXDP425 and Coyote. If you have an IXP2000 based board and
4351da177e4SLinus Torvalds	  would like to use the flash chips on it, say 'Y'.
4361da177e4SLinus Torvalds
4371da177e4SLinus Torvaldsconfig MTD_FORTUNET
4381da177e4SLinus Torvalds	tristate "CFI Flash device mapped on the FortuNet board"
43901ac742dSSean Young	depends on MTD_CFI && MTD_PARTITIONS && SA1100_FORTUNET
4401da177e4SLinus Torvalds	help
4411da177e4SLinus Torvalds	  This enables access to the Flash on the FortuNet board.  If you
4421da177e4SLinus Torvalds	  have such a board, say 'Y'.
4431da177e4SLinus Torvalds
4441da177e4SLinus Torvaldsconfig MTD_AUTCPU12
4451da177e4SLinus Torvalds	tristate "NV-RAM mapping AUTCPU12 board"
44601ac742dSSean Young	depends on ARCH_AUTCPU12
4471da177e4SLinus Torvalds	help
4481da177e4SLinus Torvalds	  This enables access to the NV-RAM on autronix autcpu12 board.
4491da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
4501da177e4SLinus Torvalds
4511da177e4SLinus Torvaldsconfig MTD_EDB7312
4521da177e4SLinus Torvalds	tristate "CFI Flash device mapped on EDB7312"
45301ac742dSSean Young	depends on ARCH_EDB7312 && MTD_CFI
4541da177e4SLinus Torvalds	help
4551da177e4SLinus Torvalds	  This enables access to the CFI Flash on the Cogent EDB7312 board.
4561da177e4SLinus Torvalds	  If you have such a board, say 'Y' here.
4571da177e4SLinus Torvalds
4581da177e4SLinus Torvaldsconfig MTD_IMPA7
4591da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on impA7"
4601da177e4SLinus Torvalds	depends on ARM && MTD_JEDECPROBE
4611da177e4SLinus Torvalds	help
4621da177e4SLinus Torvalds	  This enables access to the NOR Flash on the impA7 board of
4631da177e4SLinus Torvalds	  implementa GmbH. If you have such a board, say 'Y' here.
4641da177e4SLinus Torvalds
4651da177e4SLinus Torvaldsconfig MTD_CEIVA
4661da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Ceiva/Polaroid PhotoMax Digital Picture Frame"
46701ac742dSSean Young	depends on MTD_JEDECPROBE && ARCH_CEIVA
4681da177e4SLinus Torvalds	help
4691da177e4SLinus Torvalds	  This enables access to the flash chips on the Ceiva/Polaroid
4701da177e4SLinus Torvalds	  PhotoMax Digital Picture Frame.
4711da177e4SLinus Torvalds	  If you have such a device, say 'Y'.
4721da177e4SLinus Torvalds
4731da177e4SLinus Torvaldsconfig MTD_NOR_TOTO
4741da177e4SLinus Torvalds	tristate "NOR Flash device on TOTO board"
47501ac742dSSean Young	depends on ARCH_OMAP && OMAP_TOTO
4761da177e4SLinus Torvalds	help
4771da177e4SLinus Torvalds	  This enables access to the NOR flash on the Texas Instruments
4781da177e4SLinus Torvalds	  TOTO board.
4791da177e4SLinus Torvalds
4801da177e4SLinus Torvaldsconfig MTD_H720X
4811da177e4SLinus Torvalds	tristate "Hynix evaluation board mappings"
48201ac742dSSean Young	depends on MTD_CFI && ( ARCH_H7201 || ARCH_H7202 )
4831da177e4SLinus Torvalds	help
4841da177e4SLinus Torvalds	  This enables access to the flash chips on the Hynix evaluation boards.
4851da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
4861da177e4SLinus Torvalds
4871da177e4SLinus Torvaldsconfig MTD_MPC1211
4881da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Interface MPC-1211"
48901ac742dSSean Young	depends on SH_MPC1211 && MTD_CFI
4901da177e4SLinus Torvalds	help
4911da177e4SLinus Torvalds	  This enables access to the flash chips on the Interface MPC-1211(CTP/PCI/MPC-SH02).
4921da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
4931da177e4SLinus Torvalds
49410c96f2eSTodd Poynorconfig MTD_OMAP_NOR
49510c96f2eSTodd Poynor	tristate "TI OMAP board mappings"
49610c96f2eSTodd Poynor	depends on MTD_CFI && ARCH_OMAP
49710c96f2eSTodd Poynor	help
49810c96f2eSTodd Poynor	  This enables access to the NOR flash chips on TI OMAP-based
49910c96f2eSTodd Poynor	  boards defining flash platform devices and flash platform data.
50010c96f2eSTodd Poynor	  These boards include the Innovator, H2, H3, OSK, Perseus2, and
50110c96f2eSTodd Poynor	  more.  If you have such a board, say 'Y'.
50210c96f2eSTodd Poynor
5031da177e4SLinus Torvalds# This needs CFI or JEDEC, depending on the cards found.
5041da177e4SLinus Torvaldsconfig MTD_PCI
5051da177e4SLinus Torvalds	tristate "PCI MTD driver"
506ec98c681SJan Engelhardt	depends on PCI && MTD_COMPLEX_MAPPINGS
5071da177e4SLinus Torvalds	help
5081da177e4SLinus Torvalds	  Mapping for accessing flash devices on add-in cards like the Intel XScale
5091da177e4SLinus Torvalds	  IQ80310 card, and the Intel EBSA285 card in blank ROM programming mode
5101da177e4SLinus Torvalds	  (please see the manual for the link settings).
5111da177e4SLinus Torvalds
5121da177e4SLinus Torvalds	  If you are not sure, say N.
5131da177e4SLinus Torvalds
5141da177e4SLinus Torvaldsconfig MTD_PCMCIA
5151da177e4SLinus Torvalds	tristate "PCMCIA MTD driver"
516ec98c681SJan Engelhardt	depends on PCMCIA && MTD_COMPLEX_MAPPINGS && BROKEN
5171da177e4SLinus Torvalds	help
5181da177e4SLinus Torvalds	  Map driver for accessing PCMCIA linear flash memory cards. These
5191da177e4SLinus Torvalds	  cards are usually around 4-16MiB in size. This does not include
5201da177e4SLinus Torvalds	  Compact Flash cards which are treated as IDE devices.
5211da177e4SLinus Torvalds
52211d28a30SDominik Brodowskiconfig MTD_PCMCIA_ANONYMOUS
52311d28a30SDominik Brodowski	bool "Use PCMCIA MTD drivers for anonymous PCMCIA cards"
52411d28a30SDominik Brodowski	depends on MTD_PCMCIA
52511d28a30SDominik Brodowski	help
52611d28a30SDominik Brodowski	  If this option is enabled, PCMCIA cards which do not report
52711d28a30SDominik Brodowski	  anything about themselves are assumed to be MTD cards.
52811d28a30SDominik Brodowski
52911d28a30SDominik Brodowski	  If unsure, say N.
53011d28a30SDominik Brodowski
5311da177e4SLinus Torvaldsconfig MTD_UCLINUX
5321da177e4SLinus Torvalds	tristate "Generic uClinux RAM/ROM filesystem support"
5331da177e4SLinus Torvalds	depends on MTD_PARTITIONS && !MMU
5341da177e4SLinus Torvalds	help
5351da177e4SLinus Torvalds	  Map driver to support image based filesystems for uClinux.
5361da177e4SLinus Torvalds
5371da177e4SLinus Torvaldsconfig MTD_WRSBC8260
5381da177e4SLinus Torvalds	tristate "Map driver for WindRiver PowerQUICC II MPC82xx board"
5391da177e4SLinus Torvalds	depends on (SBC82xx || SBC8560)
5401da177e4SLinus Torvalds	select MTD_PARTITIONS
5411da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_4
5421da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_1
5431da177e4SLinus Torvalds	select MTD_CFI_I1
5441da177e4SLinus Torvalds	select MTD_CFI_I4
5451da177e4SLinus Torvalds	help
5461da177e4SLinus Torvalds	  Map driver for WindRiver PowerQUICC II MPC82xx board. Drives
5471da177e4SLinus Torvalds	  all three flash regions on CS0, CS1 and CS6 if they are configured
5481da177e4SLinus Torvalds	  correctly by the boot loader.
5491da177e4SLinus Torvalds
5501da177e4SLinus Torvaldsconfig MTD_DMV182
5511da177e4SLinus Torvalds        tristate "Map driver for Dy-4 SVME/DMV-182 board."
5521da177e4SLinus Torvalds        depends on DMV182
5531da177e4SLinus Torvalds        select MTD_PARTITIONS
5541da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_32
5551da177e4SLinus Torvalds	select MTD_CFI_I8
5561da177e4SLinus Torvalds	select MTD_CFI_AMDSTD
5571da177e4SLinus Torvalds        help
5581da177e4SLinus Torvalds          Map driver for Dy-4 SVME/DMV-182 board.
5591da177e4SLinus Torvalds
5601da177e4SLinus Torvaldsconfig MTD_BAST
56176853596SBen Dooks	tristate "Map driver for Simtec BAST (EB2410ITX) or Thorcom VR1000"
56276853596SBen Dooks	depends on ARCH_BAST || MACH_VR1000
5631da177e4SLinus Torvalds	select MTD_PARTITIONS
5641da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_16
5651da177e4SLinus Torvalds	select MTD_JEDECPROBE
5661da177e4SLinus Torvalds	help
56776853596SBen Dooks	  Map driver for NOR flash on the Simtec BAST (EB2410ITX), or the
56876853596SBen Dooks	  Thorcom VR1000
5691da177e4SLinus Torvalds
5701da177e4SLinus Torvalds	  Note, this driver *cannot* over-ride the WP link on the
5711da177e4SLinus Torvalds	  board, or currently detect the state of the link.
5721da177e4SLinus Torvalds
5731da177e4SLinus Torvaldsconfig MTD_BAST_MAXSIZE
5741da177e4SLinus Torvalds	int "Maximum size for BAST flash area (MiB)"
5751da177e4SLinus Torvalds	depends on MTD_BAST
5761da177e4SLinus Torvalds	default "4"
5771da177e4SLinus Torvalds
5781da177e4SLinus Torvaldsconfig MTD_SHARP_SL
5793cb2fcccSMatt LaPlante	bool "ROM mapped on Sharp SL Series"
580ec98c681SJan Engelhardt	depends on ARCH_PXA
5811da177e4SLinus Torvalds	help
5821da177e4SLinus Torvalds	  This enables access to the flash chip on the Sharp SL Series of PDAs.
5831da177e4SLinus Torvalds
5840bac5111SDavid Woodhouseconfig MTD_INTEL_VR_NOR
5850bac5111SDavid Woodhouse	tristate "NOR flash on Intel Vermilion Range Expansion Bus CS0"
5860bac5111SDavid Woodhouse	depends on PCI
5870bac5111SDavid Woodhouse	help
5880bac5111SDavid Woodhouse	  Map driver for a NOR flash bank located on the Expansion Bus of the
5890bac5111SDavid Woodhouse	  Intel Vermilion Range chipset.
5900bac5111SDavid Woodhouse
59199f2a8aeSBen Dooksconfig MTD_PLATRAM
5923c45e00aSThomas Gleixner	tristate "Map driver for platform device RAM (mtd-ram)"
59399f2a8aeSBen Dooks	select MTD_RAM
59499f2a8aeSBen Dooks	help
59599f2a8aeSBen Dooks	  Map driver for RAM areas described via the platform device
59699f2a8aeSBen Dooks	  system.
59799f2a8aeSBen Dooks
59899f2a8aeSBen Dooks	  This selection automatically selects the map_ram driver.
59999f2a8aeSBen Dooks
6001da177e4SLinus Torvaldsendmenu
6011da177e4SLinus Torvalds
602