-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpb_update.py
executable file
·515 lines (403 loc) · 16.5 KB
/
pb_update.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright © 2014 Kevin Thibedeau
# (kevin 'period' thibedeau 'at' gmail 'punto' com)
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
'''PicoBlaze ROM update script
'''
import sys
import os
import re
import math
import copy
import itertools
import gettext
from argparse import ArgumentParser
from subprocess import check_call, CalledProcessError
# Fix broken UTF-8 support on Windows console
if sys.platform == "win32" and sys.stdout.encoding == 'cp65001':
try:
from opbasm_lib.win_console import *
fix_broken_win_console()
except ImportError:
pass
def find_lib_dir():
# Look relative to installed library
try:
lib_dir = os.path.dirname(sys.modules['opbasm_lib'].__file__)
except KeyError:
# Look relative to this script
lib_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'opbasm_lib')
return lib_dir
gettext.install('pb_update', os.path.join(find_lib_dir(), 'lang'))
try:
from opbasm_lib.color import *
except ImportError:
# Provide dummy functions if the color module isn't found
def note(t): return t
def success(t): return t
def warn(t): return t
def error(t): return t
def parse_command_line():
progname = os.path.basename(sys.argv[0])
usage = _('{} -m <MEM file> -n <NCD file> [-l <Layout spec>] [-o <output BIT file>]').format(progname)
desc = '''Update PicoBlaze ROM in a bitstream.'''
parser = ArgumentParser(usage=usage, description=desc)
parser.add_argument('-m', '--mem', dest='mem_file', help=_('MEM file'))
parser.add_argument('-n', '--ncd', dest='ncd_file', help=_('NCD file'))
parser.add_argument('-l', '--layout-spec', dest='layout_spec', \
help=_('Memory layout specification "inst1,inst2,...instN[:next row...]"'))
parser.add_argument('-o', '--output', dest='out_bit_file', help=_('Output BIT file'))
options, unparsed = parser.parse_known_args()
if not options.mem_file: parser.error(_('Missing MEM file'))
if not options.ncd_file: parser.error(_('Missing NCD file'))
return options
def report_error(*args, **kwargs):
print(error(_('ERROR:')), *args, file=sys.stderr)
if 'exit' in kwargs:
sys.exit(kwargs['exit'])
def main():
print(note(_('PicoBlaze ROM updater')))
options = parse_command_line()
# Set up file names
design_name = os.path.splitext(os.path.basename(options.ncd_file))[0]
prog_name = os.path.splitext(os.path.basename(options.mem_file))[0]
bit_file = os.path.splitext(options.ncd_file)[0] + '.bit'
xdl_file = design_name + '.xdl'
bmm_file = prog_name + '.bmm'
if not options.out_bit_file:
options.out_bit_file = 'new_' + design_name + '.bit'
# Check for existence of input files
if not os.path.exists(options.mem_file):
report_error(_('MEM file not found'), exit=1)
if not os.path.exists(options.ncd_file):
report_error(_('NCD file not found'), exit=1)
if not os.path.exists(bit_file):
report_error(_('BIT file not found ({})').format(bit_file), exit=1)
# Check timestamp of XDL and NCD to see if we need to update the XDL
run_xdl = True
if os.path.exists(xdl_file):
if os.path.getmtime(xdl_file) > os.path.getmtime(options.ncd_file):
run_xdl = False
# Run XDL to get instance information
if run_xdl:
print(_('Running XDL...'))
try:
check_call(['xdl', '-ncd2xdl', options.ncd_file, xdl_file])
except CalledProcessError:
report_error(_('XDL failure'), exit=1)
if not os.path.exists(xdl_file):
report_error(_('XDL file not generated'), exit=1)
# Find BRAM instances in XDL file
ram_insts = find_ram_instances(xdl_file)
inames = sorted(ram_insts.keys())
if len(inames) == 0:
report_error(_('No RAM instances found'), exit=1)
prompt_user = True
lo = MemLayout()
if len(inames) == 1: # Don't bother with prompt if only one RAM is in the netlist
lo.add_row(MemRow(0,0))
lo.rows[0].add_bram(copy.deepcopy(ram_insts[inames[0]]))
prompt_user = False
elif options.layout_spec is not None: # Check if layout specification exists
spec = [[b.strip() for b in r.split(',')] for r in options.layout_spec.split(':')]
spec_flat = [i for s in spec for i in s]
def show_instances(inames, ram_insts):
print(_(' Available RAM instances:'), file=sys.stderr)
for n in inames:
print(' {} [{} {}]'.format(n, ram_insts[n].primitive, ram_insts[n].dimensions), file=sys.stderr)
sys.exit(1)
# Check for duplicate instances in the spec
if len(set(spec_flat)) < len(spec_flat):
report_error(_('Duplicate instances in BRAM spec'))
show_instances(inames, ram_insts)
# Verify all instances in the spec are in the netlist
for i in spec_flat:
if i not in inames:
report_error(_('Instance does not exist in netlist ({})').format(i))
show_instances(inames, ram_insts)
# Build a layout from the specification
for r in spec:
lo.add_row(MemRow(0,0))
for b in r:
lo.rows[-1].add_bram(copy.deepcopy(ram_insts[b]))
prompt_user = False
# Read the mem file
mem_data = []
with open(options.mem_file, 'r') as fh:
mem_data = [l.strip() for l in fh.readlines()]
if len(mem_data) > 1: # Remove first line with address offset
mem_data = [int(w, 16) for w in mem_data[1:]]
print(_('Required memory depth:'), len(mem_data))
# Interactive selection of BRAM blocks to build memory layout
target_width = 18
target_depth = len(mem_data)
if prompt_user: lo.add_row(MemRow(0, 0)) # Start with a default, empty row
while prompt_user and not lo.valid(target_depth, target_width):
if len(lo.rows[0].brams) > 0:
# Show current layout
print(_('\nMemory layout:'))
print('\n'.join(lo.summary(4)))
if len(inames) == 0:
report_error(_('No BRAMs remaining'), exit=1)
# Prompt user
print(_('\nAvailable RAM instances:'))
for i, n in enumerate(inames):
print(' {}) {} [{} {}]'.format(i+1, n, ram_insts[n].primitive, ram_insts[n].dimensions))
print(_(' q) Quit'))
sel = input(_('\nSelect RAM instance: ').encode(sys.stdout.encoding))
if sel.lower() == 'q': sys.exit(0)
try:
sel = int(sel) - 1
except ValueError:
sel = -1
if sel < 0 or sel >= len(inames):
report_error(_('Invalid selection'), exit=1)
lo.rows[-1].add_bram(copy.deepcopy(ram_insts[inames[sel]]))
if lo.rows[-1].width > target_width:
report_error(_('Row is too wide ({} bits)').format(lo.rows[-1].width), exit=1)
if lo.rows[-1].valid(target_width) and not lo.valid(target_depth, target_width):
# Row is complete but depth is not satisfied
lo.add_row(MemRow(0, 0))
# Remove selected BRAM from available list
inames.remove(inames[sel])
# Show final layout
print(success(_('\nFinal memory layout:')))
print('\n'.join(lo.summary(4)))
print()
# Make sure the layout width is correct
for r in lo.rows:
if r.width != target_width:
report_error(_('Memory layout width does not match required {} bits').format(target_width), exit=1)
# Make sure the layout depth is correct
if lo.rows[-1].end + 1 != target_depth:
report_error(_('Memory layout depth does not match required {} words').format(target_depth), exit=1)
print('{} "{}"'.format(success(_('Layout Spec:')),lo.instance_spec))
# data2mem doesn't work right if there multiple BRAMs in a row of memory with
# parity bits in use. We get around this by replacing BRAMs one at a time if there
# is more than one BRAM in the layout.
if len(lo.rows) == 1 and len(lo.rows[0].brams) == 1: # Single BRAM
# Generate BMM file
with open(bmm_file, 'w') as fh:
fh.write(lo.bmm)
run_data2mem(bmm_file, options.mem_file, bit_file, options.out_bit_file)
else: # Multiple BRAMs
prev_bit_file = bit_file
cur_bit_file = None
for rn, r in enumerate(lo.rows):
row_data = mem_data[r.start:r.end+1]
for b in r.brams:
mask = (2**b.width - 1) << b.lsb
bram_data = [(w & mask) >> b.lsb for w in row_data]
base_name = 'r{}_b{}_{}'.format(rn, b.msb, b.lsb)
bmm_file = base_name + '.bmm'
mem_file = base_name + '.mem'
cur_bit_file = base_name + '.bit'
# Build a new single BRAM layout so we can generate a BMM
nlo = MemLayout()
nlo.add_row(MemRow(0,0))
nlo.rows[0].add_bram(copy.deepcopy(b))
nlo.rows[0].brams[0].lsb = 0 # Reset bit lanes
# data2mem has a bug when handling 2-bit wide memories. It pads words out to 4-bits with 0's.
# We will handle this case by re-encoding these memories as 4-bits wide.
width = b.width
if width == 2:
it = iter(bram_data)
bram_pairs = zip(it, it)
bram_data = [(p[0] << 2) + p[1] for p in bram_pairs]
width = 4
nlo.rows[0].brams[0].width = width
nlo.rows[0].brams[0].depth = nlo.rows[0].brams[0].depth // 2
nlo.rows[0].end = nlo.rows[0].brams[0].depth - 1
# Write a mem file
with open(mem_file, 'w') as fh:
print('@00000000', file=fh)
fh.writelines('{:0{}X}\n'.format(w,(width+3)//4) for w in bram_data)
# Write the BMM
with open(bmm_file, 'w') as fh:
fh.write(nlo.bmm)
run_data2mem(bmm_file, mem_file, prev_bit_file, cur_bit_file)
if prev_bit_file != bit_file: os.remove(prev_bit_file)
prev_bit_file = cur_bit_file
if cur_bit_file: os.rename(cur_bit_file, options.out_bit_file)
print(success(_('Generated updated bit file:')), options.out_bit_file)
sys.exit(0)
def run_data2mem(bmm_file, mem_file, bit_file, out_bit_file):
print(_('\nRunning data2mem...'))
d2m_cmd = ['data2mem', '-bm', bmm_file, '-bd', mem_file, \
'-bt', bit_file,'-o', 'b', out_bit_file]
print(' ', ' '.join(d2m_cmd))
try:
check_call(d2m_cmd)
except CalledProcessError:
report_error(_('data2mem failure'), exit=1)
class Bram(object):
'''Keep track of properties of BRAM instances'''
def __init__(self, instance, primitive, loc, depth=None, width=None):
self.instance = instance
self.primitive = primitive
self.loc = loc
self.depth = depth
self.width = width
self.lsb = 0
@property
def msb(self):
return self.lsb + self.width - 1
@property
def dimensions(self):
return '{}x{}'.format(self.depth if self.depth else '??', self.width if self.width else '??')
inst_re = re.compile(r'inst "([^"]+)" "(RAMB\d+.*)",.+RAMB\d+_(\w+) *,')
# The XDL file has different BRAM attributes depending on the device family
# We need to extract the depth and width of the memories in different ways
cfg_s3_re = re.compile(r'PORTA_ATTR::(\d+)X(\d+)')
cfg_s6_re = re.compile(r'DATA_WIDTH_A::(\d+)')
cfg_v7_re = re.compile(r'READ_WIDTH_A::(\d+)')
def find_ram_instances(xdl_file):
with open(xdl_file, 'r') as fh:
lines = fh.readlines()
ram_insts = {}
last_bram = None
for l in lines:
if last_bram is not None:
primitive = ram_insts[last_bram].primitive
# Spartan-3
m = cfg_s3_re.search(l)
if m:
ram_insts[last_bram].depth = int(m.group(1))
ram_insts[last_bram].width = int(m.group(2))
last_bram = None
# Spartan-6
m = cfg_s6_re.search(l)
if m:
width = int(m.group(1))
width_np = 2**int(math.log(width, 2)) # Remove any parity bits from width
if '16' in primitive:
depth = 16384 // width_np
elif '8' in primitive:
depth = 8192 // width_np
else:
depth = None
ram_insts[last_bram].depth = depth
ram_insts[last_bram].width = width
last_bram = None
# 7-series
m = cfg_v7_re.search(l)
if m:
width = int(m.group(1))
width_np = 2**int(math.log(width, 2)) # Remove any parity bits from width
if '36' in primitive:
depth = 32768 // width_np
elif '18' in primitive:
depth = 16384 // width_np
else:
depth = None
ram_insts[last_bram].depth = depth
ram_insts[last_bram].width = width
last_bram = None
m = inst_re.match(l)
if m:
ram_insts[m.group(1)] = Bram(m.group(1), m.group(2), m.group(3))
last_bram = m.group(1)
return ram_insts
class MemRow(object):
def __init__(self, start, end, brams=None):
self.start = start
self.end = end
self.brams = brams if brams else []
self.target_width = 18
lsb = 0
for b in reversed(self.brams):
b.lsb = lsb
lsb += b.width
if self.target_width > 0 and len(self.brams) > 0:
lsb_shift = self.target_width - self.brams[0].width
for b in self.brams:
b.lsb += lsb_shift
@property
def depth(self):
return self.end - self.start + 1
@property
def width(self):
return sum(b.width for b in self.brams)
def add_bram(self, b):
self.brams.append(b)
if len(self.brams) >= 2:
b.lsb = self.brams[-2].lsb - b.width
else: # First BRAM in row
b.lsb = self.target_width - b.width
self.end = self.start + b.depth - 1
def valid(self, width):
return True if self.width == width else False
@property
def bus_block(self):
lanes = [' {} [{}:{}] LOC = {};'.format(b.instance, b.msb, b.lsb, b.loc) for b in self.brams]
return ' BUS_BLOCK\n' + '\n'.join(lanes) + '\n END_BUS_BLOCK;'
def summary(self, indent=0):
return ['{}{:20} {:7} {:2} - {:<2}'.format(' '*indent, b.instance, b.dimensions, \
b.lsb + b.width-1, b.lsb) for b in self.brams]
def map(self):
m = ''.join('[{}]'.format(b.width) for b in self.brams)
if self.width == self.target_width:
m = success(m)
else:
m = m + error('(?)')
return m
class MemLayout(object):
def __init__(self):
self.rows = []
@property
def bmm(self):
first_bram = self.rows[0].brams[0]
size = first_bram.depth * first_bram.width
btype = 'unknown'
if size <= 1024*8:
btype = 'RAMB8'
elif size <= 1024*16:
btype = 'RAMB16'
elif size <= 1024*18:
btype = 'RAMB18'
elif size <= 1024*32:
btype = 'RAMB32'
elif size <= 1024*36:
btype = 'RAMB36'
blocks = [r.bus_block for r in self.rows]
# data2mem has some goofy way of counting "words" that changes depending on how
# many BRAMs are in a row
end_addr = (self.rows[-1].end+1)*len(self.rows[0].brams)-1
return 'ADDRESS_SPACE pb_rom {} WORD_ADDRESSING [0x{:08X}:0x{:08X}]\n'.format(btype, 0, end_addr) + \
'\n'.join(blocks) + '\nEND_ADDRESS_SPACE;'
@property
def instance_spec(self):
return ':'.join(','.join(b.instance for b in r.brams) for r in self.rows)
def add_row(self, row, relative_start=True):
if relative_start and len(self.rows) > 0:
row.start = row.start + self.rows[-1].end + 1
row.end = row.end + self.rows[-1].end + 1
self.rows.append(row)
def valid(self, depth, width):
rv = all(r.valid(width) for r in self.rows)
return True if rv and sum(r.depth for r in self.rows) == depth else False
def summary(self, indent=0):
for i, r in enumerate(self.rows):
yield _('{}Row {}: {:4} - {:<4} {}').format(' '*indent, i, r.start, r.end, r.map())
for s in r.summary(indent + 2):
yield s
if __name__ == '__main__':
main()