gem5  v20.0.0.3
keyboard.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2018 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2008 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #include "dev/ps2/keyboard.hh"
42 
43 #include "base/logging.hh"
44 #include "debug/PS2.hh"
45 #include "dev/ps2/types.hh"
46 #include "params/PS2Keyboard.hh"
47 
48 PS2Keyboard::PS2Keyboard(const PS2KeyboardParams *p)
49  : PS2Device(p),
50  shiftDown(false),
51  enabled(false)
52 {
53  if (p->vnc)
54  p->vnc->setKeyboard(this);
55 }
56 
57 void
59 {
63 }
64 
65 void
67 {
71 }
72 
73 bool
75 {
76  switch (data[0]) {
77  case Ps2::ReadID:
78  DPRINTF(PS2, "Got keyboard read ID command.\n");
79  sendAck();
81  return true;
82  case Ps2::Enable:
83  DPRINTF(PS2, "Enabling the keyboard.\n");
84  enabled = true;
85  sendAck();
86  return true;
87  case Ps2::Disable:
88  DPRINTF(PS2, "Disabling the keyboard.\n");
89  enabled = false;
90  sendAck();
91  return true;
93  DPRINTF(PS2, "Disabling and resetting the keyboard.\n");
94  enabled = false;
95  sendAck();
96  return true;
97  case Ps2::Reset:
98  DPRINTF(PS2, "Resetting keyboard.\n");
99  enabled = true;
100  sendAck();
102  return true;
103  case Ps2::Resend:
104  panic("Keyboard resend unimplemented.\n");
105 
107  if (data.size() == 1) {
108  DPRINTF(PS2, "Got LED write command.\n");
109  sendAck();
110  return false;
111  } else {
112  DPRINTF(PS2, "Setting LEDs: "
113  "caps lock %s, num lock %s, scroll lock %s\n",
114  bits(data[1], 2) ? "on" : "off",
115  bits(data[1], 1) ? "on" : "off",
116  bits(data[1], 0) ? "on" : "off");
117  sendAck();
118  return true;
119  }
121  panic("Keyboard diagnostic echo unimplemented.\n");
123  panic("Accessing alternate scan codes unimplemented.\n");
125  if (data.size() == 1) {
126  DPRINTF(PS2, "Setting typematic info.\n");
127  sendAck();
128  return false;
129  } else {
130  DPRINTF(PS2, "Setting typematic info to %#02x.\n", data[1]);
131  sendAck();
132  return true;
133  }
135  panic("Setting all keys to typemantic unimplemented.\n");
137  panic("Setting all keys to make/release unimplemented.\n");
139  panic("Setting all keys to make unimplemented.\n");
141  panic("Setting all keys to "
142  "typematic/make/release unimplemented.\n");
144  panic("Setting a key to typematic unimplemented.\n");
146  panic("Setting a key to make/release unimplemented.\n");
148  panic("Setting key to make only unimplemented.\n");
149  default:
150  panic("Unknown keyboard command %#02x.\n", data[0]);
151  }
152 }
153 
154 void
155 PS2Keyboard::keyPress(uint32_t key, bool down)
156 {
158 
159  // convert the X11 keysym into ps2 codes and update the shift
160  // state (shiftDown)
161  Ps2::keySymToPs2(key, down, shiftDown, keys);
162 
163  // Drop key presses if the keyboard hasn't been enabled by the
164  // host. We do that after translating the key code to ensure that
165  // we keep track of the shift state.
166  if (!enabled)
167  return;
168 
169  // Insert into our queue of characters
170  for (uint8_t c : keys)
171  send(c);
172 }
173 
174 
175 PS2Keyboard *
176 PS2KeyboardParams::create()
177 {
178  return new PS2Keyboard(this);
179 }
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
#define DPRINTF(x,...)
Definition: trace.hh:225
bool recv(const std::vector< uint8_t > &data) override
Data received from host.
Definition: keyboard.cc:74
PS2Keyboard(const PS2KeyboardParams *p)
Definition: keyboard.cc:48
void sendAck()
Send an ACK byte to the host.
Definition: device.cc:118
bool down
Definition: types.hh:123
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: keyboard.cc:66
Definition: cprintf.cc:40
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:770
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: device.cc:55
STL list class.
Definition: stl.hh:51
bool enabled()
Definition: statistics.cc:545
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:763
bool shiftDown
is the shift key currently down
Definition: keyboard.hh:53
const std::vector< uint8_t > ID
Definition: types.cc:45
void send(const uint8_t *data, size_t size)
Send data from a PS/2 device to a host.
Definition: device.cc:103
Bitfield< 29 > c
std::ostream CheckpointOut
Definition: serialize.hh:63
void keyPress(uint32_t key, bool down) override
Called when the vnc server receives a key press event from the client.
Definition: keyboard.cc:155
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: device.cc:65
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: keyboard.cc:58
bool bool std::list< uint8_t > & keys
Definition: types.hh:123
bool enabled
Is the device enabled?
Definition: keyboard.hh:56
void keySymToPs2(uint32_t key, bool down, bool &cur_shift, std::list< uint8_t > &keys)
Definition: types.cc:83
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
const char data[]

Generated on Fri Jul 3 2020 15:53:02 for gem5 by doxygen 1.8.13