This pragma says to IWYU (Include What You Use) that the current file is supposed to provide commented headers. Change-Id: I482c645f6b5f955e532ad94def1b2f74f15ca908 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/68332 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
32 lines
964 B
C
32 lines
964 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef CPU_CPU_H
|
|
#define CPU_CPU_H
|
|
|
|
#include <arch/cpu.h> /* IWYU pragma: export */
|
|
#include <stdint.h>
|
|
|
|
void cpu_initialize(unsigned int cpu_index);
|
|
/* Returns default APIC id based on logical_cpu number or < 0 on failure. */
|
|
int cpu_get_apic_id(int logical_cpu);
|
|
uintptr_t cpu_get_lapic_addr(void);
|
|
/* Function to keep track of cpu default apic_id */
|
|
void cpu_add_map_entry(unsigned int index);
|
|
struct bus;
|
|
void initialize_cpus(struct bus *cpu_bus);
|
|
asmlinkage void secondary_cpu_init(unsigned int cpu_index);
|
|
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 */
|