]> git.sesse.net Git - pistorm/blob - gpio/gpio.h
Add dumb framebuffer RTG
[pistorm] / gpio / gpio.h
1 //#define BCM2708_PERI_BASE        0x20000000  //pi0-1
2 //#define BCM2708_PERI_BASE     0xFE000000     //pi4
3 #define BCM2708_PERI_BASE 0x3F000000  // pi3
4 #define BCM2708_PERI_SIZE 0x01000000
5 #define GPIO_BASE (BCM2708_PERI_BASE + 0x200000) /* GPIO controller */
6 #define GPCLK_BASE (BCM2708_PERI_BASE + 0x101000)
7 #define GPIO_ADDR 0x200000 /* GPIO controller */
8 #define GPCLK_ADDR 0x101000
9 #define CLK_PASSWD 0x5a000000
10 #define CLK_GP0_CTL 0x070
11 #define CLK_GP0_DIV 0x074
12
13 #define SA0 5
14 #define SA1 3
15 #define SA2 2
16
17 #define STATUSREGADDR  \
18   GPIO_CLR = 1 << SA0; \
19   GPIO_CLR = 1 << SA1; \
20   GPIO_SET = 1 << SA2;
21 #define W16            \
22   GPIO_CLR = 1 << SA0; \
23   GPIO_CLR = 1 << SA1; \
24   GPIO_CLR = 1 << SA2;
25 #define R16            \
26   GPIO_SET = 1 << SA0; \
27   GPIO_CLR = 1 << SA1; \
28   GPIO_CLR = 1 << SA2;
29 #define W8             \
30   GPIO_CLR = 1 << SA0; \
31   GPIO_SET = 1 << SA1; \
32   GPIO_CLR = 1 << SA2;
33 #define R8             \
34   GPIO_SET = 1 << SA0; \
35   GPIO_SET = 1 << SA1; \
36   GPIO_CLR = 1 << SA2;
37
38 #define PAGE_SIZE (4 * 1024)
39 #define BLOCK_SIZE (4 * 1024)
40
41 #define GPIOSET(no, ishigh) \
42   do {                      \
43     if (ishigh)             \
44       set |= (1 << (no));   \
45     else                    \
46       reset |= (1 << (no)); \
47   } while (0)
48
49 #define JOY0DAT 0xDFF00A
50 #define JOY1DAT 0xDFF00C
51 #define CIAAPRA 0xBFE001
52 #define POTGOR  0xDFF016
53
54 // GPIO setup macros. Always use INP_GPIO(x) before using OUT_GPIO(x) or
55 // SET_GPIO_ALT(x,y)
56 #define INP_GPIO(g) *(gpio + ((g) / 10)) &= ~(7 << (((g) % 10) * 3))
57 #define OUT_GPIO(g) *(gpio + ((g) / 10)) |= (1 << (((g) % 10) * 3))
58 #define SET_GPIO_ALT(g, a)  \
59   *(gpio + (((g) / 10))) |= \
60       (((a) <= 3 ? (a) + 4 : (a) == 4 ? 3 : 2) << (((g) % 10) * 3))
61
62 #define GPIO_SET \
63   *(gpio + 7)  // sets   bits which are 1 ignores bits which are 0
64 #define GPIO_CLR \
65   *(gpio + 10)  // clears bits which are 1 ignores bits which are 0
66
67 #define GET_GPIO(g) (*(gpio + 13) & (1 << g))  // 0 if LOW, (1<<g) if HIGH
68
69 #define GPIO_PULL *(gpio + 37)      // Pull up/pull down
70 #define GPIO_PULLCLK0 *(gpio + 38)  // Pull up/pull down clock
71
72 #define GPIO_HANDLE_IRQ \
73   if (GET_GPIO(1) == 0) { \
74     srdata = read_reg(); \
75     m68k_set_irq((srdata >> 13) & 0xff); \
76   } else { \
77     if ((gayle_int & 0x80) && get_ide(0)->drive->intrq) { \
78       write16(0xdff09c, 0x8008); \
79       m68k_set_irq(2); \
80     } \
81     else \
82         m68k_set_irq(0); \
83   }; \
84
85 extern uint8_t gayle_int;
86
87 void setup_io();
88 void gpio_enable_200mhz();
89 void gpio_handle_irq();
90
91 uint32_t read8(uint32_t address);
92 void write8(uint32_t address, uint32_t data);
93
94 uint32_t read16(uint32_t address);
95 void write16(uint32_t address, uint32_t data);
96
97 void write32(uint32_t address, uint32_t data);
98 uint32_t read32(uint32_t address);
99
100 uint16_t read_reg(void);
101 void write_reg(unsigned int value);