kmi.cc (10905:a6ca6831e775) kmi.cc (11793:ef606668d247)
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

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

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 * Authors: Ali Saidi
41 * William Wang
42 */
43
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

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

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 * Authors: Ali Saidi
41 * William Wang
42 */
43
44#include "base/vnc/vncinput.hh"
44#include "dev/arm/kmi.hh"
45
45#include "base/trace.hh"
46#include "base/trace.hh"
47#include "base/vnc/vncinput.hh"
46#include "debug/Pl050.hh"
47#include "dev/arm/amba_device.hh"
48#include "debug/Pl050.hh"
49#include "dev/arm/amba_device.hh"
48#include "dev/arm/kmi.hh"
49#include "dev/ps2.hh"
50#include "mem/packet.hh"
51#include "mem/packet_access.hh"
52
53Pl050::Pl050(const Params *p)
54 : AmbaIntDevice(p, 0xfff), control(0), status(0x43), clkdiv(0),
55 interrupts(0), rawInterrupts(0), ackNext(false), shiftDown(false),
56 vnc(p->vnc), driverInitialized(false), intEvent(this)

--- 311 unchanged lines hidden ---
50#include "dev/ps2.hh"
51#include "mem/packet.hh"
52#include "mem/packet_access.hh"
53
54Pl050::Pl050(const Params *p)
55 : AmbaIntDevice(p, 0xfff), control(0), status(0x43), clkdiv(0),
56 interrupts(0), rawInterrupts(0), ackNext(false), shiftDown(false),
57 vnc(p->vnc), driverInitialized(false), intEvent(this)

--- 311 unchanged lines hidden ---