Skip to content

Commit 0506d93

Browse files
committed
updating README for use of jtag with current rev2 boards. updated openocd config file to match newer key words
1 parent 59eba3d commit 0506d93

File tree

2 files changed

+29
-7
lines changed

2 files changed

+29
-7
lines changed

armjtag/README

+25-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@ Problem is the pins are not by default connected to the outside world
1010
so you cant for example reset the ARM as that would disconnect the
1111
jtag. (there is no SRST available)
1212

13-
All but one signal is available on P1, unfortunately that other signal
14-
is on the S5 connector. I was able to solder a wire onto it, had it
15-
been on P1 as well then you could use the same jumper wires I am using
16-
to get from P1 to the ARM jtag wiggler.
13+
On the older rev1 boards, all but one signal is available on P1,
14+
unfortunately that other signal is on the S5 connector. I was able to
15+
solder a wire onto it.
16+
17+
The rev2 boards, no soldering is required.
18+
19+
I use jumper wires like these to get from my jtag board/device to the
20+
raspberry pi.
1721

1822
http://www.sparkfun.com/products/9140
1923
http://www.sparkfun.com/products/9385
@@ -30,6 +34,9 @@ other side except the lower left, pin 2, that is not a ground.
3034
See this page as an example
3135
http://www.amontec.com/jtag_pinout.shtml
3236

37+
38+
rev1 raspberry pi boards (older boards)
39+
3340
1 ARM_VREF P1-1
3441
2 ARM_TRST 22 GPIO_GEN3 P1-15 IN (22 ALT4)
3542
3 ARM_TDI 4/26 GPIO_GCLK P1-7 IN ( 4 ALT5)
@@ -40,6 +47,20 @@ http://www.amontec.com/jtag_pinout.shtml
4047

4148
4-20 ARM_GND P1-25
4249

50+
51+
rev2 raspberry pi boards
52+
53+
1 ARM_VREF P1-1
54+
2 ARM_TRST 22 GPIO_GEN3 P1-15 IN (22 ALT4)
55+
3 ARM_TDI 4/26 GPIO_GCLK P1-7 IN ( 4 ALT5)
56+
4 ARM_TMS 12/27 CAM_GPIO P1-13 OUT (27 ALT4)
57+
5 ARM_TCK 13/25 GPIO_GEN6 P1-22 OUT (25 ALT4)
58+
7 no connect
59+
9 ARM_TDO 5/24 GPIO_GEN5 P1-18 OUT (24 ALT4)
60+
61+
4-20 ARM_GND P1-25
62+
63+
4364
In parenthesis is the gpio pin used and the alternate function setting
4465
needed in the GPIO to connect it to the edge of the BCM chip.
4566

armjtag/raspi.cfg

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ telnet_port 4444
55
#gdb_port 0
66
#tcl_port 0
77

8-
jtag_khz 1000
8+
#jtag_khz 1000
9+
adapter_khz 1000
910

10-
jtag_nsrst_delay 400
11-
jtag_ntrst_delay 400
11+
#jtag_nsrst_delay 400
12+
#jtag_ntrst_delay 400
1213

1314
if { [info exists CHIPNAME] } {
1415
set _CHIPNAME $CHIPNAME

0 commit comments

Comments
 (0)