4 * Copyright (C) 2006-2014 Texas Instruments.
6 * Based on Linux DaVinci NAND driver by TI.
9 #ifndef _DAVINCI_NAND_H_
10 #define _DAVINCI_NAND_H_
12 #include <linux/mtd/nand.h>
13 #include <asm/arch/hardware.h>
15 #define NAND_READ_START 0x00
16 #define NAND_READ_END 0x30
17 #define NAND_STATUS 0x70
22 #ifdef CONFIG_SYS_NAND_MASK_CLE
24 #define MASK_CLE CONFIG_SYS_NAND_MASK_CLE
26 #ifdef CONFIG_SYS_NAND_MASK_ALE
28 #define MASK_ALE CONFIG_SYS_NAND_MASK_ALE
31 struct davinci_emif_regs {
49 uint32_t ddrphyid_rev;
64 uint32_t nand4biteccload;
65 uint32_t nand4bitecc[4];
72 #define davinci_emif_regs \
73 ((struct davinci_emif_regs *)DAVINCI_ASYNC_EMIF_CNTRL_BASE)
75 #define DAVINCI_NANDFCR_NAND_ENABLE(n) (1 << ((n) - 2))
76 #define DAVINCI_NANDFCR_4BIT_ECC_SEL_MASK (3 << 4)
77 #define DAVINCI_NANDFCR_4BIT_ECC_SEL(n) (((n) - 2) << 4)
78 #define DAVINCI_NANDFCR_1BIT_ECC_START(n) (1 << (8 + ((n) - 2)))
79 #define DAVINCI_NANDFCR_4BIT_ECC_START (1 << 12)
80 #define DAVINCI_NANDFCR_4BIT_CALC_START (1 << 13)
81 #define DAVINCI_NANDFCR_CS2NAND (1 << 0)
83 /* Chip Select setup */
84 #define DAVINCI_ABCR_STROBE_SELECT (1 << 31)
85 #define DAVINCI_ABCR_EXT_WAIT (1 << 30)
86 #define DAVINCI_ABCR_WSETUP(n) (n << 26)
87 #define DAVINCI_ABCR_WSTROBE(n) (n << 20)
88 #define DAVINCI_ABCR_WHOLD(n) (n << 17)
89 #define DAVINCI_ABCR_RSETUP(n) (n << 13)
90 #define DAVINCI_ABCR_RSTROBE(n) (n << 7)
91 #define DAVINCI_ABCR_RHOLD(n) (n << 4)
92 #define DAVINCI_ABCR_TA(n) (n << 2)
93 #define DAVINCI_ABCR_ASIZE_16BIT 1
94 #define DAVINCI_ABCR_ASIZE_8BIT 0
96 void davinci_nand_init(struct nand_chip *nand);