pl111.hh (12086:069c529a76fd) pl111.hh (12230:48021d6b51eb)
1/*
2 * Copyright (c) 2010-2012, 2015 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

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

44 */
45
46#ifndef __DEV_ARM_PL111_HH__
47#define __DEV_ARM_PL111_HH__
48
49#include <fstream>
50#include <memory>
51
1/*
2 * Copyright (c) 2010-2012, 2015 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

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

44 */
45
46#ifndef __DEV_ARM_PL111_HH__
47#define __DEV_ARM_PL111_HH__
48
49#include <fstream>
50#include <memory>
51
52#include "base/bitmap.hh"
52#include "base/bmpwriter.hh"
53#include "base/framebuffer.hh"
54#include "base/output.hh"
55#include "dev/arm/amba_device.hh"
56#include "params/Pl111.hh"
57#include "sim/serialize.hh"
58
59class VncInput;
60

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

261
262 PixelConverter converter;
263 FrameBuffer fb;
264
265 /** VNC server */
266 VncInput *vnc;
267
268 /** Helper to write out bitmaps */
53#include "base/framebuffer.hh"
54#include "base/output.hh"
55#include "dev/arm/amba_device.hh"
56#include "params/Pl111.hh"
57#include "sim/serialize.hh"
58
59class VncInput;
60

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

261
262 PixelConverter converter;
263 FrameBuffer fb;
264
265 /** VNC server */
266 VncInput *vnc;
267
268 /** Helper to write out bitmaps */
269 Bitmap bmp;
269 BmpWriter bmp;
270
271 /** Picture of what the current frame buffer looks like */
272 OutputStream *pic;
273
274 /** Frame buffer width - pixels per line */
275 uint16_t width;
276
277 /** Frame buffer height - lines per panel */

--- 109 unchanged lines hidden ---
270
271 /** Picture of what the current frame buffer looks like */
272 OutputStream *pic;
273
274 /** Frame buffer width - pixels per line */
275 uint16_t width;
276
277 /** Frame buffer height - lines per panel */

--- 109 unchanged lines hidden ---