162306a36Sopenharmony_ci# SPDX-License-Identifier: GPL-2.0-only 262306a36Sopenharmony_cimenu "Mapping drivers for chip access" 362306a36Sopenharmony_ci depends on MTD!=n 462306a36Sopenharmony_ci depends on HAS_IOMEM 562306a36Sopenharmony_ci 662306a36Sopenharmony_ciconfig MTD_COMPLEX_MAPPINGS 762306a36Sopenharmony_ci bool "Support non-linear mappings of flash chips" 862306a36Sopenharmony_ci help 962306a36Sopenharmony_ci This causes the chip drivers to allow for complicated 1062306a36Sopenharmony_ci paged mappings of flash chips. 1162306a36Sopenharmony_ci 1262306a36Sopenharmony_ciconfig MTD_PHYSMAP 1362306a36Sopenharmony_ci tristate "Flash device in physical memory map" 1462306a36Sopenharmony_ci depends on MTD_CFI || MTD_JEDECPROBE || MTD_ROM || MTD_RAM || MTD_LPDDR 1562306a36Sopenharmony_ci help 1662306a36Sopenharmony_ci This provides a 'mapping' driver which allows the NOR Flash and 1762306a36Sopenharmony_ci ROM driver code to communicate with chips which are mapped 1862306a36Sopenharmony_ci physically into the CPU's memory. You will need to configure 1962306a36Sopenharmony_ci the physical address and size of the flash chips on your 2062306a36Sopenharmony_ci particular board as well as the bus width, either statically 2162306a36Sopenharmony_ci with config options or at run-time. 2262306a36Sopenharmony_ci 2362306a36Sopenharmony_ci To compile this driver as a module, choose M here: the 2462306a36Sopenharmony_ci module will be called physmap. 2562306a36Sopenharmony_ci 2662306a36Sopenharmony_ciconfig MTD_PHYSMAP_COMPAT 2762306a36Sopenharmony_ci bool "Physmap compat support" 2862306a36Sopenharmony_ci depends on MTD_PHYSMAP 2962306a36Sopenharmony_ci default n 3062306a36Sopenharmony_ci help 3162306a36Sopenharmony_ci Setup a simple mapping via the Kconfig options. Normally the 3262306a36Sopenharmony_ci physmap configuration options are done via your board's 3362306a36Sopenharmony_ci resource file. 3462306a36Sopenharmony_ci 3562306a36Sopenharmony_ci If unsure, say N here. 3662306a36Sopenharmony_ci 3762306a36Sopenharmony_ciconfig MTD_PHYSMAP_START 3862306a36Sopenharmony_ci hex "Physical start address of flash mapping" 3962306a36Sopenharmony_ci depends on MTD_PHYSMAP_COMPAT 4062306a36Sopenharmony_ci default "0x8000000" 4162306a36Sopenharmony_ci help 4262306a36Sopenharmony_ci This is the physical memory location at which the flash chips 4362306a36Sopenharmony_ci are mapped on your particular target board. Refer to the 4462306a36Sopenharmony_ci memory map which should hopefully be in the documentation for 4562306a36Sopenharmony_ci your board. 4662306a36Sopenharmony_ci 4762306a36Sopenharmony_ciconfig MTD_PHYSMAP_LEN 4862306a36Sopenharmony_ci hex "Physical length of flash mapping" 4962306a36Sopenharmony_ci depends on MTD_PHYSMAP_COMPAT 5062306a36Sopenharmony_ci default "0" 5162306a36Sopenharmony_ci help 5262306a36Sopenharmony_ci This is the total length of the mapping of the flash chips on 5362306a36Sopenharmony_ci your particular board. If there is space, or aliases, in the 5462306a36Sopenharmony_ci physical memory map between the chips, this could be larger 5562306a36Sopenharmony_ci than the total amount of flash present. Refer to the memory 5662306a36Sopenharmony_ci map which should hopefully be in the documentation for your 5762306a36Sopenharmony_ci board. 5862306a36Sopenharmony_ci 5962306a36Sopenharmony_ciconfig MTD_PHYSMAP_BANKWIDTH 6062306a36Sopenharmony_ci int "Bank width in octets" 6162306a36Sopenharmony_ci depends on MTD_PHYSMAP_COMPAT 6262306a36Sopenharmony_ci default "2" 6362306a36Sopenharmony_ci help 6462306a36Sopenharmony_ci This is the total width of the data bus of the flash devices 6562306a36Sopenharmony_ci in octets. For example, if you have a data bus width of 32 6662306a36Sopenharmony_ci bits, you would set the bus width octet value to 4. This is 6762306a36Sopenharmony_ci used internally by the CFI drivers. 6862306a36Sopenharmony_ci 6962306a36Sopenharmony_ciconfig MTD_PHYSMAP_OF 7062306a36Sopenharmony_ci bool "Memory device in physical memory map based on OF description" 7162306a36Sopenharmony_ci depends on OF && MTD_PHYSMAP 7262306a36Sopenharmony_ci help 7362306a36Sopenharmony_ci This provides a 'mapping' driver which allows the NOR Flash, ROM 7462306a36Sopenharmony_ci and RAM driver code to communicate with chips which are mapped 7562306a36Sopenharmony_ci physically into the CPU's memory. The mapping description here is 7662306a36Sopenharmony_ci taken from OF device tree. 7762306a36Sopenharmony_ci 7862306a36Sopenharmony_ciconfig MTD_PHYSMAP_BT1_ROM 7962306a36Sopenharmony_ci bool "Baikal-T1 Boot ROMs OF-based physical memory map handling" 8062306a36Sopenharmony_ci depends on MTD_PHYSMAP_OF 8162306a36Sopenharmony_ci depends on MIPS_BAIKAL_T1 || COMPILE_TEST 8262306a36Sopenharmony_ci select MTD_COMPLEX_MAPPINGS 8362306a36Sopenharmony_ci select MULTIPLEXER 8462306a36Sopenharmony_ci select MUX_MMIO 8562306a36Sopenharmony_ci help 8662306a36Sopenharmony_ci This provides some extra DT physmap parsing for the Baikal-T1 8762306a36Sopenharmony_ci platforms, some detection and setting up ROMs-specific accessors. 8862306a36Sopenharmony_ci 8962306a36Sopenharmony_ciconfig MTD_PHYSMAP_VERSATILE 9062306a36Sopenharmony_ci bool "ARM Versatile OF-based physical memory map handling" 9162306a36Sopenharmony_ci depends on MTD_PHYSMAP_OF 9262306a36Sopenharmony_ci depends on MFD_SYSCON 9362306a36Sopenharmony_ci default y if (ARCH_INTEGRATOR || ARCH_VERSATILE || ARCH_REALVIEW) 9462306a36Sopenharmony_ci help 9562306a36Sopenharmony_ci This provides some extra DT physmap parsing for the ARM Versatile 9662306a36Sopenharmony_ci platforms, basically to add a VPP (write protection) callback so 9762306a36Sopenharmony_ci the flash can be taken out of write protection. 9862306a36Sopenharmony_ci 9962306a36Sopenharmony_ciconfig MTD_PHYSMAP_GEMINI 10062306a36Sopenharmony_ci bool "Cortina Gemini OF-based physical memory map handling" 10162306a36Sopenharmony_ci depends on MTD_PHYSMAP_OF 10262306a36Sopenharmony_ci depends on MFD_SYSCON 10362306a36Sopenharmony_ci select MTD_COMPLEX_MAPPINGS 10462306a36Sopenharmony_ci default ARCH_GEMINI 10562306a36Sopenharmony_ci help 10662306a36Sopenharmony_ci This provides some extra DT physmap parsing for the Gemini 10762306a36Sopenharmony_ci platforms, some detection and setting up parallel mode on the 10862306a36Sopenharmony_ci external interface. 10962306a36Sopenharmony_ci 11062306a36Sopenharmony_ciconfig MTD_PHYSMAP_IXP4XX 11162306a36Sopenharmony_ci bool "Intel IXP4xx OF-based physical memory map handling" 11262306a36Sopenharmony_ci depends on MTD_PHYSMAP_OF 11362306a36Sopenharmony_ci depends on ARM 11462306a36Sopenharmony_ci select MTD_COMPLEX_MAPPINGS 11562306a36Sopenharmony_ci select MTD_CFI_BE_BYTE_SWAP if CPU_BIG_ENDIAN 11662306a36Sopenharmony_ci default ARCH_IXP4XX 11762306a36Sopenharmony_ci help 11862306a36Sopenharmony_ci This provides some extra DT physmap parsing for the Intel IXP4xx 11962306a36Sopenharmony_ci platforms, some elaborate endianness handling in particular. 12062306a36Sopenharmony_ci 12162306a36Sopenharmony_ciconfig MTD_PHYSMAP_GPIO_ADDR 12262306a36Sopenharmony_ci bool "GPIO-assisted Flash Chip Support" 12362306a36Sopenharmony_ci depends on MTD_PHYSMAP 12462306a36Sopenharmony_ci depends on GPIOLIB || COMPILE_TEST 12562306a36Sopenharmony_ci depends on MTD_COMPLEX_MAPPINGS 12662306a36Sopenharmony_ci help 12762306a36Sopenharmony_ci Extend the physmap driver to allow flashes to be partially 12862306a36Sopenharmony_ci physically addressed and assisted by GPIOs. 12962306a36Sopenharmony_ci 13062306a36Sopenharmony_ciconfig MTD_SUN_UFLASH 13162306a36Sopenharmony_ci tristate "Sun Microsystems userflash support" 13262306a36Sopenharmony_ci depends on SPARC && MTD_CFI && PCI 13362306a36Sopenharmony_ci help 13462306a36Sopenharmony_ci This provides a 'mapping' driver which supports the way in 13562306a36Sopenharmony_ci which user-programmable flash chips are connected on various 13662306a36Sopenharmony_ci Sun Microsystems boardsets. This driver will require CFI support 13762306a36Sopenharmony_ci in the kernel, so if you did not enable CFI previously, do that now. 13862306a36Sopenharmony_ci 13962306a36Sopenharmony_ciconfig MTD_SC520CDP 14062306a36Sopenharmony_ci tristate "CFI Flash device mapped on AMD SC520 CDP" 14162306a36Sopenharmony_ci depends on (MELAN || COMPILE_TEST) && MTD_CFI 14262306a36Sopenharmony_ci help 14362306a36Sopenharmony_ci The SC520 CDP board has two banks of CFI-compliant chips and one 14462306a36Sopenharmony_ci Dual-in-line JEDEC chip. This 'mapping' driver supports that 14562306a36Sopenharmony_ci arrangement, implementing three MTD devices. 14662306a36Sopenharmony_ci 14762306a36Sopenharmony_ciconfig MTD_NETSC520 14862306a36Sopenharmony_ci tristate "CFI Flash device mapped on AMD NetSc520" 14962306a36Sopenharmony_ci depends on (MELAN || COMPILE_TEST) && MTD_CFI 15062306a36Sopenharmony_ci help 15162306a36Sopenharmony_ci This enables access routines for the flash chips on the AMD NetSc520 15262306a36Sopenharmony_ci demonstration board. If you have one of these boards and would like 15362306a36Sopenharmony_ci to use the flash chips on it, say 'Y'. 15462306a36Sopenharmony_ci 15562306a36Sopenharmony_ciconfig MTD_TS5500 15662306a36Sopenharmony_ci tristate "JEDEC Flash device mapped on Technologic Systems TS-5500" 15762306a36Sopenharmony_ci depends on TS5500 || COMPILE_TEST 15862306a36Sopenharmony_ci select MTD_JEDECPROBE 15962306a36Sopenharmony_ci select MTD_CFI_AMDSTD 16062306a36Sopenharmony_ci help 16162306a36Sopenharmony_ci This provides a driver for the on-board flash of the Technologic 16262306a36Sopenharmony_ci System's TS-5500 board. The 2MB flash is split into 3 partitions 16362306a36Sopenharmony_ci which are accessed as separate MTD devices. 16462306a36Sopenharmony_ci 16562306a36Sopenharmony_ci mtd0 and mtd2 are the two BIOS drives, which use the resident 16662306a36Sopenharmony_ci flash disk (RFD) flash translation layer. 16762306a36Sopenharmony_ci 16862306a36Sopenharmony_ci mtd1 allows you to reprogram your BIOS. BE VERY CAREFUL. 16962306a36Sopenharmony_ci 17062306a36Sopenharmony_ci Note that jumper 3 ("Write Enable Drive A") must be set 17162306a36Sopenharmony_ci otherwise detection won't succeed. 17262306a36Sopenharmony_ci 17362306a36Sopenharmony_ciconfig MTD_SBC_GXX 17462306a36Sopenharmony_ci tristate "CFI Flash device mapped on Arcom SBC-GXx boards" 17562306a36Sopenharmony_ci depends on X86 && MTD_CFI_INTELEXT && MTD_COMPLEX_MAPPINGS 17662306a36Sopenharmony_ci help 17762306a36Sopenharmony_ci This provides a driver for the on-board flash of Arcom Control 17862306a36Sopenharmony_ci Systems' SBC-GXn family of boards, formerly known as SBC-MediaGX. 17962306a36Sopenharmony_ci By default the flash is split into 3 partitions which are accessed 18062306a36Sopenharmony_ci as separate MTD devices. This board utilizes Intel StrataFlash. 18162306a36Sopenharmony_ci More info at 18262306a36Sopenharmony_ci <http://www.arcomcontrols.com/products/icp/pc104/processors/SBC_GX1.htm>. 18362306a36Sopenharmony_ci 18462306a36Sopenharmony_ciconfig MTD_PXA2XX 18562306a36Sopenharmony_ci tristate "CFI Flash device mapped on Intel XScale PXA2xx based boards" 18662306a36Sopenharmony_ci depends on (PXA25x || PXA27x) && MTD_CFI_INTELEXT 18762306a36Sopenharmony_ci help 18862306a36Sopenharmony_ci This provides a driver for the NOR flash attached to a PXA2xx chip. 18962306a36Sopenharmony_ci 19062306a36Sopenharmony_ciconfig MTD_SCx200_DOCFLASH 19162306a36Sopenharmony_ci tristate "Flash device mapped with DOCCS on NatSemi SCx200" 19262306a36Sopenharmony_ci depends on SCx200 && MTD_CFI 19362306a36Sopenharmony_ci help 19462306a36Sopenharmony_ci Enable support for a flash chip mapped using the DOCCS signal on a 19562306a36Sopenharmony_ci National Semiconductor SCx200 processor. 19662306a36Sopenharmony_ci 19762306a36Sopenharmony_ci If you don't know what to do here, say N. 19862306a36Sopenharmony_ci 19962306a36Sopenharmony_ci If compiled as a module, it will be called scx200_docflash. 20062306a36Sopenharmony_ci 20162306a36Sopenharmony_ciconfig MTD_AMD76XROM 20262306a36Sopenharmony_ci tristate "BIOS flash chip on AMD76x southbridge" 20362306a36Sopenharmony_ci depends on X86 && MTD_JEDECPROBE 20462306a36Sopenharmony_ci help 20562306a36Sopenharmony_ci Support for treating the BIOS flash chip on AMD76x motherboards 20662306a36Sopenharmony_ci as an MTD device - with this you can reprogram your BIOS. 20762306a36Sopenharmony_ci 20862306a36Sopenharmony_ci BE VERY CAREFUL. 20962306a36Sopenharmony_ci 21062306a36Sopenharmony_ciconfig MTD_ICHXROM 21162306a36Sopenharmony_ci tristate "BIOS flash chip on Intel Controller Hub 2/3/4/5" 21262306a36Sopenharmony_ci depends on X86 && MTD_JEDECPROBE 21362306a36Sopenharmony_ci help 21462306a36Sopenharmony_ci Support for treating the BIOS flash chip on ICHX motherboards 21562306a36Sopenharmony_ci as an MTD device - with this you can reprogram your BIOS. 21662306a36Sopenharmony_ci 21762306a36Sopenharmony_ci BE VERY CAREFUL. 21862306a36Sopenharmony_ci 21962306a36Sopenharmony_ciconfig MTD_ESB2ROM 22062306a36Sopenharmony_ci tristate "BIOS flash chip on Intel ESB Controller Hub 2" 22162306a36Sopenharmony_ci depends on X86 && MTD_JEDECPROBE && PCI 22262306a36Sopenharmony_ci help 22362306a36Sopenharmony_ci Support for treating the BIOS flash chip on ESB2 motherboards 22462306a36Sopenharmony_ci as an MTD device - with this you can reprogram your BIOS. 22562306a36Sopenharmony_ci 22662306a36Sopenharmony_ci BE VERY CAREFUL. 22762306a36Sopenharmony_ci 22862306a36Sopenharmony_ciconfig MTD_CK804XROM 22962306a36Sopenharmony_ci tristate "BIOS flash chip on Nvidia CK804" 23062306a36Sopenharmony_ci depends on X86 && MTD_JEDECPROBE && PCI 23162306a36Sopenharmony_ci help 23262306a36Sopenharmony_ci Support for treating the BIOS flash chip on nvidia motherboards 23362306a36Sopenharmony_ci as an MTD device - with this you can reprogram your BIOS. 23462306a36Sopenharmony_ci 23562306a36Sopenharmony_ci BE VERY CAREFUL. 23662306a36Sopenharmony_ci 23762306a36Sopenharmony_ciconfig MTD_SCB2_FLASH 23862306a36Sopenharmony_ci tristate "BIOS flash chip on Intel SCB2 boards" 23962306a36Sopenharmony_ci depends on X86 && MTD_JEDECPROBE && PCI 24062306a36Sopenharmony_ci help 24162306a36Sopenharmony_ci Support for treating the BIOS flash chip on Intel SCB2 boards 24262306a36Sopenharmony_ci as an MTD device - with this you can reprogram your BIOS. 24362306a36Sopenharmony_ci 24462306a36Sopenharmony_ci BE VERY CAREFUL. 24562306a36Sopenharmony_ci 24662306a36Sopenharmony_ciconfig MTD_TSUNAMI 24762306a36Sopenharmony_ci tristate "Flash chips on Tsunami TIG bus" 24862306a36Sopenharmony_ci depends on ALPHA_TSUNAMI && MTD_COMPLEX_MAPPINGS 24962306a36Sopenharmony_ci help 25062306a36Sopenharmony_ci Support for the flash chip on Tsunami TIG bus. 25162306a36Sopenharmony_ci 25262306a36Sopenharmony_ciconfig MTD_NETtel 25362306a36Sopenharmony_ci tristate "CFI flash device on SnapGear/SecureEdge" 25462306a36Sopenharmony_ci depends on X86 && MTD_JEDECPROBE 25562306a36Sopenharmony_ci help 25662306a36Sopenharmony_ci Support for flash chips on NETtel/SecureEdge/SnapGear boards. 25762306a36Sopenharmony_ci 25862306a36Sopenharmony_ciconfig MTD_LANTIQ 25962306a36Sopenharmony_ci tristate "Lantiq SoC NOR support" 26062306a36Sopenharmony_ci depends on LANTIQ 26162306a36Sopenharmony_ci help 26262306a36Sopenharmony_ci Support for NOR flash attached to the Lantiq SoC's External Bus Unit. 26362306a36Sopenharmony_ci 26462306a36Sopenharmony_ciconfig MTD_L440GX 26562306a36Sopenharmony_ci tristate "BIOS flash chip on Intel L440GX boards" 26662306a36Sopenharmony_ci depends on X86 && MTD_JEDECPROBE 26762306a36Sopenharmony_ci help 26862306a36Sopenharmony_ci Support for treating the BIOS flash chip on Intel L440GX motherboards 26962306a36Sopenharmony_ci as an MTD device - with this you can reprogram your BIOS. 27062306a36Sopenharmony_ci 27162306a36Sopenharmony_ci BE VERY CAREFUL. 27262306a36Sopenharmony_ci 27362306a36Sopenharmony_ciconfig MTD_CFI_FLAGADM 27462306a36Sopenharmony_ci tristate "CFI Flash device mapping on FlagaDM" 27562306a36Sopenharmony_ci depends on PPC_8xx && MTD_CFI 27662306a36Sopenharmony_ci help 27762306a36Sopenharmony_ci Mapping for the Flaga digital module. If you don't have one, ignore 27862306a36Sopenharmony_ci this setting. 27962306a36Sopenharmony_ci 28062306a36Sopenharmony_ciconfig MTD_SOLUTIONENGINE 28162306a36Sopenharmony_ci tristate "CFI Flash device mapped on Hitachi SolutionEngine" 28262306a36Sopenharmony_ci depends on SOLUTION_ENGINE && MTD_CFI && MTD_REDBOOT_PARTS 28362306a36Sopenharmony_ci help 28462306a36Sopenharmony_ci This enables access to the flash chips on the Hitachi SolutionEngine and 28562306a36Sopenharmony_ci similar boards. Say 'Y' if you are building a kernel for such a board. 28662306a36Sopenharmony_ci 28762306a36Sopenharmony_ciconfig MTD_SA1100 28862306a36Sopenharmony_ci tristate "CFI Flash device mapped on StrongARM SA11x0" 28962306a36Sopenharmony_ci depends on MTD_CFI && ARCH_SA1100 29062306a36Sopenharmony_ci help 29162306a36Sopenharmony_ci This enables access to the flash chips on most platforms based on 29262306a36Sopenharmony_ci the SA1100 and SA1110, including the Assabet and the Compaq iPAQ. 29362306a36Sopenharmony_ci If you have such a board, say 'Y'. 29462306a36Sopenharmony_ci 29562306a36Sopenharmony_ciconfig MTD_DC21285 29662306a36Sopenharmony_ci tristate "CFI Flash device mapped on DC21285 Footbridge" 29762306a36Sopenharmony_ci depends on MTD_CFI && ARCH_FOOTBRIDGE && MTD_COMPLEX_MAPPINGS 29862306a36Sopenharmony_ci help 29962306a36Sopenharmony_ci This provides a driver for the flash accessed using Intel's 30062306a36Sopenharmony_ci 21285 bridge used with Intel's StrongARM processors. More info at 30162306a36Sopenharmony_ci <https://www.intel.com/design/bridge/docs/21285_documentation.htm>. 30262306a36Sopenharmony_ci 30362306a36Sopenharmony_ciconfig MTD_IMPA7 30462306a36Sopenharmony_ci tristate "JEDEC Flash device mapped on impA7" 30562306a36Sopenharmony_ci depends on ARM && MTD_JEDECPROBE 30662306a36Sopenharmony_ci help 30762306a36Sopenharmony_ci This enables access to the NOR Flash on the impA7 board of 30862306a36Sopenharmony_ci implementa GmbH. If you have such a board, say 'Y' here. 30962306a36Sopenharmony_ci 31062306a36Sopenharmony_ci# This needs CFI or JEDEC, depending on the cards found. 31162306a36Sopenharmony_ciconfig MTD_PCI 31262306a36Sopenharmony_ci tristate "PCI MTD driver" 31362306a36Sopenharmony_ci depends on PCI && MTD_COMPLEX_MAPPINGS 31462306a36Sopenharmony_ci help 31562306a36Sopenharmony_ci Mapping for accessing flash devices on add-in cards like the Intel XScale 31662306a36Sopenharmony_ci IQ80310 card, and the Intel EBSA285 card in blank ROM programming mode 31762306a36Sopenharmony_ci (please see the manual for the link settings). 31862306a36Sopenharmony_ci 31962306a36Sopenharmony_ci If you are not sure, say N. 32062306a36Sopenharmony_ci 32162306a36Sopenharmony_ciconfig MTD_PCMCIA 32262306a36Sopenharmony_ci tristate "PCMCIA MTD driver" 32362306a36Sopenharmony_ci depends on PCMCIA && MTD_COMPLEX_MAPPINGS 32462306a36Sopenharmony_ci help 32562306a36Sopenharmony_ci Map driver for accessing PCMCIA linear flash memory cards. These 32662306a36Sopenharmony_ci cards are usually around 4-16MiB in size. This does not include 32762306a36Sopenharmony_ci Compact Flash cards which are treated as IDE devices. 32862306a36Sopenharmony_ci 32962306a36Sopenharmony_ciconfig MTD_PCMCIA_ANONYMOUS 33062306a36Sopenharmony_ci bool "Use PCMCIA MTD drivers for anonymous PCMCIA cards" 33162306a36Sopenharmony_ci depends on MTD_PCMCIA 33262306a36Sopenharmony_ci help 33362306a36Sopenharmony_ci If this option is enabled, PCMCIA cards which do not report 33462306a36Sopenharmony_ci anything about themselves are assumed to be MTD cards. 33562306a36Sopenharmony_ci 33662306a36Sopenharmony_ci If unsure, say N. 33762306a36Sopenharmony_ci 33862306a36Sopenharmony_ciconfig MTD_UCLINUX 33962306a36Sopenharmony_ci bool "Generic uClinux RAM/ROM filesystem support" 34062306a36Sopenharmony_ci depends on (MTD_RAM=y || MTD_ROM=y) && (!MMU || COLDFIRE) 34162306a36Sopenharmony_ci help 34262306a36Sopenharmony_ci Map driver to support image based filesystems for uClinux. 34362306a36Sopenharmony_ci 34462306a36Sopenharmony_ciconfig MTD_INTEL_VR_NOR 34562306a36Sopenharmony_ci tristate "NOR flash on Intel Vermilion Range Expansion Bus CS0" 34662306a36Sopenharmony_ci depends on PCI 34762306a36Sopenharmony_ci help 34862306a36Sopenharmony_ci Map driver for a NOR flash bank located on the Expansion Bus of the 34962306a36Sopenharmony_ci Intel Vermilion Range chipset. 35062306a36Sopenharmony_ci 35162306a36Sopenharmony_ciconfig MTD_PLATRAM 35262306a36Sopenharmony_ci tristate "Map driver for platform device RAM (mtd-ram)" 35362306a36Sopenharmony_ci select MTD_RAM 35462306a36Sopenharmony_ci help 35562306a36Sopenharmony_ci Map driver for RAM areas described via the platform device 35662306a36Sopenharmony_ci system. 35762306a36Sopenharmony_ci 35862306a36Sopenharmony_ci This selection automatically selects the map_ram driver. 35962306a36Sopenharmony_ci 36062306a36Sopenharmony_ciconfig MTD_VMU 36162306a36Sopenharmony_ci tristate "Map driver for Dreamcast VMU" 36262306a36Sopenharmony_ci depends on MAPLE 36362306a36Sopenharmony_ci help 36462306a36Sopenharmony_ci This driver enables access to the Dreamcast Visual Memory Unit (VMU). 36562306a36Sopenharmony_ci 36662306a36Sopenharmony_ci Most Dreamcast users will want to say Y here. 36762306a36Sopenharmony_ci 36862306a36Sopenharmony_ci To build this as a module select M here, the module will be called 36962306a36Sopenharmony_ci vmu-flash. 37062306a36Sopenharmony_ci 37162306a36Sopenharmony_ciconfig MTD_PISMO 37262306a36Sopenharmony_ci tristate "MTD discovery driver for PISMO modules" 37362306a36Sopenharmony_ci depends on I2C 37462306a36Sopenharmony_ci depends on ARCH_VERSATILE 37562306a36Sopenharmony_ci help 37662306a36Sopenharmony_ci This driver allows for discovery of PISMO modules - see 37762306a36Sopenharmony_ci <http://www.pismoworld.org/>. These are small modules containing 37862306a36Sopenharmony_ci up to five memory devices (eg, SRAM, flash, DOC) described by an 37962306a36Sopenharmony_ci I2C EEPROM. 38062306a36Sopenharmony_ci 38162306a36Sopenharmony_ci This driver does not create any MTD maps itself; instead it 38262306a36Sopenharmony_ci creates MTD physmap and MTD SRAM platform devices. If you 38362306a36Sopenharmony_ci enable this option, you should consider enabling MTD_PHYSMAP 38462306a36Sopenharmony_ci and/or MTD_PLATRAM according to the devices on your module. 38562306a36Sopenharmony_ci 38662306a36Sopenharmony_ci When built as a module, it will be called pismo.ko 38762306a36Sopenharmony_ci 38862306a36Sopenharmony_ciendmenu 389