Re: [Openocd-development] [PATCH] lpc21xx: common target script

2011-01-04 Thread Øyvind Harboe
Going This is the first step of the simplification of the LPC scripts, eventually we may actually manage one central place for all LPC code and then tiny leaf scripts for specific parts and PCBs... -- Øyvind Harboe Can Zylin Consulting help on your project? US toll free 1-866-980-3434 /

[Openocd-development] [PATCH 1/2] target: change working area free data type

2011-01-04 Thread Spencer Oliver
From: Spencer Oliver ntfr...@users.sourceforge.net We only use the struct working_area member 'free' as a true/false type so might as well use a bool data type. Signed-off-by: Spencer Oliver ntfr...@users.sourceforge.net --- src/target/target.c |4 ++-- src/target/target.h |2 +- 2

[Openocd-development] [PATCH]add mips fastdata loader working area

2011-01-04 Thread Spencer Oliver
[PATCH 1/2] target: change working area free data type [PATCH 2/2] mips32: add fastdata loader working area ___ Openocd-development mailing list Openocd-development@lists.berlios.de https://lists.berlios.de/mailman/listinfo/openocd-development

[Openocd-development] [PATCH 2/2] mips32: add fastdata loader working area

2011-01-04 Thread Spencer Oliver
From: Spencer Oliver ntfr...@users.sourceforge.net Add a working area that is preserved between calls to mips_m4k_bulk_write_memory - this gives us a speed increase of approx 3kb/sec during flash writes to the pic32mx. This area is released during a resume/reset. Signed-off-by: Spencer Oliver

Re: [Openocd-development] [PATCH 3/3] stm32: add stm32 xl family flash support

2011-01-04 Thread Spencer Oliver
On 03/01/2011 16:06, Tobias Ringström wrote: On 12/23/2010 10:09 AM, Spencer Oliver wrote: I am going to have a change around for the stm32 flash as i am also working on a flash driver for the stm32lx and stm32f2x. An eval board with an stm32f207 just landed on my desk, and I was not aware

Re: [Openocd-development] [PATCH 2/2] mips32: add fastdata loader working area

2011-01-04 Thread Øyvind Harboe
Nit: add propagation of error for mips32_pracc_write_mem32() or a comment why the error shouldn't be propagated. -- Øyvind Harboe Can Zylin Consulting help on your project? US toll free 1-866-980-3434 / International +47 51 87 40 27 http://www.zylin.com/zy1000.html ARM7 ARM9 ARM11 XScale

Re: [Openocd-development] [PATCH 2/2] mips32: add fastdata loader working area

2011-01-04 Thread Spencer Oliver
On 04/01/2011 13:33, Øyvind Harboe wrote: Nit: add propagation of error for mips32_pracc_write_mem32() or a comment why the error shouldn't be propagated. The error side of the mips code does need a big cleanup - mips32_pracc_write_mem32 always returns ERROR_OK. Cheers Spen