Add initial support for apmbios code.
[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 "ioport.h" // outb
10 #include "biosvar.h" // struct bregs
11
12 static inline void irq_disable(void)
13 {
14     asm volatile("cli": : :"memory");
15 }
16
17 static inline void irq_enable(void)
18 {
19     asm volatile("sti": : :"memory");
20 }
21
22 static inline unsigned long irq_save(void)
23 {
24     unsigned long flags;
25     asm volatile("pushfl ; popl %0" : "=g" (flags));
26     irq_disable();
27     return flags;
28 }
29
30 static inline void irq_restore(unsigned long flags)
31 {
32     asm volatile("pushl %0 ; popfl" : : "g" (flags) : "memory", "cc");
33 }
34
35 static inline void nop(void)
36 {
37     asm volatile("nop");
38 }
39
40 static inline void hlt(void)
41 {
42     asm volatile("hlt");
43 }
44
45 #define BX_PANIC(fmt, args...) bprintf(0, fmt , ##args)
46 #define BX_INFO(fmt, args...) bprintf(0, fmt , ##args)
47
48 static inline void
49 memset(void *s, int c, size_t n)
50 {
51     while (n)
52         ((char *)s)[--n] = c;
53 }
54
55 static inline void
56 eoi_master_pic()
57 {
58     outb(PIC1_IRQ5, PORT_PIC1);
59 }
60
61 static inline void
62 eoi_both_pics()
63 {
64     outb(PIC2_IRQ13, PORT_PIC2);
65     eoi_master_pic();
66 }
67
68 static inline
69 void call16(struct bregs *callregs)
70 {
71     asm volatile(
72         "pushl %%ebp\n" // Save state
73         "pushfl\n"
74 #ifdef MODE16
75         "calll __call16\n"
76 #else
77         "calll __call16_from32\n"
78 #endif
79         "popfl\n"       // Restore state
80         "popl %%ebp\n"
81         : "+a" (callregs), "+m" (*callregs)
82         :
83         : "ebx", "ecx", "edx", "esi", "edi");
84 }
85
86 static inline
87 void __call16_int(struct bregs *callregs, u16 offset)
88 {
89     callregs->cs = SEG_BIOS;
90     callregs->ip = offset;
91     call16(callregs);
92 }
93
94 #ifdef MODE16
95 #define call16_int(nr, callregs) do {                           \
96         extern void irq_trampoline_ ##nr ();                    \
97         __call16_int((callregs), (u16)&irq_trampoline_ ##nr );  \
98     } while (0)
99 #else
100 #include "../out/rom16.offset.auto.h"
101 #define call16_int(nr, callregs)                                \
102     __call16_int((callregs), OFFSET_irq_trampoline_ ##nr )
103 #endif
104
105 // output.c
106 void bprintf(u16 action, const char *fmt, ...)
107     __attribute__ ((format (printf, 2, 3)));
108 void __debug_enter(const char *fname, struct bregs *regs);
109 void __debug_exit(const char *fname, struct bregs *regs);
110 void __debug_stub(const char *fname, struct bregs *regs);
111 void __debug_isr(const char *fname, struct bregs *regs);
112 #define debug_enter(regs) \
113     __debug_enter(__func__, regs)
114 #define debug_exit(regs) \
115     __debug_exit(__func__, regs)
116 #define debug_stub(regs) \
117     __debug_stub(__func__, regs)
118 #define debug_isr(regs) \
119     __debug_isr(__func__, regs)
120 #define printf(fmt, args...)                     \
121     bprintf(1, fmt , ##args )
122
123 // kbd.c
124 void handle_15c2(struct bregs *regs);
125
126 // clock.c
127 void handle_1583(struct bregs *regs);
128
129 // apm.c
130 void handle_1553(struct bregs *regs);
131
132 // Frequent bios return helper
133 #define RET_EUNSUPPORTED 0x86
134 static inline void
135 handle_ret(struct bregs *regs, u8 code)
136 {
137     regs->ah = code;
138     set_cf(regs, code);
139 }
140
141 #endif // util.h