3 * QEMU model of the Milkymist VGA framebuffer.
5 * Copyright (c) 2010-2012 Michael Walle <michael@walle.cc>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 * Specification available at:
22 * http://www.milkymist.org/socdoc/vgafb.pdf
26 #include "hw/sysbus.h"
28 #include "ui/console.h"
29 #include "framebuffer.h"
30 #include "ui/pixel_ops.h"
31 #include "qemu/error-report.h"
34 #include "milkymist-vgafb_template.h"
36 #include "milkymist-vgafb_template.h"
38 #include "milkymist-vgafb_template.h"
40 #include "milkymist-vgafb_template.h"
42 #include "milkymist-vgafb_template.h"
66 #define TYPE_MILKYMIST_VGAFB "milkymist-vgafb"
67 #define MILKYMIST_VGAFB(obj) \
68 OBJECT_CHECK(MilkymistVgafbState, (obj), TYPE_MILKYMIST_VGAFB)
70 struct MilkymistVgafbState
{
71 SysBusDevice parent_obj
;
73 MemoryRegion regs_region
;
82 typedef struct MilkymistVgafbState MilkymistVgafbState
;
84 static int vgafb_enabled(MilkymistVgafbState
*s
)
86 return !(s
->regs
[R_CTRL
] & CTRL_RESET
);
89 static void vgafb_update_display(void *opaque
)
91 MilkymistVgafbState
*s
= opaque
;
93 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
98 if (!vgafb_enabled(s
)) {
102 sbd
= SYS_BUS_DEVICE(s
);
103 int dest_width
= s
->regs
[R_HRES
];
105 switch (surface_bits_per_pixel(surface
)) {
128 hw_error("milkymist_vgafb: bad color depth\n");
132 framebuffer_update_display(surface
, sysbus_address_space(sbd
),
133 s
->regs
[R_BASEADDRESS
] + s
->fb_offset
,
145 dpy_gfx_update(s
->con
, 0, first
, s
->regs
[R_HRES
], last
- first
+ 1);
150 static void vgafb_invalidate_display(void *opaque
)
152 MilkymistVgafbState
*s
= opaque
;
156 static void vgafb_resize(MilkymistVgafbState
*s
)
158 if (!vgafb_enabled(s
)) {
162 qemu_console_resize(s
->con
, s
->regs
[R_HRES
], s
->regs
[R_VRES
]);
166 static uint64_t vgafb_read(void *opaque
, hwaddr addr
,
169 MilkymistVgafbState
*s
= opaque
;
189 case R_BASEADDRESS_ACT
:
190 r
= s
->regs
[R_BASEADDRESS
];
194 error_report("milkymist_vgafb: read access to unknown register 0x"
195 TARGET_FMT_plx
, addr
<< 2);
199 trace_milkymist_vgafb_memory_read(addr
<< 2, r
);
204 static void vgafb_write(void *opaque
, hwaddr addr
, uint64_t value
,
207 MilkymistVgafbState
*s
= opaque
;
209 trace_milkymist_vgafb_memory_write(addr
, value
);
214 s
->regs
[addr
] = value
;
226 s
->regs
[addr
] = value
;
230 error_report("milkymist_vgafb: framebuffer base address have to "
231 "be 32 byte aligned");
234 s
->regs
[addr
] = value
& s
->fb_mask
;
239 s
->regs
[addr
] = value
;
242 case R_BASEADDRESS_ACT
:
243 error_report("milkymist_vgafb: write to read-only register 0x"
244 TARGET_FMT_plx
, addr
<< 2);
248 error_report("milkymist_vgafb: write access to unknown register 0x"
249 TARGET_FMT_plx
, addr
<< 2);
254 static const MemoryRegionOps vgafb_mmio_ops
= {
256 .write
= vgafb_write
,
258 .min_access_size
= 4,
259 .max_access_size
= 4,
261 .endianness
= DEVICE_NATIVE_ENDIAN
,
264 static void milkymist_vgafb_reset(DeviceState
*d
)
266 MilkymistVgafbState
*s
= MILKYMIST_VGAFB(d
);
269 for (i
= 0; i
< R_MAX
; i
++) {
274 s
->regs
[R_CTRL
] = CTRL_RESET
;
275 s
->regs
[R_HRES
] = 640;
276 s
->regs
[R_VRES
] = 480;
277 s
->regs
[R_BASEADDRESS
] = 0;
280 static const GraphicHwOps vgafb_ops
= {
281 .invalidate
= vgafb_invalidate_display
,
282 .gfx_update
= vgafb_update_display
,
285 static int milkymist_vgafb_init(SysBusDevice
*dev
)
287 MilkymistVgafbState
*s
= MILKYMIST_VGAFB(dev
);
289 memory_region_init_io(&s
->regs_region
, OBJECT(s
), &vgafb_mmio_ops
, s
,
290 "milkymist-vgafb", R_MAX
* 4);
291 sysbus_init_mmio(dev
, &s
->regs_region
);
293 s
->con
= graphic_console_init(DEVICE(dev
), 0, &vgafb_ops
, s
);
298 static int vgafb_post_load(void *opaque
, int version_id
)
300 vgafb_invalidate_display(opaque
);
304 static const VMStateDescription vmstate_milkymist_vgafb
= {
305 .name
= "milkymist-vgafb",
307 .minimum_version_id
= 1,
308 .post_load
= vgafb_post_load
,
309 .fields
= (VMStateField
[]) {
310 VMSTATE_UINT32_ARRAY(regs
, MilkymistVgafbState
, R_MAX
),
311 VMSTATE_END_OF_LIST()
315 static Property milkymist_vgafb_properties
[] = {
316 DEFINE_PROP_UINT32("fb_offset", MilkymistVgafbState
, fb_offset
, 0x0),
317 DEFINE_PROP_UINT32("fb_mask", MilkymistVgafbState
, fb_mask
, 0xffffffff),
318 DEFINE_PROP_END_OF_LIST(),
321 static void milkymist_vgafb_class_init(ObjectClass
*klass
, void *data
)
323 DeviceClass
*dc
= DEVICE_CLASS(klass
);
324 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
326 k
->init
= milkymist_vgafb_init
;
327 dc
->reset
= milkymist_vgafb_reset
;
328 dc
->vmsd
= &vmstate_milkymist_vgafb
;
329 dc
->props
= milkymist_vgafb_properties
;
332 static const TypeInfo milkymist_vgafb_info
= {
333 .name
= TYPE_MILKYMIST_VGAFB
,
334 .parent
= TYPE_SYS_BUS_DEVICE
,
335 .instance_size
= sizeof(MilkymistVgafbState
),
336 .class_init
= milkymist_vgafb_class_init
,
339 static void milkymist_vgafb_register_types(void)
341 type_register_static(&milkymist_vgafb_info
);
344 type_init(milkymist_vgafb_register_types
)