gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mouse.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/mouse.hh"
42 
43 #include "base/logging.hh"
44 #include "base/trace.hh"
45 #include "debug/PS2.hh"
46 #include "dev/ps2/types.hh"
47 #include "params/PS2Mouse.hh"
48 #include "sim/serialize.hh"
49 
50 PS2Mouse::PS2Mouse(const PS2MouseParams &p)
51  : PS2Device(p),
52  status(0), resolution(4), sampleRate(100)
53 {
54 }
55 
56 bool
58 {
59  switch (data[0]) {
60  case Ps2::ReadID:
61  DPRINTF(PS2, "Mouse ID requested.\n");
62  sendAck();
64  return true;
65  case Ps2::Disable:
66  DPRINTF(PS2, "Disabling data reporting.\n");
67  status.enabled = 0;
68  sendAck();
69  return true;
70  case Ps2::Enable:
71  DPRINTF(PS2, "Enabling data reporting.\n");
72  status.enabled = 1;
73  sendAck();
74  return true;
75  case Ps2::Resend:
76  panic("Mouse resend unimplemented.\n");
77  case Ps2::Reset:
78  DPRINTF(PS2, "Resetting the mouse.\n");
79  sampleRate = 100;
80  resolution = 4;
81  status.twoToOne = 0;
82  status.enabled = 0;
83  sendAck();
86  return true;
87 
89  DPRINTF(PS2, "Setting mouse scale to 1:1.\n");
90  status.twoToOne = 0;
91  sendAck();
92  return true;
94  DPRINTF(PS2, "Setting mouse scale to 2:1.\n");
95  status.twoToOne = 1;
96  sendAck();
97  return true;
99  if (data.size() == 1) {
100  DPRINTF(PS2, "Setting mouse resolution.\n");
101  sendAck();
102  return false;
103  } else {
104  DPRINTF(PS2, "Mouse resolution set to %d.\n", data[1]);
105  resolution = data[1];
106  sendAck();
107  return true;
108  }
110  DPRINTF(PS2, "Getting mouse status.\n");
111  sendAck();
112  send((uint8_t *)&(status), 1);
113  send(&resolution, sizeof(resolution));
114  send(&sampleRate, sizeof(sampleRate));
115  return true;
117  panic("Reading mouse data unimplemented.\n");
119  panic("Resetting mouse wrap mode unimplemented.\n");
121  panic("Setting mouse wrap mode unimplemented.\n");
123  panic("Setting mouse remote mode unimplemented.\n");
125  if (data.size() == 1) {
126  DPRINTF(PS2, "Setting mouse sample rate.\n");
127  sendAck();
128  return false;
129  } else {
130  DPRINTF(PS2, "Mouse sample rate %d samples "
131  "per second.\n", data[1]);
132  sampleRate = data[1];
133  sendAck();
134  return true;
135  }
137  DPRINTF(PS2, "Disabling and resetting mouse.\n");
138  sampleRate = 100;
139  resolution = 4;
140  status.twoToOne = 0;
141  status.enabled = 0;
142  sendAck();
143  return true;
144  default:
145  warn("Unknown mouse command %#02x.\n", data[0]);
146  send(Ps2::Resend);
147  return true;
148  }
149 }
150 
151 void
153 {
155 
159 }
160 
161 void
163 {
165 
169 }
PS2Mouse::recv
bool recv(const std::vector< uint8_t > &data) override
Data received from host.
Definition: mouse.cc:57
ArmISA::status
Bitfield< 5, 0 > status
Definition: miscregs_types.hh:417
PS2Device::send
void send(const uint8_t *data, size_t size)
Send data from a PS/2 device to a host.
Definition: device.cc:105
warn
#define warn(...)
Definition: logging.hh:239
PS2Mouse::PS2Mouse
PS2Mouse(const PS2MouseParams &p)
Definition: mouse.cc:50
PS2Mouse::sampleRate
uint8_t sampleRate
Definition: mouse.hh:62
Ps2::Mouse::Scale1to1
@ Scale1to1
Definition: types.hh:89
types.hh
data
const char data[]
Definition: circlebuf.test.cc:47
serialize.hh
UNSERIALIZE_SCALAR
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:591
PS2Mouse::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: mouse.cc:152
Ps2::SelfTestPass
@ SelfTestPass
Definition: types.hh:55
Ps2::Mouse::RemoteMode
@ RemoteMode
Definition: types.hh:96
PS2Device::sendAck
void sendAck()
Send an ACK byte to the host.
Definition: device.cc:120
PS2Mouse::resolution
uint8_t resolution
Definition: mouse.hh:61
std::vector< uint8_t >
PS2Device
Definition: device.hh:51
Ps2::Disable
@ Disable
Definition: types.hh:58
mouse.hh
cp
Definition: cprintf.cc:37
Ps2::Resend
@ Resend
Definition: types.hh:62
Ps2::ReadID
@ ReadID
Definition: types.hh:56
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
Ps2::Mouse::GetStatus
@ GetStatus
Definition: types.hh:92
PS2Mouse::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: mouse.cc:162
SERIALIZE_SCALAR
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:584
Ps2::DefaultsAndDisable
@ DefaultsAndDisable
Definition: types.hh:59
Ps2::Mouse::SetResolution
@ SetResolution
Definition: types.hh:91
Ps2::Mouse::ResetWrapMode
@ ResetWrapMode
Definition: types.hh:94
PS2Device::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: device.cc:57
Ps2::Enable
@ Enable
Definition: types.hh:57
logging.hh
Ps2::Mouse::WrapMode
@ WrapMode
Definition: types.hh:95
Ps2::Mouse::ReadData
@ ReadData
Definition: types.hh:93
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
trace.hh
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
Ps2::Reset
@ Reset
Definition: types.hh:63
PS2Device::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: device.cc:67
CheckpointIn
Definition: serialize.hh:68
Ps2::Mouse::SampleRate
@ SampleRate
Definition: types.hh:97
Ps2::Mouse::Scale2to1
@ Scale2to1
Definition: types.hh:90
Ps2::Mouse::ID
const std::vector< uint8_t > ID
Definition: types.cc:46
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

Generated on Tue Jun 22 2021 15:28:28 for gem5 by doxygen 1.8.17