]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/x86/include/asm/u-boot-x86.h
board_f: Drop setup_dram_config() wrapper
[people/ms/u-boot.git] / arch / x86 / include / asm / u-boot-x86.h
CommitLineData
2262cfee
WD
1/*
2 * (C) Copyright 2002
fa82f871 3 * Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
2262cfee 4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
2262cfee
WD
6 */
7
3bac3513
WD
8#ifndef _U_BOOT_I386_H_
9#define _U_BOOT_I386_H_ 1
2262cfee 10
002610f6
BM
11extern char gdt_rom[];
12
2262cfee 13/* cpu/.../cpu.c */
8b37c769 14int arch_cpu_init(void);
0ea76e92 15int x86_cpu_init_f(void);
1c409bc7 16int cpu_init_f(void);
9e6c572f 17void setup_gdt(gd_t *id, u64 *gdt_addr);
002610f6
BM
18/*
19 * Setup FSP execution environment GDT to use the one we used in
20 * arch/x86/cpu/start16.S and reload the segment registers.
21 */
22void setup_fsp_gdt(void);
d653244b 23int init_cache(void);
f30fc4de 24int cleanup_before_linux(void);
8c63d476
GR
25
26/* cpu/.../timer.c */
27void timer_isr(void *);
28typedef void (timer_fnc_t) (void);
29int register_timer_isr (timer_fnc_t *isr_func);
e761ecdb
SG
30unsigned long get_tbclk_mhz(void);
31void timer_set_base(uint64_t base);
da3fe247 32int i8254_init(void);
8c63d476 33
abf0cd3d
GR
34/* cpu/.../interrupts.c */
35int cpu_init_interrupts(void);
36
e1ffd817
SG
37int cleanup_before_linux(void);
38int x86_cleanup_before_linux(void);
39void x86_enable_caches(void);
40void x86_disable_caches(void);
41int x86_init_cache(void);
42void reset_cpu(ulong addr);
43ulong board_get_usable_ram_top(ulong total_size);
76b00aca 44int dram_init_banksize(void);
727c1a98 45int default_print_cpuinfo(void);
e1ffd817 46
447f8b01 47/* Set up a UART which can be used with printch(), printhex8(), etc. */
d521197d 48int setup_internal_uart(int enable);
447f8b01 49
79ea6b87
GR
50void setup_pcat_compatibility(void);
51
7a8e9bed
WD
52void isa_unmap_rom(u32 addr);
53u32 isa_map_rom(u32 bus_addr, int size);
54
fea25720 55/* arch/x86/lib/... */
7a8e9bed 56int video_bios_init(void);
2262cfee 57
f48dd6fc
GR
58void board_init_f_r_trampoline(ulong) __attribute__ ((noreturn));
59void board_init_f_r(void) __attribute__ ((noreturn));
2262cfee 60
afbf1404
BM
61int arch_misc_init(void);
62
2f899e03 63/* Read the time stamp counter */
d8819f94 64static inline __attribute__((no_instrument_function)) uint64_t rdtsc(void)
2f899e03
VB
65{
66 uint32_t high, low;
67 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high));
68 return (((uint64_t)high) << 32) | low;
69}
70
71/* board/... */
72void timer_set_tsc_base(uint64_t new_base);
73uint64_t timer_get_tsc(void);
b7b8410a 74void board_quiesce_devices(void);
2f899e03 75
65dd74a6
SG
76void quick_ram_check(void);
77
bdc88d4e
SG
78#define PCI_VGA_RAM_IMAGE_START 0xc0000
79
3bac3513 80#endif /* _U_BOOT_I386_H_ */