gem5  v20.0.0.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 "debug/PS2.hh"
45 #include "dev/ps2/types.hh"
46 #include "params/PS2Mouse.hh"
47 
48 PS2Mouse::PS2Mouse(const PS2MouseParams *p)
49  : PS2Device(p),
50  status(0), resolution(4), sampleRate(100)
51 {
52 }
53 
54 bool
56 {
57  switch (data[0]) {
58  case Ps2::ReadID:
59  DPRINTF(PS2, "Mouse ID requested.\n");
60  sendAck();
62  return true;
63  case Ps2::Disable:
64  DPRINTF(PS2, "Disabling data reporting.\n");
65  status.enabled = 0;
66  sendAck();
67  return true;
68  case Ps2::Enable:
69  DPRINTF(PS2, "Enabling data reporting.\n");
70  status.enabled = 1;
71  sendAck();
72  return true;
73  case Ps2::Resend:
74  panic("Mouse resend unimplemented.\n");
75  case Ps2::Reset:
76  DPRINTF(PS2, "Resetting the mouse.\n");
77  sampleRate = 100;
78  resolution = 4;
79  status.twoToOne = 0;
80  status.enabled = 0;
81  sendAck();
84  return true;
85 
87  DPRINTF(PS2, "Setting mouse scale to 1:1.\n");
88  status.twoToOne = 0;
89  sendAck();
90  return true;
92  DPRINTF(PS2, "Setting mouse scale to 2:1.\n");
93  status.twoToOne = 1;
94  sendAck();
95  return true;
97  if (data.size() == 1) {
98  DPRINTF(PS2, "Setting mouse resolution.\n");
99  sendAck();
100  return false;
101  } else {
102  DPRINTF(PS2, "Mouse resolution set to %d.\n", data[1]);
103  resolution = data[1];
104  sendAck();
105  return true;
106  }
108  DPRINTF(PS2, "Getting mouse status.\n");
109  sendAck();
110  send((uint8_t *)&(status), 1);
111  send(&resolution, sizeof(resolution));
112  send(&sampleRate, sizeof(sampleRate));
113  return true;
115  panic("Reading mouse data unimplemented.\n");
117  panic("Resetting mouse wrap mode unimplemented.\n");
119  panic("Setting mouse wrap mode unimplemented.\n");
121  panic("Setting mouse remote mode unimplemented.\n");
123  if (data.size() == 1) {
124  DPRINTF(PS2, "Setting mouse sample rate.\n");
125  sendAck();
126  return false;
127  } else {
128  DPRINTF(PS2, "Mouse sample rate %d samples "
129  "per second.\n", data[1]);
130  sampleRate = data[1];
131  sendAck();
132  return true;
133  }
135  DPRINTF(PS2, "Disabling and resetting mouse.\n");
136  sampleRate = 100;
137  resolution = 4;
138  status.twoToOne = 0;
139  status.enabled = 0;
140  sendAck();
141  return true;
142  default:
143  warn("Unknown mouse command %#02x.\n", data[0]);
144  send(Ps2::Resend);
145  return true;
146  }
147 }
148 
149 void
151 {
153 
157 }
158 
159 void
161 {
163 
167 }
168 
169 PS2Mouse *
170 PS2MouseParams::create()
171 {
172  return new PS2Mouse(this);
173 }
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
#define DPRINTF(x,...)
Definition: trace.hh:225
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: mouse.cc:160
const std::vector< uint8_t > ID
Definition: types.cc:46
void sendAck()
Send an ACK byte to the host.
Definition: device.cc:118
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: mouse.cc:150
Definition: cprintf.cc:40
Bitfield< 5, 0 > status
PS2Mouse(const PS2MouseParams *p)
Definition: mouse.cc:48
uint8_t resolution
Definition: mouse.hh:60
uint8_t sampleRate
Definition: mouse.hh:61
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:770
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: device.cc:55
bool recv(const std::vector< uint8_t > &data) override
Data received from host.
Definition: mouse.cc:55
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:763
void send(const uint8_t *data, size_t size)
Send data from a PS/2 device to a host.
Definition: device.cc:103
std::ostream CheckpointOut
Definition: serialize.hh:63
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: device.cc:65
#define warn(...)
Definition: logging.hh:208
Bitfield< 0 > p
const char data[]

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