/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef CPU_CPU_H #define CPU_CPU_H #include /* IWYU pragma: export */ #include void cpu_initialize(void); uintptr_t cpu_get_lapic_addr(void); struct bus; int cpu_phys_address_size(void); #if ENV_RAMSTAGE #define __cpu_driver __attribute__((used, __section__(".rodata.cpu_driver"))) #else #define __cpu_driver __attribute__((unused)) #endif /** start of compile time generated pci driver array */ extern struct cpu_driver _cpu_drivers[]; /** end of compile time generated pci driver array */ extern struct cpu_driver _ecpu_drivers[]; #endif /* CPU_CPU_H */