xref: /openbmc/u-boot/drivers/mtd/nand/Kconfig (revision 11ac2363)
1menu "NAND Device Support"
2
3config SYS_NAND_SELF_INIT
4	bool
5	help
6	  This option, if enabled, provides more flexible and linux-like
7	  NAND initialization process.
8
9config NAND_DENALI
10	bool "Support Denali NAND controller"
11	select SYS_NAND_SELF_INIT
12	help
13	  Enable support for the Denali NAND controller.
14
15config SYS_NAND_DENALI_64BIT
16	bool "Use 64-bit variant of Denali NAND controller"
17	depends on NAND_DENALI
18	help
19	  The Denali NAND controller IP has some variations in terms of
20	  the bus interface.  The DMA setup sequence is completely differenct
21	  between 32bit / 64bit AXI bus variants.
22
23	  If your Denali NAND controller is the 64-bit variant, say Y.
24	  Otherwise (32 bit), say N.
25
26config NAND_DENALI_SPARE_AREA_SKIP_BYTES
27	int "Number of bytes skipped in OOB area"
28	depends on NAND_DENALI
29	range 0 63
30	help
31	  This option specifies the number of bytes to skip from the beginning
32	  of OOB area before last ECC sector data starts.  This is potentially
33	  used to preserve the bad block marker in the OOB area.
34
35config NAND_VF610_NFC
36	bool "Support for Freescale NFC for VF610/MPC5125"
37	select SYS_NAND_SELF_INIT
38	help
39	  Enables support for NAND Flash Controller on some Freescale
40	  processors like the VF610, MPC5125, MCF54418 or Kinetis K70.
41	  The driver supports a maximum 2k page size. The driver
42	  currently does not support hardware ECC.
43
44choice
45	prompt "Hardware ECC strength"
46	depends on NAND_VF610_NFC
47	default SYS_NAND_VF610_NFC_45_ECC_BYTES
48	help
49	  Select the ECC strength used in the hardware BCH ECC block.
50
51config SYS_NAND_VF610_NFC_45_ECC_BYTES
52	bool "24-error correction (45 ECC bytes)"
53
54config SYS_NAND_VF610_NFC_60_ECC_BYTES
55	bool "32-error correction (60 ECC bytes)"
56
57endchoice
58
59comment "Generic NAND options"
60
61# Enhance depends when converting drivers to Kconfig which use this config
62# option (mxc_nand, ndfc, omap_gpmc).
63config SYS_NAND_BUSWIDTH_16BIT
64	bool "Use 16-bit NAND interface"
65	depends on NAND_VF610_NFC
66	help
67	  Indicates that NAND device has 16-bit wide data-bus. In absence of this
68	  config, bus-width of NAND device is assumed to be either 8-bit and later
69	  determined by reading ONFI params.
70	  Above config is useful when NAND device's bus-width information cannot
71	  be determined from on-chip ONFI params, like in following scenarios:
72	  - SPL boot does not support reading of ONFI parameters. This is done to
73	    keep SPL code foot-print small.
74	  - In current U-Boot flow using nand_init(), driver initialization
75	    happens in board_nand_init() which is called before any device probe
76	    (nand_scan_ident + nand_scan_tail), thus device's ONFI parameters are
77	    not available while configuring controller. So a static CONFIG_NAND_xx
78	    is needed to know the device's bus-width in advance.
79
80if SPL
81
82config SPL_NAND_DENALI
83	bool "Support Denali NAND controller for SPL"
84	help
85	  This is a small implementation of the Denali NAND controller
86	  for use on SPL.
87
88config SPL_NAND_SUNXI
89	bool "Support for NAND on Allwinner A20 in SPL"
90	depends on MACH_SUN7I
91	---help---
92	Enable support for NAND. This option allows SPL to read from
93	sunxi NAND using DMA transfers.
94	Depending on the NAND chip, values like ECC strength and page sizes
95	have to be configured.
96
97config NAND_SUNXI_SPL_SYNDROME_PARTITIONS_END
98	hex "Size of syndrome partitions in sunxi NAND"
99	default 0x400000
100	depends on SPL_NAND_SUNXI
101	---help---
102	End address for boot partitions on NAND. Those partitions have a
103	different random seed that has to match the sunxi BROM setting.
104
105config NAND_SUNXI_SPL_ECC_STRENGTH
106	int "ECC Strength for sunxi NAND"
107	default 40
108	depends on SPL_NAND_SUNXI
109	---help---
110	ECC strength used by the sunxi NAND SPL driver. This is specific to the
111	chosen NAND chip and has to match the value used by the sunxi BROM.
112
113config NAND_SUNXI_SPL_ECC_PAGE_SIZE
114	hex "ECC page size for sunxi NAND"
115	default 0x400
116	depends on SPL_NAND_SUNXI
117	---help---
118	ECC page size used by the sunxi NAND SPL driver for syndrome partitions.
119	This setting has to match the value used by the sunxi BROM.
120
121config NAND_SUNXI_SPL_PAGE_SIZE
122	hex "Page size for sunxi NAND"
123	default 0x2000
124	depends on SPL_NAND_SUNXI
125	---help---
126	Page size of the NAND flash used by the sunxi NAND SPL driver. This is
127	specific to the chosen NAND chip.
128endif
129
130endmenu
131