Olimex Support Forum

ARM => JTAG => Topic started by: nmap on December 30, 2014, 05:35:12 PM

Title: SWD Failure when Radio out of Reset
Post by: nmap on December 30, 2014, 05:35:12 PM
Hi All,

  This is a long shot, but if anyone could help with this issue I would be most grateful.

  I'm using an STM32F103 with a Digi XBee-900HP mesh radio module. I debug from an Olimex ARM-USB-TINY-H using OpenOCD/gdb on Linux.

  If I hold the XBee radio in reset (RST=Low), SWD works fine. As soon as I bring the radio out of reset (RST=High), I get an SWD error in gdb:


Invalid ACK 0x7 in JTAG-DP transaction
Polling target stm32f1x.cpu failed, GDB will be halted. Polling again in 100ms
[Remote target] #1 stopped.


  Then the debugger doesn't work at all (not even to reflash) until I put the radio back in reset. Amazingly, when the radio is in reset again, SWD starts working again:


WARNING! The target is already running. All changes GDB did to registers will be discarded! Waiting for target to halt.

^C
Program received signal SIGINT, Interrupt.
0x08021688 in _idle_thread (p=0x0) at ../libraries/<filename removed>:57
57        <function name removed>
(gdb)


Some other info:

Any tips?

Thanks,
Chris
Title: Re: SWD Failure when Radio out of Reset
Post by: JohnS on December 30, 2014, 06:25:29 PM
I'd check how they're wired together, then suspect noise - crosstalk, EMI, etc.

Have you a 'scope to look at signals?  DSO from choice.

Might be able to run at lower clock?  I know JTAG can but don't know SWD that well.

Maybe try some bypass caps.

John
Title: Re: SWD Failure when Radio out of Reset
Post by: nmap on December 30, 2014, 11:09:36 PM
Thanks for the reply, John.

You were right that I needed to check my wiring. I found the cause of the problem and fixed it.

The CTS line from the XBee is wired to PB4 on the STM32F1, which also has the function of NJTRST.
So, when the XBee came out of reset, it pulled down the CTS line (saying "I'm ready to accept bytes over serial."), and this caused the STM32 to reset the JTAG/SWD module.

I suppose I could move to another pin, but there are not many free pins in this design. So, I just set SWJ_CFG[2:0] to 0b001 which disables the NJTRST function but keeps full SWD functionality:

/* Disable NJTRST */
AFIO->MAPR = (AFIO->MAPR & ~AFIO_MAPR_SWJ_CFG) | AFIO_MAPR_SWJ_CFG_NOJNTRST;


(This is ChibiOS 2.6 register defines.)

I placed this code early in my main(), however there is still a remote possibility that the debugger would have trouble prior to that line. So I don't recommend others to use the TRST pin for GPIO!
Title: Re: SWD Failure when Radio out of Reset
Post by: JohnS on December 31, 2014, 02:22:29 AM
Wow, well done figuring it out so fast!

John