- 23 Dec, 2010 1 commit
-
-
Spencer Oliver authored
The flash bank name is a required element in adding flash banks, however other than looking at the config file there is no way of getting the name used in openocd. Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
- 29 Sep, 2010 2 commits
-
-
Øyvind Harboe authored
Part of making the fileio API more robust. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
Øyvind Harboe authored
Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 21 Sep, 2010 1 commit
-
-
Øyvind Harboe authored
sensible error must be reported at failure site Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 15 Jun, 2010 1 commit
-
-
Øyvind Harboe authored
Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 14 Jun, 2010 1 commit
-
-
Øyvind Harboe authored
when a write/unlock/erase failed during write_image, then an error was not propagated back up so e.g. flash write image from tcl scripts would not throw an exception. Also flash filling speed was printed even when the operation failed. Output is now less confusing. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 11 Jun, 2010 1 commit
-
-
Øyvind Harboe authored
autoprobing can fail and this error has to be reported up the call stack. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 09 Jun, 2010 1 commit
-
-
Øyvind Harboe authored
fixed bug where address was parsed as a signed, rather than unsigned it. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 26 May, 2010 1 commit
-
-
Spencer Oliver authored
When a flash cmd is called using the flash name the autoprobe function is not called. autoprobe is called if flash_command_get_bank falls through to get_flash_bank_by_num. This makes both get_flash_bank_by_name and get_flash_bank_by_num behave the same. Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
- 16 May, 2010 3 commits
-
-
Jon Povey authored
Change download rate messages about kibibytes from "kb/s" to "KiB/s" units. See: http://en.wikipedia.org/wiki/Data_rate_units Signed-off-by:
Jon Povey <jon.povey@racelogic.co.uk>
-
Antonio Borneo authored
Final target is to force bus_width size during CFI flash read. In this first step I need to replace default flash read with flash specific implementation. This patch introduces: - flash_driver_read() layer; - default_flash_read(), backward compatible; - read() callback in struct flash_driver; - proper initialization in every flash_driver instance. Signed-off-by:
Antonio Borneo <borneo.antonio@gmail.com>
-
Antonio Borneo authored
Signed-off-by:
Antonio Borneo <borneo.antonio@gmail.com>
-
- 13 May, 2010 2 commits
-
-
Spencer Oliver authored
Make sure the flash bank name is unique Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
Spencer Oliver authored
flash cmds can now be passed either the bank name or the bank number. For example. flash info stm32.flash flash info 0 Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
- 05 May, 2010 3 commits
-
-
Øyvind Harboe authored
There are a million reasons why cached protection state might be stale: power cycling of target, reset, code executing on the target, etc. The "flash protect_check" command is now gone. This is *always* executed when running a "flash info". As a bonus for more a more robust approach, lots of code could be deleted. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
Øyvind Harboe authored
Quite useful to be able to unlock the flash, just like in the flash write_image cmd. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
Øyvind Harboe authored
This stops GDB from launching with an empty memory map, making gdb load w/flashing fail for no obvious reason. The error message points in the direction of the gdb-attach event that can be set up to issue a halt or "reset init" which will put GDB in a well defined stated upon attach and thus have a robust flash autoprobe. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 10 Apr, 2010 1 commit
-
-
Antonio Borneo authored
Add "static" qualifier to private functions. Signed-off-by:
Antonio Borneo <borneo.antonio@gmail.com>
-
- 26 Mar, 2010 1 commit
-
-
Antonio Borneo authored
The command "flash bank" has updated syntax. Add the mandatory parameter <target> to the usage message that prints in case of error. Signed-off-by:
Antonio Borneo <borneo.antonio@gmail.com>
-
- 16 Mar, 2010 1 commit
-
-
Bradey Honsinger authored
Fixes bug that prevented users from specifying a base address of 0x80000000 or higher in image commands (flash write_image, etm image, xscale trace_image). image.base_address is an offset from the start address contained in the image file (if there is one), or from 0 (for binary files). As a signed 32-bit int, it couldn't be greater than 0x7fffffff, which is a problem when trying to write a binary file to flash above that address. Changing it to a 64-bit long long keeps it as a signed offset, but allows it to cover the entire 32-bit address space. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 29 Jan, 2010 1 commit
-
-
David Brownell authored
Fix goofy struct indents. Function names *are* their addresses. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 14 Jan, 2010 1 commit
-
-
David Brownell authored
Add a NOR flash mechanism where erase_address ranges can be padded out to sector boundaries, triggering a diagnostic: > flash erase_address 0x0001f980 16 address range 0x0001f980 .. 0x0001f98f is not sector-aligned Command handler execution failed in procedure 'flash' called at file "command.c", line 647 called at file "command.c", line 361 > > flash erase_address pad 0x0001f980 16 Adding extra erase range, 0x0001f800 to 0x0001f97f Adding extra erase range, 0x0001f990 to 0x0001fbff erased address 0x0001f980 (length 16) in 0.095975s (0.163 kb/s) > This addresses what would otherwise be something of a functional regression. An earlier version of the interface had a dangerous problem: it would silently erase data outside the range it was told to erase. Fixing that bug turned up some folk who relied on that unsafe behavior. (The classic problem with interface bugs!) Now they can get that behavior again. If they really need it, just specify "pad". Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 11 Jan, 2010 1 commit
-
-
David Brownell authored
Add file comments to a few files. Make the GDB server use more conventional (pointer-free) hex digit conversion. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 09 Jan, 2010 1 commit
-
-
David Brownell authored
Make "usage" messages use the same EBNF as the User's Guide; no angle brackets. Improve and correct various helptexts. Don't use "&function"; a function's name is its address. Remove a couple instances of pointless whitespace; shrink a few overlong lines; fix some bad indents. Add TODO list entry re full support for NAND/NOR bank names. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 28 Dec, 2009 1 commit
-
-
Freddie Chopin authored
Print "ssize_t" as "%ld" (+ cast to long) not as "%zu". Official MinGW (gcc 3.4.5) doesn't understand "z" flag. Signed-off-by:
Freddie Chopin <freddie_chopin@op.pl> Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 26 Dec, 2009 1 commit
-
-
David Brownell authored
Fix syntax error: default to "wrote N bytes"; writing a single byte is an unusual case, not the normal one.
-
- 18 Dec, 2009 1 commit
-
-
David Brownell authored
It's currently allocating a big buffer but writing it out in units of sizeof(host's pointer) ... sub-optimal. Plus fix a couple minor coding style goofs. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 16 Dec, 2009 1 commit
-
-
David Brownell authored
These commands don't have a "bank" parameter. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 12 Dec, 2009 1 commit
-
-
Zachary T Welch authored
The 'flash write_image' command erroneously listed the bank number, when it actually uses target addresses to do that lookup for the user.
-
- 07 Dec, 2009 2 commits
-
-
Zachary T Welch authored
Rename the existing 'flash banks' implementation as 'flash list', and replace the broken 'flash_banks' TCL wrapper with a new command handler. Adds documentation for the new 'flash list' command in the user guide.
-
Zachary T Welch authored
When factoring the bank setup command into flash_bank_add(), I forgot to include a call to the new helper.
-
- 05 Dec, 2009 1 commit
-
-
Zachary T Welch authored
Splits the exec mode commands out of flash.c into the flash/nor/ files. The routines used by these high-level commands are moved into nor/core.c, with their internal declarations placed in nor/imp.h. Fixes distribution of <flash/nor/core.h> header.
-
- 04 Dec, 2009 2 commits
-
-
Zachary T Welch authored
The newly moved flash TCL routines access the internals of the module too much. Fix the layering issues by adding new core NOR flash APIs: <flash/nor/core.h>: - flash_driver_find_by_name() - self-descriptive <flash/nor/imp.h>: - flash_bank_add() - encapsulates adding banks to bank list - flash_bank_list() - encapsulates retreiving bank list This allows the externs in flash/nor/imp.h to be removed, and these mechanisms may now be re-used by other flash module code.
-
Zachary T Welch authored
Moves the top-level 'flash' command handlers into flash/nor/tcl.c, with flash/nor/imp.h providing an internal implementation header to share non-public API components.
-