cc99e5123b9a59c2aa6afc70aa4f3f548d349907
[coreboot.git] / src / northbridge / amd / amdk8 / northbridge.c
1 /* This should be done by Eric
2         2004.12 yhlu add dual core support
3         2005.01 yhlu add support move apic before pci_domain in MB devicetree.cb
4         2005.02 yhlu add e0 memory hole support
5         2005.11 yhlu add put sb ht chain on bus 0
6 */
7
8 #include <console/console.h>
9 #include <arch/io.h>
10 #include <stdint.h>
11 #include <device/device.h>
12 #include <device/pci.h>
13 #include <device/pci_ids.h>
14 #include <device/hypertransport.h>
15 #include <stdlib.h>
16 #include <string.h>
17 #include <bitops.h>
18 #include <cpu/cpu.h>
19
20 #include <cpu/x86/lapic.h>
21
22 #include <cpu/amd/multicore.h>
23 #if CONFIG_LOGICAL_CPUS==1
24 #include <pc80/mc146818rtc.h>
25 #endif
26
27 #include "chip.h"
28 #include "root_complex/chip.h"
29 #include "northbridge.h"
30
31 #include "amdk8.h"
32
33 #include <cpu/amd/model_fxx_rev.h>
34
35 #include <cpu/amd/amdk8_sysconf.h>
36
37 struct amdk8_sysconf_t sysconf;
38
39 #define MAX_FX_DEVS 8
40 static device_t __f0_dev[MAX_FX_DEVS];
41 static device_t __f1_dev[MAX_FX_DEVS];
42 static unsigned fx_devs=0;
43
44 static void get_fx_devs(void)
45 {
46         int i;
47         for(i = 0; i < MAX_FX_DEVS; i++) {
48                 __f0_dev[i] = dev_find_slot(0, PCI_DEVFN(0x18 + i, 0));
49                 __f1_dev[i] = dev_find_slot(0, PCI_DEVFN(0x18 + i, 1));
50                 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
51                         fx_devs = i+1;
52         }
53         if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
54                 die("Cannot find 0:0x18.[0|1]\n");
55         }
56 }
57
58 static u32 f1_read_config32(unsigned reg)
59 {
60         if (fx_devs == 0)
61                 get_fx_devs();
62         return pci_read_config32(__f1_dev[0], reg);
63 }
64
65 static void f1_write_config32(unsigned reg, u32 value)
66 {
67         int i;
68         if (fx_devs == 0)
69                 get_fx_devs();
70         for(i = 0; i < fx_devs; i++) {
71                 device_t dev;
72                 dev = __f1_dev[i];
73                 if (dev && dev->enabled) {
74                         pci_write_config32(dev, reg, value);
75                 }
76         }
77 }
78
79 static u32 amdk8_nodeid(device_t dev)
80 {
81         return (dev->path.pci.devfn >> 3) - 0x18;
82 }
83
84 static u32 amdk8_scan_chain(device_t dev, u32 nodeid, struct bus *link, u32 link_num, u32 sblink,
85                                 u32 max, u32 offset_unitid)
86 {
87
88                 u32 link_type;
89                 int i;
90                 u32 busses, config_busses;
91                 u32 free_reg, config_reg;
92                 u32 ht_unitid_base[4]; // here assume only 4 HT device on chain
93                 u32 max_bus;
94                 u32 min_bus;
95                 u32 max_devfn;
96
97                 link->cap = 0x80 + (link_num *0x20);
98                 do {
99                         link_type = pci_read_config32(dev, link->cap + 0x18);
100                 } while(link_type & ConnectionPending);
101                 if (!(link_type & LinkConnected)) {
102                         return max;
103                 }
104                 do {
105                         link_type = pci_read_config32(dev, link->cap + 0x18);
106                 } while(!(link_type & InitComplete));
107                 if (!(link_type & NonCoherent)) {
108                         return max;
109                 }
110                 /* See if there is an available configuration space mapping
111                  * register in function 1.
112                  */
113                 free_reg = 0;
114                 for(config_reg = 0xe0; config_reg <= 0xec; config_reg += 4) {
115                         u32 config;
116                         config = f1_read_config32(config_reg);
117                         if (!free_reg && ((config & 3) == 0)) {
118                                 free_reg = config_reg;
119                                 continue;
120                         }
121                         if (((config & 3) == 3) &&
122                                 (((config >> 4) & 7) == nodeid) &&
123                                 (((config >> 8) & 3) == link_num)) {
124                                 break;
125                         }
126                 }
127                 if (free_reg && (config_reg > 0xec)) {
128                         config_reg = free_reg;
129                 }
130                 /* If we can't find an available configuration space mapping
131                  * register skip this bus
132                  */
133                 if (config_reg > 0xec) {
134                         return max;
135                 }
136
137                 /* Set up the primary, secondary and subordinate bus numbers.
138                  * We have no idea how many busses are behind this bridge yet,
139                  * so we set the subordinate bus number to 0xff for the moment.
140                  */
141 #if CONFIG_SB_HT_CHAIN_ON_BUS0 > 0
142                 // first chain will on bus 0
143                 if((nodeid == 0) && (sblink==link_num)) { // actually max is 0 here
144                         min_bus = max;
145                 }
146         #if CONFIG_SB_HT_CHAIN_ON_BUS0 > 1
147                 // second chain will be on 0x40, third 0x80, forth 0xc0
148                 else {
149                         min_bus = ((max>>6) + 1) * 0x40;
150                 }
151                 max = min_bus;
152         #else
153                 //other ...
154                 else {
155                         min_bus = ++max;
156                 }
157         #endif
158 #else
159                 min_bus = ++max;
160 #endif
161                 max_bus = 0xff;
162
163                 link->secondary = min_bus;
164                 link->subordinate = max_bus;
165
166                 /* Read the existing primary/secondary/subordinate bus
167                  * number configuration.
168                  */
169                 busses = pci_read_config32(dev, link->cap + 0x14);
170                 config_busses = f1_read_config32(config_reg);
171
172                 /* Configure the bus numbers for this bridge: the configuration
173                  * transactions will not be propagates by the bridge if it is
174                  * not correctly configured
175                  */
176                 busses &= 0xff000000;
177                 busses |= (((unsigned int)(dev->bus->secondary) << 0) |
178                         ((unsigned int)(link->secondary) << 8) |
179                         ((unsigned int)(link->subordinate) << 16));
180                 pci_write_config32(dev, link->cap + 0x14, busses);
181
182                 config_busses &= 0x000fc88;
183                 config_busses |=
184                         (3 << 0) |  /* rw enable, no device compare */
185                         (( nodeid & 7) << 4) |
186                         (( link_num & 3 ) << 8) |
187                         ((link->secondary) << 16) |
188                         ((link->subordinate) << 24);
189                 f1_write_config32(config_reg, config_busses);
190
191                 /* Now we can scan all of the subordinate busses i.e. the
192                  * chain on the hypertranport link
193                  */
194                 for(i=0;i<4;i++) {
195                         ht_unitid_base[i] = 0x20;
196                 }
197
198                 if (min_bus == 0)
199                         max_devfn = (0x17<<3) | 7;
200                 else
201                         max_devfn = (0x1f<<3) | 7;
202
203                 max = hypertransport_scan_chain(link, 0, max_devfn, max, ht_unitid_base, offset_unitid);
204
205                 /* We know the number of busses behind this bridge.  Set the
206                  * subordinate bus number to it's real value
207                  */
208                 link->subordinate = max;
209                 busses = (busses & 0xff00ffff) |
210                         ((unsigned int) (link->subordinate) << 16);
211                 pci_write_config32(dev, link->cap + 0x14, busses);
212
213                 config_busses = (config_busses & 0x00ffffff) |
214                         (link->subordinate << 24);
215                 f1_write_config32(config_reg, config_busses);
216
217                 {
218                         // use config_reg and ht_unitid_base to update hcdn_reg
219                         int index;
220                         u32 temp = 0;
221                         index = (config_reg-0xe0) >> 2;
222                         for(i=0;i<4;i++) {
223                                 temp |= (ht_unitid_base[i] & 0xff) << (i*8);
224                         }
225
226                         sysconf.hcdn_reg[index] = temp;
227
228                 }
229         return max;
230 }
231
232 static unsigned amdk8_scan_chains(device_t dev, unsigned max)
233 {
234         unsigned nodeid;
235         struct bus *link;
236         unsigned sblink = 0;
237         unsigned offset_unitid = 0;
238
239         nodeid = amdk8_nodeid(dev);
240
241         if(nodeid==0) {
242                 sblink = (pci_read_config32(dev, 0x64)>>8) & 3;
243 #if CONFIG_SB_HT_CHAIN_ON_BUS0 > 0
244         #if ((CONFIG_HT_CHAIN_UNITID_BASE != 1) || (CONFIG_HT_CHAIN_END_UNITID_BASE != 0x20))
245                 offset_unitid = 1;
246         #endif
247                 for (link = dev->link_list; link; link = link->next)
248                         if (link->link_num == sblink)
249                                 max = amdk8_scan_chain(dev, nodeid, link, sblink, sblink, max, offset_unitid ); // do sb ht chain at first, in case s2885 put sb chain (8131/8111) on link2, but put 8151 on link0
250 #endif
251         }
252
253         for (link = dev->link_list; link; link = link->next) {
254 #if CONFIG_SB_HT_CHAIN_ON_BUS0 > 0
255                 if( (nodeid == 0) && (sblink == link->link_num) ) continue; //already done
256 #endif
257                 offset_unitid = 0;
258                 #if ((CONFIG_HT_CHAIN_UNITID_BASE != 1) || (CONFIG_HT_CHAIN_END_UNITID_BASE != 0x20))
259                         #if CONFIG_SB_HT_CHAIN_UNITID_OFFSET_ONLY == 1
260                         if((nodeid == 0) && (sblink == link->link_num))
261                         #endif
262                                 offset_unitid = 1;
263                 #endif
264
265                 max = amdk8_scan_chain(dev, nodeid, link, link->link_num, sblink, max, offset_unitid);
266         }
267         return max;
268 }
269
270
271 static int reg_useable(unsigned reg, device_t goal_dev, unsigned goal_nodeid,
272                         unsigned goal_link)
273 {
274         struct resource *res;
275         unsigned nodeid, link = 0;
276         int result;
277         res = 0;
278         for(nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
279                 device_t dev;
280                 dev = __f0_dev[nodeid];
281                 if (!dev)
282                         continue;
283                 for(link = 0; !res && (link < 3); link++) {
284                         res = probe_resource(dev, IOINDEX(0x100 + reg, link));
285                 }
286         }
287         result = 2;
288         if (res) {
289                 result = 0;
290                 if (    (goal_link == (link - 1)) &&
291                         (goal_nodeid == (nodeid - 1)) &&
292                         (res->flags <= 1)) {
293                         result = 1;
294                 }
295         }
296         return result;
297 }
298
299 static unsigned amdk8_find_reg(device_t dev, unsigned nodeid, unsigned link,
300                                unsigned min, unsigned max)
301 {
302         unsigned resource;
303         unsigned free_reg, reg;
304         resource = 0;
305         free_reg = 0;
306         for(reg = min; reg <= max; reg += 0x8) {
307                 int result;
308                 result = reg_useable(reg, dev, nodeid, link);
309                 if (result == 1) {
310                         /* I have been allocated this one */
311                         break;
312                 }
313                 else if (result > 1) {
314                         /* I have a free register pair */
315                         free_reg = reg;
316                 }
317         }
318         if (reg > max) {
319                 reg = free_reg;
320         }
321         if (reg > 0) {
322                 resource = IOINDEX(0x100 + reg, link);
323         }
324         return resource;
325 }
326
327 static unsigned amdk8_find_iopair(device_t dev, unsigned nodeid, unsigned link)
328 {
329         return amdk8_find_reg(dev, nodeid, link, 0xc0, 0xd8);
330 }
331
332 static unsigned amdk8_find_mempair(device_t dev, unsigned nodeid, unsigned link)
333 {
334         return amdk8_find_reg(dev, nodeid, link, 0x80, 0xb8);
335 }
336
337 static void amdk8_link_read_bases(device_t dev, unsigned nodeid, unsigned link)
338 {
339         struct resource *resource;
340
341         /* Initialize the io space constraints on the current bus */
342         resource = new_resource(dev, IOINDEX(0, link));
343         if (resource) {
344                 resource->base  = 0;
345                 resource->size  = 0;
346                 resource->align = log2(HT_IO_HOST_ALIGN);
347                 resource->gran  = log2(HT_IO_HOST_ALIGN);
348                 resource->limit = 0xffffUL;
349                 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
350         }
351
352         /* Initialize the prefetchable memory constraints on the current bus */
353         resource = new_resource(dev, IOINDEX(2, link));
354         if (resource) {
355                 resource->base = 0;
356                 resource->size = 0;
357                 resource->align = log2(HT_MEM_HOST_ALIGN);
358                 resource->gran = log2(HT_MEM_HOST_ALIGN);
359                 resource->limit = 0xffffffffffULL;
360                 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
361                 resource->flags |= IORESOURCE_BRIDGE;
362         }
363
364         /* Initialize the memory constraints on the current bus */
365         resource = new_resource(dev, IOINDEX(1, link));
366         if (resource) {
367                 resource->base = 0;
368                 resource->size = 0;
369                 resource->align = log2(HT_MEM_HOST_ALIGN);
370                 resource->gran = log2(HT_MEM_HOST_ALIGN);
371                 resource->limit = 0xffffffffULL;
372                 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
373         }
374 }
375
376 static void amdk8_create_vga_resource(device_t dev, unsigned nodeid);
377
378 static void amdk8_read_resources(device_t dev)
379 {
380         unsigned nodeid;
381         struct bus *link;
382         nodeid = amdk8_nodeid(dev);
383         for(link = dev->link_list; link; link = link->next) {
384                 if (link->children) {
385                         amdk8_link_read_bases(dev, nodeid, link->link_num);
386                 }
387         }
388         amdk8_create_vga_resource(dev, nodeid);
389 }
390
391 static void amdk8_set_resource(device_t dev, struct resource *resource, unsigned nodeid)
392 {
393         struct bus *link;
394         resource_t rbase, rend;
395         unsigned reg, link_num;
396         char buf[50];
397
398         /* Make certain the resource has actually been set */
399         if (!(resource->flags & IORESOURCE_ASSIGNED)) {
400                 printk(BIOS_ERR, "%s: can't set unassigned resource @%lx %lx\n",
401                            __func__, resource->index, resource->flags);
402                 return;
403         }
404
405         /* If I have already stored this resource don't worry about it */
406         if (resource->flags & IORESOURCE_STORED) {
407                 printk(BIOS_ERR, "%s: can't set stored resource @%lx %lx\n", __func__,
408                            resource->index, resource->flags);
409                 return;
410         }
411
412         /* Only handle PCI memory and IO resources */
413         if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
414                 return;
415
416         /* Ensure I am actually looking at a resource of function 1 */
417         if (resource->index < 0x100) {
418                 return;
419         }
420
421         if (resource->size == 0)
422                 return;
423
424         /* Get the base address */
425         rbase = resource->base;
426
427         /* Get the limit (rounded up) */
428         rend  = resource_end(resource);
429
430         /* Get the register and link */
431         reg  = resource->index & 0xfc;
432         link_num = IOINDEX_LINK(resource->index);
433
434         for (link = dev->link_list; link; link = link->next)
435                 if (link->link_num == link_num)
436                         break;
437
438         if (link == NULL) {
439                 printk(BIOS_ERR, "%s: can't find link %x for %lx\n", __func__,
440                            link_num, resource->index);
441                 return;
442         }
443
444         if (resource->flags & IORESOURCE_IO) {
445                 u32 base, limit;
446                 base  = f1_read_config32(reg);
447                 limit = f1_read_config32(reg + 0x4);
448                 base  &= 0xfe000fcc;
449                 base  |= rbase  & 0x01fff000;
450                 base  |= 3;
451                 limit &= 0xfe000fc8;
452                 limit |= rend & 0x01fff000;
453                 limit |= (link_num & 3) << 4;
454                 limit |= (nodeid & 7);
455
456                 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
457                         printk(BIOS_SPEW, "%s, enabling legacy VGA IO forwarding for %s link 0x%x\n",
458                                     __func__, dev_path(dev), link_num);
459                         base |= PCI_IO_BASE_VGA_EN;
460                 }
461                 if (link->bridge_ctrl & PCI_BRIDGE_CTL_NO_ISA) {
462                         base |= PCI_IO_BASE_NO_ISA;
463                 }
464
465                 f1_write_config32(reg + 0x4, limit);
466                 f1_write_config32(reg, base);
467         }
468         else if (resource->flags & IORESOURCE_MEM) {
469                 u32 base, limit;
470                 base  = f1_read_config32(reg);
471                 limit = f1_read_config32(reg + 0x4);
472                 base  &= 0x000000f0;
473                 base  |= (rbase >> 8) & 0xffffff00;
474                 base  |= 3;
475                 limit &= 0x00000048;
476                 limit |= (rend >> 8) & 0xffffff00;
477                 limit |= (link_num & 3) << 4;
478                 limit |= (nodeid & 7);
479                 f1_write_config32(reg + 0x4, limit);
480                 f1_write_config32(reg, base);
481         }
482         resource->flags |= IORESOURCE_STORED;
483         sprintf(buf, " <node %x link %x>",
484                 nodeid, link_num);
485         report_resource_stored(dev, resource, buf);
486 }
487
488 static void amdk8_create_vga_resource(device_t dev, unsigned nodeid)
489 {
490         struct resource *resource;
491         struct bus *link;
492
493         /* find out which link the VGA card is connected,
494          * we only deal with the 'first' vga card */
495         for (link = dev->link_list; link; link = link->next) {
496                 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
497 #if CONFIG_MULTIPLE_VGA_ADAPTERS == 1
498                         extern device_t vga_pri; // the primary vga device, defined in device.c
499                         printk(BIOS_DEBUG, "VGA: vga_pri bus num = %d link bus range [%d,%d]\n", vga_pri->bus->secondary,
500                                 link->secondary,link->subordinate);
501                         /* We need to make sure the vga_pri is under the link */
502                         if((vga_pri->bus->secondary >= link->secondary ) &&
503                                 (vga_pri->bus->secondary <= link->subordinate )
504                         )
505 #endif
506                         break;
507                 }
508         }
509
510         /* no VGA card installed */
511         if (link == NULL)
512                 return;
513
514         printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n", dev_path(dev), nodeid, link->link_num);
515
516         /* allocate a temp resource for the legacy VGA buffer */
517         resource = new_resource(dev, IOINDEX(4, link->link_num));
518         if(!resource){
519                 printk(BIOS_DEBUG, "VGA: %s out of resources.\n", dev_path(dev));
520                 return;
521         }
522         resource->base = 0xa0000;
523         resource->size = 0x20000;
524         resource->limit = 0xffffffff;
525         resource->flags = IORESOURCE_FIXED | IORESOURCE_MEM |
526                           IORESOURCE_ASSIGNED;
527 }
528
529 static void amdk8_set_resources(device_t dev)
530 {
531         unsigned nodeid;
532         struct bus *bus;
533         struct resource *res;
534
535         /* Find the nodeid */
536         nodeid = amdk8_nodeid(dev);
537
538         /* Set each resource we have found */
539         for(res = dev->resource_list; res; res = res->next) {
540                 struct resource *old = NULL;
541                 unsigned index;
542
543                 if (res->size == 0) /* No need to allocate registers. */
544                         continue;
545
546                 if (res->flags & IORESOURCE_IO)
547                         index = amdk8_find_iopair(dev, nodeid,
548                                                   IOINDEX_LINK(res->index));
549                 else
550                         index = amdk8_find_mempair(dev, nodeid,
551                                                    IOINDEX_LINK(res->index));
552
553                 old = probe_resource(dev, index);
554                 if (old) {
555                         res->index = old->index;
556                         old->index = 0;
557                         old->flags = 0;
558                 }
559                 else
560                         res->index = index;
561
562                 amdk8_set_resource(dev, res, nodeid);
563         }
564
565         compact_resources(dev);
566
567         for(bus = dev->link_list; bus; bus = bus->next) {
568                 if (bus->children) {
569                         assign_resources(bus);
570                 }
571         }
572 }
573
574 static void mcf0_control_init(struct device *dev)
575 {
576 #if 0
577         printk(BIOS_DEBUG, "NB: Function 0 Misc Control.. ");
578 #endif
579 #if 0
580         printk(BIOS_DEBUG, "done.\n");
581 #endif
582 }
583
584 static struct device_operations northbridge_operations = {
585         .read_resources   = amdk8_read_resources,
586         .set_resources    = amdk8_set_resources,
587         .enable_resources = pci_dev_enable_resources,
588         .init             = mcf0_control_init,
589         .scan_bus         = amdk8_scan_chains,
590         .enable           = 0,
591         .ops_pci          = 0,
592 };
593
594
595 static const struct pci_driver mcf0_driver __pci_driver = {
596         .ops    = &northbridge_operations,
597         .vendor = PCI_VENDOR_ID_AMD,
598         .device = 0x1100,
599 };
600
601 struct chip_operations northbridge_amd_amdk8_ops = {
602         CHIP_NAME("AMD K8 Northbridge")
603         .enable_dev = 0,
604 };
605
606 static void amdk8_domain_read_resources(device_t dev)
607 {
608         unsigned reg;
609
610         /* Find the already assigned resource pairs */
611         get_fx_devs();
612         for(reg = 0x80; reg <= 0xd8; reg+= 0x08) {
613                 u32 base, limit;
614                 base  = f1_read_config32(reg);
615                 limit = f1_read_config32(reg + 0x04);
616                 /* Is this register allocated? */
617                 if ((base & 3) != 0) {
618                         unsigned nodeid, reg_link;
619                         device_t reg_dev;
620                         nodeid = limit & 7;
621                         reg_link = (limit >> 4) & 3;
622                         reg_dev = __f0_dev[nodeid];
623                         if (reg_dev) {
624                                 /* Reserve the resource  */
625                                 struct resource *res;
626                                 res = new_resource(reg_dev, IOINDEX(0x100 + reg, reg_link));
627                                 if (res) {
628                                         res->base = base;
629                                         res->limit = limit;
630                                         res->flags = 1;
631                                 }
632                         }
633                 }
634         }
635
636         pci_domain_read_resources(dev);
637
638 #if CONFIG_PCI_64BIT_PREF_MEM == 1
639         /* Initialize the system wide prefetchable memory resources constraints */
640         resource = new_resource(dev, 2);
641         resource->limit = 0xfcffffffffULL;
642         resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
643 #endif
644 }
645
646 static void my_tolm_test(void *gp, struct device *dev, struct resource *new)
647 {
648         struct resource **best_p = gp;
649         struct resource *best;
650         best = *best_p;
651         /* Skip VGA. */
652         if (!best || (best->base > new->base && new->base > 0xa0000)) {
653                 best = new;
654         }
655         *best_p = best;
656 }
657
658 static u32 my_find_pci_tolm(struct bus *bus)
659 {
660         struct resource *min;
661         u32 tolm;
662         min = 0;
663         search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, my_tolm_test, &min);
664         tolm = 0xffffffffUL;
665         if (min && tolm > min->base) {
666                 tolm = min->base;
667         }
668         return tolm;
669 }
670
671 #if CONFIG_HW_MEM_HOLE_SIZEK != 0
672
673 struct hw_mem_hole_info {
674         unsigned hole_startk;
675         int node_id;
676 };
677
678 static struct hw_mem_hole_info get_hw_mem_hole_info(void)
679 {
680                 struct hw_mem_hole_info mem_hole;
681                 int i;
682
683                 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
684                 mem_hole.node_id = -1;
685
686                 for (i = 0; i < fx_devs; i++) {
687                         u32 base;
688                         u32 hole;
689                         base  = f1_read_config32(0x40 + (i << 3));
690                         if ((base & ((1<<1)|(1<<0))) != ((1<<1)|(1<<0))) {
691                                 continue;
692                         }
693
694                         hole = pci_read_config32(__f1_dev[i], 0xf0);
695                         if(hole & 1) { // we find the hole
696                                 mem_hole.hole_startk = (hole & (0xff<<24)) >> 10;
697                                 mem_hole.node_id = i; // record the node No with hole
698                                 break; // only one hole
699                         }
700                 }
701
702                 //We need to double check if there is speical set on base reg and limit reg are not continous instead of hole, it will find out it's hole_startk
703                 if(mem_hole.node_id==-1) {
704                         u32 limitk_pri = 0;
705                         for(i=0; i<8; i++) {
706                                 u32 base, limit;
707                                 unsigned base_k, limit_k;
708                                 base  = f1_read_config32(0x40 + (i << 3));
709                                 if ((base & ((1<<1)|(1<<0))) != ((1<<1)|(1<<0))) {
710                                         continue;
711                                 }
712
713                                 base_k = (base & 0xffff0000) >> 2;
714                                 if(limitk_pri != base_k) { // we find the hole
715                                         mem_hole.hole_startk = limitk_pri;
716                                         mem_hole.node_id = i;
717                                         break; //only one hole
718                                 }
719
720                                 limit = f1_read_config32(0x44 + (i << 3));
721                                 limit_k = ((limit + 0x00010000) & 0xffff0000) >> 2;
722                                 limitk_pri = limit_k;
723                         }
724                 }
725                 return mem_hole;
726 }
727
728 static void disable_hoist_memory(unsigned long hole_startk, int node_id)
729 {
730         int i;
731         device_t dev;
732         u32 base, limit;
733         u32 hoist;
734         u32 hole_sizek;
735
736
737         //1. find which node has hole
738         //2. change limit in that node.
739         //3. change base and limit in later node
740         //4. clear that node f0
741
742         //if there is not mem hole enabled, we need to change it's base instead
743
744         hole_sizek = (4*1024*1024) - hole_startk;
745
746         for(i=7;i>node_id;i--) {
747
748                 base  = f1_read_config32(0x40 + (i << 3));
749                 if ((base & ((1<<1)|(1<<0))) != ((1<<1)|(1<<0))) {
750                         continue;
751                 }
752                 limit = f1_read_config32(0x44 + (i << 3));
753                 f1_write_config32(0x44 + (i << 3),limit - (hole_sizek << 2));
754                 f1_write_config32(0x40 + (i << 3),base - (hole_sizek << 2));
755         }
756         limit = f1_read_config32(0x44 + (node_id << 3));
757         f1_write_config32(0x44 + (node_id << 3),limit - (hole_sizek << 2));
758         dev = __f1_dev[node_id];
759         if (dev == NULL) {
760                 printk(BIOS_ERR, "%s: node %x is NULL!\n", __func__, node_id);
761                 return;
762         }
763         hoist = pci_read_config32(dev, 0xf0);
764         if(hoist & 1) {
765                 pci_write_config32(dev, 0xf0, 0);
766         } else {
767                 base = pci_read_config32(dev, 0x40 + (node_id << 3));
768                 f1_write_config32(0x40 + (node_id << 3),base - (hole_sizek << 2));
769         }
770 }
771
772 static u32 hoist_memory(unsigned long hole_startk, int node_id)
773 {
774         int i;
775         u32 carry_over;
776         device_t dev;
777         u32 base, limit;
778         u32 basek;
779         u32 hoist;
780
781         carry_over = (4*1024*1024) - hole_startk;
782
783         for(i=7;i>node_id;i--) {
784
785                 base  = f1_read_config32(0x40 + (i << 3));
786                 if ((base & ((1<<1)|(1<<0))) != ((1<<1)|(1<<0))) {
787                         continue;
788                 }
789                 limit = f1_read_config32(0x44 + (i << 3));
790                 f1_write_config32(0x44 + (i << 3),limit + (carry_over << 2));
791                 f1_write_config32(0x40 + (i << 3),base + (carry_over << 2));
792         }
793         limit = f1_read_config32(0x44 + (node_id << 3));
794         f1_write_config32(0x44 + (node_id << 3),limit + (carry_over << 2));
795         dev = __f1_dev[node_id];
796         base  = pci_read_config32(dev, 0x40 + (node_id << 3));
797         basek  = (base & 0xffff0000) >> 2;
798         if(basek == hole_startk) {
799                 //don't need set memhole here, because hole off set will be 0, overflow
800                 //so need to change base reg instead, new basek will be 4*1024*1024
801                 base &= 0x0000ffff;
802                 base |= (4*1024*1024)<<2;
803                 f1_write_config32(0x40 + (node_id<<3), base);
804         }
805         else if (dev)
806         {
807                 hoist = /* hole start address */
808                         ((hole_startk << 10) & 0xff000000) +
809                         /* hole address to memory controller address */
810                         (((basek + carry_over) >> 6) & 0x0000ff00) +
811                         /* enable */
812                         1;
813
814                 pci_write_config32(dev, 0xf0, hoist);
815         }
816
817         return carry_over;
818 }
819 #endif
820
821 #if CONFIG_WRITE_HIGH_TABLES==1
822 #define HIGH_TABLES_SIZE 64     /* maximum size of high tables in KB */
823 extern uint64_t high_tables_base, high_tables_size;
824 #endif
825
826 #if CONFIG_GFXUMA == 1
827 extern uint64_t uma_memory_base, uma_memory_size;
828
829 static void add_uma_resource(struct device *dev, int index)
830 {
831         struct resource *resource;
832
833         printk(BIOS_DEBUG, "Adding UMA memory area\n");
834         resource = new_resource(dev, index);
835         resource->base = (resource_t) uma_memory_base;
836         resource->size = (resource_t) uma_memory_size;
837         resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE |
838                 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
839 }
840 #endif
841
842 static void amdk8_domain_set_resources(device_t dev)
843 {
844 #if CONFIG_PCI_64BIT_PREF_MEM == 1
845         struct resource *io, *mem1, *mem2;
846         struct resource *res;
847 #endif
848         unsigned long mmio_basek;
849         u32 pci_tolm;
850         int i, idx;
851 #if CONFIG_HW_MEM_HOLE_SIZEK != 0
852         struct hw_mem_hole_info mem_hole;
853         u32 reset_memhole = 1;
854 #endif
855
856 #if 0
857         /* Place the IO devices somewhere safe */
858         io = find_resource(dev, 0);
859         io->base = DEVICE_IO_START;
860 #endif
861 #if CONFIG_PCI_64BIT_PREF_MEM == 1
862         /* Now reallocate the pci resources memory with the
863          * highest addresses I can manage.
864          */
865         mem1 = find_resource(dev, 1);
866         mem2 = find_resource(dev, 2);
867
868 #if 1
869         printk(BIOS_DEBUG, "base1: 0x%08Lx limit1: 0x%08Lx size: 0x%08Lx align: %d\n",
870                 mem1->base, mem1->limit, mem1->size, mem1->align);
871         printk(BIOS_DEBUG, "base2: 0x%08Lx limit2: 0x%08Lx size: 0x%08Lx align: %d\n",
872                 mem2->base, mem2->limit, mem2->size, mem2->align);
873 #endif
874
875         /* See if both resources have roughly the same limits */
876         if (((mem1->limit <= 0xffffffff) && (mem2->limit <= 0xffffffff)) ||
877                 ((mem1->limit > 0xffffffff) && (mem2->limit > 0xffffffff)))
878         {
879                 /* If so place the one with the most stringent alignment first
880                  */
881                 if (mem2->align > mem1->align) {
882                         struct resource *tmp;
883                         tmp = mem1;
884                         mem1 = mem2;
885                         mem2 = tmp;
886                 }
887                 /* Now place the memory as high up as it will go */
888                 mem2->base = resource_max(mem2);
889                 mem1->limit = mem2->base - 1;
890                 mem1->base = resource_max(mem1);
891         }
892         else {
893                 /* Place the resources as high up as they will go */
894                 mem2->base = resource_max(mem2);
895                 mem1->base = resource_max(mem1);
896         }
897
898 #if 1
899         printk(BIOS_DEBUG, "base1: 0x%08Lx limit1: 0x%08Lx size: 0x%08Lx align: %d\n",
900                 mem1->base, mem1->limit, mem1->size, mem1->align);
901         printk(BIOS_DEBUG, "base2: 0x%08Lx limit2: 0x%08Lx size: 0x%08Lx align: %d\n",
902                 mem2->base, mem2->limit, mem2->size, mem2->align);
903 #endif
904
905         for(res = dev->resource_list; res; res = res->next)
906         {
907                 res->flags |= IORESOURCE_ASSIGNED;
908                 res->flags |= IORESOURCE_STORED;
909                 report_resource_stored(dev, res, "");
910         }
911 #endif
912
913         pci_tolm = my_find_pci_tolm(dev->link_list);
914
915         // FIXME handle interleaved nodes. If you fix this here, please fix
916         // amdfam10, too.
917         mmio_basek = pci_tolm >> 10;
918         /* Round mmio_basek to something the processor can support */
919         mmio_basek &= ~((1 << 6) -1);
920
921         // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
922         // MMIO hole. If you fix this here, please fix amdfam10, too.
923         /* Round the mmio hole to 64M */
924         mmio_basek &= ~((64*1024) - 1);
925
926 #if CONFIG_HW_MEM_HOLE_SIZEK != 0
927         /* if the hw mem hole is already set in raminit stage, here we will compare mmio_basek and hole_basek
928          * if mmio_basek is bigger that hole_basek and will use hole_basek as mmio_basek and we don't need to reset hole.
929          * otherwise We reset the hole to the mmio_basek
930          */
931         #if CONFIG_K8_REV_F_SUPPORT == 0
932                 if (!is_cpu_pre_e0()) {
933         #endif
934
935                 mem_hole = get_hw_mem_hole_info();
936
937                 if ((mem_hole.node_id !=  -1) && (mmio_basek > mem_hole.hole_startk)) { //We will use hole_basek as mmio_basek, and we don't need to reset hole anymore
938                         mmio_basek = mem_hole.hole_startk;
939                         reset_memhole = 0;
940                 }
941
942                 //mmio_basek = 3*1024*1024; // for debug to meet boundary
943
944                 if(reset_memhole) {
945                         if(mem_hole.node_id!=-1) { // We need to select CONFIG_HW_MEM_HOLE_SIZEK for raminit, it can not make hole_startk to some basek too....!
946                                // We need to reset our Mem Hole, because We want more big HOLE than we already set
947                                //Before that We need to disable mem hole at first, becase memhole could already be set on i+1 instead
948                                 disable_hoist_memory(mem_hole.hole_startk, mem_hole.node_id);
949                         }
950
951                 #if CONFIG_HW_MEM_HOLE_SIZE_AUTO_INC == 1
952                         //We need to double check if the mmio_basek is valid for hole setting, if it is equal to basek, we need to decrease it some
953                         u32 basek_pri;
954                         for (i = 0; i < fx_devs; i++) {
955                                 u32 base;
956                                 u32 basek;
957                                 base  = f1_read_config32(0x40 + (i << 3));
958                                 if ((base & ((1<<1)|(1<<0))) != ((1<<1)|(1<<0))) {
959                                         continue;
960                                 }
961
962                                 basek = (base & 0xffff0000) >> 2;
963                                 if(mmio_basek == basek) {
964                                         mmio_basek -= (basek - basek_pri)>>1; // increase mem hole size to make sure it is on middle of pri node
965                                         break;
966                                 }
967                                 basek_pri = basek;
968                         }
969                 #endif
970                 }
971
972 #if CONFIG_K8_REV_F_SUPPORT == 0
973         } // is_cpu_pre_e0
974 #endif
975
976 #endif
977
978         idx = 0x10;
979         for(i = 0; i < fx_devs; i++) {
980                 u32 base, limit;
981                 u32 basek, limitk, sizek;
982                 base  = f1_read_config32(0x40 + (i << 3));
983                 limit = f1_read_config32(0x44 + (i << 3));
984                 if ((base & ((1<<1)|(1<<0))) != ((1<<1)|(1<<0))) {
985                         continue;
986                 }
987                 basek = (base & 0xffff0000) >> 2;
988                 limitk = ((limit + 0x00010000) & 0xffff0000) >> 2;
989                 sizek = limitk - basek;
990
991                 /* see if we need a hole from 0xa0000 to 0xbffff */
992                 if ((basek < ((8*64)+(8*16))) && (sizek > ((8*64)+(16*16)))) {
993                         ram_resource(dev, (idx | i), basek, ((8*64)+(8*16)) - basek);
994                         idx += 0x10;
995                         basek = (8*64)+(16*16);
996                         sizek = limitk - ((8*64)+(16*16));
997
998                 }
999
1000
1001 #if CONFIG_GFXUMA == 1
1002                 printk(BIOS_DEBUG, "node %d : uma_memory_base/1024=0x%08llx, mmio_basek=0x%08lx, basek=0x%08x, limitk=0x%08x\n", i, uma_memory_base >> 10, mmio_basek, basek, limitk);
1003                 if ((uma_memory_base >> 10) < mmio_basek)
1004                         printk(BIOS_ALERT, "node %d: UMA memory starts below mmio_basek\n", i);
1005 #else
1006 //              printk(BIOS_DEBUG, "node %d : mmio_basek=%08x, basek=%08x, limitk=%08x\n", i, mmio_basek, basek, limitk); //yhlu
1007 #endif
1008
1009                 /* See if I need to split the region to accomodate pci memory space */
1010                 if ( (basek < 4*1024*1024 ) && (limitk > mmio_basek) ) {
1011                         if (basek <= mmio_basek) {
1012                                 unsigned pre_sizek;
1013                                 pre_sizek = mmio_basek - basek;
1014                                 if(pre_sizek>0) {
1015                                         ram_resource(dev, (idx | i), basek, pre_sizek);
1016                                         idx += 0x10;
1017                                         sizek -= pre_sizek;
1018 #if CONFIG_WRITE_HIGH_TABLES==1
1019                                         if (high_tables_base==0) {
1020                                         /* Leave some space for ACPI, PIRQ and MP tables */
1021 #if CONFIG_GFXUMA == 1
1022                                                 high_tables_base = uma_memory_base - (HIGH_TABLES_SIZE * 1024);
1023 #else
1024                                                 high_tables_base = (mmio_basek - HIGH_TABLES_SIZE) * 1024;
1025 #endif
1026                                                 high_tables_size = HIGH_TABLES_SIZE * 1024;
1027                                                 printk(BIOS_DEBUG, " split: %dK table at =%08llx\n", HIGH_TABLES_SIZE,
1028                                                              high_tables_base);
1029                                         }
1030 #endif
1031                                 }
1032                                 #if CONFIG_HW_MEM_HOLE_SIZEK != 0
1033                                 if(reset_memhole)
1034                                         #if CONFIG_K8_REV_F_SUPPORT == 0
1035                                         if(!is_cpu_pre_e0() )
1036                                         #endif
1037                                                  sizek += hoist_memory(mmio_basek,i);
1038                                 #endif
1039
1040                                 basek = mmio_basek;
1041                         }
1042                         if ((basek + sizek) <= 4*1024*1024) {
1043                                 sizek = 0;
1044                         }
1045                         else {
1046                                 basek = 4*1024*1024;
1047                                 sizek -= (4*1024*1024 - mmio_basek);
1048                         }
1049                 }
1050                 /* If sizek == 0, it was split at mmio_basek without a hole.
1051                  * Don't create an empty ram_resource.
1052                  */
1053 #if CONFIG_GFXUMA == 1
1054                 /* Deduct uma memory before reporting because
1055                  * this is what the mtrr code expects */
1056                 sizek -= uma_memory_size / 1024;
1057 #endif
1058                 if (sizek)
1059                         ram_resource(dev, (idx | i), basek, sizek);
1060                 idx += 0x10;
1061 #if CONFIG_WRITE_HIGH_TABLES==1
1062                 printk(BIOS_DEBUG, "%d: mmio_basek=%08lx, basek=%08x, limitk=%08x\n",
1063                              i, mmio_basek, basek, limitk);
1064                 if (high_tables_base==0) {
1065                 /* Leave some space for ACPI, PIRQ and MP tables */
1066 #if CONFIG_GFXUMA == 1
1067                         high_tables_base = uma_memory_base - (HIGH_TABLES_SIZE * 1024);
1068 #else
1069                         high_tables_base = (limitk - HIGH_TABLES_SIZE) * 1024;
1070 #endif
1071                         high_tables_size = HIGH_TABLES_SIZE * 1024;
1072                 }
1073 #endif
1074         }
1075
1076 #if CONFIG_GFXUMA == 1
1077         add_uma_resource(dev, 7);
1078 #endif
1079         assign_resources(dev->link_list);
1080
1081 }
1082
1083 static u32 amdk8_domain_scan_bus(device_t dev, u32 max)
1084 {
1085         u32 reg;
1086         int i;
1087         /* Unmap all of the HT chains */
1088         for(reg = 0xe0; reg <= 0xec; reg += 4) {
1089                 f1_write_config32(reg, 0);
1090         }
1091         max = pci_scan_bus(dev->link_list, PCI_DEVFN(0x18, 0), 0xff, max);
1092
1093         /* Tune the hypertransport transaction for best performance.
1094          * Including enabling relaxed ordering if it is safe.
1095          */
1096         get_fx_devs();
1097         for(i = 0; i < fx_devs; i++) {
1098                 device_t f0_dev;
1099                 f0_dev = __f0_dev[i];
1100                 if (f0_dev && f0_dev->enabled) {
1101                         u32 httc;
1102                         httc = pci_read_config32(f0_dev, HT_TRANSACTION_CONTROL);
1103                         httc &= ~HTTC_RSP_PASS_PW;
1104                         if (!dev->link_list->disable_relaxed_ordering) {
1105                                 httc |= HTTC_RSP_PASS_PW;
1106                         }
1107                         printk(BIOS_SPEW, "%s passpw: %s\n",
1108                                 dev_path(dev),
1109                                 (!dev->link_list->disable_relaxed_ordering)?
1110                                 "enabled":"disabled");
1111                         pci_write_config32(f0_dev, HT_TRANSACTION_CONTROL, httc);
1112                 }
1113         }
1114         return max;
1115 }
1116
1117 static struct device_operations pci_domain_ops = {
1118         .read_resources   = amdk8_domain_read_resources,
1119         .set_resources    = amdk8_domain_set_resources,
1120         .enable_resources = NULL,
1121         .init             = NULL,
1122         .scan_bus         = amdk8_domain_scan_bus,
1123         .ops_pci_bus      = &pci_cf8_conf1,
1124 };
1125
1126 static void add_more_links(device_t dev, unsigned total_links)
1127 {
1128         struct bus *link, *last = NULL;
1129         int link_num;
1130
1131         for (link = dev->link_list; link; link = link->next)
1132                 last = link;
1133
1134         if (last) {
1135                 int links = total_links - last->link_num;
1136                 link_num = last->link_num;
1137                 if (links > 0) {
1138                         link = malloc(links*sizeof(*link));
1139                         if (!link)
1140                                 die("Couldn't allocate more links!\n");
1141                         memset(link, 0, links*sizeof(*link));
1142                         last->next = link;
1143                 }
1144         }
1145         else {
1146                 link_num = -1;
1147                 link = malloc(total_links*sizeof(*link));
1148                 memset(link, 0, total_links*sizeof(*link));
1149                 dev->link_list = link;
1150         }
1151
1152         for (link_num = link_num + 1; link_num < total_links; link_num++) {
1153                 link->link_num = link_num;
1154                 link->dev = dev;
1155                 link->next = link + 1;
1156                 last = link;
1157                 link = link->next;
1158         }
1159         last->next = NULL;
1160 }
1161
1162 static u32 cpu_bus_scan(device_t dev, u32 max)
1163 {
1164         struct bus *cpu_bus;
1165         device_t dev_mc;
1166         int bsp_apicid;
1167         int i,j;
1168         unsigned nb_cfg_54;
1169         unsigned siblings;
1170         int e0_later_single_core;
1171         int disable_siblings;
1172
1173         nb_cfg_54 = 0;
1174         sysconf.enabled_apic_ext_id = 0;
1175         sysconf.lift_bsp_apicid = 0;
1176         siblings = 0;
1177
1178         /* Find the bootstrap processors apicid */
1179         bsp_apicid = lapicid();
1180         sysconf.apicid_offset = bsp_apicid;
1181
1182         disable_siblings = !CONFIG_LOGICAL_CPUS;
1183 #if CONFIG_LOGICAL_CPUS == 1
1184         get_option(&disable_siblings, "multi_core");
1185 #endif
1186
1187         // for pre_e0, nb_cfg_54 can not be set, (when you read it still is 0)
1188         // How can I get the nb_cfg_54 of every node's nb_cfg_54 in bsp???
1189         // and differ d0 and e0 single core
1190         nb_cfg_54 = read_nb_cfg_54();
1191
1192         dev_mc = dev_find_slot(0, PCI_DEVFN(0x18, 0));
1193         if (!dev_mc) {
1194                 die("0:18.0 not found?");
1195         }
1196
1197         sysconf.nodes = ((pci_read_config32(dev_mc, 0x60)>>4) & 7) + 1;
1198
1199
1200         if (pci_read_config32(dev_mc, 0x68) & (HTTC_APIC_EXT_ID|HTTC_APIC_EXT_BRD_CST))
1201         {
1202                 sysconf.enabled_apic_ext_id = 1;
1203                 if(bsp_apicid == 0) {
1204                         /* bsp apic id is not changed */
1205                         sysconf.apicid_offset = CONFIG_APIC_ID_OFFSET;
1206                 } else
1207                 {
1208                         sysconf.lift_bsp_apicid = 1;
1209                 }
1210
1211         }
1212
1213         /* Find which cpus are present */
1214         cpu_bus = dev->link_list;
1215         for(i = 0; i < sysconf.nodes; i++) {
1216                 device_t cpu_dev, cpu;
1217                 struct device_path cpu_path;
1218
1219                 /* Find the cpu's pci device */
1220                 cpu_dev = dev_find_slot(0, PCI_DEVFN(0x18 + i, 3));
1221                 if (!cpu_dev) {
1222                         /* If I am probing things in a weird order
1223                          * ensure all of the cpu's pci devices are found.
1224                          */
1225                         int local_j;
1226                         device_t dev_f0;
1227                         for(local_j = 0; local_j <= 3; local_j++) {
1228                                 cpu_dev = pci_probe_dev(NULL, dev_mc->bus,
1229                                         PCI_DEVFN(0x18 + i, local_j));
1230                         }
1231                         /* Ok, We need to set the links for that device.
1232                          * otherwise the device under it will not be scanned
1233                          */
1234                         dev_f0 = dev_find_slot(0, PCI_DEVFN(0x18+i,0));
1235                         if(dev_f0) {
1236                                 add_more_links(dev_f0, 3);
1237                         }
1238                 }
1239
1240                 e0_later_single_core = 0;
1241                 if (cpu_dev && cpu_dev->enabled) {
1242                         j = pci_read_config32(cpu_dev, 0xe8);
1243                         j = (j >> 12) & 3; // dev is func 3
1244                         printk(BIOS_DEBUG, "  %s siblings=%d\n", dev_path(cpu_dev), j);
1245
1246                         if(nb_cfg_54) {
1247                                 // For e0 single core if nb_cfg_54 is set, apicid will be 0, 2, 4....
1248                                 //  ----> you can mixed single core e0 and dual core e0 at any sequence
1249                                 // That is the typical case
1250
1251                                 if(j == 0 ){
1252                                        #if CONFIG_K8_REV_F_SUPPORT == 0
1253                                         e0_later_single_core = is_e0_later_in_bsp(i);  // single core
1254                                        #else
1255                                         e0_later_single_core = is_cpu_f0_in_bsp(i);  // We can read cpuid(1) from Func3
1256                                        #endif
1257                                 } else {
1258                                        e0_later_single_core = 0;
1259                                 }
1260                                 if(e0_later_single_core) {
1261                                         printk(BIOS_DEBUG, "\tFound Rev E or Rev F later single core\n");
1262
1263                                         j=1;
1264                                 }
1265
1266                                 if(siblings > j ) {
1267                                 }
1268                                 else {
1269                                         siblings = j;
1270                                 }
1271                         } else {
1272                                 siblings = j;
1273                         }
1274                 }
1275
1276                 u32 jj;
1277                 if(e0_later_single_core || disable_siblings) {
1278                         jj = 0;
1279                 } else
1280                 {
1281                         jj = siblings;
1282                 }
1283 #if 0
1284                 jj = 0; // if create cpu core1 path in amd_siblings by core0
1285 #endif
1286
1287                 for (j = 0; j <=jj; j++ ) {
1288
1289                         /* Build the cpu device path */
1290                         cpu_path.type = DEVICE_PATH_APIC;
1291                         cpu_path.apic.apic_id = i * (nb_cfg_54?(siblings+1):1) + j * (nb_cfg_54?1:8);
1292
1293                         /* See if I can find the cpu */
1294                         cpu = find_dev_path(cpu_bus, &cpu_path);
1295
1296                         /* Enable the cpu if I have the processor */
1297                         if (cpu_dev && cpu_dev->enabled) {
1298                                 if (!cpu) {
1299                                         cpu = alloc_dev(cpu_bus, &cpu_path);
1300                                 }
1301                                 if (cpu) {
1302                                         cpu->enabled = 1;
1303                                 }
1304                         }
1305
1306                         /* Disable the cpu if I don't have the processor */
1307                         if (cpu && (!cpu_dev || !cpu_dev->enabled)) {
1308                                 cpu->enabled = 0;
1309                         }
1310
1311                         /* Report what I have done */
1312                         if (cpu) {
1313                                 cpu->path.apic.node_id = i;
1314                                 cpu->path.apic.core_id = j;
1315                                 if(sysconf.enabled_apic_ext_id) {
1316                                         if(sysconf.lift_bsp_apicid) {
1317                                                 cpu->path.apic.apic_id += sysconf.apicid_offset;
1318                                         } else
1319                                         {
1320                                                 if (cpu->path.apic.apic_id != 0)
1321                                                         cpu->path.apic.apic_id += sysconf.apicid_offset;
1322                                         }
1323                                 }
1324                                 printk(BIOS_DEBUG, "CPU: %s %s\n",
1325                                         dev_path(cpu), cpu->enabled?"enabled":"disabled");
1326                         }
1327
1328                 } //j
1329         }
1330         return max;
1331 }
1332
1333 static void cpu_bus_init(device_t dev)
1334 {
1335         initialize_cpus(dev->link_list);
1336 }
1337
1338 static void cpu_bus_noop(device_t dev)
1339 {
1340 }
1341
1342 static struct device_operations cpu_bus_ops = {
1343         .read_resources   = cpu_bus_noop,
1344         .set_resources    = cpu_bus_noop,
1345         .enable_resources = cpu_bus_noop,
1346         .init             = cpu_bus_init,
1347         .scan_bus         = cpu_bus_scan,
1348 };
1349
1350 static void root_complex_enable_dev(struct device *dev)
1351 {
1352         /* Set the operations if it is a special bus type */
1353         if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
1354                 dev->ops = &pci_domain_ops;
1355         }
1356         else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER) {
1357                 dev->ops = &cpu_bus_ops;
1358         }
1359 }
1360
1361 struct chip_operations northbridge_amd_amdk8_root_complex_ops = {
1362         CHIP_NAME("AMD K8 Root Complex")
1363         .enable_dev = root_complex_enable_dev,
1364 };