remove extraneous debug prints
[pinmux.git] / README.md
1 * Existing pinmux.bsv for testing purpose:
2 ```
3 cd src/test_bsv
4 make
5 ```
6
7 * Pinmux generator help:
8 ```
9 python src/pinmux_generator.py -h
10 ```
11
12 * To create a microtest directory and bsv files:
13 ```
14 python src/pinmux_generator.py -v -o microtest -s microtest
15 python src/pinmux_generator.py -v -o microtest
16 ```
17
18 * To create a minitest directory and bsv files:
19 ```
20 python src/pinmux_generator.py -v -o minitest -s minitest
21 python src/pinmux_generator.py -v -o minitest
22 ```
23
24 * Existing specifications in 'src/spec/' : m_class, i_class, c_class, microtest, minitest
25
26 * Testing pinmux using cocotb:
27 ```
28 cd src/test_bsv/tests
29 ```
30 ---
31
32 ### Steps to generate **custom pinmux.bsv** :
33 1 . Let's say that the pinmap which we wish to implement is :
34 ![sample_pinmap](./figure/sample_pinmap.jpg)
35
36 The default order for UART and SPI with pinmux repository is :
37 ```
38 * UART : tx -> rx
39 ```
40 ```
41 * MSPI: ck -> nss -> io0 -> io1
42 ```
43 After generating minitest, this order can be observed in uart.txt, mspi.txt, etc.
44
45 2 . We will rearrange the order of pins of our pinmap to confine to default order :
46 After reordering, it will look like:
47 ![correct_order](./figure/ordered.png)
48
49 3. How to specify this table to generate pinmux.bsv?
50 In pinmux repository, we write the specifications in 'src/spec' directory, like default minitest.py.
51 For this case, we will simply modify original minitest.py to suit our table.
52 * We have only one bank here with 16 rows. So : 'A' : (16,4) in pinbanks.
53 * In function names, keep only the one which are present in table and update the id as per table.
54 * Specifying entry in the table:
55 1) ps.gpio("" , ('A', 12) , 0 , 7 , 2 )
56 There are 5 arguments passed. 2nd argument specifies bank and pin number. 3rd entry specifies the mux select line (which column?). 4th entry specifies the GPIO id. 5th entry specifies the collection of entries. Here, this will reflect to (GPIOA A7) at pin number 12, and (GPIOA A8) at pin number 13.
57
58 2) ps.mspi("2", ('A', 7), 1)
59 There are 4 arguments passed. 1st argument specifies the id of MSPI. 2nd argument specifies the bank and pin number. 3rd argument specifies the mux selection line. Here this will reflect as:
60 pin number mux1
61 7 A MSPI2 CK
62 8 A MSPI2 NSS
63 9 A MSPI2 IO0
64 10 A MSPI2 IO1
65
66 3) ps.uart(" 3 ", ( 'A', 2 ) , 1 )
67 Here, argument meaning is same as (2)
68
69 4) ps.pwm("" , ('A', 10) , 2 , 5 , 1 )
70 Here, argument meaning is same as (1)
71
72
73 The complete python file for this table is : src/spec/minitest.py .
74 Original minitest: src/spec/minitest_old.py
75
76
77