annotate python/stlink.py @ 171:3eb9b9e2958d

Improved IR code
author Windel Bouwman
date Wed, 03 Apr 2013 22:20:20 +0200
parents 59a9a499e518
children c694ec551f34
rev   line source
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
1 import struct, time
129
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
2 from usb import UsbContext, UsbDevice
128
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents: 124
diff changeset
3 from devices import Interface, STLinkException, registerInterface
144
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
4 import adi
113
1f40be088ee8 Added first start stlink
Windel Bouwman
parents:
diff changeset
5
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
6 ST_VID, STLINK2_PID = 0x0483, 0x3748
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
7
113
1f40be088ee8 Added first start stlink
Windel Bouwman
parents:
diff changeset
8 def checkDevice(device):
1f40be088ee8 Added first start stlink
Windel Bouwman
parents:
diff changeset
9 return device.VendorId == ST_VID and device.ProductId == STLINK2_PID
1f40be088ee8 Added first start stlink
Windel Bouwman
parents:
diff changeset
10
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
11 DFU_MODE, MASS_MODE, DEBUG_MODE = 0, 1, 2
117
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
12
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
13 CORE_RUNNING = 0x80
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
14 CORE_HALTED = 0x81
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
15
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
16 # Commands:
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
17 GET_VERSION = 0xf1
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
18 DEBUG_COMMAND = 0xf2
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
19 DFU_COMMAND = 0xf3
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
20 GET_CURRENT_MODE = 0xf5
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
21
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
22 # dfu commands:
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
23 DFU_EXIT = 0x7
113
1f40be088ee8 Added first start stlink
Windel Bouwman
parents:
diff changeset
24
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
25 # debug commands:
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
26 DEBUG_ENTER = 0x20
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
27 DEBUG_EXIT = 0x21
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
28 DEBUG_ENTER_SWD = 0xa3
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
29 DEBUG_GETSTATUS = 0x01
143
1cc59ac80950 Fixed halt button
Windel Bouwman
parents: 138
diff changeset
30 DEBUG_FORCEDEBUG = 0x02
116
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
31 DEBUG_RESETSYS = 0x03
124
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
32 DEBUG_READALLREGS = 0x04
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
33 DEBUG_READREG = 0x5
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
34 DEBUG_WRITEREG = 0x6
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
35 DEBUG_READMEM_32BIT = 0x7
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
36 DEBUG_WRITEMEM_32BIT = 0x8
117
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
37 DEBUG_RUNCORE = 0x9
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
38 DEBUG_STEPCORE = 0xa
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
39
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
40 JTAG_WRITEDEBUG_32BIT = 0x35
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
41 JTAG_READDEBUG_32BIT = 0x36
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
42
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
43 # cortex M3
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
44 CM3_REG_CPUID = 0xE000ED00
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
45
128
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents: 124
diff changeset
46 @registerInterface((ST_VID, STLINK2_PID))
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents: 124
diff changeset
47 class STLink2(Interface):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents: 124
diff changeset
48 """ STlink2 interface implementation. """
119
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
49 def __init__(self, stlink2=None):
129
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
50 self.devHandle = None
119
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
51 if not stlink2:
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
52 context = UsbContext()
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
53 stlink2s = list(filter(checkDevice, context.DeviceList))
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
54 if not stlink2s:
128
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents: 124
diff changeset
55 raise STLinkException('Could not find an ST link 2 interface')
119
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
56 if len(stlink2s) > 1:
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
57 print('More then one stlink2 found, picking first one')
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
58 stlink2 = stlink2s[0]
129
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
59 assert isinstance(stlink2, UsbDevice) # Nifty type checking
124
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
60 assert checkDevice(stlink2)
119
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
61 self.stlink2 = stlink2
130
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
62 def __del__(self):
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
63 if self.IsOpen:
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
64 if self.CurrentMode == DEBUG_MODE:
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
65 self.exitDebugMode()
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
66 self.close()
129
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
67 def __str__(self):
130
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
68 if self.IsOpen:
129
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
69 return 'STlink2 device version {0}'.format(self.Version)
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
70 else:
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
71 return 'STlink2 device'
113
1f40be088ee8 Added first start stlink
Windel Bouwman
parents:
diff changeset
72 def open(self):
130
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
73 if self.IsOpen:
129
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
74 return
119
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
75 self.devHandle = self.stlink2.open()
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
76 if self.devHandle.Configuration != 1:
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
77 self.devHandle.Configuration = 1
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
78 self.devHandle.claimInterface(0)
116
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
79
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
80 # First initialization:
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
81 if self.CurrentMode == DFU_MODE:
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
82 self.exitDfuMode()
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
83 if self.CurrentMode != DEBUG_MODE:
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
84 self.enterSwdMode()
132
205578c96a79 Moved hexview to seperate class
Windel Bouwman
parents: 130
diff changeset
85 #self.reset()
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
86 def close(self):
130
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
87 if self.IsOpen:
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
88 self.devHandle.close()
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
89 self.devHandle = None
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
90 @property
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
91 def IsOpen(self):
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
92 return self.devHandle != None
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
93 # modes:
113
1f40be088ee8 Added first start stlink
Windel Bouwman
parents:
diff changeset
94 def getCurrentMode(self):
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
95 cmd = bytearray(16)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
96 cmd[0] = GET_CURRENT_MODE
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
97 reply = self.send_recv(cmd, 2) # Expect 2 bytes back
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
98 return reply[0]
113
1f40be088ee8 Added first start stlink
Windel Bouwman
parents:
diff changeset
99 CurrentMode = property(getCurrentMode)
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
100 @property
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
101 def CurrentModeString(self):
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
102 modes = {DFU_MODE: 'dfu', MASS_MODE: 'massmode', DEBUG_MODE:'debug'}
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
103 return modes[self.CurrentMode]
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
104 def exitDfuMode(self):
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
105 cmd = bytearray(16)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
106 cmd[0:2] = DFU_COMMAND, DFU_EXIT
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
107 self.send_recv(cmd)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
108 def enterSwdMode(self):
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
109 cmd = bytearray(16)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
110 cmd[0:3] = DEBUG_COMMAND, DEBUG_ENTER, DEBUG_ENTER_SWD
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
111 self.send_recv(cmd)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
112 def exitDebugMode(self):
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
113 cmd = bytearray(16)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
114 cmd[0:2] = DEBUG_COMMAND, DEBUG_EXIT
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
115 self.send_recv(cmd)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
116
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
117 def getVersion(self):
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
118 cmd = bytearray(16)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
119 cmd[0] = GET_VERSION
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
120 data = self.send_recv(cmd, 6) # Expect 6 bytes back
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
121 # Parse 6 bytes into various versions:
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
122 b0, b1, b2, b3, b4, b5 = data
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
123 stlink_v = b0 >> 4
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
124 jtag_v = ((b0 & 0xf) << 2) | (b1 >> 6)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
125 swim_v = b1 & 0x3f
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
126 vid = (b3 << 8) | b2
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
127 pid = (b5 << 8) | b4
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
128 return 'stlink={0} jtag={1} swim={2} vid:pid={3:04X}:{4:04X}'.format(\
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
129 stlink_v, jtag_v, swim_v, vid, pid)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
130 Version = property(getVersion)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
131
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
132 @property
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
133 def ChipId(self):
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
134 return self.read_debug32(0xE0042000)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
135 @property
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
136 def CpuId(self):
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
137 u32 = self.read_debug32(CM3_REG_CPUID)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
138 implementer_id = (u32 >> 24) & 0x7f
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
139 variant = (u32 >> 20) & 0xf
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
140 part = (u32 >> 4) & 0xfff
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
141 revision = u32 & 0xf
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
142 return implementer_id, variant, part, revision
117
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
143 def getStatus(self):
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
144 cmd = bytearray(16)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
145 cmd[0:2] = DEBUG_COMMAND, DEBUG_GETSTATUS
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
146 reply = self.send_recv(cmd, 2)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
147 return reply[0]
117
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
148 Status = property(getStatus)
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
149 @property
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
150 def StatusString(self):
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
151 s = self.Status
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
152 statii = {CORE_RUNNING: 'CORE RUNNING', CORE_HALTED: 'CORE HALTED'}
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
153 if s in statii:
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
154 return statii[s]
132
205578c96a79 Moved hexview to seperate class
Windel Bouwman
parents: 130
diff changeset
155 return 'Unknown status'
117
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
156
116
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
157 def reset(self):
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
158 cmd = bytearray(16)
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
159 cmd[0:2] = DEBUG_COMMAND, DEBUG_RESETSYS
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
160 self.send_recv(cmd, 2)
113
1f40be088ee8 Added first start stlink
Windel Bouwman
parents:
diff changeset
161
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
162 # debug commands:
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
163 def step(self):
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
164 cmd = bytearray(16)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
165 cmd[0:2] = DEBUG_COMMAND, DEBUG_STEPCORE
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
166 self.send_recv(cmd, 2)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
167 def run(self):
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
168 cmd = bytearray(16)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
169 cmd[0:2] = DEBUG_COMMAND, DEBUG_RUNCORE
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
170 self.send_recv(cmd, 2)
138
14e739ed03ab Added halt stub
Windel Bouwman
parents: 132
diff changeset
171 def halt(self):
143
1cc59ac80950 Fixed halt button
Windel Bouwman
parents: 138
diff changeset
172 cmd = bytearray(16)
1cc59ac80950 Fixed halt button
Windel Bouwman
parents: 138
diff changeset
173 cmd[0:2] = DEBUG_COMMAND, DEBUG_FORCEDEBUG
1cc59ac80950 Fixed halt button
Windel Bouwman
parents: 138
diff changeset
174 self.send_recv(cmd, 2)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
175
144
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
176 def traceEnable(self):
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
177 DEMCR = 0xE000EDFC
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
178 v = self.read_debug32(DEMCR)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
179 v |= (1 << 24)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
180 self.write_debug32(DEMCR, v)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
181
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
182 # Helper 1 functions:
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
183 def write_debug32(self, address, value):
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
184 cmd = bytearray(16)
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
185 cmd[0:2] = DEBUG_COMMAND, JTAG_WRITEDEBUG_32BIT
119
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
186 cmd[2:10] = struct.pack('<II', address, value)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
187 self.send_recv(cmd, 2)
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
188 def read_debug32(self, address):
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
189 cmd = bytearray(16)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
190 cmd[0:2] = DEBUG_COMMAND, JTAG_READDEBUG_32BIT
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
191 cmd[2:6] = struct.pack('<I', address) # pack into u32 little endian
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
192 reply = self.send_recv(cmd, 8)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
193 return struct.unpack('<I', reply[4:8])[0]
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
194 def write_reg(self, reg, value):
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
195 cmd = bytearray(16)
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
196 cmd[0:3] = DEBUG_COMMAND, DEBUG_WRITEREG, reg
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
197 cmd[3:7] = struct.pack('<I', value)
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
198 r = self.send_recv(cmd, 2)
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
199 def read_reg(self, reg):
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
200 cmd = bytearray(16)
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
201 cmd[0:3] = DEBUG_COMMAND, DEBUG_READREG, reg
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
202 reply = self.send_recv(cmd, 4)
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
203 return struct.unpack('<I', reply)[0]
124
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
204 def read_all_regs(self):
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
205 cmd = bytearray(16)
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
206 cmd[0:2] = DEBUG_COMMAND, DEBUG_READALLREGS
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
207 reply = self.send_recv(cmd, 84)
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
208 fmt = '<' + 'I' * 21 # unpack 21 register values
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
209 return list(struct.unpack(fmt, reply))
116
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
210 def write_mem32(self, address, content):
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
211 assert len(content) % 4 == 0
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
212 cmd = bytearray(16)
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
213 cmd[0:2] = DEBUG_COMMAND, DEBUG_WRITEMEM_32BIT
119
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
214 cmd[2:8] = struct.pack('<IH', address, len(content))
116
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
215 self.send_recv(cmd)
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
216 self.send_recv(content)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
217 def read_mem32(self, address, length):
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
218 assert length % 4 == 0
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
219 cmd = bytearray(16)
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
220 cmd[0:2] = DEBUG_COMMAND, DEBUG_READMEM_32BIT
119
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
221 cmd[2:8] = struct.pack('<IH', address, length)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
222 reply = self.send_recv(cmd, length) # expect memory back!
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
223 return reply
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
224
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
225 # Helper 2 functions:
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
226 def send_recv(self, tx, rxsize=0):
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
227 """ Helper function that transmits and receives data in bulk mode. """
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
228 # TODO: we could use here the non-blocking libusb api.
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
229 tx = bytes(tx)
116
90b03bc018cf Added loader code from openocd
Windel Bouwman
parents: 115
diff changeset
230 #assert len(tx) == 16
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
231 self.devHandle.bulkWrite(2, tx) # write to endpoint 2
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
232 if rxsize > 0:
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
233 return self.devHandle.bulkRead(1, rxsize) # read from endpoint 1
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
234
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
235 if __name__ == '__main__':
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
236 # Test program
128
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents: 124
diff changeset
237 sl = STLink2()
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
238 sl.open()
132
205578c96a79 Moved hexview to seperate class
Windel Bouwman
parents: 130
diff changeset
239 sl.reset()
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
240 print('version:', sl.Version)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
241 print('mode before doing anything:', sl.CurrentModeString)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
242 if sl.CurrentMode == DFU_MODE:
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
243 sl.exitDfuMode()
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
244 sl.enterSwdMode()
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
245 print('mode after entering swd mode:', sl.CurrentModeString)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
246
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
247 i = sl.ChipId
129
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
248 print('chip id: 0x{0:X}'.format(i))
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
249 print('cpu: {0}'.format(sl.CpuId))
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
250
117
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
251 print('status: {0}'.format(sl.StatusString))
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
252
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
253 # test registers:
124
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
254 sl.write_reg(0, 0xdeadbeef)
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
255 sl.write_reg(1, 0xcafebabe)
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
256 sl.write_reg(2, 0xc0ffee)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
257 sl.write_reg(3, 0x1337)
124
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
258 sl.write_reg(5, 0x1332)
117
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
259 sl.write_reg(6, 0x12345)
115
92b2bf0da1ec Added erase and verify
Windel Bouwman
parents: 114
diff changeset
260 assert sl.read_reg(3) == 0x1337
124
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
261 assert sl.read_reg(5) == 0x1332
117
f2b37d78082d Flash write improvements
Windel Bouwman
parents: 116
diff changeset
262 assert sl.read_reg(6) == 0x12345
124
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
263 regs = sl.read_all_regs()
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
264 for i in range(len(regs)):
d38729d35c4d New implementation of hexfile viewer
Windel Bouwman
parents: 123
diff changeset
265 print('R{0}=0x{1:X}'.format(i, regs[i]))
144
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
266
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
267 # Test CoreSight registers:
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
268 idr4 = sl.read_debug32(0xE0041fd0)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
269 print('idr4 =', idr4)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
270
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
271 print('== ADI ==')
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
272 a = adi.Adi(sl)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
273 a.parseRomTable(0xE00FF000) # why is rom table at 0xE00FF000?
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
274 print('== ADI ==')
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
275
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
276 # Detect ROM table:
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
277 id4 = sl.read_debug32(0xE00FFFD0)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
278 id5 = sl.read_debug32(0xE00FFFD4)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
279 id6 = sl.read_debug32(0xE00FFFD8)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
280 id7 = sl.read_debug32(0xE00FFFDC)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
281 id0 = sl.read_debug32(0xE00FFFE0)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
282 id1 = sl.read_debug32(0xE00FFFE4)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
283 id2 = sl.read_debug32(0xE00FFFE8)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
284 id3 = sl.read_debug32(0xE00FFFEC)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
285 pIDs = [id0, id1, id2, id3, id4, id5, id6, id7]
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
286 print(pIDs)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
287
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
288 print('reading from 0xE00FF000')
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
289 scs = sl.read_debug32(0xE00FF000)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
290 print('scs {0:08X}'.format(scs))
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
291 dwt = sl.read_debug32(0xE00FF004)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
292 print('dwt {0:08X}'.format(dwt))
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
293 fpb = sl.read_debug32(0xE00FF008)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
294 print('fpb {0:08X}'.format(fpb))
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
295 itm = sl.read_debug32(0xE00FF00C)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
296 print('itm {0:08X}'.format(itm))
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
297 tpiu = sl.read_debug32(0xE00FF010)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
298 print('tpiu {0:08X}'.format(tpiu))
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
299 etm = sl.read_debug32(0xE00FF014)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
300 print('etm {0:08X}'.format(etm))
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
301 assert sl.read_debug32(0xE00FF018) == 0x0 # end marker
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
302
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
303 devid = sl.read_debug32(0xE0040FC8)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
304 print('TPIU_DEVID: {0:X}'.format(devid))
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
305 devtype = sl.read_debug32(0xE0040FCC)
59a9a499e518 Added adi class
Windel Bouwman
parents: 143
diff changeset
306 print('TPIU_TYPEID: {0:X}'.format(devtype))
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
307
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
308 sl.exitDebugMode()
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
309 print('mode at end:', sl.CurrentModeString)
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
310
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
311 sl.close()
119
f51791638cae Simplified flashing
Windel Bouwman
parents: 117
diff changeset
312 print('Test succes!')
114
f42268da614f Connected to stm32f4discovery
Windel Bouwman
parents: 113
diff changeset
313