coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
cpu.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #ifndef _SOC_CPU_H_
4 #define _SOC_CPU_H_
5 
6 #include <device/device.h>
7 #include <cpu/intel/cpu_ids.h>
8 #include <cpu/x86/msr.h>
9 
10 /* CPU bus clock is fixed at 100MHz */
11 #define CPU_BCLK 100
12 
13 void xeon_sp_init_cpus(struct device *dev);
14 
15 #endif
void xeon_sp_init_cpus(struct device *dev)
Definition: cpu.c:226
Definition: device.h:107