OpenOCD
flash/nor/tcl.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 
3 /***************************************************************************
4  * Copyright (C) 2005 by Dominic Rath <Dominic.Rath@gmx.de> *
5  * Copyright (C) 2007,2008 Øyvind Harboe <oyvind.harboe@zylin.com> *
6  * Copyright (C) 2008 by Spencer Oliver <spen@spen-soft.co.uk> *
7  * Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net> *
8  * Copyright (C) 2017-2018 Tomas Vanek <vanekt@fbl.cz> *
9  ***************************************************************************/
10 #ifdef HAVE_CONFIG_H
11 #include "config.h"
12 #endif
13 #include "imp.h"
14 #include <helper/time_support.h>
15 #include <target/image.h>
16 
22 COMMAND_HELPER(flash_command_get_bank_probe_optional, unsigned int name_index,
23  struct flash_bank **bank, bool do_probe)
24 {
25  const char *name = CMD_ARGV[name_index];
26  int retval;
27  if (do_probe) {
28  retval = get_flash_bank_by_name(name, bank);
29  } else {
31  retval = ERROR_OK;
32  }
33 
34  if (retval != ERROR_OK)
35  return retval;
36  if (*bank)
37  return ERROR_OK;
38 
39  unsigned int bank_num;
40  COMMAND_PARSE_NUMBER(uint, name, bank_num);
41 
42  if (do_probe) {
43  return get_flash_bank_by_num(bank_num, bank);
44  } else {
46  retval = (bank) ? ERROR_OK : ERROR_FAIL;
47  return retval;
48  }
49 }
50 
51 COMMAND_HELPER(flash_command_get_bank, unsigned int name_index,
52  struct flash_bank **bank)
53 {
54  return CALL_COMMAND_HANDLER(flash_command_get_bank_probe_optional,
55  name_index, bank, true);
56 }
57 
58 COMMAND_HANDLER(handle_flash_info_command)
59 {
60  struct flash_bank *p;
61  int j = 0;
62  int retval;
63  bool show_sectors = false;
64  bool prot_block_available;
65 
66  if (CMD_ARGC < 1 || CMD_ARGC > 2)
68 
69  if (CMD_ARGC == 2) {
70  if (strcmp("sectors", CMD_ARGV[1]) == 0)
71  show_sectors = true;
72  else
74  }
75 
76  retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
77  if (retval != ERROR_OK)
78  return retval;
79 
80  if (p) {
81  int num_blocks;
82  struct flash_sector *block_array;
83 
84  /* attempt auto probe */
85  retval = p->driver->auto_probe(p);
86  if (retval != ERROR_OK)
87  return retval;
88 
89  /* If the driver does not implement protection, we show the default
90  * state of is_protected array - usually protection state unknown */
91  if (!p->driver->protect_check) {
93  } else {
94  /* We must query the hardware to avoid printing stale information! */
95  retval = p->driver->protect_check(p);
96  if (retval != ERROR_OK && retval != ERROR_FLASH_OPER_UNSUPPORTED)
97  return retval;
98  }
99  if (retval == ERROR_FLASH_OPER_UNSUPPORTED)
100  LOG_INFO("Flash protection check is not implemented.");
101 
103  "#%u : %s at " TARGET_ADDR_FMT ", size 0x%8.8" PRIx32
104  ", buswidth %u, chipwidth %u",
105  p->bank_number,
106  p->driver->name,
107  p->base,
108  p->size,
109  p->bus_width,
110  p->chip_width);
111 
112  prot_block_available = p->num_prot_blocks && p->prot_blocks;
113  if (!show_sectors && prot_block_available) {
114  block_array = p->prot_blocks;
115  num_blocks = p->num_prot_blocks;
116  } else {
117  block_array = p->sectors;
118  num_blocks = p->num_sectors;
119  }
120 
121  for (j = 0; j < num_blocks; j++) {
122  char *protect_state = "";
123 
124  if (block_array[j].is_protected == 0)
125  protect_state = "not protected";
126  else if (block_array[j].is_protected == 1)
127  protect_state = "protected";
128  else if (!show_sectors || !prot_block_available)
129  protect_state = "protection state unknown";
130 
132  "\t#%3i: 0x%8.8" PRIx32 " (0x%" PRIx32 " %" PRIu32 "kB) %s",
133  j,
134  block_array[j].offset,
135  block_array[j].size,
136  block_array[j].size >> 10,
137  protect_state);
138  }
139 
140  if (p->driver->info) {
141  /* Let the flash driver print extra custom info */
142  retval = p->driver->info(p, CMD);
144  if (retval != ERROR_OK)
145  LOG_ERROR("error retrieving flash info");
146  }
147  }
148 
149  return retval;
150 }
151 
152 COMMAND_HANDLER(handle_flash_probe_command)
153 {
154  struct flash_bank *p;
155  int retval;
156 
157  if (CMD_ARGC != 1)
159 
160  retval = CALL_COMMAND_HANDLER(flash_command_get_bank_probe_optional, 0, &p, false);
161  if (retval != ERROR_OK)
162  return retval;
163 
164  if (p) {
165  retval = p->driver->probe(p);
166  if (retval == ERROR_OK)
168  "flash '%s' found at " TARGET_ADDR_FMT,
169  p->driver->name,
170  p->base);
171  } else {
172  command_print(CMD, "flash bank '#%s' is out of bounds", CMD_ARGV[0]);
173  retval = ERROR_FAIL;
174  }
175 
176  return retval;
177 }
178 
179 COMMAND_HANDLER(handle_flash_erase_check_command)
180 {
181  bool blank = true;
182  if (CMD_ARGC != 1)
184 
185  struct flash_bank *p;
186  int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
187  if (retval != ERROR_OK)
188  return retval;
189 
190  retval = p->driver->erase_check(p);
191  if (retval == ERROR_OK)
192  command_print(CMD, "successfully checked erase state");
193  else {
195  "Error: checking erase state of flash bank #%s at "
197  CMD_ARGV[0],
198  p->base);
199  }
200 
201  for (unsigned int j = 0; j < p->num_sectors; j++) {
202  char *erase_state;
203 
204  if (p->sectors[j].is_erased == 0)
205  erase_state = "not erased";
206  else if (p->sectors[j].is_erased == 1)
207  continue;
208  else
209  erase_state = "erase state unknown";
210 
211  blank = false;
213  "\t#%3i: 0x%8.8" PRIx32 " (0x%" PRIx32 " %" PRIu32 "kB) %s",
214  j,
215  p->sectors[j].offset,
216  p->sectors[j].size,
217  p->sectors[j].size >> 10,
218  erase_state);
219  }
220 
221  if (blank)
222  command_print(CMD, "\tBank is erased");
223  return retval;
224 }
225 
226 COMMAND_HANDLER(handle_flash_erase_address_command)
227 {
228  struct flash_bank *p;
229  int retval = ERROR_OK;
231  uint32_t length;
232  bool do_pad = false;
233  bool do_unlock = false;
235 
236  while (CMD_ARGC >= 3) {
237  /* Optionally pad out the address range to block/sector
238  * boundaries. We can't know if there's data in that part
239  * of the flash; only do padding if we're told to.
240  */
241  if (strcmp("pad", CMD_ARGV[0]) == 0)
242  do_pad = true;
243  else if (strcmp("unlock", CMD_ARGV[0]) == 0)
244  do_unlock = true;
245  else
247  CMD_ARGC--;
248  CMD_ARGV++;
249  }
250  if (CMD_ARGC != 2)
252 
255 
256  if (length <= 0) {
257  command_print(CMD, "Length must be >0");
259  }
260 
261  retval = get_flash_bank_by_addr(target, address, true, &p);
262  if (retval != ERROR_OK)
263  return retval;
264 
265  /* We can't know if we did a resume + halt, in which case we no longer know the erased state
266  **/
267  flash_set_dirty();
268 
269  struct duration bench;
270  duration_start(&bench);
271 
272  if (do_unlock)
274 
275  if (retval == ERROR_OK)
276  retval = flash_erase_address_range(target, do_pad, address, length);
277 
278  if (retval == ERROR_OK && duration_measure(&bench) == ERROR_OK) {
279  command_print(CMD, "erased address " TARGET_ADDR_FMT " (length %" PRIu32 ")"
280  " in %fs (%0.3f KiB/s)", address, length,
281  duration_elapsed(&bench), duration_kbps(&bench, length));
282  }
283 
284  return retval;
285 }
286 
287 COMMAND_HANDLER(handle_flash_erase_command)
288 {
289  if (CMD_ARGC != 3)
291 
292  uint32_t first;
293  uint32_t last;
294 
295  struct flash_bank *p;
296  int retval;
297 
298  retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
299  if (retval != ERROR_OK)
300  return retval;
301 
302  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], first);
303  if (strcmp(CMD_ARGV[2], "last") == 0)
304  last = p->num_sectors - 1;
305  else
306  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], last);
307 
308  if (!(first <= last)) {
309  command_print(CMD, "ERROR: "
310  "first sector must be <= last");
311  return ERROR_FAIL;
312  }
313 
314  if (!(last <= (p->num_sectors - 1))) {
315  command_print(CMD, "ERROR: "
316  "last sector must be <= %u",
317  p->num_sectors - 1);
318  return ERROR_FAIL;
319  }
320 
321  struct duration bench;
322  duration_start(&bench);
323 
324  retval = flash_driver_erase(p, first, last);
325 
326  if (retval == ERROR_OK && duration_measure(&bench) == ERROR_OK) {
327  command_print(CMD, "erased sectors %" PRIu32 " "
328  "through %" PRIu32 " on flash bank %u "
329  "in %fs", first, last, p->bank_number, duration_elapsed(&bench));
330  }
331 
332  return retval;
333 }
334 
335 COMMAND_HANDLER(handle_flash_protect_command)
336 {
337  if (CMD_ARGC != 4)
339 
340  uint32_t first;
341  uint32_t last;
342 
343  struct flash_bank *p;
344  int retval;
345  int num_blocks;
346 
347  retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
348  if (retval != ERROR_OK)
349  return retval;
350 
351  if (p->num_prot_blocks)
352  num_blocks = p->num_prot_blocks;
353  else
354  num_blocks = p->num_sectors;
355 
356  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], first);
357  if (strcmp(CMD_ARGV[2], "last") == 0)
358  last = num_blocks - 1;
359  else
360  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], last);
361 
362  bool set;
364 
365  if (!(first <= last)) {
366  command_print(CMD, "ERROR: "
367  "first %s must be <= last",
368  (p->num_prot_blocks) ? "block" : "sector");
369  return ERROR_FAIL;
370  }
371 
372  if (!(last <= (uint32_t)(num_blocks - 1))) {
373  command_print(CMD, "ERROR: "
374  "last %s must be <= %d",
375  (p->num_prot_blocks) ? "block" : "sector",
376  num_blocks - 1);
377  return ERROR_FAIL;
378  }
379 
380  retval = flash_driver_protect(p, set, first, last);
381  if (retval == ERROR_OK) {
382  command_print(CMD, "%s protection for %s %" PRIu32
383  " through %" PRIu32 " on flash bank %d",
384  (set) ? "set" : "cleared",
385  (p->num_prot_blocks) ? "blocks" : "sectors",
386  first, last, p->bank_number);
387  }
388 
389  return retval;
390 }
391 
392 COMMAND_HANDLER(handle_flash_write_image_command)
393 {
395 
396  struct image image;
397  uint32_t written;
398 
399  int retval;
400 
401  /* flash auto-erase is disabled by default*/
402  int auto_erase = 0;
403  bool auto_unlock = false;
404 
405  while (CMD_ARGC) {
406  if (strcmp(CMD_ARGV[0], "erase") == 0) {
407  auto_erase = 1;
408  CMD_ARGV++;
409  CMD_ARGC--;
410  command_print(CMD, "auto erase enabled");
411  } else if (strcmp(CMD_ARGV[0], "unlock") == 0) {
412  auto_unlock = true;
413  CMD_ARGV++;
414  CMD_ARGC--;
415  command_print(CMD, "auto unlock enabled");
416  } else
417  break;
418  }
419 
420  if (CMD_ARGC < 1)
422 
423  if (!target) {
424  LOG_ERROR("no target selected");
425  return ERROR_FAIL;
426  }
427 
428  struct duration bench;
429  duration_start(&bench);
430 
431  if (CMD_ARGC >= 2) {
432  image.base_address_set = true;
434  } else {
435  image.base_address_set = false;
436  image.base_address = 0x0;
437  }
438 
439  image.start_address_set = false;
440 
441  retval = image_open(&image, CMD_ARGV[0], (CMD_ARGC == 3) ? CMD_ARGV[2] : NULL);
442  if (retval != ERROR_OK)
443  return retval;
444 
445  retval = flash_write_unlock_verify(target, &image, &written, auto_erase,
446  auto_unlock, true, false);
447  if (retval != ERROR_OK) {
448  image_close(&image);
449  return retval;
450  }
451 
452  if (retval == ERROR_OK && duration_measure(&bench) == ERROR_OK) {
453  command_print(CMD, "wrote %" PRIu32 " bytes from file %s "
454  "in %fs (%0.3f KiB/s)", written, CMD_ARGV[0],
455  duration_elapsed(&bench), duration_kbps(&bench, written));
456  }
457 
458  image_close(&image);
459 
460  return retval;
461 }
462 
463 COMMAND_HANDLER(handle_flash_verify_image_command)
464 {
466 
467  struct image image;
468  uint32_t verified;
469 
470  int retval;
471 
472  if (CMD_ARGC < 1)
474 
475  if (!target) {
476  LOG_ERROR("no target selected");
477  return ERROR_FAIL;
478  }
479 
480  struct duration bench;
481  duration_start(&bench);
482 
483  if (CMD_ARGC >= 2) {
486  } else {
488  image.base_address = 0x0;
489  }
490 
492 
493  retval = image_open(&image, CMD_ARGV[0], (CMD_ARGC == 3) ? CMD_ARGV[2] : NULL);
494  if (retval != ERROR_OK)
495  return retval;
496 
497  retval = flash_write_unlock_verify(target, &image, &verified, false,
498  false, false, true);
499  if (retval != ERROR_OK) {
500  image_close(&image);
501  return retval;
502  }
503 
504  if (retval == ERROR_OK && duration_measure(&bench) == ERROR_OK) {
505  command_print(CMD, "verified %" PRIu32 " bytes from file %s "
506  "in %fs (%0.3f KiB/s)", verified, CMD_ARGV[0],
507  duration_elapsed(&bench), duration_kbps(&bench, verified));
508  }
509 
510  image_close(&image);
511 
512  return retval;
513 }
514 
515 COMMAND_HANDLER(handle_flash_fill_command)
516 {
518  uint64_t pattern;
519  uint32_t count;
521  unsigned int i;
522  uint32_t wordsize;
523  int retval;
524 
525  if (CMD_ARGC != 3)
527 
531 
532  struct flash_bank *bank;
533  retval = get_flash_bank_by_addr(target, address, true, &bank);
534  if (retval != ERROR_OK)
535  return retval;
536 
537  switch (CMD_NAME[4]) {
538  case 'd':
539  wordsize = 8;
540  break;
541  case 'w':
542  wordsize = 4;
543  break;
544  case 'h':
545  wordsize = 2;
546  break;
547  case 'b':
548  wordsize = 1;
549  break;
550  default:
552  }
553 
554  if ((wordsize < sizeof(pattern)) && (pattern >> (8 * wordsize) != 0)) {
555  command_print(CMD, "Fill pattern 0x%" PRIx64 " does not fit within %" PRIu32 "-byte word", pattern, wordsize);
556  return ERROR_FAIL;
557  }
558 
559  if (count == 0)
560  return ERROR_OK;
561 
562  if (address + count * wordsize > bank->base + bank->size) {
563  LOG_ERROR("Cannot cross flash bank borders");
564  return ERROR_FAIL;
565  }
566 
567  uint32_t size_bytes = count * wordsize;
569  target_addr_t end_addr = address + size_bytes - 1;
570  target_addr_t aligned_end = flash_write_align_end(bank, end_addr);
571  uint32_t aligned_size = aligned_end + 1 - aligned_start;
572  uint32_t padding_at_start = address - aligned_start;
573  uint32_t padding_at_end = aligned_end - end_addr;
574 
575  uint8_t *buffer = malloc(aligned_size);
576  if (!buffer)
577  return ERROR_FAIL;
578 
579  if (padding_at_start) {
580  memset(buffer, bank->default_padded_value, padding_at_start);
581  LOG_WARNING("Start address " TARGET_ADDR_FMT
582  " breaks the required alignment of flash bank %s",
583  address, bank->name);
584  LOG_WARNING("Padding %" PRIu32 " bytes from " TARGET_ADDR_FMT,
585  padding_at_start, aligned_start);
586  }
587 
588  uint8_t *ptr = buffer + padding_at_start;
589 
590  switch (wordsize) {
591  case 8:
592  for (i = 0; i < count; i++, ptr += wordsize)
594  break;
595  case 4:
596  for (i = 0; i < count; i++, ptr += wordsize)
598  break;
599  case 2:
600  for (i = 0; i < count; i++, ptr += wordsize)
602  break;
603  case 1:
604  memset(ptr, pattern, count);
605  ptr += count;
606  break;
607  default:
608  LOG_ERROR("BUG: can't happen");
609  retval = ERROR_FAIL;
610  goto done;
611  }
612 
613  if (padding_at_end) {
614  memset(ptr, bank->default_padded_value, padding_at_end);
615  LOG_INFO("Padding at " TARGET_ADDR_FMT " with %" PRIu32
616  " bytes (bank write end alignment)",
617  end_addr + 1, padding_at_end);
618  }
619 
620  struct duration bench;
621  duration_start(&bench);
622 
623  retval = flash_driver_write(bank, buffer, aligned_start - bank->base, aligned_size);
624  if (retval != ERROR_OK)
625  goto done;
626 
627  retval = flash_driver_read(bank, buffer, address - bank->base, size_bytes);
628  if (retval != ERROR_OK)
629  goto done;
630 
631  for (i = 0, ptr = buffer; i < count; i++) {
632  uint64_t readback = 0;
633 
634  switch (wordsize) {
635  case 8:
636  readback = target_buffer_get_u64(target, ptr);
637  break;
638  case 4:
639  readback = target_buffer_get_u32(target, ptr);
640  break;
641  case 2:
642  readback = target_buffer_get_u16(target, ptr);
643  break;
644  case 1:
645  readback = *ptr;
646  break;
647  }
648  if (readback != pattern) {
649  LOG_ERROR(
650  "Verification error address " TARGET_ADDR_FMT
651  ", read back 0x%02" PRIx64 ", expected 0x%02" PRIx64,
652  address + i * wordsize, readback, pattern);
653  retval = ERROR_FAIL;
654  goto done;
655  }
656  ptr += wordsize;
657  }
658 
659  if (retval == ERROR_OK && duration_measure(&bench) == ERROR_OK) {
660  command_print(CMD, "wrote %" PRIu32 " bytes to " TARGET_ADDR_FMT
661  " in %fs (%0.3f KiB/s)", size_bytes, address,
662  duration_elapsed(&bench), duration_kbps(&bench, size_bytes));
663  }
664 
665 done:
666  free(buffer);
667 
668  return retval;
669 }
670 
671 COMMAND_HANDLER(handle_flash_md_command)
672 {
673  int retval;
674 
675  if (CMD_ARGC < 1 || CMD_ARGC > 2)
677 
680 
681  uint32_t count = 1;
682  if (CMD_ARGC == 2)
684 
685  unsigned int wordsize;
686  switch (CMD_NAME[2]) {
687  case 'w':
688  wordsize = 4;
689  break;
690  case 'h':
691  wordsize = 2;
692  break;
693  case 'b':
694  wordsize = 1;
695  break;
696  default:
698  }
699 
700  if (count == 0)
701  return ERROR_OK;
702 
704  struct flash_bank *bank;
705  retval = get_flash_bank_by_addr(target, address, true, &bank);
706  if (retval != ERROR_OK)
707  return retval;
708 
709  uint32_t offset = address - bank->base;
710  uint32_t sizebytes = count * wordsize;
711  if (offset + sizebytes > bank->size) {
712  command_print(CMD, "Cannot cross flash bank borders");
713  return ERROR_FAIL;
714  }
715 
716  uint8_t *buffer = calloc(count, wordsize);
717  if (!buffer) {
718  command_print(CMD, "No memory for flash read buffer");
719  return ERROR_FAIL;
720  }
721 
722  retval = flash_driver_read(bank, buffer, offset, sizebytes);
723  if (retval == ERROR_OK)
725  buffer, true);
726 
727  free(buffer);
728 
729  return retval;
730 }
731 
732 COMMAND_HANDLER(handle_flash_read_memory_command)
733 {
734  /*
735  * CMD_ARGV[0] = memory address
736  * CMD_ARGV[1] = desired element width in bits
737  * CMD_ARGV[2] = number of elements to read
738  */
739 
740  if (CMD_ARGC != 3)
742 
743  /* Arg 1: Memory address. */
746 
747  /* Arg 2: Bit width of one element. */
748  unsigned int width_bits;
749  COMMAND_PARSE_NUMBER(uint, CMD_ARGV[1], width_bits);
750 
751  /* Arg 3: Number of elements to read. */
752  unsigned int count;
754 
755  switch (width_bits) {
756  case 8:
757  case 16:
758  case 32:
759  case 64:
760  break;
761  default:
762  command_print(CMD, "invalid width, must be 8, 16, 32 or 64");
764  }
765 
766  if (count > 65536) {
767  command_print(CMD, "too large read request, exceeds 64K elements");
769  }
770 
771  const unsigned int width = width_bits / 8;
772  /* -1 is needed to handle cases when (addr + count * width) results in zero
773  * due to overflow.
774  */
775  if ((addr + count * width - 1) < addr) {
776  command_print(CMD, "memory region wraps over address zero");
778  }
779 
781  struct flash_bank *bank;
782  int retval = get_flash_bank_by_addr(target, addr, true, &bank);
783  if (retval != ERROR_OK)
784  return retval;
785 
786  uint32_t offset = addr - bank->base;
787  uint32_t sizebytes = count * width_bits;
788  if (offset + sizebytes > bank->size) {
789  command_print(CMD, "cannot cross flash bank borders");
790  return ERROR_FAIL;
791  }
792 
793  const size_t buffer_size = 4096;
794  uint8_t *buffer = malloc(buffer_size);
795 
796  if (!buffer) {
797  command_print(CMD, "failed to allocate memory");
798  return ERROR_FAIL;
799  }
800 
801  char *separator = "";
802  while (count > 0) {
803  const unsigned int max_chunk_len = buffer_size / width;
804  const size_t chunk_len = MIN(count, max_chunk_len);
805 
806  retval = flash_driver_read(bank, buffer, offset, chunk_len * width);
807 
808  if (retval != ERROR_OK) {
809  LOG_DEBUG("read at " TARGET_ADDR_FMT " with width=%u and count=%zu failed",
810  addr, width_bits, chunk_len);
811  /*
812  * FIXME: we append the errmsg to the list of value already read.
813  * Add a way to flush and replace old output, but LOG_DEBUG() it
814  */
815  command_print(CMD, "failed to read memory");
816  free(buffer);
817  return retval;
818  }
819 
820  for (size_t i = 0; i < chunk_len ; i++) {
821  uint64_t v = 0;
822 
823  switch (width) {
824  case 8:
826  break;
827  case 4:
829  break;
830  case 2:
832  break;
833  case 1:
834  v = buffer[i];
835  break;
836  }
837 
838  command_print_sameline(CMD, "%s0x%" PRIx64, separator, v);
839  separator = " ";
840  }
841 
842  count -= chunk_len;
843  offset += chunk_len * width;
844  }
845 
846  free(buffer);
847 
848  return ERROR_OK;
849 }
850 
851 COMMAND_HANDLER(handle_flash_write_bank_command)
852 {
853  uint32_t offset;
854  uint8_t *buffer;
855  size_t length;
856  struct fileio *fileio;
857 
858  if (CMD_ARGC < 2 || CMD_ARGC > 3)
860 
861  struct duration bench;
862  duration_start(&bench);
863 
864  struct flash_bank *bank;
865  int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &bank);
866  if (retval != ERROR_OK)
867  return retval;
868 
869  offset = 0;
870 
871  if (CMD_ARGC > 2)
873 
874  if (offset > bank->size) {
875  LOG_ERROR("Offset 0x%8.8" PRIx32 " is out of range of the flash bank",
876  offset);
878  }
879 
881  return ERROR_FAIL;
882 
883  size_t filesize;
884  retval = fileio_size(fileio, &filesize);
885  if (retval != ERROR_OK) {
887  return retval;
888  }
889 
890  length = MIN(filesize, bank->size - offset);
891 
892  if (!length) {
893  LOG_INFO("Nothing to write to flash bank");
895  return ERROR_OK;
896  }
897 
898  if (length != filesize)
899  LOG_INFO("File content exceeds flash bank size. Only writing the "
900  "first %zu bytes of the file", length);
901 
902  target_addr_t start_addr = bank->base + offset;
903  target_addr_t aligned_start = flash_write_align_start(bank, start_addr);
904  target_addr_t end_addr = start_addr + length - 1;
905  target_addr_t aligned_end = flash_write_align_end(bank, end_addr);
906  uint32_t aligned_size = aligned_end + 1 - aligned_start;
907  uint32_t padding_at_start = start_addr - aligned_start;
908  uint32_t padding_at_end = aligned_end - end_addr;
909 
910  buffer = malloc(aligned_size);
911  if (!buffer) {
913  LOG_ERROR("Out of memory");
914  return ERROR_FAIL;
915  }
916 
917  if (padding_at_start) {
918  memset(buffer, bank->default_padded_value, padding_at_start);
919  LOG_WARNING("Start offset 0x%08" PRIx32
920  " breaks the required alignment of flash bank %s",
921  offset, bank->name);
922  LOG_WARNING("Padding %" PRIu32 " bytes from " TARGET_ADDR_FMT,
923  padding_at_start, aligned_start);
924  }
925 
926  uint8_t *ptr = buffer + padding_at_start;
927  size_t buf_cnt;
928  if (fileio_read(fileio, length, ptr, &buf_cnt) != ERROR_OK) {
929  free(buffer);
931  return ERROR_FAIL;
932  }
933 
934  if (buf_cnt != length) {
935  LOG_ERROR("Short read");
936  free(buffer);
938  return ERROR_FAIL;
939  }
940 
941  ptr += length;
942 
943  if (padding_at_end) {
944  memset(ptr, bank->default_padded_value, padding_at_end);
945  LOG_INFO("Padding at " TARGET_ADDR_FMT " with %" PRIu32
946  " bytes (bank write end alignment)",
947  end_addr + 1, padding_at_end);
948  }
949 
950  retval = flash_driver_write(bank, buffer, aligned_start - bank->base, aligned_size);
951 
952  free(buffer);
953 
954  if (retval == ERROR_OK && duration_measure(&bench) == ERROR_OK) {
955  command_print(CMD, "wrote %zu bytes from file %s to flash bank %u"
956  " at offset 0x%8.8" PRIx32 " in %fs (%0.3f KiB/s)",
957  length, CMD_ARGV[1], bank->bank_number, offset,
958  duration_elapsed(&bench), duration_kbps(&bench, length));
959  }
960 
962 
963  return retval;
964 }
965 
966 COMMAND_HANDLER(handle_flash_read_bank_command)
967 {
968  uint32_t offset;
969  uint8_t *buffer;
970  struct fileio *fileio;
971  uint32_t length;
972  size_t written;
973 
974  if (CMD_ARGC < 2 || CMD_ARGC > 4)
976 
977  struct duration bench;
978  duration_start(&bench);
979 
980  struct flash_bank *p;
981  int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
982 
983  if (retval != ERROR_OK)
984  return retval;
985 
986  offset = 0;
987 
988  if (CMD_ARGC > 2)
990 
991  if (offset > p->size) {
992  LOG_ERROR("Offset 0x%8.8" PRIx32 " is out of range of the flash bank",
993  offset);
995  }
996 
997  length = p->size - offset;
998 
999  if (CMD_ARGC > 3)
1001 
1002  if (offset + length > p->size) {
1003  LOG_ERROR("Length of %" PRIu32 " bytes with offset 0x%8.8" PRIx32
1004  " is out of range of the flash bank", length, offset);
1006  }
1007 
1008  buffer = malloc(length);
1009  if (!buffer) {
1010  LOG_ERROR("Out of memory");
1011  return ERROR_FAIL;
1012  }
1013 
1014  retval = flash_driver_read(p, buffer, offset, length);
1015  if (retval != ERROR_OK) {
1016  LOG_ERROR("Read error");
1017  free(buffer);
1018  return retval;
1019  }
1020 
1022  if (retval != ERROR_OK) {
1023  LOG_ERROR("Could not open file");
1024  free(buffer);
1025  return retval;
1026  }
1027 
1028  retval = fileio_write(fileio, length, buffer, &written);
1030  free(buffer);
1031  if (retval != ERROR_OK) {
1032  LOG_ERROR("Could not write file");
1033  return ERROR_FAIL;
1034  }
1035 
1036  if (duration_measure(&bench) == ERROR_OK)
1037  command_print(CMD, "wrote %zd bytes to file %s from flash bank %u"
1038  " at offset 0x%8.8" PRIx32 " in %fs (%0.3f KiB/s)",
1039  written, CMD_ARGV[1], p->bank_number, offset,
1040  duration_elapsed(&bench), duration_kbps(&bench, written));
1041 
1042  return retval;
1043 }
1044 
1045 
1046 COMMAND_HANDLER(handle_flash_verify_bank_command)
1047 {
1048  uint32_t offset;
1049  uint8_t *buffer_file, *buffer_flash;
1050  struct fileio *fileio;
1051  size_t read_cnt;
1052  size_t filesize;
1053  size_t length;
1054  int differ;
1055 
1056  if (CMD_ARGC < 2 || CMD_ARGC > 3)
1058 
1059  struct duration bench;
1060  duration_start(&bench);
1061 
1062  struct flash_bank *p;
1063  int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
1064  if (retval != ERROR_OK)
1065  return retval;
1066 
1067  offset = 0;
1068 
1069  if (CMD_ARGC > 2)
1071 
1072  if (offset > p->size) {
1073  LOG_ERROR("Offset 0x%8.8" PRIx32 " is out of range of the flash bank",
1074  offset);
1076  }
1077 
1079  if (retval != ERROR_OK) {
1080  LOG_ERROR("Could not open file");
1081  return retval;
1082  }
1083 
1084  retval = fileio_size(fileio, &filesize);
1085  if (retval != ERROR_OK) {
1087  return retval;
1088  }
1089 
1090  length = MIN(filesize, p->size - offset);
1091 
1092  if (!length) {
1093  LOG_INFO("Nothing to compare with flash bank");
1095  return ERROR_OK;
1096  }
1097 
1098  if (length != filesize)
1099  LOG_INFO("File content exceeds flash bank size. Only comparing the "
1100  "first %zu bytes of the file", length);
1101 
1102  buffer_file = malloc(length);
1103  if (!buffer_file) {
1104  LOG_ERROR("Out of memory");
1106  return ERROR_FAIL;
1107  }
1108 
1109  retval = fileio_read(fileio, length, buffer_file, &read_cnt);
1111  if (retval != ERROR_OK) {
1112  LOG_ERROR("File read failure");
1113  free(buffer_file);
1114  return retval;
1115  }
1116 
1117  if (read_cnt != length) {
1118  LOG_ERROR("Short read");
1119  free(buffer_file);
1120  return ERROR_FAIL;
1121  }
1122 
1123  buffer_flash = malloc(length);
1124  if (!buffer_flash) {
1125  LOG_ERROR("Out of memory");
1126  free(buffer_file);
1127  return ERROR_FAIL;
1128  }
1129 
1130  retval = flash_driver_read(p, buffer_flash, offset, length);
1131  if (retval != ERROR_OK) {
1132  LOG_ERROR("Flash read error");
1133  free(buffer_flash);
1134  free(buffer_file);
1135  return retval;
1136  }
1137 
1138  if (duration_measure(&bench) == ERROR_OK)
1139  command_print(CMD, "read %zd bytes from file %s and flash bank %u"
1140  " at offset 0x%8.8" PRIx32 " in %fs (%0.3f KiB/s)",
1141  length, CMD_ARGV[1], p->bank_number, offset,
1142  duration_elapsed(&bench), duration_kbps(&bench, length));
1143 
1144  differ = memcmp(buffer_file, buffer_flash, length);
1145  command_print(CMD, "contents %s", differ ? "differ" : "match");
1146  if (differ) {
1147  uint32_t t;
1148  int diffs = 0;
1149  for (t = 0; t < length; t++) {
1150  if (buffer_flash[t] == buffer_file[t])
1151  continue;
1152  command_print(CMD, "diff %d address 0x%08" PRIx32 ". Was 0x%02x instead of 0x%02x",
1153  diffs, t + offset, buffer_flash[t], buffer_file[t]);
1154  if (diffs++ >= 127) {
1155  command_print(CMD, "More than 128 errors, the rest are not printed.");
1156  break;
1157  }
1158  keep_alive();
1159  }
1160  }
1161  free(buffer_flash);
1162  free(buffer_file);
1163 
1164  return differ ? ERROR_FAIL : ERROR_OK;
1165 }
1166 
1168 {
1169  struct flash_bank *c;
1170 
1171  /* set all flash to require erasing */
1172  for (c = flash_bank_list(); c; c = c->next) {
1173  for (unsigned int i = 0; i < c->num_sectors; i++)
1174  c->sectors[i].is_erased = 0;
1175  }
1176 }
1177 
1178 COMMAND_HANDLER(handle_flash_padded_value_command)
1179 {
1180  if (CMD_ARGC != 2)
1182 
1183  struct flash_bank *p;
1184  int retval = CALL_COMMAND_HANDLER(flash_command_get_bank, 0, &p);
1185  if (retval != ERROR_OK)
1186  return retval;
1187 
1189 
1190  command_print(CMD, "Default padded value set to 0x%" PRIx8 " for flash bank %u",
1192 
1193  return retval;
1194 }
1195 
1196 static const struct command_registration flash_exec_command_handlers[] = {
1197  {
1198  .name = "probe",
1199  .handler = handle_flash_probe_command,
1200  .mode = COMMAND_EXEC,
1201  .usage = "bank_id",
1202  .help = "Identify a flash bank.",
1203  },
1204  {
1205  .name = "info",
1206  .handler = handle_flash_info_command,
1207  .mode = COMMAND_EXEC,
1208  .usage = "bank_id ['sectors']",
1209  .help = "Print information about a flash bank.",
1210  },
1211  {
1212  .name = "erase_check",
1213  .handler = handle_flash_erase_check_command,
1214  .mode = COMMAND_EXEC,
1215  .usage = "bank_id",
1216  .help = "Check erase state of all blocks in a "
1217  "flash bank.",
1218  },
1219  {
1220  .name = "erase_sector",
1221  .handler = handle_flash_erase_command,
1222  .mode = COMMAND_EXEC,
1223  .usage = "bank_id first_sector_num (last_sector_num|'last')",
1224  .help = "Erase a range of sectors in a flash bank.",
1225  },
1226  {
1227  .name = "erase_address",
1228  .handler = handle_flash_erase_address_command,
1229  .mode = COMMAND_EXEC,
1230  .usage = "['pad'] ['unlock'] address length",
1231  .help = "Erase flash sectors starting at address and "
1232  "continuing for length bytes. If 'pad' is specified, "
1233  "data outside that range may also be erased: the start "
1234  "address may be decreased, and length increased, so "
1235  "that all of the first and last sectors are erased. "
1236  "If 'unlock' is specified, then the flash is unprotected "
1237  "before erasing.",
1238 
1239  },
1240  {
1241  .name = "filld",
1242  .handler = handle_flash_fill_command,
1243  .mode = COMMAND_EXEC,
1244  .usage = "address value n",
1245  .help = "Fill n double-words with 64-bit value, starting at "
1246  "word address. (No autoerase.)",
1247  },
1248  {
1249  .name = "fillw",
1250  .handler = handle_flash_fill_command,
1251  .mode = COMMAND_EXEC,
1252  .usage = "address value n",
1253  .help = "Fill n words with 32-bit value, starting at "
1254  "word address. (No autoerase.)",
1255  },
1256  {
1257  .name = "fillh",
1258  .handler = handle_flash_fill_command,
1259  .mode = COMMAND_EXEC,
1260  .usage = "address value n",
1261  .help = "Fill n halfwords with 16-bit value, starting at "
1262  "word address. (No autoerase.)",
1263  },
1264  {
1265  .name = "fillb",
1266  .handler = handle_flash_fill_command,
1267  .mode = COMMAND_EXEC,
1268  .usage = "address value n",
1269  .help = "Fill n bytes with 8-bit value, starting at "
1270  "word address. (No autoerase.)",
1271  },
1272  {
1273  .name = "mdb",
1274  .handler = handle_flash_md_command,
1275  .mode = COMMAND_EXEC,
1276  .usage = "address [count]",
1277  .help = "Display bytes from flash.",
1278  },
1279  {
1280  .name = "mdh",
1281  .handler = handle_flash_md_command,
1282  .mode = COMMAND_EXEC,
1283  .usage = "address [count]",
1284  .help = "Display half-words from flash.",
1285  },
1286  {
1287  .name = "mdw",
1288  .handler = handle_flash_md_command,
1289  .mode = COMMAND_EXEC,
1290  .usage = "address [count]",
1291  .help = "Display words from flash.",
1292  },
1293  {
1294  .name = "read_memory",
1295  .mode = COMMAND_EXEC,
1296  .handler = handle_flash_read_memory_command,
1297  .help = "Read Tcl list of 8/16/32/64 bit numbers from flash memory",
1298  .usage = "address width count",
1299  },
1300  {
1301  .name = "write_bank",
1302  .handler = handle_flash_write_bank_command,
1303  .mode = COMMAND_EXEC,
1304  .usage = "bank_id filename [offset]",
1305  .help = "Write binary data from file to flash bank. Allow optional "
1306  "offset from beginning of the bank (defaults to zero).",
1307  },
1308  {
1309  .name = "write_image",
1310  .handler = handle_flash_write_image_command,
1311  .mode = COMMAND_EXEC,
1312  .usage = "[erase] [unlock] filename [offset [file_type]]",
1313  .help = "Write an image to flash. Optionally first unprotect "
1314  "and/or erase the region to be used. Allow optional "
1315  "offset from beginning of bank (defaults to zero)",
1316  },
1317  {
1318  .name = "verify_image",
1319  .handler = handle_flash_verify_image_command,
1320  .mode = COMMAND_EXEC,
1321  .usage = "filename [offset [file_type]]",
1322  .help = "Verify an image against flash. Allow optional "
1323  "offset from beginning of bank (defaults to zero)",
1324  },
1325  {
1326  .name = "read_bank",
1327  .handler = handle_flash_read_bank_command,
1328  .mode = COMMAND_EXEC,
1329  .usage = "bank_id filename [offset [length]]",
1330  .help = "Read binary data from flash bank to file. Allow optional "
1331  "offset from beginning of the bank (defaults to zero).",
1332  },
1333  {
1334  .name = "verify_bank",
1335  .handler = handle_flash_verify_bank_command,
1336  .mode = COMMAND_EXEC,
1337  .usage = "bank_id filename [offset]",
1338  .help = "Compare the contents of a file with the contents of the "
1339  "flash bank. Allow optional offset from beginning of the bank "
1340  "(defaults to zero).",
1341  },
1342  {
1343  .name = "protect",
1344  .handler = handle_flash_protect_command,
1345  .mode = COMMAND_EXEC,
1346  .usage = "bank_id first_block [last_block|'last'] "
1347  "('on'|'off')",
1348  .help = "Turn protection on or off for a range of protection "
1349  "blocks or sectors in a given flash bank. "
1350  "See 'flash info' output for a list of blocks.",
1351  },
1352  {
1353  .name = "padded_value",
1354  .handler = handle_flash_padded_value_command,
1355  .mode = COMMAND_EXEC,
1356  .usage = "bank_id value",
1357  .help = "Set default flash padded value",
1358  },
1360 };
1361 
1362 static int flash_init_drivers(struct command_context *cmd_ctx)
1363 {
1364  if (!flash_bank_list())
1365  return ERROR_OK;
1366 
1367  return register_commands(cmd_ctx, "flash", flash_exec_command_handlers);
1368 }
1369 
1370 COMMAND_HANDLER(handle_flash_bank_command)
1371 {
1372  if (CMD_ARGC < 7) {
1373  LOG_ERROR("usage: flash bank <name> <driver> "
1374  "<base> <size> <chip_width> <bus_width> <target>");
1376  }
1377  /* save bank name and advance arguments for compatibility */
1378  const char *bank_name = *CMD_ARGV++;
1379  CMD_ARGC--;
1380 
1381  struct target *target = get_target(CMD_ARGV[5]);
1382  if (!target) {
1383  LOG_ERROR("target '%s' not defined", CMD_ARGV[5]);
1384  return ERROR_FAIL;
1385  }
1386 
1387  const char *driver_name = CMD_ARGV[0];
1388  const struct flash_driver *driver = flash_driver_find_by_name(driver_name);
1389  if (!driver) {
1390  /* no matching flash driver found */
1391  LOG_ERROR("flash driver '%s' not found", driver_name);
1392  return ERROR_FAIL;
1393  }
1394 
1395  /* check the flash bank name is unique */
1396  if (get_flash_bank_by_name_noprobe(bank_name)) {
1397  /* flash bank name already exists */
1398  LOG_ERROR("flash bank name '%s' already exists", bank_name);
1399  return ERROR_FAIL;
1400  }
1401 
1402  /* register flash specific commands */
1403  if (driver->commands) {
1404  int retval = register_commands(CMD_CTX, NULL, driver->commands);
1405  if (retval != ERROR_OK) {
1406  LOG_ERROR("couldn't register '%s' commands",
1407  driver_name);
1408  return ERROR_FAIL;
1409  }
1410  }
1411 
1412  struct flash_bank *c = calloc(1, sizeof(*c));
1413  c->name = strdup(bank_name);
1414  c->target = target;
1415  c->driver = driver;
1416  COMMAND_PARSE_NUMBER(target_addr, CMD_ARGV[1], c->base);
1417  COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], c->size);
1419  COMMAND_PARSE_NUMBER(uint, CMD_ARGV[4], c->bus_width);
1420  c->default_padded_value = c->erased_value = 0xff;
1422 
1423  int retval;
1424  retval = CALL_COMMAND_HANDLER(driver->flash_bank_command, c);
1425  if (retval != ERROR_OK) {
1426  LOG_ERROR("'%s' driver rejected flash bank at " TARGET_ADDR_FMT
1427  "; usage: %s", driver_name, c->base, driver->usage);
1428  free(c->name);
1429  free(c);
1430  return retval;
1431  }
1432 
1433  if (!driver->usage)
1434  LOG_DEBUG("'%s' driver usage field missing", driver_name);
1435 
1436  flash_bank_add(c);
1437 
1438  return ERROR_OK;
1439 }
1440 
1441 COMMAND_HANDLER(handle_flash_banks_command)
1442 {
1443  if (CMD_ARGC != 0)
1445 
1446  for (struct flash_bank *p = flash_bank_list(); p; p = p->next) {
1447  command_print(CMD, "#%d : %s (%s) at " TARGET_ADDR_FMT ", size 0x%8.8" PRIx32 ", "
1448  "buswidth %u, chipwidth %u", p->bank_number,
1449  p->name, p->driver->name, p->base, p->size,
1450  p->bus_width, p->chip_width);
1451  }
1452  return ERROR_OK;
1453 }
1454 
1455 COMMAND_HANDLER(handle_flash_list)
1456 {
1457  if (CMD_ARGC != 0)
1459 
1460  for (struct flash_bank *p = flash_bank_list(); p; p = p->next) {
1462  "{\n"
1463  " name {%s}\n"
1464  " driver %s\n"
1465  " base " TARGET_ADDR_FMT "\n"
1466  " size 0x%" PRIx32 "\n"
1467  " bus_width %u\n"
1468  " chip_width %u\n"
1469  " target %s\n"
1470  "}",
1471  p->name, p->driver->name, p->base, p->size, p->bus_width, p->chip_width,
1472  target_name(p->target));
1473  }
1474 
1475  return ERROR_OK;
1476 }
1477 
1478 COMMAND_HANDLER(handle_flash_init_command)
1479 {
1480  if (CMD_ARGC != 0)
1482 
1483  static bool flash_initialized;
1484  if (flash_initialized) {
1485  LOG_INFO("'flash init' has already been called");
1486  return ERROR_OK;
1487  }
1488  flash_initialized = true;
1489 
1490  LOG_DEBUG("Initializing flash devices...");
1491  return flash_init_drivers(CMD_CTX);
1492 }
1493 
1494 static const struct command_registration flash_config_command_handlers[] = {
1495  {
1496  .name = "bank",
1497  .handler = handle_flash_bank_command,
1498  .mode = COMMAND_CONFIG,
1499  .usage = "bank_id driver_name base_address size_bytes "
1500  "chip_width_bytes bus_width_bytes target "
1501  "[driver_options ...]",
1502  .help = "Define a new bank with the given name, "
1503  "using the specified NOR flash driver.",
1504  },
1505  {
1506  .name = "init",
1507  .mode = COMMAND_CONFIG,
1508  .handler = handle_flash_init_command,
1509  .help = "Initialize flash devices.",
1510  .usage = "",
1511  },
1512  {
1513  .name = "banks",
1514  .mode = COMMAND_ANY,
1515  .handler = handle_flash_banks_command,
1516  .help = "Display table with information about flash banks.",
1517  .usage = "",
1518  },
1519  {
1520  .name = "list",
1521  .mode = COMMAND_ANY,
1522  .handler = handle_flash_list,
1523  .help = "Returns a list of details about the flash banks.",
1524  .usage = "",
1525  },
1527 };
1528 static const struct command_registration flash_command_handlers[] = {
1529  {
1530  .name = "flash",
1531  .mode = COMMAND_ANY,
1532  .help = "NOR flash command group",
1534  .usage = "",
1535  },
1537 };
1538 
1540 {
1541  return register_commands(cmd_ctx, NULL, flash_command_handlers);
1542 }
const char * name
Definition: am13e230x.c:167
void command_print_sameline(struct command_invocation *cmd, const char *format,...)
Definition: command.c:378
void command_print(struct command_invocation *cmd, const char *format,...)
Definition: command.c:389
#define CMD
Use this macro to access the command being handled, rather than accessing the variable directly.
Definition: command.h:146
#define CALL_COMMAND_HANDLER(name, extra ...)
Use this to macro to call a command helper (or a nested handler).
Definition: command.h:123
#define CMD_NAME
Use this macro to access the name of the command being handled, rather than accessing the variable di...
Definition: command.h:171
#define CMD_ARGV
Use this macro to access the arguments for the command being handled, rather than accessing the varia...
Definition: command.h:161
#define COMMAND_PARSE_ADDRESS(in, out)
Definition: command.h:455
#define COMMAND_PARSE_ON_OFF(in, out)
parses an on/off command argument
Definition: command.h:533
#define ERROR_COMMAND_SYNTAX_ERROR
Definition: command.h:405
#define CMD_ARGC
Use this macro to access the number of arguments for the command being handled, rather than accessing...
Definition: command.h:156
#define COMMAND_PARSE_NUMBER(type, in, out)
parses the string in into out as a type, or prints a command error and passes the error code to the c...
Definition: command.h:445
#define CMD_CTX
Use this macro to access the context of the command being handled, rather than accessing the variable...
Definition: command.h:151
#define COMMAND_REGISTRATION_DONE
Use this as the last entry in an array of command_registration records.
Definition: command.h:256
#define ERROR_COMMAND_ARGUMENT_INVALID
Definition: command.h:407
static int register_commands(struct command_context *cmd_ctx, const char *cmd_prefix, const struct command_registration *cmds)
Register one or more commands in the specified context, as children of parent (or top-level commends,...
Definition: command.h:277
@ COMMAND_CONFIG
Definition: command.h:41
@ COMMAND_ANY
Definition: command.h:42
@ COMMAND_EXEC
Definition: command.h:40
uint8_t pattern
Fill pattern.
Definition: dw-spi-helper.h:8
uint64_t buffer
Pointer to data buffer to send over SPI.
Definition: dw-spi-helper.h:0
uint32_t size
Size of dw_spi_transaction::buffer.
Definition: dw-spi-helper.h:4
uint32_t buffer_size
Size of dw_spi_program::buffer.
Definition: dw-spi-helper.h:5
uint32_t address
Starting address. Sector aligned.
Definition: dw-spi-helper.h:0
unsigned short width
Definition: embeddedice.c:47
uint8_t bank
Definition: esirisc.c:135
uint8_t length
Definition: esp_usb_jtag.c:1
#define ERROR_FLASH_OPER_UNSUPPORTED
Definition: flash/common.h:36
target_addr_t flash_write_align_start(struct flash_bank *bank, target_addr_t addr)
Get aligned start address of a flash write region.
int flash_driver_read(struct flash_bank *bank, uint8_t *buffer, uint32_t offset, uint32_t count)
struct flash_bank * get_flash_bank_by_name_noprobe(const char *name)
Returns the flash bank specified by name, which matches the driver name and a suffix (option) specify...
target_addr_t flash_write_align_end(struct flash_bank *bank, target_addr_t addr)
Get aligned end address of a flash write region.
int flash_driver_protect(struct flash_bank *bank, int set, unsigned int first, unsigned int last)
int flash_driver_write(struct flash_bank *bank, const uint8_t *buffer, uint32_t offset, uint32_t count)
void flash_bank_add(struct flash_bank *bank)
Adds a new NOR bank to the global list of banks.
int flash_unlock_address_range(struct target *target, target_addr_t addr, uint32_t length)
struct flash_bank * get_flash_bank_by_num_noprobe(unsigned int num)
Returns the flash bank like get_flash_bank_by_num(), without probing.
int get_flash_bank_by_addr(struct target *target, target_addr_t addr, bool check, struct flash_bank **result_bank)
Returns the flash bank located at a specified address.
int flash_erase_address_range(struct target *target, bool pad, target_addr_t addr, uint32_t length)
Erases length bytes in the target flash, starting at addr.
int flash_driver_erase(struct flash_bank *bank, unsigned int first, unsigned int last)
int get_flash_bank_by_name(const char *name, struct flash_bank **bank_result)
Returns the flash bank specified by name, which matches the driver name and a suffix (option) specify...
struct flash_bank * flash_bank_list(void)
int get_flash_bank_by_num(unsigned int num, struct flash_bank **bank)
Returns the flash bank like get_flash_bank_by_name(), without probing.
int flash_write_unlock_verify(struct target *target, struct image *image, uint32_t *written, bool erase, bool unlock, bool write, bool verify)
static const struct command_registration flash_config_command_handlers[]
static const struct command_registration flash_command_handlers[]
void flash_set_dirty(void)
Forces targets to re-examine their erase/protection state.
COMMAND_HELPER(flash_command_get_bank_probe_optional, unsigned int name_index, struct flash_bank **bank, bool do_probe)
Retrieves bank from a command argument, reporting errors parsing the bank identifier or retrieving th...
Definition: flash/nor/tcl.c:22
static const struct command_registration flash_exec_command_handlers[]
static int flash_init_drivers(struct command_context *cmd_ctx)
COMMAND_HANDLER(handle_flash_info_command)
Definition: flash/nor/tcl.c:58
int flash_register_commands(struct command_context *cmd_ctx)
Registers the 'flash' subsystem commands.
int fileio_write(struct fileio *fileio, size_t size, const void *buffer, size_t *size_written)
int fileio_read(struct fileio *fileio, size_t size, void *buffer, size_t *size_read)
int fileio_close(struct fileio *fileio)
int fileio_size(struct fileio *fileio, size_t *size)
FIX!!!!
int fileio_open(struct fileio **fileio, const char *url, enum fileio_access access_type, enum fileio_type type)
@ FILEIO_WRITE
Definition: helper/fileio.h:29
@ FILEIO_READ
Definition: helper/fileio.h:28
@ FILEIO_BINARY
Definition: helper/fileio.h:23
void image_close(struct image *image)
Definition: image.c:1210
int image_open(struct image *image, const char *url, const char *type_string)
Definition: image.c:956
void keep_alive(void)
Definition: log.c:437
#define LOG_WARNING(expr ...)
Definition: log.h:144
#define ERROR_FAIL
Definition: log.h:188
#define LOG_ERROR(expr ...)
Definition: log.h:147
#define LOG_INFO(expr ...)
Definition: log.h:141
#define LOG_DEBUG(expr ...)
Definition: log.h:124
#define ERROR_OK
Definition: log.h:182
#define FLASH_WRITE_GAP_SECTOR
Definition: nor/core.h:63
const struct flash_driver * flash_driver_find_by_name(const char *name)
Find a NOR flash driver by its name.
Definition: drivers.c:103
#define MIN(a, b)
Definition: replacements.h:22
target_addr_t addr
Start address to search for the control block.
Definition: rtt/rtt.c:28
struct target * target
Definition: rtt/rtt.c:26
const char * name
Definition: command.h:239
const char * usage
a string listing the options and arguments, required or optional
Definition: command.h:244
Provides details of a flash bank, available either on-chip or through a major interface.
Definition: nor/core.h:75
unsigned int num_prot_blocks
The number of protection blocks in this bank.
Definition: nor/core.h:126
struct flash_sector * sectors
Array of sectors, allocated and initialized by the flash driver.
Definition: nor/core.h:118
uint8_t default_padded_value
Default padded value used, normally this matches the flash erased value.
Definition: nor/core.h:97
const struct flash_driver * driver
Driver for this bank.
Definition: nor/core.h:80
unsigned int chip_width
Width of the chip in bytes (1,2,4 bytes)
Definition: nor/core.h:89
target_addr_t base
The base address of this bank.
Definition: nor/core.h:84
uint32_t size
The size of this chip bank, in bytes.
Definition: nor/core.h:85
unsigned int num_sectors
The number of sectors on this chip.
Definition: nor/core.h:116
struct flash_sector * prot_blocks
Array of protection blocks, allocated and initialized by the flash driver.
Definition: nor/core.h:128
unsigned int bus_width
Maximum bus width, in bytes (1,2,4 bytes)
Definition: nor/core.h:90
struct flash_bank * next
The next flash bank on this chip.
Definition: nor/core.h:130
struct target * target
Target to which this bank belongs.
Definition: nor/core.h:78
uint32_t minimal_write_gap
Minimal gap between sections to discontinue flash write Default FLASH_WRITE_GAP_SECTOR splits the wri...
Definition: nor/core.h:109
char * name
Definition: nor/core.h:76
uint8_t erased_value
Erased value.
Definition: nor/core.h:93
unsigned int bank_number
The 'bank' (or chip number) of this instance.
Definition: nor/core.h:83
Provides the implementation-independent structure that defines all of the callbacks required by OpenO...
Definition: nor/driver.h:39
const struct command_registration * commands
An array of driver-specific commands to register.
Definition: nor/driver.h:56
int(* auto_probe)(struct flash_bank *bank)
A more gentle flavor of flash_driver::probe, performing setup with less noise.
Definition: nor/driver.h:222
const char * usage
Gives a human-readable description of arguments.
Definition: nor/driver.h:49
int(* erase_check)(struct flash_bank *bank)
Check the erasure status of a flash bank.
Definition: nor/driver.h:182
int(* info)(struct flash_bank *bank, struct command_invocation *cmd)
Display human-readable information about the flash bank.
Definition: nor/driver.h:207
int(* probe)(struct flash_bank *bank)
Probe to determine what kind of flash is present.
Definition: nor/driver.h:171
int(* protect_check)(struct flash_bank *bank)
Determine if the specific bank is "protected" or not.
Definition: nor/driver.h:196
const char * name
Gives a human-readable name of this flash driver, This field is used to select and initialize the dri...
Definition: nor/driver.h:44
Describes the geometry and status of a single flash sector within a flash bank.
Definition: nor/core.h:28
int is_erased
Indication of erasure status: 0 = not erased, 1 = erased, other = unknown.
Definition: nor/core.h:42
uint32_t offset
Bus offset from start of the flash chip (in bytes).
Definition: nor/core.h:30
int is_protected
Indication of protection status: 0 = unprotected/unlocked, 1 = protected/locked, other = unknown.
Definition: nor/core.h:55
uint32_t size
Number of bytes in this flash sector.
Definition: nor/core.h:32
Definition: image.h:48
bool start_address_set
Definition: image.h:55
long long base_address
Definition: image.h:54
bool base_address_set
Definition: image.h:53
Definition: target.h:119
uint64_t target_buffer_get_u64(struct target *target, const uint8_t *buffer)
Definition: target.c:318
struct target * get_target(const char *id)
Definition: target.c:444
void target_buffer_set_u16(struct target *target, uint8_t *buffer, uint16_t value)
Definition: target.c:381
void target_buffer_set_u32(struct target *target, uint8_t *buffer, uint32_t value)
Definition: target.c:363
void target_buffer_set_u64(struct target *target, uint8_t *buffer, uint64_t value)
Definition: target.c:354
uint16_t target_buffer_get_u16(struct target *target, const uint8_t *buffer)
Definition: target.c:345
struct target * get_current_target(struct command_context *cmd_ctx)
Definition: target.c:469
uint32_t target_buffer_get_u32(struct target *target, const uint8_t *buffer)
Definition: target.c:327
void target_handle_md_output(struct command_invocation *cmd, struct target *target, target_addr_t address, unsigned int size, unsigned int count, const uint8_t *buffer, bool include_address)
Definition: target.c:3368
static const char * target_name(const struct target *target)
Returns the instance-specific name of the specified target.
Definition: target.h:247
float duration_elapsed(const struct duration *duration)
Definition: time_support.c:46
int duration_measure(struct duration *duration)
Update the duration->elapsed field to finish the duration measurement.
Definition: time_support.c:34
int duration_start(struct duration *duration)
Update the duration->start field to start the duration measurement.
Definition: time_support.c:22
float duration_kbps(const struct duration *duration, size_t count)
Definition: time_support.c:51
#define TARGET_ADDR_FMT
Definition: types.h:286
uint64_t target_addr_t
Definition: types.h:279
#define NULL
Definition: usb.h:16
uint8_t offset[4]
Definition: vdebug.c:9
uint8_t count[4]
Definition: vdebug.c:22