blob: 75eefc8a2b580f0cdad195cad2ee2584e7ad75bd [file] [log] [blame]
Adam Ford42efb612017-08-07 17:37:18 -04001
2menuconfig NAND
3 bool "NAND Device Support"
4if NAND
Masahiro Yamadac343b382014-10-03 19:21:03 +09005
Masahiro Yamadada0763d2014-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 Yamadac343b382014-10-03 19:21:03 +090012config NAND_DENALI
Masahiro Yamadad81d60b2017-12-06 13:51:50 +090013 bool
Masahiro Yamadada0763d2014-11-13 20:31:50 +090014 select SYS_NAND_SELF_INIT
Tom Rini00448d22017-07-28 21:31:42 -040015 imply CMD_NAND
Masahiro Yamadac343b382014-10-03 19:21:03 +090016
Masahiro Yamada9c5a5dd2017-08-26 01:12:31 +090017config NAND_DENALI_DT
18 bool "Support Denali NAND controller as a DT device"
Masahiro Yamadad81d60b2017-12-06 13:51:50 +090019 select NAND_DENALI
20 depends on OF_CONTROL && DM
Masahiro Yamada9c5a5dd2017-08-26 01:12:31 +090021 help
22 Enable the driver for NAND flash on platforms using a Denali NAND
23 controller as a DT device.
24
Masahiro Yamadac343b382014-10-03 19:21:03 +090025config NAND_DENALI_SPARE_AREA_SKIP_BYTES
26 int "Number of bytes skipped in OOB area"
27 depends on NAND_DENALI
28 range 0 63
29 help
30 This option specifies the number of bytes to skip from the beginning
31 of OOB area before last ECC sector data starts. This is potentially
32 used to preserve the bad block marker in the OOB area.
33
Adam Ford5b7c9f02017-10-16 14:08:26 -050034config NAND_OMAP_GPMC
35 bool "Support OMAP GPMC NAND controller"
36 depends on ARCH_OMAP2PLUS
37 help
38 Enables omap_gpmc.c driver for OMAPx and AMxxxx platforms.
39 GPMC controller is used for parallel NAND flash devices, and can
40 do ECC calculation (not ECC error detection) for HAM1, BCH4, BCH8
41 and BCH16 ECC algorithms.
42
43config NAND_OMAP_GPMC_PREFETCH
44 bool "Enable GPMC Prefetch"
45 depends on NAND_OMAP_GPMC
Tom Rini848d2672017-10-20 16:55:51 -040046 default y
Adam Ford5b7c9f02017-10-16 14:08:26 -050047 help
48 On OMAP platforms that use the GPMC controller
49 (CONFIG_NAND_OMAP_GPMC_PREFETCH), this options enables the code that
50 uses the prefetch mode to speed up read operations.
51
52config NAND_OMAP_ELM
53 bool "Enable ELM driver for OMAPxx and AMxx platforms."
54 depends on NAND_OMAP_GPMC && !OMAP34XX
55 help
56 ELM controller is used for ECC error detection (not ECC calculation)
57 of BCH4, BCH8 and BCH16 ECC algorithms.
58 Some legacy platforms like OMAP3xx do not have in-built ELM h/w engine,
59 thus such SoC platforms need to depend on software library for ECC error
60 detection. However ECC calculation on such plaforms would still be
61 done by GPMC controller.
62
Stefan Agner6120f752015-05-08 19:07:11 +020063config NAND_VF610_NFC
Heiko Schocher6f90e582017-06-14 05:49:40 +020064 bool "Support for Freescale NFC for VF610"
Stefan Agner6120f752015-05-08 19:07:11 +020065 select SYS_NAND_SELF_INIT
Tom Rini00448d22017-07-28 21:31:42 -040066 imply CMD_NAND
Stefan Agner6120f752015-05-08 19:07:11 +020067 help
68 Enables support for NAND Flash Controller on some Freescale
Heiko Schocher6f90e582017-06-14 05:49:40 +020069 processors like the VF610, MCF54418 or Kinetis K70.
Stefan Agner6120f752015-05-08 19:07:11 +020070 The driver supports a maximum 2k page size. The driver
71 currently does not support hardware ECC.
72
Stefan Agnerfe10d3f2015-05-08 19:07:12 +020073choice
74 prompt "Hardware ECC strength"
75 depends on NAND_VF610_NFC
76 default SYS_NAND_VF610_NFC_45_ECC_BYTES
77 help
78 Select the ECC strength used in the hardware BCH ECC block.
79
80config SYS_NAND_VF610_NFC_45_ECC_BYTES
81 bool "24-error correction (45 ECC bytes)"
82
83config SYS_NAND_VF610_NFC_60_ECC_BYTES
84 bool "32-error correction (60 ECC bytes)"
85
86endchoice
87
Stefan Roese75659da2015-07-23 10:26:16 +020088config NAND_PXA3XX
89 bool "Support for NAND on PXA3xx and Armada 370/XP/38x"
90 select SYS_NAND_SELF_INIT
Tom Rini00448d22017-07-28 21:31:42 -040091 imply CMD_NAND
Stefan Roese75659da2015-07-23 10:26:16 +020092 help
93 This enables the driver for the NAND flash device found on
94 PXA3xx processors (NFCv1) and also on Armada 370/XP (NFCv2).
95
Hans de Goede3ce35f92015-08-16 14:48:22 +020096config NAND_SUNXI
Boris Brezillon57f20382016-06-15 21:09:23 +020097 bool "Support for NAND on Allwinner SoCs"
Miquel Raynal78f10992018-02-28 20:51:57 +010098 depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I || MACH_SUN8I
Hans de Goede3ce35f92015-08-16 14:48:22 +020099 select SYS_NAND_SELF_INIT
Maxime Ripard2d3100c2017-02-27 18:22:08 +0100100 select SYS_NAND_U_BOOT_LOCATIONS
Miquel Raynal9f23e002018-02-28 20:51:59 +0100101 select SPL_NAND_SUPPORT
Tom Rini00448d22017-07-28 21:31:42 -0400102 imply CMD_NAND
Hans de Goede3ce35f92015-08-16 14:48:22 +0200103 ---help---
Boris Brezillon57f20382016-06-15 21:09:23 +0200104 Enable support for NAND. This option enables the standard and
105 SPL drivers.
106 The SPL driver only supports reading from the NAND using DMA
107 transfers.
Hans de Goede3ce35f92015-08-16 14:48:22 +0200108
Maxime Ripardfcacc702017-02-27 18:22:12 +0100109if NAND_SUNXI
110
111config NAND_SUNXI_SPL_ECC_STRENGTH
112 int "Allwinner NAND SPL ECC Strength"
113 default 64
114
115config NAND_SUNXI_SPL_ECC_SIZE
116 int "Allwinner NAND SPL ECC Step Size"
117 default 1024
118
119config NAND_SUNXI_SPL_USABLE_PAGE_SIZE
120 int "Allwinner NAND SPL Usable Page Size"
121 default 1024
122
123endif
124
Siva Durga Prasad Paladugu937ad762015-11-17 14:30:09 +0530125config NAND_ARASAN
126 bool "Configure Arasan Nand"
Ezequiel Garcia18a702e2018-01-15 12:48:12 -0300127 select SYS_NAND_SELF_INIT
Tom Rini00448d22017-07-28 21:31:42 -0400128 imply CMD_NAND
Siva Durga Prasad Paladugu937ad762015-11-17 14:30:09 +0530129 help
130 This enables Nand driver support for Arasan nand flash
131 controller. This uses the hardware ECC for read and
132 write operations.
133
Adam Ford5b7c9f02017-10-16 14:08:26 -0500134config NAND_MXC
135 bool "MXC NAND support"
136 depends on CPU_ARM926EJS || CPU_ARM1136 || MX5
137 imply CMD_NAND
138 help
139 This enables the NAND driver for the NAND flash controller on the
140 i.MX27 / i.MX31 / i.MX5 rocessors.
141
Jagan Teki811a8222016-10-08 18:00:25 +0530142config NAND_MXS
143 bool "MXS NAND support"
Stefan Agner3b209fc2018-02-06 09:44:37 +0100144 depends on MX23 || MX28 || MX6 || MX7
Tom Rini00448d22017-07-28 21:31:42 -0400145 imply CMD_NAND
Adam Forda456d562018-02-06 08:34:45 -0600146 select APBH_DMA
147 select APBH_DMA_BURST if ARCH_MX6 || ARCH_MX7
148 select APBH_DMA_BURST8 if ARCH_MX6 || ARCH_MX7
Jagan Teki811a8222016-10-08 18:00:25 +0530149 help
150 This enables NAND driver for the NAND flash controller on the
151 MXS processors.
152
Siva Durga Prasad Paladuguc41d5cd2016-09-27 10:55:46 +0530153config NAND_ZYNQ
154 bool "Support for Zynq Nand controller"
155 select SYS_NAND_SELF_INIT
Tom Rini00448d22017-07-28 21:31:42 -0400156 imply CMD_NAND
Siva Durga Prasad Paladuguc41d5cd2016-09-27 10:55:46 +0530157 help
158 This enables Nand driver support for Nand flash controller
159 found on Zynq SoC.
160
Jeff Westfahl313b9c32017-11-06 00:34:46 -0800161config NAND_ZYNQ_USE_BOOTLOADER1_TIMINGS
162 bool "Enable use of 1st stage bootloader timing for NAND"
163 depends on NAND_ZYNQ
164 help
165 This flag prevent U-boot reconfigure NAND flash controller and reuse
166 the NAND timing from 1st stage bootloader.
167
Stefan Agner6120f752015-05-08 19:07:11 +0200168comment "Generic NAND options"
169
170# Enhance depends when converting drivers to Kconfig which use this config
171# option (mxc_nand, ndfc, omap_gpmc).
172config SYS_NAND_BUSWIDTH_16BIT
173 bool "Use 16-bit NAND interface"
Adam Ford5b7c9f02017-10-16 14:08:26 -0500174 depends on NAND_VF610_NFC || NAND_OMAP_GPMC || NAND_MXC || ARCH_DAVINCI
Stefan Agner6120f752015-05-08 19:07:11 +0200175 help
176 Indicates that NAND device has 16-bit wide data-bus. In absence of this
177 config, bus-width of NAND device is assumed to be either 8-bit and later
178 determined by reading ONFI params.
179 Above config is useful when NAND device's bus-width information cannot
180 be determined from on-chip ONFI params, like in following scenarios:
181 - SPL boot does not support reading of ONFI parameters. This is done to
182 keep SPL code foot-print small.
183 - In current U-Boot flow using nand_init(), driver initialization
184 happens in board_nand_init() which is called before any device probe
185 (nand_scan_ident + nand_scan_tail), thus device's ONFI parameters are
186 not available while configuring controller. So a static CONFIG_NAND_xx
187 is needed to know the device's bus-width in advance.
188
Boris Brezillon05b769d2016-06-06 10:16:57 +0200189if SPL
190
191config SYS_NAND_U_BOOT_LOCATIONS
192 bool "Define U-boot binaries locations in NAND"
193 help
194 Enable CONFIG_SYS_NAND_U_BOOT_OFFS though Kconfig.
195 This option should not be enabled when compiling U-boot for boards
196 defining CONFIG_SYS_NAND_U_BOOT_OFFS in their include/configs/<board>.h
197 file.
198
Hans de Goede60b1b292015-08-21 21:49:51 +0200199config SYS_NAND_U_BOOT_OFFS
200 hex "Location in NAND to read U-Boot from"
Maxime Riparda15b6ea2017-02-27 18:22:09 +0100201 default 0x800000 if NAND_SUNXI
Boris Brezillon05b769d2016-06-06 10:16:57 +0200202 depends on SYS_NAND_U_BOOT_LOCATIONS
Hans de Goede60b1b292015-08-21 21:49:51 +0200203 help
204 Set the offset from the start of the nand where u-boot should be
205 loaded from.
206
Boris Brezillon4f238e72016-06-06 10:16:58 +0200207config SYS_NAND_U_BOOT_OFFS_REDUND
208 hex "Location in NAND to read U-Boot from"
209 default SYS_NAND_U_BOOT_OFFS
210 depends on SYS_NAND_U_BOOT_LOCATIONS
211 help
212 Set the offset from the start of the nand where the redundant u-boot
213 should be loaded from.
214
Adam Ford5b7c9f02017-10-16 14:08:26 -0500215config SPL_NAND_AM33XX_BCH
216 bool "Enables SPL-NAND driver which supports ELM based"
217 depends on NAND_OMAP_GPMC && !OMAP34XX
218 default y
219 help
220 Hardware ECC correction. This is useful for platforms which have ELM
221 hardware engine and use NAND boot mode.
222 Some legacy platforms like OMAP3xx do not have in-built ELM h/w engine,
223 so those platforms should use CONFIG_SPL_NAND_SIMPLE for enabling
224 SPL-NAND driver with software ECC correction support.
225
Masahiro Yamadad182d542014-10-03 19:21:04 +0900226config SPL_NAND_DENALI
227 bool "Support Denali NAND controller for SPL"
228 help
229 This is a small implementation of the Denali NAND controller
230 for use on SPL.
231
Adam Ford5b7c9f02017-10-16 14:08:26 -0500232config SPL_NAND_SIMPLE
233 bool "Use simple SPL NAND driver"
234 depends on !SPL_NAND_AM33XX_BCH
235 help
236 Support for NAND boot using simple NAND drivers that
237 expose the cmd_ctrl() interface.
Masahiro Yamadad182d542014-10-03 19:21:04 +0900238endif
239
Adam Ford42efb612017-08-07 17:37:18 -0400240endif # if NAND