33 #include "debug/I8042.hh"
52 latency(
p.pio_latency),
53 dataPort(
p.data_port), commandPort(
p.command_port),
54 statusReg(0), commandByte(0), dataReg(0), lastCommand(NoCommand),
55 mouse(
p.mouse), keyboard(
p.keyboard)
57 fatal_if(!
mouse,
"The i8042 model requires a mouse instance");
68 for (
int i = 0;
i <
p.port_keyboard_int_pin_connection_count;
i++) {
72 for (
int i = 0;
i <
p.port_mouse_int_pin_connection_count;
i++) {
85 ranges.push_back(
RangeSize(commandPort, 1));
94 statusReg.outputFull = 1;
95 statusReg.mouseOutputFull = (mouse ? 1 : 0);
96 if (!mouse && commandByte.keyboardFullInt) {
98 for (
auto *wire: keyboardIntPin) {
103 }
else if (mouse && commandByte.mouseFullInt) {
105 for (
auto *wire: mouseIntPin) {
116 uint8_t
data = dataReg;
117 statusReg.outputFull = 0;
118 statusReg.mouseOutputFull = 0;
119 if (keyboard->hostDataAvailable()) {
120 writeData(keyboard->hostRead(),
false);
121 }
else if (mouse->hostDataAvailable()) {
122 writeData(mouse->hostRead(),
true);
132 if (
addr == dataPort) {
133 uint8_t
data = readDataOut();
136 }
else if (
addr == commandPort) {
138 pkt->
setLE<uint8_t>((uint8_t)statusReg);
140 panic(
"Read from unrecognized port %#x.\n",
addr);
152 if (
addr == dataPort) {
153 statusReg.commandLast = 0;
154 switch (lastCommand) {
156 keyboard->hostWrite(
data);
157 if (keyboard->hostDataAvailable())
158 writeData(keyboard->hostRead(),
false);
161 mouse->hostWrite(
data);
162 if (mouse->hostDataAvailable())
163 writeData(mouse->hostRead(),
true);
165 case WriteCommandByte:
168 "command byte\" command.\n",
data);
169 statusReg.passedSelfTest = (uint8_t)commandByte.passedSelfTest;
171 case WriteMouseOutputBuff:
173 "mouse output buffer\" command.\n",
data);
174 writeData(
data,
true);
176 case WriteKeyboardOutputBuff:
178 "keyboad output buffer\" command.\n",
data);
179 writeData(
data,
false);
181 case WriteOutputPort:
183 "output port\" command.\n",
data);
188 panic(
"Data written for unrecognized "
189 "command %#02x\n", lastCommand);
191 lastCommand = NoCommand;
192 }
else if (
addr == commandPort) {
194 statusReg.commandLast = 1;
197 if (
data > ReadControllerRamBase &&
199 panic(
"Attempted to use i8042 read controller RAM command to "
200 "get byte %d.\n",
data - ReadControllerRamBase);
201 }
else if (
data > WriteControllerRamBase &&
203 panic(
"Attempted to use i8042 read controller RAM command to "
204 "get byte %d.\n",
data - ReadControllerRamBase);
205 }
else if (
data >= PulseOutputBitBase &&
207 panic(
"Attempted to use i8042 pulse output bit command to "
208 "to pulse bit %d.\n",
data - PulseOutputBitBase);
213 writeData(commandByte);
215 case WriteCommandByte:
217 lastCommand = WriteCommandByte;
219 case CheckForPassword:
220 panic(
"i8042 \"Check for password\" command not implemented.\n");
222 panic(
"i8042 \"Load password\" command not implemented.\n");
224 panic(
"i8042 \"Check password\" command not implemented.\n");
227 commandByte.disableMouse = 1;
231 commandByte.disableMouse = 0;
234 panic(
"i8042 \"Test mouse\" command not implemented.\n");
236 panic(
"i8042 \"Self test\" command not implemented.\n");
238 panic(
"i8042 \"Interface test\" command not implemented.\n");
240 panic(
"i8042 \"Diagnostic dump\" command not implemented.\n");
241 case DisableKeyboard:
243 commandByte.disableKeyboard = 1;
247 commandByte.disableKeyboard = 0;
250 panic(
"i8042 \"Read input port\" command not implemented.\n");
251 case ContinuousPollLow:
252 panic(
"i8042 \"Continuous poll low\" command not implemented.\n");
253 case ContinuousPollHigh:
254 panic(
"i8042 \"Continuous poll high\" command not implemented.\n");
256 panic(
"i8042 \"Read output port\" command not implemented.\n");
257 case WriteOutputPort:
258 lastCommand = WriteOutputPort;
260 case WriteKeyboardOutputBuff:
261 lastCommand = WriteKeyboardOutputBuff;
263 case WriteMouseOutputBuff:
264 DPRINTF(
I8042,
"Got command to write to mouse output buffer.\n");
265 lastCommand = WriteMouseOutputBuff;
269 lastCommand = WriteToMouse;
272 panic(
"i8042 \"Disable A20\" command not implemented.\n");
274 panic(
"i8042 \"Enable A20\" command not implemented.\n");
276 panic(
"i8042 \"Read test inputs\" command not implemented.\n");
278 panic(
"i8042 \"System reset\" command not implemented.\n");
280 warn(
"Write to unknown i8042 "
281 "(keyboard controller) command port.\n");
284 panic(
"Write to unrecognized port %#x.\n",
addr);