2 * (C) GraÅžvydas "notaz" Ignotas, 2011
4 * This work is licensed under the terms of any of these licenses
6 * - GNU GPL, version 2 or later.
7 * - GNU LGPL, version 2.1 or later.
8 * See the COPYING file in the top-level directory.
11 #ifndef __GPULIB_GPU_H__
12 #define __GPULIB_GPU_H__
16 //#define RAW_FB_DISPLAY
18 #define gpu_log(fmt, ...) \
19 printf("%d:%03d: " fmt, *gpu.state.frame_count, *gpu.state.hcnt, ##__VA_ARGS__)
21 //#define log_anomaly gpu_log
22 #define log_anomaly(...)
28 #define CMD_BUFFER_LEN 1024
30 #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
31 #define HTOLE32(x) __builtin_bswap32(x)
32 #define HTOLE16(x) __builtin_bswap16(x)
33 #define LE32TOH(x) __builtin_bswap32(x)
34 #define LE16TOH(x) __builtin_bswap16(x)
36 #define HTOLE32(x) (x)
37 #define HTOLE16(x) (x)
38 #define LE32TOH(x) (x)
39 #define LE16TOH(x) (x)
42 #define BIT(x) (1 << (x))
44 #define PSX_GPU_STATUS_DHEIGHT BIT(19)
45 #define PSX_GPU_STATUS_PAL BIT(20)
46 #define PSX_GPU_STATUS_RGB24 BIT(21)
47 #define PSX_GPU_STATUS_INTERLACE BIT(22)
48 #define PSX_GPU_STATUS_BLANKING BIT(23)
49 #define PSX_GPU_STATUS_IMG BIT(27)
50 #define PSX_GPU_STATUS_DMA(x) ((x) << 29)
51 #define PSX_GPU_STATUS_DMA_MASK (BIT(29) | BIT(30))
54 uint32_t cmd_buffer[CMD_BUFFER_LEN];
69 short int offset, is_read;
75 uint32_t old_interlace:1;
76 uint32_t allow_interlace:2;
78 uint32_t enhancement_enable:1;
79 uint32_t enhancement_active:1;
80 uint32_t enhancement_was_active:1;
81 uint32_t downscale_enable:1;
82 uint32_t downscale_active:1;
83 uint32_t dims_changed:1;
84 uint32_t *frame_count;
85 uint32_t *hcnt; /* hsync count */
92 uint32_t last_vram_read_frame;
93 uint32_t w_out_old, h_out_old, status_vo_old;
94 short screen_centering_type;
95 short screen_centering_type_default;
96 int screen_centering_x;
97 int screen_centering_y;
100 int32_t set:3; /* -1 auto, 0 off, 1-3 fixed */
101 int32_t cnt:3; /* amount skipped in a row */
104 uint32_t frame_ready:1;
108 uint32_t last_flip_frame;
109 uint32_t pending_fill[3];
111 uint32_t scratch_ex_regs[8]; // for threaded rendering
112 void *(*get_enhancement_bufer)
113 (int *x, int *y, int *w, int *h, int *vram_h);
114 uint16_t *(*get_downscale_buffer)
115 (int *x, int *y, int *w, int *h, int *vram_h);
116 void *(*mmap)(unsigned int size);
117 void (*munmap)(void *ptr, unsigned int size);
118 void (*gpu_state_change)(int what); // psx_gpu_state
121 extern struct psx_gpu gpu;
123 extern const unsigned char cmd_lengths[256];
125 int do_cmd_list(uint32_t *list, int count,
126 int *cycles_sum, int *cycles_last, int *last_cmd);
130 int renderer_init(void);
131 void renderer_finish(void);
132 void renderer_sync_ecmds(uint32_t * ecmds);
133 void renderer_update_caches(int x, int y, int w, int h, int state_changed);
134 void renderer_flush_queues(void);
135 void renderer_set_interlace(int enable, int is_odd);
136 void renderer_set_config(const struct rearmed_cbs *config);
137 void renderer_notify_res_change(void);
138 void renderer_notify_update_lace(int updated);
139 void renderer_sync(void);
140 void renderer_notify_scanout_change(int x, int y);
143 int vout_finish(void);
144 void vout_update(void);
145 void vout_blank(void);
146 void vout_set_config(const struct rearmed_cbs *config);
148 /* listing these here for correct linkage if rasterizer uses c++ */
152 long GPUshutdown(void);
153 void GPUwriteDataMem(uint32_t *mem, int count);
154 long GPUdmaChain(uint32_t *rambase, uint32_t addr,
155 uint32_t *progress_addr, int32_t *cycles_last_cmd);
156 void GPUwriteData(uint32_t data);
157 void GPUreadDataMem(uint32_t *mem, int count);
158 uint32_t GPUreadData(void);
159 uint32_t GPUreadStatus(void);
160 void GPUwriteStatus(uint32_t data);
161 long GPUfreeze(uint32_t type, struct GPUFreeze *freeze);
162 void GPUupdateLace(void);
163 long GPUopen(unsigned long *disp, char *cap, char *cfg);
165 void GPUvBlank(int is_vblank, int lcf);
166 void GPUgetScreenInfo(int *y, int *base_hres);
167 void GPUrearmedCallbacks(const struct rearmed_cbs *cbs_);
173 #endif /* __GPULIB_GPU_H__ */