1 /* 2 * (C) Copyright 2002 3 * Daniel Engström, Omicron Ceti AB, daniel@omicron.se. 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #ifndef _U_BOOT_I386_H_ 9 #define _U_BOOT_I386_H_ 1 10 11 /* cpu/.../cpu.c */ 12 int arch_cpu_init(void); 13 int x86_cpu_init_f(void); 14 int cpu_init_f(void); 15 void init_gd(gd_t *id, u64 *gdt_addr); 16 void setup_gdt(gd_t *id, u64 *gdt_addr); 17 int init_cache(void); 18 int cleanup_before_linux(void); 19 20 /* cpu/.../timer.c */ 21 void timer_isr(void *); 22 typedef void (timer_fnc_t) (void); 23 int register_timer_isr (timer_fnc_t *isr_func); 24 unsigned long get_tbclk_mhz(void); 25 void timer_set_base(uint64_t base); 26 int pcat_timer_init(void); 27 28 /* cpu/.../interrupts.c */ 29 int cpu_init_interrupts(void); 30 31 int cleanup_before_linux(void); 32 int x86_cleanup_before_linux(void); 33 void x86_enable_caches(void); 34 void x86_disable_caches(void); 35 int x86_init_cache(void); 36 void reset_cpu(ulong addr); 37 ulong board_get_usable_ram_top(ulong total_size); 38 void dram_init_banksize(void); 39 int default_print_cpuinfo(void); 40 41 /* Set up a UART which can be used with printch(), printhex8(), etc. */ 42 int setup_early_uart(void); 43 44 void setup_pcat_compatibility(void); 45 46 void isa_unmap_rom(u32 addr); 47 u32 isa_map_rom(u32 bus_addr, int size); 48 49 /* arch/x86/lib/... */ 50 int video_bios_init(void); 51 52 void board_init_f_r_trampoline(ulong) __attribute__ ((noreturn)); 53 void board_init_f_r(void) __attribute__ ((noreturn)); 54 55 int arch_misc_init(void); 56 57 /* Read the time stamp counter */ 58 static inline __attribute__((no_instrument_function)) uint64_t rdtsc(void) 59 { 60 uint32_t high, low; 61 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)); 62 return (((uint64_t)high) << 32) | low; 63 } 64 65 /* board/... */ 66 void timer_set_tsc_base(uint64_t new_base); 67 uint64_t timer_get_tsc(void); 68 69 void quick_ram_check(void); 70 71 int x86_init_cpus(void); 72 73 #define PCI_VGA_RAM_IMAGE_START 0xc0000 74 75 #endif /* _U_BOOT_I386_H_ */ 76