Serial Interface: Difference between revisions

From N64brew Wiki
Jump to navigation Jump to search
Content added Content deleted
m (Changed <> to [])
m (fix copypasta? SI is at 0480 not 0440)
Line 11: Line 11:
-n = Default value n at power on
-n = Default value n at power on
[x:y] = Specifies bits x to y, inclusively</pre>
[x:y] = Specifies bits x to y, inclusively</pre>
==== <span style="display:none;">0x0440 0000 - SI_DRAM_ADDR</code> ====
==== <span style="display:none;">0x0480 0000 - SI_DRAM_ADDR</code> ====
----
----
{{#invoke:Register table|head|550px|SI_DRAM_ADDR <code>0x0440 0000</code>}}
{{#invoke:Register table|head|550px|SI_DRAM_ADDR <code>0x0480 0000</code>}}
{{#invoke:Register table|row|31:24}}
{{#invoke:Register table|row|31:24}}
| U-0 || U-0 || U-0 || U-0 || U-0 || U-0 || U-0 || U-0
| U-0 || U-0 || U-0 || U-0 || U-0 || U-0 || U-0 || U-0
Line 35: Line 35:
| 23-0 | DRAM_ADDR[23:0] | RDRAM address used in SI DMAs
| 23-0 | DRAM_ADDR[23:0] | RDRAM address used in SI DMAs
}}
}}
==== <span style="display:none;">0x0440 0004 - SI_PIF_AD_RD64B</code> ====
==== <span style="display:none;">0x0480 0004 - SI_PIF_AD_RD64B</code> ====
----
----
{{#invoke:Register table|head|550px|SI_PIF_AD_RD64B <code>0x0440 0004</code>}}
{{#invoke:Register table|head|550px|SI_PIF_AD_RD64B <code>0x0480 0004</code>}}
{{#invoke:Register table|foot}}
{{#invoke:Register table|foot}}
'''TODO'''
'''TODO'''
==== <span style="display:none;">0x0440 0008 - SI_PIF_AD_WR4B</code> ====
==== <span style="display:none;">0x0480 0008 - SI_PIF_AD_WR4B</code> ====
----
----
{{#invoke:Register table|head|550px|SI_PIF_AD_WR4B <code>0x0440 0008</code>}}
{{#invoke:Register table|head|550px|SI_PIF_AD_WR4B <code>0x0480 0008</code>}}
{{#invoke:Register table|foot}}
{{#invoke:Register table|foot}}
'''TODO'''
'''TODO'''
==== <span style="display:none;">0x0440 0010 - SI_PIF_AD_WR64B</code> ====
==== <span style="display:none;">0x0480 0010 - SI_PIF_AD_WR64B</code> ====
----
----
{{#invoke:Register table|head|550px|SI_PIF_AD_WR64B <code>0x0440 0010</code>}}
{{#invoke:Register table|head|550px|SI_PIF_AD_WR64B <code>0x0480 0010</code>}}
{{#invoke:Register table|foot}}
{{#invoke:Register table|foot}}
'''TODO'''
'''TODO'''
==== <span style="display:none;">0x0440 0014 - SI_PIF_AD_RD4B</code> ====
==== <span style="display:none;">0x0480 0014 - SI_PIF_AD_RD4B</code> ====
----
----
{{#invoke:Register table|head|550px|SI_PIF_AD_RD4B <code>0x0440 0014</code>}}
{{#invoke:Register table|head|550px|SI_PIF_AD_RD4B <code>0x0480 0014</code>}}
{{#invoke:Register table|foot}}
{{#invoke:Register table|foot}}
'''TODO'''
'''TODO'''
==== <span style="display:none;">0x0440 0018 - SI_STATUS</code> ====
==== <span style="display:none;">0x0480 0018 - SI_STATUS</code> ====
----
----
{{#invoke:Register table|head|950px|SI_STATUS <code>0x0440 0018</code>}}
{{#invoke:Register table|head|950px|SI_STATUS <code>0x0480 0018</code>}}
{{#invoke:Register table|row|31:24}}
{{#invoke:Register table|row|31:24}}
| U-0 || U-0 || U-0 || U-0 || U-0 || U-0 || U-0 || U-0
| U-0 || U-0 || U-0 || U-0 || U-0 || U-0 || U-0 || U-0

Revision as of 21:14, 7 December 2021

The Serial Interface (or SI) is one of multiple I/O interfaces in the RCP, which is used to communicate with the PIF-NUS and in turn, Joybus devices.

Memory mapped registers are used to configure the Serial Interface and initiate DMA reads and writes. The base address for these registers is 0x0480 0000, also known as SI_BASE. However, because all memory accesses in the CPU are made using virtual addresses, the following addresses must be offset appropriately. For non-cached reads/writes, add 0xA000 0000 to the address. As an example, to directly write to the SI_DRAM_ADDR register, use address 0xA480 0000.

Registers

Table Notation:

R = Readable bit
W = Writable bit
U = Undefined/Unused bit
-n = Default value n at power on
[x:y] = Specifies bits x to y, inclusively

0x0480 0000 - SI_DRAM_ADDR


SI_DRAM_ADDR 0x0480 0000
31:24 U-0 U-0 U-0 U-0 U-0 U-0 U-0 U-0
23:16 RW-0 RW-0 RW-0 RW-0 RW-0 RW-0 RW-0 RW-0
DRAM_ADDR[23:16]
15:8 RW-0 RW-0 RW-0 RW-0 RW-0 RW-0 RW-0 RW-0
DRAM_ADDR[15:8]
7:0 RW-0 RW-0 RW-0 RW-0 RW-0 RW-0 RW-0 RW-0
DRAM_ADDR[7:0]
bit 31-24 Undefined: Initialized to 0
bit 23-0 DRAM_ADDR[23:0]: RDRAM address used in SI DMAs

0x0480 0004 - SI_PIF_AD_RD64B


SI_PIF_AD_RD64B 0x0480 0004

TODO

0x0480 0008 - SI_PIF_AD_WR4B


SI_PIF_AD_WR4B 0x0480 0008

TODO

0x0480 0010 - SI_PIF_AD_WR64B


SI_PIF_AD_WR64B 0x0480 0010

TODO

0x0480 0014 - SI_PIF_AD_RD4B


SI_PIF_AD_RD4B 0x0480 0014

TODO

0x0480 0018 - SI_STATUS


SI_STATUS 0x0480 0018
31:24 U-0 U-0 U-0 U-0 U-0 U-0 U-0 U-0
23:16 U-0 U-0 U-0 U-0 U-0 U-0 U-0 U-0
15:8 U-0 U-0 U-0 R-0 U-0 U-0 U-0 U-0
INTERRUPT DMA_STATE[3:0]
7:0 U-0 U-0 U-0 U-0 R-0 R-0 R-0 R-0
PCH_STATE[3:0] DMA_ERROR READ_PENDING IO_BUSY DMA_BUSY
bit 31-13 Undefined: Initialized to 0
bit 12 INTERRUPT: Copy of SI interrupt flag from MIPS Interface, which is also seen in the RCP Interrupt Cause register.
    Writing any value to SI_STATUS clears this bit in all three locations.
    SI interrupts occur when either a DMA or IO write finishes.
bit 11-8 DMA_STATE[3:0]: Internal-only (likely not readable). Non-zero values indicate activity.
bit 7-4 PCH_STATE[3:0]: Internal-only (likely not readable). Non-zero values indicate activity.
bit 3 DMA_ERROR: Set when overlapping DMA requests occur. Can only be cleared with a power reset.
bit 2 READ_PENDING: Set when an IO read occurs, while an IO or DMA write is in progress.
bit 1 IO_BUSY: Set when either an IO read or write is in progress.
bit 0 DMA_BUSY: Set when a read or write DMA, or an IO write, is in progress.