Reality Display Processor/Interface

From N64brew Wiki
Jump to navigation Jump to search

The RDP interface is the set of registers that allow to control the RDP and make it perform the required rasterization jobs.

RDP executes a stream of commands called primitives that are sent to it via DMA. The RDP interface allows to initiate and monitor the DMA transfers to RDP, and to query the current status of RDP.

DMA transfers

DMA transfers allow to send a sequence of primitives from RDRAM or DMEM to the RDP. When a DMA is triggered the RDP will start fetching the primitives in small batches within an internal command buffer, from which they will get run; the DMA will then wait for space to become available in this internal command buffer before more data can be transferred.

Primitives can be stored in either RDRAM or DMEM. Bit 0 of DP_STATUS is used to select whether RDRAM or DMEM is used. When reading data from DMEM, the RDP uses an internal bus in the RCP called XBUS, so normally "using XBUS" is a shorthand expression for "programming the RDP to fetch primitives from DMEM". Notice that both VR4300 and RSP can program the RDP to either use XBUS or not; there is no correlation between the CPU programming the RDP and the data source being used.

RDP is a highly parallel unit. There is thus no correlation between a DMA being finished and the respective primitives being finished (that is, pixels drawn into the framebuffer). Instead, the end of DMA can just be used as a signal that the RDRAM/DMEM buffer that stores the primitives can be recycled, but no further information can be deducted about the actual execution of the primitives. A few syncing primitives can be used to create syncing points in the various RDP internal parallel units; see the SYNC primitives of more information.

RDP primitives are made of one or multiple 64-bit (8 bytes) words. For this reason, RDP DMA must fetch data from an address that is 64-bit aligned: in fact, the lowest 3 bits of the DMA address register are ignored. There is no destination register: the destination is the RDP itself and its internal command buffer is not addressable in any way.

Incremental transfers

To allow the RDP to begin processing primitives as soon as they are available (that is, while the VR4300 and RSP are generating them), the RDP DMA allows for incremental transfers: in fact, the DP_END register can be updated while a DMA is in progress (or after it has finished) and the effect is that the DMA will continue running until the new end pointer is reached. This operation is totally safe and free of race conditions. The intended purpose is that the VR4300 or the RSP can continue updating the DP_END register while they add more data to the primitive buffer in RDRAM/DMEM, until it is full. At that point, they can start another transfer to switch to another buffer.

Double buffering

DMA registers are double-buffered: this means that it is possible to program a new DMA transfer while another one is in progress. A new DMA transfer in this context means starting again from another buffer: we do not consider incremental transfers described above as "new transfers".

To program a pending DMA transfer, just write to DP_START/DP_END a new buffer start/end address. The START_PENDING / END_PENDING bits in DP_STATUS will be set to 1, signaling that a transfer is indeed pending. New writes to DP_END will now update the pending transfer; in other words, after a new DMA transfer is pending, it is not possible to incrementally add more primitives to the currently-running transfer.

Programming considerations

The choice between using XBUS or not is an open debate. There is no clear cut answer and it should be carefully considered depending on the expected performance implications:

  • If primitives are already in RDRAM (eg: a static display list of RDP commands, read from ROM), then it is obviously more efficient to send them directly from there, without copying them first to DMEM. Libultra does not support this (in libultra, all RDP primitives are always passed through RSP as they were RSP commands first, causing a double memory bandwidth impact if they are then sent back to RDRAM for RDP DMA); in libdragon, this is supported via rdpq_exec.
  • Symmetrically, short display lists of RDP commands can be already available in RSP DMEM (as part of the data segment of a RSP microcode). In this case, pushing them directly to RDP via XBUS is surely the fastest option.
  • If primitives are generated by the RSP (eg: triangles at the end of a T&L pipeline), consider the following aspects:
    • sending back all the primitives to RDRAM will have an impact on memory bandwidth (first, to transfer them from DMEM to RDRAM, and later from RDRAM to RDP). Memory bandwidth is often a bottleneck on N64.
    • on the other hand, RDRAM allows for much larger buffers. When the buffers are small (like they typically are in DMEM), it means that the RSP could be forced to wait for the RDP to process the primitives before producing new ones (basically this is back-pressure from RDP to RSP), and in turns it could cause a back-pressure on the VR4300. Often, RDP is the slowest among the three, so a larger buffer allows for better pacing.

