aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_unai/port.h
blob: 3561acdcda99abf5b20b92445fe3d30a56e21d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <stddef.h>
#include <string.h>

#define INLINE static inline

#define GPU_init	GPUinit
#define GPU_shutdown	GPUshutdown
//#define GPU_freeze	GPUfreeze
#define GPU_writeDataMem GPUwriteDataMem
#define GPU_dmaChain	GPUdmaChain
#define GPU_writeData	GPUwriteData
#define GPU_readDataMem	GPUreadDataMem
#define GPU_readData	GPUreadData
#define GPU_readStatus	GPUreadStatus
#define GPU_writeStatus	GPUwriteStatus
#define GPU_updateLace	GPUupdateLace

extern "C" {

#define u32 unsigned int
#define s32 signed int

bool GPUinit(void);
void GPUshutdown(void);
void GPUwriteDataMem(u32* dmaAddress, s32 dmaCount);
void GPUdmaChain(u32* baseAddr, u32 dmaVAddr);
void GPUwriteData(u32 data);
void GPUreadDataMem(u32* dmaAddress, s32 dmaCount);
u32  GPUreadData(void);
u32  GPUreadStatus(void);
void GPUwriteStatus(u32 data);

#undef u32
#undef s32

}