- 02 Mar, 2010 1 commit
-
-
David Brownell authored
Add doxygen for target_resume() ... referencing the still-unresolved confusion about what the "debug_execution" parameter means (not all CPU support code acts the same). The 'handle_breakpoints" param seems to have resolved the main issue with its semantics, but it wasn't part of the function spec before. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 01 Feb, 2010 1 commit
-
-
Øyvind Harboe authored
srst_asserted and power_restore can now be overriden to do nothing. By default they will "reset init" the targets and halt gdb. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 21 Jan, 2010 2 commits
-
-
Øyvind Harboe authored
If GDB halts unexpectedly, print reason: srst assert or power out detected. If polling fails, then things are a bit trickier. We do not want to spam telnet or the log with polling failed messages. Leave that case be w/a comment in a code for now. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
Edgar Grimberg authored
Fixed format problem for mdh. It needs to display 4 chars. Signed-off-by:
Edgar Grimberg <edgar.grimberg@zylin.com>
-
- 13 Jan, 2010 1 commit
-
-
Øyvind Harboe authored
Allow targets to run checks post reset. Used to check that e.g. DCC downloads have been enabled. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 09 Jan, 2010 1 commit
-
-
David Brownell authored
Usage messages should use the same EBNF as the User's Guide; no angle brackets. Be more complete too ... some params were missing. Don't use "&function"; its name is its address. Unrelated: fix typo in one "target.c" usage message. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 07 Jan, 2010 1 commit
-
-
David Brownell authored
Provide helptext which was sometimes missing; update some of it to be more accurate. Usage syntax messages have the same EBNF as the User's Guide. Don't use "&function"; functions are like arrays, their address is their name. Shrink some overlong lines; remove some empties. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 02 Jan, 2010 1 commit
-
-
David Brownell authored
Most commands are usable only at runtime; so don't bother saying that, it's noise. Moreover, tokens like EXEC are cryptic. Be more clear: highlight only the commands which may (also) be used during the config stage, thus matching the docs more closely. There are - Configuration commands (per documentation) - And also some commands that valid at *any* time. Update the docs to note that "help" now shows this mode info. This also highlighted a few mistakes in command configuration, mostly commands listed as "valid at any time" which shouldn't have been. This just fixes ones I noted when sanity testing. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 31 Dec, 2009 1 commit
-
-
Antonio Borneo authored
Handlers for commands - arm7_9 semihosting <enable | disable> - $_TARGETNAME arp_reset assert 1 didn't check if target has already been examined, and could segfault when using the NULL pointer "arm7_9->eice_cache". Signed-off-by:
Antonio Borneo <borneo.antonio@gmail.com> 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>
-
- 15 Dec, 2009 1 commit
-
-
mkdorg@users.sourceforge.net authored
-
- 13 Dec, 2009 1 commit
-
-
David Brownell authored
Don't include <helper/jim.h> from target.h ... not everything which touches targets needs to be able to talk to Jim. Plus, most files include this header by another path. Also, switch the affected files to use the classic sequence for #included files: all <framework/headers.h> first, then the "local_headers.h". This helps prevent growth of problematic layering, by minimizing entanglement. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 08 Dec, 2009 2 commits
-
-
David Brownell authored
These were all basically "can't happen" cases ... like having state be corrupted by an alpha particle after the previous check for whether a value was in-range. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
David Brownell authored
Most of these happened to be in the target.h file. Some of those are associated with symbols that could be removed at some point ... e.g. NVP_ASSERT/true and its sibling NVP_DEASSERT/false. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 07 Dec, 2009 1 commit
-
-
David Brownell authored
Provide and use debug_reason_name() instead of expecting targets to call Jim_Nvp_value2name_simple(). Less dependency on Jim, and the code becomes more clear too. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 03 Dec, 2009 3 commits
-
-
Zachary T Welch authored
Changes from the flat namespace to heirarchical one. Instead of writing: #include "jtag.h" the following form should be used. #include <jtag/jtag.h> The exception is from .c files in the same directory.
-
Zachary T Welch authored
Changes from the flat namespace to heirarchical one. Instead of writing: #include "time_support.h" the following form should be used. #include <helper/time_support.h> The exception is from .c files in the same directory.
-
Zachary T Welch authored
The command handler registration was put at the top level, rather than as a subcommand. Move it to where it belongs.
-
- 02 Dec, 2009 2 commits
-
-
Zachary T Welch authored
Adds 'target init' command handler, called as part of 'init'.
-
Zachary T Welch authored
Moves body of target initialization loop into a helper function, cleaning up its visual flow in the process.
-
- 01 Dec, 2009 3 commits
-
-
David Brownell authored
Switch "mrc" and "mcr" commands to be toplevel ARM operations, as they should initially have been. Correct the usage message for both commands: it matches ARM documentation (as one wants!) instead of reordering them to match the funky mrc() and mcr() method usage (sigh). For Cortex-A8: restore a line that got accidentally dropped, so the secure monitor mode shadow registers will show again. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
Zachary T Welch authored
Adds 'interp' field to command_context, chasing the few remaining references to the global variable outside of the command module.
-
Zachary T Welch authored
Adds 'interp' to target_event_action structure to avoid using the global variable of the same name.
-
- 28 Nov, 2009 4 commits
-
-
Zachary T Welch authored
Eliminate the monolithic tcl_target_func by registering each of its commands using the new chained command registration mechanism. Also chains the target's commands under the CPU command, though these may not work properly without some further modification.
-
Zachary T Welch authored
The 'target' command group was implemented using its own command dispatching, which can be eliminated by using the new chained command registration mechanism. This patch splits the jim_target() function into individual handlers, which makes them to be visible to the help and usage commands. These one-trick handlers are much easier to understand.
-
David Brownell authored
In target_type.h it's documented that the target must be halted for add_breakpoint() ... and with slight ambiguity, also for its add_watchpoint() sibling. So rather than verifying that constraint in the CPU drivers, do it in the target_add_{break,watch}point() routines. Add minor paranoia on the remove_*point() paths too: save the return value, and print it out in in the LOG_DEBUG message in case it's nonzero. Note that with some current cores, like all ARMv7 ones I've looked at, there's no technical issue preventing watchpoint or breakpoint add/remove operations on active cores. This model seems deeply wired into OpenOCD though. ALSO: the ARM targets were fairly "good" about enforcing that constraint themselves. The MIPS ones were relied on other code to catch such stuff, but it's not clear such code existed ... keep an eye out for new issues on MIPS. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
David Brownell authored
This defines a "reset-assert" event and a supporting utility routine, and documents both how targets should implement it and how config scripts should use it. Core-specific updates are needed to make this work. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 26 Nov, 2009 2 commits
-
-
David Brownell authored
Several of the sites now using target_type_name() really ought to be using an instance-specific name. Create a function called target_name(), accessing the instance's own (command) name. Use it in several places that really should be displaying instance-specific names. Also in several places which were already doing so, but which had no wrapper to call. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
David Brownell authored
There are two names that may matter on a per-target basis. One is a per-instance name (for example, "at91sam7s.cpu"). The other is the name of its type (for example, "arm7tdmi"), which is shared among multiple targets. Currently target_get_name() returns the type name, which is misleading and is rarely appropriate for target diagnostics. Rename that as target_type_name(). Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 25 Nov, 2009 5 commits
-
-
Zachary T Welch authored
Alliteration aside, this should provide the final piece of the puzzle for developers that want to get started writing a new target type. In this way, it also seeks to complement the 'dummy' interface driver and 'faux' NOR flash driver.
-
Zachary T Welch authored
Adding jim_handler field to command_registration allows removing the register_jim helper. All command registrations now go through the register_command{,s}() functions.
-
Zachary T Welch authored
Uses chaining of command_registration structures to eliminate all target_type register_callback routines. Exports the command_handler registration arrays for those target types that are used by others.
-
Zachary T Welch authored
-
Zachary T Welch authored
Replaces direct calls to register_command() with a macro, to allow its parameters to be changed and callers updated in phases.
-
- 22 Nov, 2009 1 commit
-
-
Øyvind Harboe authored
4096 byte buffer allocated dynamically. Better for embedded OS's. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 20 Nov, 2009 1 commit
-
-
David Brownell authored
Create a generic register_cache_invalidate(), and use it to replace three all-but-identical core-specific routines: - armv4_5_invalidate_core_regs() - armv7m_invalidate_core_regs - mips32_invalidate_core_regs() too. Make cache->num_regs be unsigned, avoiding various errors. Net code shrink and simplification. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 18 Nov, 2009 2 commits
-
-
Zachary T Welch authored
Updates all command parsing of "on" and "off" arguments.
-
Zachary T Welch authored
The recent migration broke them, the fixes broken them in a new way, but this should restore them to working order. Eliminates the temporary variable, as the CMD_NAME macro can once again be use in routines that increment CMD_ARGV without nasty side-effects.
-
- 17 Nov, 2009 2 commits
-
-
Zachary T Welch authored
Convert all command handler 'cmd_ctx' parameter usage with CMD_CTX.
-
Zachary T Welch authored
This patch converts all instances of 'args' in COMMAND_HANDLER routines to use CMD_ARGV macro.
-