pl111.hh (9235:5aa4896ed55a) pl111.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

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

48
49#include <fstream>
50
51#include "dev/arm/amba_device.hh"
52#include "params/Pl111.hh"
53#include "sim/serialize.hh"
54
55class Gic;
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

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

48
49#include <fstream>
50
51#include "dev/arm/amba_device.hh"
52#include "params/Pl111.hh"
53#include "sim/serialize.hh"
54
55class Gic;
56class VncServer;
56class VncInput;
57class Bitmap;
58
59class Pl111: public AmbaDmaDevice
60{
61 protected:
62 static const uint64_t AMBA_ID = ULL(0xb105f00d00141111);
63 /** ARM PL111 register map*/
64 static const int LcdTiming0 = 0x000;

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

223
224 /** Cursor raw interrupt status register - const */
225 InterruptReg clcdCrsrRis;
226
227 /** Cursor masked interrupt status register - const */
228 InterruptReg clcdCrsrMis;
229
230 /** VNC server */
57class Bitmap;
58
59class Pl111: public AmbaDmaDevice
60{
61 protected:
62 static const uint64_t AMBA_ID = ULL(0xb105f00d00141111);
63 /** ARM PL111 register map*/
64 static const int LcdTiming0 = 0x000;

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

223
224 /** Cursor raw interrupt status register - const */
225 InterruptReg clcdCrsrRis;
226
227 /** Cursor masked interrupt status register - const */
228 InterruptReg clcdCrsrMis;
229
230 /** VNC server */
231 VncServer *vncserver;
231 VncInput *vnc;
232
233 /** Helper to write out bitmaps */
234 Bitmap *bmp;
235
236 /** Picture of what the current frame buffer looks like */
237 std::ostream *pic;
238
239 /** Frame buffer width - pixels per line */

--- 88 unchanged lines hidden ---
232
233 /** Helper to write out bitmaps */
234 Bitmap *bmp;
235
236 /** Picture of what the current frame buffer looks like */
237 std::ostream *pic;
238
239 /** Frame buffer width - pixels per line */

--- 88 unchanged lines hidden ---