Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / cpu / amd / dualcore / dualcore_id.c
1 /* 2004.12 yhlu add dual core support */
2
3 #include <arch/cpu.h>
4 #include <cpu/amd/multicore.h>
5 #ifdef __PRE_RAM__
6 #include <cpu/amd/model_fxx_msr.h>
7 #endif
8
9 //called by bus_cpu_scan too
10 unsigned int read_nb_cfg_54(void)
11 {
12         msr_t msr;
13         msr = rdmsr(NB_CFG_MSR);
14         return ( ( msr.hi >> (54-32)) & 1);
15 }
16
17 static inline unsigned get_initial_apicid(void)
18 {
19         return ((cpuid_ebx(1) >> 24) & 0xf);
20 }
21
22 //called by amd_siblings too
23 #define CORE_ID_BIT 1
24 #define NODE_ID_BIT 3
25 struct node_core_id get_node_core_id(unsigned nb_cfg_54)
26 {
27         struct node_core_id id;
28         //    get the apicid via cpuid(1) ebx[27:24]
29         if( nb_cfg_54) {
30                 //   when NB_CFG[54] is set, nodeid = ebx[27:25], coreid = ebx[24]
31                 id.coreid = (cpuid_ebx(1) >> 24) & 0xf;
32                 id.nodeid = (id.coreid>>CORE_ID_BIT);
33                 id.coreid &= ((1<<CORE_ID_BIT)-1);
34         }
35         else
36         {
37                 // when NB_CFG[54] is clear, nodeid = ebx[26:24], coreid = ebx[27]
38                 id.nodeid = (cpuid_ebx(1) >> 24) & 0xf;
39                 id.coreid = (id.nodeid>>NODE_ID_BIT);
40                 id.nodeid &= ((1<<NODE_ID_BIT)-1);
41         }
42         return id;
43 }
44
45 static inline unsigned get_core_num(void)
46 {
47         return (cpuid_ecx(0x80000008) & 0xff);
48 }
49
50 static inline struct node_core_id get_node_core_id_x(void)
51 {
52
53         return get_node_core_id(read_nb_cfg_54()); // for pre_e0() nb_cfg_54 always be 0
54 }
55