Adding a page on additional info regarding JTAG/pinmux test code
authorAndrey Miroshnikov <andrey@technepisteme.xyz>
Sat, 8 Jan 2022 17:51:16 +0000 (17:51 +0000)
committerAndrey Miroshnikov <andrey@technepisteme.xyz>
Sat, 8 Jan 2022 17:51:16 +0000 (17:51 +0000)
docs/pinmux.mdwn
docs/pinmux/temp_pinmux_info.mdwn [new file with mode: 0644]

index 8d14217801aa54957d88a5c0302a0ded7c531161..2ea80eecb1e79860fc66ad3715e3cc86d1ba13ae 100644 (file)
@@ -7,6 +7,7 @@ Links:
 * <https://ftp.libre-soc.org/Pin_Control_Subsystem_Overview.pdf>
 * <https://bugs.libre-soc.org/show_bug.cgi?id=50>
 * <https://git.libre-soc.org/?p=c4m-jtag.git;a=tree;hb=HEAD>
+* Extra info: [[/docs/pinmux/temp_pinmux_info]]
 
 Managing IO on an ASIC is nowhere near as simple as on an FPGA.
 An FPGA has built-in IO Pads, the wires terminate inside an
diff --git a/docs/pinmux/temp_pinmux_info.mdwn b/docs/pinmux/temp_pinmux_info.mdwn
new file mode 100644 (file)
index 0000000..6971b4e
--- /dev/null
@@ -0,0 +1,51 @@
+# Progress on Pinmux, IO Pads, and JTAG Boundary scan (Temporary page)
+(This is a temporary page for organising current work on the above.)
+
+Links:
+
+* <https://bugs.libre-soc.org/show_bug.cgi?id=50>
+* <https://git.libre-soc.org/?p=pinmux.git;a=blob;f=src/spec/testing_stage1.py>
+* <https://git.libre-soc.org/?p=c4m-jtag.git>
+* Main page on pinmux: [[/docs/pinmux]]
+
+The tasks initially set out by Luke in 2019 (bug 50 description):
+
+* peripheral multiplexing
+* SoC-to-peripheral interconnect auto-generation
+* auto-creation of peripheral memory-address locations and suitable linux header
+* auto-creation of linux kernel header files for GPIO pinmux layout
+* auto-creation of IO ring corona for ASICs
+* auto-generation and allocation of IRQs and IRQ connectivity
+* auto-generation of Technical Reference Manual sections
+
+# Definitions
+Useful definitions required for understanding the undertaken tasks.
+
+## JTAG Boundary Scan (BS) chain
+Essentially a combination of a multiplexer and shift register. The BS chain allows core signals to connect straight to the ASIC pads, or allow an external JTAG device to individually control the core inputs and pad outputs via the shift register. 
+## Core
+Refers to peripherals coming from the ASIC (I2C, SPI, UART, GPIO, etc.). Core signals come from the the actual HDL of the peripherals, and connect to the JTAG Boundary Scan chain.
+## Pad/s
+Refers to the ASIC pads which are routed out to the outside world. These pads are what a chip user can interact with directly (for good or bad...).
+## Pinmux
+Pin multiplexer allows ASIC pads to support a range of functions (although only one at a time per pad). Each function is allocated to a "bank", and the selected bank can be configured by the user.
+
+A pinmux is an absolute must when the amount of functionality (or peripheral signals) greatly exceed the available number of pins on a package. Also, pinmuxing allows to select packages with smaller pincounts, thus producing cheaper (and higher yield) chips.
+
+For example: A pad can be I2C SDA on bank0, a GPIO on bank1, a UART RX on bank2. By setting the bank select to 1, the pad can act as a GPIO (input or output).
+
+# Current progress on code for testing periph pin generation and JTAG in "testing_stage1.py":
+
+## Dummy pinset
+A test pinset that specifies which peripherals are to be added. In this case, four GPIOs, one UART,  one I2C.
+
+## Resource signal creation
+"create_resources()" function parses a given pinset (the dummy one in this case), and creates a resources list containing the peripherals (with nmigen subsignals such as sda, gpio_o/i/oe etc.).
+
+Within this function, Resource.family(), JTAGResource(), UARTResource(), I2CResource() create the signals with correct direction (input/output/inout).
+
+The returned "resources" list is used in....?
+
+## Blinker test module
+Contains a JTAG module from Chips4Makers (c4m-jtag ?). The JTAG module is the backbone of the Blinker test module, because from it the Boundary Scan chain is produced.
+By using "jtag.request('i2c')" (or 'uart', 'gpio', etc.), the Boundary Scan chain is extended. Subsignals used to connect the peripherals from the core"
\ No newline at end of file