]> git.sesse.net Git - pistorm/blob - gpio/gpio_old.h
Add Meson build files.
[pistorm] / gpio / gpio_old.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 // GPIO setup macros. Always use INP_GPIO(x) before using OUT_GPIO(x) or
50 // SET_GPIO_ALT(x,y)
51 #define INP_GPIO(g) *(gpio + ((g) / 10)) &= ~(7 << (((g) % 10) * 3))
52 #define OUT_GPIO(g) *(gpio + ((g) / 10)) |= (1 << (((g) % 10) * 3))
53 #define SET_GPIO_ALT(g, a)  \
54   *(gpio + (((g) / 10))) |= \
55       (((a) <= 3 ? (a) + 4 : (a) == 4 ? 3 : 2) << (((g) % 10) * 3))
56
57 #define GPIO_SET \
58   *(gpio + 7)  // sets   bits which are 1 ignores bits which are 0
59 #define GPIO_CLR \
60   *(gpio + 10)  // clears bits which are 1 ignores bits which are 0
61
62 #define GET_GPIO(g) (*(gpio + 13) & (1 << g))  // 0 if LOW, (1<<g) if HIGH
63
64 #define GPIO_PULL *(gpio + 37)      // Pull up/pull down
65 #define GPIO_PULLCLK0 *(gpio + 38)  // Pull up/pull down clock
66
67 #define GPIO_HANDLE_IRQ \
68   if (GET_GPIO(1) == 0) { \
69     srdata = read_reg(); \
70     m68k_set_irq((srdata >> 13) & 0xff); \
71   } else { \
72     if ((gayle_int & 0x80) && (get_ide(0)->drive[0].intrq || get_ide(0)->drive[1].intrq)) { \
73       write16(0xdff09c, 0x8008); \
74       m68k_set_irq(2); \
75     } \
76     else \
77         m68k_set_irq(0); \
78   };
79
80 void setup_io();
81 void gpio_enable_200mhz();
82 void gpio_handle_irq();
83
84 int gpio_get_irq();
85
86 uint32_t read8(uint32_t address);
87 void write8(uint32_t address, uint32_t data);
88
89 uint32_t read16(uint32_t address);
90 void write16(uint32_t address, uint32_t data);
91
92 void write32(uint32_t address, uint32_t data);
93 uint32_t read32(uint32_t address);
94
95 uint16_t read_reg(void);
96 void write_reg(unsigned int value);