While preparing buffers on RDP primitives, it is useful to take advantage of incremental transfers. This is a possible algorithm:

  1. Prepare two buffers (in either DMEM or RDRAM).
  2. Get ready to send the first buffer by setting DP_START = DP_END = pointer to the start of the first buffer. This will not actually transfer any byte (remember DP_END is an exclusive bound, so if you set DP_START = DP_END, this means "0 byte buffer"), but will setup the DMA engine as such.
  3. Generate RDP primitives into the first buffer (assuming this is RSP, depending whether you are using XBUS or not, either just write them to DMEM, or also DMA them to RDRAM into the first buffer). Any time a new primitive is added to the buffer, write DP_END to point past it. This basically tells the RDP that there are more primitives to run, as soon as it is ready.
  4. When the buffer is full, go back to point 2, switching to the next buffer. Notice that the RDP DMA on the first buffer will continue running until all primitives have been fetched, so the new buffer will be effectively pending at this point. Anyway, you can continue working on the new buffer and keep writing DP_END: this is totally race-free, whether the new transfer is still pending, is ongoing, or even if it is finished.
  5. Consider that the RDP can only have one transfer pending. So anytime you write DP_START to switch to a new buffer, first check if another transfer is already pending (by checking if the START_PENDING bit is set in DP_STATUS). If it is pending, then you will need to wait for it. This also makes sure you don't start pushing new primitives into the first buffer again, before the previous contents have been fully consumed.

Another possible approach to push primitives into RDP is using a single buffer, and checking DP_CURRENT to race against the DMA. The idea is using the buffer as a circular one, and have the DMA constantly trailing behind our write pointer.

  1. Prepare a single buffer (in either DMEM or RDRAM). Write DP_START = DP_END = pointer to the start of the buffer. Notice that, as soon as the RDP accepts these register writes, DP_CURRENT will also point there when read.
  2. Generate RDP primitives and write them into the buffer. Any time a new primitive is written, update DP_END. At this point, there are no pending DMAs (START_VALID = 0), and in general we will have that DP_START <= DP_CURRENT <= DP_END. To visualize this, remember that DP_CURRENT is basically the "read pointer", while DP_END is our "write pointer", within the same circular buffer.
  3. When we reach the end of the buffer, schedule a new DMA transfer on the same buffer from the beginning (so again DP_START = DP_END = pointer to the start of the buffer). At this point, this second transfer will be pending (START_VALID = 1), but the RDP DMA will probably be still going through the buffer on the first time. So at this point we have DP_START <= DP_END < DP_CURRENT. Notice in fact that reading DP_START and DP_END will return the pending values (the new run on the buffer), while DP_CURRENT will still report the currently running transfer, and will keep going until the end of the buffer.
  4. Keep writing primitives from the start of the buffer. This time, though, make sure that you never write past the current value of DP_CURRENT. If you need to write a primitive but you have reached the current value of DP_CURRENT, it means that you risk overwriting primitives that have not been sent to RDP yet. So in this case, you will need to throttle (wait) for a bit.
  5. As soon as the RDP has finished going through the buffer, it will run the pending transfer and thus start from the beginning of the buffer again. After this happens (you can check it with START_VALID becoming 0), you can freely go through the buffer writing primitives, without checking DP_CURRENT anymore. In fact, at this point we are back to the initial situation in which DP_START <= DP_CURRENT <= DP_END so it is possible to keep writing until the end of the buffer.

In general, the second algorithm is more complex and requires a bit more code to be implemented, but it allows for less throttling and more efficient use of the memory. In fact, in the first scenario, whenever we have filled the available memory (two buffers) and we throttle, we will need to wait until the RDP finishes processing the whole first buffer. In the second scenario, instead, throttling is much reduced because as soon as the RDP processes one primitive, we get room for one more primitive to write.

