1 /* SPDX-License-Identifier: GPL-2.0-or-later */
5 * Copyright © 2006 Texas Instruments.
7 * Ported to 2.6.23 Copyright © 2008 by
12 * --------------------------------------------------------------------------
15 #ifndef __ARCH_ARM_DAVINCI_NAND_H
16 #define __ARCH_ARM_DAVINCI_NAND_H
18 #include <linux/mtd/rawnand.h>
20 #define NANDFCR_OFFSET 0x60
21 #define NANDFSR_OFFSET 0x64
22 #define NANDF1ECC_OFFSET 0x70
24 /* 4-bit ECC syndrome registers */
25 #define NAND_4BIT_ECC_LOAD_OFFSET 0xbc
26 #define NAND_4BIT_ECC1_OFFSET 0xc0
27 #define NAND_4BIT_ECC2_OFFSET 0xc4
28 #define NAND_4BIT_ECC3_OFFSET 0xc8
29 #define NAND_4BIT_ECC4_OFFSET 0xcc
30 #define NAND_ERR_ADD1_OFFSET 0xd0
31 #define NAND_ERR_ADD2_OFFSET 0xd4
32 #define NAND_ERR_ERRVAL1_OFFSET 0xd8
33 #define NAND_ERR_ERRVAL2_OFFSET 0xdc
35 /* NOTE: boards don't need to use these address bits
36 * for ALE/CLE unless they support booting from NAND.
37 * They're used unless platform data overrides them.
42 struct davinci_nand_pdata { /* platform_data */
47 * 0-indexed chip-select number of the asynchronous
48 * interface to which the NAND device has been connected.
50 * So, if you have NAND connected to CS3 of DA850, you
51 * will pass '1' here. Since the asynchronous interface
52 * on DA850 starts from CS2.
54 uint32_t core_chipsel;
56 /* for packages using two chipselects */
57 uint32_t mask_chipsel;
59 /* board's default static partition info */
60 struct mtd_partition *parts;
63 /* none == NAND_ECC_NONE (strongly *not* advised!!)
64 * soft == NAND_ECC_SOFT
65 * else == NAND_ECC_HW, according to ecc_bits
67 * All DaVinci-family chips support 1-bit hardware ECC.
68 * Newer ones also support 4-bit ECC, but are awkward
69 * using it with large page chips.
71 enum nand_ecc_mode ecc_mode;
74 /* e.g. NAND_BUSWIDTH_16 */
76 /* e.g. NAND_BBT_USE_FLASH */
79 /* Main and mirror bbt descriptor overrides */
80 struct nand_bbt_descr *bbt_td;
81 struct nand_bbt_descr *bbt_md;
84 struct davinci_aemif_timing *timing;
87 #endif /* __ARCH_ARM_DAVINCI_NAND_H */