44 #include "debug/PS2.hh" 46 #include "params/PS2TouchKit.hh" 51 enabled(false), touchKitEnabled(false)
80 DPRINTF(PS2,
"Resetting device.\n");
93 DPRINTF(PS2,
"Disabling device.\n");
99 DPRINTF(PS2,
"Enabling device.\n");
105 DPRINTF(PS2,
"Setting defaults and disabling device.\n");
118 return data.size() == 2;
140 panic(
"Unknown byte received: %#x\n", data[0]);
152 if (data.size() < 3 || data.size() - 2 < data[1])
155 const uint8_t
len = data[1];
156 const uint8_t cmd = data[2];
165 warn_if(len != 1,
"Unexpected activate packet length: %u\n", len);
170 panic(
"Unimplemented touchscreen command: %#x\n", cmd);
179 for (
int i = 0;
i < size; ++
i)
198 const uint8_t resp[] = {
200 (uint8_t)(_x >> 7), (uint8_t)(_x & 0x7f),
201 (uint8_t)(_y >> 7), (uint8_t)(_y & 0x7f),
204 send(resp,
sizeof(resp));
208 PS2TouchKitParams::create()
#define panic(...)
This implements a cprintf based panic() function.
bool touchKitEnabled
Has the driver enabled TouchKit mode? The model suppresses touch event generation until this is true...
const std::vector< uint8_t > ID
void sendAck()
Send an ACK byte to the host.
void serialize(CheckpointOut &cp) const override
Serialize an object.
bool recvTouchKit(const std::vector< uint8_t > &data)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
#define UNSERIALIZE_SCALAR(scalar)
void serialize(CheckpointOut &cp) const override
Serialize an object.
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
size_t sendPending() const
Output buffer size.
VncInput *const vnc
The vnc server we're connected to (if any)
#define SERIALIZE_SCALAR(scalar)
PS2TouchKit(const PS2TouchKitParams *p)
void send(const uint8_t *data, size_t size)
Send data from a PS/2 device to a host.
std::ostream CheckpointOut
void mouseAt(uint16_t x, uint16_t y, uint8_t buttons) override
called whenever the mouse moves or it's button state changes buttons is a simple mask with each butto...
bool recv(const std::vector< uint8_t > &data) override
Data received from host.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
void sendTouchKit(const uint8_t *data, size_t size)
bool enabled
Is the device enabled?