]> git.ipfire.org Git - people/ms/u-boot.git/blob - drivers/mtd/jedec_flash.c
Merge 'next' branch
[people/ms/u-boot.git] / drivers / mtd / jedec_flash.c
1 /*
2 * (C) Copyright 2007
3 * Michael Schwingen, <michael@schwingen.org>
4 *
5 * based in great part on jedec_probe.c from linux kernel:
6 * (C) 2000 Red Hat. GPL'd.
7 * Occasionally maintained by Thayne Harbaugh tharbaugh at lnxi dot com
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 *
27 */
28
29 /* The DEBUG define must be before common to enable debugging */
30 /*#define DEBUG*/
31
32 #include <common.h>
33 #include <asm/processor.h>
34 #include <asm/io.h>
35 #include <asm/byteorder.h>
36 #include <environment.h>
37
38 #define P_ID_AMD_STD CFI_CMDSET_AMD_LEGACY
39
40 /* Manufacturers */
41 #define MANUFACTURER_AMD 0x0001
42 #define MANUFACTURER_SST 0x00BF
43
44 /* AMD */
45 #define AM29DL800BB 0x22CB
46 #define AM29DL800BT 0x224A
47
48 #define AM29F800BB 0x2258
49 #define AM29F800BT 0x22D6
50 #define AM29LV400BB 0x22BA
51 #define AM29LV400BT 0x22B9
52 #define AM29LV800BB 0x225B
53 #define AM29LV800BT 0x22DA
54 #define AM29LV160DT 0x22C4
55 #define AM29LV160DB 0x2249
56 #define AM29F017D 0x003D
57 #define AM29F016D 0x00AD
58 #define AM29F080 0x00D5
59 #define AM29F040 0x00A4
60 #define AM29LV040B 0x004F
61 #define AM29F032B 0x0041
62 #define AM29F002T 0x00B0
63
64 /* SST */
65 #define SST39LF800 0x2781
66 #define SST39LF160 0x2782
67 #define SST39VF1601 0x234b
68 #define SST39LF512 0x00D4
69 #define SST39LF010 0x00D5
70 #define SST39LF020 0x00D6
71 #define SST39LF040 0x00D7
72 #define SST39SF010A 0x00B5
73 #define SST39SF020A 0x00B6
74
75
76 /*
77 * Unlock address sets for AMD command sets.
78 * Intel command sets use the MTD_UADDR_UNNECESSARY.
79 * Each identifier, except MTD_UADDR_UNNECESSARY, and
80 * MTD_UADDR_NO_SUPPORT must be defined below in unlock_addrs[].
81 * MTD_UADDR_NOT_SUPPORTED must be 0 so that structure
82 * initialization need not require initializing all of the
83 * unlock addresses for all bit widths.
84 */
85 enum uaddr {
86 MTD_UADDR_NOT_SUPPORTED = 0, /* data width not supported */
87 MTD_UADDR_0x0555_0x02AA,
88 MTD_UADDR_0x0555_0x0AAA,
89 MTD_UADDR_0x5555_0x2AAA,
90 MTD_UADDR_0x0AAA_0x0555,
91 MTD_UADDR_DONT_CARE, /* Requires an arbitrary address */
92 MTD_UADDR_UNNECESSARY, /* Does not require any address */
93 };
94
95
96 struct unlock_addr {
97 u32 addr1;
98 u32 addr2;
99 };
100
101
102 /*
103 * I don't like the fact that the first entry in unlock_addrs[]
104 * exists, but is for MTD_UADDR_NOT_SUPPORTED - and, therefore,
105 * should not be used. The problem is that structures with
106 * initializers have extra fields initialized to 0. It is _very_
107 * desireable to have the unlock address entries for unsupported
108 * data widths automatically initialized - that means that
109 * MTD_UADDR_NOT_SUPPORTED must be 0 and the first entry here
110 * must go unused.
111 */
112 static const struct unlock_addr unlock_addrs[] = {
113 [MTD_UADDR_NOT_SUPPORTED] = {
114 .addr1 = 0xffff,
115 .addr2 = 0xffff
116 },
117
118 [MTD_UADDR_0x0555_0x02AA] = {
119 .addr1 = 0x0555,
120 .addr2 = 0x02aa
121 },
122
123 [MTD_UADDR_0x0555_0x0AAA] = {
124 .addr1 = 0x0555,
125 .addr2 = 0x0aaa
126 },
127
128 [MTD_UADDR_0x5555_0x2AAA] = {
129 .addr1 = 0x5555,
130 .addr2 = 0x2aaa
131 },
132
133 [MTD_UADDR_0x0AAA_0x0555] = {
134 .addr1 = 0x0AAA,
135 .addr2 = 0x0555
136 },
137
138 [MTD_UADDR_DONT_CARE] = {
139 .addr1 = 0x0000, /* Doesn't matter which address */
140 .addr2 = 0x0000 /* is used - must be last entry */
141 },
142
143 [MTD_UADDR_UNNECESSARY] = {
144 .addr1 = 0x0000,
145 .addr2 = 0x0000
146 }
147 };
148
149
150 struct amd_flash_info {
151 const __u16 mfr_id;
152 const __u16 dev_id;
153 const char *name;
154 const int DevSize;
155 const int NumEraseRegions;
156 const int CmdSet;
157 const __u8 uaddr[4]; /* unlock addrs for 8, 16, 32, 64 */
158 const ulong regions[6];
159 };
160
161 #define ERASEINFO(size,blocks) (size<<8)|(blocks-1)
162
163 #define SIZE_64KiB 16
164 #define SIZE_128KiB 17
165 #define SIZE_256KiB 18
166 #define SIZE_512KiB 19
167 #define SIZE_1MiB 20
168 #define SIZE_2MiB 21
169 #define SIZE_4MiB 22
170 #define SIZE_8MiB 23
171
172 static const struct amd_flash_info jedec_table[] = {
173 #ifdef CONFIG_SYS_FLASH_LEGACY_256Kx8
174 {
175 .mfr_id = MANUFACTURER_SST,
176 .dev_id = SST39LF020,
177 .name = "SST 39LF020",
178 .uaddr = {
179 [0] = MTD_UADDR_0x5555_0x2AAA /* x8 */
180 },
181 .DevSize = SIZE_256KiB,
182 .CmdSet = P_ID_AMD_STD,
183 .NumEraseRegions= 1,
184 .regions = {
185 ERASEINFO(0x01000,64),
186 }
187 },
188 #endif
189 #ifdef CONFIG_SYS_FLASH_LEGACY_512Kx8
190 {
191 .mfr_id = MANUFACTURER_AMD,
192 .dev_id = AM29LV040B,
193 .name = "AMD AM29LV040B",
194 .uaddr = {
195 [0] = MTD_UADDR_0x0555_0x02AA /* x8 */
196 },
197 .DevSize = SIZE_512KiB,
198 .CmdSet = P_ID_AMD_STD,
199 .NumEraseRegions= 1,
200 .regions = {
201 ERASEINFO(0x10000,8),
202 }
203 },
204 {
205 .mfr_id = MANUFACTURER_SST,
206 .dev_id = SST39LF040,
207 .name = "SST 39LF040",
208 .uaddr = {
209 [0] = MTD_UADDR_0x5555_0x2AAA /* x8 */
210 },
211 .DevSize = SIZE_512KiB,
212 .CmdSet = P_ID_AMD_STD,
213 .NumEraseRegions= 1,
214 .regions = {
215 ERASEINFO(0x01000,128),
216 }
217 },
218 #endif
219 #ifdef CONFIG_SYS_FLASH_LEGACY_512Kx16
220 {
221 .mfr_id = MANUFACTURER_AMD,
222 .dev_id = AM29LV400BB,
223 .name = "AMD AM29LV400BB",
224 .uaddr = {
225 [1] = MTD_UADDR_0x0555_0x02AA /* x16 */
226 },
227 .DevSize = SIZE_512KiB,
228 .CmdSet = CFI_CMDSET_AMD_LEGACY,
229 .NumEraseRegions= 4,
230 .regions = {
231 ERASEINFO(0x04000,1),
232 ERASEINFO(0x02000,2),
233 ERASEINFO(0x08000,1),
234 ERASEINFO(0x10000,7),
235 }
236 },
237 {
238 .mfr_id = MANUFACTURER_AMD,
239 .dev_id = AM29LV800BB,
240 .name = "AMD AM29LV800BB",
241 .uaddr = {
242 [1] = MTD_UADDR_0x0555_0x02AA /* x16 */
243 },
244 .DevSize = SIZE_1MiB,
245 .CmdSet = CFI_CMDSET_AMD_LEGACY,
246 .NumEraseRegions= 4,
247 .regions = {
248 ERASEINFO(0x04000, 1),
249 ERASEINFO(0x02000, 2),
250 ERASEINFO(0x08000, 1),
251 ERASEINFO(0x10000, 15),
252 }
253 },
254 #endif
255 };
256
257 static inline void fill_info(flash_info_t *info, const struct amd_flash_info *jedec_entry, ulong base)
258 {
259 int i,j;
260 int sect_cnt;
261 int size_ratio;
262 int total_size;
263 enum uaddr uaddr_idx;
264
265 size_ratio = info->portwidth / info->chipwidth;
266
267 debug("Found JEDEC Flash: %s\n", jedec_entry->name);
268 info->vendor = jedec_entry->CmdSet;
269 /* Todo: do we need device-specific timeouts? */
270 info->erase_blk_tout = 30000;
271 info->buffer_write_tout = 1000;
272 info->write_tout = 100;
273 info->name = jedec_entry->name;
274
275 /* copy unlock addresses from device table to CFI info struct. This
276 is just here because the addresses are in the table anyway - if
277 the flash is not detected due to wrong unlock addresses,
278 flash_detect_legacy would have to try all of them before we even
279 get here. */
280 switch(info->chipwidth) {
281 case FLASH_CFI_8BIT:
282 uaddr_idx = jedec_entry->uaddr[0];
283 break;
284 case FLASH_CFI_16BIT:
285 uaddr_idx = jedec_entry->uaddr[1];
286 break;
287 case FLASH_CFI_32BIT:
288 uaddr_idx = jedec_entry->uaddr[2];
289 break;
290 default:
291 uaddr_idx = MTD_UADDR_NOT_SUPPORTED;
292 break;
293 }
294
295 debug("unlock address index %d\n", uaddr_idx);
296 info->addr_unlock1 = unlock_addrs[uaddr_idx].addr1;
297 info->addr_unlock2 = unlock_addrs[uaddr_idx].addr2;
298 debug("unlock addresses are 0x%x/0x%x\n", info->addr_unlock1, info->addr_unlock2);
299
300 sect_cnt = 0;
301 total_size = 0;
302 for (i = 0; i < jedec_entry->NumEraseRegions; i++) {
303 ulong erase_region_size = jedec_entry->regions[i] >> 8;
304 ulong erase_region_count = (jedec_entry->regions[i] & 0xff) + 1;
305
306 total_size += erase_region_size * erase_region_count;
307 debug ("erase_region_count = %d erase_region_size = %d\n",
308 erase_region_count, erase_region_size);
309 for (j = 0; j < erase_region_count; j++) {
310 if (sect_cnt >= CONFIG_SYS_MAX_FLASH_SECT) {
311 printf("ERROR: too many flash sectors\n");
312 break;
313 }
314 info->start[sect_cnt] = base;
315 base += (erase_region_size * size_ratio);
316 sect_cnt++;
317 }
318 }
319 info->sector_count = sect_cnt;
320 info->size = total_size * size_ratio;
321 }
322
323 /*-----------------------------------------------------------------------
324 * match jedec ids against table. If a match is found, fill flash_info entry
325 */
326 int jedec_flash_match(flash_info_t *info, ulong base)
327 {
328 int ret = 0;
329 int i;
330 ulong mask = 0xFFFF;
331 if (info->chipwidth == 1)
332 mask = 0xFF;
333
334 for (i = 0; i < ARRAY_SIZE(jedec_table); i++) {
335 if ((jedec_table[i].mfr_id & mask) == (info->manufacturer_id & mask) &&
336 (jedec_table[i].dev_id & mask) == (info->device_id & mask)) {
337 fill_info(info, &jedec_table[i], base);
338 ret = 1;
339 break;
340 }
341 }
342 return ret;
343 }