]> sigrok.org Git - libsigrokdecode.git/blob - decoders/jtag_stm32/pd.py
s/out_proto/out_python/.
[libsigrokdecode.git] / decoders / jtag_stm32 / pd.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2 of the License, or
9 ## (at your option) any later version.
10 ##
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 ##
20
21 import sigrokdecode as srd
22
23 # JTAG debug port data registers (in IR[3:0]) and their sizes (in bits)
24 # Note: The ARM DAP-DP is not IEEE 1149.1 (JTAG) compliant (as per ARM docs),
25 #       as it does not implement the EXTEST, SAMPLE, and PRELOAD instructions.
26 #       Instead, BYPASS is decoded for any of these instructions.
27 ir = {
28     '1111': ['BYPASS', 1],  # Bypass register
29     '1110': ['IDCODE', 32], # ID code register
30     '1010': ['DPACC', 35],  # Debug port access register
31     '1011': ['APACC', 35],  # Access port access register
32     '1000': ['ABORT', 35],  # Abort register # TODO: 32 bits? Datasheet typo?
33 }
34
35 # ARM Cortex-M3 r1p1-01rel0 ID code
36 cm3_idcode = 0x3ba00477
37
38 # JTAG ID code in the STM32F10xxx BSC (boundary scan) TAP
39 jtag_idcode = {
40     0x06412041: 'Low-density device, rev. A',
41     0x06410041: 'Medium-density device, rev. A',
42     0x16410041: 'Medium-density device, rev. B/Z/Y',
43     0x06414041: 'High-density device, rev. A/Z/Y',
44     0x06430041: 'XL-density device, rev. A',
45     0x06418041: 'Connectivity-line device, rev. A/Z',
46 }
47
48 # ACK[2:0] in the DPACC/APACC registers (unlisted values are reserved)
49 ack_val = {
50     '001': 'WAIT',
51     '010': 'OK/FAULT',
52 }
53
54 # 32bit debug port registers (addressed via A[3:2])
55 dp_reg = {
56     '00': 'Reserved', # Must be kept at reset value
57     '01': 'DP CTRL/STAT',
58     '10': 'DP SELECT',
59     '11': 'DP RDBUFF',
60 }
61
62 # APB-AP registers (each of them 32 bits wide)
63 apb_ap_reg = {
64     0x00: ['CSW', 'Control/status word'],
65     0x04: ['TAR', 'Transfer address'],
66     # 0x08: Reserved SBZ
67     0x0c: ['DRW', 'Data read/write'],
68     0x10: ['BD0', 'Banked data 0'],
69     0x14: ['BD1', 'Banked data 1'],
70     0x18: ['BD2', 'Banked data 2'],
71     0x1c: ['BD3', 'Banked data 3'],
72     # 0x20-0xf4: Reserved SBZ
73     0x800000000: ['ROM', 'Debug ROM address'],
74     0xfc: ['IDR', 'Identification register'],
75 }
76
77 # TODO: All start/end sample values in self.put() calls are bogus.
78 # TODO: Split off generic ARM/Cortex-M3 parts into another protocol decoder?
79
80 # Bits[31:28]: Version (here: 0x3)
81 #              JTAG-DP: 0x3, SW-DP: 0x2
82 # Bits[27:12]: Part number (here: 0xba00)
83 #              JTAG-DP: 0xba00, SW-DP: 0xba10
84 # Bits[11:1]:  JEDEC (JEP-106) manufacturer ID (here: 0x23b)
85 #              Bits[11:8]: Continuation code ('ARM Limited': 0x04)
86 #              Bits[7:1]: Identity code ('ARM Limited': 0x3b)
87 # Bits[0:0]:   Reserved (here: 0x1)
88 def decode_device_id_code(bits):
89     id_hex = '0x%x' % int('0b' + bits, 2)
90     ver =    '0x%x' % int('0b' + bits[-32:-28], 2)
91     part =   '0x%x' % int('0b' + bits[-28:-12], 2)
92     manuf =  '0x%x' % int('0b' + bits[-12:-1], 2)
93     res =    '0x%x' % int('0b' + bits[-1], 2)
94     return (id_hex, ver, part, manuf, res)
95
96 # DPACC is used to access debug port registers (CTRL/STAT, SELECT, RDBUFF).
97 # APACC is used to access all Access Port (AHB-AP) registers.
98
99 # APACC/DPACC, when transferring data IN:
100 # Bits[34:3] = DATA[31:0]: 32bit data to transfer (write request)
101 # Bits[2:1] = A[3:2]: 2-bit address (debug/access port register)
102 # Bits[0:0] = RnW: Read request (1) or write request (0)
103 def data_in(instruction, bits):
104     data, a, rnw = bits[:-3], bits[-3:-1], bits[-1]
105     data_hex = '0x%x' % int('0b' + data, 2)
106     r = 'Read request' if (rnw == '1') else 'Write request'
107     # reg = dp_reg[a] if (instruction == 'DPACC') else apb_ap_reg[a]
108     reg = dp_reg[a] if (instruction == 'DPACC') else a # TODO
109     return 'New transaction: DATA: %s, A: %s, RnW: %s' % (data_hex, reg, r)
110
111 # APACC/DPACC, when transferring data OUT:
112 # Bits[34:3] = DATA[31:0]: 32bit data which is read (read request)
113 # Bits[2:0] = ACK[2:0]: 3-bit acknowledge
114 def data_out(bits):
115     data, ack = bits[:-3], bits[-3:]
116     data_hex = '0x%x' % int('0b' + data, 2)
117     ack_meaning = ack_val.get(ack, 'Reserved')
118     return 'Previous transaction result: DATA: %s, ACK: %s' \
119            % (data_hex, ack_meaning)
120
121 class Decoder(srd.Decoder):
122     api_version = 1
123     id = 'jtag_stm32'
124     name = 'JTAG / STM32'
125     longname = 'Joint Test Action Group / ST STM32'
126     desc = 'ST STM32-specific JTAG protocol.'
127     license = 'gplv2+'
128     inputs = ['jtag']
129     outputs = ['jtag_stm32']
130     probes = []
131     optional_probes = []
132     options = {}
133     annotations = [
134         ['text', 'Human-readable text'],
135     ]
136
137     def __init__(self, **kwargs):
138         self.state = 'IDLE'
139         # self.state = 'BYPASS'
140
141     def start(self):
142         # self.out_python = self.register(srd.OUTPUT_PYTHON)
143         self.out_ann = self.register(srd.OUTPUT_ANN)
144
145     def handle_reg_bypass(self, cmd, bits):
146         # TODO
147         self.put(self.ss, self.es, self.out_ann, [0, ['BYPASS: ' + bits]])
148
149     def handle_reg_idcode(self, cmd, bits):
150         # TODO
151         # IDCODE is a read-only register which is always accessible.
152         # IR == IDCODE: The device ID code is shifted out via DR next.
153         self.put(self.ss, self.es, self.out_ann,
154                  [0, ['IDCODE: %s (ver=%s, part=%s, manuf=%s, res=%s)' % \
155                  decode_device_id_code(bits)]])
156
157     def handle_reg_dpacc(self, cmd, bits):
158         # self.put(self.ss, self.es, self.out_ann,
159         #          [0, ['DPACC/%s: %s' % (cmd, bits)]])
160         s = data_in('DPACC', bits) if (cmd == 'DR TDI') else data_out(bits)
161         self.put(self.ss, self.es, self.out_ann, [0, [s]])
162
163     def handle_reg_apacc(self, cmd, bits):
164         # self.put(self.ss, self.es, self.out_ann,
165         #          [0, ['APACC/%s: %s' % (cmd, bits)]])
166         s = data_in('APACC', bits) if (cmd == 'DR TDI') else data_out(bits)
167         self.put(self.ss, self.es, self.out_ann, [0, [s]])
168
169     def handle_reg_abort(self, cmd, bits):
170         # Bits[31:1]: reserved. Bit[0]: DAPABORT.
171         a = '' if (bits[0] == '1') else 'No '
172         s = 'DAPABORT = %s: %sDAP abort generated' % (bits[0], a)
173         self.put(self.ss, self.es, self.out_ann, [0, [s]])
174
175         # Warn if DAPABORT[31:1] contains non-zero bits.
176         if (bits[:-1] != ('0' * 31)):
177             self.put(self.ss, self.es, self.out_ann,
178                      [0, ['WARNING: DAPABORT[31:1] reserved!']])
179
180     def handle_reg_unknown(self, cmd, bits):
181         self.put(self.ss, self.es, self.out_ann,
182                  [0, ['Unknown instruction: ' % bits]]) # TODO
183
184     def decode(self, ss, es, data):
185         # Assumption: The right-most char in the 'val' bitstring is the LSB.
186         cmd, val = data
187
188         self.ss, self.es = ss, es
189
190         # self.put(self.ss, self.es, self.out_ann, [0, [cmd + ' / ' + val]])
191
192         # State machine
193         if self.state == 'IDLE':
194             # Wait until a new instruction is shifted into the IR register.
195             if cmd != 'IR TDI':
196                 return
197             # Switch to the state named after the instruction, or 'UNKNOWN'.
198             # Ignore bits other than IR[3:0]. While the IR register is only
199             # 4 bits in size, some programs (e.g. OpenOCD) might fill in a
200             # few more (dummy) bits. OpenOCD makes IR at least 8 bits long.
201             self.state = ir.get(val[-4:], ['UNKNOWN', 0])[0]
202             self.put(self.ss, self.es, self.out_ann, [0, ['IR: ' + self.state]])
203         elif self.state == 'BYPASS':
204             # Here we're interested in incoming bits (TDI).
205             if cmd != 'DR TDI':
206                 return
207             handle_reg = getattr(self, 'handle_reg_%s' % self.state.lower())
208             handle_reg(cmd, val)
209             self.state = 'IDLE'
210         elif self.state in ('IDCODE', 'ABORT', 'UNKNOWN'):
211             # Here we're interested in outgoing bits (TDO).
212             if cmd != 'DR TDO':
213                 return
214             handle_reg = getattr(self, 'handle_reg_%s' % self.state.lower())
215             handle_reg(cmd, val)
216             self.state = 'IDLE'
217         elif self.state in ('DPACC', 'APACC'):
218             # Here we're interested in incoming and outgoing bits (TDI/TDO).
219             if cmd not in ('DR TDI', 'DR TDO'):
220                 return
221             handle_reg = getattr(self, 'handle_reg_%s' % self.state.lower())
222             handle_reg(cmd, val)
223             if cmd == 'DR TDO': # TODO: Assumes 'DR TDI' comes before 'DR TDO'
224                 self.state = 'IDLE'
225         else:
226             raise Exception('Invalid state: %s' % self.state)
227