blob: 85b26d608851591cca14dd36e1229db845215918 [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
13 bool "Support Denali NAND controller"
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 help
17 Enable support for the Denali NAND controller.
18
Masahiro Yamada9c5a5dd2017-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 Yamadac343b382014-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
Stefan Agner6120f752015-05-08 19:07:11 +020046config NAND_VF610_NFC
Heiko Schocher6f90e582017-06-14 05:49:40 +020047 bool "Support for Freescale NFC for VF610"
Stefan Agner6120f752015-05-08 19:07:11 +020048 select SYS_NAND_SELF_INIT
Tom Rini00448d22017-07-28 21:31:42 -040049 imply CMD_NAND
Stefan Agner6120f752015-05-08 19:07:11 +020050 help
51 Enables support for NAND Flash Controller on some Freescale
Heiko Schocher6f90e582017-06-14 05:49:40 +020052 processors like the VF610, MCF54418 or Kinetis K70.
Stefan Agner6120f752015-05-08 19:07:11 +020053 The driver supports a maximum 2k page size. The driver
54 currently does not support hardware ECC.
55
Stefan Agnerfe10d3f2015-05-08 19:07:12 +020056choice
57 prompt "Hardware ECC strength"
58 depends on NAND_VF610_NFC
59 default SYS_NAND_VF610_NFC_45_ECC_BYTES
60 help
61 Select the ECC strength used in the hardware BCH ECC block.
62
63config SYS_NAND_VF610_NFC_45_ECC_BYTES
64 bool "24-error correction (45 ECC bytes)"
65
66config SYS_NAND_VF610_NFC_60_ECC_BYTES
67 bool "32-error correction (60 ECC bytes)"
68
69endchoice
70
Stefan Roese75659da2015-07-23 10:26:16 +020071config NAND_PXA3XX
72 bool "Support for NAND on PXA3xx and Armada 370/XP/38x"
73 select SYS_NAND_SELF_INIT
Tom Rini00448d22017-07-28 21:31:42 -040074 imply CMD_NAND
Stefan Roese75659da2015-07-23 10:26:16 +020075 help
76 This enables the driver for the NAND flash device found on
77 PXA3xx processors (NFCv1) and also on Armada 370/XP (NFCv2).
78
Hans de Goede3ce35f92015-08-16 14:48:22 +020079config NAND_SUNXI
Boris Brezillon57f20382016-06-15 21:09:23 +020080 bool "Support for NAND on Allwinner SoCs"
Hans de Goede3ce35f92015-08-16 14:48:22 +020081 depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
82 select SYS_NAND_SELF_INIT
Maxime Ripard2d3100c2017-02-27 18:22:08 +010083 select SYS_NAND_U_BOOT_LOCATIONS
Tom Rini00448d22017-07-28 21:31:42 -040084 imply CMD_NAND
Hans de Goede3ce35f92015-08-16 14:48:22 +020085 ---help---
Boris Brezillon57f20382016-06-15 21:09:23 +020086 Enable support for NAND. This option enables the standard and
87 SPL drivers.
88 The SPL driver only supports reading from the NAND using DMA
89 transfers.
Hans de Goede3ce35f92015-08-16 14:48:22 +020090
Maxime Ripardfcacc702017-02-27 18:22:12 +010091if NAND_SUNXI
92
93config NAND_SUNXI_SPL_ECC_STRENGTH
94 int "Allwinner NAND SPL ECC Strength"
95 default 64
96
97config NAND_SUNXI_SPL_ECC_SIZE
98 int "Allwinner NAND SPL ECC Step Size"
99 default 1024
100
101config NAND_SUNXI_SPL_USABLE_PAGE_SIZE
102 int "Allwinner NAND SPL Usable Page Size"
103 default 1024
104
105endif
106
Siva Durga Prasad Paladugu937ad762015-11-17 14:30:09 +0530107config NAND_ARASAN
108 bool "Configure Arasan Nand"
Tom Rini00448d22017-07-28 21:31:42 -0400109 imply CMD_NAND
Siva Durga Prasad Paladugu937ad762015-11-17 14:30:09 +0530110 help
111 This enables Nand driver support for Arasan nand flash
112 controller. This uses the hardware ECC for read and
113 write operations.
114
Jagan Teki811a8222016-10-08 18:00:25 +0530115config NAND_MXS
116 bool "MXS NAND support"
Andrey Yurovsky814cb192017-02-10 10:33:34 -0800117 depends on MX6 || MX7
Tom Rini00448d22017-07-28 21:31:42 -0400118 imply CMD_NAND
Jagan Teki811a8222016-10-08 18:00:25 +0530119 help
120 This enables NAND driver for the NAND flash controller on the
121 MXS processors.
122
Siva Durga Prasad Paladuguc41d5cd2016-09-27 10:55:46 +0530123config NAND_ZYNQ
124 bool "Support for Zynq Nand controller"
125 select SYS_NAND_SELF_INIT
Tom Rini00448d22017-07-28 21:31:42 -0400126 imply CMD_NAND
Siva Durga Prasad Paladuguc41d5cd2016-09-27 10:55:46 +0530127 help
128 This enables Nand driver support for Nand flash controller
129 found on Zynq SoC.
130
Stefan Agner6120f752015-05-08 19:07:11 +0200131comment "Generic NAND options"
132
133# Enhance depends when converting drivers to Kconfig which use this config
134# option (mxc_nand, ndfc, omap_gpmc).
135config SYS_NAND_BUSWIDTH_16BIT
136 bool "Use 16-bit NAND interface"
137 depends on NAND_VF610_NFC
138 help
139 Indicates that NAND device has 16-bit wide data-bus. In absence of this
140 config, bus-width of NAND device is assumed to be either 8-bit and later
141 determined by reading ONFI params.
142 Above config is useful when NAND device's bus-width information cannot
143 be determined from on-chip ONFI params, like in following scenarios:
144 - SPL boot does not support reading of ONFI parameters. This is done to
145 keep SPL code foot-print small.
146 - In current U-Boot flow using nand_init(), driver initialization
147 happens in board_nand_init() which is called before any device probe
148 (nand_scan_ident + nand_scan_tail), thus device's ONFI parameters are
149 not available while configuring controller. So a static CONFIG_NAND_xx
150 is needed to know the device's bus-width in advance.
151
Boris Brezillon05b769d2016-06-06 10:16:57 +0200152if SPL
153
154config SYS_NAND_U_BOOT_LOCATIONS
155 bool "Define U-boot binaries locations in NAND"
156 help
157 Enable CONFIG_SYS_NAND_U_BOOT_OFFS though Kconfig.
158 This option should not be enabled when compiling U-boot for boards
159 defining CONFIG_SYS_NAND_U_BOOT_OFFS in their include/configs/<board>.h
160 file.
161
Hans de Goede60b1b292015-08-21 21:49:51 +0200162config SYS_NAND_U_BOOT_OFFS
163 hex "Location in NAND to read U-Boot from"
Maxime Riparda15b6ea2017-02-27 18:22:09 +0100164 default 0x800000 if NAND_SUNXI
Boris Brezillon05b769d2016-06-06 10:16:57 +0200165 depends on SYS_NAND_U_BOOT_LOCATIONS
Hans de Goede60b1b292015-08-21 21:49:51 +0200166 help
167 Set the offset from the start of the nand where u-boot should be
168 loaded from.
169
Boris Brezillon4f238e72016-06-06 10:16:58 +0200170config SYS_NAND_U_BOOT_OFFS_REDUND
171 hex "Location in NAND to read U-Boot from"
172 default SYS_NAND_U_BOOT_OFFS
173 depends on SYS_NAND_U_BOOT_LOCATIONS
174 help
175 Set the offset from the start of the nand where the redundant u-boot
176 should be loaded from.
177
Masahiro Yamadad182d542014-10-03 19:21:04 +0900178config SPL_NAND_DENALI
179 bool "Support Denali NAND controller for SPL"
180 help
181 This is a small implementation of the Denali NAND controller
182 for use on SPL.
183
184endif
185
Adam Ford42efb612017-08-07 17:37:18 -0400186endif # if NAND