openocd.git
14 years agoRemoved unused interface_jtag_set_end_state and wrote down some notes on TCP/IP clien...
Øyvind Harboe [Tue, 20 Oct 2009 13:54:53 +0000 (15:54 +0200)]
Removed unused interface_jtag_set_end_state and wrote down some notes on TCP/IP client/server scheme.

14 years agoAdded the faux flash driver and target. Used for testing.
Øyvind Harboe [Tue, 20 Oct 2009 10:22:55 +0000 (12:22 +0200)]
Added the faux flash driver and target. Used for testing.

14 years agoAdded 'unlock' option to flash write_image
Øyvind Harboe [Tue, 20 Oct 2009 10:03:36 +0000 (12:03 +0200)]
Added 'unlock' option to flash write_image

14 years agoMore svn to git version string fixes.
Øyvind Harboe [Tue, 20 Oct 2009 07:46:23 +0000 (09:46 +0200)]
More svn to git version string fixes.

14 years agoSVF: better spec conformance for STATE switch
David Brownell [Tue, 20 Oct 2009 06:33:08 +0000 (23:33 -0700)]
SVF: better spec conformance for STATE switch

Don't add extra TCK in current state; exit from RESET had four extras.
Only IDLE --> IDLE needs such an extra clock.  (At least one TCK must
be issued.)

Allow entry to RESET; SVF allows it, so must we (despite those entries
being commented out of the statemove table).

When entering RESET, always use TLR ... we might end up with extra clocks
in reset that way, which is harmless, but we'll never end up in any other
state than RESET, which is useful paranoia.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agodavinci: add watchdog reset method
David Brownell [Tue, 20 Oct 2009 05:50:51 +0000 (22:50 -0700)]
davinci: add watchdog reset method

Lightly tested on dm365.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agojtag_add_statemove() always uses TLR to get to RESET
David Brownell [Tue, 20 Oct 2009 05:50:51 +0000 (22:50 -0700)]
jtag_add_statemove() always uses TLR to get to RESET

As decided a while back, this isn't a transition we want to chance.
Whenever someone wants to got to RESET, force it.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoSVF/XSVF: comment and whitespace fixes
David Brownell [Tue, 20 Oct 2009 05:50:51 +0000 (22:50 -0700)]
SVF/XSVF: comment and whitespace fixes

SVF: comment the predefined/default paths; make them static const

SVF, XSVF: whitespace fixes, mostly so copyrights display sanely

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoImprove Makefile rules for XScale debug handler; fixes 'make distcheck'.
Zachary T Welch [Tue, 20 Oct 2009 02:59:02 +0000 (19:59 -0700)]
Improve Makefile rules for XScale debug handler; fixes 'make distcheck'.

14 years agoMinGW: always use "-D__USE_MINGW_ANSI_STDIO"
Redirect 'Slash' NIL [Tue, 20 Oct 2009 00:55:40 +0000 (17:55 -0700)]
MinGW: always use "-D__USE_MINGW_ANSI_STDIO"

This is unfortunately needed to make stdio work like OpenOCD expects -- matching
the ANSI-C standard, instead of MS-Windows.

I tested it in both MinGW-W64 on Vista 64 and MinGW-W32 on XP, and I don't
see any adverse effects to enabling it for all MinGW versions.

14 years agoMinGW: use WinSock2
Redirect 'Slash' NIL [Tue, 20 Oct 2009 00:48:19 +0000 (17:48 -0700)]
MinGW: use WinSock2

After reading a bit further, it appears that ws2_32 (Windows Sockets 2)
is included in all versions of Windows and backwards compatible with
wsock32, at least according to

 http://msdn.microsoft.com/en-us/library/ms740673%28VS.85%29.aspx.

Only Win95 seems to require a manual installation; is not a big deal.

So I think we can drop this whole business of detecting 64 bit MinGW and
just use -lws2_32 for all MinGW platforms.

14 years agoDoc: jtag_init must validate scan chain too
David Brownell [Mon, 19 Oct 2009 21:45:43 +0000 (14:45 -0700)]
Doc: jtag_init must validate scan chain too

