whoops use bsv comments not python comments!
[pinmux.git] / src / bsv / interface_decl.py
1 import os.path
2
3 try:
4 from UserDict import UserDict
5 except ImportError:
6 from collections import UserDict
7
8 from bsv.wire_def import generic_io # special case
9 from bsv.wire_def import muxwire # special case
10
11
12 class Pin(object):
13 """ pin interface declaration.
14 * name is the name of the pin
15 * ready, enabled and io all create a (* .... *) prefix
16 * action changes it to an "in" if true
17 """
18
19 def __init__(self, name,
20 ready=True,
21 enabled=True,
22 io=False,
23 action=False,
24 bitspec=None):
25 self.name = name
26 self.ready = ready
27 self.enabled = enabled
28 self.io = io
29 self.action = action
30 self.bitspec = bitspec if bitspec else 'Bit#(1)'
31
32 def ifacefmt(self, fmtfn):
33 res = ' '
34 status = []
35 if self.ready:
36 status.append('always_ready')
37 if self.enabled:
38 status.append('always_enabled')
39 if self.io:
40 status.append('result="io"')
41 if status:
42 res += '(*'
43 res += ','.join(status)
44 res += '*)'
45 res += " method "
46 if self.io:
47 res += "\n "
48 name = fmtfn(self.name)
49 if self.action:
50 res += " Action "
51 res += name
52 res += ' (%s in)' % self.bitspec
53 else:
54 res += " %s " % self.bitspec
55 res += name
56 res += ";"
57 return res
58
59 def ifacedef(self, fmtoutfn, fmtinfn, fmtdecfn):
60 res = ' method '
61 if self.action:
62 fmtname = fmtinfn(self.name)
63 res += "Action "
64 res += fmtdecfn(self.name)
65 res += '(%s in);\n' % self.bitspec
66 res += ' %s<=in;\n' % fmtname
67 res += ' endmethod'
68 else:
69 fmtname = fmtoutfn(self.name)
70 res += "%s=%s;" % (self.name, fmtname)
71 return res
72
73 def wirefmt(self, fmtoutfn, fmtinfn, fmtdecfn):
74 res = ' Wire#(%s) ' % self.bitspec
75 if self.action:
76 res += '%s' % fmtinfn(self.name)
77 else:
78 res += '%s' % fmtoutfn(self.name)
79 res += "<-mkDWire(0);"
80 return res
81
82
83 class Interface(object):
84 """ create an interface from a list of pinspecs.
85 each pinspec is a dictionary, see Pin class arguments
86 single indicates that there is only one of these, and
87 so the name must *not* be extended numerically (see pname)
88 """
89
90 def __init__(self, ifacename, pinspecs, ganged=None, single=False):
91 self.ifacename = ifacename
92 self.ganged = ganged or {}
93 self.pins = []
94 self.pinspecs = pinspecs
95 self.single = single
96 for p in pinspecs:
97 _p = {}
98 _p.update(p)
99 if p.get('outen') is True: # special case, generate 3 pins
100 del _p['outen']
101 for psuffix in ['out', 'outen', 'in']:
102 _p['name'] = "%s_%s" % (self.pname(p['name']), psuffix)
103 _p['action'] = psuffix != 'in'
104 self.pins.append(Pin(**_p))
105 else:
106 _p['name'] = self.pname(p['name'])
107 self.pins.append(Pin(**_p))
108
109 def getifacetype(self, name):
110 for p in self.pinspecs:
111 fname = "%s_%s" % (self.ifacename, p['name'])
112 #print "search", self.ifacename, name, fname
113 if fname == name:
114 if p.get('action'):
115 return 'out'
116 elif p.get('outen'):
117 return 'inout'
118 return 'input'
119 return None
120
121 def pname(self, name):
122 """ generates the interface spec e.g. flexbus_ale
123 if there is only one flexbus interface, or
124 sd{0}_cmd if there are several. string format
125 function turns this into sd0_cmd, sd1_cmd as
126 appropriate. single mode stops the numerical extension.
127 """
128 if self.single:
129 return '%s_%s' % (self.ifacename, name)
130 return '%s{0}_%s' % (self.ifacename, name)
131
132 def busfmt(self, *args):
133 """ this function creates a bus "ganging" system based
134 on input from the {interfacename}.txt file.
135 only inout pins that are under the control of the
136 interface may be "ganged" together.
137 """
138 if not self.ganged:
139 return ''
140 #print self.ganged
141 res = []
142 for (k, pnames) in self.ganged.items():
143 name = self.pname('%senable' % k).format(*args)
144 decl = 'Bit#(1) %s = 0;' % name
145 res.append(decl)
146 ganged = []
147 for p in self.pinspecs:
148 if p['name'] not in pnames:
149 continue
150 pname = self.pname(p['name']).format(*args)
151 if p.get('outen') is True:
152 outname = self.ifacefmtoutfn(pname)
153 ganged.append("%s_outen" % outname) # match wirefmt
154
155 gangedfmt = '{%s} = duplicate(%s);'
156 res.append(gangedfmt % (',\n '.join(ganged), name))
157 return '\n'.join(res) + '\n\n'
158
159 def wirefmt(self, *args):
160 res = '\n'.join(map(self.wirefmtpin, self.pins)).format(*args)
161 res += '\n'
162 for p in self.pinspecs:
163 name = self.pname(p['name'])
164 typ = self.getifacetype(name.format(""))
165 name = name.format(*args)
166 res += " // declare %s_io, set up as type '%s'\n" % (name, typ)
167 res += " GenericIOType %s_io = GenericIOType{\n" % name
168 params = []
169 if typ == 'inout':
170 outname = self.ifacefmtoutfn(name)
171 params.append('outputval:%s_out,' % outname)
172 params.append('output_en:%s_outen,' % outname) # match busfmt
173 params.append('input_en:~%s_outen,' % outname)
174 elif typ == 'out':
175 outname = self.ifacefmtoutfn(name)
176 params.append('outputval:%s,' % outname)
177 params.append('output_en:1,')
178 params.append('input_en:0,')
179 else: # input
180 params.append('outputval:0,')
181 params.append('output_en:0,')
182 params.append('input_en:1,')
183 for param in params:
184 res += ' %s\n' % param
185 res += ' };\n'
186 return '\n' + res
187
188 def ifacefmt(self, *args):
189 res = '\n'.join(map(self.ifacefmtdecpin, self.pins)).format(*args)
190 return '\n' + res
191
192 def ifacefmtdecfn(self, name):
193 return name
194
195 def ifacefmtdecfn2(self, name):
196 return name
197
198 def ifacefmtoutfn(self, name):
199 return "wr%s" % name
200
201 def ifacefmtinfn(self, name):
202 return "wr%s" % name
203
204 def wirefmtpin(self, pin):
205 return pin.wirefmt(self.ifacefmtoutfn, self.ifacefmtinfn,
206 self.ifacefmtdecfn2)
207
208 def ifacefmtdecpin(self, pin):
209 return pin.ifacefmt(self.ifacefmtdecfn)
210
211 def ifacefmtpin(self, pin):
212 return pin.ifacedef(self.ifacefmtoutfn, self.ifacefmtinfn,
213 self.ifacefmtdecfn2)
214
215 def ifacedef(self, *args):
216 res = '\n'.join(map(self.ifacefmtpin, self.pins))
217 res = res.format(*args)
218 return '\n' + res + '\n'
219
220
221 class MuxInterface(Interface):
222
223 def wirefmt(self, *args):
224 return muxwire.format(*args)
225
226
227 class IOInterface(Interface):
228
229 def ifacefmtoutfn(self, name):
230 """ for now strip off io{0}_ part """
231 return "cell{0}_mux_out"
232
233 def ifacefmtinfn(self, name):
234 return "cell{0}_mux_in"
235
236 def wirefmt(self, *args):
237 return generic_io.format(*args)
238
239
240 class Interfaces(UserDict):
241 """ contains a list of interface definitions
242 """
243
244 def __init__(self, pth):
245 self.pth = pth
246 self.ifacecount = []
247 UserDict.__init__(self, {})
248 ift = 'interfaces.txt'
249 if pth:
250 ift = os.path.join(pth, ift)
251 with open(ift, 'r') as ifile:
252 for ln in ifile.readlines():
253 ln = ln.strip()
254 ln = ln.split("\t")
255 name = ln[0]
256 count = int(ln[1])
257 spec, ganged = self.read_spec(pth, name)
258 iface = Interface(name, spec, ganged, count == 1)
259 self.ifaceadd(name, count, iface)
260
261 def getifacetype(self, fname):
262 # finds the interface type, e.g sd_d0 returns "inout"
263 for iface in self.values():
264 typ = iface.getifacetype(fname)
265 if typ:
266 return typ
267 return None
268
269 def ifaceadd(self, name, count, iface, at=None):
270 if at is None:
271 at = len(self.ifacecount)
272 self.ifacecount.insert(at, (name, count))
273 self[name] = iface
274
275 def read_spec(self, pth, name):
276 spec = []
277 ganged = {}
278 fname = '%s.txt' % name
279 if pth:
280 ift = os.path.join(pth, fname)
281 with open(ift, 'r') as sfile:
282 for ln in sfile.readlines():
283 ln = ln.strip()
284 ln = ln.split("\t")
285 name = ln[0]
286 d = {'name': name}
287 if ln[1] == 'out':
288 d['action'] = True
289 elif ln[1] == 'inout':
290 d['outen'] = True
291 if len(ln) == 3:
292 bus = ln[2]
293 if bus not in ganged:
294 ganged[bus] = []
295 ganged[bus].append(name)
296 spec.append(d)
297 return spec, ganged
298
299 def ifacedef(self, f, *args):
300 for (name, count) in self.ifacecount:
301 for i in range(count):
302 f.write(self.data[name].ifacedef(i))
303
304 def busfmt(self, f, *args):
305 f.write("import BUtils::*;\n\n")
306 for (name, count) in self.ifacecount:
307 for i in range(count):
308 bf = self.data[name].busfmt(i)
309 f.write(bf)
310
311 def ifacefmt(self, f, *args):
312 comment = '''
313 // interface declaration between %s-{0} and pinmux'''
314 for (name, count) in self.ifacecount:
315 for i in range(count):
316 c = comment % name.upper()
317 f.write(c.format(i))
318 f.write(self.data[name].ifacefmt(i))
319
320 def wirefmt(self, f, *args):
321 comment = '\n // following wires capture signals ' \
322 'to IO CELL if %s-{0} is\n' \
323 ' // allotted to it'
324 for (name, count) in self.ifacecount:
325 for i in range(count):
326 c = comment % name
327 f.write(c.format(i))
328 f.write(self.data[name].wirefmt(i))
329
330
331 # ========= Interface declarations ================ #
332
333 mux_interface = MuxInterface('cell', [{'name': 'mux', 'ready': False,
334 'enabled': False,
335 'bitspec': '{1}', 'action': True}])
336
337 io_interface = IOInterface(
338 'io',
339 [{'name': 'cell', 'enabled': False, 'bitspec': 'GenericIOType'},
340 {'name': 'inputval', 'action': True, 'io': True}, ])
341
342 # == Peripheral Interface definitions == #
343 # these are the interface of the peripherals to the pin mux
344 # Outputs from the peripherals will be inputs to the pinmux
345 # module. Hence the change in direction for most pins
346
347 # ======================================= #
348
349 # basic test
350 if __name__ == '__main__':
351
352 uartinterface_decl = Interface('uart',
353 [{'name': 'rx'},
354 {'name': 'tx', 'action': True},
355 ])
356
357 twiinterface_decl = Interface('twi',
358 [{'name': 'sda', 'outen': True},
359 {'name': 'scl', 'outen': True},
360 ])
361
362 def _pinmunge(p, sep, repl, dedupe=True):
363 """ munges the text so it's easier to compare.
364 splits by separator, strips out blanks, re-joins.
365 """
366 p = p.strip()
367 p = p.split(sep)
368 if dedupe:
369 p = filter(lambda x: x, p) # filter out blanks
370 return repl.join(p)
371
372 def pinmunge(p):
373 """ munges the text so it's easier to compare.
374 """
375 # first join lines by semicolons, strip out returns
376 p = p.split(";")
377 p = map(lambda x: x.replace('\n', ''), p)
378 p = '\n'.join(p)
379 # now split first by brackets, then spaces (deduping on spaces)
380 p = _pinmunge(p, "(", " ( ", False)
381 p = _pinmunge(p, ")", " ) ", False)
382 p = _pinmunge(p, " ", " ")
383 return p
384
385 def zipcmp(l1, l2):
386 l1 = l1.split("\n")
387 l2 = l2.split("\n")
388 for p1, p2 in zip(l1, l2):
389 print (repr(p1))
390 print (repr(p2))
391 print ()
392 assert p1 == p2
393
394 ifaces = Interfaces()
395
396 ifaceuart = ifaces['uart']
397 print (ifaceuart.ifacedef(0))
398 print (uartinterface_decl.ifacedef(0))
399 assert ifaceuart.ifacedef(0) == uartinterface_decl.ifacedef(0)
400
401 ifacetwi = ifaces['twi']
402 print (ifacetwi.ifacedef(0))
403 print (twiinterface_decl.ifacedef(0))
404 assert ifacetwi.ifacedef(0) == twiinterface_decl.ifacedef(0)