N64FlashcartMenu
Loading...
Searching...
No Matches
boot_io.h
Go to the documentation of this file.
1
7#ifndef BOOT_IO_H__
8#define BOOT_IO_H__
9
10#include <stddef.h>
11#include <stdint.h>
12
17typedef volatile uint8_t io8_t;
18
23typedef volatile uint32_t io32_t;
24
34#define UNCACHED(address) ((typeof(address)) (((io32_t) (address)) | (0xA0000000UL)))
35
42typedef struct {
43 io32_t DMEM[1024];
44 io32_t IMEM[1024];
45} sp_mem_t;
46
50#define SP_MEM_BASE (0x04000000UL)
51
55#define SP_MEM ((sp_mem_t *) SP_MEM_BASE)
56
74
78#define SP_BASE (0x04040000UL)
79
83#define SP ((sp_regs_t *) SP_BASE)
84
85#define SP_SR_HALT (1 << 0)
86#define SP_SR_BROKE (1 << 1)
87#define SP_SR_DMA_BUSY (1 << 2)
88#define SP_SR_DMA_FULL (1 << 3)
89#define SP_SR_IO_FULL (1 << 4)
90#define SP_SR_SSTEP (1 << 5)
91#define SP_SR_INTR_BREAK (1 << 6)
92#define SP_SR_SIG0 (1 << 7)
93#define SP_SR_SIG1 (1 << 8)
94#define SP_SR_SIG2 (1 << 9)
95#define SP_SR_SIG3 (1 << 10)
96#define SP_SR_SIG4 (1 << 11)
97#define SP_SR_SIG5 (1 << 12)
98#define SP_SR_SIG6 (1 << 13)
99#define SP_SR_SIG7 (1 << 14)
100#define SP_SR_CLR_HALT (1 << 0)
101#define SP_SR_SET_HALT (1 << 1)
102#define SP_SR_CLR_BROKE (1 << 2)
103#define SP_SR_CLR_INTR (1 << 3)
104#define SP_SR_SET_INTR (1 << 4)
105#define SP_SR_CLR_SSTEP (1 << 5)
106#define SP_SR_SET_SSTEP (1 << 6)
107#define SP_SR_CLR_INTR_BREAK (1 << 7)
108#define SP_SR_SET_INTR_BREAK (1 << 8)
109#define SP_SR_CLR_SIG0 (1 << 9)
110#define SP_SR_SET_SIG0 (1 << 10)
111#define SP_SR_CLR_SIG1 (1 << 11)
112#define SP_SR_SET_SIG1 (1 << 12)
113#define SP_SR_CLR_SIG2 (1 << 13)
114#define SP_SR_SET_SIG2 (1 << 14)
115#define SP_SR_CLR_SIG3 (1 << 15)
116#define SP_SR_SET_SIG3 (1 << 16)
117#define SP_SR_CLR_SIG4 (1 << 17)
118#define SP_SR_SET_SIG4 (1 << 18)
119#define SP_SR_CLR_SIG5 (1 << 19)
120#define SP_SR_SET_SIG5 (1 << 20)
121#define SP_SR_CLR_SIG6 (1 << 21)
122#define SP_SR_SET_SIG6 (1 << 22)
123#define SP_SR_CLR_SIG7 (1 << 23)
124#define SP_SR_SET_SIG7 (1 << 24)
125
141
142#define DPC_BASE (0x04100000UL)
143#define DPC ((dpc_regs_t *) DPC_BASE)
144
145#define DPC_SR_XBUS_DMEM_DMA (1 << 0)
146#define DPC_SR_FREEZE (1 << 1)
147#define DPC_SR_FLUSH (1 << 2)
148#define DPC_SR_START_GCLK (1 << 3)
149#define DPC_SR_TMEM_BUSY (1 << 4)
150#define DPC_SR_PIPE_BUSY (1 << 5)
151#define DPC_SR_CMD_BUSY (1 << 6)
152#define DPC_SR_CBUF_READY (1 << 7)
153#define DPC_SR_DMA_BUSY (1 << 8)
154#define DPC_SR_END_VALID (1 << 9)
155#define DPC_SR_START_VALID (1 << 10)
156#define DPC_SR_CLR_XBUS_DMEM_DMA (1 << 0)
157#define DPC_SR_SET_XBUS_DMEM_DMA (1 << 1)
158#define DPC_SR_CLR_FREEZE (1 << 2)
159#define DPC_SR_SET_FREEZE (1 << 3)
160#define DPC_SR_CLR_FLUSH (1 << 4)
161#define DPC_SR_SET_FLUSH (1 << 5)
162#define DPC_SR_CLR_TMEM_CTR (1 << 6)
163#define DPC_SR_CLR_PIPE_CTR (1 << 7)
164#define DPC_SR_CLR_CMD_CTR (1 << 8)
165#define DPC_SR_CLR_CLOCK_CTR (1 << 9)
166
188
189#define VI_BASE (0x04400000UL)
190#define VI ((vi_regs_t *) VI_BASE)
191
192#define VI_CR_TYPE_16 (2 << 0)
193#define VI_CR_TYPE_32 (3 << 0)
194#define VI_CR_GAMMA_DITHER_ON (1 << 2)
195#define VI_CR_GAMMA_ON (1 << 3)
196#define VI_CR_DIVOT_ON (1 << 4)
197#define VI_CR_SERRATE_ON (1 << 6)
198#define VI_CR_ANTIALIAS_0 (1 << 8)
199#define VI_CR_ANTIALIAS_1 (1 << 9)
200#define VI_CR_PIXEL_ADVANCE_0 (1 << 12)
201#define VI_CR_PIXEL_ADVANCE_1 (1 << 13)
202#define VI_CR_PIXEL_ADVANCE_2 (1 << 14)
203#define VI_CR_PIXEL_ADVANCE_3 (1 << 15)
204#define VI_CR_DITHER_FILTER_ON (1 << 16)
205
206#define VI_CURR_LINE_FIELD (1 << 0)
207
221
222#define AI_BASE (0x04500000UL)
223#define AI ((ai_regs_t *) AI_BASE)
224
225#define AI_SR_DMA_BUSY (1 << 30)
226#define AI_SR_FIFO_FULL (1 << 31)
227#define AI_CR_DMA_ON (1 << 0)
228
234typedef struct {
240 struct {
241 io32_t LAT;
242 io32_t PWD;
243 io32_t PGS;
244 io32_t RLS;
245 } DOM[2];
246} pi_regs_t;
247
248#define PI_BASE (0x04600000UL)
249#define PI ((pi_regs_t *) PI_BASE)
250
251#define PI_SR_DMA_BUSY (1 << 0)
252#define PI_SR_IO_BUSY (1 << 1)
253#define PI_SR_DMA_ERROR (1 << 2)
254#define PI_SR_RESET (1 << 0)
255#define PI_SR_CLR_INTR (1 << 1)
256
257#define ROM_DDIPL_BASE (0x06000000UL)
258#define ROM_DDIPL ((io32_t *) ROM_DDIPL_BASE)
259
260#define ROM_CART_BASE (0x10000000UL)
261#define ROM_CART ((io32_t *) ROM_CART_BASE)
262
269static inline uint32_t cpu_io_read (io32_t *address) {
270 io32_t *uncached = UNCACHED(address);
271 uint32_t value = *uncached;
272 return value;
273}
274
281static inline void cpu_io_write (io32_t *address, uint32_t value) {
282 io32_t *uncached = UNCACHED(address);
283 *uncached = value;
284}
285
286#endif /* BOOT_IO_H__ */
io32_t SR
Definition boot_io.h:67
io32_t DACRATE
Definition boot_io.h:218
io32_t CURR_LINE
Definition boot_io.h:177
volatile uint8_t io8_t
8-bit volatile IO type.
Definition boot_io.h:17
io32_t START
Definition boot_io.h:132
io32_t DMA_FULL
Definition boot_io.h:68
io32_t PADDR
Definition boot_io.h:236
io32_t CURRENT
Definition boot_io.h:134
io32_t BITRATE
Definition boot_io.h:219
io32_t WR_LEN
Definition boot_io.h:66
volatile uint32_t io32_t
32-bit volatile IO type.
Definition boot_io.h:23
io32_t TIMING
Definition boot_io.h:178
io32_t DMA_BUSY
Definition boot_io.h:69
io32_t H_SYNC
Definition boot_io.h:180
io32_t SR
Definition boot_io.h:239
io32_t TMEM
Definition boot_io.h:139
io32_t RDMA
Definition boot_io.h:237
io32_t WDMA
Definition boot_io.h:238
io32_t RD_LEN
Definition boot_io.h:65
io32_t V_LIMITS
Definition boot_io.h:183
io32_t SR
Definition boot_io.h:217
#define UNCACHED(address)
Convert an address to its uncached equivalent.
Definition boot_io.h:34
io32_t H_LIMITS
Definition boot_io.h:182
io32_t PIPE_BUSY
Definition boot_io.h:138
io32_t MADDR
Definition boot_io.h:64
io32_t MADDR
Definition boot_io.h:235
io32_t SR
Definition boot_io.h:135
io32_t H_SYNC_LEAP
Definition boot_io.h:181
io32_t H_SCALE
Definition boot_io.h:185
io32_t LEN
Definition boot_io.h:215
io32_t END
Definition boot_io.h:133
io32_t COLOR_BURST
Definition boot_io.h:184
io32_t V_SYNC
Definition boot_io.h:179
io32_t CR
Definition boot_io.h:173
io32_t CLOCK
Definition boot_io.h:136
io32_t CR
Definition boot_io.h:216
io32_t V_SCALE
Definition boot_io.h:186
io32_t MADDR
Definition boot_io.h:214
io32_t BUF_BUSY
Definition boot_io.h:137
io32_t SEMAPHORE
Definition boot_io.h:70
io32_t PC
Definition boot_io.h:72
io32_t PADDR
Definition boot_io.h:63
io32_t H_WIDTH
Definition boot_io.h:175
io32_t V_INTR
Definition boot_io.h:176
io32_t MADDR
Definition boot_io.h:174
Audio Interface Registers Structure.
Definition boot_io.h:213
DPC Registers Structure.
Definition boot_io.h:131
Peripheral Interface Register Structure.
Definition boot_io.h:234
Memory Structure.
Definition boot_io.h:42
SP Registers Structure.
Definition boot_io.h:62
Video Interface Registers Structure.
Definition boot_io.h:172