Use ld to build final rom; remove custom build utilities.
[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 GPLv3 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 void *memset(void *s, int c, size_t n);
62 void *memcpy(void *d1, const void *s1, size_t len);
63 void *memmove(void *d, const void *s, size_t len);
64
65 struct bregs;
66 inline void call16(struct bregs *callregs);
67 inline void __call16_int(struct bregs *callregs, u16 offset);
68 #define call16_int(nr, callregs) do {                           \
69         extern void irq_trampoline_ ##nr ();                    \
70         __call16_int((callregs), (u32)&irq_trampoline_ ##nr );  \
71     } while (0)
72
73 // output.c
74 void debug_serial_setup();
75 void BX_PANIC(const char *fmt, ...)
76     __attribute__ ((format (printf, 1, 2)))
77     __attribute__ ((noreturn));
78 void printf(const char *fmt, ...)
79     __attribute__ ((format (printf, 1, 2)));
80 void __dprintf(const char *fmt, ...)
81     __attribute__ ((format (printf, 1, 2)));
82 #define dprintf(lvl, fmt, args...) do {                         \
83         if (CONFIG_DEBUG_LEVEL && (lvl) <= CONFIG_DEBUG_LEVEL)  \
84             __dprintf((fmt) , ##args );                         \
85     } while (0)
86 void __debug_enter(const char *fname, struct bregs *regs);
87 void __debug_fail(const char *fname, struct bregs *regs);
88 void __debug_stub(const char *fname, struct bregs *regs);
89 void __debug_isr(const char *fname);
90 #define debug_enter(regs, lvl) do {                     \
91         if ((lvl) && (lvl) <= CONFIG_DEBUG_LEVEL)       \
92             __debug_enter(__func__, regs);              \
93     } while (0)
94 #define debug_isr(lvl) do {                             \
95         if ((lvl) && (lvl) <= CONFIG_DEBUG_LEVEL)       \
96             __debug_isr(__func__);                      \
97     } while (0)
98 #define debug_stub(regs) \
99     __debug_stub(__func__, regs)
100
101 // kbd.c
102 void kbd_setup();
103 void handle_15c2(struct bregs *regs);
104
105 // mouse.c
106 void mouse_setup();
107
108 // system.c
109 void mathcp_setup();
110
111 // serial.c
112 void serial_setup();
113 void lpt_setup();
114
115 // clock.c
116 void timer_setup();
117 int usleep(u32 count);
118 void handle_1583(struct bregs *regs);
119 void handle_1586(struct bregs *regs);
120
121 // apm.c
122 void VISIBLE16 handle_1553(struct bregs *regs);
123
124 // pcibios.c
125 void handle_1ab1(struct bregs *regs);
126
127 // util.c
128 u8 checksum(u8 *far_data, u32 len);
129
130 // shadow.c
131 void make_bios_writable();
132 void make_bios_readonly();
133
134 // pciinit.c
135 void pci_bios_setup(void);
136
137 // smm.c
138 void smm_init();
139
140 // smpdetect.c
141 int smp_probe(void);
142
143 // mptable.c
144 void mptable_init(void);
145
146 // smbios.c
147 void smbios_init(void);
148
149 // boot.c
150 void printf_bootdev(u16 bootdev);
151
152 // post_menu.c
153 void interactive_bootmenu();
154
155 // coreboot.c
156 void coreboot_fill_map();
157
158 #endif // util.h