pci_setup();
smm_setup();
- // Initialize mtrr
+ // Initialize mtrr and smp
mtrr_setup();
+ smp_setup();
// Setup Xen hypercalls
xen_hypercall_setup();
- // Start hardware initialization (if optionrom threading)
- if (CONFIG_THREAD_OPTIONROMS)
- device_hardware_setup();
-
- // Find and initialize other cpus
- smp_setup();
-
// Setup external BIOS interface tables
if (CONFIG_COREBOOT)
coreboot_biostable_setup();
// Setup platform devices.
platform_hardware_setup();
+ // Start hardware initialization (if optionrom threading)
+ if (CONFIG_THREAD_OPTIONROMS)
+ device_hardware_setup();
+
// Run vga option rom
vgarom_setup();