Re: [Openocd-development] [Patch] Fix overrun problems on Cortex targets.

2009-06-02 Thread Gene Smith
Magnus Lundin wrote: > Seems like a editor screwup with Norweian letters. > > I remove that part and repost > It just rejected the copyright hunk and the rest of the file seemed to patch OK. Thanks for the good work! ___ Openocd-development mailing

Re: [Openocd-development] [Patch] Fix overrun problems on Cortex targets.

2009-06-02 Thread Gene Smith
Magnus Lundin wrote: > Here is a patch that helps against the well known OVERRUN errors for > Cortex-M3 ( the problem is even worse for Cortex-A8 ) > > Basically the patch adds a fixed number ( default 8 ) of extra tck > clocks before every DR scan that accesses the target memory bus through

Re: [Openocd-development] [Patch] Fix overrun problems on Cortex targets.

2009-06-02 Thread Spencer Oliver
> >> Contents: > >> + change signature for adi_jtag_dp_scan and > adi_jtag_dp_scan_u32 to > >> + use > >> swjdp_common_t *swjdp instead of arm_jtag_t *jtag_info > >> + change SWJDP_IR/DR_APACC to DAP_IR/DR_APACC to conform > with ARM_ADI docs. > >> + add swjdp->memaccess_tck field and code for

Re: [Openocd-development] [Patch] Fix overrun problems on Cortex targets.

2009-06-02 Thread Magnus Lundin
Gene Smith wrote: Magnus Lundin wrote: Here is a patch that helps against the well known OVERRUN errors for Cortex-M3 ( the problem is even worse for Cortex-A8 ) Basically the patch adds a fixed number ( default 8 ) of extra tck clocks before every DR scan that accesses the target memory

Re: [Openocd-development] [Patch] Fix overrun problems on Cortex targets.

2009-06-02 Thread Gene Smith
Magnus Lundin wrote: > Here is a patch that helps against the well known OVERRUN errors for > Cortex-M3 ( the problem is even worse for Cortex-A8 ) > > Basically the patch adds a fixed number ( default 8 ) of extra tck > clocks before every DR scan that accesses the target memory bus through

[Openocd-development] [Patch] Fix overrun problems on Cortex targets.

2009-06-02 Thread Magnus Lundin
Yeah ... things happen, but lets try again :) Index: src/target/arm_adi_v5.c === --- src/target/arm_adi_v5.c (revision 1977) +++ src/target/arm_adi_v5.c (working copy) @@ -59,43 +59,39 @@ *

Re: [Openocd-development] [Patch] Fix overrun problems on Cortex targets.

2009-06-02 Thread Gene Smith
Sounds good but don't see a file :) Magnus Lundin wrote: > Here is a patch ___ Openocd-development mailing list Openocd-development@lists.berlios.de https://lists.berlios.de/mailman/listinfo/openocd-development

[Openocd-development] [Patch] Fix overrun problems on Cortex targets.

2009-06-02 Thread Magnus Lundin
Here is a patch that helps against the well known OVERRUN errors for Cortex-M3 ( the problem is even worse for Cortex-A8 ) Basically the patch adds a fixed number ( default 8 ) of extra tck clocks before every DR scan that accesses the target memory bus through the DAP_MEMAP. This makes it po