]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg/firstrun.c
Move much more logic out into smi.c again.
[netwatch.git] / aseg / firstrun.c
index a606d2bd2b97d9c43337ecbaa43d527d9b4d3133..c6eab7b29edaa736c3ecd75ef38d300d314027cd 100644 (file)
@@ -1,6 +1,7 @@
 #include <io.h>
 #include <smi.h>
 #include <pci.h>
+#include <reg-82801b.h>
 #include "vga-overlay.h"
 
 void __firstrun_start() {
@@ -13,7 +14,8 @@ void __firstrun_start() {
        pci_write16(0, 31, 4, 0xC0, 0);
 
        /* Turn on the SMIs we want */
-       outb(0x830, inb(0x830) | 0x40);
+       outb(0x830, inb(0x830) | ICH2_SMI_EN_SWSMI_TMR_EN);
+       outb(0x848, ICH2_DEVTRAP_EN_KBC_TRP_EN);
        smi_enable();
 }
 
This page took 0.022122 seconds and 4 git commands to generate.