]>
Commit | Line | Data |
---|---|---|
5653fc33 | 1 | /* |
bf9e3b38 | 2 | * (C) Copyright 2002-2004 |
5653fc33 WD |
3 | * Brad Kemp, Seranoa Networks, [email protected] |
4 | * | |
5 | * Copyright (C) 2003 Arabella Software Ltd. | |
6 | * Yuli Barcohen <[email protected]> | |
5653fc33 | 7 | * |
bf9e3b38 WD |
8 | * Copyright (C) 2004 |
9 | * Ed Okerson | |
260421a2 SR |
10 | * |
11 | * Copyright (C) 2006 | |
12 | * Tolunay Orkun <[email protected]> | |
bf9e3b38 | 13 | * |
1a459660 | 14 | * SPDX-License-Identifier: GPL-2.0+ |
5653fc33 WD |
15 | */ |
16 | ||
17 | /* The DEBUG define must be before common to enable debugging */ | |
2d1a537d WD |
18 | /* #define DEBUG */ |
19 | ||
5653fc33 | 20 | #include <common.h> |
24b852a7 | 21 | #include <console.h> |
f1056910 TC |
22 | #include <dm.h> |
23 | #include <errno.h> | |
24 | #include <fdt_support.h> | |
5653fc33 | 25 | #include <asm/processor.h> |
3a197b2f | 26 | #include <asm/io.h> |
4c0d4c3b | 27 | #include <asm/byteorder.h> |
aedadf10 | 28 | #include <asm/unaligned.h> |
2a8af187 | 29 | #include <environment.h> |
fa36ae79 | 30 | #include <mtd/cfi_flash.h> |
a9f5faba | 31 | #include <watchdog.h> |
028ab6b5 | 32 | |
5653fc33 | 33 | /* |
7e5b9b47 HS |
34 | * This file implements a Common Flash Interface (CFI) driver for |
35 | * U-Boot. | |
36 | * | |
37 | * The width of the port and the width of the chips are determined at | |
38 | * initialization. These widths are used to calculate the address for | |
39 | * access CFI data structures. | |
5653fc33 WD |
40 | * |
41 | * References | |
42 | * JEDEC Standard JESD68 - Common Flash Interface (CFI) | |
43 | * JEDEC Standard JEP137-A Common Flash Interface (CFI) ID Codes | |
44 | * Intel Application Note 646 Common Flash Interface (CFI) and Command Sets | |
45 | * Intel 290667-008 3 Volt Intel StrataFlash Memory datasheet | |
260421a2 SR |
46 | * AMD CFI Specification, Release 2.0 December 1, 2001 |
47 | * AMD/Spansion Application Note: Migration from Single-byte to Three-byte | |
48 | * Device IDs, Publication Number 25538 Revision A, November 8, 2001 | |
5653fc33 | 49 | * |
6d0f6bcf | 50 | * Define CONFIG_SYS_WRITE_SWAPPED_DATA, if you have to swap the Bytes between |
d0b6e140 | 51 | * reading and writing ... (yes there is such a Hardware). |
5653fc33 WD |
52 | */ |
53 | ||
f1056910 TC |
54 | DECLARE_GLOBAL_DATA_PTR; |
55 | ||
7e5b9b47 | 56 | static uint flash_offset_cfi[2] = { FLASH_OFFSET_CFI, FLASH_OFFSET_CFI_ALT }; |
4ffeab2c | 57 | #ifdef CONFIG_FLASH_CFI_MTD |
6ea808ef | 58 | static uint flash_verbose = 1; |
4ffeab2c MF |
59 | #else |
60 | #define flash_verbose 1 | |
61 | #endif | |
92eb729b | 62 | |
2a112b23 WD |
63 | flash_info_t flash_info[CFI_MAX_FLASH_BANKS]; /* FLASH chips info */ |
64 | ||
79b4cda0 SR |
65 | /* |
66 | * Check if chip width is defined. If not, start detecting with 8bit. | |
67 | */ | |
6d0f6bcf JCPV |
68 | #ifndef CONFIG_SYS_FLASH_CFI_WIDTH |
69 | #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_8BIT | |
79b4cda0 SR |
70 | #endif |
71 | ||
00dcb07c JH |
72 | #ifdef CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS |
73 | #define __maybe_weak __weak | |
74 | #else | |
75 | #define __maybe_weak static | |
76 | #endif | |
77 | ||
6f726f95 SR |
78 | /* |
79 | * 0xffff is an undefined value for the configuration register. When | |
80 | * this value is returned, the configuration register shall not be | |
81 | * written at all (default mode). | |
82 | */ | |
83 | static u16 cfi_flash_config_reg(int i) | |
84 | { | |
85 | #ifdef CONFIG_SYS_CFI_FLASH_CONFIG_REGS | |
86 | return ((u16 [])CONFIG_SYS_CFI_FLASH_CONFIG_REGS)[i]; | |
87 | #else | |
88 | return 0xffff; | |
89 | #endif | |
90 | } | |
91 | ||
ca5def3f SR |
92 | #if defined(CONFIG_SYS_MAX_FLASH_BANKS_DETECT) |
93 | int cfi_flash_num_flash_banks = CONFIG_SYS_MAX_FLASH_BANKS_DETECT; | |
94 | #endif | |
95 | ||
f1056910 TC |
96 | #ifdef CONFIG_CFI_FLASH /* for driver model */ |
97 | static void cfi_flash_init_dm(void) | |
98 | { | |
99 | struct udevice *dev; | |
100 | ||
101 | cfi_flash_num_flash_banks = 0; | |
102 | /* | |
103 | * The uclass_first_device() will probe the first device and | |
104 | * uclass_next_device() will probe the rest if they exist. So | |
105 | * that cfi_flash_probe() will get called assigning the base | |
106 | * addresses that are available. | |
107 | */ | |
108 | for (uclass_first_device(UCLASS_MTD, &dev); | |
109 | dev; | |
110 | uclass_next_device(&dev)) { | |
111 | } | |
112 | } | |
113 | ||
114 | static phys_addr_t cfi_flash_base[CFI_MAX_FLASH_BANKS]; | |
115 | ||
116 | phys_addr_t cfi_flash_bank_addr(int i) | |
117 | { | |
118 | return cfi_flash_base[i]; | |
119 | } | |
120 | #else | |
00dcb07c | 121 | __weak phys_addr_t cfi_flash_bank_addr(int i) |
b00e19cc SR |
122 | { |
123 | return ((phys_addr_t [])CONFIG_SYS_FLASH_BANKS_LIST)[i]; | |
124 | } | |
f1056910 | 125 | #endif |
b00e19cc | 126 | |
00dcb07c | 127 | __weak unsigned long cfi_flash_bank_size(int i) |
ec50a8e3 IY |
128 | { |
129 | #ifdef CONFIG_SYS_FLASH_BANKS_SIZES | |
130 | return ((unsigned long [])CONFIG_SYS_FLASH_BANKS_SIZES)[i]; | |
131 | #else | |
132 | return 0; | |
133 | #endif | |
134 | } | |
ec50a8e3 | 135 | |
00dcb07c | 136 | __maybe_weak void flash_write8(u8 value, void *addr) |
cdbaefb5 HS |
137 | { |
138 | __raw_writeb(value, addr); | |
139 | } | |
140 | ||
00dcb07c | 141 | __maybe_weak void flash_write16(u16 value, void *addr) |
cdbaefb5 HS |
142 | { |
143 | __raw_writew(value, addr); | |
144 | } | |
145 | ||
00dcb07c | 146 | __maybe_weak void flash_write32(u32 value, void *addr) |
cdbaefb5 HS |
147 | { |
148 | __raw_writel(value, addr); | |
149 | } | |
150 | ||
00dcb07c | 151 | __maybe_weak void flash_write64(u64 value, void *addr) |
cdbaefb5 HS |
152 | { |
153 | /* No architectures currently implement __raw_writeq() */ | |
154 | *(volatile u64 *)addr = value; | |
155 | } | |
156 | ||
00dcb07c | 157 | __maybe_weak u8 flash_read8(void *addr) |
cdbaefb5 HS |
158 | { |
159 | return __raw_readb(addr); | |
160 | } | |
161 | ||
00dcb07c | 162 | __maybe_weak u16 flash_read16(void *addr) |
cdbaefb5 HS |
163 | { |
164 | return __raw_readw(addr); | |
165 | } | |
166 | ||
00dcb07c | 167 | __maybe_weak u32 flash_read32(void *addr) |
cdbaefb5 HS |
168 | { |
169 | return __raw_readl(addr); | |
170 | } | |
171 | ||
00dcb07c | 172 | __maybe_weak u64 flash_read64(void *addr) |
cdbaefb5 HS |
173 | { |
174 | /* No architectures currently implement __raw_readq() */ | |
175 | return *(volatile u64 *)addr; | |
176 | } | |
177 | ||
5653fc33 | 178 | /*----------------------------------------------------------------------- |
5653fc33 | 179 | */ |
6d0f6bcf | 180 | #if defined(CONFIG_ENV_IS_IN_FLASH) || defined(CONFIG_ENV_ADDR_REDUND) || (CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE) |
4f975678 | 181 | flash_info_t *flash_get_info(ulong base) |
be60a902 HS |
182 | { |
183 | int i; | |
24c185cf | 184 | flash_info_t *info; |
5653fc33 | 185 | |
6d0f6bcf | 186 | for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) { |
e2e273a3 | 187 | info = &flash_info[i]; |
be60a902 HS |
188 | if (info->size && info->start[0] <= base && |
189 | base <= info->start[0] + info->size - 1) | |
24c185cf | 190 | return info; |
be60a902 | 191 | } |
5653fc33 | 192 | |
24c185cf | 193 | return NULL; |
be60a902 | 194 | } |
5653fc33 WD |
195 | #endif |
196 | ||
12d30aa7 HS |
197 | unsigned long flash_sector_size(flash_info_t *info, flash_sect_t sect) |
198 | { | |
199 | if (sect != (info->sector_count - 1)) | |
200 | return info->start[sect + 1] - info->start[sect]; | |
201 | else | |
202 | return info->start[0] + info->size - info->start[sect]; | |
203 | } | |
204 | ||
bf9e3b38 WD |
205 | /*----------------------------------------------------------------------- |
206 | * create an address based on the offset and the port width | |
207 | */ | |
12d30aa7 HS |
208 | static inline void * |
209 | flash_map (flash_info_t * info, flash_sect_t sect, uint offset) | |
bf9e3b38 | 210 | { |
e303be2d | 211 | unsigned int byte_offset = offset * info->portwidth; |
12d30aa7 | 212 | |
e303be2d | 213 | return (void *)(info->start[sect] + byte_offset); |
12d30aa7 HS |
214 | } |
215 | ||
216 | static inline void flash_unmap(flash_info_t *info, flash_sect_t sect, | |
217 | unsigned int offset, void *addr) | |
218 | { | |
bf9e3b38 WD |
219 | } |
220 | ||
be60a902 HS |
221 | /*----------------------------------------------------------------------- |
222 | * make a proper sized command based on the port and chip widths | |
223 | */ | |
7288f972 | 224 | static void flash_make_cmd(flash_info_t *info, u32 cmd, void *cmdbuf) |
be60a902 HS |
225 | { |
226 | int i; | |
93c56f21 VL |
227 | int cword_offset; |
228 | int cp_offset; | |
6d0f6bcf | 229 | #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA) |
340ccb26 SS |
230 | u32 cmd_le = cpu_to_le32(cmd); |
231 | #endif | |
93c56f21 | 232 | uchar val; |
be60a902 HS |
233 | uchar *cp = (uchar *) cmdbuf; |
234 | ||
93c56f21 VL |
235 | for (i = info->portwidth; i > 0; i--){ |
236 | cword_offset = (info->portwidth-i)%info->chipwidth; | |
6d0f6bcf | 237 | #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA) |
93c56f21 | 238 | cp_offset = info->portwidth - i; |
340ccb26 | 239 | val = *((uchar*)&cmd_le + cword_offset); |
be60a902 | 240 | #else |
93c56f21 | 241 | cp_offset = i - 1; |
7288f972 | 242 | val = *((uchar*)&cmd + sizeof(u32) - cword_offset - 1); |
be60a902 | 243 | #endif |
7288f972 | 244 | cp[cp_offset] = (cword_offset >= sizeof(u32)) ? 0x00 : val; |
93c56f21 | 245 | } |
be60a902 HS |
246 | } |
247 | ||
5653fc33 | 248 | #ifdef DEBUG |
bf9e3b38 WD |
249 | /*----------------------------------------------------------------------- |
250 | * Debug support | |
251 | */ | |
3055793b | 252 | static void print_longlong (char *str, unsigned long long data) |
5653fc33 WD |
253 | { |
254 | int i; | |
255 | char *cp; | |
bf9e3b38 | 256 | |
657f2062 | 257 | cp = (char *) &data; |
bf9e3b38 WD |
258 | for (i = 0; i < 8; i++) |
259 | sprintf (&str[i * 2], "%2.2x", *cp++); | |
260 | } | |
be60a902 | 261 | |
e23741f4 | 262 | static void flash_printqry (struct cfi_qry *qry) |
bf9e3b38 | 263 | { |
e23741f4 | 264 | u8 *p = (u8 *)qry; |
bf9e3b38 WD |
265 | int x, y; |
266 | ||
e23741f4 HS |
267 | for (x = 0; x < sizeof(struct cfi_qry); x += 16) { |
268 | debug("%02x : ", x); | |
269 | for (y = 0; y < 16; y++) | |
270 | debug("%2.2x ", p[x + y]); | |
271 | debug(" "); | |
bf9e3b38 | 272 | for (y = 0; y < 16; y++) { |
e23741f4 HS |
273 | unsigned char c = p[x + y]; |
274 | if (c >= 0x20 && c <= 0x7e) | |
275 | debug("%c", c); | |
276 | else | |
277 | debug("."); | |
bf9e3b38 | 278 | } |
e23741f4 | 279 | debug("\n"); |
bf9e3b38 | 280 | } |
5653fc33 WD |
281 | } |
282 | #endif | |
283 | ||
284 | ||
5653fc33 WD |
285 | /*----------------------------------------------------------------------- |
286 | * read a character at a port width address | |
287 | */ | |
3055793b | 288 | static inline uchar flash_read_uchar (flash_info_t * info, uint offset) |
5653fc33 WD |
289 | { |
290 | uchar *cp; | |
12d30aa7 | 291 | uchar retval; |
bf9e3b38 | 292 | |
12d30aa7 | 293 | cp = flash_map (info, 0, offset); |
6d0f6bcf | 294 | #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA) |
12d30aa7 | 295 | retval = flash_read8(cp); |
bf9e3b38 | 296 | #else |
12d30aa7 | 297 | retval = flash_read8(cp + info->portwidth - 1); |
bf9e3b38 | 298 | #endif |
12d30aa7 HS |
299 | flash_unmap (info, 0, offset, cp); |
300 | return retval; | |
5653fc33 WD |
301 | } |
302 | ||
90447ecb TK |
303 | /*----------------------------------------------------------------------- |
304 | * read a word at a port width address, assume 16bit bus | |
305 | */ | |
306 | static inline ushort flash_read_word (flash_info_t * info, uint offset) | |
307 | { | |
308 | ushort *addr, retval; | |
309 | ||
310 | addr = flash_map (info, 0, offset); | |
311 | retval = flash_read16 (addr); | |
312 | flash_unmap (info, 0, offset, addr); | |
313 | return retval; | |
314 | } | |
315 | ||
316 | ||
5653fc33 | 317 | /*----------------------------------------------------------------------- |
260421a2 | 318 | * read a long word by picking the least significant byte of each maximum |
5653fc33 WD |
319 | * port size word. Swap for ppc format. |
320 | */ | |
3055793b HS |
321 | static ulong flash_read_long (flash_info_t * info, flash_sect_t sect, |
322 | uint offset) | |
5653fc33 | 323 | { |
bf9e3b38 WD |
324 | uchar *addr; |
325 | ulong retval; | |
326 | ||
327 | #ifdef DEBUG | |
328 | int x; | |
329 | #endif | |
12d30aa7 | 330 | addr = flash_map (info, sect, offset); |
5653fc33 | 331 | |
bf9e3b38 WD |
332 | #ifdef DEBUG |
333 | debug ("long addr is at %p info->portwidth = %d\n", addr, | |
334 | info->portwidth); | |
335 | for (x = 0; x < 4 * info->portwidth; x++) { | |
12d30aa7 | 336 | debug ("addr[%x] = 0x%x\n", x, flash_read8(addr + x)); |
bf9e3b38 WD |
337 | } |
338 | #endif | |
6d0f6bcf | 339 | #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA) |
12d30aa7 HS |
340 | retval = ((flash_read8(addr) << 16) | |
341 | (flash_read8(addr + info->portwidth) << 24) | | |
342 | (flash_read8(addr + 2 * info->portwidth)) | | |
343 | (flash_read8(addr + 3 * info->portwidth) << 8)); | |
bf9e3b38 | 344 | #else |
12d30aa7 HS |
345 | retval = ((flash_read8(addr + 2 * info->portwidth - 1) << 24) | |
346 | (flash_read8(addr + info->portwidth - 1) << 16) | | |
347 | (flash_read8(addr + 4 * info->portwidth - 1) << 8) | | |
348 | (flash_read8(addr + 3 * info->portwidth - 1))); | |
bf9e3b38 | 349 | #endif |
12d30aa7 HS |
350 | flash_unmap(info, sect, offset, addr); |
351 | ||
bf9e3b38 | 352 | return retval; |
5653fc33 WD |
353 | } |
354 | ||
be60a902 HS |
355 | /* |
356 | * Write a proper sized command to the correct address | |
81b20ccc | 357 | */ |
fa36ae79 SR |
358 | void flash_write_cmd (flash_info_t * info, flash_sect_t sect, |
359 | uint offset, u32 cmd) | |
81b20ccc | 360 | { |
7e5b9b47 | 361 | |
cdbaefb5 | 362 | void *addr; |
be60a902 | 363 | cfiword_t cword; |
81b20ccc | 364 | |
12d30aa7 | 365 | addr = flash_map (info, sect, offset); |
be60a902 HS |
366 | flash_make_cmd (info, cmd, &cword); |
367 | switch (info->portwidth) { | |
368 | case FLASH_CFI_8BIT: | |
cdbaefb5 | 369 | debug ("fwc addr %p cmd %x %x 8bit x %d bit\n", addr, cmd, |
622b9527 RH |
370 | cword.w8, info->chipwidth << CFI_FLASH_SHIFT_WIDTH); |
371 | flash_write8(cword.w8, addr); | |
be60a902 HS |
372 | break; |
373 | case FLASH_CFI_16BIT: | |
cdbaefb5 | 374 | debug ("fwc addr %p cmd %x %4.4x 16bit x %d bit\n", addr, |
622b9527 | 375 | cmd, cword.w16, |
be60a902 | 376 | info->chipwidth << CFI_FLASH_SHIFT_WIDTH); |
622b9527 | 377 | flash_write16(cword.w16, addr); |
be60a902 HS |
378 | break; |
379 | case FLASH_CFI_32BIT: | |
622b9527 RH |
380 | debug ("fwc addr %p cmd %x %8.8x 32bit x %d bit\n", addr, |
381 | cmd, cword.w32, | |
be60a902 | 382 | info->chipwidth << CFI_FLASH_SHIFT_WIDTH); |
622b9527 | 383 | flash_write32(cword.w32, addr); |
be60a902 HS |
384 | break; |
385 | case FLASH_CFI_64BIT: | |
386 | #ifdef DEBUG | |
387 | { | |
388 | char str[20]; | |
7e5b9b47 | 389 | |
622b9527 | 390 | print_longlong (str, cword.w64); |
be60a902 HS |
391 | |
392 | debug ("fwrite addr %p cmd %x %s 64 bit x %d bit\n", | |
cdbaefb5 | 393 | addr, cmd, str, |
be60a902 | 394 | info->chipwidth << CFI_FLASH_SHIFT_WIDTH); |
81b20ccc | 395 | } |
be60a902 | 396 | #endif |
622b9527 | 397 | flash_write64(cword.w64, addr); |
be60a902 | 398 | break; |
81b20ccc | 399 | } |
be60a902 HS |
400 | |
401 | /* Ensure all the instructions are fully finished */ | |
402 | sync(); | |
12d30aa7 HS |
403 | |
404 | flash_unmap(info, sect, offset, addr); | |
81b20ccc | 405 | } |
be60a902 HS |
406 | |
407 | static void flash_unlock_seq (flash_info_t * info, flash_sect_t sect) | |
81b20ccc | 408 | { |
be60a902 HS |
409 | flash_write_cmd (info, sect, info->addr_unlock1, AMD_CMD_UNLOCK_START); |
410 | flash_write_cmd (info, sect, info->addr_unlock2, AMD_CMD_UNLOCK_ACK); | |
81b20ccc | 411 | } |
81b20ccc | 412 | |
5653fc33 WD |
413 | /*----------------------------------------------------------------------- |
414 | */ | |
be60a902 HS |
415 | static int flash_isequal (flash_info_t * info, flash_sect_t sect, |
416 | uint offset, uchar cmd) | |
5653fc33 | 417 | { |
cdbaefb5 | 418 | void *addr; |
be60a902 HS |
419 | cfiword_t cword; |
420 | int retval; | |
5653fc33 | 421 | |
12d30aa7 | 422 | addr = flash_map (info, sect, offset); |
be60a902 | 423 | flash_make_cmd (info, cmd, &cword); |
2662b40c | 424 | |
cdbaefb5 | 425 | debug ("is= cmd %x(%c) addr %p ", cmd, cmd, addr); |
be60a902 HS |
426 | switch (info->portwidth) { |
427 | case FLASH_CFI_8BIT: | |
622b9527 RH |
428 | debug ("is= %x %x\n", flash_read8(addr), cword.w8); |
429 | retval = (flash_read8(addr) == cword.w8); | |
be60a902 HS |
430 | break; |
431 | case FLASH_CFI_16BIT: | |
622b9527 RH |
432 | debug ("is= %4.4x %4.4x\n", flash_read16(addr), cword.w16); |
433 | retval = (flash_read16(addr) == cword.w16); | |
be60a902 HS |
434 | break; |
435 | case FLASH_CFI_32BIT: | |
622b9527 RH |
436 | debug ("is= %8.8x %8.8x\n", flash_read32(addr), cword.w32); |
437 | retval = (flash_read32(addr) == cword.w32); | |
be60a902 HS |
438 | break; |
439 | case FLASH_CFI_64BIT: | |
440 | #ifdef DEBUG | |
441 | { | |
442 | char str1[20]; | |
443 | char str2[20]; | |
81b20ccc | 444 | |
cdbaefb5 | 445 | print_longlong (str1, flash_read64(addr)); |
622b9527 | 446 | print_longlong (str2, cword.w64); |
be60a902 | 447 | debug ("is= %s %s\n", str1, str2); |
5653fc33 | 448 | } |
be60a902 | 449 | #endif |
622b9527 | 450 | retval = (flash_read64(addr) == cword.w64); |
be60a902 HS |
451 | break; |
452 | default: | |
453 | retval = 0; | |
454 | break; | |
455 | } | |
12d30aa7 HS |
456 | flash_unmap(info, sect, offset, addr); |
457 | ||
be60a902 HS |
458 | return retval; |
459 | } | |
79b4cda0 | 460 | |
be60a902 HS |
461 | /*----------------------------------------------------------------------- |
462 | */ | |
463 | static int flash_isset (flash_info_t * info, flash_sect_t sect, | |
464 | uint offset, uchar cmd) | |
465 | { | |
cdbaefb5 | 466 | void *addr; |
be60a902 HS |
467 | cfiword_t cword; |
468 | int retval; | |
2662b40c | 469 | |
12d30aa7 | 470 | addr = flash_map (info, sect, offset); |
be60a902 HS |
471 | flash_make_cmd (info, cmd, &cword); |
472 | switch (info->portwidth) { | |
473 | case FLASH_CFI_8BIT: | |
622b9527 | 474 | retval = ((flash_read8(addr) & cword.w8) == cword.w8); |
be60a902 HS |
475 | break; |
476 | case FLASH_CFI_16BIT: | |
622b9527 | 477 | retval = ((flash_read16(addr) & cword.w16) == cword.w16); |
be60a902 HS |
478 | break; |
479 | case FLASH_CFI_32BIT: | |
622b9527 | 480 | retval = ((flash_read32(addr) & cword.w32) == cword.w32); |
be60a902 HS |
481 | break; |
482 | case FLASH_CFI_64BIT: | |
622b9527 | 483 | retval = ((flash_read64(addr) & cword.w64) == cword.w64); |
be60a902 HS |
484 | break; |
485 | default: | |
486 | retval = 0; | |
487 | break; | |
488 | } | |
12d30aa7 HS |
489 | flash_unmap(info, sect, offset, addr); |
490 | ||
be60a902 HS |
491 | return retval; |
492 | } | |
2662b40c | 493 | |
be60a902 HS |
494 | /*----------------------------------------------------------------------- |
495 | */ | |
496 | static int flash_toggle (flash_info_t * info, flash_sect_t sect, | |
497 | uint offset, uchar cmd) | |
498 | { | |
cdbaefb5 | 499 | void *addr; |
be60a902 HS |
500 | cfiword_t cword; |
501 | int retval; | |
656658dd | 502 | |
12d30aa7 | 503 | addr = flash_map (info, sect, offset); |
be60a902 HS |
504 | flash_make_cmd (info, cmd, &cword); |
505 | switch (info->portwidth) { | |
506 | case FLASH_CFI_8BIT: | |
fb8c061e | 507 | retval = flash_read8(addr) != flash_read8(addr); |
be60a902 HS |
508 | break; |
509 | case FLASH_CFI_16BIT: | |
fb8c061e | 510 | retval = flash_read16(addr) != flash_read16(addr); |
be60a902 HS |
511 | break; |
512 | case FLASH_CFI_32BIT: | |
fb8c061e | 513 | retval = flash_read32(addr) != flash_read32(addr); |
be60a902 HS |
514 | break; |
515 | case FLASH_CFI_64BIT: | |
9abda6ba WD |
516 | retval = ( (flash_read32( addr ) != flash_read32( addr )) || |
517 | (flash_read32(addr+4) != flash_read32(addr+4)) ); | |
be60a902 HS |
518 | break; |
519 | default: | |
520 | retval = 0; | |
521 | break; | |
522 | } | |
12d30aa7 HS |
523 | flash_unmap(info, sect, offset, addr); |
524 | ||
be60a902 | 525 | return retval; |
5653fc33 WD |
526 | } |
527 | ||
be60a902 HS |
528 | /* |
529 | * flash_is_busy - check to see if the flash is busy | |
530 | * | |
531 | * This routine checks the status of the chip and returns true if the | |
532 | * chip is busy. | |
7680c140 | 533 | */ |
be60a902 | 534 | static int flash_is_busy (flash_info_t * info, flash_sect_t sect) |
7680c140 | 535 | { |
be60a902 | 536 | int retval; |
7680c140 | 537 | |
be60a902 | 538 | switch (info->vendor) { |
9c048b52 | 539 | case CFI_CMDSET_INTEL_PROG_REGIONS: |
be60a902 HS |
540 | case CFI_CMDSET_INTEL_STANDARD: |
541 | case CFI_CMDSET_INTEL_EXTENDED: | |
542 | retval = !flash_isset (info, sect, 0, FLASH_STATUS_DONE); | |
543 | break; | |
544 | case CFI_CMDSET_AMD_STANDARD: | |
545 | case CFI_CMDSET_AMD_EXTENDED: | |
546 | #ifdef CONFIG_FLASH_CFI_LEGACY | |
547 | case CFI_CMDSET_AMD_LEGACY: | |
548 | #endif | |
549 | retval = flash_toggle (info, sect, 0, AMD_STATUS_TOGGLE); | |
550 | break; | |
551 | default: | |
552 | retval = 0; | |
7680c140 | 553 | } |
be60a902 HS |
554 | debug ("flash_is_busy: %d\n", retval); |
555 | return retval; | |
7680c140 WD |
556 | } |
557 | ||
5653fc33 | 558 | /*----------------------------------------------------------------------- |
be60a902 HS |
559 | * wait for XSR.7 to be set. Time out with an error if it does not. |
560 | * This routine does not set the flash to read-array mode. | |
5653fc33 | 561 | */ |
be60a902 HS |
562 | static int flash_status_check (flash_info_t * info, flash_sect_t sector, |
563 | ulong tout, char *prompt) | |
5653fc33 | 564 | { |
be60a902 | 565 | ulong start; |
5653fc33 | 566 | |
6d0f6bcf | 567 | #if CONFIG_SYS_HZ != 1000 |
c40c94a3 RA |
568 | if ((ulong)CONFIG_SYS_HZ > 100000) |
569 | tout *= (ulong)CONFIG_SYS_HZ / 1000; /* for a big HZ, avoid overflow */ | |
570 | else | |
571 | tout = DIV_ROUND_UP(tout * (ulong)CONFIG_SYS_HZ, 1000); | |
be60a902 | 572 | #endif |
5653fc33 | 573 | |
be60a902 | 574 | /* Wait for command completion */ |
e110c4fe | 575 | #ifdef CONFIG_SYS_LOW_RES_TIMER |
22d6c8fa | 576 | reset_timer(); |
e110c4fe | 577 | #endif |
be60a902 | 578 | start = get_timer (0); |
a9f5faba | 579 | WATCHDOG_RESET(); |
be60a902 HS |
580 | while (flash_is_busy (info, sector)) { |
581 | if (get_timer (start) > tout) { | |
582 | printf ("Flash %s timeout at address %lx data %lx\n", | |
583 | prompt, info->start[sector], | |
584 | flash_read_long (info, sector, 0)); | |
585 | flash_write_cmd (info, sector, 0, info->cmd_reset); | |
e303be2d | 586 | udelay(1); |
be60a902 | 587 | return ERR_TIMOUT; |
5653fc33 | 588 | } |
be60a902 | 589 | udelay (1); /* also triggers watchdog */ |
5653fc33 | 590 | } |
be60a902 HS |
591 | return ERR_OK; |
592 | } | |
5653fc33 | 593 | |
be60a902 HS |
594 | /*----------------------------------------------------------------------- |
595 | * Wait for XSR.7 to be set, if it times out print an error, otherwise | |
596 | * do a full status check. | |
597 | * | |
598 | * This routine sets the flash to read-array mode. | |
599 | */ | |
600 | static int flash_full_status_check (flash_info_t * info, flash_sect_t sector, | |
601 | ulong tout, char *prompt) | |
602 | { | |
603 | int retcode; | |
5653fc33 | 604 | |
be60a902 HS |
605 | retcode = flash_status_check (info, sector, tout, prompt); |
606 | switch (info->vendor) { | |
9c048b52 | 607 | case CFI_CMDSET_INTEL_PROG_REGIONS: |
be60a902 HS |
608 | case CFI_CMDSET_INTEL_EXTENDED: |
609 | case CFI_CMDSET_INTEL_STANDARD: | |
91693055 | 610 | if ((retcode == ERR_OK) |
be60a902 HS |
611 | && !flash_isequal (info, sector, 0, FLASH_STATUS_DONE)) { |
612 | retcode = ERR_INVAL; | |
613 | printf ("Flash %s error at address %lx\n", prompt, | |
614 | info->start[sector]); | |
615 | if (flash_isset (info, sector, 0, FLASH_STATUS_ECLBS | | |
616 | FLASH_STATUS_PSLBS)) { | |
617 | puts ("Command Sequence Error.\n"); | |
618 | } else if (flash_isset (info, sector, 0, | |
619 | FLASH_STATUS_ECLBS)) { | |
620 | puts ("Block Erase Error.\n"); | |
621 | retcode = ERR_NOT_ERASED; | |
622 | } else if (flash_isset (info, sector, 0, | |
623 | FLASH_STATUS_PSLBS)) { | |
624 | puts ("Locking Error\n"); | |
5653fc33 | 625 | } |
be60a902 HS |
626 | if (flash_isset (info, sector, 0, FLASH_STATUS_DPS)) { |
627 | puts ("Block locked.\n"); | |
628 | retcode = ERR_PROTECTED; | |
629 | } | |
630 | if (flash_isset (info, sector, 0, FLASH_STATUS_VPENS)) | |
631 | puts ("Vpp Low Error.\n"); | |
5653fc33 | 632 | } |
be60a902 | 633 | flash_write_cmd (info, sector, 0, info->cmd_reset); |
a90b9575 | 634 | udelay(1); |
be60a902 HS |
635 | break; |
636 | default: | |
637 | break; | |
5653fc33 | 638 | } |
be60a902 | 639 | return retcode; |
5653fc33 WD |
640 | } |
641 | ||
e5720823 TC |
642 | static int use_flash_status_poll(flash_info_t *info) |
643 | { | |
644 | #ifdef CONFIG_SYS_CFI_FLASH_STATUS_POLL | |
645 | if (info->vendor == CFI_CMDSET_AMD_EXTENDED || | |
646 | info->vendor == CFI_CMDSET_AMD_STANDARD) | |
647 | return 1; | |
648 | #endif | |
649 | return 0; | |
650 | } | |
651 | ||
652 | static int flash_status_poll(flash_info_t *info, void *src, void *dst, | |
653 | ulong tout, char *prompt) | |
654 | { | |
655 | #ifdef CONFIG_SYS_CFI_FLASH_STATUS_POLL | |
656 | ulong start; | |
657 | int ready; | |
658 | ||
659 | #if CONFIG_SYS_HZ != 1000 | |
660 | if ((ulong)CONFIG_SYS_HZ > 100000) | |
661 | tout *= (ulong)CONFIG_SYS_HZ / 1000; /* for a big HZ, avoid overflow */ | |
662 | else | |
663 | tout = DIV_ROUND_UP(tout * (ulong)CONFIG_SYS_HZ, 1000); | |
664 | #endif | |
665 | ||
666 | /* Wait for command completion */ | |
e110c4fe | 667 | #ifdef CONFIG_SYS_LOW_RES_TIMER |
22d6c8fa | 668 | reset_timer(); |
e110c4fe | 669 | #endif |
e5720823 | 670 | start = get_timer(0); |
a9f5faba | 671 | WATCHDOG_RESET(); |
e5720823 TC |
672 | while (1) { |
673 | switch (info->portwidth) { | |
674 | case FLASH_CFI_8BIT: | |
675 | ready = flash_read8(dst) == flash_read8(src); | |
676 | break; | |
677 | case FLASH_CFI_16BIT: | |
678 | ready = flash_read16(dst) == flash_read16(src); | |
679 | break; | |
680 | case FLASH_CFI_32BIT: | |
681 | ready = flash_read32(dst) == flash_read32(src); | |
682 | break; | |
683 | case FLASH_CFI_64BIT: | |
684 | ready = flash_read64(dst) == flash_read64(src); | |
685 | break; | |
686 | default: | |
687 | ready = 0; | |
688 | break; | |
689 | } | |
690 | if (ready) | |
691 | break; | |
692 | if (get_timer(start) > tout) { | |
693 | printf("Flash %s timeout at address %lx data %lx\n", | |
694 | prompt, (ulong)dst, (ulong)flash_read8(dst)); | |
695 | return ERR_TIMOUT; | |
696 | } | |
697 | udelay(1); /* also triggers watchdog */ | |
698 | } | |
699 | #endif /* CONFIG_SYS_CFI_FLASH_STATUS_POLL */ | |
700 | return ERR_OK; | |
701 | } | |
702 | ||
5653fc33 WD |
703 | /*----------------------------------------------------------------------- |
704 | */ | |
be60a902 | 705 | static void flash_add_byte (flash_info_t * info, cfiword_t * cword, uchar c) |
5653fc33 | 706 | { |
6d0f6bcf | 707 | #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA) |
be60a902 HS |
708 | unsigned short w; |
709 | unsigned int l; | |
710 | unsigned long long ll; | |
711 | #endif | |
5653fc33 | 712 | |
be60a902 HS |
713 | switch (info->portwidth) { |
714 | case FLASH_CFI_8BIT: | |
622b9527 | 715 | cword->w8 = c; |
be60a902 HS |
716 | break; |
717 | case FLASH_CFI_16BIT: | |
6d0f6bcf | 718 | #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA) |
be60a902 HS |
719 | w = c; |
720 | w <<= 8; | |
622b9527 | 721 | cword->w16 = (cword->w16 >> 8) | w; |
be60a902 | 722 | #else |
622b9527 | 723 | cword->w16 = (cword->w16 << 8) | c; |
81b20ccc | 724 | #endif |
be60a902 HS |
725 | break; |
726 | case FLASH_CFI_32BIT: | |
6d0f6bcf | 727 | #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA) |
be60a902 HS |
728 | l = c; |
729 | l <<= 24; | |
622b9527 | 730 | cword->w32 = (cword->w32 >> 8) | l; |
be60a902 | 731 | #else |
622b9527 | 732 | cword->w32 = (cword->w32 << 8) | c; |
be60a902 HS |
733 | #endif |
734 | break; | |
735 | case FLASH_CFI_64BIT: | |
6d0f6bcf | 736 | #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA) |
be60a902 HS |
737 | ll = c; |
738 | ll <<= 56; | |
622b9527 | 739 | cword->w64 = (cword->w64 >> 8) | ll; |
be60a902 | 740 | #else |
622b9527 | 741 | cword->w64 = (cword->w64 << 8) | c; |
be60a902 HS |
742 | #endif |
743 | break; | |
260421a2 | 744 | } |
be60a902 | 745 | } |
5653fc33 | 746 | |
0f8e851e JG |
747 | /* |
748 | * Loop through the sector table starting from the previously found sector. | |
749 | * Searches forwards or backwards, dependent on the passed address. | |
be60a902 HS |
750 | */ |
751 | static flash_sect_t find_sector (flash_info_t * info, ulong addr) | |
752 | { | |
11dc4010 | 753 | static flash_sect_t saved_sector; /* previously found sector */ |
e303be2d | 754 | static flash_info_t *saved_info; /* previously used flash bank */ |
0f8e851e JG |
755 | flash_sect_t sector = saved_sector; |
756 | ||
e303be2d SR |
757 | if ((info != saved_info) || (sector >= info->sector_count)) |
758 | sector = 0; | |
759 | ||
0f8e851e JG |
760 | while ((info->start[sector] < addr) |
761 | && (sector < info->sector_count - 1)) | |
762 | sector++; | |
763 | while ((info->start[sector] > addr) && (sector > 0)) | |
764 | /* | |
765 | * also decrements the sector in case of an overshot | |
766 | * in the first loop | |
767 | */ | |
768 | sector--; | |
769 | ||
770 | saved_sector = sector; | |
e303be2d | 771 | saved_info = info; |
be60a902 | 772 | return sector; |
5653fc33 WD |
773 | } |
774 | ||
775 | /*----------------------------------------------------------------------- | |
5653fc33 | 776 | */ |
be60a902 HS |
777 | static int flash_write_cfiword (flash_info_t * info, ulong dest, |
778 | cfiword_t cword) | |
5653fc33 | 779 | { |
09ce9921 | 780 | void *dstaddr = (void *)dest; |
be60a902 | 781 | int flag; |
a7292871 JG |
782 | flash_sect_t sect = 0; |
783 | char sect_found = 0; | |
5653fc33 | 784 | |
be60a902 HS |
785 | /* Check if Flash is (sufficiently) erased */ |
786 | switch (info->portwidth) { | |
787 | case FLASH_CFI_8BIT: | |
622b9527 | 788 | flag = ((flash_read8(dstaddr) & cword.w8) == cword.w8); |
be60a902 HS |
789 | break; |
790 | case FLASH_CFI_16BIT: | |
622b9527 | 791 | flag = ((flash_read16(dstaddr) & cword.w16) == cword.w16); |
be60a902 HS |
792 | break; |
793 | case FLASH_CFI_32BIT: | |
622b9527 | 794 | flag = ((flash_read32(dstaddr) & cword.w32) == cword.w32); |
be60a902 HS |
795 | break; |
796 | case FLASH_CFI_64BIT: | |
622b9527 | 797 | flag = ((flash_read64(dstaddr) & cword.w64) == cword.w64); |
be60a902 HS |
798 | break; |
799 | default: | |
12d30aa7 HS |
800 | flag = 0; |
801 | break; | |
5653fc33 | 802 | } |
09ce9921 | 803 | if (!flag) |
0dc80e27 | 804 | return ERR_NOT_ERASED; |
5653fc33 | 805 | |
be60a902 HS |
806 | /* Disable interrupts which might cause a timeout here */ |
807 | flag = disable_interrupts (); | |
79b4cda0 | 808 | |
be60a902 | 809 | switch (info->vendor) { |
9c048b52 | 810 | case CFI_CMDSET_INTEL_PROG_REGIONS: |
be60a902 HS |
811 | case CFI_CMDSET_INTEL_EXTENDED: |
812 | case CFI_CMDSET_INTEL_STANDARD: | |
813 | flash_write_cmd (info, 0, 0, FLASH_CMD_CLEAR_STATUS); | |
814 | flash_write_cmd (info, 0, 0, FLASH_CMD_WRITE); | |
815 | break; | |
816 | case CFI_CMDSET_AMD_EXTENDED: | |
817 | case CFI_CMDSET_AMD_STANDARD: | |
0d01f66d ES |
818 | sect = find_sector(info, dest); |
819 | flash_unlock_seq (info, sect); | |
820 | flash_write_cmd (info, sect, info->addr_unlock1, AMD_CMD_WRITE); | |
a7292871 | 821 | sect_found = 1; |
be60a902 | 822 | break; |
b4db4a76 PYC |
823 | #ifdef CONFIG_FLASH_CFI_LEGACY |
824 | case CFI_CMDSET_AMD_LEGACY: | |
825 | sect = find_sector(info, dest); | |
826 | flash_unlock_seq (info, 0); | |
827 | flash_write_cmd (info, 0, info->addr_unlock1, AMD_CMD_WRITE); | |
828 | sect_found = 1; | |
829 | break; | |
830 | #endif | |
5653fc33 WD |
831 | } |
832 | ||
be60a902 HS |
833 | switch (info->portwidth) { |
834 | case FLASH_CFI_8BIT: | |
622b9527 | 835 | flash_write8(cword.w8, dstaddr); |
be60a902 HS |
836 | break; |
837 | case FLASH_CFI_16BIT: | |
622b9527 | 838 | flash_write16(cword.w16, dstaddr); |
be60a902 HS |
839 | break; |
840 | case FLASH_CFI_32BIT: | |
622b9527 | 841 | flash_write32(cword.w32, dstaddr); |
be60a902 HS |
842 | break; |
843 | case FLASH_CFI_64BIT: | |
622b9527 | 844 | flash_write64(cword.w64, dstaddr); |
be60a902 | 845 | break; |
5653fc33 WD |
846 | } |
847 | ||
be60a902 HS |
848 | /* re-enable interrupts if necessary */ |
849 | if (flag) | |
850 | enable_interrupts (); | |
5653fc33 | 851 | |
a7292871 JG |
852 | if (!sect_found) |
853 | sect = find_sector (info, dest); | |
854 | ||
e5720823 TC |
855 | if (use_flash_status_poll(info)) |
856 | return flash_status_poll(info, &cword, dstaddr, | |
857 | info->write_tout, "write"); | |
858 | else | |
859 | return flash_full_status_check(info, sect, | |
860 | info->write_tout, "write"); | |
5653fc33 WD |
861 | } |
862 | ||
6d0f6bcf | 863 | #ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE |
5653fc33 | 864 | |
be60a902 HS |
865 | static int flash_write_cfibuffer (flash_info_t * info, ulong dest, uchar * cp, |
866 | int len) | |
5653fc33 | 867 | { |
be60a902 HS |
868 | flash_sect_t sector; |
869 | int cnt; | |
870 | int retcode; | |
cdbaefb5 | 871 | void *src = cp; |
ec21d5cf | 872 | void *dst = (void *)dest; |
0dc80e27 | 873 | void *dst2 = dst; |
85c344e5 | 874 | int flag = 1; |
96ef831f GL |
875 | uint offset = 0; |
876 | unsigned int shift; | |
9c048b52 | 877 | uchar write_cmd; |
cdbaefb5 | 878 | |
0dc80e27 SR |
879 | switch (info->portwidth) { |
880 | case FLASH_CFI_8BIT: | |
96ef831f | 881 | shift = 0; |
0dc80e27 SR |
882 | break; |
883 | case FLASH_CFI_16BIT: | |
96ef831f | 884 | shift = 1; |
0dc80e27 SR |
885 | break; |
886 | case FLASH_CFI_32BIT: | |
96ef831f | 887 | shift = 2; |
0dc80e27 SR |
888 | break; |
889 | case FLASH_CFI_64BIT: | |
96ef831f | 890 | shift = 3; |
0dc80e27 SR |
891 | break; |
892 | default: | |
893 | retcode = ERR_INVAL; | |
894 | goto out_unmap; | |
895 | } | |
896 | ||
96ef831f GL |
897 | cnt = len >> shift; |
898 | ||
85c344e5 | 899 | while ((cnt-- > 0) && (flag == 1)) { |
0dc80e27 SR |
900 | switch (info->portwidth) { |
901 | case FLASH_CFI_8BIT: | |
902 | flag = ((flash_read8(dst2) & flash_read8(src)) == | |
903 | flash_read8(src)); | |
904 | src += 1, dst2 += 1; | |
905 | break; | |
906 | case FLASH_CFI_16BIT: | |
907 | flag = ((flash_read16(dst2) & flash_read16(src)) == | |
908 | flash_read16(src)); | |
909 | src += 2, dst2 += 2; | |
910 | break; | |
911 | case FLASH_CFI_32BIT: | |
912 | flag = ((flash_read32(dst2) & flash_read32(src)) == | |
913 | flash_read32(src)); | |
914 | src += 4, dst2 += 4; | |
915 | break; | |
916 | case FLASH_CFI_64BIT: | |
917 | flag = ((flash_read64(dst2) & flash_read64(src)) == | |
918 | flash_read64(src)); | |
919 | src += 8, dst2 += 8; | |
920 | break; | |
921 | } | |
922 | } | |
923 | if (!flag) { | |
924 | retcode = ERR_NOT_ERASED; | |
925 | goto out_unmap; | |
926 | } | |
927 | ||
928 | src = cp; | |
cdbaefb5 | 929 | sector = find_sector (info, dest); |
bf9e3b38 WD |
930 | |
931 | switch (info->vendor) { | |
9c048b52 | 932 | case CFI_CMDSET_INTEL_PROG_REGIONS: |
5653fc33 WD |
933 | case CFI_CMDSET_INTEL_STANDARD: |
934 | case CFI_CMDSET_INTEL_EXTENDED: | |
9c048b52 VL |
935 | write_cmd = (info->vendor == CFI_CMDSET_INTEL_PROG_REGIONS) ? |
936 | FLASH_CMD_WRITE_BUFFER_PROG : FLASH_CMD_WRITE_TO_BUFFER; | |
be60a902 | 937 | flash_write_cmd (info, sector, 0, FLASH_CMD_CLEAR_STATUS); |
9c048b52 VL |
938 | flash_write_cmd (info, sector, 0, FLASH_CMD_READ_STATUS); |
939 | flash_write_cmd (info, sector, 0, write_cmd); | |
be60a902 HS |
940 | retcode = flash_status_check (info, sector, |
941 | info->buffer_write_tout, | |
942 | "write to buffer"); | |
943 | if (retcode == ERR_OK) { | |
944 | /* reduce the number of loops by the width of | |
945 | * the port */ | |
96ef831f | 946 | cnt = len >> shift; |
93c56f21 | 947 | flash_write_cmd (info, sector, 0, cnt - 1); |
be60a902 HS |
948 | while (cnt-- > 0) { |
949 | switch (info->portwidth) { | |
950 | case FLASH_CFI_8BIT: | |
cdbaefb5 HS |
951 | flash_write8(flash_read8(src), dst); |
952 | src += 1, dst += 1; | |
be60a902 HS |
953 | break; |
954 | case FLASH_CFI_16BIT: | |
cdbaefb5 HS |
955 | flash_write16(flash_read16(src), dst); |
956 | src += 2, dst += 2; | |
be60a902 HS |
957 | break; |
958 | case FLASH_CFI_32BIT: | |
cdbaefb5 HS |
959 | flash_write32(flash_read32(src), dst); |
960 | src += 4, dst += 4; | |
be60a902 HS |
961 | break; |
962 | case FLASH_CFI_64BIT: | |
cdbaefb5 HS |
963 | flash_write64(flash_read64(src), dst); |
964 | src += 8, dst += 8; | |
be60a902 HS |
965 | break; |
966 | default: | |
12d30aa7 HS |
967 | retcode = ERR_INVAL; |
968 | goto out_unmap; | |
be60a902 HS |
969 | } |
970 | } | |
971 | flash_write_cmd (info, sector, 0, | |
972 | FLASH_CMD_WRITE_BUFFER_CONFIRM); | |
973 | retcode = flash_full_status_check ( | |
974 | info, sector, info->buffer_write_tout, | |
975 | "buffer write"); | |
976 | } | |
12d30aa7 HS |
977 | |
978 | break; | |
be60a902 | 979 | |
5653fc33 WD |
980 | case CFI_CMDSET_AMD_STANDARD: |
981 | case CFI_CMDSET_AMD_EXTENDED: | |
be60a902 | 982 | flash_unlock_seq(info,0); |
96ef831f GL |
983 | |
984 | #ifdef CONFIG_FLASH_SPANSION_S29WS_N | |
985 | offset = ((unsigned long)dst - info->start[sector]) >> shift; | |
986 | #endif | |
987 | flash_write_cmd(info, sector, offset, AMD_CMD_WRITE_TO_BUFFER); | |
988 | cnt = len >> shift; | |
7dedefdf | 989 | flash_write_cmd(info, sector, offset, cnt - 1); |
be60a902 HS |
990 | |
991 | switch (info->portwidth) { | |
992 | case FLASH_CFI_8BIT: | |
cdbaefb5 HS |
993 | while (cnt-- > 0) { |
994 | flash_write8(flash_read8(src), dst); | |
995 | src += 1, dst += 1; | |
996 | } | |
be60a902 HS |
997 | break; |
998 | case FLASH_CFI_16BIT: | |
cdbaefb5 HS |
999 | while (cnt-- > 0) { |
1000 | flash_write16(flash_read16(src), dst); | |
1001 | src += 2, dst += 2; | |
1002 | } | |
be60a902 HS |
1003 | break; |
1004 | case FLASH_CFI_32BIT: | |
cdbaefb5 HS |
1005 | while (cnt-- > 0) { |
1006 | flash_write32(flash_read32(src), dst); | |
1007 | src += 4, dst += 4; | |
1008 | } | |
be60a902 HS |
1009 | break; |
1010 | case FLASH_CFI_64BIT: | |
cdbaefb5 HS |
1011 | while (cnt-- > 0) { |
1012 | flash_write64(flash_read64(src), dst); | |
1013 | src += 8, dst += 8; | |
1014 | } | |
be60a902 HS |
1015 | break; |
1016 | default: | |
12d30aa7 HS |
1017 | retcode = ERR_INVAL; |
1018 | goto out_unmap; | |
be60a902 HS |
1019 | } |
1020 | ||
1021 | flash_write_cmd (info, sector, 0, AMD_CMD_WRITE_BUFFER_CONFIRM); | |
e5720823 TC |
1022 | if (use_flash_status_poll(info)) |
1023 | retcode = flash_status_poll(info, src - (1 << shift), | |
1024 | dst - (1 << shift), | |
1025 | info->buffer_write_tout, | |
1026 | "buffer write"); | |
1027 | else | |
1028 | retcode = flash_full_status_check(info, sector, | |
1029 | info->buffer_write_tout, | |
1030 | "buffer write"); | |
12d30aa7 | 1031 | break; |
be60a902 | 1032 | |
5653fc33 | 1033 | default: |
be60a902 | 1034 | debug ("Unknown Command Set\n"); |
12d30aa7 HS |
1035 | retcode = ERR_INVAL; |
1036 | break; | |
5653fc33 | 1037 | } |
12d30aa7 HS |
1038 | |
1039 | out_unmap: | |
12d30aa7 | 1040 | return retcode; |
5653fc33 | 1041 | } |
6d0f6bcf | 1042 | #endif /* CONFIG_SYS_FLASH_USE_BUFFER_WRITE */ |
be60a902 | 1043 | |
bf9e3b38 | 1044 | |
5653fc33 | 1045 | /*----------------------------------------------------------------------- |
5653fc33 | 1046 | */ |
be60a902 | 1047 | int flash_erase (flash_info_t * info, int s_first, int s_last) |
5653fc33 | 1048 | { |
be60a902 HS |
1049 | int rcode = 0; |
1050 | int prot; | |
1051 | flash_sect_t sect; | |
e5720823 | 1052 | int st; |
5653fc33 | 1053 | |
be60a902 HS |
1054 | if (info->flash_id != FLASH_MAN_CFI) { |
1055 | puts ("Can't erase unknown flash type - aborted\n"); | |
1056 | return 1; | |
1057 | } | |
1058 | if ((s_first < 0) || (s_first > s_last)) { | |
1059 | puts ("- no sectors to erase\n"); | |
1060 | return 1; | |
1061 | } | |
2662b40c | 1062 | |
be60a902 HS |
1063 | prot = 0; |
1064 | for (sect = s_first; sect <= s_last; ++sect) { | |
1065 | if (info->protect[sect]) { | |
1066 | prot++; | |
5653fc33 WD |
1067 | } |
1068 | } | |
be60a902 HS |
1069 | if (prot) { |
1070 | printf ("- Warning: %d protected sectors will not be erased!\n", | |
1071 | prot); | |
6ea808ef | 1072 | } else if (flash_verbose) { |
be60a902 HS |
1073 | putc ('\n'); |
1074 | } | |
bf9e3b38 | 1075 | |
bf9e3b38 | 1076 | |
be60a902 | 1077 | for (sect = s_first; sect <= s_last; sect++) { |
de15a06a JH |
1078 | if (ctrlc()) { |
1079 | printf("\n"); | |
1080 | return 1; | |
1081 | } | |
1082 | ||
be60a902 | 1083 | if (info->protect[sect] == 0) { /* not protected */ |
6822a647 JH |
1084 | #ifdef CONFIG_SYS_FLASH_CHECK_BLANK_BEFORE_ERASE |
1085 | int k; | |
1086 | int size; | |
1087 | int erased; | |
1088 | u32 *flash; | |
1089 | ||
1090 | /* | |
1091 | * Check if whole sector is erased | |
1092 | */ | |
1093 | size = flash_sector_size(info, sect); | |
1094 | erased = 1; | |
1095 | flash = (u32 *)info->start[sect]; | |
1096 | /* divide by 4 for longword access */ | |
1097 | size = size >> 2; | |
1098 | for (k = 0; k < size; k++) { | |
1099 | if (flash_read32(flash++) != 0xffffffff) { | |
1100 | erased = 0; | |
1101 | break; | |
1102 | } | |
1103 | } | |
1104 | if (erased) { | |
1105 | if (flash_verbose) | |
1106 | putc(','); | |
1107 | continue; | |
1108 | } | |
1109 | #endif | |
be60a902 | 1110 | switch (info->vendor) { |
9c048b52 | 1111 | case CFI_CMDSET_INTEL_PROG_REGIONS: |
be60a902 HS |
1112 | case CFI_CMDSET_INTEL_STANDARD: |
1113 | case CFI_CMDSET_INTEL_EXTENDED: | |
1114 | flash_write_cmd (info, sect, 0, | |
1115 | FLASH_CMD_CLEAR_STATUS); | |
1116 | flash_write_cmd (info, sect, 0, | |
1117 | FLASH_CMD_BLOCK_ERASE); | |
1118 | flash_write_cmd (info, sect, 0, | |
1119 | FLASH_CMD_ERASE_CONFIRM); | |
1120 | break; | |
1121 | case CFI_CMDSET_AMD_STANDARD: | |
1122 | case CFI_CMDSET_AMD_EXTENDED: | |
1123 | flash_unlock_seq (info, sect); | |
1124 | flash_write_cmd (info, sect, | |
1125 | info->addr_unlock1, | |
1126 | AMD_CMD_ERASE_START); | |
1127 | flash_unlock_seq (info, sect); | |
1128 | flash_write_cmd (info, sect, 0, | |
07b2c5c0 | 1129 | info->cmd_erase_sector); |
be60a902 HS |
1130 | break; |
1131 | #ifdef CONFIG_FLASH_CFI_LEGACY | |
1132 | case CFI_CMDSET_AMD_LEGACY: | |
1133 | flash_unlock_seq (info, 0); | |
1134 | flash_write_cmd (info, 0, info->addr_unlock1, | |
1135 | AMD_CMD_ERASE_START); | |
1136 | flash_unlock_seq (info, 0); | |
1137 | flash_write_cmd (info, sect, 0, | |
1138 | AMD_CMD_ERASE_SECTOR); | |
1139 | break; | |
1140 | #endif | |
1141 | default: | |
1142 | debug ("Unkown flash vendor %d\n", | |
1143 | info->vendor); | |
1144 | break; | |
bf9e3b38 | 1145 | } |
be60a902 | 1146 | |
e5720823 | 1147 | if (use_flash_status_poll(info)) { |
11dc4010 | 1148 | cfiword_t cword; |
e5720823 | 1149 | void *dest; |
622b9527 | 1150 | cword.w64 = 0xffffffffffffffffULL; |
e5720823 TC |
1151 | dest = flash_map(info, sect, 0); |
1152 | st = flash_status_poll(info, &cword, dest, | |
1153 | info->erase_blk_tout, "erase"); | |
1154 | flash_unmap(info, sect, 0, dest); | |
1155 | } else | |
1156 | st = flash_full_status_check(info, sect, | |
1157 | info->erase_blk_tout, | |
1158 | "erase"); | |
1159 | if (st) | |
be60a902 | 1160 | rcode = 1; |
e5720823 | 1161 | else if (flash_verbose) |
be60a902 | 1162 | putc ('.'); |
5653fc33 | 1163 | } |
5653fc33 | 1164 | } |
6ea808ef PZ |
1165 | |
1166 | if (flash_verbose) | |
1167 | puts (" done\n"); | |
1168 | ||
be60a902 | 1169 | return rcode; |
5653fc33 | 1170 | } |
bf9e3b38 | 1171 | |
70084df7 SR |
1172 | #ifdef CONFIG_SYS_FLASH_EMPTY_INFO |
1173 | static int sector_erased(flash_info_t *info, int i) | |
1174 | { | |
1175 | int k; | |
1176 | int size; | |
4d2ca9d6 | 1177 | u32 *flash; |
70084df7 SR |
1178 | |
1179 | /* | |
1180 | * Check if whole sector is erased | |
1181 | */ | |
1182 | size = flash_sector_size(info, i); | |
4d2ca9d6 | 1183 | flash = (u32 *)info->start[i]; |
70084df7 SR |
1184 | /* divide by 4 for longword access */ |
1185 | size = size >> 2; | |
1186 | ||
1187 | for (k = 0; k < size; k++) { | |
4d2ca9d6 | 1188 | if (flash_read32(flash++) != 0xffffffff) |
70084df7 SR |
1189 | return 0; /* not erased */ |
1190 | } | |
1191 | ||
1192 | return 1; /* erased */ | |
1193 | } | |
1194 | #endif /* CONFIG_SYS_FLASH_EMPTY_INFO */ | |
1195 | ||
be60a902 | 1196 | void flash_print_info (flash_info_t * info) |
5653fc33 | 1197 | { |
be60a902 | 1198 | int i; |
4d13cbad | 1199 | |
be60a902 HS |
1200 | if (info->flash_id != FLASH_MAN_CFI) { |
1201 | puts ("missing or unknown FLASH type\n"); | |
1202 | return; | |
1203 | } | |
1204 | ||
eddf52b5 | 1205 | printf ("%s flash (%d x %d)", |
be60a902 HS |
1206 | info->name, |
1207 | (info->portwidth << 3), (info->chipwidth << 3)); | |
1208 | if (info->size < 1024*1024) | |
1209 | printf (" Size: %ld kB in %d Sectors\n", | |
1210 | info->size >> 10, info->sector_count); | |
1211 | else | |
1212 | printf (" Size: %ld MB in %d Sectors\n", | |
1213 | info->size >> 20, info->sector_count); | |
1214 | printf (" "); | |
1215 | switch (info->vendor) { | |
9c048b52 VL |
1216 | case CFI_CMDSET_INTEL_PROG_REGIONS: |
1217 | printf ("Intel Prog Regions"); | |
1218 | break; | |
be60a902 HS |
1219 | case CFI_CMDSET_INTEL_STANDARD: |
1220 | printf ("Intel Standard"); | |
1221 | break; | |
1222 | case CFI_CMDSET_INTEL_EXTENDED: | |
1223 | printf ("Intel Extended"); | |
1224 | break; | |
1225 | case CFI_CMDSET_AMD_STANDARD: | |
1226 | printf ("AMD Standard"); | |
1227 | break; | |
1228 | case CFI_CMDSET_AMD_EXTENDED: | |
1229 | printf ("AMD Extended"); | |
1230 | break; | |
1231 | #ifdef CONFIG_FLASH_CFI_LEGACY | |
1232 | case CFI_CMDSET_AMD_LEGACY: | |
1233 | printf ("AMD Legacy"); | |
1234 | break; | |
4d13cbad | 1235 | #endif |
be60a902 HS |
1236 | default: |
1237 | printf ("Unknown (%d)", info->vendor); | |
1238 | break; | |
1239 | } | |
d77c7ac4 PDM |
1240 | printf (" command set, Manufacturer ID: 0x%02X, Device ID: 0x", |
1241 | info->manufacturer_id); | |
1242 | printf (info->chipwidth == FLASH_CFI_16BIT ? "%04X" : "%02X", | |
1243 | info->device_id); | |
5b448adb HS |
1244 | if ((info->device_id & 0xff) == 0x7E) { |
1245 | printf(info->chipwidth == FLASH_CFI_16BIT ? "%04X" : "%02X", | |
1246 | info->device_id2); | |
be60a902 | 1247 | } |
d2af028d SR |
1248 | if ((info->vendor == CFI_CMDSET_AMD_STANDARD) && (info->legacy_unlock)) |
1249 | printf("\n Advanced Sector Protection (PPB) enabled"); | |
be60a902 HS |
1250 | printf ("\n Erase timeout: %ld ms, write timeout: %ld ms\n", |
1251 | info->erase_blk_tout, | |
1252 | info->write_tout); | |
1253 | if (info->buffer_size > 1) { | |
1254 | printf (" Buffer write timeout: %ld ms, " | |
1255 | "buffer size: %d bytes\n", | |
1256 | info->buffer_write_tout, | |
1257 | info->buffer_size); | |
5653fc33 | 1258 | } |
5653fc33 | 1259 | |
be60a902 HS |
1260 | puts ("\n Sector Start Addresses:"); |
1261 | for (i = 0; i < info->sector_count; ++i) { | |
2e97394a | 1262 | if (ctrlc()) |
70084df7 | 1263 | break; |
be60a902 | 1264 | if ((i % 5) == 0) |
70084df7 | 1265 | putc('\n'); |
6d0f6bcf | 1266 | #ifdef CONFIG_SYS_FLASH_EMPTY_INFO |
be60a902 HS |
1267 | /* print empty and read-only info */ |
1268 | printf (" %08lX %c %s ", | |
1269 | info->start[i], | |
70084df7 | 1270 | sector_erased(info, i) ? 'E' : ' ', |
be60a902 | 1271 | info->protect[i] ? "RO" : " "); |
6d0f6bcf | 1272 | #else /* ! CONFIG_SYS_FLASH_EMPTY_INFO */ |
be60a902 HS |
1273 | printf (" %08lX %s ", |
1274 | info->start[i], | |
1275 | info->protect[i] ? "RO" : " "); | |
bf9e3b38 | 1276 | #endif |
be60a902 HS |
1277 | } |
1278 | putc ('\n'); | |
1279 | return; | |
5653fc33 WD |
1280 | } |
1281 | ||
9a042e9c JVB |
1282 | /*----------------------------------------------------------------------- |
1283 | * This is used in a few places in write_buf() to show programming | |
1284 | * progress. Making it a function is nasty because it needs to do side | |
1285 | * effect updates to digit and dots. Repeated code is nasty too, so | |
1286 | * we define it once here. | |
1287 | */ | |
f0105727 SR |
1288 | #ifdef CONFIG_FLASH_SHOW_PROGRESS |
1289 | #define FLASH_SHOW_PROGRESS(scale, dots, digit, dots_sub) \ | |
6ea808ef PZ |
1290 | if (flash_verbose) { \ |
1291 | dots -= dots_sub; \ | |
1292 | if ((scale > 0) && (dots <= 0)) { \ | |
1293 | if ((digit % 5) == 0) \ | |
1294 | printf ("%d", digit / 5); \ | |
1295 | else \ | |
1296 | putc ('.'); \ | |
1297 | digit--; \ | |
1298 | dots += scale; \ | |
1299 | } \ | |
9a042e9c | 1300 | } |
f0105727 SR |
1301 | #else |
1302 | #define FLASH_SHOW_PROGRESS(scale, dots, digit, dots_sub) | |
1303 | #endif | |
9a042e9c | 1304 | |
be60a902 HS |
1305 | /*----------------------------------------------------------------------- |
1306 | * Copy memory to flash, returns: | |
1307 | * 0 - OK | |
1308 | * 1 - write timeout | |
1309 | * 2 - Flash not erased | |
5653fc33 | 1310 | */ |
be60a902 | 1311 | int write_buff (flash_info_t * info, uchar * src, ulong addr, ulong cnt) |
5653fc33 | 1312 | { |
be60a902 | 1313 | ulong wp; |
12d30aa7 | 1314 | uchar *p; |
be60a902 | 1315 | int aln; |
5653fc33 | 1316 | cfiword_t cword; |
be60a902 | 1317 | int i, rc; |
6d0f6bcf | 1318 | #ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE |
be60a902 | 1319 | int buffered_size; |
5653fc33 | 1320 | #endif |
9a042e9c JVB |
1321 | #ifdef CONFIG_FLASH_SHOW_PROGRESS |
1322 | int digit = CONFIG_FLASH_SHOW_PROGRESS; | |
1323 | int scale = 0; | |
1324 | int dots = 0; | |
1325 | ||
1326 | /* | |
1327 | * Suppress if there are fewer than CONFIG_FLASH_SHOW_PROGRESS writes. | |
1328 | */ | |
1329 | if (cnt >= CONFIG_FLASH_SHOW_PROGRESS) { | |
1330 | scale = (int)((cnt + CONFIG_FLASH_SHOW_PROGRESS - 1) / | |
1331 | CONFIG_FLASH_SHOW_PROGRESS); | |
1332 | } | |
1333 | #endif | |
1334 | ||
be60a902 HS |
1335 | /* get lower aligned address */ |
1336 | wp = (addr & ~(info->portwidth - 1)); | |
3a197b2f | 1337 | |
be60a902 HS |
1338 | /* handle unaligned start */ |
1339 | if ((aln = addr - wp) != 0) { | |
622b9527 | 1340 | cword.w32 = 0; |
09ce9921 | 1341 | p = (uchar *)wp; |
12d30aa7 HS |
1342 | for (i = 0; i < aln; ++i) |
1343 | flash_add_byte (info, &cword, flash_read8(p + i)); | |
5653fc33 | 1344 | |
be60a902 HS |
1345 | for (; (i < info->portwidth) && (cnt > 0); i++) { |
1346 | flash_add_byte (info, &cword, *src++); | |
1347 | cnt--; | |
be60a902 | 1348 | } |
12d30aa7 HS |
1349 | for (; (cnt == 0) && (i < info->portwidth); ++i) |
1350 | flash_add_byte (info, &cword, flash_read8(p + i)); | |
1351 | ||
1352 | rc = flash_write_cfiword (info, wp, cword); | |
12d30aa7 | 1353 | if (rc != 0) |
be60a902 | 1354 | return rc; |
12d30aa7 HS |
1355 | |
1356 | wp += i; | |
f0105727 | 1357 | FLASH_SHOW_PROGRESS(scale, dots, digit, i); |
be60a902 HS |
1358 | } |
1359 | ||
1360 | /* handle the aligned part */ | |
6d0f6bcf | 1361 | #ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE |
be60a902 HS |
1362 | buffered_size = (info->portwidth / info->chipwidth); |
1363 | buffered_size *= info->buffer_size; | |
1364 | while (cnt >= info->portwidth) { | |
1365 | /* prohibit buffer write when buffer_size is 1 */ | |
1366 | if (info->buffer_size == 1) { | |
622b9527 | 1367 | cword.w32 = 0; |
be60a902 HS |
1368 | for (i = 0; i < info->portwidth; i++) |
1369 | flash_add_byte (info, &cword, *src++); | |
1370 | if ((rc = flash_write_cfiword (info, wp, cword)) != 0) | |
1371 | return rc; | |
1372 | wp += info->portwidth; | |
1373 | cnt -= info->portwidth; | |
1374 | continue; | |
1375 | } | |
1376 | ||
1377 | /* write buffer until next buffered_size aligned boundary */ | |
1378 | i = buffered_size - (wp % buffered_size); | |
1379 | if (i > cnt) | |
1380 | i = cnt; | |
1381 | if ((rc = flash_write_cfibuffer (info, wp, src, i)) != ERR_OK) | |
1382 | return rc; | |
1383 | i -= i & (info->portwidth - 1); | |
1384 | wp += i; | |
1385 | src += i; | |
1386 | cnt -= i; | |
f0105727 | 1387 | FLASH_SHOW_PROGRESS(scale, dots, digit, i); |
de15a06a JH |
1388 | /* Only check every once in a while */ |
1389 | if ((cnt & 0xFFFF) < buffered_size && ctrlc()) | |
1390 | return ERR_ABORTED; | |
be60a902 HS |
1391 | } |
1392 | #else | |
1393 | while (cnt >= info->portwidth) { | |
622b9527 | 1394 | cword.w32 = 0; |
be60a902 HS |
1395 | for (i = 0; i < info->portwidth; i++) { |
1396 | flash_add_byte (info, &cword, *src++); | |
1397 | } | |
1398 | if ((rc = flash_write_cfiword (info, wp, cword)) != 0) | |
1399 | return rc; | |
1400 | wp += info->portwidth; | |
1401 | cnt -= info->portwidth; | |
f0105727 | 1402 | FLASH_SHOW_PROGRESS(scale, dots, digit, info->portwidth); |
de15a06a JH |
1403 | /* Only check every once in a while */ |
1404 | if ((cnt & 0xFFFF) < info->portwidth && ctrlc()) | |
1405 | return ERR_ABORTED; | |
be60a902 | 1406 | } |
6d0f6bcf | 1407 | #endif /* CONFIG_SYS_FLASH_USE_BUFFER_WRITE */ |
9a042e9c | 1408 | |
be60a902 HS |
1409 | if (cnt == 0) { |
1410 | return (0); | |
1411 | } | |
1412 | ||
1413 | /* | |
1414 | * handle unaligned tail bytes | |
1415 | */ | |
622b9527 | 1416 | cword.w32 = 0; |
09ce9921 | 1417 | p = (uchar *)wp; |
12d30aa7 | 1418 | for (i = 0; (i < info->portwidth) && (cnt > 0); ++i) { |
be60a902 HS |
1419 | flash_add_byte (info, &cword, *src++); |
1420 | --cnt; | |
1421 | } | |
12d30aa7 HS |
1422 | for (; i < info->portwidth; ++i) |
1423 | flash_add_byte (info, &cword, flash_read8(p + i)); | |
be60a902 HS |
1424 | |
1425 | return flash_write_cfiword (info, wp, cword); | |
5653fc33 | 1426 | } |
bf9e3b38 | 1427 | |
20043a4c SR |
1428 | static inline int manufact_match(flash_info_t *info, u32 manu) |
1429 | { | |
1430 | return info->manufacturer_id == ((manu & FLASH_VENDMASK) >> 16); | |
1431 | } | |
1432 | ||
5653fc33 WD |
1433 | /*----------------------------------------------------------------------- |
1434 | */ | |
6d0f6bcf | 1435 | #ifdef CONFIG_SYS_FLASH_PROTECTION |
be60a902 | 1436 | |
81316a90 HB |
1437 | static int cfi_protect_bugfix(flash_info_t *info, long sector, int prot) |
1438 | { | |
20043a4c | 1439 | if (manufact_match(info, INTEL_MANUFACT) |
11dc4010 | 1440 | && info->device_id == NUMONYX_256MBIT) { |
81316a90 HB |
1441 | /* |
1442 | * see errata called | |
1443 | * "Numonyx Axcell P33/P30 Specification Update" :) | |
1444 | */ | |
1445 | flash_write_cmd(info, sector, 0, FLASH_CMD_READ_ID); | |
1446 | if (!flash_isequal(info, sector, FLASH_OFFSET_PROTECT, | |
1447 | prot)) { | |
1448 | /* | |
1449 | * cmd must come before FLASH_CMD_PROTECT + 20us | |
1450 | * Disable interrupts which might cause a timeout here. | |
1451 | */ | |
1452 | int flag = disable_interrupts(); | |
1453 | unsigned short cmd; | |
1454 | ||
1455 | if (prot) | |
1456 | cmd = FLASH_CMD_PROTECT_SET; | |
1457 | else | |
1458 | cmd = FLASH_CMD_PROTECT_CLEAR; | |
1459 | flash_write_cmd(info, sector, 0, | |
1460 | FLASH_CMD_PROTECT); | |
1461 | flash_write_cmd(info, sector, 0, cmd); | |
1462 | /* re-enable interrupts if necessary */ | |
1463 | if (flag) | |
1464 | enable_interrupts(); | |
1465 | } | |
1466 | return 1; | |
1467 | } | |
1468 | return 0; | |
1469 | } | |
1470 | ||
be60a902 | 1471 | int flash_real_protect (flash_info_t * info, long sector, int prot) |
5653fc33 | 1472 | { |
be60a902 | 1473 | int retcode = 0; |
5653fc33 | 1474 | |
bc9019e1 RC |
1475 | switch (info->vendor) { |
1476 | case CFI_CMDSET_INTEL_PROG_REGIONS: | |
1477 | case CFI_CMDSET_INTEL_STANDARD: | |
9e8e63cc | 1478 | case CFI_CMDSET_INTEL_EXTENDED: |
81316a90 HB |
1479 | if (!cfi_protect_bugfix(info, sector, prot)) { |
1480 | flash_write_cmd(info, sector, 0, | |
1481 | FLASH_CMD_CLEAR_STATUS); | |
1482 | flash_write_cmd(info, sector, 0, | |
1483 | FLASH_CMD_PROTECT); | |
54652991 | 1484 | if (prot) |
81316a90 HB |
1485 | flash_write_cmd(info, sector, 0, |
1486 | FLASH_CMD_PROTECT_SET); | |
54652991 | 1487 | else |
81316a90 HB |
1488 | flash_write_cmd(info, sector, 0, |
1489 | FLASH_CMD_PROTECT_CLEAR); | |
1490 | ||
54652991 | 1491 | } |
bc9019e1 RC |
1492 | break; |
1493 | case CFI_CMDSET_AMD_EXTENDED: | |
1494 | case CFI_CMDSET_AMD_STANDARD: | |
bc9019e1 | 1495 | /* U-Boot only checks the first byte */ |
20043a4c | 1496 | if (manufact_match(info, ATM_MANUFACT)) { |
bc9019e1 RC |
1497 | if (prot) { |
1498 | flash_unlock_seq (info, 0); | |
1499 | flash_write_cmd (info, 0, | |
1500 | info->addr_unlock1, | |
1501 | ATM_CMD_SOFTLOCK_START); | |
1502 | flash_unlock_seq (info, 0); | |
1503 | flash_write_cmd (info, sector, 0, | |
1504 | ATM_CMD_LOCK_SECT); | |
1505 | } else { | |
1506 | flash_write_cmd (info, 0, | |
1507 | info->addr_unlock1, | |
1508 | AMD_CMD_UNLOCK_START); | |
1509 | if (info->device_id == ATM_ID_BV6416) | |
1510 | flash_write_cmd (info, sector, | |
1511 | 0, ATM_CMD_UNLOCK_SECT); | |
1512 | } | |
1513 | } | |
ac6b9115 | 1514 | if (info->legacy_unlock) { |
66863b05 AG |
1515 | int flag = disable_interrupts(); |
1516 | int lock_flag; | |
1517 | ||
1518 | flash_unlock_seq(info, 0); | |
1519 | flash_write_cmd(info, 0, info->addr_unlock1, | |
1520 | AMD_CMD_SET_PPB_ENTRY); | |
1521 | lock_flag = flash_isset(info, sector, 0, 0x01); | |
1522 | if (prot) { | |
1523 | if (lock_flag) { | |
1524 | flash_write_cmd(info, sector, 0, | |
1525 | AMD_CMD_PPB_LOCK_BC1); | |
1526 | flash_write_cmd(info, sector, 0, | |
1527 | AMD_CMD_PPB_LOCK_BC2); | |
1528 | } | |
1529 | debug("sector %ld %slocked\n", sector, | |
1530 | lock_flag ? "" : "already "); | |
1531 | } else { | |
1532 | if (!lock_flag) { | |
1533 | debug("unlock %ld\n", sector); | |
1534 | flash_write_cmd(info, 0, 0, | |
1535 | AMD_CMD_PPB_UNLOCK_BC1); | |
1536 | flash_write_cmd(info, 0, 0, | |
1537 | AMD_CMD_PPB_UNLOCK_BC2); | |
1538 | } | |
1539 | debug("sector %ld %sunlocked\n", sector, | |
1540 | !lock_flag ? "" : "already "); | |
1541 | } | |
1542 | if (flag) | |
1543 | enable_interrupts(); | |
1544 | ||
1545 | if (flash_status_check(info, sector, | |
1546 | info->erase_blk_tout, | |
1547 | prot ? "protect" : "unprotect")) | |
1548 | printf("status check error\n"); | |
1549 | ||
1550 | flash_write_cmd(info, 0, 0, | |
1551 | AMD_CMD_SET_PPB_EXIT_BC1); | |
1552 | flash_write_cmd(info, 0, 0, | |
1553 | AMD_CMD_SET_PPB_EXIT_BC2); | |
1554 | } | |
bc9019e1 | 1555 | break; |
4e00acde TL |
1556 | #ifdef CONFIG_FLASH_CFI_LEGACY |
1557 | case CFI_CMDSET_AMD_LEGACY: | |
1558 | flash_write_cmd (info, sector, 0, FLASH_CMD_CLEAR_STATUS); | |
1559 | flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT); | |
1560 | if (prot) | |
1561 | flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT_SET); | |
1562 | else | |
1563 | flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT_CLEAR); | |
1564 | #endif | |
bc9019e1 | 1565 | }; |
bf9e3b38 | 1566 | |
df4e813b SR |
1567 | /* |
1568 | * Flash needs to be in status register read mode for | |
1569 | * flash_full_status_check() to work correctly | |
1570 | */ | |
1571 | flash_write_cmd(info, sector, 0, FLASH_CMD_READ_STATUS); | |
be60a902 HS |
1572 | if ((retcode = |
1573 | flash_full_status_check (info, sector, info->erase_blk_tout, | |
1574 | prot ? "protect" : "unprotect")) == 0) { | |
bf9e3b38 | 1575 | |
be60a902 HS |
1576 | info->protect[sector] = prot; |
1577 | ||
1578 | /* | |
1579 | * On some of Intel's flash chips (marked via legacy_unlock) | |
1580 | * unprotect unprotects all locking. | |
1581 | */ | |
1582 | if ((prot == 0) && (info->legacy_unlock)) { | |
1583 | flash_sect_t i; | |
1584 | ||
1585 | for (i = 0; i < info->sector_count; i++) { | |
1586 | if (info->protect[i]) | |
1587 | flash_real_protect (info, i, 1); | |
1588 | } | |
5653fc33 | 1589 | } |
5653fc33 | 1590 | } |
be60a902 | 1591 | return retcode; |
5653fc33 | 1592 | } |
bf9e3b38 | 1593 | |
5653fc33 | 1594 | /*----------------------------------------------------------------------- |
be60a902 | 1595 | * flash_read_user_serial - read the OneTimeProgramming cells |
5653fc33 | 1596 | */ |
be60a902 HS |
1597 | void flash_read_user_serial (flash_info_t * info, void *buffer, int offset, |
1598 | int len) | |
5653fc33 | 1599 | { |
be60a902 HS |
1600 | uchar *src; |
1601 | uchar *dst; | |
bf9e3b38 | 1602 | |
be60a902 | 1603 | dst = buffer; |
12d30aa7 | 1604 | src = flash_map (info, 0, FLASH_OFFSET_USER_PROTECTION); |
be60a902 HS |
1605 | flash_write_cmd (info, 0, 0, FLASH_CMD_READ_ID); |
1606 | memcpy (dst, src + offset, len); | |
1607 | flash_write_cmd (info, 0, 0, info->cmd_reset); | |
a90b9575 | 1608 | udelay(1); |
12d30aa7 | 1609 | flash_unmap(info, 0, FLASH_OFFSET_USER_PROTECTION, src); |
5653fc33 WD |
1610 | } |
1611 | ||
be60a902 HS |
1612 | /* |
1613 | * flash_read_factory_serial - read the device Id from the protection area | |
5653fc33 | 1614 | */ |
be60a902 HS |
1615 | void flash_read_factory_serial (flash_info_t * info, void *buffer, int offset, |
1616 | int len) | |
5653fc33 | 1617 | { |
be60a902 | 1618 | uchar *src; |
bf9e3b38 | 1619 | |
12d30aa7 | 1620 | src = flash_map (info, 0, FLASH_OFFSET_INTEL_PROTECTION); |
be60a902 HS |
1621 | flash_write_cmd (info, 0, 0, FLASH_CMD_READ_ID); |
1622 | memcpy (buffer, src + offset, len); | |
1623 | flash_write_cmd (info, 0, 0, info->cmd_reset); | |
a90b9575 | 1624 | udelay(1); |
12d30aa7 | 1625 | flash_unmap(info, 0, FLASH_OFFSET_INTEL_PROTECTION, src); |
5653fc33 WD |
1626 | } |
1627 | ||
6d0f6bcf | 1628 | #endif /* CONFIG_SYS_FLASH_PROTECTION */ |
be60a902 | 1629 | |
0ddf06dd HS |
1630 | /*----------------------------------------------------------------------- |
1631 | * Reverse the order of the erase regions in the CFI QRY structure. | |
1632 | * This is needed for chips that are either a) correctly detected as | |
1633 | * top-boot, or b) buggy. | |
1634 | */ | |
1635 | static void cfi_reverse_geometry(struct cfi_qry *qry) | |
1636 | { | |
1637 | unsigned int i, j; | |
1638 | u32 tmp; | |
1639 | ||
1640 | for (i = 0, j = qry->num_erase_regions - 1; i < j; i++, j--) { | |
aedadf10 AG |
1641 | tmp = get_unaligned(&(qry->erase_region_info[i])); |
1642 | put_unaligned(get_unaligned(&(qry->erase_region_info[j])), | |
1643 | &(qry->erase_region_info[i])); | |
1644 | put_unaligned(tmp, &(qry->erase_region_info[j])); | |
0ddf06dd HS |
1645 | } |
1646 | } | |
be60a902 | 1647 | |
260421a2 SR |
1648 | /*----------------------------------------------------------------------- |
1649 | * read jedec ids from device and set corresponding fields in info struct | |
1650 | * | |
1651 | * Note: assume cfi->vendor, cfi->portwidth and cfi->chipwidth are correct | |
1652 | * | |
0ddf06dd HS |
1653 | */ |
1654 | static void cmdset_intel_read_jedec_ids(flash_info_t *info) | |
1655 | { | |
1656 | flash_write_cmd(info, 0, 0, FLASH_CMD_RESET); | |
a90b9575 | 1657 | udelay(1); |
0ddf06dd HS |
1658 | flash_write_cmd(info, 0, 0, FLASH_CMD_READ_ID); |
1659 | udelay(1000); /* some flash are slow to respond */ | |
1660 | info->manufacturer_id = flash_read_uchar (info, | |
1661 | FLASH_OFFSET_MANUFACTURER_ID); | |
d77c7ac4 PDM |
1662 | info->device_id = (info->chipwidth == FLASH_CFI_16BIT) ? |
1663 | flash_read_word (info, FLASH_OFFSET_DEVICE_ID) : | |
1664 | flash_read_uchar (info, FLASH_OFFSET_DEVICE_ID); | |
0ddf06dd HS |
1665 | flash_write_cmd(info, 0, 0, FLASH_CMD_RESET); |
1666 | } | |
1667 | ||
1668 | static int cmdset_intel_init(flash_info_t *info, struct cfi_qry *qry) | |
1669 | { | |
1670 | info->cmd_reset = FLASH_CMD_RESET; | |
1671 | ||
1672 | cmdset_intel_read_jedec_ids(info); | |
1673 | flash_write_cmd(info, 0, info->cfi_offset, FLASH_CMD_CFI); | |
1674 | ||
6d0f6bcf | 1675 | #ifdef CONFIG_SYS_FLASH_PROTECTION |
0ddf06dd HS |
1676 | /* read legacy lock/unlock bit from intel flash */ |
1677 | if (info->ext_addr) { | |
1678 | info->legacy_unlock = flash_read_uchar (info, | |
1679 | info->ext_addr + 5) & 0x08; | |
1680 | } | |
1681 | #endif | |
1682 | ||
1683 | return 0; | |
1684 | } | |
1685 | ||
1686 | static void cmdset_amd_read_jedec_ids(flash_info_t *info) | |
1687 | { | |
3a7b2c21 NG |
1688 | ushort bankId = 0; |
1689 | uchar manuId; | |
1690 | ||
0ddf06dd HS |
1691 | flash_write_cmd(info, 0, 0, AMD_CMD_RESET); |
1692 | flash_unlock_seq(info, 0); | |
1693 | flash_write_cmd(info, 0, info->addr_unlock1, FLASH_CMD_READ_ID); | |
1694 | udelay(1000); /* some flash are slow to respond */ | |
90447ecb | 1695 | |
3a7b2c21 NG |
1696 | manuId = flash_read_uchar (info, FLASH_OFFSET_MANUFACTURER_ID); |
1697 | /* JEDEC JEP106Z specifies ID codes up to bank 7 */ | |
1698 | while (manuId == FLASH_CONTINUATION_CODE && bankId < 0x800) { | |
1699 | bankId += 0x100; | |
1700 | manuId = flash_read_uchar (info, | |
1701 | bankId | FLASH_OFFSET_MANUFACTURER_ID); | |
1702 | } | |
1703 | info->manufacturer_id = manuId; | |
90447ecb TK |
1704 | |
1705 | switch (info->chipwidth){ | |
1706 | case FLASH_CFI_8BIT: | |
1707 | info->device_id = flash_read_uchar (info, | |
1708 | FLASH_OFFSET_DEVICE_ID); | |
1709 | if (info->device_id == 0x7E) { | |
1710 | /* AMD 3-byte (expanded) device ids */ | |
1711 | info->device_id2 = flash_read_uchar (info, | |
1712 | FLASH_OFFSET_DEVICE_ID2); | |
1713 | info->device_id2 <<= 8; | |
1714 | info->device_id2 |= flash_read_uchar (info, | |
1715 | FLASH_OFFSET_DEVICE_ID3); | |
1716 | } | |
1717 | break; | |
1718 | case FLASH_CFI_16BIT: | |
1719 | info->device_id = flash_read_word (info, | |
1720 | FLASH_OFFSET_DEVICE_ID); | |
5b448adb HS |
1721 | if ((info->device_id & 0xff) == 0x7E) { |
1722 | /* AMD 3-byte (expanded) device ids */ | |
1723 | info->device_id2 = flash_read_uchar (info, | |
1724 | FLASH_OFFSET_DEVICE_ID2); | |
1725 | info->device_id2 <<= 8; | |
1726 | info->device_id2 |= flash_read_uchar (info, | |
1727 | FLASH_OFFSET_DEVICE_ID3); | |
1728 | } | |
90447ecb TK |
1729 | break; |
1730 | default: | |
1731 | break; | |
0ddf06dd HS |
1732 | } |
1733 | flash_write_cmd(info, 0, 0, AMD_CMD_RESET); | |
a90b9575 | 1734 | udelay(1); |
0ddf06dd HS |
1735 | } |
1736 | ||
1737 | static int cmdset_amd_init(flash_info_t *info, struct cfi_qry *qry) | |
1738 | { | |
1739 | info->cmd_reset = AMD_CMD_RESET; | |
07b2c5c0 | 1740 | info->cmd_erase_sector = AMD_CMD_ERASE_SECTOR; |
0ddf06dd HS |
1741 | |
1742 | cmdset_amd_read_jedec_ids(info); | |
1743 | flash_write_cmd(info, 0, info->cfi_offset, FLASH_CMD_CFI); | |
1744 | ||
66863b05 | 1745 | #ifdef CONFIG_SYS_FLASH_PROTECTION |
ac6b9115 SR |
1746 | if (info->ext_addr) { |
1747 | /* read sector protect/unprotect scheme (at 0x49) */ | |
1748 | if (flash_read_uchar(info, info->ext_addr + 9) == 0x8) | |
66863b05 AG |
1749 | info->legacy_unlock = 1; |
1750 | } | |
1751 | #endif | |
1752 | ||
0ddf06dd HS |
1753 | return 0; |
1754 | } | |
1755 | ||
1756 | #ifdef CONFIG_FLASH_CFI_LEGACY | |
260421a2 SR |
1757 | static void flash_read_jedec_ids (flash_info_t * info) |
1758 | { | |
1759 | info->manufacturer_id = 0; | |
1760 | info->device_id = 0; | |
1761 | info->device_id2 = 0; | |
1762 | ||
1763 | switch (info->vendor) { | |
9c048b52 | 1764 | case CFI_CMDSET_INTEL_PROG_REGIONS: |
260421a2 SR |
1765 | case CFI_CMDSET_INTEL_STANDARD: |
1766 | case CFI_CMDSET_INTEL_EXTENDED: | |
8225d1e3 | 1767 | cmdset_intel_read_jedec_ids(info); |
260421a2 SR |
1768 | break; |
1769 | case CFI_CMDSET_AMD_STANDARD: | |
1770 | case CFI_CMDSET_AMD_EXTENDED: | |
8225d1e3 | 1771 | cmdset_amd_read_jedec_ids(info); |
260421a2 SR |
1772 | break; |
1773 | default: | |
1774 | break; | |
1775 | } | |
1776 | } | |
1777 | ||
5653fc33 | 1778 | /*----------------------------------------------------------------------- |
be60a902 HS |
1779 | * Call board code to request info about non-CFI flash. |
1780 | * board_flash_get_legacy needs to fill in at least: | |
1781 | * info->portwidth, info->chipwidth and info->interface for Jedec probing. | |
7e5b9b47 | 1782 | */ |
09ce9921 | 1783 | static int flash_detect_legacy(phys_addr_t base, int banknum) |
5653fc33 | 1784 | { |
be60a902 | 1785 | flash_info_t *info = &flash_info[banknum]; |
7e5b9b47 | 1786 | |
be60a902 HS |
1787 | if (board_flash_get_legacy(base, banknum, info)) { |
1788 | /* board code may have filled info completely. If not, we | |
1789 | use JEDEC ID probing. */ | |
1790 | if (!info->vendor) { | |
1791 | int modes[] = { | |
1792 | CFI_CMDSET_AMD_STANDARD, | |
1793 | CFI_CMDSET_INTEL_STANDARD | |
1794 | }; | |
1795 | int i; | |
7e5b9b47 | 1796 | |
31bf0f57 | 1797 | for (i = 0; i < ARRAY_SIZE(modes); i++) { |
be60a902 | 1798 | info->vendor = modes[i]; |
09ce9921 BB |
1799 | info->start[0] = |
1800 | (ulong)map_physmem(base, | |
e1fb6d0d | 1801 | info->portwidth, |
09ce9921 | 1802 | MAP_NOCACHE); |
be60a902 HS |
1803 | if (info->portwidth == FLASH_CFI_8BIT |
1804 | && info->interface == FLASH_CFI_X8X16) { | |
1805 | info->addr_unlock1 = 0x2AAA; | |
1806 | info->addr_unlock2 = 0x5555; | |
1807 | } else { | |
1808 | info->addr_unlock1 = 0x5555; | |
1809 | info->addr_unlock2 = 0x2AAA; | |
1810 | } | |
1811 | flash_read_jedec_ids(info); | |
1812 | debug("JEDEC PROBE: ID %x %x %x\n", | |
1813 | info->manufacturer_id, | |
1814 | info->device_id, | |
1815 | info->device_id2); | |
09ce9921 | 1816 | if (jedec_flash_match(info, info->start[0])) |
be60a902 | 1817 | break; |
09ce9921 | 1818 | else |
e1fb6d0d | 1819 | unmap_physmem((void *)info->start[0], |
d8b57c0a | 1820 | info->portwidth); |
be60a902 HS |
1821 | } |
1822 | } | |
1823 | ||
1824 | switch(info->vendor) { | |
9c048b52 | 1825 | case CFI_CMDSET_INTEL_PROG_REGIONS: |
be60a902 HS |
1826 | case CFI_CMDSET_INTEL_STANDARD: |
1827 | case CFI_CMDSET_INTEL_EXTENDED: | |
1828 | info->cmd_reset = FLASH_CMD_RESET; | |
1829 | break; | |
1830 | case CFI_CMDSET_AMD_STANDARD: | |
1831 | case CFI_CMDSET_AMD_EXTENDED: | |
1832 | case CFI_CMDSET_AMD_LEGACY: | |
1833 | info->cmd_reset = AMD_CMD_RESET; | |
1834 | break; | |
1835 | } | |
1836 | info->flash_id = FLASH_MAN_CFI; | |
1837 | return 1; | |
1838 | } | |
1839 | return 0; /* use CFI */ | |
1840 | } | |
1841 | #else | |
09ce9921 | 1842 | static inline int flash_detect_legacy(phys_addr_t base, int banknum) |
be60a902 HS |
1843 | { |
1844 | return 0; /* use CFI */ | |
1845 | } | |
1846 | #endif | |
1847 | ||
1848 | /*----------------------------------------------------------------------- | |
1849 | * detect if flash is compatible with the Common Flash Interface (CFI) | |
1850 | * http://www.jedec.org/download/search/jesd68.pdf | |
1851 | */ | |
e23741f4 HS |
1852 | static void flash_read_cfi (flash_info_t *info, void *buf, |
1853 | unsigned int start, size_t len) | |
1854 | { | |
1855 | u8 *p = buf; | |
1856 | unsigned int i; | |
1857 | ||
1858 | for (i = 0; i < len; i++) | |
e303be2d | 1859 | p[i] = flash_read_uchar(info, start + i); |
e23741f4 HS |
1860 | } |
1861 | ||
11dc4010 | 1862 | static void __flash_cmd_reset(flash_info_t *info) |
fa36ae79 SR |
1863 | { |
1864 | /* | |
1865 | * We do not yet know what kind of commandset to use, so we issue | |
1866 | * the reset command in both Intel and AMD variants, in the hope | |
1867 | * that AMD flash roms ignore the Intel command. | |
1868 | */ | |
1869 | flash_write_cmd(info, 0, 0, AMD_CMD_RESET); | |
a90b9575 | 1870 | udelay(1); |
fa36ae79 SR |
1871 | flash_write_cmd(info, 0, 0, FLASH_CMD_RESET); |
1872 | } | |
1873 | void flash_cmd_reset(flash_info_t *info) | |
1874 | __attribute__((weak,alias("__flash_cmd_reset"))); | |
1875 | ||
e23741f4 | 1876 | static int __flash_detect_cfi (flash_info_t * info, struct cfi_qry *qry) |
be60a902 HS |
1877 | { |
1878 | int cfi_offset; | |
1879 | ||
e303be2d SR |
1880 | /* Issue FLASH reset command */ |
1881 | flash_cmd_reset(info); | |
1882 | ||
31bf0f57 | 1883 | for (cfi_offset = 0; cfi_offset < ARRAY_SIZE(flash_offset_cfi); |
be60a902 HS |
1884 | cfi_offset++) { |
1885 | flash_write_cmd (info, 0, flash_offset_cfi[cfi_offset], | |
1886 | FLASH_CMD_CFI); | |
e303be2d SR |
1887 | if (flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP, 'Q') |
1888 | && flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP + 1, 'R') | |
1889 | && flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP + 2, 'Y')) { | |
e23741f4 HS |
1890 | flash_read_cfi(info, qry, FLASH_OFFSET_CFI_RESP, |
1891 | sizeof(struct cfi_qry)); | |
1892 | info->interface = le16_to_cpu(qry->interface_desc); | |
e303be2d | 1893 | |
be60a902 HS |
1894 | info->cfi_offset = flash_offset_cfi[cfi_offset]; |
1895 | debug ("device interface is %d\n", | |
1896 | info->interface); | |
1897 | debug ("found port %d chip %d ", | |
1898 | info->portwidth, info->chipwidth); | |
1899 | debug ("port %d bits chip %d bits\n", | |
1900 | info->portwidth << CFI_FLASH_SHIFT_WIDTH, | |
1901 | info->chipwidth << CFI_FLASH_SHIFT_WIDTH); | |
1902 | ||
1903 | /* calculate command offsets as in the Linux driver */ | |
e303be2d SR |
1904 | info->addr_unlock1 = 0x555; |
1905 | info->addr_unlock2 = 0x2aa; | |
7e5b9b47 HS |
1906 | |
1907 | /* | |
1908 | * modify the unlock address if we are | |
1909 | * in compatibility mode | |
1910 | */ | |
1911 | if ( /* x8/x16 in x8 mode */ | |
1912 | ((info->chipwidth == FLASH_CFI_BY8) && | |
1913 | (info->interface == FLASH_CFI_X8X16)) || | |
1914 | /* x16/x32 in x16 mode */ | |
1915 | ((info->chipwidth == FLASH_CFI_BY16) && | |
1916 | (info->interface == FLASH_CFI_X16X32))) | |
1917 | { | |
1918 | info->addr_unlock1 = 0xaaa; | |
1919 | info->addr_unlock2 = 0x555; | |
1920 | } | |
1921 | ||
1922 | info->name = "CFI conformant"; | |
1923 | return 1; | |
1924 | } | |
1925 | } | |
1926 | ||
1927 | return 0; | |
1928 | } | |
1929 | ||
e23741f4 | 1930 | static int flash_detect_cfi (flash_info_t * info, struct cfi_qry *qry) |
7e5b9b47 | 1931 | { |
bf9e3b38 WD |
1932 | debug ("flash detect cfi\n"); |
1933 | ||
6d0f6bcf | 1934 | for (info->portwidth = CONFIG_SYS_FLASH_CFI_WIDTH; |
bf9e3b38 WD |
1935 | info->portwidth <= FLASH_CFI_64BIT; info->portwidth <<= 1) { |
1936 | for (info->chipwidth = FLASH_CFI_BY8; | |
1937 | info->chipwidth <= info->portwidth; | |
7e5b9b47 | 1938 | info->chipwidth <<= 1) |
e303be2d | 1939 | if (__flash_detect_cfi(info, qry)) |
7e5b9b47 | 1940 | return 1; |
5653fc33 | 1941 | } |
bf9e3b38 | 1942 | debug ("not found\n"); |
5653fc33 WD |
1943 | return 0; |
1944 | } | |
bf9e3b38 | 1945 | |
467bcee1 HS |
1946 | /* |
1947 | * Manufacturer-specific quirks. Add workarounds for geometry | |
1948 | * reversal, etc. here. | |
1949 | */ | |
1950 | static void flash_fixup_amd(flash_info_t *info, struct cfi_qry *qry) | |
1951 | { | |
1952 | /* check if flash geometry needs reversal */ | |
1953 | if (qry->num_erase_regions > 1) { | |
1954 | /* reverse geometry if top boot part */ | |
1955 | if (info->cfi_version < 0x3131) { | |
1956 | /* CFI < 1.1, try to guess from device id */ | |
1957 | if ((info->device_id & 0x80) != 0) | |
1958 | cfi_reverse_geometry(qry); | |
e303be2d | 1959 | } else if (flash_read_uchar(info, info->ext_addr + 0xf) == 3) { |
467bcee1 HS |
1960 | /* CFI >= 1.1, deduct from top/bottom flag */ |
1961 | /* note: ext_addr is valid since cfi_version > 0 */ | |
1962 | cfi_reverse_geometry(qry); | |
1963 | } | |
1964 | } | |
1965 | } | |
1966 | ||
1967 | static void flash_fixup_atmel(flash_info_t *info, struct cfi_qry *qry) | |
1968 | { | |
1969 | int reverse_geometry = 0; | |
1970 | ||
1971 | /* Check the "top boot" bit in the PRI */ | |
1972 | if (info->ext_addr && !(flash_read_uchar(info, info->ext_addr + 6) & 1)) | |
1973 | reverse_geometry = 1; | |
1974 | ||
1975 | /* AT49BV6416(T) list the erase regions in the wrong order. | |
1976 | * However, the device ID is identical with the non-broken | |
cb82a532 | 1977 | * AT49BV642D they differ in the high byte. |
467bcee1 | 1978 | */ |
467bcee1 HS |
1979 | if (info->device_id == 0xd6 || info->device_id == 0xd2) |
1980 | reverse_geometry = !reverse_geometry; | |
467bcee1 HS |
1981 | |
1982 | if (reverse_geometry) | |
1983 | cfi_reverse_geometry(qry); | |
1984 | } | |
1985 | ||
e8eac437 RR |
1986 | static void flash_fixup_stm(flash_info_t *info, struct cfi_qry *qry) |
1987 | { | |
1988 | /* check if flash geometry needs reversal */ | |
1989 | if (qry->num_erase_regions > 1) { | |
1990 | /* reverse geometry if top boot part */ | |
1991 | if (info->cfi_version < 0x3131) { | |
6a011ce8 MF |
1992 | /* CFI < 1.1, guess by device id */ |
1993 | if (info->device_id == 0x22CA || /* M29W320DT */ | |
1994 | info->device_id == 0x2256 || /* M29W320ET */ | |
1995 | info->device_id == 0x22D7) { /* M29W800DT */ | |
e8eac437 RR |
1996 | cfi_reverse_geometry(qry); |
1997 | } | |
4c2105cb MF |
1998 | } else if (flash_read_uchar(info, info->ext_addr + 0xf) == 3) { |
1999 | /* CFI >= 1.1, deduct from top/bottom flag */ | |
2000 | /* note: ext_addr is valid since cfi_version > 0 */ | |
2001 | cfi_reverse_geometry(qry); | |
e8eac437 RR |
2002 | } |
2003 | } | |
2004 | } | |
2005 | ||
07b2c5c0 AD |
2006 | static void flash_fixup_sst(flash_info_t *info, struct cfi_qry *qry) |
2007 | { | |
2008 | /* | |
2009 | * SST, for many recent nor parallel flashes, says they are | |
2010 | * CFI-conformant. This is not true, since qry struct. | |
2011 | * reports a std. AMD command set (0x0002), while SST allows to | |
2012 | * erase two different sector sizes for the same memory. | |
2013 | * 64KB sector (SST call it block) needs 0x30 to be erased. | |
2014 | * 4KB sector (SST call it sector) needs 0x50 to be erased. | |
2015 | * Since CFI query detect the 4KB number of sectors, users expects | |
2016 | * a sector granularity of 4KB, and it is here set. | |
2017 | */ | |
2018 | if (info->device_id == 0x5D23 || /* SST39VF3201B */ | |
2019 | info->device_id == 0x5C23) { /* SST39VF3202B */ | |
2020 | /* set sector granularity to 4KB */ | |
2021 | info->cmd_erase_sector=0x50; | |
2022 | } | |
2023 | } | |
2024 | ||
c502321c JT |
2025 | static void flash_fixup_num(flash_info_t *info, struct cfi_qry *qry) |
2026 | { | |
2027 | /* | |
2028 | * The M29EW devices seem to report the CFI information wrong | |
2029 | * when it's in 8 bit mode. | |
2030 | * There's an app note from Numonyx on this issue. | |
2031 | * So adjust the buffer size for M29EW while operating in 8-bit mode | |
2032 | */ | |
2033 | if (((qry->max_buf_write_size) > 0x8) && | |
2034 | (info->device_id == 0x7E) && | |
2035 | (info->device_id2 == 0x2201 || | |
2036 | info->device_id2 == 0x2301 || | |
2037 | info->device_id2 == 0x2801 || | |
2038 | info->device_id2 == 0x4801)) { | |
2039 | debug("Adjusted buffer size on Numonyx flash" | |
2040 | " M29EW family in 8 bit mode\n"); | |
2041 | qry->max_buf_write_size = 0x8; | |
2042 | } | |
2043 | } | |
2044 | ||
5653fc33 WD |
2045 | /* |
2046 | * The following code cannot be run from FLASH! | |
2047 | * | |
2048 | */ | |
34bbb8fb | 2049 | ulong flash_get_size (phys_addr_t base, int banknum) |
5653fc33 | 2050 | { |
bf9e3b38 | 2051 | flash_info_t *info = &flash_info[banknum]; |
5653fc33 WD |
2052 | int i, j; |
2053 | flash_sect_t sect_cnt; | |
09ce9921 | 2054 | phys_addr_t sector; |
5653fc33 WD |
2055 | unsigned long tmp; |
2056 | int size_ratio; | |
2057 | uchar num_erase_regions; | |
bf9e3b38 WD |
2058 | int erase_region_size; |
2059 | int erase_region_count; | |
e23741f4 | 2060 | struct cfi_qry qry; |
34bbb8fb | 2061 | unsigned long max_size; |
260421a2 | 2062 | |
f979690e KG |
2063 | memset(&qry, 0, sizeof(qry)); |
2064 | ||
260421a2 SR |
2065 | info->ext_addr = 0; |
2066 | info->cfi_version = 0; | |
6d0f6bcf | 2067 | #ifdef CONFIG_SYS_FLASH_PROTECTION |
2662b40c SR |
2068 | info->legacy_unlock = 0; |
2069 | #endif | |
5653fc33 | 2070 | |
09ce9921 | 2071 | info->start[0] = (ulong)map_physmem(base, info->portwidth, MAP_NOCACHE); |
5653fc33 | 2072 | |
e23741f4 | 2073 | if (flash_detect_cfi (info, &qry)) { |
aedadf10 AG |
2074 | info->vendor = le16_to_cpu(get_unaligned(&(qry.p_id))); |
2075 | info->ext_addr = le16_to_cpu(get_unaligned(&(qry.p_adr))); | |
e23741f4 HS |
2076 | num_erase_regions = qry.num_erase_regions; |
2077 | ||
260421a2 SR |
2078 | if (info->ext_addr) { |
2079 | info->cfi_version = (ushort) flash_read_uchar (info, | |
e303be2d | 2080 | info->ext_addr + 3) << 8; |
260421a2 | 2081 | info->cfi_version |= (ushort) flash_read_uchar (info, |
e303be2d | 2082 | info->ext_addr + 4); |
260421a2 | 2083 | } |
0ddf06dd | 2084 | |
bf9e3b38 | 2085 | #ifdef DEBUG |
e23741f4 | 2086 | flash_printqry (&qry); |
bf9e3b38 | 2087 | #endif |
0ddf06dd | 2088 | |
bf9e3b38 | 2089 | switch (info->vendor) { |
9c048b52 | 2090 | case CFI_CMDSET_INTEL_PROG_REGIONS: |
5653fc33 WD |
2091 | case CFI_CMDSET_INTEL_STANDARD: |
2092 | case CFI_CMDSET_INTEL_EXTENDED: | |
0ddf06dd | 2093 | cmdset_intel_init(info, &qry); |
5653fc33 WD |
2094 | break; |
2095 | case CFI_CMDSET_AMD_STANDARD: | |
2096 | case CFI_CMDSET_AMD_EXTENDED: | |
0ddf06dd | 2097 | cmdset_amd_init(info, &qry); |
5653fc33 | 2098 | break; |
0ddf06dd HS |
2099 | default: |
2100 | printf("CFI: Unknown command set 0x%x\n", | |
2101 | info->vendor); | |
2102 | /* | |
2103 | * Unfortunately, this means we don't know how | |
2104 | * to get the chip back to Read mode. Might | |
2105 | * as well try an Intel-style reset... | |
2106 | */ | |
2107 | flash_write_cmd(info, 0, 0, FLASH_CMD_RESET); | |
2108 | return 0; | |
5653fc33 | 2109 | } |
cd37d9e6 | 2110 | |
467bcee1 HS |
2111 | /* Do manufacturer-specific fixups */ |
2112 | switch (info->manufacturer_id) { | |
2c9f48af MS |
2113 | case 0x0001: /* AMD */ |
2114 | case 0x0037: /* AMIC */ | |
467bcee1 HS |
2115 | flash_fixup_amd(info, &qry); |
2116 | break; | |
2117 | case 0x001f: | |
2118 | flash_fixup_atmel(info, &qry); | |
2119 | break; | |
e8eac437 RR |
2120 | case 0x0020: |
2121 | flash_fixup_stm(info, &qry); | |
2122 | break; | |
07b2c5c0 AD |
2123 | case 0x00bf: /* SST */ |
2124 | flash_fixup_sst(info, &qry); | |
2125 | break; | |
c502321c JT |
2126 | case 0x0089: /* Numonyx */ |
2127 | flash_fixup_num(info, &qry); | |
2128 | break; | |
467bcee1 HS |
2129 | } |
2130 | ||
bf9e3b38 | 2131 | debug ("manufacturer is %d\n", info->vendor); |
260421a2 SR |
2132 | debug ("manufacturer id is 0x%x\n", info->manufacturer_id); |
2133 | debug ("device id is 0x%x\n", info->device_id); | |
2134 | debug ("device id2 is 0x%x\n", info->device_id2); | |
2135 | debug ("cfi version is 0x%04x\n", info->cfi_version); | |
2136 | ||
5653fc33 | 2137 | size_ratio = info->portwidth / info->chipwidth; |
bf9e3b38 WD |
2138 | /* if the chip is x8/x16 reduce the ratio by half */ |
2139 | if ((info->interface == FLASH_CFI_X8X16) | |
2140 | && (info->chipwidth == FLASH_CFI_BY8)) { | |
2141 | size_ratio >>= 1; | |
2142 | } | |
bf9e3b38 WD |
2143 | debug ("size_ratio %d port %d bits chip %d bits\n", |
2144 | size_ratio, info->portwidth << CFI_FLASH_SHIFT_WIDTH, | |
2145 | info->chipwidth << CFI_FLASH_SHIFT_WIDTH); | |
ec50a8e3 IY |
2146 | info->size = 1 << qry.dev_size; |
2147 | /* multiply the size by the number of chips */ | |
2148 | info->size *= size_ratio; | |
34bbb8fb | 2149 | max_size = cfi_flash_bank_size(banknum); |
ec50a8e3 IY |
2150 | if (max_size && (info->size > max_size)) { |
2151 | debug("[truncated from %ldMiB]", info->size >> 20); | |
2152 | info->size = max_size; | |
2153 | } | |
bf9e3b38 | 2154 | debug ("found %d erase regions\n", num_erase_regions); |
5653fc33 WD |
2155 | sect_cnt = 0; |
2156 | sector = base; | |
bf9e3b38 WD |
2157 | for (i = 0; i < num_erase_regions; i++) { |
2158 | if (i > NUM_ERASE_REGIONS) { | |
028ab6b5 WD |
2159 | printf ("%d erase regions found, only %d used\n", |
2160 | num_erase_regions, NUM_ERASE_REGIONS); | |
5653fc33 WD |
2161 | break; |
2162 | } | |
e23741f4 | 2163 | |
aedadf10 AG |
2164 | tmp = le32_to_cpu(get_unaligned( |
2165 | &(qry.erase_region_info[i]))); | |
0ddf06dd | 2166 | debug("erase region %u: 0x%08lx\n", i, tmp); |
e23741f4 HS |
2167 | |
2168 | erase_region_count = (tmp & 0xffff) + 1; | |
2169 | tmp >>= 16; | |
bf9e3b38 WD |
2170 | erase_region_size = |
2171 | (tmp & 0xffff) ? ((tmp & 0xffff) * 256) : 128; | |
4c0d4c3b | 2172 | debug ("erase_region_count = %d erase_region_size = %d\n", |
028ab6b5 | 2173 | erase_region_count, erase_region_size); |
bf9e3b38 | 2174 | for (j = 0; j < erase_region_count; j++) { |
ec50a8e3 IY |
2175 | if (sector - base >= info->size) |
2176 | break; | |
6d0f6bcf | 2177 | if (sect_cnt >= CONFIG_SYS_MAX_FLASH_SECT) { |
81b20ccc MS |
2178 | printf("ERROR: too many flash sectors\n"); |
2179 | break; | |
2180 | } | |
09ce9921 BB |
2181 | info->start[sect_cnt] = |
2182 | (ulong)map_physmem(sector, | |
2183 | info->portwidth, | |
2184 | MAP_NOCACHE); | |
5653fc33 | 2185 | sector += (erase_region_size * size_ratio); |
a1191902 WD |
2186 | |
2187 | /* | |
7e5b9b47 HS |
2188 | * Only read protection status from |
2189 | * supported devices (intel...) | |
a1191902 WD |
2190 | */ |
2191 | switch (info->vendor) { | |
9c048b52 | 2192 | case CFI_CMDSET_INTEL_PROG_REGIONS: |
a1191902 WD |
2193 | case CFI_CMDSET_INTEL_EXTENDED: |
2194 | case CFI_CMDSET_INTEL_STANDARD: | |
df4e813b SR |
2195 | /* |
2196 | * Set flash to read-id mode. Otherwise | |
2197 | * reading protected status is not | |
2198 | * guaranteed. | |
2199 | */ | |
2200 | flash_write_cmd(info, sect_cnt, 0, | |
2201 | FLASH_CMD_READ_ID); | |
a1191902 WD |
2202 | info->protect[sect_cnt] = |
2203 | flash_isset (info, sect_cnt, | |
2204 | FLASH_OFFSET_PROTECT, | |
2205 | FLASH_STATUS_PROTECT); | |
2206 | break; | |
03deff43 SR |
2207 | case CFI_CMDSET_AMD_EXTENDED: |
2208 | case CFI_CMDSET_AMD_STANDARD: | |
ac6b9115 | 2209 | if (!info->legacy_unlock) { |
03deff43 SR |
2210 | /* default: not protected */ |
2211 | info->protect[sect_cnt] = 0; | |
2212 | break; | |
2213 | } | |
2214 | ||
2215 | /* Read protection (PPB) from sector */ | |
2216 | flash_write_cmd(info, 0, 0, | |
2217 | info->cmd_reset); | |
2218 | flash_unlock_seq(info, 0); | |
2219 | flash_write_cmd(info, 0, | |
2220 | info->addr_unlock1, | |
2221 | FLASH_CMD_READ_ID); | |
2222 | info->protect[sect_cnt] = | |
2223 | flash_isset( | |
2224 | info, sect_cnt, | |
2225 | FLASH_OFFSET_PROTECT, | |
2226 | FLASH_STATUS_PROTECT); | |
2227 | break; | |
a1191902 | 2228 | default: |
7e5b9b47 HS |
2229 | /* default: not protected */ |
2230 | info->protect[sect_cnt] = 0; | |
a1191902 WD |
2231 | } |
2232 | ||
5653fc33 WD |
2233 | sect_cnt++; |
2234 | } | |
2235 | } | |
2236 | ||
2237 | info->sector_count = sect_cnt; | |
e23741f4 HS |
2238 | info->buffer_size = 1 << le16_to_cpu(qry.max_buf_write_size); |
2239 | tmp = 1 << qry.block_erase_timeout_typ; | |
7e5b9b47 | 2240 | info->erase_blk_tout = tmp * |
e23741f4 HS |
2241 | (1 << qry.block_erase_timeout_max); |
2242 | tmp = (1 << qry.buf_write_timeout_typ) * | |
2243 | (1 << qry.buf_write_timeout_max); | |
2244 | ||
7e5b9b47 | 2245 | /* round up when converting to ms */ |
e23741f4 HS |
2246 | info->buffer_write_tout = (tmp + 999) / 1000; |
2247 | tmp = (1 << qry.word_write_timeout_typ) * | |
2248 | (1 << qry.word_write_timeout_max); | |
7e5b9b47 | 2249 | /* round up when converting to ms */ |
e23741f4 | 2250 | info->write_tout = (tmp + 999) / 1000; |
5653fc33 | 2251 | info->flash_id = FLASH_MAN_CFI; |
7e5b9b47 HS |
2252 | if ((info->interface == FLASH_CFI_X8X16) && |
2253 | (info->chipwidth == FLASH_CFI_BY8)) { | |
2254 | /* XXX - Need to test on x8/x16 in parallel. */ | |
2255 | info->portwidth >>= 1; | |
855a496f | 2256 | } |
2215987e MF |
2257 | |
2258 | flash_write_cmd (info, 0, 0, info->cmd_reset); | |
5653fc33 WD |
2259 | } |
2260 | ||
bf9e3b38 | 2261 | return (info->size); |
5653fc33 WD |
2262 | } |
2263 | ||
4ffeab2c | 2264 | #ifdef CONFIG_FLASH_CFI_MTD |
6ea808ef PZ |
2265 | void flash_set_verbose(uint v) |
2266 | { | |
2267 | flash_verbose = v; | |
2268 | } | |
4ffeab2c | 2269 | #endif |
6ea808ef | 2270 | |
6f726f95 SR |
2271 | static void cfi_flash_set_config_reg(u32 base, u16 val) |
2272 | { | |
2273 | #ifdef CONFIG_SYS_CFI_FLASH_CONFIG_REGS | |
2274 | /* | |
2275 | * Only set this config register if really defined | |
2276 | * to a valid value (0xffff is invalid) | |
2277 | */ | |
2278 | if (val == 0xffff) | |
2279 | return; | |
2280 | ||
2281 | /* | |
2282 | * Set configuration register. Data is "encrypted" in the 16 lower | |
2283 | * address bits. | |
2284 | */ | |
2285 | flash_write16(FLASH_CMD_SETUP, (void *)(base + (val << 1))); | |
2286 | flash_write16(FLASH_CMD_SET_CR_CONFIRM, (void *)(base + (val << 1))); | |
2287 | ||
2288 | /* | |
2289 | * Finally issue reset-command to bring device back to | |
2290 | * read-array mode | |
2291 | */ | |
2292 | flash_write16(FLASH_CMD_RESET, (void *)base); | |
2293 | #endif | |
2294 | } | |
2295 | ||
5653fc33 WD |
2296 | /*----------------------------------------------------------------------- |
2297 | */ | |
6ee1416e HS |
2298 | |
2299 | void flash_protect_default(void) | |
2300 | { | |
2c51983b PT |
2301 | #if defined(CONFIG_SYS_FLASH_AUTOPROTECT_LIST) |
2302 | int i; | |
2303 | struct apl_s { | |
2304 | ulong start; | |
2305 | ulong size; | |
2306 | } apl[] = CONFIG_SYS_FLASH_AUTOPROTECT_LIST; | |
2307 | #endif | |
2308 | ||
6ee1416e HS |
2309 | /* Monitor protection ON by default */ |
2310 | #if (CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE) && \ | |
2311 | (!defined(CONFIG_MONITOR_IS_IN_RAM)) | |
2312 | flash_protect(FLAG_PROTECT_SET, | |
2313 | CONFIG_SYS_MONITOR_BASE, | |
2314 | CONFIG_SYS_MONITOR_BASE + monitor_flash_len - 1, | |
2315 | flash_get_info(CONFIG_SYS_MONITOR_BASE)); | |
2316 | #endif | |
2317 | ||
2318 | /* Environment protection ON by default */ | |
2319 | #ifdef CONFIG_ENV_IS_IN_FLASH | |
2320 | flash_protect(FLAG_PROTECT_SET, | |
2321 | CONFIG_ENV_ADDR, | |
2322 | CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE - 1, | |
2323 | flash_get_info(CONFIG_ENV_ADDR)); | |
2324 | #endif | |
2325 | ||
2326 | /* Redundant environment protection ON by default */ | |
2327 | #ifdef CONFIG_ENV_ADDR_REDUND | |
2328 | flash_protect(FLAG_PROTECT_SET, | |
2329 | CONFIG_ENV_ADDR_REDUND, | |
2330 | CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SECT_SIZE - 1, | |
2331 | flash_get_info(CONFIG_ENV_ADDR_REDUND)); | |
2332 | #endif | |
2333 | ||
2334 | #if defined(CONFIG_SYS_FLASH_AUTOPROTECT_LIST) | |
31bf0f57 | 2335 | for (i = 0; i < ARRAY_SIZE(apl); i++) { |
31d34143 | 2336 | debug("autoprotecting from %08lx to %08lx\n", |
6ee1416e HS |
2337 | apl[i].start, apl[i].start + apl[i].size - 1); |
2338 | flash_protect(FLAG_PROTECT_SET, | |
2339 | apl[i].start, | |
2340 | apl[i].start + apl[i].size - 1, | |
2341 | flash_get_info(apl[i].start)); | |
2342 | } | |
2343 | #endif | |
2344 | } | |
2345 | ||
be60a902 | 2346 | unsigned long flash_init (void) |
5653fc33 | 2347 | { |
be60a902 HS |
2348 | unsigned long size = 0; |
2349 | int i; | |
5653fc33 | 2350 | |
6d0f6bcf | 2351 | #ifdef CONFIG_SYS_FLASH_PROTECTION |
3a3baf3e ES |
2352 | /* read environment from EEPROM */ |
2353 | char s[64]; | |
cdb74977 | 2354 | getenv_f("unlock", s, sizeof(s)); |
81b20ccc | 2355 | #endif |
5653fc33 | 2356 | |
f1056910 TC |
2357 | #ifdef CONFIG_CFI_FLASH /* for driver model */ |
2358 | cfi_flash_init_dm(); | |
2359 | #endif | |
2360 | ||
be60a902 | 2361 | /* Init: no FLASHes known */ |
6d0f6bcf | 2362 | for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; ++i) { |
be60a902 | 2363 | flash_info[i].flash_id = FLASH_UNKNOWN; |
5653fc33 | 2364 | |
6f726f95 SR |
2365 | /* Optionally write flash configuration register */ |
2366 | cfi_flash_set_config_reg(cfi_flash_bank_addr(i), | |
2367 | cfi_flash_config_reg(i)); | |
2368 | ||
b00e19cc | 2369 | if (!flash_detect_legacy(cfi_flash_bank_addr(i), i)) |
34bbb8fb | 2370 | flash_get_size(cfi_flash_bank_addr(i), i); |
be60a902 HS |
2371 | size += flash_info[i].size; |
2372 | if (flash_info[i].flash_id == FLASH_UNKNOWN) { | |
6d0f6bcf | 2373 | #ifndef CONFIG_SYS_FLASH_QUIET_TEST |
eddf52b5 | 2374 | printf ("## Unknown flash on Bank %d " |
be60a902 HS |
2375 | "- Size = 0x%08lx = %ld MB\n", |
2376 | i+1, flash_info[i].size, | |
0e3fa01a | 2377 | flash_info[i].size >> 20); |
6d0f6bcf | 2378 | #endif /* CONFIG_SYS_FLASH_QUIET_TEST */ |
be60a902 | 2379 | } |
6d0f6bcf | 2380 | #ifdef CONFIG_SYS_FLASH_PROTECTION |
c15df21f | 2381 | else if (strcmp(s, "yes") == 0) { |
be60a902 HS |
2382 | /* |
2383 | * Only the U-Boot image and it's environment | |
2384 | * is protected, all other sectors are | |
2385 | * unprotected (unlocked) if flash hardware | |
6d0f6bcf | 2386 | * protection is used (CONFIG_SYS_FLASH_PROTECTION) |
be60a902 HS |
2387 | * and the environment variable "unlock" is |
2388 | * set to "yes". | |
2389 | */ | |
2390 | if (flash_info[i].legacy_unlock) { | |
2391 | int k; | |
5653fc33 | 2392 | |
be60a902 HS |
2393 | /* |
2394 | * Disable legacy_unlock temporarily, | |
2395 | * since flash_real_protect would | |
2396 | * relock all other sectors again | |
2397 | * otherwise. | |
2398 | */ | |
2399 | flash_info[i].legacy_unlock = 0; | |
5653fc33 | 2400 | |
be60a902 HS |
2401 | /* |
2402 | * Legacy unlocking (e.g. Intel J3) -> | |
2403 | * unlock only one sector. This will | |
2404 | * unlock all sectors. | |
2405 | */ | |
2406 | flash_real_protect (&flash_info[i], 0, 0); | |
5653fc33 | 2407 | |
be60a902 | 2408 | flash_info[i].legacy_unlock = 1; |
5653fc33 | 2409 | |
be60a902 HS |
2410 | /* |
2411 | * Manually mark other sectors as | |
2412 | * unlocked (unprotected) | |
2413 | */ | |
2414 | for (k = 1; k < flash_info[i].sector_count; k++) | |
2415 | flash_info[i].protect[k] = 0; | |
2416 | } else { | |
2417 | /* | |
2418 | * No legancy unlocking -> unlock all sectors | |
2419 | */ | |
2420 | flash_protect (FLAG_PROTECT_CLEAR, | |
2421 | flash_info[i].start[0], | |
2422 | flash_info[i].start[0] | |
2423 | + flash_info[i].size - 1, | |
2424 | &flash_info[i]); | |
79b4cda0 | 2425 | } |
79b4cda0 | 2426 | } |
6d0f6bcf | 2427 | #endif /* CONFIG_SYS_FLASH_PROTECTION */ |
be60a902 | 2428 | } |
79b4cda0 | 2429 | |
6ee1416e | 2430 | flash_protect_default(); |
91809ed5 PZ |
2431 | #ifdef CONFIG_FLASH_CFI_MTD |
2432 | cfi_mtd_init(); | |
2433 | #endif | |
2434 | ||
be60a902 | 2435 | return (size); |
5653fc33 | 2436 | } |
f1056910 TC |
2437 | |
2438 | #ifdef CONFIG_CFI_FLASH /* for driver model */ | |
2439 | static int cfi_flash_probe(struct udevice *dev) | |
2440 | { | |
2441 | void *blob = (void *)gd->fdt_blob; | |
2442 | int node = dev->of_offset; | |
2443 | const fdt32_t *cell; | |
2444 | phys_addr_t addr; | |
2445 | int parent, addrc, sizec; | |
2446 | int len, idx; | |
2447 | ||
2448 | parent = fdt_parent_offset(blob, node); | |
2449 | of_bus_default_count_cells(blob, parent, &addrc, &sizec); | |
2450 | /* decode regs, there may be multiple reg tuples. */ | |
2451 | cell = fdt_getprop(blob, node, "reg", &len); | |
2452 | if (!cell) | |
2453 | return -ENOENT; | |
2454 | idx = 0; | |
2455 | len /= sizeof(fdt32_t); | |
2456 | while (idx < len) { | |
2457 | addr = fdt_translate_address((void *)blob, | |
2458 | node, cell + idx); | |
2459 | cfi_flash_base[cfi_flash_num_flash_banks++] = addr; | |
2460 | idx += addrc + sizec; | |
2461 | } | |
2462 | gd->bd->bi_flashstart = cfi_flash_base[0]; | |
2463 | ||
2464 | return 0; | |
2465 | } | |
2466 | ||
2467 | static const struct udevice_id cfi_flash_ids[] = { | |
2468 | { .compatible = "cfi-flash" }, | |
2469 | { .compatible = "jedec-flash" }, | |
2470 | {} | |
2471 | }; | |
2472 | ||
2473 | U_BOOT_DRIVER(cfi_flash) = { | |
2474 | .name = "cfi_flash", | |
2475 | .id = UCLASS_MTD, | |
2476 | .of_match = cfi_flash_ids, | |
2477 | .probe = cfi_flash_probe, | |
2478 | }; | |
2479 | #endif /* CONFIG_CFI_FLASH */ |