amdfam10: add phenom II as known cpu
[coreboot.git] / src / northbridge / amd / amdfam10 / bootblock.c
1 #include <arch/io.h>
2 #include <arch/romcc_io.h>
3 #include <device/pci_def.h>
4 #include "northbridge/amd/amdfam10/early_ht.c"
5
6 static void bootblock_northbridge_init(void) {
7         /* Nothing special needs to be done to find bus 0 */
8         /* Allow the HT devices to be found */
9         /* mov bsp to bus 0xff when > 8 nodes */
10         set_bsp_node_CHtExtNodeCfgEn();
11         enumerate_ht_chain();
12 }