gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
i8042.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include "dev/x86/i8042.hh"
30 
31 #include "base/bitunion.hh"
32 #include "debug/I8042.hh"
33 #include "mem/packet.hh"
34 #include "mem/packet_access.hh"
35 
41 // The 8042 has a whopping 32 bytes of internal RAM.
42 const uint8_t RamSize = 32;
43 const uint8_t NumOutputBits = 14;
44 
45 
47  : BasicPioDevice(p, 0), // pioSize arg is dummy value... not used
48  latency(p->pio_latency),
49  dataPort(p->data_port), commandPort(p->command_port),
50  statusReg(0), commandByte(0), dataReg(0), lastCommand(NoCommand),
51  mouse(p->mouse), keyboard(p->keyboard)
52 {
53  fatal_if(!mouse, "The i8042 model requires a mouse instance");
54  fatal_if(!keyboard, "The i8042 model requires a keyboard instance");
55 
56  statusReg.passedSelfTest = 1;
57  statusReg.commandLast = 1;
58  statusReg.keyboardUnlocked = 1;
59 
60  commandByte.convertScanCodes = 1;
61  commandByte.passedSelfTest = 1;
62  commandByte.keyboardFullInt = 1;
63 
64  for (int i = 0; i < p->port_keyboard_int_pin_connection_count; i++) {
65  keyboardIntPin.push_back(new IntSourcePin<I8042>(
66  csprintf("%s.keyboard_int_pin[%d]", name(), i), i, this));
67  }
68  for (int i = 0; i < p->port_mouse_int_pin_connection_count; i++) {
69  mouseIntPin.push_back(new IntSourcePin<I8042>(
70  csprintf("%s.mouse_int_pin[%d]", name(), i), i, this));
71  }
72 }
73 
74 
77 {
78  AddrRangeList ranges;
79  // TODO: Are these really supposed to be a single byte and not 4?
80  ranges.push_back(RangeSize(dataPort, 1));
81  ranges.push_back(RangeSize(commandPort, 1));
82  return ranges;
83 }
84 
85 void
86 X86ISA::I8042::writeData(uint8_t newData, bool mouse)
87 {
88  DPRINTF(I8042, "Set data %#02x.\n", newData);
89  dataReg = newData;
90  statusReg.outputFull = 1;
91  statusReg.mouseOutputFull = (mouse ? 1 : 0);
92  if (!mouse && commandByte.keyboardFullInt) {
93  DPRINTF(I8042, "Sending keyboard interrupt.\n");
94  for (auto *wire: keyboardIntPin) {
95  wire->raise();
96  //This is a hack
97  wire->lower();
98  }
99  } else if (mouse && commandByte.mouseFullInt) {
100  DPRINTF(I8042, "Sending mouse interrupt.\n");
101  for (auto *wire: mouseIntPin) {
102  wire->raise();
103  //This is a hack
104  wire->lower();
105  }
106  }
107 }
108 
109 uint8_t
111 {
112  uint8_t data = dataReg;
113  statusReg.outputFull = 0;
114  statusReg.mouseOutputFull = 0;
115  if (keyboard->hostDataAvailable()) {
116  writeData(keyboard->hostRead(), false);
117  } else if (mouse->hostDataAvailable()) {
118  writeData(mouse->hostRead(), true);
119  }
120  return data;
121 }
122 
123 Tick
125 {
126  assert(pkt->getSize() == 1);
127  Addr addr = pkt->getAddr();
128  if (addr == dataPort) {
129  uint8_t data = readDataOut();
130  //DPRINTF(I8042, "Read from data port got %#02x.\n", data);
131  pkt->setLE<uint8_t>(data);
132  } else if (addr == commandPort) {
133  //DPRINTF(I8042, "Read status as %#02x.\n", (uint8_t)statusReg);
134  pkt->setLE<uint8_t>((uint8_t)statusReg);
135  } else {
136  panic("Read from unrecognized port %#x.\n", addr);
137  }
138  pkt->makeAtomicResponse();
139  return latency;
140 }
141 
142 Tick
144 {
145  assert(pkt->getSize() == 1);
146  Addr addr = pkt->getAddr();
147  uint8_t data = pkt->getLE<uint8_t>();
148  if (addr == dataPort) {
149  statusReg.commandLast = 0;
150  switch (lastCommand) {
151  case NoCommand:
152  keyboard->hostWrite(data);
154  writeData(keyboard->hostRead(), false);
155  break;
156  case WriteToMouse:
157  mouse->hostWrite(data);
158  if (mouse->hostDataAvailable())
159  writeData(mouse->hostRead(), true);
160  break;
161  case WriteCommandByte:
162  commandByte = data;
163  DPRINTF(I8042, "Got data %#02x for \"Write "
164  "command byte\" command.\n", data);
165  statusReg.passedSelfTest = (uint8_t)commandByte.passedSelfTest;
166  break;
168  DPRINTF(I8042, "Got data %#02x for \"Write "
169  "mouse output buffer\" command.\n", data);
170  writeData(data, true);
171  break;
173  DPRINTF(I8042, "Got data %#02x for \"Write "
174  "keyboad output buffer\" command.\n", data);
175  writeData(data, false);
176  break;
177  case WriteOutputPort:
178  DPRINTF(I8042, "Got data %#02x for \"Write "
179  "output port\" command.\n", data);
180  panic_if(bits(data, 0) != 1, "Reset bit should be 1");
181  // Safe to ignore otherwise
182  break;
183  default:
184  panic("Data written for unrecognized "
185  "command %#02x\n", lastCommand);
186  }
188  } else if (addr == commandPort) {
189  DPRINTF(I8042, "Got command %#02x.\n", data);
190  statusReg.commandLast = 1;
191  // These purposefully leave off the first byte of the controller RAM
192  // so it can be handled specially.
193  if (data > ReadControllerRamBase &&
194  data < ReadControllerRamBase + RamSize) {
195  panic("Attempted to use i8042 read controller RAM command to "
196  "get byte %d.\n", data - ReadControllerRamBase);
197  } else if (data > WriteControllerRamBase &&
198  data < WriteControllerRamBase + RamSize) {
199  panic("Attempted to use i8042 read controller RAM command to "
200  "get byte %d.\n", data - ReadControllerRamBase);
201  } else if (data >= PulseOutputBitBase &&
203  panic("Attempted to use i8042 pulse output bit command to "
204  "to pulse bit %d.\n", data - PulseOutputBitBase);
205  }
206  switch (data) {
207  case GetCommandByte:
208  DPRINTF(I8042, "Getting command byte.\n");
210  break;
211  case WriteCommandByte:
212  DPRINTF(I8042, "Setting command byte.\n");
214  break;
215  case CheckForPassword:
216  panic("i8042 \"Check for password\" command not implemented.\n");
217  case LoadPassword:
218  panic("i8042 \"Load password\" command not implemented.\n");
219  case CheckPassword:
220  panic("i8042 \"Check password\" command not implemented.\n");
221  case DisableMouse:
222  DPRINTF(I8042, "Disabling mouse at controller.\n");
223  commandByte.disableMouse = 1;
224  break;
225  case EnableMouse:
226  DPRINTF(I8042, "Enabling mouse at controller.\n");
227  commandByte.disableMouse = 0;
228  break;
229  case TestMouse:
230  panic("i8042 \"Test mouse\" command not implemented.\n");
231  case SelfTest:
232  panic("i8042 \"Self test\" command not implemented.\n");
233  case InterfaceTest:
234  panic("i8042 \"Interface test\" command not implemented.\n");
235  case DiagnosticDump:
236  panic("i8042 \"Diagnostic dump\" command not implemented.\n");
237  case DisableKeyboard:
238  DPRINTF(I8042, "Disabling keyboard at controller.\n");
239  commandByte.disableKeyboard = 1;
240  break;
241  case EnableKeyboard:
242  DPRINTF(I8042, "Enabling keyboard at controller.\n");
243  commandByte.disableKeyboard = 0;
244  break;
245  case ReadInputPort:
246  panic("i8042 \"Read input port\" command not implemented.\n");
247  case ContinuousPollLow:
248  panic("i8042 \"Continuous poll low\" command not implemented.\n");
249  case ContinuousPollHigh:
250  panic("i8042 \"Continuous poll high\" command not implemented.\n");
251  case ReadOutputPort:
252  panic("i8042 \"Read output port\" command not implemented.\n");
253  case WriteOutputPort:
255  break;
258  break;
260  DPRINTF(I8042, "Got command to write to mouse output buffer.\n");
262  break;
263  case WriteToMouse:
264  DPRINTF(I8042, "Expecting mouse command.\n");
266  break;
267  case DisableA20:
268  panic("i8042 \"Disable A20\" command not implemented.\n");
269  case EnableA20:
270  panic("i8042 \"Enable A20\" command not implemented.\n");
271  case ReadTestInputs:
272  panic("i8042 \"Read test inputs\" command not implemented.\n");
273  case SystemReset:
274  panic("i8042 \"System reset\" command not implemented.\n");
275  default:
276  warn("Write to unknown i8042 "
277  "(keyboard controller) command port.\n");
278  }
279  } else {
280  panic("Write to unrecognized port %#x.\n", addr);
281  }
282  pkt->makeAtomicResponse();
283  return latency;
284 }
285 
286 void
288 {
295 }
296 
297 void
299 {
306 }
307 
309 I8042Params::create()
310 {
311  return new X86ISA::I8042(this);
312 }
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
#define DPRINTF(x,...)
Definition: trace.hh:225
AddrRange RangeSize(Addr start, Addr size)
Definition: addr_range.hh:580
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: i8042.cc:298
std::vector< IntSourcePin< I8042 > * > mouseIntPin
Definition: i8042.hh:109
Bitfield< 7 > i
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: i8042.cc:287
Addr commandPort
Definition: i8042.hh:99
void hostWrite(uint8_t c)
Transmit a character from the host interface to the device.
Definition: device.cc:94
AddrRangeList getAddrRanges() const override
Determine the address ranges that this device responds to.
Definition: i8042.cc:76
uint16_t lastCommand
Definition: i8042.hh:107
PioDeviceParams Params
Definition: io_device.hh:131
PS2Device * mouse
Definition: i8042.hh:112
Definition: cprintf.cc:40
uint8_t dataReg
Definition: i8042.hh:104
StatusReg statusReg
Definition: i8042.hh:101
void setLE(T v)
Set the value in the data pointer to v as little endian.
unsigned getSize() const
Definition: packet.hh:730
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:770
I8042(Params *p)
Definition: i8042.cc:46
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
uint8_t readDataOut()
Definition: i8042.cc:110
CommandByte commandByte
Definition: i8042.hh:102
Addr dataPort
Definition: i8042.hh:98
void makeAtomicResponse()
Definition: packet.hh:943
uint64_t Tick
Tick count type.
Definition: types.hh:61
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: i8042.cc:143
Addr getAddr() const
Definition: packet.hh:720
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:199
void writeData(uint8_t newData, bool mouse=false)
Definition: i8042.cc:86
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: i8042.cc:124
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:763
virtual const std::string name() const
Definition: sim_object.hh:129
Declaration of the Packet class.
std::ostream CheckpointOut
Definition: serialize.hh:63
const uint8_t RamSize
Note: For details on the implementation see https://wiki.osdev.org/%228042%22_PS/2_Controller.
Definition: i8042.cc:42
PS2Device * keyboard
Definition: i8042.hh:113
static const uint16_t NoCommand
Definition: i8042.hh:106
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
#define warn(...)
Definition: logging.hh:208
const uint8_t NumOutputBits
Definition: i8042.cc:43
T bits(T val, int first, int last)
Extract the bitfield from position &#39;first&#39; to &#39;last&#39; (inclusive) from &#39;val&#39; and right justify it...
Definition: bitfield.hh:71
Bitfield< 0 > p
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:181
bool hostDataAvailable() const
Check if there is pending data from the PS/2 device.
Definition: device.hh:73
const char data[]
Bitfield< 3 > addr
Definition: types.hh:79
std::vector< IntSourcePin< I8042 > * > keyboardIntPin
Definition: i8042.hh:110
uint8_t hostRead()
Read a character from the device.
Definition: device.cc:86

Generated on Thu May 28 2020 16:21:33 for gem5 by doxygen 1.8.13