Same requirement as like init_reset, and for the same reason:
we need to start with a known and working state.

14 years agofix single step of bx instruction going into Thumb mode
Nicolas Pitre [Mon, 19 Oct 2009 19:49:46 +0000 (15:49 -0400)]
fix single step of bx instruction going into Thumb mode

Without this fix, the following code cannot be single stepped:

add ip, pc, #1
bx ip
[thumb code here]

14 years agoIgnore openocd.exe for "git status"
David Brownell [Mon, 19 Oct 2009 16:53:45 +0000 (09:53 -0700)]
Ignore openocd.exe for "git status"

14 years agocorrective fix for MinGW GNU C99 printf compliance
Redirect 'Slash' NIL [Mon, 19 Oct 2009 16:49:34 +0000 (09:49 -0700)]
corrective fix for MinGW GNU C99 printf compliance

Compilation on cygwin, using gcc v3 with option -mno-cygwin,
currently produces a large number of the following warnings:

   warning: `gnu_printf' is an unrecognized format function type

These have been introduced with the recent MinGW GNU C99 printf
compliance patch, as gnu_printf was only introduced with gcc v4.4
and is not recognized with earlier versions.

The attached fix adds gcc version detection to the previous patch
to avoid the problem.

14 years agoSync with official Jim Tcl repository.
oyvind [Mon, 19 Oct 2009 13:16:42 +0000 (15:16 +0200)]
Sync with official Jim Tcl repository.

14 years agoSwitch from svn to git version string handling.
oyvind [Mon, 19 Oct 2009 13:08:52 +0000 (15:08 +0200)]
Switch from svn to git version string handling.

14 years agoSDRAM and clock configuration for the SAM9-L9260 board from Olimex
Dean Glazeski [Sun, 18 Oct 2009 20:26:38 +0000 (22:26 +0200)]
SDRAM and clock configuration for the SAM9-L9260 board from Olimex

14 years agosafer conversion to HANDLER on MinGW-W64
Redirect 'Slash' NIL [Sun, 18 Oct 2009 05:18:38 +0000 (22:18 -0700)]
safer conversion to HANDLER on MinGW-W64

Assign to "intptr_t", which on some versions of MS-Windows
will widen the variable; then cast to HANDLE.

14 years agoIgnore two more generated files
David Brownell [Sun, 18 Oct 2009 00:50:23 +0000 (17:50 -0700)]
Ignore two more generated files

On Windows the name is "bin2char.exe".
All operating systems now have "xscale_handler.h".

14 years agoMore MinGW C99 printf compliance
Redirect 'Slash' NIL [Sun, 18 Oct 2009 00:47:52 +0000 (17:47 -0700)]
More MinGW C99 printf compliance

Passing "--std=gun99" is unfortunately not sufficient to make current
MinGW compilers conform with respect to checking printf format strings.
(The C runtime seems not to have problems.)

Fix by using a "gnu_printf" format specifier not "printf".

14 years agojim-eventloop for MinGW-w64
Redirect \"Slash\" NIL [Sat, 17 Oct 2009 19:15:13 +0000 (12:15 -0700)]
jim-eventloop for MinGW-w64

Use JIM_WIDE_MODIFIER for the sscanf format, and apply it for MINGW32 as
well as other Windows environments.  (Microsoft doesn't conform to the
C99 standard, and uses "%I64d" not "%lld" for "long long".)

NB: __MINGW32__ should work on both w32 and w64,.

14 years agobuild tweak for bin2char
David Brownell [Sat, 17 Oct 2009 19:14:19 +0000 (12:14 -0700)]
build tweak for bin2char

Work better when building outside the source tree.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoxscale: better fix for debug_handler.bin
David Brownell [Fri, 16 Oct 2009 20:52:40 +0000 (13:52 -0700)]
xscale: better fix for debug_handler.bin

Generate a C struct with the data, and use that, instead of an
assembly language file.  The assembly language causes issues on
Darwin and MS-Windows, which don't necessarily use GNU AS; or
if they do, don't necessarily use its ELF syntax.

It's also better in two other ways:  fewer global symbols; and
the init-time size check gets optimized away at compile time.
(Unless it fails, in which case bigger chunks of the file vanish.)

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoanother portability update
David Brownell [Thu, 15 Oct 2009 03:24:31 +0000 (20:24 -0700)]
another portability update

Just use "%p" instead of consing up some integral type for pointer printf.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoportability updates
David Brownell [Thu, 15 Oct 2009 03:04:33 +0000 (20:04 -0700)]
portability updates

Based on some patches from <redirect.slash.nil@gmail.com>
for preliminary Win64 compilation.  More such updates are
needed, but they need work.  Compile tested on 64 and 32 bit
Linuxes, and Cygwin.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agodoc updates to match "help" better
David Brownell [Wed, 14 Oct 2009 22:18:00 +0000 (15:18 -0700)]
doc updates to match "help" better

This makes the documentation a closer match to "help" output:

 - "pathmove" somehow was not documented in the User's Guide

 - "jtag_nsrst_assert_width" and "jtag_ntrst_assert_width"
   are new; both needed descriptions.

 - Removed two undocumented and fairly useless script mechanisms:
    * production/production_info/production_test ... using it,
      requires replacing everything; so having it adds no value.
    * cpu ... way out of date; hopeless to keep that current

Note that anyone using that "production" stuff already defines
their own procedures, and can keep using them with no change.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoFw: [PATCH] OpenRD board configuration
Wookey [Wed, 14 Oct 2009 13:27:41 +0000 (14:27 +0100)]
Fw: [PATCH] OpenRD board configuration

Ofrwarded from Ron, who's not subscribed.

----- Forwarded message from Ron <ron@debian.org> -----

From: Ron <ron@debian.org>
Date: Wed, 14 Oct 2009 04:50:17 +1030
To: wookey@debian.org
Subject: [PATCH] OpenRD board configuration
X-Spam-Status: No, score=-3.6 required=4.5 tests=BAYES_00,RCVD_IN_DNSWL_LOW
autolearn=ham version=3.2.5

This piggybacks on the 'sheevaplug' layout which uses the same Kirkwood SoC.

Signed-off-by: Ron Lee <ron@debian.org>
14 years agoS29WS-N CFI query fix is to try 0x555 if 0x55 fails.
Øyvind Harboe [Wed, 14 Oct 2009 10:01:52 +0000 (12:01 +0200)]
S29WS-N CFI query fix is to try 0x555 if 0x55 fails.

14 years agoWork in progress on arm11 reset. Assert srst.
Øyvind Harboe [Wed, 14 Oct 2009 09:14:04 +0000 (11:14 +0200)]
Work in progress on arm11 reset. Assert srst.

14 years agoiMX target config script's ported from Freescale BSP.
Øyvind Harboe [Wed, 14 Oct 2009 08:34:41 +0000 (10:34 +0200)]
iMX target config script's ported from Freescale BSP.

14 years agoFix problems building xscale_debug.S
David Brownell [Wed, 14 Oct 2009 07:32:42 +0000 (09:32 +0200)]
Fix problems building xscale_debug.S

14 years agoomap2420.cfg updates
David Brownell [Wed, 14 Oct 2009 09:00:34 +0000 (02:00 -0700)]
omap2420.cfg updates

Remove ircapture/mask attributes.  Add "srst_nogate".

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agofix detection of PLD instructions
Lennert Buytenhek [Tue, 13 Oct 2009 20:48:18 +0000 (22:48 +0200)]
fix detection of PLD instructions

Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agofix pass_condition() LE condition code check
Lennert Buytenhek [Tue, 13 Oct 2009 18:27:03 +0000 (20:27 +0200)]
fix pass_condition() LE condition code check

The LE check is obviously buggy (as easily triggered during some
testing), but I didn't audit the rest of the cases.

Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agocosmetic cleanup in TMS tables
David Brownell [Tue, 13 Oct 2009 17:55:24 +0000 (10:55 -0700)]
cosmetic cleanup in TMS tables

Cleanup comments and layout/whitespace in the TMS tables.
Table contents stayed the same (ignoring whitespace).

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoCleanup: nuke trailling whitespaces
Yauheni Kaliuta [Tue, 13 Oct 2009 17:00:46 +0000 (20:00 +0300)]
Cleanup: nuke trailling whitespaces

Signed-off-by: Yauheni Kaliuta <y.kaliuta@gmail.com>
14 years agoDo not replace virt2phys with the default one if it was assigned
Yauheni Kaliuta [Sun, 11 Oct 2009 15:27:27 +0000 (18:27 +0300)]
Do not replace virt2phys with the default one if it was assigned

Signed-off-by: Yauheni Kaliuta <y.kaliuta@gmail.com>
14 years agoRetired gdb_attach. gdb-detach event covers this functionality.
Øyvind Harboe [Tue, 13 Oct 2009 11:44:15 +0000 (13:44 +0200)]
Retired gdb_attach. gdb-detach event covers this functionality.

14 years agoMissing type for eCos.
Øyvind Harboe [Tue, 13 Oct 2009 11:13:29 +0000 (13:13 +0200)]
Missing type for eCos.

14 years agoFix warning.
Øyvind Harboe [Tue, 13 Oct 2009 10:22:23 +0000 (12:22 +0200)]
Fix warning.

14 years agoDelete commented out code. Add a bit of error checking.
Øyvind Harboe [Tue, 13 Oct 2009 10:06:55 +0000 (12:06 +0200)]
Delete commented out code. Add a bit of error checking.

14 years agoarm11 seems to gate JTAG when srst is asserted
Øyvind Harboe [Tue, 13 Oct 2009 10:02:09 +0000 (12:02 +0200)]
arm11 seems to gate JTAG when srst is asserted

14 years agoPropagate error from assert, deassert and halt on tcl target object.
Øyvind Harboe [Tue, 13 Oct 2009 09:29:05 +0000 (11:29 +0200)]
Propagate error from assert, deassert and halt on tcl target object.

14 years agoxscale: stackframe corruption bugfix
David Brownell [Tue, 13 Oct 2009 08:21:24 +0000 (01:21 -0700)]
xscale: stackframe corruption bugfix

Resolve a "FIX" comment; yes that was superfluous given that the
JTAG core does that check by default.  It was also buggy since it
wrote to a stack frame that went away before the write happened!!

Other fixes:  remove pointless malloc(); zero-init scan_field_t
values wherever they appear; whitespace scrub; spelling fix.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoMore error propagation fixes.
Øyvind Harboe [Mon, 12 Oct 2009 13:25:00 +0000 (15:25 +0200)]
More error propagation fixes.

14 years agoarm11 burst writes are now only enabled for writes larger than 1 word. Single word...
Øyvind Harboe [Mon, 12 Oct 2009 13:13:44 +0000 (15:13 +0200)]
arm11 burst writes are now only enabled for writes larger than 1 word. Single word writes are frequently used from reset init scripts to non-memory peripherals.

14 years agoXilinx xcr3256.cfg basic config script
Wookey [Mon, 12 Oct 2009 13:12:35 +0000 (15:12 +0200)]
Xilinx xcr3256.cfg basic config script

14 years agoRetire arm11 no_increment. Intended for future expansion to read/write to ports....
Øyvind Harboe [Mon, 12 Oct 2009 12:21:38 +0000 (14:21 +0200)]
Retire arm11 no_increment. Intended for future expansion to read/write to ports. New arm11 commands would have to be added to exploit it.

14 years agoPropagate wDTR/rDTR failure immediately, otherwise it's followed up by timeout errors.
Øyvind Harboe [Mon, 12 Oct 2009 12:10:49 +0000 (14:10 +0200)]
Propagate wDTR/rDTR failure immediately, otherwise it's followed up by timeout errors.

14 years agoFix warning and improve error message upon burst transfer failure
Øyvind Harboe [Mon, 12 Oct 2009 12:09:10 +0000 (14:09 +0200)]
Fix warning and improve error message upon burst transfer failure

14 years agoburst writes work fine. clean up junk.
Øyvind Harboe [Mon, 12 Oct 2009 12:08:29 +0000 (14:08 +0200)]
burst writes work fine. clean up junk.

14 years agoFix bogus 'transfer errors' with arm11 'memwrite burst enable'. A regression introduc...
Øyvind Harboe [Mon, 12 Oct 2009 09:57:59 +0000 (11:57 +0200)]
Fix bogus 'transfer errors' with arm11 'memwrite burst enable'. A regression introduced in b8103660fa36a77158bd77379572c09913d85c00

14 years agosimplify XScale debug handler installation
David Brownell [Mon, 12 Oct 2009 09:39:18 +0000 (02:39 -0700)]
simplify XScale debug handler installation

Load the XScale debug handler from the read-only data section
instead of from a separate file that can get lost or garbaged.
This eliminates installation and versioning issues, and also
speeds up reset handling a bit.

Plus some minor bits of cleanup related to loading that handler:
comments about just what this handler does, and check fault codes
while writing it into the mini-icache.

The only behavioral changes should be cleaner failure modes after
errors during handler loading, and being a bit faster.

NOTE:  presumes GNU assembly syntax, with ".incbin"; and ELF,
because of the syntax of the ".size" directive.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agomore xscale cleanup (mostly removing JTAG hooks)
David Brownell [Mon, 12 Oct 2009 09:39:01 +0000 (02:39 -0700)]
more xscale cleanup (mostly removing JTAG hooks)

Streamline/shrink some needless JTAG stuff:

 - Use #defines for the JTAG instructions; they can't ever change
 - Remove an unused (!) shadow of tap->ir_length
 - Stop using a copy of target->tap
 - Don't bother saving the variant after sanity checking ir_length

Also, make target_create() work as on other targets:  build the
register cache later, making init_target() no longer be a NOP.
Handle malloc failure; remove a comment that was obsoleted by the
not-so-new target syntax.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoMerge commit 'origin/master'
Øyvind Harboe [Mon, 12 Oct 2009 07:28:56 +0000 (09:28 +0200)]
Merge commit 'origin/master'

14 years agoIf halt times out, stop GDB. Allows e.g. manual reset via monitor commands.
Øyvind Harboe [Mon, 12 Oct 2009 07:27:27 +0000 (09:27 +0200)]
If halt times out, stop GDB. Allows e.g. manual reset via monitor commands.

14 years agoSupply default reset_config statement to make target scripts useful standalone and...
Øyvind Harboe [Mon, 12 Oct 2009 07:25:08 +0000 (09:25 +0200)]
Supply default reset_config statement to make target scripts useful standalone and provide sensible default

14 years agoxscale_load_ic cleanup
David Brownell [Sun, 11 Oct 2009 17:35:52 +0000 (10:35 -0700)]
xscale_load_ic cleanup

Remove unused and deprecated (in the arch spec) mode for loading
code into the *main* icache (vs the "mini" icache).  Disable some
extremely noisy (and rarely useful) low-level debug messages

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoxscale.c cleanup
David Brownell [Sun, 11 Oct 2009 17:35:28 +0000 (10:35 -0700)]
xscale.c cleanup

Declare almost everything as static.
Move stuff to remove most forward references.
Remove most forward declarations.
Warn if the unimplemented register functions get called.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoxscale bugfix to handler loading
David Brownell [Sun, 11 Oct 2009 17:06:08 +0000 (10:06 -0700)]
xscale bugfix to handler loading

Just fill out the rest of the cache line with NOPs; don't change
the record of how much data we consumed.  Otherwise the count of
how much data is left can roll over from positive to negative
("VERY positive") and skip the loop termination of zero.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoxscale minor cleanup
David Brownell [Sun, 11 Oct 2009 09:52:00 +0000 (02:52 -0700)]
xscale minor cleanup

Add a header comment referencing useful XScale specs.
Make most data static, and the tables readonly.
Scrub extra blank lines.
Return fault codes from one routine.
Remove a needless NOP methood.

(BUGFIX) When we update R0, mark R0 as dirty/valid ... not R15/PC!

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoprintf format warning fixes
David Brownell [Sat, 10 Oct 2009 18:32:39 +0000 (11:32 -0700)]
printf format warning fixes

Observed on a Cygwin build.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoFix reset delays and tinker with ID's
Wookey [Sat, 10 Oct 2009 07:08:06 +0000 (09:08 +0200)]
Fix reset delays and tinker with ID's

14 years agotweak new "translating ..." text
David Brownell [Fri, 9 Oct 2009 22:51:16 +0000 (15:51 -0700)]
tweak new "translating ..." text

Fix formatting and layout bugs in the new "translating configuration
files" bit.  Make it a section within the chapter about config files.
Add a crossreference.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoadd documentation about reset customization
David Brownell [Fri, 9 Oct 2009 19:52:42 +0000 (12:52 -0700)]
add documentation about reset customization

We added two overridable procedures; document them, and the
two jtag arp_* operations they necessarily expose.

Update the comment about the jtag_init_reset() routine; it's
been obsolete for as long as it's had SRST support.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoStop debug session if halt fails
Øyvind Harboe [Fri, 9 Oct 2009 08:31:40 +0000 (10:31 +0200)]
Stop debug session if halt fails

14 years agoARM11 error checking
Øyvind Harboe [Fri, 9 Oct 2009 08:00:05 +0000 (10:00 +0200)]
ARM11 error checking

14 years agoMerge commit 'origin/master'
Øyvind Harboe [Fri, 9 Oct 2009 07:14:27 +0000 (09:14 +0200)]
Merge commit 'origin/master'

14 years agoAdded tip in documentation on how to translate quirky syntax
Øyvind Harboe [Fri, 9 Oct 2009 07:03:53 +0000 (09:03 +0200)]
Added tip in documentation on how to translate quirky syntax

14 years agomake PXA255 targets enumerate sort-of-OK
David Brownell [Fri, 9 Oct 2009 06:51:50 +0000 (23:51 -0700)]
make PXA255 targets enumerate sort-of-OK

Startup now mostly works, except that the initial target state
is "unknown" ... previously, it refused to even start.

Getting that far required fixing the ircapture value (which
can never have been correct!) and the default JTAG clock rate,
then providing custom reset script.

The "reset" command is still iffy.  DCSR updates, and loading
the debug handler, report numerous DR/IR capture failures.
But once that's done, "poll" reports that the CPU is halted
(which it shouldn't be, this was "reset run"!), due to the
rather curious reason "target-not-halted".

Summary:  you still can't debug these parts, but it's closer.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoadd overridable Tcl "init_reset"
David Brownell [Fri, 9 Oct 2009 06:51:50 +0000 (23:51 -0700)]
add overridable Tcl "init_reset"

This abstracts the "jtag arp_init-reset" call into a method
called from OpenOCD startup and reset processing.

Platforms which have different requirements for how such hard
resets must be performed can now override "init_reset" instead
of needing to rebuild custom hacked versions of the server.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agominor JTAG init messaging tweaks
David Brownell [Fri, 9 Oct 2009 06:51:50 +0000 (23:51 -0700)]
minor JTAG init messaging tweaks

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoFunction to flash SheevaPlug u-boot sectors
Rabeeh Khoury [Fri, 9 Oct 2009 00:10:52 +0000 (17:10 -0700)]
Function to flash SheevaPlug u-boot sectors

This function is used by the SheevaPlug installer to flash the
erase and re-flash the U-Boot environment in the NAND Flash.

14 years agoinitial builds of OSK5912 boards need srst_pulls_trst
David Brownell [Thu, 8 Oct 2009 20:15:18 +0000 (13:15 -0700)]
initial builds of OSK5912 boards need srst_pulls_trst

This is clearly noted in the hardware spec (section 5.2.3); it
works around a chip erratum:  "If the MPU_RESET signal is used,
it may cause the EMIFS bus to lock."

I seem to have a board with such an initial build.  The chip
is labeled XOMAP.  Presumably, parts without that "X" prefix
(eXperimental) resolve this.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoprevent abort via polling during jtag_reset
David Brownell [Thu, 8 Oct 2009 18:14:00 +0000 (11:14 -0700)]
prevent abort via polling during jtag_reset

Observed:

  openocd: core.c:318: jtag_checks: Assertion `jtag_trst == 0' failed.

