1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#include <common.h>
16#include <asm/io.h>
17#include <linux/errno.h>
18#include <linux/mtd/omap_elm.h>
19#include <asm/arch/hardware.h>
20
21#define DRIVER_NAME "omap-elm"
22#define ELM_DEFAULT_POLY (0)
23
24struct elm *elm_cfg;
25
26
27
28
29
30
31
32static void elm_load_syndromes(u8 *syndrome, enum bch_level bch_type, u8 poly)
33{
34 u32 *ptr;
35 u32 val;
36
37
38 ptr = &elm_cfg->syndrome_fragments[poly].syndrome_fragment_x[0];
39 val = syndrome[0] | (syndrome[1] << 8) | (syndrome[2] << 16) |
40 (syndrome[3] << 24);
41 writel(val, ptr);
42
43 ptr = &elm_cfg->syndrome_fragments[poly].syndrome_fragment_x[1];
44 val = syndrome[4] | (syndrome[5] << 8) | (syndrome[6] << 16) |
45 (syndrome[7] << 24);
46 writel(val, ptr);
47
48 if (bch_type == BCH_8_BIT || bch_type == BCH_16_BIT) {
49
50 ptr = &elm_cfg->syndrome_fragments[poly].syndrome_fragment_x[2];
51 val = syndrome[8] | (syndrome[9] << 8) | (syndrome[10] << 16) |
52 (syndrome[11] << 24);
53 writel(val, ptr);
54
55 ptr = &elm_cfg->syndrome_fragments[poly].syndrome_fragment_x[3];
56 val = syndrome[12] | (syndrome[13] << 8) |
57 (syndrome[14] << 16) | (syndrome[15] << 24);
58 writel(val, ptr);
59 }
60
61 if (bch_type == BCH_16_BIT) {
62
63 ptr = &elm_cfg->syndrome_fragments[poly].syndrome_fragment_x[4];
64 val = syndrome[16] | (syndrome[17] << 8) |
65 (syndrome[18] << 16) | (syndrome[19] << 24);
66 writel(val, ptr);
67
68
69 ptr = &elm_cfg->syndrome_fragments[poly].syndrome_fragment_x[5];
70 val = syndrome[20] | (syndrome[21] << 8) |
71 (syndrome[22] << 16) | (syndrome[23] << 24);
72 writel(val, ptr);
73
74
75 ptr = &elm_cfg->syndrome_fragments[poly].syndrome_fragment_x[6];
76 val = syndrome[24] | (syndrome[25] << 8) |
77 (syndrome[26] << 16) | (syndrome[27] << 24);
78 writel(val, ptr);
79 }
80}
81
82
83
84
85
86
87
88
89
90
91
92
93int elm_check_error(u8 *syndrome, enum bch_level bch_type, u32 *error_count,
94 u32 *error_locations)
95{
96 u8 poly = ELM_DEFAULT_POLY;
97 s8 i;
98 u32 location_status;
99
100 elm_load_syndromes(syndrome, bch_type, poly);
101
102
103 writel((readl(&elm_cfg->syndrome_fragments[poly].syndrome_fragment_x[6])
104 | ELM_SYNDROME_FRAGMENT_6_SYNDROME_VALID),
105 &elm_cfg->syndrome_fragments[poly].syndrome_fragment_x[6]);
106
107
108 while ((readl(&elm_cfg->irqstatus) & (0x1 << poly)) != 0x1)
109 ;
110
111 writel((readl(&elm_cfg->irqstatus) | (0x1 << poly)),
112 &elm_cfg->irqstatus);
113
114
115 location_status = readl(&elm_cfg->error_location[poly].location_status);
116 if (!(location_status & ELM_LOCATION_STATUS_ECC_CORRECTABLE_MASK)) {
117 printf("%s: uncorrectable ECC errors\n", DRIVER_NAME);
118 return -EBADMSG;
119 }
120
121
122 *error_count = readl(&elm_cfg->error_location[poly].location_status) &
123 ELM_LOCATION_STATUS_ECC_NB_ERRORS_MASK;
124
125 for (i = 0; i < *error_count; i++) {
126 error_locations[i] =
127 readl(&elm_cfg->error_location[poly].error_location_x[i]);
128 }
129
130 return 0;
131}
132
133
134
135
136
137
138
139
140
141
142
143int elm_config(enum bch_level level)
144{
145 u32 val;
146 u8 poly = ELM_DEFAULT_POLY;
147 u32 buffer_size = 0x7FF;
148
149
150 val = (u32)(level) & ELM_LOCATION_CONFIG_ECC_BCH_LEVEL_MASK;
151 val |= ((buffer_size << ELM_LOCATION_CONFIG_ECC_SIZE_POS) &
152 ELM_LOCATION_CONFIG_ECC_SIZE_MASK);
153 writel(val, &elm_cfg->location_config);
154
155
156
157 writel((readl(&elm_cfg->irqenable) | (0x1 << poly)),
158 &elm_cfg->irqenable);
159
160 writel((readl(&elm_cfg->page_ctrl) & ~(0x1 << poly)),
161 &elm_cfg->page_ctrl);
162
163 return 0;
164}
165
166
167
168
169
170
171void elm_reset(void)
172{
173
174 writel((readl(&elm_cfg->sysconfig) | ELM_SYSCONFIG_SOFTRESET),
175 &elm_cfg->sysconfig);
176
177
178 while ((readl(&elm_cfg->sysstatus) & ELM_SYSSTATUS_RESETDONE) !=
179 ELM_SYSSTATUS_RESETDONE)
180 ;
181}
182
183
184
185
186
187
188
189void elm_init(void)
190{
191 elm_cfg = (struct elm *)ELM_BASE;
192 elm_reset();
193}
194