blob: 75023dc06b7e709078dbf18ef5920ae2b1df94f3 [file] [log] [blame]
Adam Ford5bbc2652017-08-07 17:37:18 -04001
2menuconfig NAND
3 bool "NAND Device Support"
4if NAND
Masahiro Yamada4b0abf92014-10-03 19:21:03 +09005
Masahiro Yamada65e41452014-11-13 20:31:50 +09006config SYS_NAND_SELF_INIT
7 bool
8 help
9 This option, if enabled, provides more flexible and linux-like
10 NAND initialization process.
11
Masahiro Yamada4b0abf92014-10-03 19:21:03 +090012config NAND_DENALI
13 bool "Support Denali NAND controller"
Masahiro Yamada65e41452014-11-13 20:31:50 +090014 select SYS_NAND_SELF_INIT
Tom Rini8f1a80e2017-07-28 21:31:42 -040015 imply CMD_NAND
Masahiro Yamada4b0abf92014-10-03 19:21:03 +090016 help
17 Enable support for the Denali NAND controller.
18
Masahiro Yamada1d9654d2017-08-26 01:12:31 +090019config NAND_DENALI_DT
20 bool "Support Denali NAND controller as a DT device"
21 depends on NAND_DENALI && OF_CONTROL && DM
22 help
23 Enable the driver for NAND flash on platforms using a Denali NAND
24 controller as a DT device.
25
Masahiro Yamada4b0abf92014-10-03 19:21:03 +090026config SYS_NAND_DENALI_64BIT
27 bool "Use 64-bit variant of Denali NAND controller"
28 depends on NAND_DENALI
29 help
30 The Denali NAND controller IP has some variations in terms of
31 the bus interface. The DMA setup sequence is completely differenct
32 between 32bit / 64bit AXI bus variants.
33
34 If your Denali NAND controller is the 64-bit variant, say Y.
35 Otherwise (32 bit), say N.
36
37config NAND_DENALI_SPARE_AREA_SKIP_BYTES
38 int "Number of bytes skipped in OOB area"
39 depends on NAND_DENALI
40 range 0 63
41 help
42 This option specifies the number of bytes to skip from the beginning
43 of OOB area before last ECC sector data starts. This is potentially
44 used to preserve the bad block marker in the OOB area.
45
Adam Ford0a9ef452017-10-16 14:08:26 -050046config NAND_OMAP_GPMC
47 bool "Support OMAP GPMC NAND controller"
48 depends on ARCH_OMAP2PLUS
49 help
50 Enables omap_gpmc.c driver for OMAPx and AMxxxx platforms.
51 GPMC controller is used for parallel NAND flash devices, and can
52 do ECC calculation (not ECC error detection) for HAM1, BCH4, BCH8
53 and BCH16 ECC algorithms.
54
55config NAND_OMAP_GPMC_PREFETCH
56 bool "Enable GPMC Prefetch"
57 depends on NAND_OMAP_GPMC
Tom Rini39e70962017-10-20 16:55:51 -040058 default y
Adam Ford0a9ef452017-10-16 14:08:26 -050059 help
60 On OMAP platforms that use the GPMC controller
61 (CONFIG_NAND_OMAP_GPMC_PREFETCH), this options enables the code that
62 uses the prefetch mode to speed up read operations.
63
64config NAND_OMAP_ELM
65 bool "Enable ELM driver for OMAPxx and AMxx platforms."
66 depends on NAND_OMAP_GPMC && !OMAP34XX
67 help
68 ELM controller is used for ECC error detection (not ECC calculation)
69 of BCH4, BCH8 and BCH16 ECC algorithms.
70 Some legacy platforms like OMAP3xx do not have in-built ELM h/w engine,
71 thus such SoC platforms need to depend on software library for ECC error
72 detection. However ECC calculation on such plaforms would still be
73 done by GPMC controller.
74
Stefan Agner55191942015-05-08 19:07:11 +020075config NAND_VF610_NFC
Heiko Schocher064b55c2017-06-14 05:49:40 +020076 bool "Support for Freescale NFC for VF610"
Stefan Agner55191942015-05-08 19:07:11 +020077 select SYS_NAND_SELF_INIT
Tom Rini8f1a80e2017-07-28 21:31:42 -040078 imply CMD_NAND
Stefan Agner55191942015-05-08 19:07:11 +020079 help
80 Enables support for NAND Flash Controller on some Freescale
Heiko Schocher064b55c2017-06-14 05:49:40 +020081 processors like the VF610, MCF54418 or Kinetis K70.
Stefan Agner55191942015-05-08 19:07:11 +020082 The driver supports a maximum 2k page size. The driver
83 currently does not support hardware ECC.
84
Stefan Agner080a71e2015-05-08 19:07:12 +020085choice
86 prompt "Hardware ECC strength"
87 depends on NAND_VF610_NFC
88 default SYS_NAND_VF610_NFC_45_ECC_BYTES
89 help
90 Select the ECC strength used in the hardware BCH ECC block.
91
92config SYS_NAND_VF610_NFC_45_ECC_BYTES
93 bool "24-error correction (45 ECC bytes)"
94
95config SYS_NAND_VF610_NFC_60_ECC_BYTES
96 bool "32-error correction (60 ECC bytes)"
97
98endchoice
99
Stefan Roese873960c2015-07-23 10:26:16 +0200100config NAND_PXA3XX
101 bool "Support for NAND on PXA3xx and Armada 370/XP/38x"
102 select SYS_NAND_SELF_INIT
Tom Rini8f1a80e2017-07-28 21:31:42 -0400103 imply CMD_NAND
Stefan Roese873960c2015-07-23 10:26:16 +0200104 help
105 This enables the driver for the NAND flash device found on
106 PXA3xx processors (NFCv1) and also on Armada 370/XP (NFCv2).
107
Hans de Goedee5268612015-08-16 14:48:22 +0200108config NAND_SUNXI
Boris Brezillon4ccae812016-06-15 21:09:23 +0200109 bool "Support for NAND on Allwinner SoCs"
Hans de Goedee5268612015-08-16 14:48:22 +0200110 depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
111 select SYS_NAND_SELF_INIT
Maxime Ripard5fe4c9f2017-02-27 18:22:08 +0100112 select SYS_NAND_U_BOOT_LOCATIONS
Tom Rini8f1a80e2017-07-28 21:31:42 -0400113 imply CMD_NAND
Hans de Goedee5268612015-08-16 14:48:22 +0200114 ---help---
Boris Brezillon4ccae812016-06-15 21:09:23 +0200115 Enable support for NAND. This option enables the standard and
116 SPL drivers.
117 The SPL driver only supports reading from the NAND using DMA
118 transfers.
Hans de Goedee5268612015-08-16 14:48:22 +0200119
Maxime Ripardff93c282017-02-27 18:22:12 +0100120if NAND_SUNXI
121
122config NAND_SUNXI_SPL_ECC_STRENGTH
123 int "Allwinner NAND SPL ECC Strength"
124 default 64
125
126config NAND_SUNXI_SPL_ECC_SIZE
127 int "Allwinner NAND SPL ECC Step Size"
128 default 1024
129
130config NAND_SUNXI_SPL_USABLE_PAGE_SIZE
131 int "Allwinner NAND SPL Usable Page Size"
132 default 1024
133
134endif
135
Siva Durga Prasad Paladugu78cb9652015-11-17 14:30:09 +0530136config NAND_ARASAN
137 bool "Configure Arasan Nand"
Tom Rini8f1a80e2017-07-28 21:31:42 -0400138 imply CMD_NAND
Siva Durga Prasad Paladugu78cb9652015-11-17 14:30:09 +0530139 help
140 This enables Nand driver support for Arasan nand flash
141 controller. This uses the hardware ECC for read and
142 write operations.
143
Adam Ford0a9ef452017-10-16 14:08:26 -0500144config NAND_MXC
145 bool "MXC NAND support"
146 depends on CPU_ARM926EJS || CPU_ARM1136 || MX5
147 imply CMD_NAND
148 help
149 This enables the NAND driver for the NAND flash controller on the
150 i.MX27 / i.MX31 / i.MX5 rocessors.
151
Jagan Tekidf10a852016-10-08 18:00:25 +0530152config NAND_MXS
153 bool "MXS NAND support"
Andrey Yurovskyf78038d2017-02-10 10:33:34 -0800154 depends on MX6 || MX7
Tom Rini8f1a80e2017-07-28 21:31:42 -0400155 imply CMD_NAND
Jagan Tekidf10a852016-10-08 18:00:25 +0530156 help
157 This enables NAND driver for the NAND flash controller on the
158 MXS processors.
159
Siva Durga Prasad Paladuguae798d22016-09-27 10:55:46 +0530160config NAND_ZYNQ
161 bool "Support for Zynq Nand controller"
162 select SYS_NAND_SELF_INIT
Tom Rini8f1a80e2017-07-28 21:31:42 -0400163 imply CMD_NAND
Siva Durga Prasad Paladuguae798d22016-09-27 10:55:46 +0530164 help
165 This enables Nand driver support for Nand flash controller
166 found on Zynq SoC.
167
Jeff Westfahl8000d6e2017-11-06 00:34:46 -0800168config NAND_ZYNQ_USE_BOOTLOADER1_TIMINGS
169 bool "Enable use of 1st stage bootloader timing for NAND"
170 depends on NAND_ZYNQ
171 help
172 This flag prevent U-boot reconfigure NAND flash controller and reuse
173 the NAND timing from 1st stage bootloader.
174
Stefan Agner55191942015-05-08 19:07:11 +0200175comment "Generic NAND options"
176
177# Enhance depends when converting drivers to Kconfig which use this config
178# option (mxc_nand, ndfc, omap_gpmc).
179config SYS_NAND_BUSWIDTH_16BIT
180 bool "Use 16-bit NAND interface"
Adam Ford0a9ef452017-10-16 14:08:26 -0500181 depends on NAND_VF610_NFC || NAND_OMAP_GPMC || NAND_MXC || ARCH_DAVINCI
Stefan Agner55191942015-05-08 19:07:11 +0200182 help
183 Indicates that NAND device has 16-bit wide data-bus. In absence of this
184 config, bus-width of NAND device is assumed to be either 8-bit and later
185 determined by reading ONFI params.
186 Above config is useful when NAND device's bus-width information cannot
187 be determined from on-chip ONFI params, like in following scenarios:
188 - SPL boot does not support reading of ONFI parameters. This is done to
189 keep SPL code foot-print small.
190 - In current U-Boot flow using nand_init(), driver initialization
191 happens in board_nand_init() which is called before any device probe
192 (nand_scan_ident + nand_scan_tail), thus device's ONFI parameters are
193 not available while configuring controller. So a static CONFIG_NAND_xx
194 is needed to know the device's bus-width in advance.
195
Boris Brezillon494e1082016-06-06 10:16:57 +0200196if SPL
197
198config SYS_NAND_U_BOOT_LOCATIONS
199 bool "Define U-boot binaries locations in NAND"
200 help
201 Enable CONFIG_SYS_NAND_U_BOOT_OFFS though Kconfig.
202 This option should not be enabled when compiling U-boot for boards
203 defining CONFIG_SYS_NAND_U_BOOT_OFFS in their include/configs/<board>.h
204 file.
205
Hans de Goeded90ba792015-08-21 21:49:51 +0200206config SYS_NAND_U_BOOT_OFFS
207 hex "Location in NAND to read U-Boot from"
Maxime Ripardadc706b2017-02-27 18:22:09 +0100208 default 0x800000 if NAND_SUNXI
Boris Brezillon494e1082016-06-06 10:16:57 +0200209 depends on SYS_NAND_U_BOOT_LOCATIONS
Hans de Goeded90ba792015-08-21 21:49:51 +0200210 help
211 Set the offset from the start of the nand where u-boot should be
212 loaded from.
213
Boris Brezillon80ef7002016-06-06 10:16:58 +0200214config SYS_NAND_U_BOOT_OFFS_REDUND
215 hex "Location in NAND to read U-Boot from"
216 default SYS_NAND_U_BOOT_OFFS
217 depends on SYS_NAND_U_BOOT_LOCATIONS
218 help
219 Set the offset from the start of the nand where the redundant u-boot
220 should be loaded from.
221
Adam Ford0a9ef452017-10-16 14:08:26 -0500222config SPL_NAND_AM33XX_BCH
223 bool "Enables SPL-NAND driver which supports ELM based"
224 depends on NAND_OMAP_GPMC && !OMAP34XX
225 default y
226 help
227 Hardware ECC correction. This is useful for platforms which have ELM
228 hardware engine and use NAND boot mode.
229 Some legacy platforms like OMAP3xx do not have in-built ELM h/w engine,
230 so those platforms should use CONFIG_SPL_NAND_SIMPLE for enabling
231 SPL-NAND driver with software ECC correction support.
232
Masahiro Yamada845034e2014-10-03 19:21:04 +0900233config SPL_NAND_DENALI
234 bool "Support Denali NAND controller for SPL"
235 help
236 This is a small implementation of the Denali NAND controller
237 for use on SPL.
238
Adam Ford0a9ef452017-10-16 14:08:26 -0500239config SPL_NAND_SIMPLE
240 bool "Use simple SPL NAND driver"
241 depends on !SPL_NAND_AM33XX_BCH
242 help
243 Support for NAND boot using simple NAND drivers that
244 expose the cmd_ctrl() interface.
Masahiro Yamada845034e2014-10-03 19:21:04 +0900245endif
246
Adam Ford5bbc2652017-08-07 17:37:18 -0400247endif # if NAND