cbe2c306ff42a95f7f310bbd1ffb01e86b9f568f
[pinmux.git] / docs / AddingPeripherals.mdwn
1 # How to add a new peripheral
2
3 This document describes the process of adding a new peripheral to
4 the pinmux and auto-generator, through a worked example, adding
5 SDRAM.
6
7 # Creating the specifications
8
9 The tool is split into two halves that are separated by tab-separated
10 files. The first step is therefore to add a function that defines
11 the peripheral as a python function. That implies in turn that the
12 pinouts of the peripheral must be known. Looking at the BSV code
13 for the SDRAM peripheral, we find its interface is defined as follows:
14
15 interface Ifc_sdram_out;
16 (*always_enabled,always_ready*)
17 method Action ipad_sdr_din(Bit#(64) pad_sdr_din);
18 method Bit#(9) sdram_sdio_ctrl();
19 method Bit#(64) osdr_dout();
20 method Bit#(8) osdr_den_n();
21 method Bool osdr_cke();
22 method Bool osdr_cs_n();
23 method Bool osdr_ras_n ();
24 method Bool osdr_cas_n ();
25 method Bool osdr_we_n ();
26 method Bit#(8) osdr_dqm ();
27 method Bit#(2) osdr_ba ();
28 method Bit#(13) osdr_addr ();
29 interface Clock sdram_clk;
30 endinterface
31
32 So now we go to src/spec/pinfunctions.py and add a corresponding function
33 that returns a list of all of the required pin signals. However, we note
34 that it is a huge number of pins so a decision is made to split it into
35 groups: sdram1, sdram2 and sdram3. Firstly, sdram1, covering the base
36 functionality:
37
38 def sdram1(suffix, bank):
39 buspins = []
40 inout = []
41 for i in range(8):
42 pname = "SDRDQM%d*" % i
43 buspins.append(pname)
44 for i in range(8):
45 pname = "SDRD%d*" % i
46 buspins.append(pname)
47 inout.append(pname)
48 for i in range(12):
49 buspins.append("SDRAD%d+" % i)
50 for i in range(2):
51 buspins.append("SDRBA%d+" % i)
52 buspins += ['SDRCKE+', 'SDRRASn+', 'SDRCASn+', 'SDRWEn+',
53 'SDRCSn0++']
54 return (buspins, inout)
55
56 This function, if used on its own, would define an 8-bit SDRAM bus with
57 12-bit addressing. Checking off the names against the corresponding BSV
58 definition we find that most of them are straightforward. Outputs
59 must have a "+" after the name (in the python representation), inputs
60 must have a "-".
61
62 However we run smack into an interesting brick-wall with the in/out pins.
63 In/out pins which are routed through the same IO pad need a *triplet* of
64 signals: one input wire, one output wire and *one direction control wire*.
65 Here however we find that the SDRAM controller, which is a wrapper around
66 the opencores SDRAM controller, has a *banked* approach to direction-control
67 that will need to be dealt with, later. So we do *not* make the mistake
68 of adding 8 SDRDENx pins: the BSV code will need to be modified to
69 add 64 one-for-one enabling pins. We do not also make the mistake of
70 adding separate unidirectional "in" and separate unidirectional "out" signals
71 under different names, as the pinmux code is a *PAD* centric tool.
72
73 The second function extends the 8-bit data bus to 64-bits, and extends
74 the address lines to 13-bit wide:
75
76 def sdram3(suffix, bank):
77 buspins = []
78 inout = []
79 for i in range(12, 13):
80 buspins.append("SDRAD%d+" % i)
81 for i in range(8, 64):
82 pname = "SDRD%d*" % i
83 buspins.append(pname)
84 inout.append(pname)
85 return (buspins, inout)
86
87 In this way, alternative SDRAM controller implementations can use sdram1
88 on its own; implementors may add "extenders" (named sdram2, sdram4) that
89 cover extra functionality, and, interestingly, in a pinbank scenario,
90 the number of pins on any given GPIO bank may be kept to a sane level.
91
92 The next phase is to add the (now supported) peripheral to the list
93 of pinspecs at the bottom of the file, so that it can actually be used:
94
95 pinspec = (('IIS', i2s),
96 ('MMC', emmc),
97 ('FB', flexbus1),
98 ('FB', flexbus2),
99 ('SDR', sdram1),
100 ('SDR', sdram2),
101 ('SDR', sdram3), <---
102 ('EINT', eint),
103 ('PWM', pwm),
104 ('GPIO', gpio),
105 )
106
107 This gives a declaration that any time the function(s) starting with
108 "sdram" are used to add pins to a pinmux, it will be part of the
109 "SDR" peripheral. Note that flexbus is similarly subdivided into
110 two groups.
111
112 Note however that due to a naming convention issue, interfaces must
113 be declared with names that are lexicographically unique even in
114 subsets of their names. i.e two interfaces, one named "SD" which is
115 shorthand for SDMMC and another named "SDRAM" may *not* be added:
116 the first has to be the full "SDMMC" or renamed to "MMC".
117
118 # Adding the peripheral to a chip's pinmux specification
119
120 Next, we add the peripheral to an actual chip's specification. In this
121 case it is to be added to i\_class, so we open src/spec/i\_class.py. The
122 first thing to do is to add a single-mux (dedicated) bank of 92 pins (!)
123 which covers all of the 64-bit Data lines, 13 addresses and supporting
124 bank-selects and control lines. It is added as Bank "D", the next
125 contiguous bank:
126
127 def pinspec():
128 pinbanks = {
129 'A': (28, 4),
130 'B': (18, 4),
131 'C': (24, 1),
132 'D': (92, 1), <---
133 }
134 fixedpins = {
135 'CTRL_SYS': [
136
137 This declares the width of the pinmux to one (a dedicated peripheral
138 bank). Note in passing that A and B are both 4-entry.
139 Next, an SDRAM interface is conveniently added to the chip's pinmux
140 with two simple lines of code:
141
142 ps.gpio("", ('B', 0), 0, 0, 18)
143 ps.flexbus1("", ('B', 0), 1, spec=flexspec)
144
145 ps.flexbus2("", ('C', 0), 0)
146
147 ps.sdram1("", ('D', 0), 0) <--
148 ps.sdram3("", ('D', 35), 0) <--
149
150 Note that the first argument is blank, indicating that this is the only
151 SDRAM interface to be added. If more than one SDRAM interface is desired
152 they would be numbered from 0 and identified by their suffix. The second
153 argument is a tuple of (Bank Name, Bank Row Number), and the third argument
154 is the pinmux column (which in this case must be zero).
155
156 At the top level the following command is then run:
157
158 $ python src/pinmux_generator.py -o i_class -s i_class
159
160 The output may be found in the ./i\_class subdirectory, and it is worth
161 examining the i\_class.mdwn file. A table named "Bank D" will have been
162 created and it is worth just showing the first few entries here:
163
164 | Pin | Mux0 | Mux1 | Mux2 | Mux3 |
165 | --- | ----------- | ----------- | ----------- | ----------- |
166 | 70 | D SDR_SDRDQM0 |
167 | 71 | D SDR_SDRDQM1 |
168 | 72 | D SDR_SDRDQM2 |
169 | 73 | D SDR_SDRDQM3 |
170 | 74 | D SDR_SDRDQM4 |
171 | 75 | D SDR_SDRDQM5 |
172 | 76 | D SDR_SDRDQM6 |
173 | 77 | D SDR_SDRDQM7 |
174 | 78 | D SDR_SDRD0 |
175 | 79 | D SDR_SDRD1 |
176 | 80 | D SDR_SDRD2 |
177 | 81 | D SDR_SDRD3 |
178 | 82 | D SDR_SDRD4 |
179 | 83 | D SDR_SDRD5 |
180 | 84 | D SDR_SDRD6 |
181 | 85 | D SDR_SDRD7 |
182 | 86 | D SDR_SDRAD0 |
183 | 87 | D SDR_SDRAD1 |
184
185 Returning to the definition of sdram1 and sdram3, this table clearly
186 corresponds to the functions in src/spec/pinfunctions.py which is
187 exactly what we want. It is however extremely important to verify.
188
189 Lastly, the peripheral is a "fast" peripheral, i.e. it must not
190 be added to the "slow" peripherals AXI4-Lite Bus, so must be added
191 to the list of "fast" peripherals, here:
192
193 ps = PinSpec(pinbanks, fixedpins, function_names,
194 ['lcd', 'jtag', 'fb', 'sdr']) <--
195
196 # Bank A, 0-27
197 ps.gpio("", ('A', 0), 0, 0, 28)
198
199 This basically concludes the first stage of adding a peripheral to
200 the pinmux / autogenerator tool. It allows peripherals to be assessed
201 for viability prior to actually committing the engineering resources
202 to their deployment.
203
204 # Adding the code auto-generators.
205
206 With the specification now created and well-defined (and now including
207 the SDRAM interface), the next completely separate phase is to auto-generate
208 the code that will drop an SDRAM instance onto the fabric of the SoC.
209
210 This particular peripheral is classified as a "Fast Bus" peripheral.
211 "Slow" peripherals will need to be the specific topic of an alternative
212 document, however the principles are the same.
213
214 The first requirement is that the pins from the peripheral side be connected
215 through to IO cells. This can be verified by running the pinmux code
216 generator (to activate "default" behaviour), just to see what happens:
217
218 $ python src/pinmux_generator.py -o i_class
219
220 Files are auto-generated in ./i\_class/bsv\_src and it is recommended
221 to examine the pinmux.bsv file in an editor, and search for occurrences
222 of the string "sdrd63". It can clearly be seen that an interface
223 named "PeripheralSideSDR" has been auto-generated:
224
225 // interface declaration between SDR and pinmux
226 (*always_ready,always_enabled*)
227 interface PeripheralSideSDR;
228 interface Put#(Bit#(1)) sdrdqm0;
229 interface Put#(Bit#(1)) sdrdqm1;
230 interface Put#(Bit#(1)) sdrdqm2;
231 interface Put#(Bit#(1)) sdrdqm3;
232 interface Put#(Bit#(1)) sdrdqm4;
233 interface Put#(Bit#(1)) sdrdqm5;
234 interface Put#(Bit#(1)) sdrdqm6;
235 interface Put#(Bit#(1)) sdrdqm7;
236 interface Put#(Bit#(1)) sdrd0_out;
237 interface Put#(Bit#(1)) sdrd0_outen;
238 interface Get#(Bit#(1)) sdrd0_in;
239 ....
240 ....
241 endinterface
242
243 Note that for the data lines, that where in the sdram1 specification function
244 the signals were named "SDRDn+, out, out-enable *and* in interfaces/methods
245 have been created, as these will be *directly* connected to the I/O pads.
246
247 Further down the file we see the *actual* connection to the I/O pad (cell).
248 An example:
249
250 // --------------------
251 // ----- cell 161 -----
252
253 // output muxer for cell idx 161
254 cell161_mux_out=
255 wrsdr_sdrd63_out;
256
257 // outen muxer for cell idx 161
258 cell161_mux_outen=
259 wrsdr_sdrd63_outen; // bi-directional
260
261 // priority-in-muxer for cell idx 161
262
263 rule assign_wrsdr_sdrd63_in_on_cell161;
264 wrsdr_sdrd63_in<=cell161_mux_in;
265 endrule
266
267 Here, given that this is a "dedicated" cell (with no muxing), we have
268 *direct* assignment of all three signals (in, out, outen). 2-way, 3-way
269 and 4-way muxing creates the required priority-muxing for inputs and
270 straight-muxing for outputs, however in this instance, a deliberate
271 pragmatic decision is being taken not to put 92 pins of 133mhz+ signalling
272 through muxing.
273
274 In examining the slow\_peripherals.bsv file, there should at this stage
275 be no sign of an SDRAM peripheral having been added, at all. This is
276 because it is missing from the peripheral\_gen side of the tool.
277
278 However, as the slow\_peripherals module takes care of the IO cells
279 (because it contains a declared and configured instance of the pinmux
280 package), signals from the pinmux PeripheralSideSDR instance need
281 to be passed *through* the slow peripherals module as an external
282 interface. This will happen automatically once a code-generator class
283 is added.
284
285 So first, we must identify the nearest similar class. FlexBus looks
286 like a good candidate, so we take a copy of src/bsv/peripheral\_gen/flexbus.py
287 called sdram.py. The simplest next step is to global/search/replace
288 "flexbus" with "sdram", and for peripheral instance declaration replace
289 "fb" with "sdr". At this phase, despite knowing that it will
290 auto-generate the wrong code, we add it as a "supported" peripheral
291 at the bottom of src/bsv/peripheral\_gen/base.py, in the "PFactory"
292 (Peripheral Factory) class:
293
294 from gpio import gpio
295 from rgbttl import rgbttl
296 from flexbus import flexbus
297 from sdram import sdram <--
298
299 for k, v in {'uart': uart,
300 'rs232': rs232,
301 'sdr': sdram,
302 'twi': twi,
303 'quart': quart,
304
305 Note that the name "SDR" matches with the prefix used in the pinspec
306 declaration, back in src/spec/pinfunctions.py, except lower-cased. Once this
307 is done, and the auto-generation tool re-run, examining the
308 slow\_peripherals.bsv file again shows the following (correct) and only
309 the following (correct) additions:
310
311 method Bit#(1) quart0_intr;
312 method Bit#(1) quart1_intr;
313 interface GPIO_config#(28) pad_configa;
314 interface PeripheralSideSDR sdr0; <--
315 interface PeripheralSideFB fb0;
316
317 ....
318 ....
319 interface iocell_side=pinmux.iocell_side;
320 interface sdr0 = pinmux.peripheral_side.sdr; <--
321 interface fb0 = pinmux.peripheral_side.fb;
322
323 These automatically-generated declarations are sufficient to "pass through"
324 the SDRAM "Peripheral Side", which as we know from examination of the code
325 is directly connected to the relevant IO pad cells, so that the *actual*
326 peripheral may be declared in the "fast" fabric and connected up to the
327 relevant and required "fast" bus.
328
329 Now we can begin the process of systematically inserting the correct
330 "voodoo magic" incantations that, as far as this auto-generator tool is
331 concerned, are just bits of ASCII text. In this particular instance, an
332 SDRAM peripheral happened to already be *in* the SoC's BSV source code,
333 such that the process of adding it to the tool is primarily one of
334 *conversion*.
335
336 **Please note that it is NOT recommended to do two tasks at once.
337 It is strongly recommended to add any new peripheral to a pre-existing
338 verified project, manually, by hand, and ONLY then to carry out a
339 conversion process to have this tool understand how to auto-generate
340 the fabric**
341
342 So examining the i\_class socgen.bsv file, we also open up
343 src/bsv/bsv\_lib/soc\_template.bsv in side-by-side windows of maximum
344 80 characters in width each, and *respect the coding convention for
345 this exact purpose*, can easily fit two such windows side-by-side
346 *as well as* a third containing the source code files that turn that
347 same template into its corresponding output.
348
349 We can now begin by searching for strings "SDRAM" and "sdr" in both
350 the template and the auto-generated socgen.bsv file. The first such
351 encounter is the import, in the template:
352
353 `ifdef BOOTROM
354 import BootRom ::*;
355 `endif
356 `ifdef SDRAM <-- xxxx
357 import sdr_top :: *; <-- xxxx
358 `endif <-- xxxx
359 `ifdef BRAM
360
361 This we can **remove**, and drop the corresponding code-fragment into
362 the sdram slowimport function:
363
364 class sdram(PBase):
365
366 def slowimport(self):
367 return "import sdr_top::*;" <--
368
369 def num_axi_regs32(self):
370
371 Now we re-run the auto-generator tool and confirm that, indeed, the
372 ifdef'd code is gone and replaced with an unconditional import:
373
374 import mqspi :: *;
375 import sdr_top::*; <--
376 import Uart_bs :: *;
377 import RS232_modified::*;
378 import mspi :: *;
379
380 Progress! Next, we examine the instance declaration clause. Remember
381 that we cut/paste the flexbus class, so we are expecting to find code
382 that declares the sdr0 instance as a FlexBus peripheral. We are
383 also looking for the hand-created code that is to be *replaced*. Sure enough:
384
385 AXI4_Slave_to_FlexBus_Master_Xactor_IFC #(`PADDR, `DATA, `USERSPACE)
386 sdr0 <- mkAXI4_Slave_to_FlexBus_Master_Xactor; <--
387 AXI4_Slave_to_FlexBus_Master_Xactor_IFC #(`PADDR, `DATA, `USERSPACE)
388 fb0 <- mkAXI4_Slave_to_FlexBus_Master_Xactor;
389 ...
390 ...
391 `ifdef BOOTROM
392 BootRom_IFC bootrom <-mkBootRom;
393 `endif
394 `ifdef SDRAM <--
395 Ifc_sdr_slave sdram<- mksdr_axi4_slave(clk0); <--
396 `endif <--
397
398 So, the mksdr\_axi4\_slave call we *remove* from the template and cut/paste
399 it into the sdram class's mkfast_peripheral function, making sure to
400 substitute the hard-coded instance name "sdram" with a python-formatted
401 template that can insert numerical instance identifiers, should it ever
402 be desired that there be more than one SDRAM peripheral put into a chip:
403
404 class sdram(PBase):
405
406 ...
407 ...
408 def mkfast_peripheral(self):
409 return "Ifc_sdr_slave sdr{0} <- mksdr_axi4_slave(clk0);"
410
411 Re-run the tool and check that the correct-looking code has been created:
412
413 Ifc_sdr_slave sdr0 <- mksdr_axi4_slave(clk0); <--
414 AXI4_Slave_to_FlexBus_Master_Xactor_IFC #(`PADDR, `DATA, `USERSPACE)
415 fb0 <- mkAXI4_Slave_to_FlexBus_Master_Xactor;
416 Ifc_rgbttl_dummy lcd0 <- mkrgbttl_dummy();
417
418 The next thing to do: searching for the string "sdram\_out" shows that the
419 original hand-generated code contains (contained) a declaration of the
420 SDRAM Interface, presumably to which, when compiling to run on an FPGA,
421 the SDRAM interface would be connected at the top level. Through this
422 interface, connections would be done *by hand* to the IO pads, whereas
423 now they are to be connected *automatically* (on the peripheral side)
424 to the IO pads in the pinmux. However, at the time of writing this is
425 not fully understood by the author, so the fastifdecl and extfastifinstance
426 functions are modified to generate the correct output but the code is
427 *commented out*, and the corresponding manual declarations of sdram_out
428 removed.
429
430 def extfastifinstance(self, name, count):
431 return "// TODO" + self._extifinstance(name, count, "_out", "", True,
432 ".if_sdram_out")
433
434 def fastifdecl(self, name, count):
435 return "// (*always_ready*) interface " + \
436 "Ifc_sdram_out sdr{0}_out;".format(count)
437
438 Next, again searching for signs of the "hand-written" code, we encounter
439 the fabric connectivity, which wires the SDRAM to the AXI4. We note however
440 that there is not just one AXI slave device but *two*: one for the SDRAM
441 itself and one for *configuring* the SDRAM. We therefore need to be
442 quite careful about assigning these, as will be subsequently explained.
443 First however, the two AXI4 slave interfaces of this peripheral are
444 declared:
445
446 class sdram(PBase):
447
448 ...
449 ...
450 def _mk_connection(self, name=None, count=0):
451 return ["sdr{0}.axi4_slave_sdram",
452 "sdr{0}.axi4_slave_cntrl_reg"]
453
454 Note that, again, in case multiple instances are ever to be added, the
455 python "format" string "{0}" is inserted so that it can be substituted
456 with the numerical identifier suffix. Also note that the order
457 of declaration of these two AXI4 slave is **important**.