wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 3 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se. |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 8 | #ifndef _U_BOOT_I386_H_ |
| 9 | #define _U_BOOT_I386_H_ 1 |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 10 | |
Simon Glass | 3ff240c | 2017-05-17 08:22:56 -0600 | [diff] [blame^] | 11 | struct global_data; |
| 12 | |
Bin Meng | 002610f | 2015-06-07 11:33:13 +0800 | [diff] [blame] | 13 | extern char gdt_rom[]; |
| 14 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 15 | /* cpu/.../cpu.c */ |
Simon Glass | 8b37c76 | 2014-11-06 13:20:06 -0700 | [diff] [blame] | 16 | int arch_cpu_init(void); |
Graeme Russ | 0ea76e9 | 2011-02-12 15:11:35 +1100 | [diff] [blame] | 17 | int x86_cpu_init_f(void); |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 18 | int cpu_init_f(void); |
Simon Glass | 3ff240c | 2017-05-17 08:22:56 -0600 | [diff] [blame^] | 19 | void setup_gdt(struct global_data *id, u64 *gdt_addr); |
Bin Meng | 002610f | 2015-06-07 11:33:13 +0800 | [diff] [blame] | 20 | /* |
| 21 | * Setup FSP execution environment GDT to use the one we used in |
| 22 | * arch/x86/cpu/start16.S and reload the segment registers. |
| 23 | */ |
| 24 | void setup_fsp_gdt(void); |
Graeme Russ | d653244 | 2011-12-27 22:46:43 +1100 | [diff] [blame] | 25 | int init_cache(void); |
Gabe Black | f30fc4d | 2012-10-20 12:33:10 +0000 | [diff] [blame] | 26 | int cleanup_before_linux(void); |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 27 | |
| 28 | /* cpu/.../timer.c */ |
| 29 | void timer_isr(void *); |
| 30 | typedef void (timer_fnc_t) (void); |
| 31 | int register_timer_isr (timer_fnc_t *isr_func); |
Simon Glass | e761ecd | 2013-04-17 16:13:36 +0000 | [diff] [blame] | 32 | unsigned long get_tbclk_mhz(void); |
| 33 | void timer_set_base(uint64_t base); |
Bin Meng | da3fe24 | 2015-10-22 19:13:30 -0700 | [diff] [blame] | 34 | int i8254_init(void); |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 35 | |
Graeme Russ | abf0cd3 | 2009-02-24 21:13:40 +1100 | [diff] [blame] | 36 | /* cpu/.../interrupts.c */ |
| 37 | int cpu_init_interrupts(void); |
| 38 | |
Simon Glass | e1ffd81 | 2014-11-06 13:20:08 -0700 | [diff] [blame] | 39 | int cleanup_before_linux(void); |
| 40 | int x86_cleanup_before_linux(void); |
| 41 | void x86_enable_caches(void); |
| 42 | void x86_disable_caches(void); |
| 43 | int x86_init_cache(void); |
| 44 | void reset_cpu(ulong addr); |
| 45 | ulong board_get_usable_ram_top(ulong total_size); |
Simon Glass | 727c1a9 | 2014-11-10 18:00:26 -0700 | [diff] [blame] | 46 | int default_print_cpuinfo(void); |
Simon Glass | e1ffd81 | 2014-11-06 13:20:08 -0700 | [diff] [blame] | 47 | |
Simon Glass | 447f8b0 | 2015-01-27 22:13:42 -0700 | [diff] [blame] | 48 | /* Set up a UART which can be used with printch(), printhex8(), etc. */ |
Stefan Roese | d521197 | 2016-01-19 14:24:12 +0100 | [diff] [blame] | 49 | int setup_internal_uart(int enable); |
Simon Glass | 447f8b0 | 2015-01-27 22:13:42 -0700 | [diff] [blame] | 50 | |
Graeme Russ | 79ea6b8 | 2010-04-24 00:05:48 +1000 | [diff] [blame] | 51 | void setup_pcat_compatibility(void); |
| 52 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 53 | void isa_unmap_rom(u32 addr); |
| 54 | u32 isa_map_rom(u32 bus_addr, int size); |
| 55 | |
Graeme Russ | fea2572 | 2011-04-13 19:43:28 +1000 | [diff] [blame] | 56 | /* arch/x86/lib/... */ |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 57 | int video_bios_init(void); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 58 | |
Bin Meng | ba65808 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 59 | /* arch/x86/lib/fsp/... */ |
| 60 | |
| 61 | /** |
| 62 | * fsp_save_s3_stack() - save stack address to CMOS for next S3 boot |
| 63 | * |
| 64 | * At the end of pre-relocation phase, save the new stack address |
| 65 | * to CMOS and use it as the stack on next S3 boot for fsp_init() |
| 66 | * continuation function. |
| 67 | * |
| 68 | * @return: 0 if OK, -ve on error |
| 69 | */ |
| 70 | int fsp_save_s3_stack(void); |
| 71 | |
Graeme Russ | f48dd6f | 2012-01-01 15:06:39 +1100 | [diff] [blame] | 72 | void board_init_f_r_trampoline(ulong) __attribute__ ((noreturn)); |
| 73 | void board_init_f_r(void) __attribute__ ((noreturn)); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 74 | |
Bin Meng | afbf140 | 2015-04-24 18:10:06 +0800 | [diff] [blame] | 75 | int arch_misc_init(void); |
| 76 | |
Vadim Bendebury | 2f899e0 | 2012-10-23 18:04:32 +0000 | [diff] [blame] | 77 | /* Read the time stamp counter */ |
Simon Glass | d8819f9 | 2013-06-11 11:14:52 -0700 | [diff] [blame] | 78 | static inline __attribute__((no_instrument_function)) uint64_t rdtsc(void) |
Vadim Bendebury | 2f899e0 | 2012-10-23 18:04:32 +0000 | [diff] [blame] | 79 | { |
| 80 | uint32_t high, low; |
| 81 | __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)); |
| 82 | return (((uint64_t)high) << 32) | low; |
| 83 | } |
| 84 | |
| 85 | /* board/... */ |
| 86 | void timer_set_tsc_base(uint64_t new_base); |
| 87 | uint64_t timer_get_tsc(void); |
Alexander Graf | b7b8410 | 2016-11-17 01:02:57 +0100 | [diff] [blame] | 88 | void board_quiesce_devices(void); |
Vadim Bendebury | 2f899e0 | 2012-10-23 18:04:32 +0000 | [diff] [blame] | 89 | |
Simon Glass | 65dd74a | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 90 | void quick_ram_check(void); |
| 91 | |
Simon Glass | bdc88d4 | 2014-12-29 19:32:24 -0700 | [diff] [blame] | 92 | #define PCI_VGA_RAM_IMAGE_START 0xc0000 |
| 93 | |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 94 | #endif /* _U_BOOT_I386_H_ */ |