The issue was that nothing disabled background polling during calls
from the TCL shell to "jtag_reset 1 1".  Fix by moving the existing
poll-disable mechanism to the JTAG layer where it belongs, and then
augmenting it to always pay attention to TRST and SRST.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoStop ignoring most scan chain validation errors
David Brownell [Thu, 8 Oct 2009 16:16:01 +0000 (09:16 -0700)]
Stop ignoring most scan chain validation errors

Among other things this causes startup errors to kick in the
fallback "reset harder" logic during server startup.  Comments
are also updated a bit, explaining what the various error paths
signify (in at least my observation).

There's one class of validation error that we can still plausibly
ignore:  when wrong IDCODE values are observed.

This change seems to have helped make an OMAP5912 behave much
more reliably.  There's still some post-reset flakiness, but
it's unrelated to scan verification.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoMerge branch 'master' of ssh://dbrownell@openocd.git.sourceforge.net/gitroot/openocd...
David Brownell [Thu, 8 Oct 2009 14:32:47 +0000 (07:32 -0700)]
Merge branch 'master' of ssh://dbrownell@openocd.git.sourceforge.net/gitroot/openocd/openocd

14 years agoTesting committing changes to .gitignore to ignore more build output
Øyvind Harboe [Thu, 8 Oct 2009 13:43:51 +0000 (15:43 +0200)]
Testing committing changes to .gitignore to ignore more build output

