Re: [Openocd-development] Integrating a JTAG interface adapter

2011-03-07 Thread Andrew Leech
On Tue, Mar 8, 2011 at 12:54 AM, Jean-Claude Repetto wrote: > Hello, > I am currently designing a custom development board for a system based on an > EFM32 ARM-Cortex M3 device. > I would like to integrate a JTAG adapter on this board, so that software > developers don't need to buy an external ad

[Openocd-development] [PATCH 2/4] jlink: use tap buffer as 2k

2011-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
as said in the datasheet Section 3.3.2 Organization of buffers All buffers are big enough to hold 2 KByte of data. this will double the speed of download Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Cc: Nicolas Ferre Cc: Patrice Vilchez --- src/jtag/drivers/jlink.c |6 +++--- 1 files

[Openocd-development] [PATCH 3/4] jlink: add detect hw type

2011-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Cc: Nicolas Ferre Cc: Patrice Vilchez --- src/jtag/drivers/jlink.c | 21 + 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/src/jtag/drivers/jlink.c b/src/jtag/drivers/jlink.c index 6507403..174f7b3 100644 ---

[Openocd-development] [PATCH 4/4] jlink: add Emulator configuration support

2011-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Cc: Nicolas Ferre Cc: Patrice Vilchez --- doc/openocd.texi | 18 ++ src/jtag/drivers/jlink.c | 397 ++ 2 files changed, 415 insertions(+), 0 deletions(-) diff --git a/doc/openocd.texi b/doc/o

[Openocd-development] [PATCH 1/4] jlink: add capability dumper and command

2011-03-07 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Cc: Nicolas Ferre Cc: Patrice Vilchez --- doc/openocd.texi |2 + src/jtag/drivers/jlink.c | 102 +- 2 files changed, 103 insertions(+), 1 deletions(-) diff --git a/doc/openocd.texi b/doc/op

[Openocd-development] Integrating a JTAG interface adapter

2011-03-07 Thread Jean-Claude Repetto
Hello, I am currently designing a custom development board for a system based on an EFM32 ARM-Cortex M3 device. I would like to integrate a JTAG adapter on this board, so that software developers don't need to buy an external adapter. So, I am looking for a solution that can work with OpenOCD