kmi.hh (9235:5aa4896ed55a) kmi.hh (9330:4a3269a11230)
1/*
2 * Copyright (c) 2010 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

--- 36 unchanged lines hidden (view full) ---

45 * Implementiation of a PL050 KMI
46 */
47
48#ifndef __DEV_ARM_PL050_HH__
49#define __DEV_ARM_PL050_HH__
50
51#include <list>
52
1/*
2 * Copyright (c) 2010 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

--- 36 unchanged lines hidden (view full) ---

45 * Implementiation of a PL050 KMI
46 */
47
48#ifndef __DEV_ARM_PL050_HH__
49#define __DEV_ARM_PL050_HH__
50
51#include <list>
52
53#include "base/vnc/vncserver.hh"
53#include "base/vnc/vncinput.hh"
54#include "dev/arm/amba_device.hh"
55#include "params/Pl050.hh"
56
57class Gic;
58
59class Pl050 : public AmbaIntDevice, public VncKeyboard, public VncMouse
60{
61 protected:

--- 51 unchanged lines hidden (view full) ---

113 * The driver is attempting to setup some feature we don't care about
114 */
115 int ackNext;
116
117 /** is the shift key currently down */
118 bool shiftDown;
119
120 /** The vnc server we're connected to (if any) */
54#include "dev/arm/amba_device.hh"
55#include "params/Pl050.hh"
56
57class Gic;
58
59class Pl050 : public AmbaIntDevice, public VncKeyboard, public VncMouse
60{
61 protected:

--- 51 unchanged lines hidden (view full) ---

113 * The driver is attempting to setup some feature we don't care about
114 */
115 int ackNext;
116
117 /** is the shift key currently down */
118 bool shiftDown;
119
120 /** The vnc server we're connected to (if any) */
121 VncServer *vnc;
121 VncInput *vnc;
122
123 /** If the linux driver has initialized the device yet and thus can we send
124 * mouse data */
125 bool driverInitialized;
126
127 /** Update the status of the interrupt registers and schedule an interrupt
128 * if required */
129 void updateIntStatus();

--- 37 unchanged lines hidden ---
122
123 /** If the linux driver has initialized the device yet and thus can we send
124 * mouse data */
125 bool driverInitialized;
126
127 /** Update the status of the interrupt registers and schedule an interrupt
128 * if required */
129 void updateIntStatus();

--- 37 unchanged lines hidden ---