14 years agoAdd .project to .gitignore
Øyvind Harboe [Thu, 8 Oct 2009 13:27:09 +0000 (15:27 +0200)]
Add .project to .gitignore

14 years agoStop GDB when polling fails, srst assert or powerdropout is detected
Øyvind Harboe [Thu, 8 Oct 2009 12:53:25 +0000 (14:53 +0200)]
Stop GDB when polling fails, srst assert or powerdropout is detected

14 years agoUpdate copyright statements. Make it easier to sync with Jim Tcl
Øyvind Harboe [Thu, 8 Oct 2009 11:56:57 +0000 (13:56 +0200)]
Update copyright statements. Make it easier to sync with Jim Tcl

14 years agomake OMAP5912 resets more reliable
David Brownell [Thu, 8 Oct 2009 06:29:18 +0000 (23:29 -0700)]
make OMAP5912 resets more reliable

Without some extra delay after releasing SRST, we seemed to
be trying to talk to the TAP before it was ready to respond.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoiMX25 target support
John Rigby [Thu, 8 Oct 2009 04:19:32 +0000 (22:19 -0600)]
iMX25 target support

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14 years agoHouston, we have Mirror!
David Brownell [Thu, 8 Oct 2009 02:11:37 +0000 (19:11 -0700)]
Houston, we have Mirror!

