]> Joshua Wise's Git repositories - netwatch.git/blame - aseg/counter.c
Split multiboot stuff into a header.
[netwatch.git] / aseg / counter.c
CommitLineData
035d7af7
JW
1#include <io.h>
2
31be35cd 3unsigned int counter = 0;
035d7af7
JW
4unsigned long pcisave;
5unsigned char vgasave;
6unsigned char thestr[512];
31be35cd 7unsigned char logents[4][41] = {0};
035d7af7
JW
8
9unsigned char vgaread(unsigned char idx)
10{
11 outb(0x3D4, idx);
12 inb(0x3D5);
13}
14
31be35cd 15void strblit(char *src, int r, int c)
035d7af7 16{
31be35cd
JW
17 char *destp = (char*)(0xB8000UL | (((unsigned int)vgaread(0xC)) << 9) | (((unsigned int)vgaread(0xD)) << 1)) + r*80*2 + c*2;
18 unsigned char smramc;
19
20 smramc = pci_read8(0, 0, 0, 0x70);
21 pci_write8(0, 0, 0, 0x70, (smramc & 0xF3) | 0x08);
035d7af7
JW
22 while (*src)
23 {
24 *(destp++) = *(src++);
25 *(destp++) = 0x1F;
26 }
31be35cd
JW
27 pci_write8(0, 0, 0, 0x70, smramc);
28}
29
30void outlog()
31{
32 int y, x;
33 unsigned char smramc;
34 unsigned char *basep = (char*)(0xB8000UL | (((unsigned int)vgaread(0xC)) << 9) | (((unsigned int)vgaread(0xD)) << 1));
35
36 smramc = pci_read8(0, 0, 0, 0x70);
37 pci_write8(0, 0, 0, 0x70, (smramc & 0xF3) | 0x08);
38 for (y = 0; y < 4; y++)
39 for (x = 40; x < 80; x++)
40 {
41 basep[y*80*2+x*2] = ' ';
42 basep[y*80*2+x*2+1] = 0x1F;
43 }
44 pci_write8(0, 0, 0, 0x70, smramc);
45
46 for (y = 0; y < 4; y++)
47 strblit(logents[y], y, 40);
48
49}
50
51void dolog(char *s)
52{
53 memmove(logents[0], logents[1], sizeof(logents[0])*3);
54 strcpy(logents[3], s);
035d7af7 55}
4bea7daf 56
98765740
JP
57void pci_dump() {
58 unsigned char s[40];
59 unsigned long cts;
60 static int curdev = 0; /* 0 if kbd, 1 if mouse */
61
62 cts = inl(0x84C);
63
64 outl(0x848, 0x0);
65
66 switch(cts&0xF0000)
67 {
68 case 0x20000:
69 {
70 unsigned char b;
71 strcpy(s, "READxxxxxxxxxxxxxxxx");
72 tohex(s+4, cts);
73 b = inb(cts & 0xFFFF);
74 tohex(s+12, b);
75 if ((cts & 0xFFFF) == 0x64)
76 curdev = (b & 0x20) ? 1 : 0;
77 if ((curdev == 0) && ((cts & 0xFFFF) == 0x60) && (b == 0x01))
78 outb(0xCF9, 0x4);
79 dolog(s);
80 *(unsigned char*)0xAFFD0 /* EAX */ = b;
81 break;
82 }
83 case 0x30000:
84 {
85 unsigned char b;
86
87 strcpy(s, "WRITxxxxxxxxxxxxxxxx");
88 b = *(unsigned char*)0xAFFD0 /* EAX */;
89 tohex(s+4, cts);
90 tohex(s+12, b);
91 dolog(s);
92 outb(cts & 0xFFFF, b);
93 break;
94 }
95 default:
96 dolog("Unhandled PCI cycle");
97 }
98}
99
015cd976
JW
100void __start (void)
101{
035d7af7 102 unsigned char smramc;
31be35cd 103 static int first = 1;
035d7af7
JW
104
105 pcisave = inl(0xCF8);
106 vgasave = inb(0x3D4);
31be35cd
JW
107
108 if (first)
109 {
110 first = 0;
111 dolog("NetWatch running...");
112 }
035d7af7 113
4bea7daf 114 counter++;
31be35cd 115 outb(0x80, (counter & 0xFF));
035d7af7 116
31be35cd
JW
117 strcpy(thestr, "15-412! xxxxxxxx xxxxxxxx");
118 tohex(thestr + 8, inl(0x0834));
119 tohex(thestr + 17, counter);
120 strblit(thestr, 0, 0);
035d7af7 121
31be35cd
JW
122 if (inl(0x834) & 0x20)
123 dolog("Warning: unhandled APM access");
4122ee13
JW
124 if (inl(0x834) & 0x1000)
125 {
126 if (inl(0x844) & 0x1000) /* devact_sts */
127 {
98765740 128 pci_dump();
4122ee13
JW
129 outl(0x848, 0x1000);
130 outl(0x844, 0x1000);
131 }
132 }
31be35cd
JW
133 if (inl(0x834) & 0x4000)
134 dolog("Long periodic timer");
98765740
JP
135 if (inl(0x840) & 0x1000)
136 {
137 dolog("Caught device monitor trap");
138 pci_dump();
139 outl(0x840, 0x1100);
140 outl(0x840, 0x0100);
141 }
31be35cd
JW
142 if (inl(0x834) & ~(0x4160))
143 {
144 unsigned char s[40];
145 strcpy(s, "Unknown: xxxxxxxx");
146 tohex(s + 9, inl(0x834) & ~(0x140));
147 dolog(s);
148 }
98765740
JP
149
150
31be35cd 151 outlog();
035d7af7
JW
152
153 outl(0xCF8, pcisave);
154 outb(0x3D4, vgasave);
a46bffee 155
4122ee13 156 outl(0x848, 0x1000);
31be35cd 157 outl(0x834, /*0x40*/0xFFFF); // ack the periodic IRQ
a46bffee
JW
158 outb(0x830, (inb(0x830) | 0x2) & ~0x40);
159 outb(0x830, inb(0x830) | 0x40);
160
4bea7daf
JW
161}
162
This page took 0.038225 seconds and 4 git commands to generate.