RDP Interface Registers

The RDP interface registers are memory mapped into the VR4300 physical address space starting from 0x0410 0000. Normally, accesses are performed through the virtual uncached segment, so at 0xA410 0000.

The exact same physical registers are also exposed as COP0 registers to RSP itself, and can thus be accessed using the MTC0 / MFC0 opcodes. Since access to all registers is shared by VR4300 and RSP, special care must be taken while writing software to decide who is in charge of each different resource / feature. For instance, normally DMA operations are performed by either the CPU or the RSP only; if the software architecture requires both to issue DMA transfers, some kind of mutex protocol must be established (for instance, using either the SIG bits in the SP_STATUS register, or the SP_SEMAPHORE register).

VR4300 address RSP COP0 register Name Description
0x0410 0000 c8 DP_START Start address in RDRAM / DMEM for a DMA transfer of RDP primitives
0x0410 0004 c9 DP_END End address in RDRAM / DMEM for a DMA transfer of RDP primitives (exclusive bound)
0x0410 0008 c10 DP_CURRENT Current address in RDRAM / DMEM being transferred by the DMA engine
0x0410 000C c11 DP_STATUS Status register
0x0410 0010 c12
0x0410 0014 c13
0x0410 0018 c14
0x0410 001C c15

0x0410 0000 (c8) - DP_START


DP_START 0x0410 0000 (c8)
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 RW-? RW-? RW-? RW-? RW-? RW-? RW-? RW-?
START[23:16]
15:8 RW-? RW-? RW-? RW-? RW-? RW- RW-? RW-?
START[15:0]
7:0 RW-? RW-? RW-? RW-? RW-? U-0 U-0 U-0
START[7:0]
bit 23-0 START[23:0]: Physical address of the start of the primitive buffer in RDRAM or DMEM. When reading, it always returns the last written value.

Extra Details:

START This address points to the beginning of the primitive buffer from which primitives will be fetched by the DMA. After writing this register, the address is latched into the RDP interface, and the START_PENDING bit in DP_STATUS becomes 1, but no transfer is started. Writing DP_END will actually initiate the transfer. Selection of the data source (RDRAM or DMEM) is controller by bit 0 of DP_STATUS.

0x0410 0004 (c9) - DP_END


DP_END 0x0410 0004 (c9)
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 RW-? RW-? RW-? RW-? RW-? RW-? RW-? RW-?
END[23:16]
15:8 RW-? RW-? RW-? RW-? RW-? RW- RW-? RW-?
END[15:0]
7:0 RW-? RW-? RW-? RW-? RW-? U-0 U-0 U-0
END[7:0]
bit 23-0 END[23:0]: Physical address of the end of the primitive buffer (in RDRAM or DMEM). When reading, it always returns the last written value.

Extra Details:

END This address points to the end of the primitive buffer. The address is interpreted as an exclusive bound, so it must point after the last primitive to transfer. Notice that writing DP_START=DP_END is well formed, and will run a perfectly valid zero byte transfer (which can later extended via an incremental transfer).

