u-boot-x86.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. #ifndef _U_BOOT_I386_H_
  8. #define _U_BOOT_I386_H_ 1
  9. /* cpu/.../cpu.c */
  10. int arch_cpu_init(void);
  11. int x86_cpu_init_f(void);
  12. int cpu_init_f(void);
  13. void init_gd(gd_t *id, u64 *gdt_addr);
  14. void setup_gdt(gd_t *id, u64 *gdt_addr);
  15. int init_cache(void);
  16. int cleanup_before_linux(void);
  17. /* cpu/.../timer.c */
  18. void timer_isr(void *);
  19. typedef void (timer_fnc_t) (void);
  20. int register_timer_isr (timer_fnc_t *isr_func);
  21. unsigned long get_tbclk_mhz(void);
  22. void timer_set_base(uint64_t base);
  23. int pcat_timer_init(void);
  24. /* cpu/.../interrupts.c */
  25. int cpu_init_interrupts(void);
  26. int cleanup_before_linux(void);
  27. int x86_cleanup_before_linux(void);
  28. void x86_enable_caches(void);
  29. void x86_disable_caches(void);
  30. int x86_init_cache(void);
  31. void reset_cpu(ulong addr);
  32. ulong board_get_usable_ram_top(ulong total_size);
  33. void dram_init_banksize(void);
  34. int default_print_cpuinfo(void);
  35. /* Set up a UART which can be used with printch(), printhex8(), etc. */
  36. int setup_early_uart(void);
  37. void setup_pcat_compatibility(void);
  38. void isa_unmap_rom(u32 addr);
  39. u32 isa_map_rom(u32 bus_addr, int size);
  40. /* arch/x86/lib/... */
  41. int video_bios_init(void);
  42. void board_init_f_r_trampoline(ulong) __attribute__ ((noreturn));
  43. void board_init_f_r(void) __attribute__ ((noreturn));
  44. int arch_misc_init(void);
  45. /* Read the time stamp counter */
  46. static inline __attribute__((no_instrument_function)) uint64_t rdtsc(void)
  47. {
  48. uint32_t high, low;
  49. __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high));
  50. return (((uint64_t)high) << 32) | low;
  51. }
  52. /* board/... */
  53. void timer_set_tsc_base(uint64_t new_base);
  54. uint64_t timer_get_tsc(void);
  55. void quick_ram_check(void);
  56. int x86_init_cpus(void);
  57. #define PCI_VGA_RAM_IMAGE_START 0xc0000
  58. #endif /* _U_BOOT_I386_H_ */