Difference between revisions of "GSP Shared Memory"

From 3dbrew
Jump to navigation Jump to search
(Created page with "This page describes the GX commands which can be written to GSP shared memory. After writing the command data to GSP shared memory, [[GSPGP...")
 
Line 50: Line 50:
 
| 0
 
| 0
 
| u8 CommandID is 0x00
 
| u8 CommandID is 0x00
 +
|-
 +
| 1
 +
| Source address
 +
|-
 +
| 2
 +
| Destination address
 +
|-
 +
| 3
 +
| Size
 
|}
 
|}
  
Line 102: Line 111:
 
| 0
 
| 0
 
| u8 CommandID is 0x05
 
| u8 CommandID is 0x05
 +
|-
 +
| 1
 +
| Buf0 address
 +
|-
 +
| 2
 +
| Buf0 size
 +
|-
 +
| 3
 +
| Buf1 address
 +
|-
 +
| 4
 +
| Buf1 size
 +
|-
 +
| 5
 +
| Buf2 address
 +
|-
 +
| 6
 +
| Buf2 size
 
|}
 
|}
  
The application buffer addresses specified in the parameters are used with [[SVC|svcFlushProcessDataCache]].
+
The application buffer addresses specified in the parameters are used with [[SVC|svcFlushProcessDataCache]]. The input buf0 size must not be zero. When buf1 size is zero, svcFlushProcessDataCache() for buf1 and buf2 are skipped. When buf2 size is zero, svcFlushProcessDataCache() for buf2 is skipped.

Revision as of 20:05, 30 January 2013

This page describes the GX commands which can be written to GSP shared memory. After writing the command data to GSP shared memory, TriggerCmdReqQueue must be used to trigger GSP processing for the command.

Command Buffer Header

Index Byte Description
0 Command Index, must be <=15
1 Must not be value 0
2 Must not be value 1
3 Bit0 must not be set

The command buffer is located at sharedmem + 0x800 + threadindex*0x200.

Command Header

Index Byte Description
0 Command ID
2-1 ?
3 When non-zero GSP module may check flags for the specified cmdID, command handling is aborted when the flags are set.

The command is located at cmdbuf + 0x20 + cmdindex*0x20, the size of each command is 0x20-bytes. The command parameters are located at command+4. Application vaddrs specified in command parameters can usually be located in either the application GSP heap at 0x14000000 or VRAM.

Commands

GX Command 0

Index Word Description
0 u8 CommandID is 0x00
1 Source address
2 Destination address
3 Size

This command is normally used to DMA data from the application GSP heap at 0x14000000 to VRAM.

GX Command 1

Index Word Description
0 u8 CommandID is 0x01

GX Command 2

Index Word Description
0 u8 CommandID is 0x02

GX Command 3

Index Word Description
0 u8 CommandID is 0x03

GX Command 4

Index Word Description
0 u8 CommandID is 0x04

GX Command 5

Index Word Description
0 u8 CommandID is 0x05
1 Buf0 address
2 Buf0 size
3 Buf1 address
4 Buf1 size
5 Buf2 address
6 Buf2 size

The application buffer addresses specified in the parameters are used with svcFlushProcessDataCache. The input buf0 size must not be zero. When buf1 size is zero, svcFlushProcessDataCache() for buf1 and buf2 are skipped. When buf2 size is zero, svcFlushProcessDataCache() for buf2 is skipped.