]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg-paging/smi.c
cache p2v for painting ass
[netwatch.git] / aseg-paging / smi.c
index 1152723c99bafc9f320705e21950da0756ff14fc..e1304f3fcb9604dda3ef60c3571d8c65653d1a40 100644 (file)
@@ -5,6 +5,8 @@
 #include <smi.h>
 #include <pci-bother.h>
 #include <serial.h>
+#include <fb.h>
+#include <output.h>
 #include "../net/net.h"
 #include "vga-overlay.h"
 
@@ -19,12 +21,49 @@ void smi_entry(void)
        pcisave = inl(0xCF8);
        vgasave = inb(0x3D4);
        pci_unbother_all();
+       
+       serial_init();
+       
+       if (fb)
+               fb->getvmode(fb->priv);
 
        counter++;
        sprintf(statstr, "NetWatch! %08x %08x", smi_status(), counter);
        strblit(statstr, 0, 0, 0);
        
-       serial_init();
+       /* wee! */
+       if (fb && !fb->curmode.text)
+       {
+               int ass[][2] = {
+                             {1,0},       {4,0},{5,0},{6,0}, {8,0},{9,0},{10,0},
+                       {0,1},      {2,1}, {4,1},             {8,1},
+                       {0,2},{1,2},{2,2}, {4,2},{5,2},{6,2}, {8,2},{9,2},{10,2},
+                       {0,3},      {2,3},             {6,3},             {10,3},
+                       {0,4},      {2,4}, {4,4},{5,4},{6,4}, {8,4},{9,4},{10,4},
+                       {-1,-1}
+               };
+               int p;
+               for (p = 0; ass[p][0] != -1; p++)
+               {
+                       int x, y;
+                       unsigned long lasta = 0;
+                       unsigned long *lastmap;
+                       for (y = 0; y < 8; y++)
+                               for (x = 0; x < 8; x++)
+                               {
+                                       unsigned long a =
+                                               (unsigned long) fb->fbaddr +
+                                               ((y+ass[p][1]*8) * fb->curmode.xres + ass[p][0]*8 + x) * 4;
+                                       if ((a & ~4095) != (lasta & ~4095))
+                                       {
+                                               lastmap = (unsigned long *)((unsigned long)p2v(a) & ~4095);
+                                               lasta = a;
+                                       }
+                                       lastmap[(a & 4095) / 4] = 0xFF0000FF;
+                               }
+               }
+       }
+       
        eth_poll();
        
        if (inl(0x840) & 0x1000)
This page took 0.023899 seconds and 4 git commands to generate.