wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
Albert ARIBAUD | 60fbc8d | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 3 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se. |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
wdenk | ef5fe75 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 8 | #ifndef _U_BOOT_I386_H_ |
| 9 | #define _U_BOOT_I386_H_ 1 |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 10 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 11 | /* cpu/.../cpu.c */ |
Simon Glass | 19a8b12 | 2014-11-06 13:20:06 -0700 | [diff] [blame^] | 12 | int arch_cpu_init(void); |
Graeme Russ | 121931c | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 13 | int x86_cpu_init_r(void); |
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 14 | int cpu_init_r(void); |
Graeme Russ | 121931c | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 15 | int x86_cpu_init_f(void); |
Graeme Russ | 078395c | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 16 | int cpu_init_f(void); |
Graeme Russ | 3536896 | 2011-12-31 22:58:15 +1100 | [diff] [blame] | 17 | void init_gd(gd_t *id, u64 *gdt_addr); |
| 18 | void setup_gdt(gd_t *id, u64 *gdt_addr); |
Graeme Russ | 6e25600 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 19 | int init_cache(void); |
Gabe Black | 846d08e | 2012-10-20 12:33:10 +0000 | [diff] [blame] | 20 | int cleanup_before_linux(void); |
Simon Glass | ace6cd8 | 2013-04-17 16:13:34 +0000 | [diff] [blame] | 21 | void panic_puts(const char *str); |
Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 22 | |
| 23 | /* cpu/.../timer.c */ |
| 24 | void timer_isr(void *); |
| 25 | typedef void (timer_fnc_t) (void); |
| 26 | int register_timer_isr (timer_fnc_t *isr_func); |
Simon Glass | 11d7a5b | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 27 | unsigned long get_tbclk_mhz(void); |
| 28 | void timer_set_base(uint64_t base); |
Simon Glass | 3e8b605 | 2013-04-17 16:13:39 +0000 | [diff] [blame] | 29 | int pcat_timer_init(void); |
Graeme Russ | 7679d1f | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 30 | |
Simon Glass | 8aa7873 | 2014-11-06 13:20:05 -0700 | [diff] [blame] | 31 | /* Architecture specific DRAM init */ |
| 32 | int dram_init(void); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 33 | |
Graeme Russ | 77290ee | 2009-02-24 21:13:40 +1100 | [diff] [blame] | 34 | /* cpu/.../interrupts.c */ |
| 35 | int cpu_init_interrupts(void); |
| 36 | |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 37 | /* board/.../... */ |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 38 | int dram_init(void); |
| 39 | |
Graeme Russ | a8d06b4 | 2010-04-24 00:05:48 +1000 | [diff] [blame] | 40 | void setup_pcat_compatibility(void); |
| 41 | |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 42 | void isa_unmap_rom(u32 addr); |
| 43 | u32 isa_map_rom(u32 bus_addr, int size); |
| 44 | |
Graeme Russ | cbfce1d | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 45 | /* arch/x86/lib/... */ |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 46 | int video_bios_init(void); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 47 | |
Graeme Russ | d7755b4 | 2012-01-01 15:06:39 +1100 | [diff] [blame] | 48 | void board_init_f_r_trampoline(ulong) __attribute__ ((noreturn)); |
| 49 | void board_init_f_r(void) __attribute__ ((noreturn)); |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 50 | |
Vadim Bendebury | 1d82bac | 2012-10-23 18:04:32 +0000 | [diff] [blame] | 51 | /* Read the time stamp counter */ |
Simon Glass | 42081ce | 2013-06-11 11:14:52 -0700 | [diff] [blame] | 52 | static inline __attribute__((no_instrument_function)) uint64_t rdtsc(void) |
Vadim Bendebury | 1d82bac | 2012-10-23 18:04:32 +0000 | [diff] [blame] | 53 | { |
| 54 | uint32_t high, low; |
| 55 | __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)); |
| 56 | return (((uint64_t)high) << 32) | low; |
| 57 | } |
| 58 | |
| 59 | /* board/... */ |
| 60 | void timer_set_tsc_base(uint64_t new_base); |
| 61 | uint64_t timer_get_tsc(void); |
| 62 | |
wdenk | ef5fe75 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 63 | #endif /* _U_BOOT_I386_H_ */ |