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"
33 #include "qemu/module.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"
44 #include "milkymist-vgafb_template.h"
68 #define TYPE_MILKYMIST_VGAFB "milkymist-vgafb"
69 #define MILKYMIST_VGAFB(obj) \
70 OBJECT_CHECK(MilkymistVgafbState, (obj), TYPE_MILKYMIST_VGAFB)
72 struct MilkymistVgafbState
{
73 SysBusDevice parent_obj
;
75 MemoryRegion regs_region
;
76 MemoryRegionSection fbsection
;
85 typedef struct MilkymistVgafbState MilkymistVgafbState
;
87 static int vgafb_enabled(MilkymistVgafbState
*s
)
89 return !(s
->regs
[R_CTRL
] & CTRL_RESET
);
92 static void vgafb_update_display(void *opaque
)
94 MilkymistVgafbState
*s
= opaque
;
96 DisplaySurface
*surface
= qemu_console_surface(s
->con
);
102 if (!vgafb_enabled(s
)) {
106 sbd
= SYS_BUS_DEVICE(s
);
107 int dest_width
= s
->regs
[R_HRES
];
109 switch (surface_bits_per_pixel(surface
)) {
132 hw_error("milkymist_vgafb: bad color depth\n");
136 src_width
= s
->regs
[R_HRES
] * 2;
138 framebuffer_update_memory_section(&s
->fbsection
,
139 sysbus_address_space(sbd
),
140 s
->regs
[R_BASEADDRESS
] + s
->fb_offset
,
141 s
->regs
[R_VRES
], src_width
);
144 framebuffer_update_display(surface
, &s
->fbsection
,
156 dpy_gfx_update(s
->con
, 0, first
, s
->regs
[R_HRES
], last
- first
+ 1);
161 static void vgafb_invalidate_display(void *opaque
)
163 MilkymistVgafbState
*s
= opaque
;
167 static void vgafb_resize(MilkymistVgafbState
*s
)
169 if (!vgafb_enabled(s
)) {
173 qemu_console_resize(s
->con
, s
->regs
[R_HRES
], s
->regs
[R_VRES
]);
177 static uint64_t vgafb_read(void *opaque
, hwaddr addr
,
180 MilkymistVgafbState
*s
= opaque
;
200 case R_BASEADDRESS_ACT
:
201 r
= s
->regs
[R_BASEADDRESS
];
205 error_report("milkymist_vgafb: read access to unknown register 0x"
206 TARGET_FMT_plx
, addr
<< 2);
210 trace_milkymist_vgafb_memory_read(addr
<< 2, r
);
215 static void vgafb_write(void *opaque
, hwaddr addr
, uint64_t value
,
218 MilkymistVgafbState
*s
= opaque
;
220 trace_milkymist_vgafb_memory_write(addr
, value
);
225 s
->regs
[addr
] = value
;
237 s
->regs
[addr
] = value
;
241 error_report("milkymist_vgafb: framebuffer base address have to "
242 "be 32 byte aligned");
245 s
->regs
[addr
] = value
& s
->fb_mask
;
250 s
->regs
[addr
] = value
;
253 case R_BASEADDRESS_ACT
:
254 error_report("milkymist_vgafb: write to read-only register 0x"
255 TARGET_FMT_plx
, addr
<< 2);
259 error_report("milkymist_vgafb: write access to unknown register 0x"
260 TARGET_FMT_plx
, addr
<< 2);
265 static const MemoryRegionOps vgafb_mmio_ops
= {
267 .write
= vgafb_write
,
269 .min_access_size
= 4,
270 .max_access_size
= 4,
272 .endianness
= DEVICE_NATIVE_ENDIAN
,
275 static void milkymist_vgafb_reset(DeviceState
*d
)
277 MilkymistVgafbState
*s
= MILKYMIST_VGAFB(d
);
280 for (i
= 0; i
< R_MAX
; i
++) {
285 s
->regs
[R_CTRL
] = CTRL_RESET
;
286 s
->regs
[R_HRES
] = 640;
287 s
->regs
[R_VRES
] = 480;
288 s
->regs
[R_BASEADDRESS
] = 0;
291 static const GraphicHwOps vgafb_ops
= {
292 .invalidate
= vgafb_invalidate_display
,
293 .gfx_update
= vgafb_update_display
,
296 static void milkymist_vgafb_init(Object
*obj
)
298 MilkymistVgafbState
*s
= MILKYMIST_VGAFB(obj
);
299 SysBusDevice
*dev
= SYS_BUS_DEVICE(obj
);
301 memory_region_init_io(&s
->regs_region
, OBJECT(s
), &vgafb_mmio_ops
, s
,
302 "milkymist-vgafb", R_MAX
* 4);
303 sysbus_init_mmio(dev
, &s
->regs_region
);
306 static void milkymist_vgafb_realize(DeviceState
*dev
, Error
**errp
)
308 MilkymistVgafbState
*s
= MILKYMIST_VGAFB(dev
);
310 s
->con
= graphic_console_init(dev
, 0, &vgafb_ops
, s
);
313 static int vgafb_post_load(void *opaque
, int version_id
)
315 vgafb_invalidate_display(opaque
);
319 static const VMStateDescription vmstate_milkymist_vgafb
= {
320 .name
= "milkymist-vgafb",
322 .minimum_version_id
= 1,
323 .post_load
= vgafb_post_load
,
324 .fields
= (VMStateField
[]) {
325 VMSTATE_UINT32_ARRAY(regs
, MilkymistVgafbState
, R_MAX
),
326 VMSTATE_END_OF_LIST()
330 static Property milkymist_vgafb_properties
[] = {
331 DEFINE_PROP_UINT32("fb_offset", MilkymistVgafbState
, fb_offset
, 0x0),
332 DEFINE_PROP_UINT32("fb_mask", MilkymistVgafbState
, fb_mask
, 0xffffffff),
333 DEFINE_PROP_END_OF_LIST(),
336 static void milkymist_vgafb_class_init(ObjectClass
*klass
, void *data
)
338 DeviceClass
*dc
= DEVICE_CLASS(klass
);
340 dc
->reset
= milkymist_vgafb_reset
;
341 dc
->vmsd
= &vmstate_milkymist_vgafb
;
342 dc
->props
= milkymist_vgafb_properties
;
343 dc
->realize
= milkymist_vgafb_realize
;
346 static const TypeInfo milkymist_vgafb_info
= {
347 .name
= TYPE_MILKYMIST_VGAFB
,
348 .parent
= TYPE_SYS_BUS_DEVICE
,
349 .instance_size
= sizeof(MilkymistVgafbState
),
350 .instance_init
= milkymist_vgafb_init
,
351 .class_init
= milkymist_vgafb_class_init
,
354 static void milkymist_vgafb_register_types(void)
356 type_register_static(&milkymist_vgafb_info
);
359 type_init(milkymist_vgafb_register_types
)