blob: 654cf31337e97dfef95cc69c289177b39a086f44 [file] [log] [blame]
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05001// Basic x86 asm functions and function defs.
2//
Kevin O'Connor5b199ac2009-05-06 23:23:01 -04003// Copyright (C) 2008,2009 Kevin O'Connor <kevin@koconnor.net>
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05004//
Kevin O'Connorb1b7c2a2009-01-15 20:52:58 -05005// This file may be distributed under the terms of the GNU LGPLv3 license.
Kevin O'Connor786502d2008-02-27 10:41:41 -05006#ifndef __UTIL_H
7#define __UTIL_H
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05008
Kevin O'Connor9521e262008-07-04 13:04:29 -04009#include "types.h" // u32
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050010
Kevin O'Connor786502d2008-02-27 10:41:41 -050011static inline void irq_disable(void)
12{
13 asm volatile("cli": : :"memory");
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050014}
15
Kevin O'Connor786502d2008-02-27 10:41:41 -050016static inline void irq_enable(void)
17{
18 asm volatile("sti": : :"memory");
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050019}
20
21static 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
29static inline void irq_restore(unsigned long flags)
30{
31 asm volatile("pushl %0 ; popfl" : : "g" (flags) : "memory", "cc");
32}
33
Kevin O'Connor06ad44e2008-04-05 19:30:02 -040034static inline void cpu_relax(void)
35{
36 asm volatile("rep ; nop": : :"memory");
37}
38
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -050039static inline void nop(void)
40{
41 asm volatile("nop");
42}
43
Kevin O'Connor95b2f782008-03-05 19:52:06 -050044static inline void hlt(void)
45{
46 asm volatile("hlt");
47}
48
Kevin O'Connorda4a6482008-06-08 13:48:06 -040049static inline void wbinvd(void)
50{
51 asm volatile("wbinvd");
52}
53
Kevin O'Connore97ca7b2009-06-21 09:10:28 -040054#define CPUID_MSR (1 << 5)
55#define CPUID_APIC (1 << 9)
56#define CPUID_MTRR (1 << 12)
Kevin O'Connor84ad59a2008-07-04 05:47:26 -040057static inline void cpuid(u32 index, u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
58{
59 asm("cpuid"
60 : "=a" (*eax), "=b" (*ebx), "=c" (*ecx), "=d" (*edx)
61 : "0" (index));
62}
63
Kevin O'Connore97ca7b2009-06-21 09:10:28 -040064static inline u64 rdmsr(u32 index)
65{
66 u64 ret;
67 asm ("rdmsr" : "=A"(ret) : "c"(index));
68 return ret;
69}
70
71static inline void wrmsr(u32 index, u64 val)
72{
73 asm volatile ("wrmsr" : : "c"(index), "A"(val));
74}
75
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -050076static inline u64 rdtscll(void)
77{
78 u64 val;
79 asm volatile("rdtsc" : "=A" (val));
80 return val;
81}
82
Kevin O'Connor942d4952009-06-10 22:44:06 -040083#define call16_simpint(nr, peax, pflags) do { \
Kevin O'Connor0b60a062009-06-15 23:03:05 -040084 ASSERT16(); \
Kevin O'Connor942d4952009-06-10 22:44:06 -040085 asm volatile( \
86 "stc\n" \
87 "int %2\n" \
88 "pushfl\n" \
89 "popl %1\n" \
90 "cli\n" \
91 "cld" \
92 : "+a"(*peax), "=r"(*pflags) \
93 : "i"(nr) \
94 : "cc", "memory"); \
95 } while (0)
96
Kevin O'Connora83ff552009-01-01 21:00:59 -050097// util.c
98inline u32 stack_hop(u32 eax, u32 edx, u32 ecx, void *func);
Kevin O'Connor94fd47e2009-02-15 15:21:10 -050099u8 checksum_far(u16 buf_seg, void *buf_far, u32 len);
100u8 checksum(void *buf, u32 len);
Kevin O'Connor38d1a342009-04-18 16:59:47 -0400101int memcmp(const void *s1, const void *s2, size_t n);
Kevin O'Connor67823442009-04-13 14:14:51 -0400102size_t strlen(const char *s);
Kevin O'Connor38d1a342009-04-18 16:59:47 -0400103int strcmp(const char *s1, const char *s2);
Kevin O'Connor5b199ac2009-05-06 23:23:01 -0400104inline void memset_far(u16 d_seg, void *d_far, u8 c, size_t len);
105inline void memset16_far(u16 d_seg, void *d_far, u16 c, size_t len);
Kevin O'Connor5e4235f2008-04-12 09:00:04 -0400106void *memset(void *s, int c, size_t n);
Kevin O'Connor5a1d0fc2009-06-15 23:35:30 -0400107void *memcpy(void *d1, const void *s1, size_t len);
108#if MODE16 == 0
Kevin O'Connor942d4952009-06-10 22:44:06 -0400109#define memcpy __builtin_memcpy
Kevin O'Connor5a1d0fc2009-06-15 23:35:30 -0400110#endif
Kevin O'Connor8b267cb2009-01-19 19:25:21 -0500111inline void memcpy_far(u16 d_seg, void *d_far
112 , u16 s_seg, const void *s_far, size_t len);
Kevin O'Connorc7812932008-06-08 23:08:12 -0400113void *memmove(void *d, const void *s, size_t len);
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500114char *strtcpy(char *dest, const char *src, size_t len);
Kevin O'Connor9521e262008-07-04 13:04:29 -0400115struct bregs;
116inline void call16(struct bregs *callregs);
Kevin O'Connor6e5b4a42008-12-06 13:03:52 -0500117inline void call16big(struct bregs *callregs);
Kevin O'Connor9521e262008-07-04 13:04:29 -0400118inline void __call16_int(struct bregs *callregs, u16 offset);
Kevin O'Connor3a47a312008-03-01 14:46:37 -0500119#define call16_int(nr, callregs) do { \
120 extern void irq_trampoline_ ##nr (); \
Kevin O'Connor117fc212008-04-13 18:17:02 -0400121 __call16_int((callregs), (u32)&irq_trampoline_ ##nr ); \
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500122 } while (0)
Kevin O'Connor5ca4b952009-02-15 13:45:48 -0500123void usleep(u32 usec);
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500124int get_keystroke(int msec);
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500125
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500126// output.c
Kevin O'Connor61d6b062008-06-21 12:15:10 -0400127void debug_serial_setup();
Kevin O'Connore07e18e2009-02-08 17:07:29 -0500128void panic(const char *fmt, ...)
Kevin O'Connor567e4e32008-04-05 11:37:51 -0400129 __attribute__ ((format (printf, 1, 2)))
130 __attribute__ ((noreturn));
Kevin O'Connor567e4e32008-04-05 11:37:51 -0400131void printf(const char *fmt, ...)
132 __attribute__ ((format (printf, 1, 2)));
Kevin O'Connorac8df8c2008-05-24 23:46:33 -0400133void __dprintf(const char *fmt, ...)
134 __attribute__ ((format (printf, 1, 2)));
135#define dprintf(lvl, fmt, args...) do { \
136 if (CONFIG_DEBUG_LEVEL && (lvl) <= CONFIG_DEBUG_LEVEL) \
137 __dprintf((fmt) , ##args ); \
138 } while (0)
Kevin O'Connor05600342009-01-02 13:10:58 -0500139void __debug_enter(struct bregs *regs, const char *fname);
140void __debug_stub(struct bregs *regs, int lineno, const char *fname);
Kevin O'Connored128492008-03-11 11:14:59 -0400141void __debug_isr(const char *fname);
Kevin O'Connor15c1f222008-06-12 22:59:43 -0400142#define debug_enter(regs, lvl) do { \
143 if ((lvl) && (lvl) <= CONFIG_DEBUG_LEVEL) \
Kevin O'Connor05600342009-01-02 13:10:58 -0500144 __debug_enter((regs), __func__); \
Kevin O'Connor15c1f222008-06-12 22:59:43 -0400145 } while (0)
146#define debug_isr(lvl) do { \
147 if ((lvl) && (lvl) <= CONFIG_DEBUG_LEVEL) \
148 __debug_isr(__func__); \
149 } while (0)
Kevin O'Connor05600342009-01-02 13:10:58 -0500150#define debug_stub(regs) \
151 __debug_stub((regs), __LINE__, __func__)
Kevin O'Connor1eba4292009-02-17 23:14:25 -0500152void hexdump(void *d, int len);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500153
154// kbd.c
Kevin O'Connorefda97d2008-07-04 13:10:12 -0400155void kbd_setup();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500156void handle_15c2(struct bregs *regs);
Kevin O'Connorbdce35f2008-02-26 21:33:14 -0500157
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400158// mouse.c
159void mouse_setup();
160
161// system.c
Kevin O'Connore7916362008-12-28 22:03:17 -0500162extern u32 RamSize;
163extern u64 RamSizeOver4G;
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400164void mathcp_setup();
165
Kevin O'Connor913cc2e2008-04-13 17:31:45 -0400166// serial.c
167void serial_setup();
168void lpt_setup();
169
Kevin O'Connorbdce35f2008-02-26 21:33:14 -0500170// clock.c
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400171void timer_setup();
Kevin O'Connorbc2aecd2008-11-28 16:40:06 -0500172void ndelay(u32 count);
173void udelay(u32 count);
174void mdelay(u32 count);
Kevin O'Connor4e6c9702008-12-13 10:45:50 -0500175u64 calc_future_tsc(u32 msecs);
Kevin O'Connorbdce35f2008-02-26 21:33:14 -0500176void handle_1583(struct bregs *regs);
Kevin O'Connor5be04902008-05-18 17:12:06 -0400177void handle_1586(struct bregs *regs);
Kevin O'Connorbdce35f2008-02-26 21:33:14 -0500178
Kevin O'Connor95b2f782008-03-05 19:52:06 -0500179// apm.c
Kevin O'Connor44d65302008-03-08 11:34:46 -0500180void VISIBLE16 handle_1553(struct bregs *regs);
Kevin O'Connor95b2f782008-03-05 19:52:06 -0500181
Kevin O'Connora0dc2962008-03-16 14:29:32 -0400182// pcibios.c
183void handle_1ab1(struct bregs *regs);
184
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400185// shadow.c
186void make_bios_writable();
187void make_bios_readonly();
188
Kevin O'Connor0525d292008-07-04 06:18:30 -0400189// pciinit.c
190void pci_bios_setup(void);
Kevin O'Connora4d35762008-03-08 15:43:03 -0500191
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400192// smm.c
193void smm_init();
194
Kevin O'Connore97ca7b2009-06-21 09:10:28 -0400195// smp.c
Kevin O'Connor603bfc32009-06-22 20:04:56 -0400196extern u32 CountCPUs;
Kevin O'Connore97ca7b2009-06-21 09:10:28 -0400197void wrmsr_smp(u32 index, u64 val);
198void smp_probe(void);
Kevin O'Connoracf13742008-11-29 11:19:19 -0500199void smp_probe_setup(void);
Kevin O'Connor84ad59a2008-07-04 05:47:26 -0400200
Kevin O'Connor0525d292008-07-04 06:18:30 -0400201// smbios.c
202void smbios_init(void);
203
Kevin O'Connorc7812932008-06-08 23:08:12 -0400204// coreboot.c
Kevin O'Connor67823442009-04-13 14:14:51 -0400205const char *cbfs_findNprefix(const char *prefix, int n);
Kevin O'Connor1edc89d2009-04-30 21:50:35 -0400206int cbfs_copy_optionrom(void *dst, u32 maxlen, u32 vendev);
Kevin O'Connor67823442009-04-13 14:14:51 -0400207void cbfs_run_payload(const char *filename);
Kevin O'Connor1edc89d2009-04-30 21:50:35 -0400208struct cbfs_file;
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400209struct cbfs_file *cbfs_copyfile_prefix(void *dst, u32 maxlen, const char *prefix
Kevin O'Connor09880da2009-06-17 20:35:41 -0400210 , struct cbfs_file *last);
Kevin O'Connor4c0c85a2009-04-11 23:31:29 -0400211void coreboot_setup();
Kevin O'Connorc7812932008-06-08 23:08:12 -0400212
Kevin O'Connorcbffa8e2008-08-17 11:11:07 -0400213// vgahooks.c
214void handle_155f();
215
Kevin O'Connor714325c2008-11-01 20:32:27 -0400216// optionroms.c
Kevin O'Connor0a924122009-02-08 19:43:47 -0500217void call_bcv(u16 seg, u16 ip);
Kevin O'Connor714325c2008-11-01 20:32:27 -0400218void optionrom_setup();
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400219void vga_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400220
Kevin O'Connor18e38b22008-12-10 20:40:13 -0500221// resume.c
222void init_dma();
223
Kevin O'Connor0c3068d2008-12-21 17:51:36 -0500224// pnpbios.c
225#define PNP_SIGNATURE 0x506e5024 // $PnP
226u16 get_pnp_offset();
227void pnp_setup();
228
Kevin O'Connor7061eb62009-01-04 21:48:22 -0500229// mtrr.c
230void mtrr_setup(void);
231
Kevin O'Connor18e38b22008-12-10 20:40:13 -0500232// romlayout.S
233void reset_vector() __attribute__ ((noreturn));
234
Kevin O'Connor30853762009-01-17 18:49:20 -0500235// misc.c
236extern u8 BiosChecksum;
237
Kevin O'Connor786502d2008-02-27 10:41:41 -0500238#endif // util.h