blob: 3d1f6e43fd526a0e56343470f7105fdd433b33d8 [file] [log] [blame]
Thomas Choud8587992015-11-07 14:20:31 +08001menu "MTD Support"
2
Miquel Raynal4048a5c2018-08-16 17:30:18 +02003config MTD_PARTITIONS
4 bool
5
Miquel Raynal888f1842019-10-03 19:50:05 +02006config MTD
7 bool "Enable MTD layer"
8 help
Heinrich Schuchardt5558af12020-09-17 18:07:44 +02009 Enable the MTD stack, necessary to interact with NAND, NOR,
10 SPI-NOR, SPI-NAND, OneNAND, etc.
Miquel Raynal888f1842019-10-03 19:50:05 +020011
Miquel Raynal1de770d2019-10-03 19:50:04 +020012config DM_MTD
Thomas Choud8587992015-11-07 14:20:31 +080013 bool "Enable Driver Model for MTD drivers"
14 depends on DM
15 help
16 Enable driver model for Memory Technology Devices (MTD), such as
17 flash, RAM and similar chips, often used for solid state file
18 systems on embedded devices.
19
Masahiro Yamadae856bdc2017-02-11 22:43:54 +090020config MTD_NOR_FLASH
21 bool "Enable parallel NOR flash support"
22 help
23 Enable support for parallel NOR flash.
24
Chris Packham54a54a62022-05-03 21:24:57 +120025config MTD_CONCAT
26 bool "Enable MTD device concatenation"
27 depends on MTD
28 help
29 Enable support for concatenating multiple physical MTD devices
30 into a single logical device. The larger logical device can then
31 be partitioned.
32
Patrick Delaunayc39e19a2020-02-26 10:28:42 +010033config SYS_MTDPARTS_RUNTIME
34 bool "Allow MTDPARTS to be configured at runtime"
35 depends on MTD
36 help
37 This option allows to call the function board_mtdparts_default to
38 dynamically build the variables mtdids and mtdparts at runtime.
39
Adam Ford2fe88d42018-10-14 15:10:50 -050040config FLASH_CFI_DRIVER
41 bool "Enable CFI Flash driver"
Patrick Delaunay0f9595b2022-01-04 14:24:00 +010042 select USE_SYS_MAX_FLASH_BANKS
Adam Ford2fe88d42018-10-14 15:10:50 -050043 help
44 The Common Flash Interface specification was developed by Intel,
45 AMD and other flash manufactures. It provides a universal method
46 for probing the capabilities of flash devices. If you wish to
47 support any device that is CFI-compliant, you need to enable this
48 option. Visit <http://www.amd.com/products/nvd/overview/cfi.html>
49 for more information on CFI.
50
Tom Rini2f571392022-05-13 09:18:27 -040051choice
52 prompt "Data-width of the flash device"
53 depends on FLASH_CFI_DRIVER
54 default SYS_FLASH_CFI_WIDTH_8BIT
55
56config SYS_FLASH_CFI_WIDTH_8BIT
57 bool "Data-width of the device is 8-bit"
58
59config SYS_FLASH_CFI_WIDTH_16BIT
60 bool "Data-width of the device is 16-bit"
61
62config SYS_FLASH_CFI_WIDTH_32BIT
63 bool "Data-width of the device is 32-bit"
64
65config SYS_FLASH_CFI_WIDTH_64BIT
66 bool "Data-width of the device is 64-bit"
67
68endchoice
69
70config SYS_FLASH_CFI_WIDTH
71 hex
72 depends on FLASH_CFI_DRIVER
73 default 0x1 if SYS_FLASH_CFI_WIDTH_8BIT
74 default 0x2 if SYS_FLASH_CFI_WIDTH_16BIT
75 default 0x4 if SYS_FLASH_CFI_WIDTH_32BIT
76 default 0x8 if SYS_FLASH_CFI_WIDTH_64BIT
77 help
78 This must be kept in sync with the table in include/flash.h
79
Thomas Chouf1056912015-11-07 14:31:08 +080080config CFI_FLASH
81 bool "Enable Driver Model for CFI Flash driver"
Miquel Raynal1de770d2019-10-03 19:50:04 +020082 depends on DM_MTD
Bin Meng8fff9e32021-08-07 13:00:00 +080083 select FLASH_CFI_DRIVER
Thomas Chouf1056912015-11-07 14:31:08 +080084 help
85 The Common Flash Interface specification was developed by Intel,
86 AMD and other flash manufactures. It provides a universal method
87 for probing the capabilities of flash devices. If you wish to
88 support any device that is CFI-compliant, you need to enable this
89 option. Visit <http://www.amd.com/products/nvd/overview/cfi.html>
90 for more information on CFI.
91
Tom Rini819b4772022-02-25 11:19:52 -050092config CFI_FLASH_USE_WEAK_ACCESSORS
93 bool "Allow read/write functions to be overridden"
94 depends on FLASH_CFI_DRIVER
95 help
96 Enable this option to allow for the flash_{read,write}{8,16,32,64}
97 functions to be overridden by the platform.
98
Tom Rinie2475142022-05-13 09:36:03 -040099config SYS_CFI_FLASH_STATUS_POLL
100 bool "Poll status on AMD flash chips"
101 depends on FLASH_CFI_DRIVER
102
Adam Ford2fe88d42018-10-14 15:10:50 -0500103config SYS_FLASH_USE_BUFFER_WRITE
104 bool "Enable buffered writes to flash"
105 depends on FLASH_CFI_DRIVER
106 help
107 Use buffered writes to flash.
108
109config FLASH_CFI_MTD
110 bool "Enable CFI MTD driver"
111 depends on FLASH_CFI_DRIVER
112 help
113 This option enables the building of the cfi_mtd driver
114 in the drivers directory. The driver exports CFI flash
115 to the MTD layer.
116
117config SYS_FLASH_PROTECTION
118 bool "Use hardware flash protection"
119 depends on FLASH_CFI_DRIVER
120 help
121 If defined, hardware flash sectors protection is used
122 instead of U-Boot software protection.
123
124config SYS_FLASH_CFI
125 bool "Define extra elements in CFI for flash geometry"
126 depends on FLASH_CFI_DRIVER
127 help
128 Define if the flash driver uses extra elements in the
129 common flash structure for storing flash geometry.
130
Thomas Chou38a0f362015-11-09 14:56:02 +0800131config ALTERA_QSPI
132 bool "Altera Generic Quad SPI Controller"
Miquel Raynal1de770d2019-10-03 19:50:04 +0200133 depends on DM_MTD
Patrick Delaunay0f9595b2022-01-04 14:24:00 +0100134 select USE_SYS_MAX_FLASH_BANKS
Thomas Chou38a0f362015-11-09 14:56:02 +0800135 help
136 This enables access to Altera EPCQ/EPCS flash chips using the
137 Altera Generic Quad SPI Controller. The controller converts SPI
138 NOR flash to parallel flash interface. Please find details on the
139 "Embedded Peripherals IP User Guide" of Altera.
140
Purna Chandra Mandal5c990452016-03-18 18:36:08 +0530141config FLASH_PIC32
142 bool "Microchip PIC32 Flash driver"
Miquel Raynal1de770d2019-10-03 19:50:04 +0200143 depends on MACH_PIC32 && DM_MTD
Patrick Delaunay0f9595b2022-01-04 14:24:00 +0100144 select USE_SYS_MAX_FLASH_BANKS
Purna Chandra Mandal5c990452016-03-18 18:36:08 +0530145 help
146 This enables access to Microchip PIC32 internal non-CFI flash
147 chips through PIC32 Non-Volatile-Memory Controller.
148
Marek Vasuta405a552017-08-19 23:24:08 +0200149config RENESAS_RPC_HF
Heinrich Schuchardt5558af12020-09-17 18:07:44 +0200150 bool "Renesas RCar Gen3 RPC HyperFlash driver"
Miquel Raynal1de770d2019-10-03 19:50:04 +0200151 depends on RCAR_GEN3 && DM_MTD
Marek Vasuta405a552017-08-19 23:24:08 +0200152 help
Heinrich Schuchardt5558af12020-09-17 18:07:44 +0200153 This enables access to HyperFlash memory through the Renesas
Marek Vasuta405a552017-08-19 23:24:08 +0200154 RCar Gen3 RPC controller.
155
Vignesh Raghavendrac2dfd0a2019-10-23 13:30:01 +0530156config HBMC_AM654
157 bool "HyperBus controller driver for AM65x SoC"
158 depends on SYSCON
159 help
160 This is the driver for HyperBus controller on TI's AM65x and
161 other SoCs
162
Patrick Delaunaycc30ea52021-10-04 11:05:52 +0200163config STM32_FLASH
164 bool "STM32 MCU Flash driver"
165 depends on ARCH_STM32
Patrick Delaunay0f9595b2022-01-04 14:24:00 +0100166 select USE_SYS_MAX_FLASH_BANKS
Patrick Delaunaycc30ea52021-10-04 11:05:52 +0200167 help
168 This is the driver of embedded flash for some STMicroelectronics
169 STM32 MCU.
170
Tom Riniddd39d02022-06-15 12:03:50 -0400171config SAMSUNG_ONENAND
172 bool "Samsung OneNAND driver support"
173
Patrick Delaunay0f9595b2022-01-04 14:24:00 +0100174config USE_SYS_MAX_FLASH_BANKS
175 bool "Enable Max number of Flash memory banks"
176 help
177 When this option is enabled, the CONFIG_SYS_MAX_FLASH_BANKS
178 will be defined.
179
180config SYS_MAX_FLASH_BANKS
181 int "Max number of Flash memory banks"
182 depends on USE_SYS_MAX_FLASH_BANKS
183 default 1
184 help
185 Max number of Flash memory banks using by the MTD framework, in the
186 flash CFI driver and in some other driver to define the flash_info
187 struct declaration.
188
189config SYS_MAX_FLASH_BANKS_DETECT
190 bool "Detection of flash banks number in CFI driver"
191 depends on CFI_FLASH && FLASH_CFI_DRIVER
192 help
193 This enables detection of number of flash banks in CFI driver,
194 to reduce the effective number of flash bank, between 0 and
195 CONFIG_SYS_MAX_FLASH_BANKS
196
Masahiro Yamada4b0abf92014-10-03 19:21:03 +0900197source "drivers/mtd/nand/Kconfig"
Simon Glassf94a1be2015-02-05 21:41:35 -0700198
Tom Rinib2e25af2021-09-22 14:50:36 -0400199config SYS_NAND_MAX_CHIPS
200 int "NAND max chips"
201 depends on MTD_RAW_NAND || CMD_ONENAND || TARGET_S5PC210_UNIVERSAL || \
202 SPL_OMAP3_ID_NAND
203 default 1
204 help
205 The maximum number of NAND chips per device to be supported.
206
Simon Glassf94a1be2015-02-05 21:41:35 -0700207source "drivers/mtd/spi/Kconfig"
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +0200208
209source "drivers/mtd/ubi/Kconfig"
Miquel Raynalce9bdc82018-08-16 17:30:06 +0200210
211endmenu