base: Redesign internal frame buffer handling
authorAndreas Sandberg <andreas.sandberg@arm.com>
Sat, 23 May 2015 12:37:03 +0000 (13:37 +0100)
committerAndreas Sandberg <andreas.sandberg@arm.com>
Sat, 23 May 2015 12:37:03 +0000 (13:37 +0100)
commitdb5c9a5f9028fd87a74e1750068511bd311435ae
treed2d2125ce8f717355187c767599945ad354470e9
parent1985d28ef905753423b3ee407c8bf4ee9165302b
base: Redesign internal frame buffer handling

Currently, frame buffer handling in gem5 is quite ad hoc. In practice,
we pass around naked pointers to raw pixel data and expect consumers
to convert frame buffers using the (broken) VideoConverter.

This changeset completely redesigns the way we handle frame buffers
internally. In summary, it fixes several color conversion bugs, adds
support for more color formats (e.g., big endian), and makes the code
base easier to follow.

In the new world, gem5 always represents pixel data using the Pixel
struct when pixels need to be passed between different classes (e.g.,
a display controller and the VNC server). Producers of entire frames
(e.g., display controllers) should use the FrameBuffer class to
represent a frame.

Frame producers are expected to create one instance of the FrameBuffer
class in their constructors and register it with its consumers
once. Consumers are expected to check the dimensions of the frame
buffer when they consume it.

Conversion between the external representation and the internal
representation is supported for all common "true color" RGB formats of
up to 32-bit color depth. The external pixel representation is
expected to be between 1 and 4 bytes in either big endian or little
endian. Color channels are assumed to be contiguous ranges of bits
within each pixel word. The external pixel value is scaled to an 8-bit
internal representation using a floating multiplication to map it to
the entire 8-bit range.
20 files changed:
src/base/SConscript
src/base/bitmap.cc
src/base/bitmap.hh
src/base/framebuffer.cc [new file with mode: 0644]
src/base/framebuffer.hh [new file with mode: 0644]
src/base/types.hh
src/base/vnc/SConscript
src/base/vnc/convert.cc [deleted file]
src/base/vnc/convert.hh [deleted file]
src/base/vnc/vncinput.cc
src/base/vnc/vncinput.hh
src/base/vnc/vncserver.cc
src/base/vnc/vncserver.hh
src/dev/arm/hdlcd.cc
src/dev/arm/hdlcd.hh
src/dev/arm/pl111.cc
src/dev/arm/pl111.hh
src/sim/byteswap.hh
src/unittest/SConscript
src/unittest/fbtest.cc [new file with mode: 0644]