14 years agoMerge branch 'master' of ssh://dbrownell@openocd.git.sourceforge.net/gitroot/openocd...
David Brownell [Thu, 8 Oct 2009 00:14:58 +0000 (17:14 -0700)]
Merge branch 'master' of ssh://dbrownell@openocd.git.sourceforge.net/gitroot/openocd/openocd

14 years agoChange most in-tree references from SVN to GIT.
dbrownell [Thu, 8 Oct 2009 00:13:50 +0000 (00:13 +0000)]
Change most in-tree references from SVN to GIT.
Also, talk about "mainline" not "trunk".

The release.txt and release.sh files need more updates.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2825 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agoForce sane SRST and TRST initialization
dbrownell [Wed, 7 Oct 2009 19:02:21 +0000 (19:02 +0000)]
Force sane SRST and TRST initialization

At least some FT2232 based adapters don't necessarily come up
in the expected state, with SRST and TRST disabled.  Since
other adapters could suffer the same problem, let's avoid
needing to patch every driver and just force *all* adapters
to initialize those values properly at server startup.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2824 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agoBetter fix for TAPs violating the JTAG spec for IR-Capture.
dbrownell [Wed, 7 Oct 2009 18:51:11 +0000 (18:51 +0000)]
Better fix for TAPs violating the JTAG spec for IR-Capture.

