aboutsummaryrefslogtreecommitdiff
path: root/NEWS
AgeCommit message (Collapse)AuthorFilesLines
2009-12-18NOR FLASH: only erase/unlock whole sectorsDavid Brownell1-0/+2
Much to my surprise, I observed a "flash erase_address ..." command erasing data which I said should not be erased. The issue turns out to be generic NOR flash code which was silently, and rather dangerously, morphing partial-sector references into unrequested whole-sector ones. This patch removes that low-level morphing. If desired, it can and should be done in higher level code. (We might need to fix some stuff in the GDB server code.) Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-12-04ARM11: basic watchpoint supportDavid Brownell1-0/+2
Use the DPM watchpoint support; remove old incomplete stubs. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-12-03basic ARM semihosting supportNicolas Pitre1-0/+1
Semihosting enables code running on an ARM target to use the I/O facilities on the host computer. The target application must be linked against a library that forwards operation requests by using the SVC instruction that is trapped at the Supervisor Call vector by the debugger. The "hosted" library version provided with CodeSourcery's Sourcery G++ Lite for ARM EABI is one example. This is currently available for ARM9 processors, but any ARM variant should be able to support this with little additional work. Tested using binaries compiled with Sourcery G++ Lite 2009q1-161 and ARM RVCT 3.0. [dbrownell@users.sourceforge.net: doc tweaks, NEWS] Signed-off-by: Nicolas Pitre <nico@marvell.com> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-12-01Tcl and doc: update to match new 'arm mcr ...' etcDavid Brownell1-0/+2
Make them match the C code. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-27NEWS: mention new reset-assert eventDavid Brownell1-0/+3
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-25NEWS updatesDavid Brownell1-0/+10
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-25update NEWS with recent developmentsZachary T Welch1-0/+17
Mention changes to flash bank command syntax, 'nand verify' command, command error handling and reporting, and help/usage command upgrades.
2009-11-24support for scripts in $HOME/.openocdAndreas Fritiofson1-0/+1
Add $HOME/.openocd as the first default script search directory, allowing the user to override the standard scripts. Update the user guide with information on where OpenOCD expects to find configuration files and scripts. Also fixed some minor formatting issues. Add entry to NEWS as well. Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
2009-11-16ARM: "armv4_5" command prefix becomes "arm"David Brownell1-0/+2
Rename the "armv4_5" command prefix to straight "arm" so it makes more sense for newer cores. Add a simple compatibility script. Make sure all the commands give the same "not an ARM" diagnostic message (and fail properly) when called against non-ARM targets. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-15ARM11: use now-generic memory utilsDavid Brownell1-0/+8
Now the ARM11 cores can use the renamed arm_checksum_memory() and arm_blank_check_memory() routines ... do so. Sanity checked with "flash erase_check" of both NOR banks on an OMAP2420 ... the algorithm code dumped four lines of of "poll" status after each of almost 520 blocks (yes, *very* annoying) but gave plausible results after producing that spam. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-04JTAG: support KT-LINK adapterKrzysztof Kajstura1-0/+2
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-04Version 0.4.0-devDavid Brownell1-63/+4
Add "-dev" tag. Update minor version number. Archive old NEWS file, start a new one.
2009-11-04NEWS: mention switch to git!David Brownell1-0/+1
2009-11-04NEWS refs repository history, not ChangeLogDavid Brownell1-2/+5
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-10-30NEWS: more infoDavid Brownell1-4/+24
There were a few more changes worth mentioning, including support for more JTAG adapters, boundary scan improvements, another NAND driver, and the Win64 stuff. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-10-25ARM: rename "arm9tdmi vector_catch" to "arm9 ..."David Brownell1-0/+2
And update doc accordingly. That EmbeddedICE register was introduced for ARM9TDMI and then carried forward into most new chips that use EmbeddedICE.
2009-10-08make PXA255 targets enumerate sort-of-OKDavid Brownell1-0/+1
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 Brownell1-0/+1
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-05Update the NEWS file to cover more of the user-visible changes.dbrownell1-2/+18
git-svn-id: svn://svn.berlios.de/openocd/trunk@2798 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2009-08-27arm11 hardware step using simulation + breakpoint. Use "hardware_step ↵oharboe1-1/+2
enable" command to revert to hardware stepping. Ideally we could retire the "hardware_step enable" command once we no longer believe it to be necessary. git-svn-id: svn://svn.berlios.de/openocd/trunk@2643 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2009-08-26Michael Schwingen <rincewind@discworld.dascon.de> news about xscaleoharboe1-0/+1
git-svn-id: svn://svn.berlios.de/openocd/trunk@2627 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2009-08-25David Brownell <david-b@pacbell.net> Various updates to 0.3.0 NEWSoharboe1-4/+21
git-svn-id: svn://svn.berlios.de/openocd/trunk@2625 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2009-07-14Archive released NEWS file: NEWS -> NEWS-0.2.0zwelch1-67/+6
Create new NEWS file from release script template. git-svn-id: svn://svn.berlios.de/openocd/trunk@2522 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2009-07-06Add NEWS file for the 0.2.0 release.zwelch1-1/+80
git-svn-id: svn://svn.berlios.de/openocd/trunk@2474 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2008-09-22- fix typo'sntfreak1-1/+1
git-svn-id: svn://svn.berlios.de/openocd/trunk@991 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2008-09-21Removed some obsolete stuff + Pushing things in the direction of openocd.texioharboe1-5/+1
git-svn-id: svn://svn.berlios.de/openocd/trunk@990 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2008-02-28- added svn propsntfreak1-5/+5
- fixed mixed line endings on flash.c, log.c, gdb_server.c git-svn-id: svn://svn.berlios.de/openocd/trunk@371 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2008-01-21[MERGE] Merged all remaining changes between trunk and xscale big-endian branch.bodylove1-0/+5
They are now in sync. xscale-be branch is now closed. git-svn-id: svn://svn.berlios.de/openocd/trunk@271 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2006-06-02- prepare OpenOCD for branching, created ./trunk/drath1-0/+0
git-svn-id: svn://svn.berlios.de/openocd/trunk@64 b42882b7-edfa-0310-969c-e2dbd0fdcd60