1201_ht_bus0_dev0_fidvid_core.diff
[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/dualcore.h>
5 #ifdef __ROMCC__
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 struct node_core_id get_node_core_id(unsigned nb_cfg_54) 
24 {
25         struct node_core_id id;
26         //    get the apicid via cpuid(1) ebx[27:24]
27         if( nb_cfg_54) {
28                 //   when NB_CFG[54] is set, nodeid = ebx[27:25], coreid = ebx[24]
29                 id.coreid = (cpuid_ebx(1) >> 24) & 0xf;
30                 id.nodeid = (id.coreid>>1);
31                 id.coreid &= 1;
32         } 
33         else 
34         {
35                 // when NB_CFG[54] is clear, nodeid = ebx[26:24], coreid = ebx[27]
36                 id.nodeid = (cpuid_ebx(1) >> 24) & 0xf;
37                 id.coreid = (id.nodeid>>3);
38                 id.nodeid &= 7;
39         }
40         return id;
41 }
42
43 static inline unsigned get_core_num(void)
44 {
45         return (cpuid_ecx(0x80000008) & 0xff);
46 }
47
48 static inline struct node_core_id get_node_core_id_x(void) {
49
50         return get_node_core_id( read_nb_cfg_54() ); // for pre_e0() nb_cfg_54 always be 0
51 }
52