mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
QOM infrastructure fixes and device conversions
* QTest cleanups and test cases for PCI NICs * NAND fix for "info qtree" * Cleanup and extension of QOM machine tests * IndustryPack test cases and conversion to QOM realize * I2C cleanups * Cleanups of legacy qdev properties -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iQIcBAABAgAGBQJTAooJAAoJEPou0S0+fgE/SuQQALW3zvra4ZLRAQV0e8kFoyj1 vVtmLkDhnCe4cYfxxfOX91NA0rH1ts2EO1+UcnaCHJlptNWfA+8qJW69XgYpHE3c DKQlKPL/9pV5ywY5uUw/t1UJHg2BfrLBDDM4lP+vrpwiQYq4kp24JffnhfY3l9MA 9qdkXu1HrlWoLRVGnMyGDXI8cb+5bTL+FEc6UuHl3P89/gj5BV+LDWn0QOFbAkxq 4wk+Xh6sHKcfOdq6vMCNGlTjlJnpbY43D1a8+q6hFGG8JBlpne7Oer7bse9k4uTK q/CzyNzC0lnjjcULpa4ptRlycH0ruD9DPY7Lco9XqYd3l/c9742PmTEqN5TZseKD XD7+hwT1tk7W8rihm8KETCP6sKlXz4w8tJiWe6IT3zwRzvXIolxxK93heQuaX73Z HFDmvTPVLUiWF8ftKTyWZM3w+jsbSH0QSrMCIHKJrPTRWTKphx0DUP74lWjNsvGs FFBjpAgrflLihxiuRrcLmekGn0xCTjhQWIo2GoiWTgLSEHNQQQUNO+15/kcU/vlI hh3DJpiBKeSnUapHHL0OEK6ryeHoG95akiRjImwWVthNLk4KEuWtlhFPYBtulO5A PA02trE4Ah769effX0ZYdNl23KbW4VxpZ8VZv+kp7RTrDKxw551HoEFJ5ja0nkvB O1CfsE7x0GH/Rbi/Hxhu =KRcc -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/afaerber/tags/qom-devices-for-peter' into staging QOM infrastructure fixes and device conversions * QTest cleanups and test cases for PCI NICs * NAND fix for "info qtree" * Cleanup and extension of QOM machine tests * IndustryPack test cases and conversion to QOM realize * I2C cleanups * Cleanups of legacy qdev properties # gpg: Signature made Mon 17 Feb 2014 22:15:37 GMT using RSA key ID 3E7E013F # gpg: Good signature from "Andreas Färber <afaerber@suse.de>" # gpg: aka "Andreas Färber <afaerber@suse.com>" * remotes/afaerber/tags/qom-devices-for-peter: (49 commits) qtest: Include system headers before user headers qapi: Refine human printing of sizes qdev: Use QAPI type names for properties qdev: Add enum property types to QAPI schema block: Handle "rechs" and "large" translation options qdev: Remove hex8/32/64 property types qdev: Remove most legacy printers qdev: Use human mode in "info qtree" qapi: Add human mode to StringOutputVisitor qdev: Inline qdev_prop_parse() qdev: Legacy properties are just strings qdev: Legacy properties are now read-only qdev: Remove legacy parsers for hex8/32/64 qdev: Sizes are now parsed by StringInputVisitor qapi: Add size parser to StringInputVisitor qtest: Don't segfault with invalid -qtest option ipack: Move IndustryPack out of hw/char/ ipoctal232: QOM parent field cleanup ipack: QOM parent field cleanup for IPackDevice ipack: QOM parent field cleanup for IPackBus ... Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
61e8a92364
124 changed files with 1049 additions and 865 deletions
|
@ -524,7 +524,7 @@ static void g364fb_sysbus_reset(DeviceState *d)
|
|||
}
|
||||
|
||||
static Property g364fb_sysbus_properties[] = {
|
||||
DEFINE_PROP_HEX32("vram_size", G364SysBusState, g364.vram_size,
|
||||
DEFINE_PROP_UINT32("vram_size", G364SysBusState, g364.vram_size,
|
||||
8 * 1024 * 1024),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
|
|
@ -41,8 +41,12 @@ enum ssd0303_cmd {
|
|||
SSD0303_CMD_SKIP1
|
||||
};
|
||||
|
||||
#define TYPE_SSD0303 "ssd0303"
|
||||
#define SSD0303(obj) OBJECT_CHECK(ssd0303_state, (obj), TYPE_SSD0303)
|
||||
|
||||
typedef struct {
|
||||
I2CSlave i2c;
|
||||
I2CSlave parent_obj;
|
||||
|
||||
QemuConsole *con;
|
||||
int row;
|
||||
int col;
|
||||
|
@ -65,8 +69,9 @@ static int ssd0303_recv(I2CSlave *i2c)
|
|||
|
||||
static int ssd0303_send(I2CSlave *i2c, uint8_t data)
|
||||
{
|
||||
ssd0303_state *s = (ssd0303_state *)i2c;
|
||||
ssd0303_state *s = SSD0303(i2c);
|
||||
enum ssd0303_cmd old_cmd_state;
|
||||
|
||||
switch (s->mode) {
|
||||
case SSD0303_IDLE:
|
||||
DPRINTF("byte 0x%02x\n", data);
|
||||
|
@ -175,7 +180,8 @@ static int ssd0303_send(I2CSlave *i2c, uint8_t data)
|
|||
|
||||
static void ssd0303_event(I2CSlave *i2c, enum i2c_event event)
|
||||
{
|
||||
ssd0303_state *s = (ssd0303_state *)i2c;
|
||||
ssd0303_state *s = SSD0303(i2c);
|
||||
|
||||
switch (event) {
|
||||
case I2C_FINISH:
|
||||
s->mode = SSD0303_IDLE;
|
||||
|
@ -279,7 +285,7 @@ static const VMStateDescription vmstate_ssd0303 = {
|
|||
VMSTATE_UINT32(mode, ssd0303_state),
|
||||
VMSTATE_UINT32(cmd_state, ssd0303_state),
|
||||
VMSTATE_BUFFER(framebuffer, ssd0303_state),
|
||||
VMSTATE_I2C_SLAVE(i2c, ssd0303_state),
|
||||
VMSTATE_I2C_SLAVE(parent_obj, ssd0303_state),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
@ -291,7 +297,7 @@ static const GraphicHwOps ssd0303_ops = {
|
|||
|
||||
static int ssd0303_init(I2CSlave *i2c)
|
||||
{
|
||||
ssd0303_state *s = FROM_I2C_SLAVE(ssd0303_state, i2c);
|
||||
ssd0303_state *s = SSD0303(i2c);
|
||||
|
||||
s->con = graphic_console_init(DEVICE(i2c), &ssd0303_ops, s);
|
||||
qemu_console_resize(s->con, 96 * MAGNIFY, 16 * MAGNIFY);
|
||||
|
@ -311,7 +317,7 @@ static void ssd0303_class_init(ObjectClass *klass, void *data)
|
|||
}
|
||||
|
||||
static const TypeInfo ssd0303_info = {
|
||||
.name = "ssd0303",
|
||||
.name = TYPE_SSD0303,
|
||||
.parent = TYPE_I2C_SLAVE,
|
||||
.instance_size = sizeof(ssd0303_state),
|
||||
.class_init = ssd0303_class_init,
|
||||
|
|
|
@ -617,11 +617,11 @@ static int tcx_init1(SysBusDevice *dev)
|
|||
}
|
||||
|
||||
static Property tcx_properties[] = {
|
||||
DEFINE_PROP_HEX32("vram_size", TCXState, vram_size, -1),
|
||||
DEFINE_PROP_UINT32("vram_size", TCXState, vram_size, -1),
|
||||
DEFINE_PROP_UINT16("width", TCXState, width, -1),
|
||||
DEFINE_PROP_UINT16("height", TCXState, height, -1),
|
||||
DEFINE_PROP_UINT16("depth", TCXState, depth, -1),
|
||||
DEFINE_PROP_HEX64("prom_addr", TCXState, prom_addr, -1),
|
||||
DEFINE_PROP_UINT64("prom_addr", TCXState, prom_addr, -1),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue