xref: /linux/drivers/mtd/maps/Kconfig (revision 10c96f2ec37f5369a785cf8c5a065a15e323c743)
11da177e4SLinus Torvalds# drivers/mtd/maps/Kconfig
2*10c96f2eSTodd Poynor# $Id: Kconfig,v 1.55 2005/07/02 01:53:24 tpoynor 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	depends on MTD
101da177e4SLinus Torvalds	help
111da177e4SLinus Torvalds	  This causes the chip drivers to allow for complicated
121da177e4SLinus Torvalds	  paged mappings of flash chips.
131da177e4SLinus Torvalds
141da177e4SLinus Torvaldsconfig MTD_PHYSMAP
151da177e4SLinus Torvalds	tristate "CFI Flash device in physical memory map"
161da177e4SLinus Torvalds	depends on MTD_CFI
171da177e4SLinus Torvalds	help
181da177e4SLinus Torvalds	  This provides a 'mapping' driver which allows the CFI probe and
191da177e4SLinus Torvalds	  command set driver code to communicate with flash chips which
201da177e4SLinus Torvalds	  are mapped physically into the CPU's memory. You will need to
211da177e4SLinus Torvalds	  configure the physical address and size of the flash chips on
221da177e4SLinus Torvalds	  your particular board as well as the bus width, either statically
231da177e4SLinus Torvalds	  with config options or at run-time.
241da177e4SLinus Torvalds
251da177e4SLinus Torvaldsconfig MTD_PHYSMAP_START
261da177e4SLinus Torvalds	hex "Physical start address of flash mapping"
271da177e4SLinus Torvalds	depends on MTD_PHYSMAP
281da177e4SLinus Torvalds	default "0x8000000"
291da177e4SLinus Torvalds	help
301da177e4SLinus Torvalds	  This is the physical memory location at which the flash chips
311da177e4SLinus Torvalds	  are mapped on your particular target board. Refer to the
321da177e4SLinus Torvalds	  memory map which should hopefully be in the documentation for
331da177e4SLinus Torvalds	  your board.
341da177e4SLinus Torvalds	  Ignore this option if you use run-time physmap configuration
351da177e4SLinus Torvalds	  (i.e., run-time calling physmap_configure()).
361da177e4SLinus Torvalds
371da177e4SLinus Torvaldsconfig MTD_PHYSMAP_LEN
381da177e4SLinus Torvalds	hex "Physical length of flash mapping"
391da177e4SLinus Torvalds	depends on MTD_PHYSMAP
401da177e4SLinus Torvalds	default "0x4000000"
411da177e4SLinus Torvalds	help
421da177e4SLinus Torvalds	  This is the total length of the mapping of the flash chips on
431da177e4SLinus Torvalds	  your particular board. If there is space, or aliases, in the
441da177e4SLinus Torvalds	  physical memory map between the chips, this could be larger
451da177e4SLinus Torvalds	  than the total amount of flash present. Refer to the memory
461da177e4SLinus Torvalds	  map which should hopefully be in the documentation for your
471da177e4SLinus Torvalds	  board.
481da177e4SLinus Torvalds	  Ignore this option if you use run-time physmap configuration
491da177e4SLinus Torvalds	  (i.e., run-time calling physmap_configure()).
501da177e4SLinus Torvalds
511da177e4SLinus Torvaldsconfig MTD_PHYSMAP_BANKWIDTH
521da177e4SLinus Torvalds	int "Bank width in octets"
531da177e4SLinus Torvalds	depends on MTD_PHYSMAP
541da177e4SLinus Torvalds	default "2"
551da177e4SLinus Torvalds	help
561da177e4SLinus Torvalds	  This is the total width of the data bus of the flash devices
571da177e4SLinus Torvalds	  in octets. For example, if you have a data bus width of 32
581da177e4SLinus Torvalds	  bits, you would set the bus width octect value to 4. This is
591da177e4SLinus Torvalds	  used internally by the CFI drivers.
601da177e4SLinus Torvalds	  Ignore this option if you use run-time physmap configuration
611da177e4SLinus Torvalds	  (i.e., run-time calling physmap_configure()).
621da177e4SLinus Torvalds
631da177e4SLinus Torvaldsconfig MTD_SUN_UFLASH
641da177e4SLinus Torvalds	tristate "Sun Microsystems userflash support"
651da177e4SLinus Torvalds	depends on (SPARC32 || SPARC64) && MTD_CFI
661da177e4SLinus Torvalds	help
671da177e4SLinus Torvalds	  This provides a 'mapping' driver which supports the way in
681da177e4SLinus Torvalds	  which user-programmable flash chips are connected on various
691da177e4SLinus Torvalds	  Sun Microsystems boardsets.  This driver will require CFI support
701da177e4SLinus Torvalds	  in the kernel, so if you did not enable CFI previously, do that now.
711da177e4SLinus Torvalds
721da177e4SLinus Torvaldsconfig MTD_PNC2000
731da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Photron PNC-2000"
741da177e4SLinus Torvalds	depends on X86 && MTD_CFI && MTD_PARTITIONS
751da177e4SLinus Torvalds	help
761da177e4SLinus Torvalds	  PNC-2000 is the name of Network Camera product from PHOTRON
771da177e4SLinus Torvalds	  Ltd. in Japan. It uses CFI-compliant flash.
781da177e4SLinus Torvalds
791da177e4SLinus Torvaldsconfig MTD_SC520CDP
801da177e4SLinus Torvalds	tristate "CFI Flash device mapped on AMD SC520 CDP"
811da177e4SLinus Torvalds	depends on X86 && MTD_CFI
821da177e4SLinus Torvalds	help
831da177e4SLinus Torvalds	  The SC520 CDP board has two banks of CFI-compliant chips and one
841da177e4SLinus Torvalds	  Dual-in-line JEDEC chip. This 'mapping' driver supports that
851da177e4SLinus Torvalds	  arrangement, implementing three MTD devices.
861da177e4SLinus Torvalds
871da177e4SLinus Torvaldsconfig MTD_NETSC520
881da177e4SLinus Torvalds	tristate "CFI Flash device mapped on AMD NetSc520"
891da177e4SLinus Torvalds	depends on X86 && MTD_CFI && MTD_PARTITIONS
901da177e4SLinus Torvalds	help
911da177e4SLinus Torvalds	  This enables access routines for the flash chips on the AMD NetSc520
921da177e4SLinus Torvalds	  demonstration board. If you have one of these boards and would like
931da177e4SLinus Torvalds	  to use the flash chips on it, say 'Y'.
941da177e4SLinus Torvalds
951da177e4SLinus Torvaldsconfig MTD_TS5500
961da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Technologic Systems TS-5500"
971da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE && MTD_PARTITIONS
981da177e4SLinus Torvalds	help
991da177e4SLinus Torvalds	  This provides a driver for the on-board flash of the Technologic
1001da177e4SLinus Torvalds	  System's TS-5500 board. The flash is split into 3 partitions
1011da177e4SLinus Torvalds	  which are accessed as separate MTD devices.
1021da177e4SLinus Torvalds
1031da177e4SLinus Torvalds	  mtd0 and mtd2 are the two BIOS drives. Unfortunately the BIOS
1041da177e4SLinus Torvalds	  uses a proprietary flash translation layer from General Software,
1051da177e4SLinus Torvalds	  which is not supported (the drives cannot be mounted). You can
1061da177e4SLinus Torvalds	  create your own file system (jffs for example), but the BIOS
1071da177e4SLinus Torvalds	  won't be able to boot from it.
1081da177e4SLinus Torvalds
1091da177e4SLinus Torvalds	  mtd1 allows you to reprogram your BIOS. BE VERY CAREFUL.
1101da177e4SLinus Torvalds
1111da177e4SLinus Torvalds	  Note that jumper 3 ("Write Enable Drive A") must be set
1121da177e4SLinus Torvalds	  otherwise detection won't succeeed.
1131da177e4SLinus Torvalds
1141da177e4SLinus Torvaldsconfig MTD_SBC_GXX
1151da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Arcom SBC-GXx boards"
1161da177e4SLinus Torvalds	depends on X86 && MTD_CFI_INTELEXT && MTD_PARTITIONS && MTD_COMPLEX_MAPPINGS
1171da177e4SLinus Torvalds	help
1181da177e4SLinus Torvalds	  This provides a driver for the on-board flash of Arcom Control
1191da177e4SLinus Torvalds	  Systems' SBC-GXn family of boards, formerly known as SBC-MediaGX.
1201da177e4SLinus Torvalds	  By default the flash is split into 3 partitions which are accessed
1211da177e4SLinus Torvalds	  as separate MTD devices. This board utilizes Intel StrataFlash.
1221da177e4SLinus Torvalds	  More info at
1231da177e4SLinus Torvalds	  <http://www.arcomcontrols.com/products/icp/pc104/processors/SBC_GX1.htm>.
1241da177e4SLinus Torvalds
1251da177e4SLinus Torvaldsconfig MTD_LUBBOCK
1261da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Intel Lubbock XScale eval board"
1271da177e4SLinus Torvalds	depends on ARCH_LUBBOCK && MTD_CFI_INTELEXT && MTD_PARTITIONS
1281da177e4SLinus Torvalds	help
1291da177e4SLinus Torvalds	  This provides a driver for the on-board flash of the Intel
1301da177e4SLinus Torvalds	  'Lubbock' XScale evaluation board.
1311da177e4SLinus Torvalds
132cbec19aeSNico Pitreconfig MTD_MAINSTONE
133cbec19aeSNico Pitre	tristate "CFI Flash device mapped on Intel Mainstone XScale eval board"
134cbec19aeSNico Pitre	depends on MACH_MAINSTONE && MTD_CFI_INTELEXT
135cbec19aeSNico Pitre	select MTD_PARTITIONS
136cbec19aeSNico Pitre	help
137cbec19aeSNico Pitre	  This provides a driver for the on-board flash of the Intel
138cbec19aeSNico Pitre	  'Mainstone PXA27x evaluation board.
139cbec19aeSNico Pitre
1401da177e4SLinus Torvaldsconfig MTD_OCTAGON
1411da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Octagon 5066 SBC"
1421da177e4SLinus Torvalds	depends on X86 && MTD_JEDEC && MTD_COMPLEX_MAPPINGS
1431da177e4SLinus Torvalds	help
1441da177e4SLinus Torvalds	  This provides a 'mapping' driver which supports the way in which
1451da177e4SLinus Torvalds	  the flash chips are connected in the Octagon-5066 Single Board
1461da177e4SLinus Torvalds	  Computer. More information on the board is available at
1471da177e4SLinus Torvalds	  <http://www.octagonsystems.com/CPUpages/5066.html>.
1481da177e4SLinus Torvalds
1491da177e4SLinus Torvaldsconfig MTD_VMAX
1501da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Tempustech VMAX SBC301"
1511da177e4SLinus Torvalds	depends on X86 && MTD_JEDEC && MTD_COMPLEX_MAPPINGS
1521da177e4SLinus Torvalds	help
1531da177e4SLinus Torvalds	  This provides a 'mapping' driver which supports the way in which
1541da177e4SLinus Torvalds	  the flash chips are connected in the Tempustech VMAX SBC301 Single
1551da177e4SLinus Torvalds	  Board Computer. More information on the board is available at
1561da177e4SLinus Torvalds	  <http://www.tempustech.com/>.
1571da177e4SLinus Torvalds
1581da177e4SLinus Torvaldsconfig MTD_SCx200_DOCFLASH
1591da177e4SLinus Torvalds	tristate "Flash device mapped with DOCCS on NatSemi SCx200"
1601da177e4SLinus Torvalds	depends on SCx200 && MTD_CFI && MTD_PARTITIONS
1611da177e4SLinus Torvalds	help
1621da177e4SLinus Torvalds	  Enable support for a flash chip mapped using the DOCCS signal on a
1631da177e4SLinus Torvalds	  National Semiconductor SCx200 processor.
1641da177e4SLinus Torvalds
1651da177e4SLinus Torvalds	  If you don't know what to do here, say N.
1661da177e4SLinus Torvalds
1671da177e4SLinus Torvalds	  If compiled as a module, it will be called scx200_docflash.
1681da177e4SLinus Torvalds
1691da177e4SLinus Torvaldsconfig MTD_AMD76XROM
1701da177e4SLinus Torvalds	tristate "BIOS flash chip on AMD76x southbridge"
1711da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
1721da177e4SLinus Torvalds	help
1731da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on AMD76x motherboards
1741da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
1751da177e4SLinus Torvalds
1761da177e4SLinus Torvalds	  BE VERY CAREFUL.
1771da177e4SLinus Torvalds
1781da177e4SLinus Torvaldsconfig MTD_ICHXROM
1791da177e4SLinus Torvalds	tristate "BIOS flash chip on Intel Controller Hub 2/3/4/5"
1801da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
1811da177e4SLinus Torvalds	help
1821da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on ICHX motherboards
1831da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
1841da177e4SLinus Torvalds
1851da177e4SLinus Torvalds	  BE VERY CAREFUL.
1861da177e4SLinus Torvalds
1871da177e4SLinus Torvaldsconfig MTD_SCB2_FLASH
1881da177e4SLinus Torvalds	tristate "BIOS flash chip on Intel SCB2 boards"
1891da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
1901da177e4SLinus Torvalds	help
1911da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on Intel SCB2 boards
1921da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
1931da177e4SLinus Torvalds
1941da177e4SLinus Torvalds	  BE VERY CAREFUL.
1951da177e4SLinus Torvalds
1961da177e4SLinus Torvaldsconfig MTD_TSUNAMI
1971da177e4SLinus Torvalds	tristate "Flash chips on Tsunami TIG bus"
1981da177e4SLinus Torvalds	depends on ALPHA_TSUNAMI && MTD_COMPLEX_MAPPINGS
1991da177e4SLinus Torvalds	help
2001da177e4SLinus Torvalds	  Support for the flash chip on Tsunami TIG bus.
2011da177e4SLinus Torvalds
2021da177e4SLinus Torvaldsconfig MTD_LASAT
2031da177e4SLinus Torvalds	tristate "Flash chips on LASAT board"
2041da177e4SLinus Torvalds	depends on LASAT
2051da177e4SLinus Torvalds	help
2061da177e4SLinus Torvalds	  Support for the flash chips on the Lasat 100 and 200 boards.
2071da177e4SLinus Torvalds
2081da177e4SLinus Torvaldsconfig MTD_NETtel
2091da177e4SLinus Torvalds	tristate "CFI flash device on SnapGear/SecureEdge"
2101da177e4SLinus Torvalds	depends on X86 && MTD_PARTITIONS && MTD_JEDECPROBE
2111da177e4SLinus Torvalds	help
2121da177e4SLinus Torvalds	  Support for flash chips on NETtel/SecureEdge/SnapGear boards.
2131da177e4SLinus Torvalds
214002fa301SPete Popovconfig MTD_ALCHEMY
215002fa301SPete Popov	tristate '  AMD Alchemy Pb1xxx/Db1xxx/RDK MTD support'
216002fa301SPete Popov	depends on MIPS && SOC_AU1X00
2171da177e4SLinus Torvalds	help
218002fa301SPete Popov	  Flash memory access on AMD Alchemy Pb/Db/RDK Reference Boards
2191da177e4SLinus Torvalds
2201da177e4SLinus Torvaldsconfig MTD_DILNETPC
2211da177e4SLinus Torvalds	tristate "CFI Flash device mapped on DIL/Net PC"
2221da177e4SLinus Torvalds	depends on X86 && MTD_CONCAT && MTD_PARTITIONS && MTD_CFI_INTELEXT
2231da177e4SLinus Torvalds	help
2241da177e4SLinus Torvalds	  MTD map driver for SSV DIL/Net PC Boards "DNP" and "ADNP".
2251da177e4SLinus Torvalds	  For details, see <http://www.ssv-embedded.de/ssv/pc104/p169.htm>
2261da177e4SLinus Torvalds 	  and <http://www.ssv-embedded.de/ssv/pc104/p170.htm>
2271da177e4SLinus Torvalds
2281da177e4SLinus Torvaldsconfig MTD_DILNETPC_BOOTSIZE
2291da177e4SLinus Torvalds	hex "Size of DIL/Net PC flash boot partition"
2301da177e4SLinus Torvalds	depends on MTD_DILNETPC
2311da177e4SLinus Torvalds	default "0x80000"
2321da177e4SLinus Torvalds	help
2331da177e4SLinus Torvalds	  The amount of space taken up by the kernel or Etherboot
2341da177e4SLinus Torvalds	  on the DIL/Net PC flash chips.
2351da177e4SLinus Torvalds
2361da177e4SLinus Torvaldsconfig MTD_L440GX
2371da177e4SLinus Torvalds	tristate "BIOS flash chip on Intel L440GX boards"
2381da177e4SLinus Torvalds	depends on X86 && MTD_JEDECPROBE
2391da177e4SLinus Torvalds	help
2401da177e4SLinus Torvalds	  Support for treating the BIOS flash chip on Intel L440GX motherboards
2411da177e4SLinus Torvalds	  as an MTD device - with this you can reprogram your BIOS.
2421da177e4SLinus Torvalds
2431da177e4SLinus Torvalds	  BE VERY CAREFUL.
2441da177e4SLinus Torvalds
2451da177e4SLinus Torvaldsconfig MTD_SBC8240
2461da177e4SLinus Torvalds	tristate "Flash device on SBC8240"
2471da177e4SLinus Torvalds	depends on PPC32 && MTD_JEDECPROBE && 6xx && 8260
2481da177e4SLinus Torvalds	help
2491da177e4SLinus Torvalds          Flash access on the SBC8240 board from Wind River.  See
2501da177e4SLinus Torvalds          <http://www.windriver.com/products/sbc8240/>
2511da177e4SLinus Torvalds
2521da177e4SLinus Torvaldsconfig MTD_TQM8XXL
2531da177e4SLinus Torvalds	tristate "CFI Flash device mapped on TQM8XXL"
2541da177e4SLinus Torvalds	depends on MTD_CFI && PPC32 && 8xx && TQM8xxL
2551da177e4SLinus Torvalds	help
2561da177e4SLinus Torvalds	  The TQM8xxL PowerPC board has up to two banks of CFI-compliant
2571da177e4SLinus Torvalds	  chips, currently uses AMD one. This 'mapping' driver supports
2581da177e4SLinus Torvalds	  that arrangement, allowing the CFI probe and command set driver
2591da177e4SLinus Torvalds	  code to communicate with the chips on the TQM8xxL board. More at
2601da177e4SLinus Torvalds	  <http://www.denx.de/embedded-ppc-en.html>.
2611da177e4SLinus Torvalds
2621da177e4SLinus Torvaldsconfig MTD_RPXLITE
2631da177e4SLinus Torvalds	tristate "CFI Flash device mapped on RPX Lite or CLLF"
2641da177e4SLinus Torvalds	depends on MTD_CFI && PPC32 && 8xx && (RPXCLASSIC || RPXLITE)
2651da177e4SLinus Torvalds	help
2661da177e4SLinus Torvalds	  The RPXLite PowerPC board has CFI-compliant chips mapped in
2671da177e4SLinus Torvalds	  a strange sparse mapping. This 'mapping' driver supports that
2681da177e4SLinus Torvalds	  arrangement, allowing the CFI probe and command set driver code
2691da177e4SLinus Torvalds	  to communicate with the chips on the RPXLite board. More at
2701da177e4SLinus Torvalds	  <http://www.embeddedplanet.com/>.
2711da177e4SLinus Torvalds
2721da177e4SLinus Torvaldsconfig MTD_MBX860
2731da177e4SLinus Torvalds	tristate "System flash on MBX860 board"
2741da177e4SLinus Torvalds	depends on MTD_CFI && PPC32 && 8xx && MBX
2751da177e4SLinus Torvalds	help
2761da177e4SLinus Torvalds	  This enables access routines for the flash chips on the Motorola
2771da177e4SLinus Torvalds	  MBX860 board. If you have one of these boards and would like
2781da177e4SLinus Torvalds	  to use the flash chips on it, say 'Y'.
2791da177e4SLinus Torvalds
2801da177e4SLinus Torvaldsconfig MTD_DBOX2
2811da177e4SLinus Torvalds	tristate "CFI Flash device mapped on D-Box2"
2821da177e4SLinus Torvalds	depends on PPC32 && 8xx && DBOX2 && MTD_CFI_INTELSTD && MTD_CFI_INTELEXT && MTD_CFI_AMDSTD
2831da177e4SLinus Torvalds	help
2841da177e4SLinus Torvalds	  This enables access routines for the flash chips on the Nokia/Sagem
2851da177e4SLinus Torvalds	  D-Box 2 board. If you have one of these boards and would like to use
2861da177e4SLinus Torvalds	  the flash chips on it, say 'Y'.
2871da177e4SLinus Torvalds
2881da177e4SLinus Torvaldsconfig MTD_CFI_FLAGADM
2891da177e4SLinus Torvalds	tristate "CFI Flash device mapping on FlagaDM"
2901da177e4SLinus Torvalds	depends on PPC32 && 8xx && MTD_CFI
2911da177e4SLinus Torvalds	help
2921da177e4SLinus Torvalds	  Mapping for the Flaga digital module. If you don't have one, ignore
2931da177e4SLinus Torvalds	  this setting.
2941da177e4SLinus Torvalds
2951da177e4SLinus Torvaldsconfig MTD_BEECH
2961da177e4SLinus Torvalds	tristate "CFI Flash device mapped on IBM 405LP Beech"
2971da177e4SLinus Torvalds	depends on MTD_CFI && PPC32 && 40x && BEECH
2981da177e4SLinus Torvalds	help
2991da177e4SLinus Torvalds	  This enables access routines for the flash chips on the IBM
3001da177e4SLinus Torvalds	  405LP Beech board. If you have one of these boards and would like
3011da177e4SLinus Torvalds	  to use the flash chips on it, say 'Y'.
3021da177e4SLinus Torvalds
3031da177e4SLinus Torvaldsconfig MTD_ARCTIC
3041da177e4SLinus Torvalds	tristate "CFI Flash device mapped on IBM 405LP Arctic"
3051da177e4SLinus Torvalds	depends on MTD_CFI && PPC32 && 40x && ARCTIC2
3061da177e4SLinus Torvalds	help
3071da177e4SLinus Torvalds	  This enables access routines for the flash chips on the IBM 405LP
3081da177e4SLinus Torvalds	  Arctic board. If you have one of these boards and would like to
3091da177e4SLinus Torvalds	  use the flash chips on it, say 'Y'.
3101da177e4SLinus Torvalds
3111da177e4SLinus Torvaldsconfig MTD_WALNUT
3121da177e4SLinus Torvalds	tristate "Flash device mapped on IBM 405GP Walnut"
3131da177e4SLinus Torvalds	depends on MTD_JEDECPROBE && PPC32 && 40x && WALNUT
3141da177e4SLinus Torvalds	help
3151da177e4SLinus Torvalds	  This enables access routines for the flash chips on the IBM 405GP
3161da177e4SLinus Torvalds	  Walnut board. If you have one of these boards and would like to
3171da177e4SLinus Torvalds	  use the flash chips on it, say 'Y'.
3181da177e4SLinus Torvalds
3191da177e4SLinus Torvaldsconfig MTD_EBONY
3201da177e4SLinus Torvalds	tristate "Flash devices mapped on IBM 440GP Ebony"
3211da177e4SLinus Torvalds	depends on MTD_JEDECPROBE && PPC32 && 44x && EBONY
3221da177e4SLinus Torvalds	help
3231da177e4SLinus Torvalds	  This enables access routines for the flash chips on the IBM 440GP
3241da177e4SLinus Torvalds	  Ebony board. If you have one of these boards and would like to
3251da177e4SLinus Torvalds	  use the flash chips on it, say 'Y'.
3261da177e4SLinus Torvalds
3271da177e4SLinus Torvaldsconfig MTD_OCOTEA
3281da177e4SLinus Torvalds	tristate "Flash devices mapped on IBM 440GX Ocotea"
3291da177e4SLinus Torvalds	depends on MTD_CFI && PPC32 && 44x && OCOTEA
3301da177e4SLinus Torvalds	help
3311da177e4SLinus Torvalds	  This enables access routines for the flash chips on the IBM 440GX
3321da177e4SLinus Torvalds	  Ocotea board. If you have one of these boards and would like to
3331da177e4SLinus Torvalds	  use the flash chips on it, say 'Y'.
3341da177e4SLinus Torvalds
3351da177e4SLinus Torvaldsconfig MTD_REDWOOD
3361da177e4SLinus Torvalds	tristate "CFI Flash devices mapped on IBM Redwood"
3371da177e4SLinus Torvalds	depends on MTD_CFI && PPC32 && 4xx && 40x && ( REDWOOD_4 || REDWOOD_5 || REDWOOD_6 )
3381da177e4SLinus Torvalds	help
3391da177e4SLinus Torvalds	  This enables access routines for the flash chips on the IBM
3401da177e4SLinus Torvalds	  Redwood board. If you have one of these boards and would like to
3411da177e4SLinus Torvalds	  use the flash chips on it, say 'Y'.
3421da177e4SLinus Torvalds
3431da177e4SLinus Torvaldsconfig MTD_CSTM_MIPS_IXX
3441da177e4SLinus Torvalds	tristate "Flash chip mapping on ITE QED-4N-S01B, Globespan IVR or custom board"
3451da177e4SLinus Torvalds	depends on MIPS && MTD_CFI && MTD_JEDECPROBE && MTD_PARTITIONS
3461da177e4SLinus Torvalds	help
3471da177e4SLinus Torvalds	  This provides a mapping driver for the Integrated Technology
3481da177e4SLinus Torvalds	  Express, Inc (ITE) QED-4N-S01B eval board and the Globespan IVR
3491da177e4SLinus Torvalds	  Reference Board. It provides the necessary addressing, length,
3501da177e4SLinus Torvalds	  buswidth, vpp code and addition setup of the flash device for
3511da177e4SLinus Torvalds	  these boards. In addition, this mapping driver can be used for
3521da177e4SLinus Torvalds	  other boards via setting of the CONFIG_MTD_CSTM_MIPS_IXX_START/
3531da177e4SLinus Torvalds	  LEN/BUSWIDTH parameters. This mapping will provide one mtd device
3541da177e4SLinus Torvalds	  using one partition. The start address can be offset from the
3551da177e4SLinus Torvalds	  beginning of flash and the len can be less than the total flash
3561da177e4SLinus Torvalds	  device size to allow a window into the flash. Both CFI and JEDEC
3571da177e4SLinus Torvalds	  probes are called.
3581da177e4SLinus Torvalds
3591da177e4SLinus Torvaldsconfig MTD_CSTM_MIPS_IXX_START
3601da177e4SLinus Torvalds	hex "Physical start address of flash mapping"
3611da177e4SLinus Torvalds	depends on MTD_CSTM_MIPS_IXX
3621da177e4SLinus Torvalds	default "0x8000000"
3631da177e4SLinus Torvalds	help
3641da177e4SLinus Torvalds	  This is the physical memory location that the MTD driver will
3651da177e4SLinus Torvalds	  use for the flash chips on your particular target board.
3661da177e4SLinus Torvalds	  Refer to the memory map which should hopefully be in the
3671da177e4SLinus Torvalds	  documentation for your board.
3681da177e4SLinus Torvalds
3691da177e4SLinus Torvaldsconfig MTD_CSTM_MIPS_IXX_LEN
3701da177e4SLinus Torvalds	hex "Physical length of flash mapping"
3711da177e4SLinus Torvalds	depends on MTD_CSTM_MIPS_IXX
3721da177e4SLinus Torvalds	default "0x4000000"
3731da177e4SLinus Torvalds	help
3741da177e4SLinus Torvalds	  This is the total length that the MTD driver will use for the
3751da177e4SLinus Torvalds	  flash chips on your particular board.  Refer to the memory
3761da177e4SLinus Torvalds	  map which should hopefully be in the documentation for your
3771da177e4SLinus Torvalds	  board.
3781da177e4SLinus Torvalds
3791da177e4SLinus Torvaldsconfig MTD_CSTM_MIPS_IXX_BUSWIDTH
3801da177e4SLinus Torvalds	int "Bus width in octets"
3811da177e4SLinus Torvalds	depends on MTD_CSTM_MIPS_IXX
3821da177e4SLinus Torvalds	default "2"
3831da177e4SLinus Torvalds	help
3841da177e4SLinus Torvalds	  This is the total bus width of the mapping of the flash chips
3851da177e4SLinus Torvalds	  on your particular board.
3861da177e4SLinus Torvalds
3871da177e4SLinus Torvaldsconfig MTD_OCELOT
3881da177e4SLinus Torvalds	tristate "Momenco Ocelot boot flash device"
3891da177e4SLinus Torvalds	depends on MIPS && MOMENCO_OCELOT
3901da177e4SLinus Torvalds	help
3911da177e4SLinus Torvalds	  This enables access routines for the boot flash device and for the
3921da177e4SLinus Torvalds	  NVRAM on the Momenco Ocelot board. If you have one of these boards
3931da177e4SLinus Torvalds	  and would like access to either of these, say 'Y'.
3941da177e4SLinus Torvalds
3951da177e4SLinus Torvaldsconfig MTD_SOLUTIONENGINE
3961da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Hitachi SolutionEngine"
3971da177e4SLinus Torvalds	depends on SUPERH && MTD_CFI && MTD_REDBOOT_PARTS
3981da177e4SLinus Torvalds	help
3991da177e4SLinus Torvalds	  This enables access to the flash chips on the Hitachi SolutionEngine and
4001da177e4SLinus Torvalds	  similar boards. Say 'Y' if you are building a kernel for such a board.
4011da177e4SLinus Torvalds
4021da177e4SLinus Torvaldsconfig MTD_ARM_INTEGRATOR
4031da177e4SLinus Torvalds	tristate "CFI Flash device mapped on ARM Integrator/P720T"
4041da177e4SLinus Torvalds	depends on ARM && MTD_CFI
4051da177e4SLinus Torvalds
4061da177e4SLinus Torvaldsconfig MTD_CDB89712
4071da177e4SLinus Torvalds	tristate "Cirrus CDB89712 evaluation board mappings"
4081da177e4SLinus Torvalds	depends on ARM && MTD_CFI && ARCH_CDB89712
4091da177e4SLinus Torvalds	help
4101da177e4SLinus Torvalds	  This enables access to the flash or ROM chips on the CDB89712 board.
4111da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
4121da177e4SLinus Torvalds
4131da177e4SLinus Torvaldsconfig MTD_SA1100
4141da177e4SLinus Torvalds	tristate "CFI Flash device mapped on StrongARM SA11x0"
4151da177e4SLinus Torvalds	depends on ARM && MTD_CFI && ARCH_SA1100 && MTD_PARTITIONS
4161da177e4SLinus Torvalds	help
4171da177e4SLinus Torvalds	  This enables access to the flash chips on most platforms based on
4181da177e4SLinus Torvalds	  the SA1100 and SA1110, including the Assabet and the Compaq iPAQ.
4191da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
4201da177e4SLinus Torvalds
4211da177e4SLinus Torvaldsconfig MTD_IPAQ
4221da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Compaq/HP iPAQ"
4231da177e4SLinus Torvalds	depends on ARM && IPAQ_HANDHELD && MTD_CFI
4241da177e4SLinus Torvalds	help
4251da177e4SLinus Torvalds	  This provides a driver for the on-board flash of the iPAQ.
4261da177e4SLinus Torvalds
4271da177e4SLinus Torvaldsconfig MTD_DC21285
4281da177e4SLinus Torvalds	tristate "CFI Flash device mapped on DC21285 Footbridge"
4291da177e4SLinus Torvalds	depends on ARM && MTD_CFI && ARCH_FOOTBRIDGE && MTD_COMPLEX_MAPPINGS
4301da177e4SLinus Torvalds	help
4311da177e4SLinus Torvalds	  This provides a driver for the flash accessed using Intel's
4321da177e4SLinus Torvalds	  21285 bridge used with Intel's StrongARM processors. More info at
4331da177e4SLinus Torvalds	  <http://www.intel.com/design/bridge/docs/21285_documentation.htm>.
4341da177e4SLinus Torvalds
4351da177e4SLinus Torvaldsconfig MTD_IQ80310
4361da177e4SLinus Torvalds	tristate "CFI Flash device mapped on the XScale IQ80310 board"
4371da177e4SLinus Torvalds	depends on ARM && MTD_CFI && ARCH_IQ80310
4381da177e4SLinus Torvalds	help
4391da177e4SLinus Torvalds	  This enables access routines for the flash chips on the Intel XScale
4401da177e4SLinus Torvalds	  IQ80310 evaluation board. If you have one of these boards and would
4411da177e4SLinus Torvalds	  like to use the flash chips on it, say 'Y'.
4421da177e4SLinus Torvalds
4431da177e4SLinus Torvaldsconfig MTD_IXP4XX
4441da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Intel IXP4xx based systems"
4451da177e4SLinus Torvalds	depends on ARM && MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP4XX
4461da177e4SLinus Torvalds	help
4471da177e4SLinus Torvalds	  This enables MTD access to flash devices on platforms based
4481da177e4SLinus Torvalds	  on Intel's IXP4xx family of network processors such as the
4491da177e4SLinus Torvalds	  IXDP425 and Coyote. If you have an IXP4xx based board and
4501da177e4SLinus Torvalds	  would like to use the flash chips on it, say 'Y'.
4511da177e4SLinus Torvalds
4521da177e4SLinus Torvaldsconfig MTD_IXP2000
4531da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Intel IXP2000 based systems"
4541da177e4SLinus Torvalds	depends on ARM && MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP2000
4551da177e4SLinus Torvalds	help
4561da177e4SLinus Torvalds	  This enables MTD access to flash devices on platforms based
4571da177e4SLinus Torvalds	  on Intel's IXP2000 family of network processors such as the
4581da177e4SLinus Torvalds	  IXDP425 and Coyote. If you have an IXP2000 based board and
4591da177e4SLinus Torvalds	  would like to use the flash chips on it, say 'Y'.
4601da177e4SLinus Torvalds
4611da177e4SLinus Torvaldsconfig MTD_EPXA10DB
4621da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Epxa10db"
4631da177e4SLinus Torvalds	depends on ARM && MTD_CFI && MTD_PARTITIONS && ARCH_CAMELOT
4641da177e4SLinus Torvalds	help
4651da177e4SLinus Torvalds	  This enables support for the flash devices on the Altera
4661da177e4SLinus Torvalds	  Excalibur XA10 Development Board. If you are building a kernel
4671da177e4SLinus Torvalds	  for on of these boards then you should say 'Y' otherwise say 'N'.
4681da177e4SLinus Torvalds
4691da177e4SLinus Torvaldsconfig MTD_FORTUNET
4701da177e4SLinus Torvalds	tristate "CFI Flash device mapped on the FortuNet board"
4711da177e4SLinus Torvalds	depends on ARM && MTD_CFI && MTD_PARTITIONS && SA1100_FORTUNET
4721da177e4SLinus Torvalds	help
4731da177e4SLinus Torvalds	  This enables access to the Flash on the FortuNet board.  If you
4741da177e4SLinus Torvalds	  have such a board, say 'Y'.
4751da177e4SLinus Torvalds
4761da177e4SLinus Torvaldsconfig MTD_AUTCPU12
4771da177e4SLinus Torvalds	tristate "NV-RAM mapping AUTCPU12 board"
4781da177e4SLinus Torvalds	depends on ARM && ARCH_AUTCPU12
4791da177e4SLinus Torvalds	help
4801da177e4SLinus Torvalds	  This enables access to the NV-RAM on autronix autcpu12 board.
4811da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
4821da177e4SLinus Torvalds
4831da177e4SLinus Torvaldsconfig MTD_EDB7312
4841da177e4SLinus Torvalds	tristate "CFI Flash device mapped on EDB7312"
4851da177e4SLinus Torvalds	depends on ARM && MTD_CFI
4861da177e4SLinus Torvalds	help
4871da177e4SLinus Torvalds	  This enables access to the CFI Flash on the Cogent EDB7312 board.
4881da177e4SLinus Torvalds	  If you have such a board, say 'Y' here.
4891da177e4SLinus Torvalds
4901da177e4SLinus Torvaldsconfig MTD_IMPA7
4911da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on impA7"
4921da177e4SLinus Torvalds	depends on ARM && MTD_JEDECPROBE
4931da177e4SLinus Torvalds	help
4941da177e4SLinus Torvalds	  This enables access to the NOR Flash on the impA7 board of
4951da177e4SLinus Torvalds	  implementa GmbH. If you have such a board, say 'Y' here.
4961da177e4SLinus Torvalds
4971da177e4SLinus Torvaldsconfig MTD_CEIVA
4981da177e4SLinus Torvalds	tristate "JEDEC Flash device mapped on Ceiva/Polaroid PhotoMax Digital Picture Frame"
4991da177e4SLinus Torvalds	depends on ARM && MTD_JEDECPROBE && ARCH_CEIVA
5001da177e4SLinus Torvalds	help
5011da177e4SLinus Torvalds	  This enables access to the flash chips on the Ceiva/Polaroid
5021da177e4SLinus Torvalds	  PhotoMax Digital Picture Frame.
5031da177e4SLinus Torvalds	  If you have such a device, say 'Y'.
5041da177e4SLinus Torvalds
5051da177e4SLinus Torvaldsconfig MTD_NOR_TOTO
5061da177e4SLinus Torvalds	tristate "NOR Flash device on TOTO board"
5071da177e4SLinus Torvalds	depends on ARM && ARCH_OMAP && OMAP_TOTO
5081da177e4SLinus Torvalds	help
5091da177e4SLinus Torvalds	  This enables access to the NOR flash on the Texas Instruments
5101da177e4SLinus Torvalds	  TOTO board.
5111da177e4SLinus Torvalds
5121da177e4SLinus Torvaldsconfig MTD_H720X
5131da177e4SLinus Torvalds	tristate "Hynix evaluation board mappings"
5141da177e4SLinus Torvalds	depends on ARM && MTD_CFI && ( ARCH_H7201 || ARCH_H7202 )
5151da177e4SLinus Torvalds	help
5161da177e4SLinus Torvalds	  This enables access to the flash chips on the Hynix evaluation boards.
5171da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
5181da177e4SLinus Torvalds
5191da177e4SLinus Torvaldsconfig MTD_MPC1211
5201da177e4SLinus Torvalds	tristate "CFI Flash device mapped on Interface MPC-1211"
5211da177e4SLinus Torvalds	depends on SUPERH && SH_MPC1211 && MTD_CFI
5221da177e4SLinus Torvalds	help
5231da177e4SLinus Torvalds	  This enables access to the flash chips on the Interface MPC-1211(CTP/PCI/MPC-SH02).
5241da177e4SLinus Torvalds	  If you have such a board, say 'Y'.
5251da177e4SLinus Torvalds
526*10c96f2eSTodd Poynorconfig MTD_OMAP_NOR
527*10c96f2eSTodd Poynor	tristate "TI OMAP board mappings"
528*10c96f2eSTodd Poynor	depends on MTD_CFI && ARCH_OMAP
529*10c96f2eSTodd Poynor	help
530*10c96f2eSTodd Poynor	  This enables access to the NOR flash chips on TI OMAP-based
531*10c96f2eSTodd Poynor	  boards defining flash platform devices and flash platform data.
532*10c96f2eSTodd Poynor	  These boards include the Innovator, H2, H3, OSK, Perseus2, and
533*10c96f2eSTodd Poynor	  more.  If you have such a board, say 'Y'.
534*10c96f2eSTodd Poynor
5351da177e4SLinus Torvalds# This needs CFI or JEDEC, depending on the cards found.
5361da177e4SLinus Torvaldsconfig MTD_PCI
5371da177e4SLinus Torvalds	tristate "PCI MTD driver"
5381da177e4SLinus Torvalds	depends on MTD && PCI && MTD_COMPLEX_MAPPINGS
5391da177e4SLinus Torvalds	help
5401da177e4SLinus Torvalds	  Mapping for accessing flash devices on add-in cards like the Intel XScale
5411da177e4SLinus Torvalds	  IQ80310 card, and the Intel EBSA285 card in blank ROM programming mode
5421da177e4SLinus Torvalds	  (please see the manual for the link settings).
5431da177e4SLinus Torvalds
5441da177e4SLinus Torvalds	  If you are not sure, say N.
5451da177e4SLinus Torvalds
5461da177e4SLinus Torvaldsconfig MTD_PCMCIA
5471da177e4SLinus Torvalds	tristate "PCMCIA MTD driver"
5481da177e4SLinus Torvalds	depends on MTD && PCMCIA && MTD_COMPLEX_MAPPINGS && BROKEN
5491da177e4SLinus Torvalds	help
5501da177e4SLinus Torvalds	  Map driver for accessing PCMCIA linear flash memory cards. These
5511da177e4SLinus Torvalds	  cards are usually around 4-16MiB in size. This does not include
5521da177e4SLinus Torvalds	  Compact Flash cards which are treated as IDE devices.
5531da177e4SLinus Torvalds
5541da177e4SLinus Torvaldsconfig MTD_UCLINUX
5551da177e4SLinus Torvalds	tristate "Generic uClinux RAM/ROM filesystem support"
5561da177e4SLinus Torvalds	depends on MTD_PARTITIONS && !MMU
5571da177e4SLinus Torvalds	help
5581da177e4SLinus Torvalds	  Map driver to support image based filesystems for uClinux.
5591da177e4SLinus Torvalds
5601da177e4SLinus Torvaldsconfig MTD_WRSBC8260
5611da177e4SLinus Torvalds	tristate "Map driver for WindRiver PowerQUICC II MPC82xx board"
5621da177e4SLinus Torvalds	depends on (SBC82xx || SBC8560)
5631da177e4SLinus Torvalds	select MTD_PARTITIONS
5641da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_4
5651da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_1
5661da177e4SLinus Torvalds	select MTD_CFI_I1
5671da177e4SLinus Torvalds	select MTD_CFI_I4
5681da177e4SLinus Torvalds	help
5691da177e4SLinus Torvalds	  Map driver for WindRiver PowerQUICC II MPC82xx board. Drives
5701da177e4SLinus Torvalds	  all three flash regions on CS0, CS1 and CS6 if they are configured
5711da177e4SLinus Torvalds	  correctly by the boot loader.
5721da177e4SLinus Torvalds
5731da177e4SLinus Torvaldsconfig MTD_DMV182
5741da177e4SLinus Torvalds        tristate "Map driver for Dy-4 SVME/DMV-182 board."
5751da177e4SLinus Torvalds        depends on DMV182
5761da177e4SLinus Torvalds        select MTD_PARTITIONS
5771da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_32
5781da177e4SLinus Torvalds	select MTD_CFI_I8
5791da177e4SLinus Torvalds	select MTD_CFI_AMDSTD
5801da177e4SLinus Torvalds        help
5811da177e4SLinus Torvalds          Map driver for Dy-4 SVME/DMV-182 board.
5821da177e4SLinus Torvalds
5831da177e4SLinus Torvaldsconfig MTD_BAST
58476853596SBen Dooks	tristate "Map driver for Simtec BAST (EB2410ITX) or Thorcom VR1000"
58576853596SBen Dooks	depends on ARCH_BAST || MACH_VR1000
5861da177e4SLinus Torvalds	select MTD_PARTITIONS
5871da177e4SLinus Torvalds	select MTD_MAP_BANK_WIDTH_16
5881da177e4SLinus Torvalds	select MTD_JEDECPROBE
5891da177e4SLinus Torvalds	help
59076853596SBen Dooks	  Map driver for NOR flash on the Simtec BAST (EB2410ITX), or the
59176853596SBen Dooks	  Thorcom VR1000
5921da177e4SLinus Torvalds
5931da177e4SLinus Torvalds	  Note, this driver *cannot* over-ride the WP link on the
5941da177e4SLinus Torvalds	  board, or currently detect the state of the link.
5951da177e4SLinus Torvalds
5961da177e4SLinus Torvaldsconfig MTD_BAST_MAXSIZE
5971da177e4SLinus Torvalds	int "Maximum size for BAST flash area (MiB)"
5981da177e4SLinus Torvalds	depends on MTD_BAST
5991da177e4SLinus Torvalds	default "4"
6001da177e4SLinus Torvalds
6011da177e4SLinus Torvaldsconfig MTD_SHARP_SL
6021da177e4SLinus Torvalds	bool "ROM maped on Sharp SL Series"
6031da177e4SLinus Torvalds	depends on MTD && ARCH_PXA
6041da177e4SLinus Torvalds	help
6051da177e4SLinus Torvalds	  This enables access to the flash chip on the Sharp SL Series of PDAs.
6061da177e4SLinus Torvalds
60799f2a8aeSBen Dooksconfig MTD_PLATRAM
6083c45e00aSThomas Gleixner	tristate "Map driver for platform device RAM (mtd-ram)"
60999f2a8aeSBen Dooks	depends on MTD
61099f2a8aeSBen Dooks	select MTD_RAM
61199f2a8aeSBen Dooks	help
61299f2a8aeSBen Dooks	  Map driver for RAM areas described via the platform device
61399f2a8aeSBen Dooks	  system.
61499f2a8aeSBen Dooks
61599f2a8aeSBen Dooks	  This selection automatically selects the map_ram driver.
61699f2a8aeSBen Dooks
6171da177e4SLinus Torvaldsendmenu
6181da177e4SLinus Torvalds
619