aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-10-12arm11 burst writes are now only enabled for writes larger than 1 word. ↵Øyvind Harboe
Single word writes are frequently used from reset init scripts to non-memory peripherals.
2009-10-12Xilinx xcr3256.cfg basic config scriptWookey
2009-10-12Retire arm11 no_increment. Intended for future expansion to read/write to ↵Øyvind Harboe
ports. New arm11 commands would have to be added to exploit it.
2009-10-12Propagate wDTR/rDTR failure immediately, otherwise it's followed up by ↵Øyvind Harboe
timeout errors.
2009-10-12Fix warning and improve error message upon burst transfer failureØyvind Harboe
2009-10-12burst writes work fine. clean up junk.Øyvind Harboe
2009-10-12Fix bogus 'transfer errors' with arm11 'memwrite burst enable'. A regression ↵Øyvind Harboe
introduced in b8103660fa36a77158bd77379572c09913d85c00
2009-10-12simplify XScale debug handler installationDavid Brownell
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>
2009-10-12more xscale cleanup (mostly removing JTAG hooks)David Brownell
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>
2009-10-12Merge commit 'origin/master'Øyvind Harboe
2009-10-12If halt times out, stop GDB. Allows e.g. manual reset via monitor commands.Øyvind Harboe
2009-10-12Supply default reset_config statement to make target scripts useful ↵Øyvind Harboe
standalone and provide sensible default
2009-10-11xscale_load_ic cleanupDavid Brownell
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>
2009-10-11xscale.c cleanupDavid Brownell
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>
2009-10-11xscale bugfix to handler loadingDavid Brownell
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>
2009-10-11xscale minor cleanupDavid Brownell
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>
2009-10-10printf format warning fixesDavid Brownell
Observed on a Cygwin build. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-10-10Fix reset delays and tinker with ID'sWookey
2009-10-09tweak new "translating ..." textDavid Brownell
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>
2009-10-09add documentation about reset customizationDavid Brownell
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>
2009-10-09Stop debug session if halt failsØyvind Harboe
2009-10-09ARM11 error checkingØyvind Harboe
2009-10-09Merge commit 'origin/master'Øyvind Harboe
2009-10-09Added tip in documentation on how to translate quirky syntaxØyvind Harboe
2009-10-08make PXA255 targets enumerate sort-of-OKDavid Brownell
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>
2009-10-08add overridable Tcl "init_reset"David Brownell
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>
2009-10-08minor JTAG init messaging tweaksDavid Brownell
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-10-08Function to flash SheevaPlug u-boot sectorsRabeeh Khoury
This function is used by the SheevaPlug installer to flash the erase and re-flash the U-Boot environment in the NAND Flash.
2009-10-08initial builds of OSK5912 boards need srst_pulls_trstDavid Brownell
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>
2009-10-08prevent abort via polling during jtag_resetDavid Brownell
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>
2009-10-08Stop ignoring most scan chain validation errorsDavid Brownell
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>
2009-10-08Merge branch 'master' of ↵David Brownell
ssh://dbrownell@openocd.git.sourceforge.net/gitroot/openocd/openocd
2009-10-08Testing committing changes to .gitignore to ignore more build outputØyvind Harboe
2009-10-08Add .project to .gitignoreØyvind Harboe
2009-10-08Stop GDB when polling fails, srst assert or powerdropout is detectedØyvind Harboe
2009-10-08Update copyright statements. Make it easier to sync with Jim TclØyvind Harboe
2009-10-07make OMAP5912 resets more reliableDavid Brownell
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>
2009-10-07iMX25 target supportJohn Rigby
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-10-07Houston, we have Mirror!David Brownell
2009-10-07Merge branch 'master' of ↵David Brownell
ssh://dbrownell@openocd.git.sourceforge.net/gitroot/openocd/openocd
2009-10-08Change most in-tree references from SVN to GIT.dbrownell
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
2009-10-07Force sane SRST and TRST initializationdbrownell
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
2009-10-07Better fix for TAPs violating the JTAG spec for IR-Capture.dbrownell
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
2009-10-07Remove much #ifdeffery around _DEBUG_JTAG_IO_ usage.dbrownell
Have DEBUG_JTAG_IO() always trigger necessary warnings. git-svn-id: svn://svn.berlios.de/openocd/trunk@2822 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2009-10-07buildfixdbrownell
git-svn-id: svn://svn.berlios.de/openocd/trunk@2821 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2009-10-07Merge branch 'master' of ↵David Brownell
ssh://dbrownell@openocd.git.sourceforge.net/gitroot/openocd/openocd
2009-10-07Remove pointless "target library" chapter.dbrownell
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
2009-10-07Note bug in handling of variables through command line parameters.dbrownell
git-svn-id: svn://svn.berlios.de/openocd/trunk@2819 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2009-10-07Updates for "reset_config":dbrownell
- 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
2009-10-07first stab at imx35 reset init scriptoharboe
git-svn-id: svn://svn.berlios.de/openocd/trunk@2817 b42882b7-edfa-0310-969c-e2dbd0fdcd60