Build mptable using C 'struct's.
[seabios.git] / src / util.h
1 // Basic x86 asm functions and function defs.
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 //
5 // This file may be distributed under the terms of the GNU LGPLv3 license.
6 #ifndef __UTIL_H
7 #define __UTIL_H
8
9 #include "types.h" // u32
10
11 static inline void irq_disable(void)
12 {
13     asm volatile("cli": : :"memory");
14 }
15
16 static inline void irq_enable(void)
17 {
18     asm volatile("sti": : :"memory");
19 }
20
21 static inline unsigned long irq_save(void)
22 {
23     unsigned long flags;
24     asm volatile("pushfl ; popl %0" : "=g" (flags));
25     irq_disable();
26     return flags;
27 }
28
29 static inline void irq_restore(unsigned long flags)
30 {
31     asm volatile("pushl %0 ; popfl" : : "g" (flags) : "memory", "cc");
32 }
33
34 static inline void cpu_relax(void)
35 {
36     asm volatile("rep ; nop": : :"memory");
37 }
38
39 static inline void nop(void)
40 {
41     asm volatile("nop");
42 }
43
44 static inline void hlt(void)
45 {
46     asm volatile("hlt");
47 }
48
49 static inline void wbinvd(void)
50 {
51     asm volatile("wbinvd");
52 }
53
54 static inline void cpuid(u32 index, u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
55 {
56     asm("cpuid"
57         : "=a" (*eax), "=b" (*ebx), "=c" (*ecx), "=d" (*edx)
58         : "0" (index));
59 }
60
61 static inline u64 rdtscll(void)
62 {
63     u64 val;
64     asm volatile("rdtsc" : "=A" (val));
65     return val;
66 }
67
68 // util.c
69 inline u32 stack_hop(u32 eax, u32 edx, u32 ecx, void *func);
70 u8 checksum_far(u16 buf_seg, void *buf_far, u32 len);
71 u8 checksum(void *buf, u32 len);
72 void *memset(void *s, int c, size_t n);
73 void *memcpy(void *d1, const void *s1, size_t len);
74 inline void memcpy_far(u16 d_seg, void *d_far
75                        , u16 s_seg, const void *s_far, size_t len);
76 void *memmove(void *d, const void *s, size_t len);
77 char *strtcpy(char *dest, const char *src, size_t len);
78 struct bregs;
79 inline void call16(struct bregs *callregs);
80 inline void call16big(struct bregs *callregs);
81 inline void __call16_int(struct bregs *callregs, u16 offset);
82 #define call16_int(nr, callregs) do {                           \
83         extern void irq_trampoline_ ##nr ();                    \
84         __call16_int((callregs), (u32)&irq_trampoline_ ##nr );  \
85     } while (0)
86 inline void call16_simpint(int nr, u32 *eax, u32 *flags);
87 void usleep(u32 usec);
88 int get_keystroke(int msec);
89
90 // output.c
91 void debug_serial_setup();
92 void panic(const char *fmt, ...)
93     __attribute__ ((format (printf, 1, 2)))
94     __attribute__ ((noreturn));
95 void printf(const char *fmt, ...)
96     __attribute__ ((format (printf, 1, 2)));
97 void __dprintf(const char *fmt, ...)
98     __attribute__ ((format (printf, 1, 2)));
99 #define dprintf(lvl, fmt, args...) do {                         \
100         if (CONFIG_DEBUG_LEVEL && (lvl) <= CONFIG_DEBUG_LEVEL)  \
101             __dprintf((fmt) , ##args );                         \
102     } while (0)
103 void __debug_enter(struct bregs *regs, const char *fname);
104 void __debug_stub(struct bregs *regs, int lineno, const char *fname);
105 void __debug_isr(const char *fname);
106 #define debug_enter(regs, lvl) do {                     \
107         if ((lvl) && (lvl) <= CONFIG_DEBUG_LEVEL)       \
108             __debug_enter((regs), __func__);            \
109     } while (0)
110 #define debug_isr(lvl) do {                             \
111         if ((lvl) && (lvl) <= CONFIG_DEBUG_LEVEL)       \
112             __debug_isr(__func__);                      \
113     } while (0)
114 #define debug_stub(regs)                        \
115     __debug_stub((regs), __LINE__, __func__)
116 void hexdump(void *d, int len);
117
118 // kbd.c
119 void kbd_setup();
120 void handle_15c2(struct bregs *regs);
121
122 // mouse.c
123 void mouse_setup();
124
125 // system.c
126 extern u32 RamSize;
127 extern u64 RamSizeOver4G;
128 void mathcp_setup();
129
130 // serial.c
131 void serial_setup();
132 void lpt_setup();
133
134 // clock.c
135 void timer_setup();
136 void ndelay(u32 count);
137 void udelay(u32 count);
138 void mdelay(u32 count);
139 u64 calc_future_tsc(u32 msecs);
140 void handle_1583(struct bregs *regs);
141 void handle_1586(struct bregs *regs);
142
143 // apm.c
144 void VISIBLE16 handle_1553(struct bregs *regs);
145
146 // pcibios.c
147 void handle_1ab1(struct bregs *regs);
148
149 // shadow.c
150 void make_bios_writable();
151 void make_bios_readonly();
152
153 // pciinit.c
154 void pci_bios_setup(void);
155
156 // smm.c
157 void smm_init();
158
159 // smpdetect.c
160 int smp_probe(void);
161 void smp_probe_setup(void);
162
163 // smbios.c
164 void smbios_init(void);
165
166 // coreboot.c
167 void coreboot_fill_map();
168
169 // vgahooks.c
170 void handle_155f();
171
172 // optionroms.c
173 void call_bcv(u16 seg, u16 ip);
174 void vga_setup();
175 void optionrom_setup();
176
177 // resume.c
178 void init_dma();
179
180 // pnpbios.c
181 #define PNP_SIGNATURE 0x506e5024 // $PnP
182 u16 get_pnp_offset();
183 void pnp_setup();
184
185 // mtrr.c
186 void mtrr_setup(void);
187
188 // romlayout.S
189 void reset_vector() __attribute__ ((noreturn));
190
191 // misc.c
192 extern u8 BiosChecksum;
193
194 #endif // util.h