]> Joshua Wise's Git repositories - netwatch.git/commitdiff
Reboot the machine when you hit escape. Wait, what?
authorJoshua Wise <joshua@rebirth.joshuawise.com>
Sat, 13 Sep 2008 05:23:13 +0000 (01:23 -0400)
committerJoshua Wise <joshua@rebirth.joshuawise.com>
Sat, 13 Sep 2008 05:23:13 +0000 (01:23 -0400)
aseg/counter.c
grubload/Makefile
ich2/Makefile
tools/Makefile

index 2c82f086316b0209e4476007e681525a7827ac8d..b6bdcf411c1acb255d50656c1676b1a1f6b8a1b9 100644 (file)
@@ -78,6 +78,54 @@ void __start (void)
        
        if (inl(0x834) & 0x20)
                dolog("Warning: unhandled APM access");
+       if (inl(0x834) & 0x1000)
+       {
+               if (inl(0x844) & 0x1000)        /* devact_sts */
+               {
+                       unsigned char s[40];
+                       unsigned long cts;
+                       static int curdev = 0;  /* 0 if kbd, 1 if mouse */
+                       
+                       cts = inl(0x84C);
+                       
+                       outl(0x848, 0x0);
+                       
+                       switch(cts&0xF0000)
+                       {
+                       case 0x20000:
+                       {
+                               unsigned char b;
+                               strcpy(s, "READxxxxxxxxxxxxxxxx");
+                               tohex(s+4, cts);
+                               b = inb(cts & 0xFFFF);
+                               tohex(s+12, b);
+                               if ((cts & 0xFFFF) == 0x64)
+                                       curdev = (b & 0x20) ? 1 : 0;
+                               if ((curdev == 0) && ((cts & 0xFFFF) == 0x60) && (b == 0x01))
+                                       outb(0xCF9, 0x4);
+                               dolog(s);
+                               *(unsigned char*)0xAFFD0 /* EAX */ = b;
+                               break;
+                       }
+                       case 0x30000:
+                       {
+                               unsigned char b;
+                               
+                               strcpy(s, "WRITxxxxxxxxxxxxxxxx");
+                               b = *(unsigned char*)0xAFFD0 /* EAX */;
+                               tohex(s+4, cts);
+                               tohex(s+12, b);
+                               dolog(s);
+                               outb(cts & 0xFFFF, b);
+                               break;
+                       }
+                       default:
+                               dolog("Unhandled PCI cycle");
+                       }
+                       outl(0x848, 0x1000);
+                       outl(0x844, 0x1000);
+               }
+       }
        if (inl(0x834) & 0x4000)
                dolog("Long periodic timer");
        if (inl(0x834) & ~(0x4160))
@@ -93,6 +141,7 @@ void __start (void)
        outl(0xCF8, pcisave);
        outb(0x3D4, vgasave);
        
+       outl(0x848, 0x1000);
        outl(0x834, /*0x40*/0xFFFF);    // ack the periodic IRQ
        outb(0x830, (inb(0x830) | 0x2) & ~0x40);
        outb(0x830, inb(0x830) | 0x40);
index f4f50e13a59a534d6923415d7434285acd461fea..1a0fb2af332693ee57d2eebe8b1e6e760dd96df8 100644 (file)
@@ -14,4 +14,4 @@ realmode.o: realmode.bin
        objcopy -I binary -B i386 -O elf32-i386 realmode.bin realmode.o
 
 clean:
-       rm -f $(OBJS)
+       rm -f $(OBJS) realmode.bin multiboot
index e41432b8aac13df3ae22716c799d3693b20aea79..2d908d9e7993931cb1b377bc7f6cb26cdc56fed6 100644 (file)
@@ -1,2 +1,5 @@
 smram-ich2: smm-open-ich2.c
        gcc -o smram-ich2 smm-open-ich2.c ../pci/pci-linux.c
+
+clean:
+       rm -f smram-ich2
index df153409b352bdbe4a4ade9bb3c7249b34f197fc..1cd4d812ef0b34cdc78a231996164d415504abff 100644 (file)
@@ -4,3 +4,6 @@ SMRAM_ICH2_OBJS=smram-linux-tool.o ../pci/pci-linux.o ../ich2/smram-ich2.o
 
 smram-ich2: $(SMRAM_ICH2_OBJS)
        gcc -o smram-ich2 $(SMRAM_ICH2_OBJS)
+
+clean:
+       rm -f $(SMRAM_ICH2_OBJS) smram-ich2
This page took 0.029593 seconds and 4 git commands to generate.