Re: [Openocd-development] [PATCH] add xds100v2 cfg file

2011-01-26 Thread Antonio Borneo
Laurent, could you provide link to such license? I do not have any xds 100, but from a quick check I found it's available from many manufacturers, not only from TI. Also, TI provides info to home-build it, in chapter 5 of http://processors.wiki.ti.com/index.php/Xds100v2 It's surprising that TI le

Re: [Openocd-development] [PATCH] add xds100v2 cfg file

2011-01-26 Thread Laurent Gauch
The xds 100 is protected by a TI license. Integrating xds 110 in other software than TI software kill the license !!! Laurent ___ Openocd-development mailing list Openocd-development@lists.berlios.de https://lists.berlios.de/mailman/listinfo/openocd-d

Re: [Openocd-development] [PATCH 0/6] OMAP4430/Cortex-A9 Support

2011-01-26 Thread Aaron Carroll
On 27 January 2011 16:53, Aaron Carroll wrote: > I think I've got an x-loader fix for this... I'm trying to test it now > with Linux.  Stay tuned. I think we have a winner... try this patch: diff --git a/board/omap4430panda/clock.c b/board/omap4430panda/clock.c index 792e5d6..7f391f0 100644 ---

Re: [Openocd-development] [PATCH 0/6] OMAP4430/Cortex-A9 Support

2011-01-26 Thread Aaron Carroll
Hi Luca, On 26 January 2011 00:13, luca ellero wrote: > With your patch it seems to work. Anyway after issuing "halt" instruction, I > always get the following message: > > target state: halted > target halted in Thumb state due to debug-request, current mode: Supervisor > cpsr: 0x6173 pc: 0x

Re: [Openocd-development] [PATCH] fix segfault from stack corruption in ahbap_debugport_init

2011-01-26 Thread Aaron Carroll
Hi Andreas, This fixed the bug I was having with Cortex-A9 reset also. Thanks! -- Aaron On 26 January 2011 23:02, Spencer Oliver wrote: > On 25/01/2011 02:03, Andreas Fritiofson wrote: >> >> ahbap_debugport_init was queueing reads to a local stack variable but >> didn't execute the que

Re: [Openocd-development] [PATCH] add xds100v2 cfg file

2011-01-26 Thread Peter Stuge
Mathias K. wrote: > From e8fcc18b51408965ceca70a8fd676925ec914aca Mon Sep 17 00:00:00 2001 > From: Mathias K. > Date: Wed, 26 Jan 2011 17:35:56 +0100 > Subject: [PATCH] - add xds100v2 configuaration file > > --- > tcl/interface/xds100v2.cfg |8 > 1 files changed, 8 insertions(+), 0

[Openocd-development] [PATCH] add xds100v2 cfg file

2011-01-26 Thread Mathias K.
Hello, this patch add the missing xds100v2.cfg file. Regards, Mathias >From e8fcc18b51408965ceca70a8fd676925ec914aca Mon Sep 17 00:00:00 2001 From: Mathias K. Date: Wed, 26 Jan 2011 17:35:56 +0100 Subject: [PATCH] - add xds100v2 configuaration file --- tcl/interface/xds100v2.cfg |8

[Openocd-development] [PATCH] fix broken dap component base for tms570 on debug logic

2011-01-26 Thread Mathias K.
Hello, this patch fix the broken dap component base from the debug logic/processor on the tms570 cpu. There are some more components but i dont know if they are all wrong or only this one. I have append the dap info output. There is also a new CoreSight component with id 0x930. This is still

[Openocd-development] sam3s flash programming

2011-01-26 Thread Thomas Schmid
Hey all, Has anyone ever tried to program the flash of an Atmel Sam3s through gdb and openocd? While the gdb 'load' instruction seems to work (i.e., no error) the flash doesn't actually get programmed. After a "soft_reset_halt", the old flash content gets executed. Cheers, - Thomas _

Re: [Openocd-development] Patch for at91sam3s.c

2011-01-26 Thread Spencer Oliver
On 25/01/2011 16:19, Thomas Schmid wrote: Hey all, Found some mistakes in the presentation of the 'at91sam3s info' command. They are all minor. A patch is attached. merged. Many Thanks Spen ___ Openocd-development mailing list Openocd-development@l

Re: [Openocd-development] [PATCH] add basic TI xds100v2 support

2011-01-26 Thread Spencer Oliver
On 25/01/2011 08:24, Mathias K. wrote: Hello, this patch add basic xds100v2 support. The settings are the result of the protocoll reverse engeneering with a simple usb logger. Tested with the TMS570 USB eval kit. merged thanks. Spen ___ Openocd-d

Re: [Openocd-development] [PATCH] fix segfault from stack corruption in ahbap_debugport_init

2011-01-26 Thread Spencer Oliver
On 25/01/2011 02:03, Andreas Fritiofson wrote: ahbap_debugport_init was queueing reads to a local stack variable but didn't execute the queue before returning. Since the result of the reads are not used anyway, it's better to pass NULL as the destination instead of a dummy variable. I changed thi