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

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)