Instead of just assuming all IDCODE-deprived TAPs violate the
JTAG spec (they don't!), just require TAPs with such problems
to be declared with proper ircapture/irmask values.  Example,
with mask and value of zero.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2823 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agoRemove much #ifdeffery around _DEBUG_JTAG_IO_ usage.
dbrownell [Wed, 7 Oct 2009 17:30:51 +0000 (17:30 +0000)]
Remove much #ifdeffery around _DEBUG_JTAG_IO_ usage.
Have DEBUG_JTAG_IO() always trigger necessary warnings.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2822 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agobuildfix
dbrownell [Wed, 7 Oct 2009 16:28:44 +0000 (16:28 +0000)]
buildfix

git-svn-id: svn://svn.berlios.de/openocd/trunk@2821 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agoMerge branch 'master' of ssh://dbrownell@openocd.git.sourceforge.net/gitroot/openocd...
David Brownell [Wed, 7 Oct 2009 16:16:39 +0000 (09:16 -0700)]
Merge branch 'master' of ssh://dbrownell@openocd.git.sourceforge.net/gitroot/openocd/openocd

14 years agoRemove pointless "target library" chapter.
dbrownell [Wed, 7 Oct 2009 16:15:21 +0000 (16:15 +0000)]
Remove pointless "target library" chapter.

It had a very little bit of content; move that to the more extensive
chapter on config file guidelines, and give more current "ls" output
to show the available library code.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2820 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agoNote bug in handling of variables through command line parameters.
dbrownell [Wed, 7 Oct 2009 15:56:11 +0000 (15:56 +0000)]
Note bug in handling of variables through command line parameters.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2819 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agoUpdates for "reset_config":
dbrownell [Wed, 7 Oct 2009 15:31:33 +0000 (15:31 +0000)]
Updates for "reset_config":

 - revert to previous default: don't talk JTAG during SRST
 - add "srst_nogates" flag, the converse of "srst_gates_jtag"
 - with no args, display the current configuration

And update the User's Guide text with bullet lists to be a bit more clear.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2818 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agofirst stab at imx35 reset init script
oharboe [Wed, 7 Oct 2009 12:21:58 +0000 (12:21 +0000)]
first stab at imx35 reset init script

git-svn-id: svn://svn.berlios.de/openocd/trunk@2817 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agoremove recrusive reset invocation from reset init callback
oharboe [Wed, 7 Oct 2009 12:20:06 +0000 (12:20 +0000)]
remove recrusive reset invocation from reset init callback

git-svn-id: svn://svn.berlios.de/openocd/trunk@2816 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agoadd timeouts and fix syntax error handling of mrc/mcr commands.
oharboe [Wed, 7 Oct 2009 12:19:17 +0000 (12:19 +0000)]
add timeouts and fix syntax error handling of mrc/mcr commands.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2815 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agoadd timeouts and fix syntax error handling of mrc/mcr commands.
oharboe [Wed, 7 Oct 2009 12:05:37 +0000 (12:05 +0000)]
add timeouts and fix syntax error handling of mrc/mcr commands.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2814 b42882b7-edfa-0310-969c-e2dbd0fdcd60

14 years agoincrease pause before reboot so web interface remains responsive when issuing a reboo...
oharboe [Wed, 7 Oct 2009 11:03:56 +0000 (11:03 +0000)]
increase pause before reboot so web interface remains responsive when issuing a reboot of zy1000

git-svn-id: svn://svn.berlios.de/openocd/trunk@2813 b42882b7-edfa-0310-969c-e2dbd0fdcd60

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)