Go to the documentation of this file.
14 #ifndef ATMEL_NAND_ECC_H
15 #define ATMEL_NAND_ECC_H
17 #define ATMEL_ECC_CR 0x00
18 #define ATMEL_ECC_RST (1 << 0)
20 #define ATMEL_ECC_MR 0x04
21 #define ATMEL_ECC_PAGESIZE (3 << 0)
22 #define ATMEL_ECC_PAGESIZE_528 (0)
23 #define ATMEL_ECC_PAGESIZE_1056 (1)
24 #define ATMEL_ECC_PAGESIZE_2112 (2)
25 #define ATMEL_ECC_PAGESIZE_4224 (3)
27 #define ATMEL_ECC_SR 0x08
28 #define ATMEL_ECC_RECERR (1 << 0)
29 #define ATMEL_ECC_ECCERR (1 << 1)
30 #define ATMEL_ECC_MULERR (1 << 2)
32 #define ATMEL_ECC_PR 0x0c
33 #define ATMEL_ECC_BITADDR (0xf << 0)
34 #define ATMEL_ECC_WORDADDR (0xfff << 4)
36 #define ATMEL_ECC_NPR 0x10
37 #define ATMEL_ECC_NPARITY (0xffff << 0)
40 #define ATMEL_PMECC_CFG 0x000
41 #define PMECC_CFG_BCH_ERR2 (0 << 0)
42 #define PMECC_CFG_BCH_ERR4 (1 << 0)
43 #define PMECC_CFG_BCH_ERR8 (2 << 0)
44 #define PMECC_CFG_BCH_ERR12 (3 << 0)
45 #define PMECC_CFG_BCH_ERR24 (4 << 0)
47 #define PMECC_CFG_SECTOR512 (0 << 4)
48 #define PMECC_CFG_SECTOR1024 (1 << 4)
50 #define PMECC_CFG_PAGE_1SECTOR (0 << 8)
51 #define PMECC_CFG_PAGE_2SECTORS (1 << 8)
52 #define PMECC_CFG_PAGE_4SECTORS (2 << 8)
53 #define PMECC_CFG_PAGE_8SECTORS (3 << 8)
55 #define PMECC_CFG_READ_OP (0 << 12)
56 #define PMECC_CFG_WRITE_OP (1 << 12)
58 #define PMECC_CFG_SPARE_ENABLE (1 << 16)
59 #define PMECC_CFG_SPARE_DISABLE (0 << 16)
61 #define PMECC_CFG_AUTO_ENABLE (1 << 20)
62 #define PMECC_CFG_AUTO_DISABLE (0 << 20)
64 #define ATMEL_PMECC_SAREA 0x004
65 #define ATMEL_PMECC_SADDR 0x008
66 #define ATMEL_PMECC_EADDR 0x00c
67 #define ATMEL_PMECC_CLK 0x010
68 #define PMECC_CLK_133MHZ (2 << 0)
70 #define ATMEL_PMECC_CTRL 0x014
71 #define PMECC_CTRL_RST (1 << 0)
72 #define PMECC_CTRL_DATA (1 << 1)
73 #define PMECC_CTRL_USER (1 << 2)
74 #define PMECC_CTRL_ENABLE (1 << 4)
75 #define PMECC_CTRL_DISABLE (1 << 5)
77 #define ATMEL_PMECC_SR 0x018
78 #define PMECC_SR_BUSY (1 << 0)
79 #define PMECC_SR_ENABLE (1 << 4)
81 #define ATMEL_PMECC_IER 0x01c
82 #define PMECC_IER_ENABLE (1 << 0)
83 #define ATMEL_PMECC_IDR 0x020
84 #define PMECC_IER_DISABLE (1 << 0)
85 #define ATMEL_PMECC_IMR 0x024
86 #define PMECC_IER_MASK (1 << 0)
87 #define ATMEL_PMECC_ISR 0x028
88 #define ATMEL_PMECC_ECCx 0x040
89 #define ATMEL_PMECC_REMx 0x240
92 #define ATMEL_PMERRLOC_ELCFG 0x000
93 #define PMERRLOC_ELCFG_SECTOR_512 (0 << 0)
94 #define PMERRLOC_ELCFG_SECTOR_1024 (1 << 0)
95 #define PMERRLOC_ELCFG_NUM_ERRORS(n) ((n) << 16)
97 #define ATMEL_PMERRLOC_ELPRIM 0x004
98 #define ATMEL_PMERRLOC_ELEN 0x008
99 #define ATMEL_PMERRLOC_ELDIS 0x00c
100 #define PMERRLOC_DISABLE (1 << 0)
102 #define ATMEL_PMERRLOC_ELSR 0x010
103 #define PMERRLOC_ELSR_BUSY (1 << 0)
104 #define ATMEL_PMERRLOC_ELIER 0x014
105 #define ATMEL_PMERRLOC_ELIDR 0x018
106 #define ATMEL_PMERRLOC_ELIMR 0x01c
107 #define ATMEL_PMERRLOC_ELISR 0x020
108 #define PMERRLOC_ERR_NUM_MASK (0x1f << 8)
109 #define PMERRLOC_CALC_DONE (1 << 0)
110 #define ATMEL_PMERRLOC_SIGMAx 0x028
111 #define ATMEL_PMERRLOC_ELx 0x08c
114 #define pmecc_readl_relaxed(addr, reg) \
115 readl_relaxed((addr) + ATMEL_PMECC_##reg)
117 #define pmecc_writel(addr, reg, value) \
118 writel((value), (addr) + ATMEL_PMECC_##reg)
120 #define pmecc_readb_ecc_relaxed(addr, sector, n) \
121 readb_relaxed((addr) + ATMEL_PMECC_ECCx + ((sector) * 0x40) + (n))
123 #define pmecc_readl_rem_relaxed(addr, sector, n) \
124 readl_relaxed((addr) + ATMEL_PMECC_REMx + ((sector) * 0x40) + ((n) * 4))
126 #define pmerrloc_readl_relaxed(addr, reg) \
127 readl_relaxed((addr) + ATMEL_PMERRLOC_##reg)
129 #define pmerrloc_writel(addr, reg, value) \
130 writel((value), (addr) + ATMEL_PMERRLOC_##reg)
132 #define pmerrloc_writel_sigma_relaxed(addr, n, value) \
133 writel_relaxed((value), (addr) + ATMEL_PMERRLOC_SIGMAx + ((n) * 4))
135 #define pmerrloc_readl_sigma_relaxed(addr, n) \
136 readl_relaxed((addr) + ATMEL_PMERRLOC_SIGMAx + ((n) * 4))
138 #define pmerrloc_readl_el_relaxed(addr, n) \
139 readl_relaxed((addr) + ATMEL_PMERRLOC_ELx + ((n) * 4))
142 #define PMECC_GF_DIMENSION_13 13
143 #define PMECC_GF_DIMENSION_14 14
145 #define PMECC_LOOKUP_TABLE_SIZE_512 0x2000
146 #define PMECC_LOOKUP_TABLE_SIZE_1024 0x4000
149 #define PMECC_MAX_TIMEOUT_MS 100