- add new non-cfi SST flash device. Thanks Øyvind Harboe
[openocd.git] / src / flash / cfi.c
1 /***************************************************************************
2 * Copyright (C) 2005, 2007 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include "replacements.h"
25
26 #include "cfi.h"
27
28 #include "flash.h"
29 #include "target.h"
30 #include "log.h"
31 #include "armv4_5.h"
32 #include "algorithm.h"
33 #include "binarybuffer.h"
34 #include "types.h"
35
36 #include <stdlib.h>
37 #include <string.h>
38 #include <unistd.h>
39
40 int cfi_register_commands(struct command_context_s *cmd_ctx);
41 int cfi_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct flash_bank_s *bank);
42 int cfi_erase(struct flash_bank_s *bank, int first, int last);
43 int cfi_protect(struct flash_bank_s *bank, int set, int first, int last);
44 int cfi_write(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 count);
45 int cfi_probe(struct flash_bank_s *bank);
46 int cfi_auto_probe(struct flash_bank_s *bank);
47 int cfi_erase_check(struct flash_bank_s *bank);
48 int cfi_protect_check(struct flash_bank_s *bank);
49 int cfi_info(struct flash_bank_s *bank, char *buf, int buf_size);
50
51 int cfi_handle_part_id_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
52
53 #define CFI_MAX_BUS_WIDTH 4
54 #define CFI_MAX_CHIP_WIDTH 4
55
56 /* defines internal maximum size for code fragment in cfi_intel_write_block() */
57 #define CFI_MAX_INTEL_CODESIZE 256
58
59 flash_driver_t cfi_flash =
60 {
61 .name = "cfi",
62 .register_commands = cfi_register_commands,
63 .flash_bank_command = cfi_flash_bank_command,
64 .erase = cfi_erase,
65 .protect = cfi_protect,
66 .write = cfi_write,
67 .probe = cfi_probe,
68 .auto_probe = cfi_auto_probe,
69 .erase_check = cfi_erase_check,
70 .protect_check = cfi_protect_check,
71 .info = cfi_info
72 };
73
74 cfi_unlock_addresses_t cfi_unlock_addresses[] =
75 {
76 [CFI_UNLOCK_555_2AA] = { .unlock1 = 0x555, .unlock2 = 0x2aa },
77 [CFI_UNLOCK_5555_2AAA] = { .unlock1 = 0x5555, .unlock2 = 0x2aaa },
78 };
79
80 /* CFI fixups foward declarations */
81 void cfi_fixup_non_cfi(flash_bank_t *flash, void *param);
82 void cfi_fixup_0002_erase_regions(flash_bank_t *flash, void *param);
83 void cfi_fixup_0002_unlock_addresses(flash_bank_t *flash, void *param);
84 void cfi_fixup_atmel_reversed_erase_regions(flash_bank_t *flash, void *param);
85
86 /* fixup after identifying JEDEC manufactuer and ID */
87 cfi_fixup_t cfi_jedec_fixups[] = {
88 {CFI_MFR_SST, 0x00D4, cfi_fixup_non_cfi, NULL},
89 {CFI_MFR_SST, 0x00D5, cfi_fixup_non_cfi, NULL},
90 {CFI_MFR_SST, 0x00D6, cfi_fixup_non_cfi, NULL},
91 {CFI_MFR_SST, 0x00D7, cfi_fixup_non_cfi, NULL},
92 {CFI_MFR_SST, 0x2780, cfi_fixup_non_cfi, NULL},
93 {CFI_MFR_ST, 0x00D5, cfi_fixup_non_cfi, NULL},
94 {CFI_MFR_ST, 0x00D6, cfi_fixup_non_cfi, NULL},
95 {CFI_MFR_AMD, 0x2223, cfi_fixup_non_cfi, NULL},
96 {CFI_MFR_AMD, 0x22ab, cfi_fixup_non_cfi, NULL},
97 {0, 0, NULL, NULL}
98 };
99
100 /* fixup after reading cmdset 0002 primary query table */
101 cfi_fixup_t cfi_0002_fixups[] = {
102 {CFI_MFR_SST, 0x00D4, cfi_fixup_0002_unlock_addresses, &cfi_unlock_addresses[CFI_UNLOCK_5555_2AAA]},
103 {CFI_MFR_SST, 0x00D5, cfi_fixup_0002_unlock_addresses, &cfi_unlock_addresses[CFI_UNLOCK_5555_2AAA]},
104 {CFI_MFR_SST, 0x00D6, cfi_fixup_0002_unlock_addresses, &cfi_unlock_addresses[CFI_UNLOCK_5555_2AAA]},
105 {CFI_MFR_SST, 0x00D7, cfi_fixup_0002_unlock_addresses, &cfi_unlock_addresses[CFI_UNLOCK_5555_2AAA]},
106 {CFI_MFR_SST, 0x2780, cfi_fixup_0002_unlock_addresses, &cfi_unlock_addresses[CFI_UNLOCK_5555_2AAA]},
107 {CFI_MFR_ATMEL, 0x00C8, cfi_fixup_atmel_reversed_erase_regions, NULL},
108 {CFI_MFR_ANY, CFI_ID_ANY, cfi_fixup_0002_erase_regions, NULL},
109 {0, 0, NULL, NULL}
110 };
111
112 /* fixup after reading cmdset 0001 primary query table */
113 cfi_fixup_t cfi_0001_fixups[] = {
114 {0, 0, NULL, NULL}
115 };
116
117 void cfi_fixup(flash_bank_t *bank, cfi_fixup_t *fixups)
118 {
119 cfi_flash_bank_t *cfi_info = bank->driver_priv;
120 cfi_fixup_t *f;
121
122 for (f = fixups; f->fixup; f++)
123 {
124 if (((f->mfr == CFI_MFR_ANY) || (f->mfr == cfi_info->manufacturer)) &&
125 ((f->id == CFI_ID_ANY) || (f->id == cfi_info->device_id)))
126 {
127 f->fixup(bank, f->param);
128 }
129 }
130 }
131
132 inline u32 flash_address(flash_bank_t *bank, int sector, u32 offset)
133 {
134 /* while the sector list isn't built, only accesses to sector 0 work */
135 if (sector == 0)
136 return bank->base + offset * bank->bus_width;
137 else
138 {
139 if (!bank->sectors)
140 {
141 ERROR("BUG: sector list not yet built");
142 exit(-1);
143 }
144 return bank->base + bank->sectors[sector].offset + offset * bank->bus_width;
145 }
146
147 }
148
149 void cfi_command(flash_bank_t *bank, u8 cmd, u8 *cmd_buf)
150 {
151 int i;
152
153 /* clear whole buffer, to ensure bits that exceed the bus_width
154 * are set to zero
155 */
156 for (i = 0; i < CFI_MAX_BUS_WIDTH; i++)
157 cmd_buf[i] = 0;
158
159 if (bank->target->endianness == TARGET_LITTLE_ENDIAN)
160 {
161 for (i = bank->bus_width; i > 0; i--)
162 {
163 *cmd_buf++ = (i & (bank->chip_width - 1)) ? 0x0 : cmd;
164 }
165 }
166 else
167 {
168 for (i = 1; i <= bank->bus_width; i++)
169 {
170 *cmd_buf++ = (i & (bank->chip_width - 1)) ? 0x0 : cmd;
171 }
172 }
173 }
174
175 /* read unsigned 8-bit value from the bank
176 * flash banks are expected to be made of similar chips
177 * the query result should be the same for all
178 */
179 u8 cfi_query_u8(flash_bank_t *bank, int sector, u32 offset)
180 {
181 target_t *target = bank->target;
182 u8 data[CFI_MAX_BUS_WIDTH];
183
184 target->type->read_memory(target, flash_address(bank, sector, offset), bank->bus_width, 1, data);
185
186 if (bank->target->endianness == TARGET_LITTLE_ENDIAN)
187 return data[0];
188 else
189 return data[bank->bus_width - 1];
190 }
191
192 /* read unsigned 8-bit value from the bank
193 * in case of a bank made of multiple chips,
194 * the individual values are ORed
195 */
196 u8 cfi_get_u8(flash_bank_t *bank, int sector, u32 offset)
197 {
198 target_t *target = bank->target;
199 u8 data[CFI_MAX_BUS_WIDTH];
200 int i;
201
202 target->type->read_memory(target, flash_address(bank, sector, offset), bank->bus_width, 1, data);
203
204 if (bank->target->endianness == TARGET_LITTLE_ENDIAN)
205 {
206 for (i = 0; i < bank->bus_width / bank->chip_width; i++)
207 data[0] |= data[i];
208
209 return data[0];
210 }
211 else
212 {
213 u8 value = 0;
214 for (i = 0; i < bank->bus_width / bank->chip_width; i++)
215 value |= data[bank->bus_width - 1 - i];
216
217 return value;
218 }
219 }
220
221 u16 cfi_query_u16(flash_bank_t *bank, int sector, u32 offset)
222 {
223 target_t *target = bank->target;
224 u8 data[CFI_MAX_BUS_WIDTH * 2];
225
226 target->type->read_memory(target, flash_address(bank, sector, offset), bank->bus_width, 2, data);
227
228 if (bank->target->endianness == TARGET_LITTLE_ENDIAN)
229 return data[0] | data[bank->bus_width] << 8;
230 else
231 return data[bank->bus_width - 1] | data[(2 * bank->bus_width) - 1] << 8;
232 }
233
234 u32 cfi_query_u32(flash_bank_t *bank, int sector, u32 offset)
235 {
236 target_t *target = bank->target;
237 u8 data[CFI_MAX_BUS_WIDTH * 4];
238
239 target->type->read_memory(target, flash_address(bank, sector, offset), bank->bus_width, 4, data);
240
241 if (bank->target->endianness == TARGET_LITTLE_ENDIAN)
242 return data[0] | data[bank->bus_width] << 8 | data[bank->bus_width * 2] << 16 | data[bank->bus_width * 3] << 24;
243 else
244 return data[bank->bus_width - 1] | data[(2* bank->bus_width) - 1] << 8 |
245 data[(3 * bank->bus_width) - 1] << 16 | data[(4 * bank->bus_width) - 1] << 24;
246 }
247
248 void cfi_intel_clear_status_register(flash_bank_t *bank)
249 {
250 target_t *target = bank->target;
251 u8 command[8];
252
253 if (target->state != TARGET_HALTED)
254 {
255 ERROR("BUG: attempted to clear status register while target wasn't halted");
256 exit(-1);
257 }
258
259 cfi_command(bank, 0x50, command);
260 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
261 }
262
263 u8 cfi_intel_wait_status_busy(flash_bank_t *bank, int timeout)
264 {
265 u8 status;
266
267 while ((!((status = cfi_get_u8(bank, 0, 0x0)) & 0x80)) && (timeout-- > 0))
268 {
269 DEBUG("status: 0x%x", status);
270 usleep(1000);
271 }
272
273 /* mask out bit 0 (reserved) */
274 status = status & 0xfe;
275
276 DEBUG("status: 0x%x", status);
277
278 if ((status & 0x80) != 0x80)
279 {
280 ERROR("timeout while waiting for WSM to become ready");
281 }
282 else if (status != 0x80)
283 {
284 ERROR("status register: 0x%x", status);
285 if (status & 0x2)
286 ERROR("Block Lock-Bit Detected, Operation Abort");
287 if (status & 0x4)
288 ERROR("Program suspended");
289 if (status & 0x8)
290 ERROR("Low Programming Voltage Detected, Operation Aborted");
291 if (status & 0x10)
292 ERROR("Program Error / Error in Setting Lock-Bit");
293 if (status & 0x20)
294 ERROR("Error in Block Erasure or Clear Lock-Bits");
295 if (status & 0x40)
296 ERROR("Block Erase Suspended");
297
298 cfi_intel_clear_status_register(bank);
299 }
300
301 return status;
302 }
303
304 int cfi_spansion_wait_status_busy(flash_bank_t *bank, int timeout)
305 {
306 u8 status, oldstatus;
307
308 oldstatus = cfi_get_u8(bank, 0, 0x0);
309
310 do {
311 status = cfi_get_u8(bank, 0, 0x0);
312 if ((status ^ oldstatus) & 0x40) {
313 if (status & 0x20) {
314 oldstatus = cfi_get_u8(bank, 0, 0x0);
315 status = cfi_get_u8(bank, 0, 0x0);
316 if ((status ^ oldstatus) & 0x40) {
317 ERROR("dq5 timeout, status: 0x%x", status);
318 return(ERROR_FLASH_OPERATION_FAILED);
319 } else {
320 DEBUG("status: 0x%x", status);
321 return(ERROR_OK);
322 }
323 }
324 } else {
325 DEBUG("status: 0x%x", status);
326 return(ERROR_OK);
327 }
328
329 oldstatus = status;
330 usleep(1000);
331 } while (timeout-- > 0);
332
333 ERROR("timeout, status: 0x%x", status);
334
335 return(ERROR_FLASH_BUSY);
336 }
337
338 int cfi_read_intel_pri_ext(flash_bank_t *bank)
339 {
340 cfi_flash_bank_t *cfi_info = bank->driver_priv;
341 cfi_intel_pri_ext_t *pri_ext = malloc(sizeof(cfi_intel_pri_ext_t));
342 target_t *target = bank->target;
343 u8 command[8];
344
345 cfi_info->pri_ext = pri_ext;
346
347 pri_ext->pri[0] = cfi_query_u8(bank, 0, cfi_info->pri_addr + 0);
348 pri_ext->pri[1] = cfi_query_u8(bank, 0, cfi_info->pri_addr + 1);
349 pri_ext->pri[2] = cfi_query_u8(bank, 0, cfi_info->pri_addr + 2);
350
351 if ((pri_ext->pri[0] != 'P') || (pri_ext->pri[1] != 'R') || (pri_ext->pri[2] != 'I'))
352 {
353 cfi_command(bank, 0xf0, command);
354 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
355 cfi_command(bank, 0xff, command);
356 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
357 return ERROR_FLASH_BANK_INVALID;
358 }
359
360 pri_ext->major_version = cfi_query_u8(bank, 0, cfi_info->pri_addr + 3);
361 pri_ext->minor_version = cfi_query_u8(bank, 0, cfi_info->pri_addr + 4);
362
363 DEBUG("pri: '%c%c%c', version: %c.%c", pri_ext->pri[0], pri_ext->pri[1], pri_ext->pri[2], pri_ext->major_version, pri_ext->minor_version);
364
365 pri_ext->feature_support = cfi_query_u32(bank, 0, cfi_info->pri_addr + 5);
366 pri_ext->suspend_cmd_support = cfi_query_u8(bank, 0, cfi_info->pri_addr + 9);
367 pri_ext->blk_status_reg_mask = cfi_query_u16(bank, 0, cfi_info->pri_addr + 0xa);
368
369 DEBUG("feature_support: 0x%x, suspend_cmd_support: 0x%x, blk_status_reg_mask: 0x%x", pri_ext->feature_support, pri_ext->suspend_cmd_support, pri_ext->blk_status_reg_mask);
370
371 pri_ext->vcc_optimal = cfi_query_u8(bank, 0, cfi_info->pri_addr + 0xc);
372 pri_ext->vpp_optimal = cfi_query_u8(bank, 0, cfi_info->pri_addr + 0xd);
373
374 DEBUG("Vcc opt: %1.1x.%1.1x, Vpp opt: %1.1x.%1.1x",
375 (pri_ext->vcc_optimal & 0xf0) >> 4, pri_ext->vcc_optimal & 0x0f,
376 (pri_ext->vpp_optimal & 0xf0) >> 4, pri_ext->vpp_optimal & 0x0f);
377
378 pri_ext->num_protection_fields = cfi_query_u8(bank, 0, cfi_info->pri_addr + 0xe);
379 if (pri_ext->num_protection_fields != 1)
380 {
381 WARNING("expected one protection register field, but found %i", pri_ext->num_protection_fields);
382 }
383
384 pri_ext->prot_reg_addr = cfi_query_u16(bank, 0, cfi_info->pri_addr + 0xf);
385 pri_ext->fact_prot_reg_size = cfi_query_u8(bank, 0, cfi_info->pri_addr + 0x11);
386 pri_ext->user_prot_reg_size = cfi_query_u8(bank, 0, cfi_info->pri_addr + 0x12);
387
388 DEBUG("protection_fields: %i, prot_reg_addr: 0x%x, factory pre-programmed: %i, user programmable: %i", pri_ext->num_protection_fields, pri_ext->prot_reg_addr, 1 << pri_ext->fact_prot_reg_size, 1 << pri_ext->user_prot_reg_size);
389
390 return ERROR_OK;
391 }
392
393 int cfi_read_spansion_pri_ext(flash_bank_t *bank)
394 {
395 cfi_flash_bank_t *cfi_info = bank->driver_priv;
396 cfi_spansion_pri_ext_t *pri_ext = malloc(sizeof(cfi_spansion_pri_ext_t));
397 target_t *target = bank->target;
398 u8 command[8];
399
400 cfi_info->pri_ext = pri_ext;
401
402 pri_ext->pri[0] = cfi_query_u8(bank, 0, cfi_info->pri_addr + 0);
403 pri_ext->pri[1] = cfi_query_u8(bank, 0, cfi_info->pri_addr + 1);
404 pri_ext->pri[2] = cfi_query_u8(bank, 0, cfi_info->pri_addr + 2);
405
406 if ((pri_ext->pri[0] != 'P') || (pri_ext->pri[1] != 'R') || (pri_ext->pri[2] != 'I'))
407 {
408 cfi_command(bank, 0xf0, command);
409 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
410 return ERROR_FLASH_BANK_INVALID;
411 }
412
413 pri_ext->major_version = cfi_query_u8(bank, 0, cfi_info->pri_addr + 3);
414 pri_ext->minor_version = cfi_query_u8(bank, 0, cfi_info->pri_addr + 4);
415
416 DEBUG("pri: '%c%c%c', version: %c.%c", pri_ext->pri[0], pri_ext->pri[1], pri_ext->pri[2], pri_ext->major_version, pri_ext->minor_version);
417
418 pri_ext->SiliconRevision = cfi_query_u8(bank, 0, cfi_info->pri_addr + 5);
419 pri_ext->EraseSuspend = cfi_query_u8(bank, 0, cfi_info->pri_addr + 6);
420 pri_ext->BlkProt = cfi_query_u8(bank, 0, cfi_info->pri_addr + 7);
421 pri_ext->TmpBlkUnprotect = cfi_query_u8(bank, 0, cfi_info->pri_addr + 8);
422 pri_ext->BlkProtUnprot = cfi_query_u8(bank, 0, cfi_info->pri_addr + 9);
423 pri_ext->SimultaneousOps = cfi_query_u8(bank, 0, cfi_info->pri_addr + 10);
424 pri_ext->BurstMode = cfi_query_u8(bank, 0, cfi_info->pri_addr + 11);
425 pri_ext->PageMode = cfi_query_u8(bank, 0, cfi_info->pri_addr + 12);
426 pri_ext->VppMin = cfi_query_u8(bank, 0, cfi_info->pri_addr + 13);
427 pri_ext->VppMax = cfi_query_u8(bank, 0, cfi_info->pri_addr + 14);
428 pri_ext->TopBottom = cfi_query_u8(bank, 0, cfi_info->pri_addr + 15);
429
430 DEBUG("Silicon Revision: 0x%x, Erase Suspend: 0x%x, Block protect: 0x%x", pri_ext->SiliconRevision,
431 pri_ext->EraseSuspend, pri_ext->BlkProt);
432
433 DEBUG("Temporary Unprotect: 0x%x, Block Protect Scheme: 0x%x, Simultaneous Ops: 0x%x", pri_ext->TmpBlkUnprotect,
434 pri_ext->BlkProtUnprot, pri_ext->SimultaneousOps);
435
436 DEBUG("Burst Mode: 0x%x, Page Mode: 0x%x, ", pri_ext->BurstMode, pri_ext->PageMode);
437
438
439 DEBUG("Vpp min: %2.2d.%1.1d, Vpp max: %2.2d.%1.1x",
440 (pri_ext->VppMin & 0xf0) >> 4, pri_ext->VppMin & 0x0f,
441 (pri_ext->VppMax & 0xf0) >> 4, pri_ext->VppMax & 0x0f);
442
443 DEBUG("WP# protection 0x%x", pri_ext->TopBottom);
444
445 /* default values for implementation specific workarounds */
446 pri_ext->_unlock1 = cfi_unlock_addresses[CFI_UNLOCK_555_2AA].unlock1;
447 pri_ext->_unlock2 = cfi_unlock_addresses[CFI_UNLOCK_555_2AA].unlock2;
448 pri_ext->_reversed_geometry = 0;
449
450 return ERROR_OK;
451 }
452
453 int cfi_read_atmel_pri_ext(flash_bank_t *bank)
454 {
455 cfi_atmel_pri_ext_t atmel_pri_ext;
456 cfi_flash_bank_t *cfi_info = bank->driver_priv;
457 cfi_spansion_pri_ext_t *pri_ext = malloc(sizeof(cfi_spansion_pri_ext_t));
458 target_t *target = bank->target;
459 u8 command[8];
460
461 /* ATMEL devices use the same CFI primary command set (0x2) as AMD/Spansion,
462 * but a different primary extended query table.
463 * We read the atmel table, and prepare a valid AMD/Spansion query table.
464 */
465
466 memset(pri_ext, 0, sizeof(cfi_spansion_pri_ext_t));
467
468 cfi_info->pri_ext = pri_ext;
469
470 atmel_pri_ext.pri[0] = cfi_query_u8(bank, 0, cfi_info->pri_addr + 0);
471 atmel_pri_ext.pri[1] = cfi_query_u8(bank, 0, cfi_info->pri_addr + 1);
472 atmel_pri_ext.pri[2] = cfi_query_u8(bank, 0, cfi_info->pri_addr + 2);
473
474 if ((atmel_pri_ext.pri[0] != 'P') || (atmel_pri_ext.pri[1] != 'R') || (atmel_pri_ext.pri[2] != 'I'))
475 {
476 cfi_command(bank, 0xf0, command);
477 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
478 return ERROR_FLASH_BANK_INVALID;
479 }
480
481 pri_ext->pri[0] = atmel_pri_ext.pri[0];
482 pri_ext->pri[1] = atmel_pri_ext.pri[1];
483 pri_ext->pri[2] = atmel_pri_ext.pri[2];
484
485 atmel_pri_ext.major_version = cfi_query_u8(bank, 0, cfi_info->pri_addr + 3);
486 atmel_pri_ext.minor_version = cfi_query_u8(bank, 0, cfi_info->pri_addr + 4);
487
488 DEBUG("pri: '%c%c%c', version: %c.%c", atmel_pri_ext.pri[0], atmel_pri_ext.pri[1], atmel_pri_ext.pri[2], atmel_pri_ext.major_version, atmel_pri_ext.minor_version);
489
490 pri_ext->major_version = atmel_pri_ext.major_version;
491 pri_ext->minor_version = atmel_pri_ext.minor_version;
492
493 atmel_pri_ext.features = cfi_query_u8(bank, 0, cfi_info->pri_addr + 5);
494 atmel_pri_ext.bottom_boot = cfi_query_u8(bank, 0, cfi_info->pri_addr + 6);
495 atmel_pri_ext.burst_mode = cfi_query_u8(bank, 0, cfi_info->pri_addr + 7);
496 atmel_pri_ext.page_mode = cfi_query_u8(bank, 0, cfi_info->pri_addr + 8);
497
498 DEBUG("features: 0x%2.2x, bottom_boot: 0x%2.2x, burst_mode: 0x%2.2x, page_mode: 0x%2.2x",
499 atmel_pri_ext.features, atmel_pri_ext.bottom_boot, atmel_pri_ext.burst_mode, atmel_pri_ext.page_mode);
500
501 if (atmel_pri_ext.features & 0x02)
502 pri_ext->EraseSuspend = 2;
503
504 if (atmel_pri_ext.bottom_boot)
505 pri_ext->TopBottom = 2;
506 else
507 pri_ext->TopBottom = 3;
508
509 pri_ext->_unlock1 = cfi_unlock_addresses[CFI_UNLOCK_555_2AA].unlock1;
510 pri_ext->_unlock2 = cfi_unlock_addresses[CFI_UNLOCK_555_2AA].unlock2;
511
512 return ERROR_OK;
513 }
514
515 int cfi_read_0002_pri_ext(flash_bank_t *bank)
516 {
517 cfi_flash_bank_t *cfi_info = bank->driver_priv;
518
519 if (cfi_info->manufacturer == CFI_MFR_ATMEL)
520 {
521 return cfi_read_atmel_pri_ext(bank);
522 }
523 else
524 {
525 return cfi_read_spansion_pri_ext(bank);
526 }
527 }
528
529 int cfi_spansion_info(struct flash_bank_s *bank, char *buf, int buf_size)
530 {
531 int printed;
532 cfi_flash_bank_t *cfi_info = bank->driver_priv;
533 cfi_spansion_pri_ext_t *pri_ext = cfi_info->pri_ext;
534
535 printed = snprintf(buf, buf_size, "\nSpansion primary algorithm extend information:\n");
536 buf += printed;
537 buf_size -= printed;
538
539 printed = snprintf(buf, buf_size, "pri: '%c%c%c', version: %c.%c\n", pri_ext->pri[0],
540 pri_ext->pri[1], pri_ext->pri[2],
541 pri_ext->major_version, pri_ext->minor_version);
542 buf += printed;
543 buf_size -= printed;
544
545 printed = snprintf(buf, buf_size, "Silicon Rev.: 0x%x, Address Sensitive unlock: 0x%x\n",
546 (pri_ext->SiliconRevision) >> 2,
547 (pri_ext->SiliconRevision) & 0x03);
548 buf += printed;
549 buf_size -= printed;
550
551 printed = snprintf(buf, buf_size, "Erase Suspend: 0x%x, Sector Protect: 0x%x\n",
552 pri_ext->EraseSuspend,
553 pri_ext->BlkProt);
554 buf += printed;
555 buf_size -= printed;
556
557 printed = snprintf(buf, buf_size, "VppMin: %2.2d.%1.1x, VppMax: %2.2d.%1.1x\n",
558 (pri_ext->VppMin & 0xf0) >> 4, pri_ext->VppMin & 0x0f,
559 (pri_ext->VppMax & 0xf0) >> 4, pri_ext->VppMax & 0x0f);
560
561 return ERROR_OK;
562 }
563
564 int cfi_intel_info(struct flash_bank_s *bank, char *buf, int buf_size)
565 {
566 int printed;
567 cfi_flash_bank_t *cfi_info = bank->driver_priv;
568 cfi_intel_pri_ext_t *pri_ext = cfi_info->pri_ext;
569
570 printed = snprintf(buf, buf_size, "\nintel primary algorithm extend information:\n");
571 buf += printed;
572 buf_size -= printed;
573
574 printed = snprintf(buf, buf_size, "pri: '%c%c%c', version: %c.%c\n", pri_ext->pri[0], pri_ext->pri[1], pri_ext->pri[2], pri_ext->major_version, pri_ext->minor_version);
575 buf += printed;
576 buf_size -= printed;
577
578 printed = snprintf(buf, buf_size, "feature_support: 0x%x, suspend_cmd_support: 0x%x, blk_status_reg_mask: 0x%x\n", pri_ext->feature_support, pri_ext->suspend_cmd_support, pri_ext->blk_status_reg_mask);
579 buf += printed;
580 buf_size -= printed;
581
582 printed = snprintf(buf, buf_size, "Vcc opt: %1.1x.%1.1x, Vpp opt: %1.1x.%1.1x\n",
583 (pri_ext->vcc_optimal & 0xf0) >> 4, pri_ext->vcc_optimal & 0x0f,
584 (pri_ext->vpp_optimal & 0xf0) >> 4, pri_ext->vpp_optimal & 0x0f);
585 buf += printed;
586 buf_size -= printed;
587
588 printed = snprintf(buf, buf_size, "protection_fields: %i, prot_reg_addr: 0x%x, factory pre-programmed: %i, user programmable: %i\n", pri_ext->num_protection_fields, pri_ext->prot_reg_addr, 1 << pri_ext->fact_prot_reg_size, 1 << pri_ext->user_prot_reg_size);
589
590 return ERROR_OK;
591 }
592
593 int cfi_register_commands(struct command_context_s *cmd_ctx)
594 {
595 /*command_t *cfi_cmd = */
596 register_command(cmd_ctx, NULL, "cfi", NULL, COMMAND_ANY, "flash bank cfi <base> <size> <chip_width> <bus_width> <targetNum> [jedec_probe/x16_as_x8]");
597 /*
598 register_command(cmd_ctx, cfi_cmd, "part_id", cfi_handle_part_id_command, COMMAND_EXEC,
599 "print part id of cfi flash bank <num>");
600 */
601 return ERROR_OK;
602 }
603
604 /* flash_bank cfi <base> <size> <chip_width> <bus_width> <target#> [options]
605 */
606 int cfi_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct flash_bank_s *bank)
607 {
608 cfi_flash_bank_t *cfi_info;
609 int i;
610
611 if (argc < 6)
612 {
613 WARNING("incomplete flash_bank cfi configuration");
614 return ERROR_FLASH_BANK_INVALID;
615 }
616
617 if ((strtoul(args[4], NULL, 0) > CFI_MAX_CHIP_WIDTH)
618 || (strtoul(args[3], NULL, 0) > CFI_MAX_BUS_WIDTH))
619 {
620 ERROR("chip and bus width have to specified in bytes");
621 return ERROR_FLASH_BANK_INVALID;
622 }
623
624 cfi_info = malloc(sizeof(cfi_flash_bank_t));
625 cfi_info->probed = 0;
626 bank->driver_priv = cfi_info;
627
628 cfi_info->write_algorithm = NULL;
629 cfi_info->erase_check_algorithm = NULL;
630
631 cfi_info->x16_as_x8 = 0;
632 cfi_info->jedec_probe = 0;
633 cfi_info->not_cfi = 0;
634
635 for (i = 6; i < argc; i++)
636 {
637 if (strcmp(args[i], "x16_as_x8") == 0)
638 {
639 cfi_info->x16_as_x8 = 1;
640 }
641 else if (strcmp(args[i], "jedec_probe") == 0)
642 {
643 cfi_info->jedec_probe = 1;
644 }
645 }
646
647 cfi_info->write_algorithm = NULL;
648
649 /* bank wasn't probed yet */
650 cfi_info->qry[0] = -1;
651
652 return ERROR_OK;
653 }
654
655 int cfi_intel_erase(struct flash_bank_s *bank, int first, int last)
656 {
657 cfi_flash_bank_t *cfi_info = bank->driver_priv;
658 target_t *target = bank->target;
659 u8 command[8];
660 int i;
661
662 cfi_intel_clear_status_register(bank);
663
664 for (i = first; i <= last; i++)
665 {
666 cfi_command(bank, 0x20, command);
667 target->type->write_memory(target, flash_address(bank, i, 0x0), bank->bus_width, 1, command);
668
669 cfi_command(bank, 0xd0, command);
670 target->type->write_memory(target, flash_address(bank, i, 0x0), bank->bus_width, 1, command);
671
672 if (cfi_intel_wait_status_busy(bank, 1000 * (1 << cfi_info->block_erase_timeout_typ)) == 0x80)
673 bank->sectors[i].is_erased = 1;
674 else
675 {
676 cfi_command(bank, 0xff, command);
677 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
678
679 ERROR("couldn't erase block %i of flash bank at base 0x%x", i, bank->base);
680 return ERROR_FLASH_OPERATION_FAILED;
681 }
682 }
683
684 cfi_command(bank, 0xff, command);
685 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
686
687 return ERROR_OK;
688 }
689
690 int cfi_spansion_erase(struct flash_bank_s *bank, int first, int last)
691 {
692 cfi_flash_bank_t *cfi_info = bank->driver_priv;
693 cfi_spansion_pri_ext_t *pri_ext = cfi_info->pri_ext;
694 target_t *target = bank->target;
695 u8 command[8];
696 int i;
697
698 for (i = first; i <= last; i++)
699 {
700 cfi_command(bank, 0xaa, command);
701 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock1), bank->bus_width, 1, command);
702
703 cfi_command(bank, 0x55, command);
704 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock2), bank->bus_width, 1, command);
705
706 cfi_command(bank, 0x80, command);
707 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock1), bank->bus_width, 1, command);
708
709 cfi_command(bank, 0xaa, command);
710 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock1), bank->bus_width, 1, command);
711
712 cfi_command(bank, 0x55, command);
713 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock2), bank->bus_width, 1, command);
714
715 cfi_command(bank, 0x30, command);
716 target->type->write_memory(target, flash_address(bank, i, 0x0), bank->bus_width, 1, command);
717
718 if (cfi_spansion_wait_status_busy(bank, 1000 * (1 << cfi_info->block_erase_timeout_typ)) == ERROR_OK)
719 bank->sectors[i].is_erased = 1;
720 else
721 {
722 cfi_command(bank, 0xf0, command);
723 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
724
725 ERROR("couldn't erase block %i of flash bank at base 0x%x", i, bank->base);
726 return ERROR_FLASH_OPERATION_FAILED;
727 }
728 }
729
730 cfi_command(bank, 0xf0, command);
731 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
732
733 return ERROR_OK;
734 }
735
736 int cfi_erase(struct flash_bank_s *bank, int first, int last)
737 {
738 cfi_flash_bank_t *cfi_info = bank->driver_priv;
739
740 if (bank->target->state != TARGET_HALTED)
741 {
742 return ERROR_TARGET_NOT_HALTED;
743 }
744
745 if ((first < 0) || (last < first) || (last >= bank->num_sectors))
746 {
747 return ERROR_FLASH_SECTOR_INVALID;
748 }
749
750 if (cfi_info->qry[0] != 'Q')
751 return ERROR_FLASH_BANK_NOT_PROBED;
752
753 switch(cfi_info->pri_id)
754 {
755 case 1:
756 case 3:
757 return cfi_intel_erase(bank, first, last);
758 break;
759 case 2:
760 return cfi_spansion_erase(bank, first, last);
761 break;
762 default:
763 ERROR("cfi primary command set %i unsupported", cfi_info->pri_id);
764 break;
765 }
766
767 return ERROR_OK;
768 }
769
770 int cfi_intel_protect(struct flash_bank_s *bank, int set, int first, int last)
771 {
772 cfi_flash_bank_t *cfi_info = bank->driver_priv;
773 cfi_intel_pri_ext_t *pri_ext = cfi_info->pri_ext;
774 target_t *target = bank->target;
775 u8 command[8];
776 int retry = 0;
777 int i;
778
779 /* if the device supports neither legacy lock/unlock (bit 3) nor
780 * instant individual block locking (bit 5).
781 */
782 if (!(pri_ext->feature_support & 0x28))
783 return ERROR_FLASH_OPERATION_FAILED;
784
785 cfi_intel_clear_status_register(bank);
786
787 for (i = first; i <= last; i++)
788 {
789 cfi_command(bank, 0x60, command);
790 DEBUG("address: 0x%4.4x, command: 0x%4.4x", flash_address(bank, i, 0x0), target_buffer_get_u32(target, command));
791 target->type->write_memory(target, flash_address(bank, i, 0x0), bank->bus_width, 1, command);
792 if (set)
793 {
794 cfi_command(bank, 0x01, command);
795 DEBUG("address: 0x%4.4x, command: 0x%4.4x", flash_address(bank, i, 0x0), target_buffer_get_u32(target, command));
796 target->type->write_memory(target, flash_address(bank, i, 0x0), bank->bus_width, 1, command);
797 bank->sectors[i].is_protected = 1;
798 }
799 else
800 {
801 cfi_command(bank, 0xd0, command);
802 DEBUG("address: 0x%4.4x, command: 0x%4.4x", flash_address(bank, i, 0x0), target_buffer_get_u32(target, command));
803 target->type->write_memory(target, flash_address(bank, i, 0x0), bank->bus_width, 1, command);
804 bank->sectors[i].is_protected = 0;
805 }
806
807 /* instant individual block locking doesn't require reading of the status register */
808 if (!(pri_ext->feature_support & 0x20))
809 {
810 /* Clear lock bits operation may take up to 1.4s */
811 cfi_intel_wait_status_busy(bank, 1400);
812 }
813 else
814 {
815 u8 block_status;
816 /* read block lock bit, to verify status */
817 cfi_command(bank, 0x90, command);
818 target->type->write_memory(target, flash_address(bank, 0, 0x55), bank->bus_width, 1, command);
819 block_status = cfi_get_u8(bank, i, 0x2);
820
821 if ((block_status & 0x1) != set)
822 {
823 ERROR("couldn't change block lock status (set = %i, block_status = 0x%2.2x)", set, block_status);
824 cfi_command(bank, 0x70, command);
825 target->type->write_memory(target, flash_address(bank, 0, 0x55), bank->bus_width, 1, command);
826 cfi_intel_wait_status_busy(bank, 10);
827
828 if (retry > 10)
829 return ERROR_FLASH_OPERATION_FAILED;
830 else
831 {
832 i--;
833 retry++;
834 }
835 }
836 }
837 }
838
839 /* if the device doesn't support individual block lock bits set/clear,
840 * all blocks have been unlocked in parallel, so we set those that should be protected
841 */
842 if ((!set) && (!(pri_ext->feature_support & 0x20)))
843 {
844 for (i = 0; i < bank->num_sectors; i++)
845 {
846 if (bank->sectors[i].is_protected == 1)
847 {
848 cfi_intel_clear_status_register(bank);
849
850 cfi_command(bank, 0x60, command);
851 target->type->write_memory(target, flash_address(bank, i, 0x0), bank->bus_width, 1, command);
852
853 cfi_command(bank, 0x01, command);
854 target->type->write_memory(target, flash_address(bank, i, 0x0), bank->bus_width, 1, command);
855
856 cfi_intel_wait_status_busy(bank, 100);
857 }
858 }
859 }
860
861 cfi_command(bank, 0xff, command);
862 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
863
864 return ERROR_OK;
865 }
866
867 int cfi_protect(struct flash_bank_s *bank, int set, int first, int last)
868 {
869 cfi_flash_bank_t *cfi_info = bank->driver_priv;
870
871 if (bank->target->state != TARGET_HALTED)
872 {
873 return ERROR_TARGET_NOT_HALTED;
874 }
875
876 if ((first < 0) || (last < first) || (last >= bank->num_sectors))
877 {
878 return ERROR_FLASH_SECTOR_INVALID;
879 }
880
881 if (cfi_info->qry[0] != 'Q')
882 return ERROR_FLASH_BANK_NOT_PROBED;
883
884 switch(cfi_info->pri_id)
885 {
886 case 1:
887 case 3:
888 cfi_intel_protect(bank, set, first, last);
889 break;
890 default:
891 ERROR("cfi primary command set %i unsupported", cfi_info->pri_id);
892 break;
893 }
894
895 return ERROR_OK;
896 }
897
898 /* FIXME Replace this by a simple memcpy() - still unsure about sideeffects */
899 static void cfi_add_byte(struct flash_bank_s *bank, u8 *word, u8 byte)
900 {
901 //target_t *target = bank->target;
902
903 int i;
904
905 // NOTE:
906 // The data to flash must not be changed in endian! We write a bytestrem in
907 // target byte order already. Only the control and status byte lane of the flash
908 // WSM is interpreted by the CPU in different ways, when read a u16 or u32
909 // word (data seems to be in the upper or lower byte lane for u16 accesses).
910
911 //if (target->endianness == TARGET_LITTLE_ENDIAN)
912 //{
913 /* shift bytes */
914 for (i = 0; i < bank->bus_width - 1; i++)
915 word[i] = word[i + 1];
916 word[bank->bus_width - 1] = byte;
917 //}
918 //else
919 //{
920 // /* shift bytes */
921 // for (i = bank->bus_width - 1; i > 0; i--)
922 // word[i] = word[i - 1];
923 // word[0] = byte;
924 //}
925 }
926
927 /* Convert code image to target endian */
928 /* FIXME create general block conversion fcts in target.c?) */ static
929 void cfi_fix_code_endian(target_t *target, u32 *dest, const u32 *src, u32 count)
930 {
931 u32 i;
932 for (i=0; i< count; i++)
933 {
934 target_buffer_set_u32(target, (u8*)dest, *src);
935 dest++;
936 src++;
937 }
938 }
939
940 int cfi_intel_write_block(struct flash_bank_s *bank, u8 *buffer, u32 address, u32 count)
941 {
942 cfi_flash_bank_t *cfi_info = bank->driver_priv;
943 target_t *target = bank->target;
944 reg_param_t reg_params[7];
945 armv4_5_algorithm_t armv4_5_info;
946 working_area_t *source;
947 u32 buffer_size = 32768;
948 u8 write_command_buf[CFI_MAX_BUS_WIDTH];
949 u8 busy_pattern_buf[CFI_MAX_BUS_WIDTH];
950 u8 error_pattern_buf[CFI_MAX_BUS_WIDTH];
951 u32 write_command_val, busy_pattern_val, error_pattern_val;
952
953 /* algorithm register usage:
954 * r0: source address (in RAM)
955 * r1: target address (in Flash)
956 * r2: count
957 * r3: flash write command
958 * r4: status byte (returned to host)
959 * r5: busy test pattern
960 * r6: error test pattern
961 */
962
963 static const u32 word_32_code[] = {
964 0xe4904004, /* loop: ldr r4, [r0], #4 */
965 0xe5813000, /* str r3, [r1] */
966 0xe5814000, /* str r4, [r1] */
967 0xe5914000, /* busy: ldr r4, [r1] */
968 0xe0047005, /* and r7, r4, r5 */
969 0xe1570005, /* cmp r7, r5 */
970 0x1afffffb, /* bne busy */
971 0xe1140006, /* tst r4, r6 */
972 0x1a000003, /* bne done */
973 0xe2522001, /* subs r2, r2, #1 */
974 0x0a000001, /* beq done */
975 0xe2811004, /* add r1, r1 #4 */
976 0xeafffff2, /* b loop */
977 0xeafffffe /* done: b -2 */
978 };
979
980 static const u32 word_16_code[] = {
981 0xe0d040b2, /* loop: ldrh r4, [r0], #2 */
982 0xe1c130b0, /* strh r3, [r1] */
983 0xe1c140b0, /* strh r4, [r1] */
984 0xe1d140b0, /* busy ldrh r4, [r1] */
985 0xe0047005, /* and r7, r4, r5 */
986 0xe1570005, /* cmp r7, r5 */
987 0x1afffffb, /* bne busy */
988 0xe1140006, /* tst r4, r6 */
989 0x1a000003, /* bne done */
990 0xe2522001, /* subs r2, r2, #1 */
991 0x0a000001, /* beq done */
992 0xe2811002, /* add r1, r1 #2 */
993 0xeafffff2, /* b loop */
994 0xeafffffe /* done: b -2 */
995 };
996
997 static const u32 word_8_code[] = {
998 0xe4d04001, /* loop: ldrb r4, [r0], #1 */
999 0xe5c13000, /* strb r3, [r1] */
1000 0xe5c14000, /* strb r4, [r1] */
1001 0xe5d14000, /* busy ldrb r4, [r1] */
1002 0xe0047005, /* and r7, r4, r5 */
1003 0xe1570005, /* cmp r7, r5 */
1004 0x1afffffb, /* bne busy */
1005 0xe1140006, /* tst r4, r6 */
1006 0x1a000003, /* bne done */
1007 0xe2522001, /* subs r2, r2, #1 */
1008 0x0a000001, /* beq done */
1009 0xe2811001, /* add r1, r1 #1 */
1010 0xeafffff2, /* b loop */
1011 0xeafffffe /* done: b -2 */
1012 };
1013 u32 target_code[CFI_MAX_INTEL_CODESIZE];
1014 const u32 *target_code_src;
1015 int target_code_size;
1016 int retval = ERROR_OK;
1017
1018
1019 cfi_intel_clear_status_register(bank);
1020
1021 armv4_5_info.common_magic = ARMV4_5_COMMON_MAGIC;
1022 armv4_5_info.core_mode = ARMV4_5_MODE_SVC;
1023 armv4_5_info.core_state = ARMV4_5_STATE_ARM;
1024
1025 /* If we are setting up the write_algorith, we need target_code_src */
1026 /* if not we only need target_code_size. */
1027 /* */
1028 /* However, we don't want to create multiple code paths, so we */
1029 /* do the unecessary evaluation of target_code_src, which the */
1030 /* compiler will probably nicely optimize away if not needed */
1031
1032 /* prepare algorithm code for target endian */
1033 switch (bank->bus_width)
1034 {
1035 case 1 :
1036 target_code_src = word_8_code;
1037 target_code_size = sizeof(word_8_code);
1038 break;
1039 case 2 :
1040 target_code_src = word_16_code;
1041 target_code_size = sizeof(word_16_code);
1042 break;
1043 case 4 :
1044 target_code_src = word_32_code;
1045 target_code_size = sizeof(word_32_code);
1046 break;
1047 default:
1048 ERROR("Unsupported bank buswidth %d, can't do block memory writes", bank->bus_width);
1049 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1050 }
1051
1052 /* flash write code */
1053 if (!cfi_info->write_algorithm)
1054 {
1055 if ( target_code_size > sizeof(target_code) )
1056 {
1057 WARNING("Internal error - target code buffer to small. Increase CFI_MAX_INTEL_CODESIZE and recompile.");
1058 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1059 }
1060 cfi_fix_code_endian(target, target_code, target_code_src, target_code_size);
1061
1062 /* Get memory for block write handler */
1063 retval = target_alloc_working_area(target, target_code_size, &cfi_info->write_algorithm);
1064 if (retval != ERROR_OK)
1065 {
1066 WARNING("No working area available, can't do block memory writes");
1067 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1068 };
1069
1070 /* write algorithm code to working area */
1071 retval = target_write_buffer(target, cfi_info->write_algorithm->address, target_code_size, (u8*)target_code);
1072 if (retval != ERROR_OK)
1073 {
1074 ERROR("Unable to write block write code to target");
1075 goto cleanup;
1076 }
1077 }
1078
1079 /* Get a workspace buffer for the data to flash starting with 32k size.
1080 Half size until buffer would be smaller 256 Bytem then fail back */
1081 /* FIXME Why 256 bytes, why not 32 bytes (smallest flash write page */
1082 while (target_alloc_working_area(target, buffer_size, &source) != ERROR_OK)
1083 {
1084 buffer_size /= 2;
1085 if (buffer_size <= 256)
1086 {
1087 WARNING("no large enough working area available, can't do block memory writes");
1088 retval = ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1089 goto cleanup;
1090 }
1091 };
1092
1093 /* setup algo registers */
1094 init_reg_param(&reg_params[0], "r0", 32, PARAM_OUT);
1095 init_reg_param(&reg_params[1], "r1", 32, PARAM_OUT);
1096 init_reg_param(&reg_params[2], "r2", 32, PARAM_OUT);
1097 init_reg_param(&reg_params[3], "r3", 32, PARAM_OUT);
1098 init_reg_param(&reg_params[4], "r4", 32, PARAM_IN);
1099 init_reg_param(&reg_params[5], "r5", 32, PARAM_OUT);
1100 init_reg_param(&reg_params[6], "r6", 32, PARAM_OUT);
1101
1102 /* prepare command and status register patterns */
1103 cfi_command(bank, 0x40, write_command_buf);
1104 cfi_command(bank, 0x80, busy_pattern_buf);
1105 cfi_command(bank, 0x7e, error_pattern_buf);
1106
1107 switch (bank->bus_width)
1108 {
1109 case 1 :
1110 write_command_val = write_command_buf[0];
1111 busy_pattern_val = busy_pattern_buf[0];
1112 error_pattern_val = error_pattern_buf[0];
1113 break;
1114 case 2 :
1115 write_command_val = target_buffer_get_u16(target, write_command_buf);
1116 busy_pattern_val = target_buffer_get_u16(target, busy_pattern_buf);
1117 error_pattern_val = target_buffer_get_u16(target, error_pattern_buf);
1118 break;
1119 case 4 :
1120 write_command_val = target_buffer_get_u32(target, write_command_buf);
1121 busy_pattern_val = target_buffer_get_u32(target, busy_pattern_buf);
1122 error_pattern_val = target_buffer_get_u32(target, error_pattern_buf);
1123 break;
1124 default :
1125 ERROR("Unsupported bank buswidth %d, can't do block memory writes", bank->bus_width);
1126 retval = ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1127 goto cleanup;
1128 }
1129
1130 INFO("Using target buffer at 0x%08x and of size 0x%04x", source->address, buffer_size );
1131
1132 /* Programming main loop */
1133 while (count > 0)
1134 {
1135 u32 thisrun_count = (count > buffer_size) ? buffer_size : count;
1136 u32 wsm_error;
1137
1138 target_write_buffer(target, source->address, thisrun_count, buffer);
1139
1140 buf_set_u32(reg_params[0].value, 0, 32, source->address);
1141 buf_set_u32(reg_params[1].value, 0, 32, address);
1142 buf_set_u32(reg_params[2].value, 0, 32, thisrun_count / bank->bus_width);
1143
1144 buf_set_u32(reg_params[3].value, 0, 32, write_command_val);
1145 buf_set_u32(reg_params[5].value, 0, 32, busy_pattern_val);
1146 buf_set_u32(reg_params[6].value, 0, 32, error_pattern_val);
1147
1148 INFO("Write 0x%04x bytes to flash at 0x%08x", thisrun_count, address );
1149
1150 /* Execute algorithm, assume breakpoint for last instruction */
1151 retval = target->type->run_algorithm(target, 0, NULL, 7, reg_params,
1152 cfi_info->write_algorithm->address,
1153 cfi_info->write_algorithm->address + target_code_size - sizeof(u32),
1154 10000, /* 10s should be enough for max. 32k of data */
1155 &armv4_5_info);
1156
1157 /* On failure try a fall back to direct word writes */
1158 if (retval != ERROR_OK)
1159 {
1160 cfi_intel_clear_status_register(bank);
1161 ERROR("Execution of flash algorythm failed. Can't fall back. Please report.");
1162 retval = ERROR_FLASH_OPERATION_FAILED;
1163 //retval = ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1164 // FIXME To allow fall back or recovery, we must save the actual status
1165 // somewhere, so that a higher level code can start recovery.
1166 goto cleanup;
1167 }
1168
1169 /* Check return value from algo code */
1170 wsm_error = buf_get_u32(reg_params[4].value, 0, 32) & error_pattern_val;
1171 if (wsm_error)
1172 {
1173 /* read status register (outputs debug inforation) */
1174 cfi_intel_wait_status_busy(bank, 100);
1175 cfi_intel_clear_status_register(bank);
1176 retval = ERROR_FLASH_OPERATION_FAILED;
1177 goto cleanup;
1178 }
1179
1180 buffer += thisrun_count;
1181 address += thisrun_count;
1182 count -= thisrun_count;
1183 }
1184
1185 /* free up resources */
1186 cleanup:
1187 if (source)
1188 target_free_working_area(target, source);
1189
1190 if (cfi_info->write_algorithm)
1191 {
1192 target_free_working_area(target, cfi_info->write_algorithm);
1193 cfi_info->write_algorithm = NULL;
1194 }
1195
1196 destroy_reg_param(&reg_params[0]);
1197 destroy_reg_param(&reg_params[1]);
1198 destroy_reg_param(&reg_params[2]);
1199 destroy_reg_param(&reg_params[3]);
1200 destroy_reg_param(&reg_params[4]);
1201 destroy_reg_param(&reg_params[5]);
1202 destroy_reg_param(&reg_params[6]);
1203
1204 return retval;
1205 }
1206
1207 int cfi_spansion_write_block(struct flash_bank_s *bank, u8 *buffer, u32 address, u32 count)
1208 {
1209 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1210 cfi_spansion_pri_ext_t *pri_ext = cfi_info->pri_ext;
1211 target_t *target = bank->target;
1212 reg_param_t reg_params[10];
1213 armv4_5_algorithm_t armv4_5_info;
1214 working_area_t *source;
1215 u32 buffer_size = 32768;
1216 u8 write_command[CFI_MAX_BUS_WIDTH];
1217 u32 status;
1218 int i;
1219 int retval;
1220 int exit_code = ERROR_OK;
1221
1222 /* input parameters - */
1223 /* R0 = source address */
1224 /* R1 = destination address */
1225 /* R2 = number of writes */
1226 /* R3 = flash write command */
1227 /* R4 = constant to mask DQ7 bits (also used for Dq5 with shift) */
1228 /* output parameters - */
1229 /* R5 = 0x80 ok 0x00 bad */
1230 /* temp registers - */
1231 /* R6 = value read from flash to test status */
1232 /* R7 = holding register */
1233 /* unlock registers - */
1234 /* R8 = unlock1_addr */
1235 /* R9 = unlock1_cmd */
1236 /* R10 = unlock2_addr */
1237 /* R11 = unlock2_cmd */
1238
1239 u32 word_32_code[] = {
1240 /* 00008100 <sp_32_code>: */
1241 0xe4905004, /* ldr r5, [r0], #4 */
1242 0xe5889000, /* str r9, [r8] */
1243 0xe58ab000, /* str r11, [r10] */
1244 0xe5883000, /* str r3, [r8] */
1245 0xe5815000, /* str r5, [r1] */
1246 0xe1a00000, /* nop */
1247 /* */
1248 /* 00008110 <sp_32_busy>: */
1249 0xe5916000, /* ldr r6, [r1] */
1250 0xe0257006, /* eor r7, r5, r6 */
1251 0xe0147007, /* ands r7, r4, r7 */
1252 0x0a000007, /* beq 8140 <sp_32_cont> ; b if DQ7 == Data7 */
1253 0xe0166124, /* ands r6, r6, r4, lsr #2 */
1254 0x0afffff9, /* beq 8110 <sp_32_busy> ; b if DQ5 low */
1255 0xe5916000, /* ldr r6, [r1] */
1256 0xe0257006, /* eor r7, r5, r6 */
1257 0xe0147007, /* ands r7, r4, r7 */
1258 0x0a000001, /* beq 8140 <sp_32_cont> ; b if DQ7 == Data7 */
1259 0xe3a05000, /* mov r5, #0 ; 0x0 - return 0x00, error */
1260 0x1a000004, /* bne 8154 <sp_32_done> */
1261 /* */
1262 /* 00008140 <sp_32_cont>: */
1263 0xe2522001, /* subs r2, r2, #1 ; 0x1 */
1264 0x03a05080, /* moveq r5, #128 ; 0x80 */
1265 0x0a000001, /* beq 8154 <sp_32_done> */
1266 0xe2811004, /* add r1, r1, #4 ; 0x4 */
1267 0xeaffffe8, /* b 8100 <sp_32_code> */
1268 /* */
1269 /* 00008154 <sp_32_done>: */
1270 0xeafffffe /* b 8154 <sp_32_done> */
1271 };
1272
1273 u32 word_16_code[] = {
1274 /* 00008158 <sp_16_code>: */
1275 0xe0d050b2, /* ldrh r5, [r0], #2 */
1276 0xe1c890b0, /* strh r9, [r8] */
1277 0xe1cab0b0, /* strh r11, [r10] */
1278 0xe1c830b0, /* strh r3, [r8] */
1279 0xe1c150b0, /* strh r5, [r1] */
1280 0xe1a00000, /* nop (mov r0,r0) */
1281 /* */
1282 /* 00008168 <sp_16_busy>: */
1283 0xe1d160b0, /* ldrh r6, [r1] */
1284 0xe0257006, /* eor r7, r5, r6 */
1285 0xe0147007, /* ands r7, r4, r7 */
1286 0x0a000007, /* beq 8198 <sp_16_cont> */
1287 0xe0166124, /* ands r6, r6, r4, lsr #2 */
1288 0x0afffff9, /* beq 8168 <sp_16_busy> */
1289 0xe1d160b0, /* ldrh r6, [r1] */
1290 0xe0257006, /* eor r7, r5, r6 */
1291 0xe0147007, /* ands r7, r4, r7 */
1292 0x0a000001, /* beq 8198 <sp_16_cont> */
1293 0xe3a05000, /* mov r5, #0 ; 0x0 */
1294 0x1a000004, /* bne 81ac <sp_16_done> */
1295 /* */
1296 /* 00008198 <sp_16_cont>: */
1297 0xe2522001, /* subs r2, r2, #1 ; 0x1 */
1298 0x03a05080, /* moveq r5, #128 ; 0x80 */
1299 0x0a000001, /* beq 81ac <sp_16_done> */
1300 0xe2811002, /* add r1, r1, #2 ; 0x2 */
1301 0xeaffffe8, /* b 8158 <sp_16_code> */
1302 /* */
1303 /* 000081ac <sp_16_done>: */
1304 0xeafffffe /* b 81ac <sp_16_done> */
1305 };
1306
1307 u32 word_8_code[] = {
1308 /* 000081b0 <sp_16_code_end>: */
1309 0xe4d05001, /* ldrb r5, [r0], #1 */
1310 0xe5c89000, /* strb r9, [r8] */
1311 0xe5cab000, /* strb r11, [r10] */
1312 0xe5c83000, /* strb r3, [r8] */
1313 0xe5c15000, /* strb r5, [r1] */
1314 0xe1a00000, /* nop (mov r0,r0) */
1315 /* */
1316 /* 000081c0 <sp_8_busy>: */
1317 0xe5d16000, /* ldrb r6, [r1] */
1318 0xe0257006, /* eor r7, r5, r6 */
1319 0xe0147007, /* ands r7, r4, r7 */
1320 0x0a000007, /* beq 81f0 <sp_8_cont> */
1321 0xe0166124, /* ands r6, r6, r4, lsr #2 */
1322 0x0afffff9, /* beq 81c0 <sp_8_busy> */
1323 0xe5d16000, /* ldrb r6, [r1] */
1324 0xe0257006, /* eor r7, r5, r6 */
1325 0xe0147007, /* ands r7, r4, r7 */
1326 0x0a000001, /* beq 81f0 <sp_8_cont> */
1327 0xe3a05000, /* mov r5, #0 ; 0x0 */
1328 0x1a000004, /* bne 8204 <sp_8_done> */
1329 /* */
1330 /* 000081f0 <sp_8_cont>: */
1331 0xe2522001, /* subs r2, r2, #1 ; 0x1 */
1332 0x03a05080, /* moveq r5, #128 ; 0x80 */
1333 0x0a000001, /* beq 8204 <sp_8_done> */
1334 0xe2811001, /* add r1, r1, #1 ; 0x1 */
1335 0xeaffffe8, /* b 81b0 <sp_16_code_end> */
1336 /* */
1337 /* 00008204 <sp_8_done>: */
1338 0xeafffffe /* b 8204 <sp_8_done> */
1339 };
1340
1341 armv4_5_info.common_magic = ARMV4_5_COMMON_MAGIC;
1342 armv4_5_info.core_mode = ARMV4_5_MODE_SVC;
1343 armv4_5_info.core_state = ARMV4_5_STATE_ARM;
1344
1345 /* flash write code */
1346 if (!cfi_info->write_algorithm)
1347 {
1348 u8 *code_p;
1349
1350 /* convert bus-width dependent algorithm code to correct endiannes */
1351 if (bank->bus_width == 1)
1352 {
1353 code_p = malloc(24 * 4);
1354
1355 for (i = 0; i < 24; i++)
1356 target_buffer_set_u32(target, code_p + (i*4), word_8_code[i]);
1357 }
1358 else if (bank->bus_width == 2)
1359 {
1360 code_p = malloc(24 * 4);
1361
1362 for (i = 0; i < 24; i++)
1363 target_buffer_set_u32(target, code_p + (i*4), word_16_code[i]);
1364 }
1365 else if (bank->bus_width == 4)
1366 {
1367 code_p = malloc(24 * 4);
1368
1369 for (i = 0; i < 24; i++)
1370 target_buffer_set_u32(target, code_p + (i*4), word_32_code[i]);
1371 }
1372 else
1373 {
1374 return ERROR_FLASH_OPERATION_FAILED;
1375 }
1376
1377 /* allocate working area */
1378 if (target_alloc_working_area(target, 24 * 4,
1379 &cfi_info->write_algorithm) != ERROR_OK)
1380 {
1381 WARNING("no working area available, can't do block memory writes");
1382 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1383 }
1384
1385 /* write algorithm code to working area */
1386 target_write_buffer(target, cfi_info->write_algorithm->address, 24 * 4, code_p);
1387
1388 free(code_p);
1389 }
1390
1391 while (target_alloc_working_area(target, buffer_size, &source) != ERROR_OK)
1392 {
1393 buffer_size /= 2;
1394 if (buffer_size <= 256)
1395 {
1396 /* if we already allocated the writing code, but failed to get a buffer, free the algorithm */
1397 if (cfi_info->write_algorithm)
1398 target_free_working_area(target, cfi_info->write_algorithm);
1399
1400 WARNING("not enough working area available, can't do block memory writes");
1401 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
1402 }
1403 };
1404
1405 init_reg_param(&reg_params[0], "r0", 32, PARAM_OUT);
1406 init_reg_param(&reg_params[1], "r1", 32, PARAM_OUT);
1407 init_reg_param(&reg_params[2], "r2", 32, PARAM_OUT);
1408 init_reg_param(&reg_params[3], "r3", 32, PARAM_OUT);
1409 init_reg_param(&reg_params[4], "r4", 32, PARAM_OUT);
1410 init_reg_param(&reg_params[5], "r5", 32, PARAM_IN);
1411 init_reg_param(&reg_params[6], "r8", 32, PARAM_OUT);
1412 init_reg_param(&reg_params[7], "r9", 32, PARAM_OUT);
1413 init_reg_param(&reg_params[8], "r10", 32, PARAM_OUT);
1414 init_reg_param(&reg_params[9], "r11", 32, PARAM_OUT);
1415
1416 while (count > 0)
1417 {
1418 u32 thisrun_count = (count > buffer_size) ? buffer_size : count;
1419
1420 target_write_buffer(target, source->address, thisrun_count, buffer);
1421
1422 buf_set_u32(reg_params[0].value, 0, 32, source->address);
1423 buf_set_u32(reg_params[1].value, 0, 32, address);
1424 buf_set_u32(reg_params[2].value, 0, 32, thisrun_count / bank->bus_width);
1425 cfi_command(bank, 0xA0, write_command);
1426 buf_set_u32(reg_params[3].value, 0, 32, buf_get_u32(write_command, 0, 32));
1427 cfi_command(bank, 0x80, write_command);
1428 buf_set_u32(reg_params[4].value, 0, 32, buf_get_u32(write_command, 0, 32));
1429 buf_set_u32(reg_params[6].value, 0, 32, flash_address(bank, 0, pri_ext->_unlock1));
1430 buf_set_u32(reg_params[7].value, 0, 32, 0xaa);
1431 buf_set_u32(reg_params[8].value, 0, 32, flash_address(bank, 0, pri_ext->_unlock2));
1432 buf_set_u32(reg_params[9].value, 0, 32, 0x55);
1433
1434 retval = target->type->run_algorithm(target, 0, NULL, 10, reg_params,
1435 cfi_info->write_algorithm->address,
1436 cfi_info->write_algorithm->address + ((24 * 4) - 4),
1437 10000, &armv4_5_info);
1438
1439 status = buf_get_u32(reg_params[5].value, 0, 32);
1440
1441 if ((retval != ERROR_OK) || status != 0x80)
1442 {
1443 DEBUG("status: 0x%x", status);
1444 exit_code = ERROR_FLASH_OPERATION_FAILED;
1445 break;
1446 }
1447
1448 buffer += thisrun_count;
1449 address += thisrun_count;
1450 count -= thisrun_count;
1451 }
1452
1453 target_free_working_area(target, source);
1454
1455 destroy_reg_param(&reg_params[0]);
1456 destroy_reg_param(&reg_params[1]);
1457 destroy_reg_param(&reg_params[2]);
1458 destroy_reg_param(&reg_params[3]);
1459 destroy_reg_param(&reg_params[4]);
1460 destroy_reg_param(&reg_params[5]);
1461 destroy_reg_param(&reg_params[6]);
1462 destroy_reg_param(&reg_params[7]);
1463 destroy_reg_param(&reg_params[8]);
1464 destroy_reg_param(&reg_params[9]);
1465
1466 return exit_code;
1467 }
1468
1469 int cfi_intel_write_word(struct flash_bank_s *bank, u8 *word, u32 address)
1470 {
1471 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1472 target_t *target = bank->target;
1473 u8 command[8];
1474
1475 cfi_intel_clear_status_register(bank);
1476 cfi_command(bank, 0x40, command);
1477 target->type->write_memory(target, address, bank->bus_width, 1, command);
1478
1479 target->type->write_memory(target, address, bank->bus_width, 1, word);
1480
1481 if (cfi_intel_wait_status_busy(bank, 1000 * (1 << cfi_info->word_write_timeout_max)) != 0x80)
1482 {
1483 cfi_command(bank, 0xff, command);
1484 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
1485
1486 ERROR("couldn't write word at base 0x%x, address %x", bank->base, address);
1487 return ERROR_FLASH_OPERATION_FAILED;
1488 }
1489
1490 return ERROR_OK;
1491 }
1492
1493 int cfi_intel_write_words(struct flash_bank_s *bank, u8 *word, u32 wordcount, u32 address)
1494 {
1495 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1496 target_t *target = bank->target;
1497 u8 command[8];
1498
1499 /* Calculate buffer size and boundary mask */
1500 u32 buffersize = 1UL << cfi_info->max_buf_write_size;
1501 u32 buffermask = buffersize-1;
1502 u32 bufferwsize;
1503
1504 /* Check for valid range */
1505 if (address & buffermask)
1506 {
1507 ERROR("Write address at base 0x%x, address %x not aligned to 2^%d boundary", bank->base, address, cfi_info->max_buf_write_size);
1508 return ERROR_FLASH_OPERATION_FAILED;
1509 }
1510 switch(bank->chip_width)
1511 {
1512 case 4 : bufferwsize = buffersize / 4; break;
1513 case 2 : bufferwsize = buffersize / 2; break;
1514 case 1 : bufferwsize = buffersize; break;
1515 default:
1516 ERROR("Unsupported chip width %d", bank->chip_width);
1517 return ERROR_FLASH_OPERATION_FAILED;
1518 }
1519
1520 /* Check for valid size */
1521 if (wordcount > bufferwsize)
1522 {
1523 ERROR("Number of data words %d exceeds available buffersize %d", wordcount, buffersize);
1524 return ERROR_FLASH_OPERATION_FAILED;
1525 }
1526
1527 /* Write to flash buffer */
1528 cfi_intel_clear_status_register(bank);
1529
1530 /* Initiate buffer operation _*/
1531 cfi_command(bank, 0xE8, command);
1532 target->type->write_memory(target, address, bank->bus_width, 1, command);
1533 if (cfi_intel_wait_status_busy(bank, 1000 * (1 << cfi_info->buf_write_timeout_max)) != 0x80)
1534 {
1535 cfi_command(bank, 0xff, command);
1536 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
1537
1538 ERROR("couldn't start buffer write operation at base 0x%x, address %x", bank->base, address);
1539 return ERROR_FLASH_OPERATION_FAILED;
1540 }
1541
1542 /* Write buffer wordcount-1 and data words */
1543 cfi_command(bank, bufferwsize-1, command);
1544 target->type->write_memory(target, address, bank->bus_width, 1, command);
1545
1546 target->type->write_memory(target, address, bank->bus_width, bufferwsize, word);
1547
1548 /* Commit write operation */
1549 cfi_command(bank, 0xd0, command);
1550 target->type->write_memory(target, address, bank->bus_width, 1, command);
1551 if (cfi_intel_wait_status_busy(bank, 1000 * (1 << cfi_info->buf_write_timeout_max)) != 0x80)
1552 {
1553 cfi_command(bank, 0xff, command);
1554 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
1555
1556 ERROR("Buffer write at base 0x%x, address %x failed.", bank->base, address);
1557 return ERROR_FLASH_OPERATION_FAILED;
1558 }
1559
1560 return ERROR_OK;
1561 }
1562
1563 int cfi_spansion_write_word(struct flash_bank_s *bank, u8 *word, u32 address)
1564 {
1565 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1566 cfi_spansion_pri_ext_t *pri_ext = cfi_info->pri_ext;
1567 target_t *target = bank->target;
1568 u8 command[8];
1569
1570 cfi_command(bank, 0xaa, command);
1571 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock1), bank->bus_width, 1, command);
1572
1573 cfi_command(bank, 0x55, command);
1574 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock2), bank->bus_width, 1, command);
1575
1576 cfi_command(bank, 0xa0, command);
1577 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock1), bank->bus_width, 1, command);
1578
1579 target->type->write_memory(target, address, bank->bus_width, 1, word);
1580
1581 if (cfi_spansion_wait_status_busy(bank, 1000 * (1 << cfi_info->word_write_timeout_max)) != ERROR_OK)
1582 {
1583 cfi_command(bank, 0xf0, command);
1584 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
1585
1586 ERROR("couldn't write word at base 0x%x, address %x", bank->base, address);
1587 return ERROR_FLASH_OPERATION_FAILED;
1588 }
1589
1590 return ERROR_OK;
1591 }
1592
1593 int cfi_write_word(struct flash_bank_s *bank, u8 *word, u32 address)
1594 {
1595 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1596
1597 switch(cfi_info->pri_id)
1598 {
1599 case 1:
1600 case 3:
1601 return cfi_intel_write_word(bank, word, address);
1602 break;
1603 case 2:
1604 return cfi_spansion_write_word(bank, word, address);
1605 break;
1606 default:
1607 ERROR("cfi primary command set %i unsupported", cfi_info->pri_id);
1608 break;
1609 }
1610
1611 return ERROR_FLASH_OPERATION_FAILED;
1612 }
1613
1614 int cfi_write_words(struct flash_bank_s *bank, u8 *word, u32 wordcount, u32 address)
1615 {
1616 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1617
1618 switch(cfi_info->pri_id)
1619 {
1620 case 1:
1621 case 3:
1622 return cfi_intel_write_words(bank, word, wordcount, address);
1623 break;
1624 case 2:
1625 //return cfi_spansion_write_words(bank, word, address);
1626 ERROR("cfi primary command set %i unimplemented - FIXME", cfi_info->pri_id);
1627 break;
1628 default:
1629 ERROR("cfi primary command set %i unsupported", cfi_info->pri_id);
1630 break;
1631 }
1632
1633 return ERROR_FLASH_OPERATION_FAILED;
1634 }
1635
1636 int cfi_write(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 count)
1637 {
1638 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1639 target_t *target = bank->target;
1640 u32 address = bank->base + offset; /* address of first byte to be programmed */
1641 u32 write_p, copy_p;
1642 int align; /* number of unaligned bytes */
1643 int blk_count; /* number of bus_width bytes for block copy */
1644 u8 current_word[CFI_MAX_BUS_WIDTH * 4]; /* word (bus_width size) currently being programmed */
1645 int i;
1646 int retval;
1647
1648 if (bank->target->state != TARGET_HALTED)
1649 {
1650 return ERROR_TARGET_NOT_HALTED;
1651 }
1652
1653 if (offset + count > bank->size)
1654 return ERROR_FLASH_DST_OUT_OF_BANK;
1655
1656 if (cfi_info->qry[0] != 'Q')
1657 return ERROR_FLASH_BANK_NOT_PROBED;
1658
1659 /* start at the first byte of the first word (bus_width size) */
1660 write_p = address & ~(bank->bus_width - 1);
1661 if ((align = address - write_p) != 0)
1662 {
1663 INFO("Fixup %d unaligned head bytes", align );
1664
1665 for (i = 0; i < bank->bus_width; i++)
1666 current_word[i] = 0;
1667 copy_p = write_p;
1668
1669 /* copy bytes before the first write address */
1670 for (i = 0; i < align; ++i, ++copy_p)
1671 {
1672 u8 byte;
1673 target->type->read_memory(target, copy_p, 1, 1, &byte);
1674 cfi_add_byte(bank, current_word, byte);
1675 }
1676
1677 /* add bytes from the buffer */
1678 for (; (i < bank->bus_width) && (count > 0); i++)
1679 {
1680 cfi_add_byte(bank, current_word, *buffer++);
1681 count--;
1682 copy_p++;
1683 }
1684
1685 /* if the buffer is already finished, copy bytes after the last write address */
1686 for (; (count == 0) && (i < bank->bus_width); ++i, ++copy_p)
1687 {
1688 u8 byte;
1689 target->type->read_memory(target, copy_p, 1, 1, &byte);
1690 cfi_add_byte(bank, current_word, byte);
1691 }
1692
1693 retval = cfi_write_word(bank, current_word, write_p);
1694 if (retval != ERROR_OK)
1695 return retval;
1696 write_p = copy_p;
1697 }
1698
1699 /* handle blocks of bus_size aligned bytes */
1700 blk_count = count & ~(bank->bus_width - 1); /* round down, leave tail bytes */
1701 switch(cfi_info->pri_id)
1702 {
1703 /* try block writes (fails without working area) */
1704 case 1:
1705 case 3:
1706 retval = cfi_intel_write_block(bank, buffer, write_p, blk_count);
1707 break;
1708 case 2:
1709 retval = cfi_spansion_write_block(bank, buffer, write_p, blk_count);
1710 break;
1711 default:
1712 ERROR("cfi primary command set %i unsupported", cfi_info->pri_id);
1713 retval = ERROR_FLASH_OPERATION_FAILED;
1714 break;
1715 }
1716 if (retval == ERROR_OK)
1717 {
1718 /* Increment pointers and decrease count on succesful block write */
1719 buffer += blk_count;
1720 write_p += blk_count;
1721 count -= blk_count;
1722 }
1723 else
1724 {
1725 if (retval == ERROR_TARGET_RESOURCE_NOT_AVAILABLE)
1726 {
1727 u32 buffersize = 1UL << cfi_info->max_buf_write_size;
1728 u32 buffermask = buffersize-1;
1729 u32 bufferwsize;
1730
1731 switch(bank->chip_width)
1732 {
1733 case 4 : bufferwsize = buffersize / 4; break;
1734 case 2 : bufferwsize = buffersize / 2; break;
1735 case 1 : bufferwsize = buffersize; break;
1736 default:
1737 ERROR("Unsupported chip width %d", bank->chip_width);
1738 return ERROR_FLASH_OPERATION_FAILED;
1739 }
1740
1741 /* fall back to memory writes */
1742 while (count > bank->bus_width)
1743 {
1744 if ((write_p & 0xff) == 0)
1745 {
1746 INFO("Programming at %08x, count %08x bytes remaining", write_p, count);
1747 }
1748 if ((count > bufferwsize) && !(write_p & buffermask))
1749 {
1750 retval = cfi_write_words(bank, buffer, bufferwsize, write_p);
1751 if (retval != ERROR_OK)
1752 return retval;
1753
1754 buffer += buffersize;
1755 write_p += buffersize;
1756 count -= buffersize;
1757 }
1758 else
1759 {
1760 for (i = 0; i < bank->bus_width; i++)
1761 current_word[i] = 0;
1762
1763 for (i = 0; i < bank->bus_width; i++)
1764 {
1765 cfi_add_byte(bank, current_word, *buffer++);
1766 }
1767
1768 retval = cfi_write_word(bank, current_word, write_p);
1769 if (retval != ERROR_OK)
1770 return retval;
1771
1772 write_p += bank->bus_width;
1773 count -= bank->bus_width;
1774 }
1775 }
1776 }
1777 else
1778 return retval;
1779 }
1780
1781 /* return to read array mode, so we can read from flash again for padding */
1782 cfi_command(bank, 0xf0, current_word);
1783 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, current_word);
1784 cfi_command(bank, 0xff, current_word);
1785 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, current_word);
1786
1787 /* handle unaligned tail bytes */
1788 if (count > 0)
1789 {
1790 INFO("Fixup %d unaligned tail bytes", count );
1791
1792 copy_p = write_p;
1793 for (i = 0; i < bank->bus_width; i++)
1794 current_word[i] = 0;
1795
1796 for (i = 0; (i < bank->bus_width) && (count > 0); ++i, ++copy_p)
1797 {
1798 cfi_add_byte(bank, current_word, *buffer++);
1799 count--;
1800 }
1801 for (; i < bank->bus_width; ++i, ++copy_p)
1802 {
1803 u8 byte;
1804 target->type->read_memory(target, copy_p, 1, 1, &byte);
1805 cfi_add_byte(bank, current_word, byte);
1806 }
1807 retval = cfi_write_word(bank, current_word, write_p);
1808 if (retval != ERROR_OK)
1809 return retval;
1810 }
1811
1812 /* return to read array mode */
1813 cfi_command(bank, 0xf0, current_word);
1814 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, current_word);
1815 cfi_command(bank, 0xff, current_word);
1816 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, current_word);
1817
1818 return ERROR_OK;
1819 }
1820
1821 void cfi_fixup_atmel_reversed_erase_regions(flash_bank_t *bank, void *param)
1822 {
1823 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1824 cfi_spansion_pri_ext_t *pri_ext = cfi_info->pri_ext;
1825
1826 pri_ext->_reversed_geometry = 1;
1827 }
1828
1829 void cfi_fixup_0002_erase_regions(flash_bank_t *bank, void *param)
1830 {
1831 int i;
1832 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1833 cfi_spansion_pri_ext_t *pri_ext = cfi_info->pri_ext;
1834
1835 if ((pri_ext->_reversed_geometry) || (pri_ext->TopBottom == 3))
1836 {
1837 DEBUG("swapping reversed erase region information on cmdset 0002 device");
1838
1839 for (i = 0; i < cfi_info->num_erase_regions / 2; i++)
1840 {
1841 int j = (cfi_info->num_erase_regions - 1) - i;
1842 u32 swap;
1843
1844 swap = cfi_info->erase_region_info[i];
1845 cfi_info->erase_region_info[i] = cfi_info->erase_region_info[j];
1846 cfi_info->erase_region_info[j] = swap;
1847 }
1848 }
1849 }
1850
1851 void cfi_fixup_0002_unlock_addresses(flash_bank_t *bank, void *param)
1852 {
1853 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1854 cfi_spansion_pri_ext_t *pri_ext = cfi_info->pri_ext;
1855 cfi_unlock_addresses_t *unlock_addresses = param;
1856
1857 pri_ext->_unlock1 = unlock_addresses->unlock1;
1858 pri_ext->_unlock2 = unlock_addresses->unlock2;
1859 }
1860
1861 int cfi_probe(struct flash_bank_s *bank)
1862 {
1863 cfi_flash_bank_t *cfi_info = bank->driver_priv;
1864 target_t *target = bank->target;
1865 u8 command[8];
1866 int num_sectors = 0;
1867 int i;
1868 int sector = 0;
1869 u32 offset = 0;
1870 u32 unlock1 = 0x555;
1871 u32 unlock2 = 0x2aa;
1872
1873 cfi_info->probed = 0;
1874
1875 /* JEDEC standard JESD21C uses 0x5555 and 0x2aaa as unlock addresses,
1876 * while CFI compatible AMD/Spansion flashes use 0x555 and 0x2aa
1877 */
1878 if (cfi_info->jedec_probe)
1879 {
1880 unlock1 = 0x5555;
1881 unlock2 = 0x2aaa;
1882 }
1883
1884 /* switch to read identifier codes mode ("AUTOSELECT") */
1885 cfi_command(bank, 0xaa, command);
1886 target->type->write_memory(target, flash_address(bank, 0, unlock1), bank->bus_width, 1, command);
1887 cfi_command(bank, 0x55, command);
1888 target->type->write_memory(target, flash_address(bank, 0, unlock2), bank->bus_width, 1, command);
1889 cfi_command(bank, 0x90, command);
1890 target->type->write_memory(target, flash_address(bank, 0, unlock1), bank->bus_width, 1, command);
1891
1892 if (bank->chip_width == 1)
1893 {
1894 u8 manufacturer, device_id;
1895 target_read_u8(target, bank->base + 0x0, &manufacturer);
1896 target_read_u8(target, bank->base + 0x1, &device_id);
1897 cfi_info->manufacturer = manufacturer;
1898 cfi_info->device_id = device_id;
1899 }
1900 else if (bank->chip_width == 2)
1901 {
1902 target_read_u16(target, bank->base + 0x0, &cfi_info->manufacturer);
1903 target_read_u16(target, bank->base + 0x2, &cfi_info->device_id);
1904 }
1905
1906 /* switch back to read array mode */
1907 cfi_command(bank, 0xf0, command);
1908 target->type->write_memory(target, flash_address(bank, 0, 0x00), bank->bus_width, 1, command);
1909 cfi_command(bank, 0xff, command);
1910 target->type->write_memory(target, flash_address(bank, 0, 0x00), bank->bus_width, 1, command);
1911
1912 cfi_fixup(bank, cfi_jedec_fixups);
1913
1914 /* query only if this is a CFI compatible flash,
1915 * otherwise the relevant info has already been filled in
1916 */
1917 if (cfi_info->not_cfi == 0)
1918 {
1919 /* enter CFI query mode
1920 * according to JEDEC Standard No. 68.01,
1921 * a single bus sequence with address = 0x55, data = 0x98 should put
1922 * the device into CFI query mode.
1923 *
1924 * SST flashes clearly violate this, and we will consider them incompatbile for now
1925 */
1926 cfi_command(bank, 0x98, command);
1927 target->type->write_memory(target, flash_address(bank, 0, 0x55), bank->bus_width, 1, command);
1928
1929 cfi_info->qry[0] = cfi_query_u8(bank, 0, 0x10);
1930 cfi_info->qry[1] = cfi_query_u8(bank, 0, 0x11);
1931 cfi_info->qry[2] = cfi_query_u8(bank, 0, 0x12);
1932
1933 DEBUG("CFI qry returned: 0x%2.2x 0x%2.2x 0x%2.2x", cfi_info->qry[0], cfi_info->qry[1], cfi_info->qry[2]);
1934
1935 if ((cfi_info->qry[0] != 'Q') || (cfi_info->qry[1] != 'R') || (cfi_info->qry[2] != 'Y'))
1936 {
1937 cfi_command(bank, 0xf0, command);
1938 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
1939 cfi_command(bank, 0xff, command);
1940 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
1941 return ERROR_FLASH_BANK_INVALID;
1942 }
1943
1944 cfi_info->pri_id = cfi_query_u16(bank, 0, 0x13);
1945 cfi_info->pri_addr = cfi_query_u16(bank, 0, 0x15);
1946 cfi_info->alt_id = cfi_query_u16(bank, 0, 0x17);
1947 cfi_info->alt_addr = cfi_query_u16(bank, 0, 0x19);
1948
1949 DEBUG("qry: '%c%c%c', pri_id: 0x%4.4x, pri_addr: 0x%4.4x, alt_id: 0x%4.4x, alt_addr: 0x%4.4x", cfi_info->qry[0], cfi_info->qry[1], cfi_info->qry[2], cfi_info->pri_id, cfi_info->pri_addr, cfi_info->alt_id, cfi_info->alt_addr);
1950
1951 cfi_info->vcc_min = cfi_query_u8(bank, 0, 0x1b);
1952 cfi_info->vcc_max = cfi_query_u8(bank, 0, 0x1c);
1953 cfi_info->vpp_min = cfi_query_u8(bank, 0, 0x1d);
1954 cfi_info->vpp_max = cfi_query_u8(bank, 0, 0x1e);
1955 cfi_info->word_write_timeout_typ = cfi_query_u8(bank, 0, 0x1f);
1956 cfi_info->buf_write_timeout_typ = cfi_query_u8(bank, 0, 0x20);
1957 cfi_info->block_erase_timeout_typ = cfi_query_u8(bank, 0, 0x21);
1958 cfi_info->chip_erase_timeout_typ = cfi_query_u8(bank, 0, 0x22);
1959 cfi_info->word_write_timeout_max = cfi_query_u8(bank, 0, 0x23);
1960 cfi_info->buf_write_timeout_max = cfi_query_u8(bank, 0, 0x24);
1961 cfi_info->block_erase_timeout_max = cfi_query_u8(bank, 0, 0x25);
1962 cfi_info->chip_erase_timeout_max = cfi_query_u8(bank, 0, 0x26);
1963
1964 DEBUG("Vcc min: %1.1x.%1.1x, Vcc max: %1.1x.%1.1x, Vpp min: %1.1x.%1.1x, Vpp max: %1.1x.%1.1x",
1965 (cfi_info->vcc_min & 0xf0) >> 4, cfi_info->vcc_min & 0x0f,
1966 (cfi_info->vcc_max & 0xf0) >> 4, cfi_info->vcc_max & 0x0f,
1967 (cfi_info->vpp_min & 0xf0) >> 4, cfi_info->vpp_min & 0x0f,
1968 (cfi_info->vpp_max & 0xf0) >> 4, cfi_info->vpp_max & 0x0f);
1969 DEBUG("typ. word write timeout: %u, typ. buf write timeout: %u, typ. block erase timeout: %u, typ. chip erase timeout: %u", 1 << cfi_info->word_write_timeout_typ, 1 << cfi_info->buf_write_timeout_typ,
1970 1 << cfi_info->block_erase_timeout_typ, 1 << cfi_info->chip_erase_timeout_typ);
1971 DEBUG("max. word write timeout: %u, max. buf write timeout: %u, max. block erase timeout: %u, max. chip erase timeout: %u", (1 << cfi_info->word_write_timeout_max) * (1 << cfi_info->word_write_timeout_typ),
1972 (1 << cfi_info->buf_write_timeout_max) * (1 << cfi_info->buf_write_timeout_typ),
1973 (1 << cfi_info->block_erase_timeout_max) * (1 << cfi_info->block_erase_timeout_typ),
1974 (1 << cfi_info->chip_erase_timeout_max) * (1 << cfi_info->chip_erase_timeout_typ));
1975
1976 cfi_info->dev_size = cfi_query_u8(bank, 0, 0x27);
1977 cfi_info->interface_desc = cfi_query_u16(bank, 0, 0x28);
1978 cfi_info->max_buf_write_size = cfi_query_u16(bank, 0, 0x2a);
1979 cfi_info->num_erase_regions = cfi_query_u8(bank, 0, 0x2c);
1980
1981 DEBUG("size: 0x%x, interface desc: %i, max buffer write size: %x", 1 << cfi_info->dev_size, cfi_info->interface_desc, (1 << cfi_info->max_buf_write_size));
1982
1983 if (((1 << cfi_info->dev_size) * bank->bus_width / bank->chip_width) != bank->size)
1984 {
1985 WARNING("configuration specifies 0x%x size, but a 0x%x size flash was found", bank->size, 1 << cfi_info->dev_size);
1986 }
1987
1988 if (cfi_info->num_erase_regions)
1989 {
1990 cfi_info->erase_region_info = malloc(4 * cfi_info->num_erase_regions);
1991 for (i = 0; i < cfi_info->num_erase_regions; i++)
1992 {
1993 cfi_info->erase_region_info[i] = cfi_query_u32(bank, 0, 0x2d + (4 * i));
1994 DEBUG("erase region[%i]: %i blocks of size 0x%x", i, (cfi_info->erase_region_info[i] & 0xffff) + 1, (cfi_info->erase_region_info[i] >> 16) * 256);
1995 }
1996 }
1997 else
1998 {
1999 cfi_info->erase_region_info = NULL;
2000 }
2001
2002 /* We need to read the primary algorithm extended query table before calculating
2003 * the sector layout to be able to apply fixups
2004 */
2005 switch(cfi_info->pri_id)
2006 {
2007 /* Intel command set (standard and extended) */
2008 case 0x0001:
2009 case 0x0003:
2010 cfi_read_intel_pri_ext(bank);
2011 break;
2012 /* AMD/Spansion, Atmel, ... command set */
2013 case 0x0002:
2014 cfi_read_0002_pri_ext(bank);
2015 break;
2016 default:
2017 ERROR("cfi primary command set %i unsupported", cfi_info->pri_id);
2018 break;
2019 }
2020
2021 /* return to read array mode
2022 * we use both reset commands, as some Intel flashes fail to recognize the 0xF0 command
2023 */
2024 cfi_command(bank, 0xf0, command);
2025 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
2026 cfi_command(bank, 0xff, command);
2027 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
2028 }
2029
2030 /* apply fixups depending on the primary command set */
2031 switch(cfi_info->pri_id)
2032 {
2033 /* Intel command set (standard and extended) */
2034 case 0x0001:
2035 case 0x0003:
2036 cfi_fixup(bank, cfi_0001_fixups);
2037 break;
2038 /* AMD/Spansion, Atmel, ... command set */
2039 case 0x0002:
2040 cfi_fixup(bank, cfi_0002_fixups);
2041 break;
2042 default:
2043 ERROR("cfi primary command set %i unsupported", cfi_info->pri_id);
2044 break;
2045 }
2046
2047 if (cfi_info->num_erase_regions == 0)
2048 {
2049 /* a device might have only one erase block, spanning the whole device */
2050 bank->num_sectors = 1;
2051 bank->sectors = malloc(sizeof(flash_sector_t));
2052
2053 bank->sectors[sector].offset = 0x0;
2054 bank->sectors[sector].size = bank->size;
2055 bank->sectors[sector].is_erased = -1;
2056 bank->sectors[sector].is_protected = -1;
2057 }
2058 else
2059 {
2060 for (i = 0; i < cfi_info->num_erase_regions; i++)
2061 {
2062 num_sectors += (cfi_info->erase_region_info[i] & 0xffff) + 1;
2063 }
2064
2065 bank->num_sectors = num_sectors;
2066 bank->sectors = malloc(sizeof(flash_sector_t) * num_sectors);
2067
2068 for (i = 0; i < cfi_info->num_erase_regions; i++)
2069 {
2070 int j;
2071 for (j = 0; j < (cfi_info->erase_region_info[i] & 0xffff) + 1; j++)
2072 {
2073 bank->sectors[sector].offset = offset;
2074 bank->sectors[sector].size = ((cfi_info->erase_region_info[i] >> 16) * 256) * bank->bus_width / bank->chip_width;
2075 offset += bank->sectors[sector].size;
2076 bank->sectors[sector].is_erased = -1;
2077 bank->sectors[sector].is_protected = -1;
2078 sector++;
2079 }
2080 }
2081 }
2082
2083 cfi_info->probed = 1;
2084
2085 return ERROR_OK;
2086 }
2087
2088 int cfi_auto_probe(struct flash_bank_s *bank)
2089 {
2090 cfi_flash_bank_t *cfi_info = bank->driver_priv;
2091 if (cfi_info->probed)
2092 return ERROR_OK;
2093 return cfi_probe(bank);
2094 }
2095
2096 int cfi_erase_check(struct flash_bank_s *bank)
2097 {
2098 cfi_flash_bank_t *cfi_info = bank->driver_priv;
2099 target_t *target = bank->target;
2100 int i;
2101 int retval;
2102
2103 if (!cfi_info->erase_check_algorithm)
2104 {
2105 u32 erase_check_code[] =
2106 {
2107 0xe4d03001, /* ldrb r3, [r0], #1 */
2108 0xe0022003, /* and r2, r2, r3 */
2109 0xe2511001, /* subs r1, r1, #1 */
2110 0x1afffffb, /* b -4 */
2111 0xeafffffe /* b 0 */
2112 };
2113
2114 /* make sure we have a working area */
2115 if (target_alloc_working_area(target, 20, &cfi_info->erase_check_algorithm) != ERROR_OK)
2116 {
2117 WARNING("no working area available, falling back to slow memory reads");
2118 }
2119 else
2120 {
2121 u8 erase_check_code_buf[5 * 4];
2122
2123 for (i = 0; i < 5; i++)
2124 target_buffer_set_u32(target, erase_check_code_buf + (i*4), erase_check_code[i]);
2125
2126 /* write algorithm code to working area */
2127 target->type->write_memory(target, cfi_info->erase_check_algorithm->address, 4, 5, erase_check_code_buf);
2128 }
2129 }
2130
2131 if (!cfi_info->erase_check_algorithm)
2132 {
2133 u32 *buffer = malloc(4096);
2134
2135 for (i = 0; i < bank->num_sectors; i++)
2136 {
2137 u32 address = bank->base + bank->sectors[i].offset;
2138 u32 size = bank->sectors[i].size;
2139 u32 check = 0xffffffffU;
2140 int erased = 1;
2141
2142 while (size > 0)
2143 {
2144 u32 thisrun_size = (size > 4096) ? 4096 : size;
2145 int j;
2146
2147 target->type->read_memory(target, address, 4, thisrun_size / 4, (u8*)buffer);
2148
2149 for (j = 0; j < thisrun_size / 4; j++)
2150 check &= buffer[j];
2151
2152 if (check != 0xffffffff)
2153 {
2154 erased = 0;
2155 break;
2156 }
2157
2158 size -= thisrun_size;
2159 address += thisrun_size;
2160 }
2161
2162 bank->sectors[i].is_erased = erased;
2163 }
2164
2165 free(buffer);
2166 }
2167 else
2168 {
2169 for (i = 0; i < bank->num_sectors; i++)
2170 {
2171 u32 address = bank->base + bank->sectors[i].offset;
2172 u32 size = bank->sectors[i].size;
2173
2174 reg_param_t reg_params[3];
2175 armv4_5_algorithm_t armv4_5_info;
2176
2177 armv4_5_info.common_magic = ARMV4_5_COMMON_MAGIC;
2178 armv4_5_info.core_mode = ARMV4_5_MODE_SVC;
2179 armv4_5_info.core_state = ARMV4_5_STATE_ARM;
2180
2181 init_reg_param(&reg_params[0], "r0", 32, PARAM_OUT);
2182 buf_set_u32(reg_params[0].value, 0, 32, address);
2183
2184 init_reg_param(&reg_params[1], "r1", 32, PARAM_OUT);
2185 buf_set_u32(reg_params[1].value, 0, 32, size);
2186
2187 init_reg_param(&reg_params[2], "r2", 32, PARAM_IN_OUT);
2188 buf_set_u32(reg_params[2].value, 0, 32, 0xff);
2189
2190 if ((retval = target->type->run_algorithm(target, 0, NULL, 3, reg_params, cfi_info->erase_check_algorithm->address, cfi_info->erase_check_algorithm->address + 0x10, 10000, &armv4_5_info)) != ERROR_OK)
2191 return ERROR_FLASH_OPERATION_FAILED;
2192
2193 if (buf_get_u32(reg_params[2].value, 0, 32) == 0xff)
2194 bank->sectors[i].is_erased = 1;
2195 else
2196 bank->sectors[i].is_erased = 0;
2197
2198 destroy_reg_param(&reg_params[0]);
2199 destroy_reg_param(&reg_params[1]);
2200 destroy_reg_param(&reg_params[2]);
2201 }
2202 }
2203
2204 return ERROR_OK;
2205 }
2206
2207 int cfi_intel_protect_check(struct flash_bank_s *bank)
2208 {
2209 cfi_flash_bank_t *cfi_info = bank->driver_priv;
2210 cfi_intel_pri_ext_t *pri_ext = cfi_info->pri_ext;
2211 target_t *target = bank->target;
2212 u8 command[CFI_MAX_BUS_WIDTH];
2213 int i;
2214
2215 /* check if block lock bits are supported on this device */
2216 if (!(pri_ext->blk_status_reg_mask & 0x1))
2217 return ERROR_FLASH_OPERATION_FAILED;
2218
2219 cfi_command(bank, 0x90, command);
2220 target->type->write_memory(target, flash_address(bank, 0, 0x55), bank->bus_width, 1, command);
2221
2222 for (i = 0; i < bank->num_sectors; i++)
2223 {
2224 u8 block_status = cfi_get_u8(bank, i, 0x2);
2225
2226 if (block_status & 1)
2227 bank->sectors[i].is_protected = 1;
2228 else
2229 bank->sectors[i].is_protected = 0;
2230 }
2231
2232 cfi_command(bank, 0xff, command);
2233 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
2234
2235 return ERROR_OK;
2236 }
2237
2238 int cfi_spansion_protect_check(struct flash_bank_s *bank)
2239 {
2240 cfi_flash_bank_t *cfi_info = bank->driver_priv;
2241 cfi_spansion_pri_ext_t *pri_ext = cfi_info->pri_ext;
2242 target_t *target = bank->target;
2243 u8 command[8];
2244 int i;
2245
2246 cfi_command(bank, 0xaa, command);
2247 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock1), bank->bus_width, 1, command);
2248
2249 cfi_command(bank, 0x55, command);
2250 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock2), bank->bus_width, 1, command);
2251
2252 cfi_command(bank, 0x90, command);
2253 target->type->write_memory(target, flash_address(bank, 0, pri_ext->_unlock1), bank->bus_width, 1, command);
2254
2255 for (i = 0; i < bank->num_sectors; i++)
2256 {
2257 u8 block_status = cfi_get_u8(bank, i, 0x2);
2258
2259 if (block_status & 1)
2260 bank->sectors[i].is_protected = 1;
2261 else
2262 bank->sectors[i].is_protected = 0;
2263 }
2264
2265 cfi_command(bank, 0xf0, command);
2266 target->type->write_memory(target, flash_address(bank, 0, 0x0), bank->bus_width, 1, command);
2267
2268 return ERROR_OK;
2269 }
2270
2271 int cfi_protect_check(struct flash_bank_s *bank)
2272 {
2273 cfi_flash_bank_t *cfi_info = bank->driver_priv;
2274
2275 if (cfi_info->qry[0] != 'Q')
2276 return ERROR_FLASH_BANK_NOT_PROBED;
2277
2278 switch(cfi_info->pri_id)
2279 {
2280 case 1:
2281 case 3:
2282 return cfi_intel_protect_check(bank);
2283 break;
2284 case 2:
2285 return cfi_spansion_protect_check(bank);
2286 break;
2287 default:
2288 ERROR("cfi primary command set %i unsupported", cfi_info->pri_id);
2289 break;
2290 }
2291
2292 return ERROR_OK;
2293 }
2294
2295 int cfi_info(struct flash_bank_s *bank, char *buf, int buf_size)
2296 {
2297 int printed;
2298 cfi_flash_bank_t *cfi_info = bank->driver_priv;
2299
2300 if (cfi_info->qry[0] == (char)-1)
2301 {
2302 printed = snprintf(buf, buf_size, "\ncfi flash bank not probed yet\n");
2303 return ERROR_OK;
2304 }
2305
2306 printed = snprintf(buf, buf_size, "\ncfi information:\n");
2307 buf += printed;
2308 buf_size -= printed;
2309
2310 printed = snprintf(buf, buf_size, "\nmfr: 0x%4.4x, id:0x%4.4x\n",
2311 cfi_info->manufacturer, cfi_info->device_id);
2312 buf += printed;
2313 buf_size -= printed;
2314
2315 printed = snprintf(buf, buf_size, "qry: '%c%c%c', pri_id: 0x%4.4x, pri_addr: 0x%4.4x, alt_id: 0x%4.4x, alt_addr: 0x%4.4x\n", cfi_info->qry[0], cfi_info->qry[1], cfi_info->qry[2], cfi_info->pri_id, cfi_info->pri_addr, cfi_info->alt_id, cfi_info->alt_addr);
2316 buf += printed;
2317 buf_size -= printed;
2318
2319 printed = snprintf(buf, buf_size, "Vcc min: %1.1x.%1.1x, Vcc max: %1.1x.%1.1x, Vpp min: %1.1x.%1.1x, Vpp max: %1.1x.%1.1x\n", (cfi_info->vcc_min & 0xf0) >> 4, cfi_info->vcc_min & 0x0f,
2320 (cfi_info->vcc_max & 0xf0) >> 4, cfi_info->vcc_max & 0x0f,
2321 (cfi_info->vpp_min & 0xf0) >> 4, cfi_info->vpp_min & 0x0f,
2322 (cfi_info->vpp_max & 0xf0) >> 4, cfi_info->vpp_max & 0x0f);
2323 buf += printed;
2324 buf_size -= printed;
2325
2326 printed = snprintf(buf, buf_size, "typ. word write timeout: %u, typ. buf write timeout: %u, typ. block erase timeout: %u, typ. chip erase timeout: %u\n", 1 << cfi_info->word_write_timeout_typ, 1 << cfi_info->buf_write_timeout_typ,
2327 1 << cfi_info->block_erase_timeout_typ, 1 << cfi_info->chip_erase_timeout_typ);
2328 buf += printed;
2329 buf_size -= printed;
2330
2331 printed = snprintf(buf, buf_size, "max. word write timeout: %u, max. buf write timeout: %u, max. block erase timeout: %u, max. chip erase timeout: %u\n", (1 << cfi_info->word_write_timeout_max) * (1 << cfi_info->word_write_timeout_typ),
2332 (1 << cfi_info->buf_write_timeout_max) * (1 << cfi_info->buf_write_timeout_typ),
2333 (1 << cfi_info->block_erase_timeout_max) * (1 << cfi_info->block_erase_timeout_typ),
2334 (1 << cfi_info->chip_erase_timeout_max) * (1 << cfi_info->chip_erase_timeout_typ));
2335 buf += printed;
2336 buf_size -= printed;
2337
2338 printed = snprintf(buf, buf_size, "size: 0x%x, interface desc: %i, max buffer write size: %x\n", 1 << cfi_info->dev_size, cfi_info->interface_desc, cfi_info->max_buf_write_size);
2339 buf += printed;
2340 buf_size -= printed;
2341
2342 switch(cfi_info->pri_id)
2343 {
2344 case 1:
2345 case 3:
2346 cfi_intel_info(bank, buf, buf_size);
2347 break;
2348 case 2:
2349 cfi_spansion_info(bank, buf, buf_size);
2350 break;
2351 default:
2352 ERROR("cfi primary command set %i unsupported", cfi_info->pri_id);
2353 break;
2354 }
2355
2356 return ERROR_OK;
2357 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)