]> sigrok.org Git - sigrok-dumps.git/blame - jtag/olimex_stm32-h103/README
JTAG: More STM32 dumps, specific OpenOCD commands.
[sigrok-dumps.git] / jtag / olimex_stm32-h103 / README
CommitLineData
80b6876c
UH
1-------------------------------------------------------------------------------
2JTAG
3-------------------------------------------------------------------------------
4
5This is a set of example captures of JTAG communication to an Olimex
6STM32-H103 eval board with an ST STM32 (ARM Cortex-M3) microcontroller.
7
8The JTAG adapter used was the FTDI FT2232H based Floss-JTAG (V0.2).
9
10The firmware flashed to the board is a simple LED-blinking libopencm3
11example named 'fancyblink'. The respective fancyblink.bin file is
12available as a reference in the same directory as this README.
13The file's MD5 sum is aa6980d55b9ced84fc0c64bfe9e5ff98.
14
15Details:
16http://olimex.com/dev/stm32-h103.html
17http://randomprojects.org/wiki/Floss-JTAG
18http://libopencm3.org
19http://libopencm3.git.sourceforge.net/git/gitweb.cgi?p=libopencm3/libopencm3;a=tree;f=examples/stm32/f1/stm32-h103/fancyblink
20
21
22Logic analyzer setup
23--------------------
24
25The logic analyzer used for capturing was a Saleae Logic:
26
27 Probe STM32-H103 JTAG connector
28 -------------------------------------
29 1 (black) TRST
30 2 (brown) TDI
31 3 (red) TMS
32 4 (orange) TCK
33 5 (yellow) TDO
34 6 (green) RST
35
36
28746e24
UH
37olimex_stm32-h103_flash_fancyblink.sr
38-------------------------------------
80b6876c 39
28746e24 40The OpenOCD used was "0.5.0 (2011-08-09-08:45)" (Debian version 0.5.0-1):
80b6876c
UH
41
42 openocd -f interface/flossjtag-noeeprom.cfg \
43 -f board/olimex_stm32_h107.cfg \
44 -c "init" -c "reset init" \
45 -c "stm32f1x mass_erase 0" \
46 -c "flash write_image fancyblink.bin" \
47 -c "reset" \
48 -c "shutdown"
49
80b6876c
UH
50The sigrok command line used was:
51
52 sigrok-cli -d 0:samplerate=4mhz --time 20s \
53 -p '1=TRST,2=TDI,3=TMS,4=TCK,5=TDO,6=RST' \
54 -o olimex_stm32-h103_flash_fancyblink.sr
55
28746e24
UH
56
57olimex_stm32-h103_init_10s.sr
58-----------------------------
59
60The following OpenOCD command was used:
61
62 openocd -f interface/flossjtag-noeeprom.cfg -f board/olimex_stm32_h107.cfg \
63 -c "init"
64
65The sigrok command line used was:
66
67 sigrok-cli -d 0:samplerate=4mhz --time 10s \
68 -p '1=TRST,2=TDI,3=TMS,4=TCK,5=TDO,6=RST' -o <filename>
69
70
0082baa4
UH
71olimex_stm32-h103_init_reset_init_10s.sr
72----------------------------------------
73
74The following OpenOCD command was used:
75
76 openocd -f interface/flossjtag-noeeprom.cfg -f board/olimex_stm32_h107.cfg \
77 -c "init" -c "reset init"
78
79The sigrok command line used was:
80
81 sigrok-cli -d 0:samplerate=4mhz --time 10s \
82 -p '1=TRST,2=TDI,3=TMS,4=TCK,5=TDO,6=RST' -o <filename>
83
84
115f77c3
UH
85Specific OpenOCD commands
86-------------------------
87
88For the following tests/files, OpenOCD was already running/connected, and the
89following commands were entered via the OpenOCD telnet interface:
90
91 - olimex_stm32-h103_cmd_reg_10s.sr:
92
93 > reg
94 ===== arm v7m registers
95 (0) r0 (/32): 0x40011000
96 (1) r1 (/32): 0x00000000
97 (2) r2 (/32): 0x00000040
98 (3) r3 (/32): 0x000B5CF4
99 (4) r4 (/32): 0x40022000
100 (5) r5 (/32): 0xFFD7EFB4
101 (6) r6 (/32): 0x3A30084E
102 (7) r7 (/32): 0xF5309C2C
103 (8) r8 (/32): 0xFFFF55D4
104 (9) r9 (/32): 0xDFFFCFFD
105 (10) r10 (/32): 0xF9CAF759
106 (11) r11 (/32): 0xC7092295
107 (12) r12 (/32): 0x44444444
108 (13) sp (/32): 0x20000800
109 (14) lr (/32): 0xFFFFFFFF
110 (15) pc (/32): 0x080001A4
111 (16) xPSR (/32): 0x01000000
112 (17) msp (/32): 0x20000800
113 (18) psp (/32): 0x0748A880
114 (19) primask (/1): 0x00
115 (20) basepri (/8): 0x00
116 (21) faultmask (/1): 0x00
117 (22) control (/2): 0x00
118 ===== cortex-m3 dwt registers
119 (23) dwt_ctrl (/32)
120 (24) dwt_cyccnt (/32)
121 (25) dwt_0_comp (/32)
122 (26) dwt_0_mask (/4)
123 (27) dwt_0_function (/32)
124 (28) dwt_1_comp (/32)
125 (29) dwt_1_mask (/4)
126 (30) dwt_1_function (/32)
127 (31) dwt_2_comp (/32)
128 (32) dwt_2_mask (/4)
129 (33) dwt_2_function (/32)
130 (34) dwt_3_comp (/32)
131 (35) dwt_3_mask (/4)
132 (36) dwt_3_function (/32)
133
134 - olimex_stm32-h103_cmd_reset_10s.sr:
135
136 > reset
137 JTAG tap: stm32.cpu tap/device found: 0x3ba00477 (mfg: 0x23b, part: 0xba00, ver: 0x3)
138 JTAG tap: stm32.bs tap/device found: 0x16410041 (mfg: 0x020, part: 0x6410, ver: 0x1)
139
140 - olimex_stm32-h103_cmd_stm32f1x_options_read_0_10s.sr:
141
142 > stm32f1x options_read 0
143 device id = 0x20036410
144 flash size = 128kbytes
145 Option Byte: 0x3fffffc
146 Readout Protection Off
147 Software Watchdog
148 Stop: No reset generated
149 Standby: No reset generated
150
151 - olimex_stm32-h103_cmd_stm32f1x_mdw_10s.sr:
152
153 > mdw 0x20000000 16
154 0x20000000: 02255100 044aa200 3b02f830 3b02f821 f01368e3 d0fb0f01 0f14f013 3a01d101
155 0x20000020: be00d1f0 40022000 20000800 080001a5 080001ef 080001ed 080001ed 080001ed
156