X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/f2b87dd63dc50a707ac102db7afb849b1f4f8db0..07d1dd26f38ed450a9333741337e8091b37b4fc2:/aseg/firstrun.c diff --git a/aseg/firstrun.c b/aseg/firstrun.c index 9589a13..323f1ab 100644 --- a/aseg/firstrun.c +++ b/aseg/firstrun.c @@ -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();