blob: d45ed3a4722ac4659b814b07de1bfcb2b96a7148 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <smp/node.h>
#include <cpu/x86/msr.h>
#if CONFIG_SMP
int boot_cpu(void)
{
int bsp;
msr_t msr;
msr = rdmsr(0x1b);
bsp = !!(msr.lo & (1 << 8));
return bsp;
}
#endif
|