X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/d71d98729a8da95c6ac901db1e8b23eaab48a34d..f2b87dd63dc50a707ac102db7afb849b1f4f8db0:/aseg/firstrun.c?ds=inline diff --git a/aseg/firstrun.c b/aseg/firstrun.c index a606d2b..9589a13 100644 --- a/aseg/firstrun.c +++ b/aseg/firstrun.c @@ -1,9 +1,22 @@ #include #include #include +#include #include "vga-overlay.h" +#include + +extern int _bss, _bssend; void __firstrun_start() { + unsigned char *bp; + smram_state_t smram; + + smram = smram_save_state(); + smram_tseg_set_state(SMRAM_TSEG_OPEN); + + for (bp = (void *)&_bss; (void *)bp < (void *)&_bssend; bp++) + *bp = 0; + dologf("NetWatch running"); /* Try really hard to shut up USB_LEGKEY. */ @@ -13,7 +26,10 @@ 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(); + + smram_restore_state(smram); }