After this has been brought up many times before, rename src/arch/i386 to
[coreboot.git] / src / include / lib.h
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2009 Myles Watson <mylesgw@gmail.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
18  */
19
20 /* This file is for "nuisance prototypes" that have no other home. */
21
22 #ifndef __LIB_H__
23 #define __LIB_H__
24
25 #ifndef __ROMCC__ /* romcc doesn't support prototypes. */
26
27 #ifndef __PRE_RAM__ /* Conflicts with romcc_io.h */
28 /* Defined in src/lib/clog2.c */
29 unsigned long log2(unsigned long x);
30 #endif
31
32 /* Defined in src/lib/lzma.c */
33 unsigned long ulzma(unsigned char *src, unsigned char *dst);
34
35 /* Defined in src/arch/x86/boot/gdt.c */
36 void move_gdt(void);
37
38 /* Defined in src/lib/ramtest.c */
39 void ram_check(unsigned long start, unsigned long stop);
40 void quick_ram_check(void);
41
42 /* Defined in src/pc80/serial.c */
43 void uart_init(void);
44
45 /* Defined in romstage.c */
46 #if defined(CONFIG_CPU_AMD_LX) && CONFIG_CPU_AMD_LX
47 void cache_as_ram_main(void);
48 #else
49 void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx);
50 #endif
51
52 #endif /* __ROMCC__ */
53 #endif /* __LIB_H__ */