DragonProbe/README.md

123 lines
5.7 KiB
Markdown
Raw Normal View History

2021-01-31 03:43:09 +00:00
## Dapper Mime
2021-02-01 16:01:11 +00:00
This unearths the name of a weekend project that I did in 2014. Both then and now, this is a port of [ARM's CMSIS-DAP code](https://github.com/arm-software/CMSIS_5) to a platform without the need for an expensive proprietary compiler and USB drivers.
2021-01-31 03:43:09 +00:00
Whereas the original code used ST's STM32 USB drivers, this new iteration uses [TinyUSB](https://github.com/hathach/tinyusb), an open source cross-platform USB stack for embedded systems.
## Variants
2021-02-04 23:17:56 +00:00
2021-02-19 17:31:18 +00:00
Most [TinyUSB supported MCUs](https://github.com/hathach/tinyusb/blob/master/docs/boards.md) can run this code; a subdirectory under bsp needs to be added for the "BOARD" name with a DAP_config.h to control the SWD/JTAG GPIOs and a unique.h to provide unique serial number (if any) and prefix to the USB product name.
Already added BOARD variants include:
For BOARD=raspberry_pi_pico, this project results in a standards-based CMSIS-DAP alternative to the approaches suggested in Chapter 5 and Appendix A of [Getting Started with Raspberry Pi Pico](https://datasheets.raspberrypi.org/pico/getting-started-with-pico.pdf). This uses two RP2040 boards (see wiring loom shown in Figure 34 of Appendix A) where one RP2040 is the debugger and the other RP2040 is being debugged. The instructions in Chapter 5 apply, except no Raspberry Pi is needed.
Alternatively, a special one RP2040 “Raspberry Pi Pico” variant is [available here](https://github.com/majbthrd/pico-debug).
For BOARD=stm32f072disco, the inexpensive [32F072BDISCOVERY evaluation board](https://www.st.com/en/evaluation-tools/32f072bdiscovery.html) can be used as a CMSIS-DAP SWD debugger.
2021-02-04 23:17:56 +00:00
2021-01-31 03:43:09 +00:00
## Building
After initially downloading this project's code, issue the following command to download TinyUSB and CMSIS_5 code:
2021-01-31 03:43:09 +00:00
```
git submodule update --init --recursive
2021-01-31 03:43:09 +00:00
```
Follow the TinyUSB build instructions [available here](https://github.com/hathach/tinyusb/tree/master/docs), but issue the make command in the base directory of Dapper Mime.
Note that each TinyUSB board name being targeted needs a corresponding subdirectory under the Dapper Mime ./bsp/ subdirectory and a customized version of DAP_config.h for the target.
2021-01-31 03:43:09 +00:00
Alternatively, one can compile with CMake:
```
mkdir cmake-build && cd cmake-build
cmake -DBOARD=raspberry_pi_pico -DFAMILIY=rp2040 -DCMAKE_BUILD_TYPE=Debug ..
```
If you have the Pico SDK installed on your system, and the `PICO_SDK_PATH`
environment variable is specified properly, you can omit the `--recursive` flag
in the `git submodule` invocation (to avoid many many git clones), and pass
the `-DUSE_SYSTEMWIDE_PICOSDK=On` flag to CMake, too.
## Usage
2021-06-02 22:45:32 +00:00
These microcontrollers support the following protocols:
2021-06-02 22:48:28 +00:00
| MCU | SWD | JTAG | UART | SPI (flashrom) | I2C | AVR programming |
|:------ |:---:|:----:|:----:|:-------------- |:--- |:--------------- |
2021-06-06 03:12:38 +00:00
| RP2040 | X | X | X | WIP | Planned | Planned |
2021-06-02 22:48:28 +00:00
| STM32F072B Discovery | X | | X | | | |
2021-06-02 22:45:32 +00:00
2021-06-02 22:49:37 +00:00
The [original repository](https://github.com/majbthrd/DapperMime/) (Dapper
Mime) supported only SWD and UART, and worked for these two boards. This fork
focusses on adding more protocols, but the author of this fork only has a
Raspberry Pi Pico.
2021-06-02 22:45:32 +00:00
The pin mapping for the RP2040 is as follows:
2021-06-02 22:48:28 +00:00
| Pin number | Usage |
|:---------- |:-------------- |
| GP0 | stdio UART TX |
| GP1 | stdio UART RX |
| GND | <ground> |
| GP2 | SWCLK/TCK |
| GP3 | SWDIO/TMS |
| GP4 | UART TX |
| GP5 | UART RX |
| GND | <ground> |
| GP6 | TDI |
| GP7 | TDO |
| GP8 | nTRST |
| GP9 | nRESET |
| GND | <ground> |
2021-06-06 03:12:38 +00:00
| GP10 | SCLK |
| GP11 | MOSI |
| GP12 | MISO |
| GP13 | nCS |
| GND | <ground> |
The UART pins are for connecting to the device to be debugged, the data is
2021-05-31 10:51:07 +00:00
echoed back over the USB CDC interface (typically a `/dev/ttyACMx` device on
Linux). If you want to get stdio readout on your computer, connect GP0 to GP5,
and GP1 to GP4.
In SWD mode, the pin mapping is entirely as with the standard Picoprobe setup,
as described in Chapter 5 and Appendix A of [Getting Started with Raspberry Pi
Pico](https://datasheets.raspberrypi.org/pico/getting-started-with-pico.pdf)
2021-06-02 22:45:32 +00:00
In JTAG mode, TCK and TMS have the same pins as SWCLK and SWDIO, respectively,
TDI and TDO are on the next two consecutive free pins.
In your OpenOCD flags, use `-f interface/cmsis-dap.cfg`. Default transport is
JTAG, if OpenOCD doesn't specify a default to the probe.
2021-01-31 03:43:09 +00:00
## License
TinyUSB is licensed under the [MIT license](https://opensource.org/licenses/MIT).
ARM's CMSIS_5 code is licensed under the [Apache 2.0 license](https://opensource.org/licenses/Apache-2.0).
2021-06-02 22:45:32 +00:00
## TODO
- [x] CMSIS-DAP JTAG implementation
2021-06-02 22:45:32 +00:00
- [ ] Flashrom/SPI support using Serprog
- [ ] UART with CTS/RTS flow control
2021-06-02 22:45:32 +00:00
- [ ] I2C support by emulating the I2C Tiny USB
- [ ] Expose RP2040-internal temperature ADC on I2C-over-USB bus?
- Does SMBus stuff need special treatment here?
- [ ] Maybe add some way of reconfiguring features while the device is running.
Eg. CTS/RTS enable/disable, temperature ADC I2C address, ...
- Maybe use the Serprog USB serial interface for this, with some extension
commands not typically used for Serprog.
2021-06-02 22:45:32 +00:00
- [ ] AVR programming (USBavr emulation?)
- Renesas E7-{0,1,2} programming thing????
- Renesas tell us how this works pls
- Maybe steal other features from the Bus Pirate or Glasgow or so
- 1-wire? Never seen this one in the wild
- MIDI? Feels mostly gimmicky...
- PS/2? Hmmmm idk
- HD44780 LCD? See MIDI
- CAN? If I'd first be able to find a CAN device to test it with, sure
2021-06-02 22:45:32 +00:00