-
Hey guys, I have a Cortex M55 chip I'd like to debug with my BMP. Should this be supported already (on nightly builds)? My gdb
Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
👋🏼 Cortex-M55 should indeed be supported in some capacity at least. What you're seeing in the output there is that it's finding a JTAG DP, however we never got to see an example of what a ADIv6 JTAG-DPv2's ID code looks like before so BMD is likely not realising that's an ADIv6 DP. The DPIDR read-out failure isn't helping either as that's indicative of an issue talking with ADIv6's JTAG-DPv2's. Essentially what we're saying is that SWD-DPv3 has been proven out and tested, but because our test target was SWD-only (RP2350), we had to make some guesses about JTAG-DPv2 correctness/functionality and it looks like there's some more work needed there to get JTAG going. If you target has a SWJ-DP (ie one that can talk either JTAG or SWD) then for now, please scan using SWD. We'll transfer this to an issue to address the JTAG side of things being unhappy and needing some work to get woring. |
Beta Was this translation helpful? Give feedback.
👋🏼 Cortex-M55 should indeed be supported in some capacity at least. What you're seeing in the output there is that it's finding a JTAG DP, however we never got to see an example of what a ADIv6 JTAG-DPv2's ID code looks like before so BMD is likely not realising that's an ADIv6 DP. The DPIDR read-out failure isn't helping either as that's indicative of an issue talking with ADIv6's JTAG-DPv2's.
Essentially what we're saying is that SWD-DPv3 has been proven out and tested, but because our test target was SWD-only (RP2350), we had to make some guesses about JTAG-DPv2 correctness/functionality and it looks like there's some more work needed there to get JTAG going. If you target has a SWJ-DP…