2 * Main post-paging entry point. Actually, this is a lie.
3 * NetWatch system management mode administration console
5 * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved.
6 * This program is free software; you can redistribute and/or modify it under
7 * the terms found in the file LICENSE in the root of this source tree.
13 #include <video_defines.h>
16 #include <pci-bother.h>
19 #include "../net/net.h"
20 #include "vga-overlay.h"
24 unsigned int lastctr = 0;
25 extern unsigned int counter;
27 static int _ibf_ready = 0;
28 static int _waiting_for_data = 0;
29 static int curdev = 0;
30 static int adding_locks_from_time_to_time = 0;
32 static int _inject_ready()
34 return _ibf_ready && !_waiting_for_data && !adding_locks_from_time_to_time;
39 if (kbd_has_injected_scancode() && _inject_ready())
41 smi_disable_event(SMI_EVENT_DEVTRAP_KBC);
43 while (inb(0x64) & 0x02) /* Busy? */
45 outb(0x64, 0xD2); /* "Inject, please!" */
46 while (inb(0x64) & 0x02) /* Busy? */
48 outb(0x60, kbd_get_injected_scancode()); /* data */
49 while ((inb(0x64) & 0x02) && i--) /* wait for completion */
51 /* On some chipsets, this might set the "device active" bit
52 * for the keyboard controller. On ICH2, we appear to get
53 * lucky, but we need a mechanism of saying "I just touched
54 * the keyboard, please don't send me another SMI because of
56 * ICH2: outl(0x844, 0x1000);
58 adding_locks_from_time_to_time++;
59 smi_enable_event(SMI_EVENT_DEVTRAP_KBC);
60 } else if (kbd_has_injected_scancode())
61 outputf("Would like to inject, but %d %d", _ibf_ready, _waiting_for_data);
80 /* Read the real hardware and mask in our OBF if need be. */
83 curdev = (b & 0x20 /* KBD_STAT_MOUSE_OBF */) ? 1 : 0;
85 if ((curdev == 0) && kbd_has_injected_scancode())
88 _ibf_ready = (b & 0x2 /* IBF */) ? 0 : 1;
92 if ((curdev == 0) && kbd_has_injected_scancode() && !adding_locks_from_time_to_time)
93 b = kbd_get_injected_scancode();
96 if (adding_locks_from_time_to_time)
97 adding_locks_from_time_to_time--;
98 if ((curdev == 0) && (b == 0x01)) { /* Escape */
99 outb(0xCF9, 0x4); /* Reboot */
105 b = inb(cts & 0xFFFF);
108 dologf("READ : %08x (%02x)", cts, b);
109 *(unsigned char*)0xAFFD0 /* EAX */ = b;
116 b = *(unsigned char*)0xAFFD0 /* EAX */;
117 dologf("WRITE: %08x (%02x)", cts, b);
118 if ((cts & 0xFFFF) == 0x64)
121 case 0x60 /*KBD_CCMD_WRITE_MODE*/:
122 case 0xD2 /*KBD_CCMD_WRITE_OBUF*/:
123 case 0xD3 /*KBD_CCMD_WRITE_AUX_OBUF*/:
124 case 0xD4 /*KBD_CCMD_WRITE_MOUSE*/:
125 case 0xD1 /*KBD_CCMD_WRITE_OUTPORT*/:
126 _waiting_for_data = 1; /* These all should not be interrupted. */
128 else if ((cts & 0xFFFF) == 0x60)
129 _waiting_for_data = 0;
130 outb(cts & 0xFFFF, b);
134 dolog("Unhandled PCI cycle");
142 void timer_handler(smi_event_t ev)
144 static unsigned int ticks = 0;
146 smi_disable_event(SMI_EVENT_FAST_TIMER);
147 smi_enable_event(SMI_EVENT_FAST_TIMER);
151 outb(0x80, (ticks++) & 0xFF);
153 if (!fb || fb->curmode.text)
157 void kbc_handler(smi_event_t ev)
162 void gbl_rls_handler(smi_event_t ev)
166 ecx = *(unsigned long*)0xAFFD4;
168 packet_t * packet = check_packet(ecx);
171 dologf("WARN: bad packet at %08x", ecx);
175 outputf("Got packet: type %08x", packet->type);
177 if (packet->type == 42) {
178 dump_log((char *)packet->data);
179 *(unsigned long*)0xAFFD4 = 42;
180 } else if (packet->type == 0xAA) {
181 kbd_inject_keysym('A', 1);
182 kbd_inject_keysym('A', 0);
184 *(unsigned long*)0xAFFD4 = 0x2BADD00D;