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://milkymist.walle.cc/socdoc/vgafb.pdf
25 #include "qemu/osdep.h"
27 #include "hw/sysbus.h"
29 #include "ui/console.h"
30 #include "framebuffer.h"
31 #include "ui/pixel_ops.h"
32 #include "qemu/error-report.h"
35 #include "milkymist-vgafb_template.h"
37 #include "milkymist-vgafb_template.h"
39 #include "milkymist-vgafb_template.h"
41 #include "milkymist-vgafb_template.h"
43 #include "milkymist-vgafb_template.h"
67 #define TYPE_MILKYMIST_VGAFB "milkymist-vgafb"
68 #define MILKYMIST_VGAFB(obj) \
69 OBJECT_CHECK(MilkymistVgafbState, (obj), TYPE_MILKYMIST_VGAFB)
71 struct MilkymistVgafbState
{
72 SysBusDevice parent_obj
;
74 MemoryRegion regs_region
;
75 MemoryRegionSection fbsection
;
84 typedef struct MilkymistVgafbState MilkymistVgafbState
;
86 static int vgafb_enabled(MilkymistVgafbState
*s
)
88 return !(s
->regs
[R_CTRL
] & CTRL_RESET
);
91 static void vgafb_update_display(void *opaque
)
93 MilkymistVgafbState
*s
= opaque
;
95 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
101 if (!vgafb_enabled(s
)) {
105 sbd
= SYS_BUS_DEVICE(s
);
106 int dest_width
= s
->regs
[R_HRES
];
108 switch (surface_bits_per_pixel(surface
)) {
131 hw_error("milkymist_vgafb: bad color depth\n");
135 src_width
= s
->regs
[R_HRES
] * 2;
137 framebuffer_update_memory_section(&s
->fbsection
,
138 sysbus_address_space(sbd
),
139 s
->regs
[R_BASEADDRESS
] + s
->fb_offset
,
140 s
->regs
[R_VRES
], src_width
);
143 framebuffer_update_display(surface
, &s
->fbsection
,
155 dpy_gfx_update(s
->con
, 0, first
, s
->regs
[R_HRES
], last
- first
+ 1);
160 static void vgafb_invalidate_display(void *opaque
)
162 MilkymistVgafbState
*s
= opaque
;
166 static void vgafb_resize(MilkymistVgafbState
*s
)
168 if (!vgafb_enabled(s
)) {
172 qemu_console_resize(s
->con
, s
->regs
[R_HRES
], s
->regs
[R_VRES
]);
176 static uint64_t vgafb_read(void *opaque
, hwaddr addr
,
179 MilkymistVgafbState
*s
= opaque
;
199 case R_BASEADDRESS_ACT
:
200 r
= s
->regs
[R_BASEADDRESS
];
204 error_report("milkymist_vgafb: read access to unknown register 0x"
205 TARGET_FMT_plx
, addr
<< 2);
209 trace_milkymist_vgafb_memory_read(addr
<< 2, r
);
214 static void vgafb_write(void *opaque
, hwaddr addr
, uint64_t value
,
217 MilkymistVgafbState
*s
= opaque
;
219 trace_milkymist_vgafb_memory_write(addr
, value
);
224 s
->regs
[addr
] = value
;
236 s
->regs
[addr
] = value
;
240 error_report("milkymist_vgafb: framebuffer base address have to "
241 "be 32 byte aligned");
244 s
->regs
[addr
] = value
& s
->fb_mask
;
249 s
->regs
[addr
] = value
;
252 case R_BASEADDRESS_ACT
:
253 error_report("milkymist_vgafb: write to read-only register 0x"
254 TARGET_FMT_plx
, addr
<< 2);
258 error_report("milkymist_vgafb: write access to unknown register 0x"
259 TARGET_FMT_plx
, addr
<< 2);
264 static const MemoryRegionOps vgafb_mmio_ops
= {
266 .write
= vgafb_write
,
268 .min_access_size
= 4,
269 .max_access_size
= 4,
271 .endianness
= DEVICE_NATIVE_ENDIAN
,
274 static void milkymist_vgafb_reset(DeviceState
*d
)
276 MilkymistVgafbState
*s
= MILKYMIST_VGAFB(d
);
279 for (i
= 0; i
< R_MAX
; i
++) {
284 s
->regs
[R_CTRL
] = CTRL_RESET
;
285 s
->regs
[R_HRES
] = 640;
286 s
->regs
[R_VRES
] = 480;
287 s
->regs
[R_BASEADDRESS
] = 0;
290 static const GraphicHwOps vgafb_ops
= {
291 .invalidate
= vgafb_invalidate_display
,
292 .gfx_update
= vgafb_update_display
,
295 static void milkymist_vgafb_init(Object
*obj
)
297 MilkymistVgafbState
*s
= MILKYMIST_VGAFB(obj
);
298 SysBusDevice
*dev
= SYS_BUS_DEVICE(obj
);
300 memory_region_init_io(&s
->regs_region
, OBJECT(s
), &vgafb_mmio_ops
, s
,
301 "milkymist-vgafb", R_MAX
* 4);
302 sysbus_init_mmio(dev
, &s
->regs_region
);
305 static void milkymist_vgafb_realize(DeviceState
*dev
, Error
**errp
)
307 MilkymistVgafbState
*s
= MILKYMIST_VGAFB(dev
);
309 s
->con
= graphic_console_init(dev
, 0, &vgafb_ops
, s
);
312 static int vgafb_post_load(void *opaque
, int version_id
)
314 vgafb_invalidate_display(opaque
);
318 static const VMStateDescription vmstate_milkymist_vgafb
= {
319 .name
= "milkymist-vgafb",
321 .minimum_version_id
= 1,
322 .post_load
= vgafb_post_load
,
323 .fields
= (VMStateField
[]) {
324 VMSTATE_UINT32_ARRAY(regs
, MilkymistVgafbState
, R_MAX
),
325 VMSTATE_END_OF_LIST()
329 static Property milkymist_vgafb_properties
[] = {
330 DEFINE_PROP_UINT32("fb_offset", MilkymistVgafbState
, fb_offset
, 0x0),
331 DEFINE_PROP_UINT32("fb_mask", MilkymistVgafbState
, fb_mask
, 0xffffffff),
332 DEFINE_PROP_END_OF_LIST(),
335 static void milkymist_vgafb_class_init(ObjectClass
*klass
, void *data
)
337 DeviceClass
*dc
= DEVICE_CLASS(klass
);
339 dc
->reset
= milkymist_vgafb_reset
;
340 dc
->vmsd
= &vmstate_milkymist_vgafb
;
341 dc
->props
= milkymist_vgafb_properties
;
342 dc
->realize
= milkymist_vgafb_realize
;
345 static const TypeInfo milkymist_vgafb_info
= {
346 .name
= TYPE_MILKYMIST_VGAFB
,
347 .parent
= TYPE_SYS_BUS_DEVICE
,
348 .instance_size
= sizeof(MilkymistVgafbState
),
349 .instance_init
= milkymist_vgafb_init
,
350 .class_init
= milkymist_vgafb_class_init
,
353 static void milkymist_vgafb_register_types(void)
355 type_register_static(&milkymist_vgafb_info
);
358 type_init(milkymist_vgafb_register_types
)