Unify mode16/32 compiler checks.
[seabios.git] / src / util.h
1 // Basic x86 asm functions and function defs.
2 //
3 // Copyright (C) 2008,2009  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 #define call16_simpint(nr, peax, pflags) do {                           \
69         ASSERT16();                                                     \
70         asm volatile(                                                   \
71             "stc\n"                                                     \
72             "int %2\n"                                                  \
73             "pushfl\n"                                                  \
74             "popl %1\n"                                                 \
75             "cli\n"                                                     \
76             "cld"                                                       \
77             : "+a"(*peax), "=r"(*pflags)                                \
78             : "i"(nr)                                                   \
79             : "cc", "memory");                                          \
80     } while (0)
81
82 // util.c
83 inline u32 stack_hop(u32 eax, u32 edx, u32 ecx, void *func);
84 u8 checksum_far(u16 buf_seg, void *buf_far, u32 len);
85 u8 checksum(void *buf, u32 len);
86 int memcmp(const void *s1, const void *s2, size_t n);
87 size_t strlen(const char *s);
88 int strcmp(const char *s1, const char *s2);
89 inline void memset_far(u16 d_seg, void *d_far, u8 c, size_t len);
90 inline void memset16_far(u16 d_seg, void *d_far, u16 c, size_t len);
91 void *memset(void *s, int c, size_t n);
92 #define memcpy __builtin_memcpy
93 inline void memcpy_far(u16 d_seg, void *d_far
94                        , u16 s_seg, const void *s_far, size_t len);
95 void *memmove(void *d, const void *s, size_t len);
96 char *strtcpy(char *dest, const char *src, size_t len);
97 struct bregs;
98 inline void call16(struct bregs *callregs);
99 inline void call16big(struct bregs *callregs);
100 inline void __call16_int(struct bregs *callregs, u16 offset);
101 #define call16_int(nr, callregs) do {                           \
102         extern void irq_trampoline_ ##nr ();                    \
103         __call16_int((callregs), (u32)&irq_trampoline_ ##nr );  \
104     } while (0)
105 void usleep(u32 usec);
106 int get_keystroke(int msec);
107
108 // output.c
109 void debug_serial_setup();
110 void panic(const char *fmt, ...)
111     __attribute__ ((format (printf, 1, 2)))
112     __attribute__ ((noreturn));
113 void printf(const char *fmt, ...)
114     __attribute__ ((format (printf, 1, 2)));
115 void __dprintf(const char *fmt, ...)
116     __attribute__ ((format (printf, 1, 2)));
117 #define dprintf(lvl, fmt, args...) do {                         \
118         if (CONFIG_DEBUG_LEVEL && (lvl) <= CONFIG_DEBUG_LEVEL)  \
119             __dprintf((fmt) , ##args );                         \
120     } while (0)
121 void __debug_enter(struct bregs *regs, const char *fname);
122 void __debug_stub(struct bregs *regs, int lineno, const char *fname);
123 void __debug_isr(const char *fname);
124 #define debug_enter(regs, lvl) do {                     \
125         if ((lvl) && (lvl) <= CONFIG_DEBUG_LEVEL)       \
126             __debug_enter((regs), __func__);            \
127     } while (0)
128 #define debug_isr(lvl) do {                             \
129         if ((lvl) && (lvl) <= CONFIG_DEBUG_LEVEL)       \
130             __debug_isr(__func__);                      \
131     } while (0)
132 #define debug_stub(regs)                        \
133     __debug_stub((regs), __LINE__, __func__)
134 void hexdump(void *d, int len);
135
136 // kbd.c
137 void kbd_setup();
138 void handle_15c2(struct bregs *regs);
139
140 // mouse.c
141 void mouse_setup();
142
143 // system.c
144 extern u32 RamSize;
145 extern u64 RamSizeOver4G;
146 void mathcp_setup();
147
148 // serial.c
149 void serial_setup();
150 void lpt_setup();
151
152 // clock.c
153 void timer_setup();
154 void ndelay(u32 count);
155 void udelay(u32 count);
156 void mdelay(u32 count);
157 u64 calc_future_tsc(u32 msecs);
158 void handle_1583(struct bregs *regs);
159 void handle_1586(struct bregs *regs);
160
161 // apm.c
162 void VISIBLE16 handle_1553(struct bregs *regs);
163
164 // pcibios.c
165 void handle_1ab1(struct bregs *regs);
166
167 // shadow.c
168 void make_bios_writable();
169 void make_bios_readonly();
170
171 // pciinit.c
172 void pci_bios_setup(void);
173
174 // smm.c
175 void smm_init();
176
177 // smpdetect.c
178 int smp_probe(void);
179 void smp_probe_setup(void);
180
181 // smbios.c
182 void smbios_init(void);
183
184 // coreboot.c
185 const char *cbfs_findNprefix(const char *prefix, int n);
186 int cbfs_copy_optionrom(void *dst, u32 maxlen, u32 vendev);
187 void cbfs_run_payload(const char *filename);
188 struct cbfs_file;
189 struct cbfs_file *cbfs_copy_gen_optionrom(void *dst, u32 maxlen
190                                           , struct cbfs_file *file);
191 void coreboot_setup();
192
193 // vgahooks.c
194 void handle_155f();
195
196 // optionroms.c
197 void call_bcv(u16 seg, u16 ip);
198 void vga_setup();
199 void optionrom_setup();
200
201 // resume.c
202 void init_dma();
203
204 // pnpbios.c
205 #define PNP_SIGNATURE 0x506e5024 // $PnP
206 u16 get_pnp_offset();
207 void pnp_setup();
208
209 // mtrr.c
210 void mtrr_setup(void);
211
212 // romlayout.S
213 void reset_vector() __attribute__ ((noreturn));
214
215 // misc.c
216 extern u8 BiosChecksum;
217
218 #endif // util.h