]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg/firstrun.c
Initial smi_event infrastructure
[netwatch.git] / aseg / firstrun.c
index 9589a13432cf30db6a88e3d6780032d15fa2da33..323f1ab751f0f3c825379dbf92104e2af85f4d34 100644 (file)
@@ -7,6 +7,8 @@
 
 extern int _bss, _bssend;
 
+extern void timer_handler(smi_event_t ev);
+
 void __firstrun_start() {
        unsigned char *bp;
        smram_state_t smram;
@@ -26,7 +28,9 @@ void __firstrun_start() {
        pci_write16(0, 31, 4, 0xC0, 0);
 
        /* Turn on the SMIs we want */
-       outb(0x830, inb(0x830) | ICH2_SMI_EN_SWSMI_TMR_EN);
+       smi_disable();
+       smi_register_handler(SMI_EVENT_FAST_TIMER, timer_handler);
+       smi_enable_event(SMI_EVENT_FAST_TIMER);
        outb(0x848, ICH2_DEVTRAP_EN_KBC_TRP_EN);
        smi_enable();
        
This page took 0.01965 seconds and 4 git commands to generate.