When `DP_END` is written, the RDP does the following:

  • if `START_PENDING` (in `DP_STATUS`) is 0, the write is considered an "incremental transfer", so the RDP DMA is programmed to continue the last transfer up to the new value of `DP_END` (this works whether the previous transfer is still running or was already finished; in both cases, the transfer is continued/restored until the new DP_END` is reached);
  • if `START_PENDING` (in DP_STATUS) is 0, the behavior depends on whether a transfer is running or not:
    • if no transfer is running, the new transfer is started (from `DP_START` to `DP_END`), and `START_PENDING` goes back to 0.
    • if a transfer is in progress, `END_PENDING` is set to 1 and the new transfer remains pending and will start as soon as the current transfer is finished. Further writes to `DP_END` in this state will simply update the pending transfer's end address.

WARNING: do not start a DMA transfer if you have previously enqueued a SYNC_FULL primitive. There is a RDP hardware bug that makes RDP sometimes crash if a RDP transfer is ongoing while SYNC_FULL is run. When you schedule a SYNC_FULL (usually at the end of the frame), you must absolutely wait before the RDP has processed it and get back to fully idle status, before starting a new DMA transfer. It is fine to just write DP_START though, as that doesn't start a transfer.

0x0410 0008 (c10) - DP_CURRENT


DP_CURRENT 0x0410 0008 (c10)
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 R-? R-? R-? R-? R-? R-? R-? R-?
CURRENT[23:16]
15:8 R-? R-? R-? R-? R-? R-? R-? R-?
CURRENT[15:0]
7:0 R-? R-? R-? R-? R-? R-? R-? R-?
CURRENT[7:0]
bit 23-0 CURRENT[23:0]: Read the current address being transferred by DMA.

Extra Details:

CURRENT This address points after the last primitive that was transferred by DMA. It is possible to monitor this register to know how far the transfer has gone. In general, it is expected that `DP_START` <= `DP_CURRENT` <= `DP_END`, and thus the portion of the buffer between `DP_START` and `DP_CURRENT` is free to be recycled for other uses. When a transfer is finished, `DP_CURRENT` will always be equal to `DP_END`. Notice that when `START_PENDING` or `END_PENDING` are 1, reading `DP_START` and `DP_END`

0x0410 000C (c11) - DPC_STATUS


DPC_STATUS 0x0410 000C (c11) - Read access
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 U-? U-? U-? U-? U-? U-? U-? U-?
15:8 U-? U-? U-? U-? U-? R-? R-? R-?
START_PENDING END_PENDING DMA_BUSY
7:0 R-? R-? R-? R-? R-? R-? R-? R-?
READY BUFFER_BUSY PIPE_BUSY TMEM_BUSY START_GCLK FLUSH FREEZE XBUS
bit 10 START_PENDING: Set if DP_START was written and the value is still pending because DP_END was not written yet, or another transfer is in progress (see DP_START and DP_END).
bit 9 END_PENDING: Set if DP_END was written and the value is still pending because another transfer is in progress (see DP_END)
bit 8 DMA_BUSY: ?
bit 7 READY: ?
bit 6 BUFFER_BUSY: ?
bit 5 PIPE_BUSY: ?
bit 4 TMEM_BUSY: ?
bit 3 START_GCLK: ?
bit 2 FLUSH: While set, all RDP transfers in progress or started are immediately terminated
bit 1 FREEZE: While set, RDP will stop processing primitives
bit 0 XBUS: 0: DMA transfer source is XBUS; 1: DMA transfer source is DMEM
DPC_STATUS 0x0410 000C - Write access
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 U-? U-? U-? U-? U-? U-? U-? U-?
15:8 U-? U-? U-? U-? U-? U-? W-? W-?
CLR_CLOCK CLR_BUFFER_BUSY
7:0 W-? W-? W-? W-? W-? W-? W-? W-?
CLR_PIPE_BUSY CLR_TMEM_BUSY SET_FLUSH CLR_FLUSH SET_FREEZE CLR_FREEZE SET_SOURCE CLR_SOURCE
bit 9 CLR_CLOCK: ?
bit 8 CLR_BUFFER_BUSY: ?
bit 7 CLR_PIPE_BUSY: ?
bit 6 CLR_TMEM_BUSY: ?
bit 5 SET_FLUSH: Set the FLUSH bit to 1
bit 4 CLR_FLUSH: Clear the FLUSH bit to 0
bit 3 SET_FREEZE: Set the FREEZE bit to 1
bit 2 CLR_FREEZE: Clear the FREEZE bit to 0
bit 1 SET_XBUS: Set the XBUS bit to 1
bit 0 CLR_XBUS: Clear the XBUS bit to 0

Extra Details:

FREEZE During freeze, the RDP DMA engine is suspended (paused). If a transfer was ongoing, it is paused and will resume as soon as the freeze bit is reset to 0. During the freeze, it is still possible to write DP_START or DP_END, and the writes will still affect the START_PENDING / END_PENDING bits, but no transfer will be initiated.
FLUSH While FLUSH is set, all DMA transfers are instantly terminated (flushed). Pulsing the FLUSH bit is a good way to force-reset the RDP DMA engine and make sure the RDP is ready to initiate a new transfer.

0x0410 0010 - DPC_CLOCK


DPC_CLOCK 0x0410 0010
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 R-? R-? R-? R-? R-? R-? R-? R-?
CLOCK[23:16]
15:8 R-? R-? R-? R-? R-? R-? R-? R-?
CLOCK[15:0]
7:0 R-? R-? R-? R-? R-? R-? R-? R-?
CLOCK[7:0]
bit 23-0 CLOCK[23:0]: ?

0x0410 0014 - DPC_BUSY


DPC_BUSY 0x0410 0014
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 R-? R-? R-? R-? R-? R-? R-? R-?
BUSY[23:16]
15:8 R-? R-? R-? R-? R-? R-? R-? R-?
BUSY[15:0]
7:0 R-? R-? R-? R-? R-? R-? R-? R-?
BUSY[7:0]
bit 23-0 BUSY[23:0]: ?

0x0410 0018 - DPC_PIPE_BUSY


DPC_PIPE_BUSY 0x0410 0018
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 R-? R-? R-? R-? R-? R-? R-? R-?
PIPE_BUSY[23:16]
15:8 R-? R-? R-? R-? R-? R-? R-? R-?
PIPE_BUSY[15:0]
7:0 R-? R-? R-? R-? R-? R-? R-? R-?
PIPE_BUSY[7:0]
bit 23-0 PIPE_BUSY[23:0]: ?

0x0410 001C - DPC_TMEM_BUSY


DPC_TMEM_BUSY 0x0410 001C
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 R-? R-? R-? R-? R-? R-? R-? R-?
TMEM_BUSY[23:16]
15:8 R-? R-? R-? R-? R-? R-? R-? R-?
TMEM_BUSY[15:0]
7:0 R-? R-? R-? R-? R-? R-? R-? R-?
TMEM_BUSY[7:0]
bit 23-0 TMEM_BUSY[23:0]: ?

0x0420 0000 - DPS_TBIST


DPS_TBIST 0x0420 0000
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 U-? U-? U-? U-? U-? U-? U-? U-?
15:8 U-? U-? U-? U-? U-? R-? R-? R-?
FAIL[7:5]
7:0 R-? R-? R-? R-? R-? RW-? RW-? RW-?
FAIL[4:0] DONE GO CHECK
bit 10-3 FAIL[7:0]: ?
bit 2 DONE: ?
bit 1 GO: ?
bit 0 CHECK: ?

0x0420 0004 - DPS_TEST_MODE


DPS_TEST_MODE 0x0420 0004
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 U-? U-? U-? U-? U-? U-? U-? U-?
15:8 U-? U-? U-? U-? U-? U-? U-? U-?
7:0 U-? U-? U-? U-? U-? U-? U-? RW-?
ENABLE
bit 0 ENABLE: ?

0x0420 0008 - DPS_BUFTEST_ADDR


DPS_BUFTEST_ADDR 0x0420 0008
31:24 U-? U-? U-? U-? U-? U-? U-? U-?
23:16 U-? U-? U-? U-? U-? U-? U-? U-?
15:8 U-? U-? U-? U-? U-? U-? U-? U-?
7:0 U-? RW-? RW-? RW-? RW-? RW-? RW-? RW-?
ADDRESS[6:0]
bit 6-0 ADDRESS[6:0]: ?

0x0410 000C - DPS_BUFTEST_DATA


DPS_BUFTEST_DATA 0x0420 000C
31:24 RW-? RW-? RW-? RW-? RW-? RW-? RW-? RW-?
DATA[31:24]
23:16 RW-? RW-? RW-? RW-? RW-? RW-? RW-? RW-?
DATA[23:16]
15:8 RW-? RW-? RW-? RW-? RW-? RW- RW-? RW-?
DATA[15:0]
7:0 RW-? RW-? RW-? RW-? RW-? RW-? RW-? RW-?
DATA[7:0]
bit 31-0 DATA: ?