]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg-paging/smi.c
Enable caching while in SMM.
[netwatch.git] / aseg-paging / smi.c
index eada78df797f1e81514c0977649bf13c5bfc5e25..d519341a9370446fdbe8e1e65e56419271f4abb4 100644 (file)
@@ -5,6 +5,9 @@
 #include <smi.h>
 #include <pci-bother.h>
 #include <serial.h>
+#include <fb.h>
+#include <output.h>
+#include <msr.h>
 #include "../net/net.h"
 #include "vga-overlay.h"
 
@@ -15,27 +18,27 @@ unsigned char vgasave = 0;
 void smi_entry(void)
 {
        char statstr[512];
-       outb(0x80, 0x0B);
+
+       /* Reenable caching on SMRAM. */
+       WRMSR(0x202, (RDMSR(0x202) & ~(0xFFULL)) | 0x06ULL);
+
        pcisave = inl(0xCF8);
        vgasave = inb(0x3D4);
-       outb(0x80, 0x1B);
-/*
        pci_unbother_all();
- */
-       counter++;
-       outb(0x80, 0x2B);
-       sprintf(statstr, "NetWatch! %08x %08x", smi_status(), counter);
-       outb(0x80, 0x3B);
-       strblit(statstr, 0, 0);
-       outb(0x80, 0x4B);
        
        serial_init();
-/*     dolog("wee!");
- */
        
-       /*
+       if (fb)
+               fb->getvmode(fb->priv);
+
+       counter++;
+       if (!fb || fb->curmode.text)
+       {
+               sprintf(statstr, "NetWatch! %08x %08x", smi_status(), counter);
+               strblit(statstr, 0, 0, 0);
+       }
+       
        eth_poll();
-       */
        
        if (inl(0x840) & 0x1000)
        {
@@ -48,11 +51,13 @@ void smi_entry(void)
 
 
        smi_poll();
-/*     
+       
        pci_bother_all();
- */
        outl(0xCF8, pcisave);
        outb(0x3D4, vgasave);
+       
+       /* Disable caching on SMRAM again, to prevent the user from whacking us. */
+       WRMSR(0x202, RDMSR(0x202) & ~(0xFFULL));
 }
 
 extern void timer_handler(smi_event_t ev);
This page took 0.023999 seconds and 4 git commands to generate.