In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "Hardware/GX"

From WiiBrew
Jump to navigation Jump to search
(Undo revision 48111 by TD-Linux (Talk) epic fail)
Line 34: Line 34:
 
|OF|FIFO overflow ("")
 
|OF|FIFO overflow ("")
 
}}
 
}}
{{reg16 | GX_CP_CONTROL | addr = 0xCC000001 | fields = 7 |
+
{{reg16 | GX_CP_CONTROL | addr = 0xCC000002 | fields = 7 |
 
|10|1  |1  |1    |1    |1    |1    |
 
|10|1  |1  |1    |1    |1    |1    |
|U |W |W   |W   |W   |W   |W   |
+
|U |R/W|R/W |R/W |R/W |R/W |R/W |
 
|  |BPE|GPLE|UFInt|OFInt|CPInt|FIFOE|
 
|  |BPE|GPLE|UFInt|OFInt|CPInt|FIFOE|
 
|}}
 
|}}
Reading from this register will cause much wailing and gnashing of teeth.
 
 
{{regdesc
 
{{regdesc
 
|BPE|Blitting processor enable
 
|BPE|Blitting processor enable

Revision as of 23:07, 28 March 2009

Pixel Engine
Access
BroadwayFull
StarletNone
Registers
Base0x0c001000
Length0x100
Access size32 bits
Byte orderBig Endian
IRQs
Broadway9,10
This box: view  talk  edit
Command Processor
Access
BroadwayFull
StarletNone
Registers
Base0x0c000000
Length0x80
Access size16 bits
Byte orderBig Endian
IRQs
Broadway11
This box: view  talk  edit

GX FIFO

Graphics processor commands can be 8bit or 32bit, but they must be sent 32bit. The CPU has a 32-bit FIFO accessed through the WGPIPE register at 0xcc008000that will automatically pack data for you. All sorts of graphics data (vertices, primitives, etc) are sent through the FIFO.

The FIFO is a ring buffer in main memory. It is similar that it can be placed anywhere in main memory. One needs to initialize CP registers to describe the FIFO. Afterwards, all communications to the CP (including those forwarded to other units) are performed through the FIFO.

FIFO Setup

GX_CP_FIFO_STATUS (0xCC000000)
  15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Access U R R R R R
Field BPInt CmdIdle RdIdle UF OF
Field Description
BPInt Indicates status of Blitting Processor interrupt?
CmdIdle 1: CP is not doing anything
RdIdle 1: CP is not reading anything (??)
UF FIFO underflow (Determined by watermark registers?
OF FIFO overflow ("")

GX_CP_CONTROL (0xCC000002)
  15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
Access U R/W R/W R/W R/W R/W R/W
Field BPE GPLE UFInt OFInt CPInt FIFOE
Field Description
BPE Blitting processor enable
GPLE FIFO link enable (YAGCD says CP->PE?)
UFInt FIFO underflow interrupt
OFInt FIFO overflow interrupt
CPInt Command Processor interrupt
FIFOE FIFO read enable (disable while setting up)

BP (blitting processor) registers

The BP registers are accessed by writing a 8-bit value of 0x61 to the FIFO, followed by 32 bit value. This value is a bit weird - the high 8 bits are the register, and the low 24 bits are the register value. More information on the BP can be found here.

CP (command processor) registers

The (internal, there are other CP registers mapped to main memory) CP registers are accessed by writing a 8-bit 0x08 to the FIFO, followed by 8 bits of something and then 32 bits of something.

XF (transform) registers

The XF registers are accessed by first writing an 8-bit number of 0x10 to the FIFO, then a 32 bit value whose lower 16 bits are the address, and the upper 16 bits are the number of addresses to write to - 1. Following is one or more 32 bit datas.