Adam Ford | 42efb61 | 2017-08-07 17:37:18 -0400 | [diff] [blame^] | 1 | |
| 2 | menuconfig NAND |
| 3 | bool "NAND Device Support" |
| 4 | if NAND |
Masahiro Yamada | c343b38 | 2014-10-03 19:21:03 +0900 | [diff] [blame] | 5 | |
Masahiro Yamada | da0763d | 2014-11-13 20:31:50 +0900 | [diff] [blame] | 6 | config 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 Yamada | c343b38 | 2014-10-03 19:21:03 +0900 | [diff] [blame] | 12 | config NAND_DENALI |
| 13 | bool "Support Denali NAND controller" |
Masahiro Yamada | da0763d | 2014-11-13 20:31:50 +0900 | [diff] [blame] | 14 | select SYS_NAND_SELF_INIT |
Tom Rini | 00448d2 | 2017-07-28 21:31:42 -0400 | [diff] [blame] | 15 | imply CMD_NAND |
Masahiro Yamada | c343b38 | 2014-10-03 19:21:03 +0900 | [diff] [blame] | 16 | help |
| 17 | Enable support for the Denali NAND controller. |
| 18 | |
| 19 | config SYS_NAND_DENALI_64BIT |
| 20 | bool "Use 64-bit variant of Denali NAND controller" |
| 21 | depends on NAND_DENALI |
| 22 | help |
| 23 | The Denali NAND controller IP has some variations in terms of |
| 24 | the bus interface. The DMA setup sequence is completely differenct |
| 25 | between 32bit / 64bit AXI bus variants. |
| 26 | |
| 27 | If your Denali NAND controller is the 64-bit variant, say Y. |
| 28 | Otherwise (32 bit), say N. |
| 29 | |
| 30 | config NAND_DENALI_SPARE_AREA_SKIP_BYTES |
| 31 | int "Number of bytes skipped in OOB area" |
| 32 | depends on NAND_DENALI |
| 33 | range 0 63 |
| 34 | help |
| 35 | This option specifies the number of bytes to skip from the beginning |
| 36 | of OOB area before last ECC sector data starts. This is potentially |
| 37 | used to preserve the bad block marker in the OOB area. |
| 38 | |
Stefan Agner | 6120f75 | 2015-05-08 19:07:11 +0200 | [diff] [blame] | 39 | config NAND_VF610_NFC |
Heiko Schocher | 6f90e58 | 2017-06-14 05:49:40 +0200 | [diff] [blame] | 40 | bool "Support for Freescale NFC for VF610" |
Stefan Agner | 6120f75 | 2015-05-08 19:07:11 +0200 | [diff] [blame] | 41 | select SYS_NAND_SELF_INIT |
Tom Rini | 00448d2 | 2017-07-28 21:31:42 -0400 | [diff] [blame] | 42 | imply CMD_NAND |
Stefan Agner | 6120f75 | 2015-05-08 19:07:11 +0200 | [diff] [blame] | 43 | help |
| 44 | Enables support for NAND Flash Controller on some Freescale |
Heiko Schocher | 6f90e58 | 2017-06-14 05:49:40 +0200 | [diff] [blame] | 45 | processors like the VF610, MCF54418 or Kinetis K70. |
Stefan Agner | 6120f75 | 2015-05-08 19:07:11 +0200 | [diff] [blame] | 46 | The driver supports a maximum 2k page size. The driver |
| 47 | currently does not support hardware ECC. |
| 48 | |
Stefan Agner | fe10d3f | 2015-05-08 19:07:12 +0200 | [diff] [blame] | 49 | choice |
| 50 | prompt "Hardware ECC strength" |
| 51 | depends on NAND_VF610_NFC |
| 52 | default SYS_NAND_VF610_NFC_45_ECC_BYTES |
| 53 | help |
| 54 | Select the ECC strength used in the hardware BCH ECC block. |
| 55 | |
| 56 | config SYS_NAND_VF610_NFC_45_ECC_BYTES |
| 57 | bool "24-error correction (45 ECC bytes)" |
| 58 | |
| 59 | config SYS_NAND_VF610_NFC_60_ECC_BYTES |
| 60 | bool "32-error correction (60 ECC bytes)" |
| 61 | |
| 62 | endchoice |
| 63 | |
Stefan Roese | 75659da | 2015-07-23 10:26:16 +0200 | [diff] [blame] | 64 | config NAND_PXA3XX |
| 65 | bool "Support for NAND on PXA3xx and Armada 370/XP/38x" |
| 66 | select SYS_NAND_SELF_INIT |
Tom Rini | 00448d2 | 2017-07-28 21:31:42 -0400 | [diff] [blame] | 67 | imply CMD_NAND |
Stefan Roese | 75659da | 2015-07-23 10:26:16 +0200 | [diff] [blame] | 68 | help |
| 69 | This enables the driver for the NAND flash device found on |
| 70 | PXA3xx processors (NFCv1) and also on Armada 370/XP (NFCv2). |
| 71 | |
Hans de Goede | 3ce35f9 | 2015-08-16 14:48:22 +0200 | [diff] [blame] | 72 | config NAND_SUNXI |
Boris Brezillon | 57f2038 | 2016-06-15 21:09:23 +0200 | [diff] [blame] | 73 | bool "Support for NAND on Allwinner SoCs" |
Hans de Goede | 3ce35f9 | 2015-08-16 14:48:22 +0200 | [diff] [blame] | 74 | depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I |
| 75 | select SYS_NAND_SELF_INIT |
Maxime Ripard | 2d3100c | 2017-02-27 18:22:08 +0100 | [diff] [blame] | 76 | select SYS_NAND_U_BOOT_LOCATIONS |
Tom Rini | 00448d2 | 2017-07-28 21:31:42 -0400 | [diff] [blame] | 77 | imply CMD_NAND |
Hans de Goede | 3ce35f9 | 2015-08-16 14:48:22 +0200 | [diff] [blame] | 78 | ---help--- |
Boris Brezillon | 57f2038 | 2016-06-15 21:09:23 +0200 | [diff] [blame] | 79 | Enable support for NAND. This option enables the standard and |
| 80 | SPL drivers. |
| 81 | The SPL driver only supports reading from the NAND using DMA |
| 82 | transfers. |
Hans de Goede | 3ce35f9 | 2015-08-16 14:48:22 +0200 | [diff] [blame] | 83 | |
Maxime Ripard | fcacc70 | 2017-02-27 18:22:12 +0100 | [diff] [blame] | 84 | if NAND_SUNXI |
| 85 | |
| 86 | config NAND_SUNXI_SPL_ECC_STRENGTH |
| 87 | int "Allwinner NAND SPL ECC Strength" |
| 88 | default 64 |
| 89 | |
| 90 | config NAND_SUNXI_SPL_ECC_SIZE |
| 91 | int "Allwinner NAND SPL ECC Step Size" |
| 92 | default 1024 |
| 93 | |
| 94 | config NAND_SUNXI_SPL_USABLE_PAGE_SIZE |
| 95 | int "Allwinner NAND SPL Usable Page Size" |
| 96 | default 1024 |
| 97 | |
| 98 | endif |
| 99 | |
Siva Durga Prasad Paladugu | 937ad76 | 2015-11-17 14:30:09 +0530 | [diff] [blame] | 100 | config NAND_ARASAN |
| 101 | bool "Configure Arasan Nand" |
Tom Rini | 00448d2 | 2017-07-28 21:31:42 -0400 | [diff] [blame] | 102 | imply CMD_NAND |
Siva Durga Prasad Paladugu | 937ad76 | 2015-11-17 14:30:09 +0530 | [diff] [blame] | 103 | help |
| 104 | This enables Nand driver support for Arasan nand flash |
| 105 | controller. This uses the hardware ECC for read and |
| 106 | write operations. |
| 107 | |
Jagan Teki | 811a822 | 2016-10-08 18:00:25 +0530 | [diff] [blame] | 108 | config NAND_MXS |
| 109 | bool "MXS NAND support" |
Andrey Yurovsky | 814cb19 | 2017-02-10 10:33:34 -0800 | [diff] [blame] | 110 | depends on MX6 || MX7 |
Tom Rini | 00448d2 | 2017-07-28 21:31:42 -0400 | [diff] [blame] | 111 | imply CMD_NAND |
Jagan Teki | 811a822 | 2016-10-08 18:00:25 +0530 | [diff] [blame] | 112 | help |
| 113 | This enables NAND driver for the NAND flash controller on the |
| 114 | MXS processors. |
| 115 | |
Siva Durga Prasad Paladugu | c41d5cd | 2016-09-27 10:55:46 +0530 | [diff] [blame] | 116 | config NAND_ZYNQ |
| 117 | bool "Support for Zynq Nand controller" |
| 118 | select SYS_NAND_SELF_INIT |
Tom Rini | 00448d2 | 2017-07-28 21:31:42 -0400 | [diff] [blame] | 119 | imply CMD_NAND |
Siva Durga Prasad Paladugu | c41d5cd | 2016-09-27 10:55:46 +0530 | [diff] [blame] | 120 | help |
| 121 | This enables Nand driver support for Nand flash controller |
| 122 | found on Zynq SoC. |
| 123 | |
Stefan Agner | 6120f75 | 2015-05-08 19:07:11 +0200 | [diff] [blame] | 124 | comment "Generic NAND options" |
| 125 | |
| 126 | # Enhance depends when converting drivers to Kconfig which use this config |
| 127 | # option (mxc_nand, ndfc, omap_gpmc). |
| 128 | config SYS_NAND_BUSWIDTH_16BIT |
| 129 | bool "Use 16-bit NAND interface" |
| 130 | depends on NAND_VF610_NFC |
| 131 | help |
| 132 | Indicates that NAND device has 16-bit wide data-bus. In absence of this |
| 133 | config, bus-width of NAND device is assumed to be either 8-bit and later |
| 134 | determined by reading ONFI params. |
| 135 | Above config is useful when NAND device's bus-width information cannot |
| 136 | be determined from on-chip ONFI params, like in following scenarios: |
| 137 | - SPL boot does not support reading of ONFI parameters. This is done to |
| 138 | keep SPL code foot-print small. |
| 139 | - In current U-Boot flow using nand_init(), driver initialization |
| 140 | happens in board_nand_init() which is called before any device probe |
| 141 | (nand_scan_ident + nand_scan_tail), thus device's ONFI parameters are |
| 142 | not available while configuring controller. So a static CONFIG_NAND_xx |
| 143 | is needed to know the device's bus-width in advance. |
| 144 | |
Boris Brezillon | 05b769d | 2016-06-06 10:16:57 +0200 | [diff] [blame] | 145 | if SPL |
| 146 | |
| 147 | config SYS_NAND_U_BOOT_LOCATIONS |
| 148 | bool "Define U-boot binaries locations in NAND" |
| 149 | help |
| 150 | Enable CONFIG_SYS_NAND_U_BOOT_OFFS though Kconfig. |
| 151 | This option should not be enabled when compiling U-boot for boards |
| 152 | defining CONFIG_SYS_NAND_U_BOOT_OFFS in their include/configs/<board>.h |
| 153 | file. |
| 154 | |
Hans de Goede | 60b1b29 | 2015-08-21 21:49:51 +0200 | [diff] [blame] | 155 | config SYS_NAND_U_BOOT_OFFS |
| 156 | hex "Location in NAND to read U-Boot from" |
Maxime Ripard | a15b6ea | 2017-02-27 18:22:09 +0100 | [diff] [blame] | 157 | default 0x800000 if NAND_SUNXI |
Boris Brezillon | 05b769d | 2016-06-06 10:16:57 +0200 | [diff] [blame] | 158 | depends on SYS_NAND_U_BOOT_LOCATIONS |
Hans de Goede | 60b1b29 | 2015-08-21 21:49:51 +0200 | [diff] [blame] | 159 | help |
| 160 | Set the offset from the start of the nand where u-boot should be |
| 161 | loaded from. |
| 162 | |
Boris Brezillon | 4f238e7 | 2016-06-06 10:16:58 +0200 | [diff] [blame] | 163 | config SYS_NAND_U_BOOT_OFFS_REDUND |
| 164 | hex "Location in NAND to read U-Boot from" |
| 165 | default SYS_NAND_U_BOOT_OFFS |
| 166 | depends on SYS_NAND_U_BOOT_LOCATIONS |
| 167 | help |
| 168 | Set the offset from the start of the nand where the redundant u-boot |
| 169 | should be loaded from. |
| 170 | |
Masahiro Yamada | d182d54 | 2014-10-03 19:21:04 +0900 | [diff] [blame] | 171 | config SPL_NAND_DENALI |
| 172 | bool "Support Denali NAND controller for SPL" |
| 173 | help |
| 174 | This is a small implementation of the Denali NAND controller |
| 175 | for use on SPL. |
| 176 | |
| 177 | endif |
| 178 | |
Adam Ford | 42efb61 | 2017-08-07 17:37:18 -0400 | [diff] [blame^] | 179 | endif # if NAND |