Skip to content

Commit

Permalink
hw/i2c: Use DeviceClass::realize instead of I2CSlaveClass::init
Browse files Browse the repository at this point in the history
I2CSlaveClass::init is no more used, remove it.

Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Message-Id: <[email protected]>
Reviewed-by: Markus Armbruster <[email protected]>
Signed-off-by: Markus Armbruster <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
  • Loading branch information
philmd authored and bonzini committed Jun 1, 2018
1 parent 19473e5 commit c8c9e10
Show file tree
Hide file tree
Showing 10 changed files with 36 additions and 65 deletions.
8 changes: 3 additions & 5 deletions hw/audio/wm8750.c
Original file line number Diff line number Diff line change
Expand Up @@ -617,14 +617,12 @@ static const VMStateDescription vmstate_wm8750 = {
}
};

static int wm8750_init(I2CSlave *i2c)
static void wm8750_realize(DeviceState *dev, Error **errp)
{
WM8750State *s = WM8750(i2c);
WM8750State *s = WM8750(dev);

AUD_register_card(CODEC, &s->card);
wm8750_reset(I2C_SLAVE(s));

return 0;
}

#if 0
Expand Down Expand Up @@ -707,7 +705,7 @@ static void wm8750_class_init(ObjectClass *klass, void *data)
DeviceClass *dc = DEVICE_CLASS(klass);
I2CSlaveClass *sc = I2C_SLAVE_CLASS(klass);

sc->init = wm8750_init;
dc->realize = wm8750_realize;
sc->event = wm8750_event;
sc->recv = wm8750_rx;
sc->send = wm8750_tx;
Expand Down
9 changes: 4 additions & 5 deletions hw/display/ssd0303.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,21 +297,20 @@ static const GraphicHwOps ssd0303_ops = {
.gfx_update = ssd0303_update_display,
};

static int ssd0303_init(I2CSlave *i2c)
static void ssd0303_realize(DeviceState *dev, Error **errp)
{
ssd0303_state *s = SSD0303(i2c);
ssd0303_state *s = SSD0303(dev);

s->con = graphic_console_init(DEVICE(i2c), 0, &ssd0303_ops, s);
s->con = graphic_console_init(dev, 0, &ssd0303_ops, s);
qemu_console_resize(s->con, 96 * MAGNIFY, 16 * MAGNIFY);
return 0;
}

static void ssd0303_class_init(ObjectClass *klass, void *data)
{
DeviceClass *dc = DEVICE_CLASS(klass);
I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);

k->init = ssd0303_init;
dc->realize = ssd0303_realize;
k->event = ssd0303_event;
k->recv = ssd0303_recv;
k->send = ssd0303_send;
Expand Down
9 changes: 4 additions & 5 deletions hw/gpio/max7310.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,22 +182,21 @@ static void max7310_gpio_set(void *opaque, int line, int level)

/* MAX7310 is SMBus-compatible (can be used with only SMBus protocols),
* but also accepts sequences that are not SMBus so return an I2C device. */
static int max7310_init(I2CSlave *i2c)
static void max7310_realize(DeviceState *dev, Error **errp)
{
MAX7310State *s = MAX7310(i2c);
I2CSlave *i2c = I2C_SLAVE(dev);
MAX7310State *s = MAX7310(dev);

qdev_init_gpio_in(&i2c->qdev, max7310_gpio_set, 8);
qdev_init_gpio_out(&i2c->qdev, s->handler, 8);

return 0;
}

static void max7310_class_init(ObjectClass *klass, void *data)
{
DeviceClass *dc = DEVICE_CLASS(klass);
I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);

k->init = max7310_init;
dc->realize = max7310_realize;
k->event = max7310_event;
k->recv = max7310_rx;
k->send = max7310_tx;
Expand Down
13 changes: 0 additions & 13 deletions hw/i2c/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,18 +258,6 @@ const VMStateDescription vmstate_i2c_slave = {
}
};

static int i2c_slave_qdev_init(DeviceState *dev)
{
I2CSlave *s = I2C_SLAVE(dev);
I2CSlaveClass *sc = I2C_SLAVE_GET_CLASS(s);

if (sc->init) {
return sc->init(s);
}

return 0;
}

DeviceState *i2c_create_slave(I2CBus *bus, const char *name, uint8_t addr)
{
DeviceState *dev;
Expand All @@ -283,7 +271,6 @@ DeviceState *i2c_create_slave(I2CBus *bus, const char *name, uint8_t addr)
static void i2c_slave_class_init(ObjectClass *klass, void *data)
{
DeviceClass *k = DEVICE_CLASS(klass);
k->init = i2c_slave_qdev_init;
set_bit(DEVICE_CATEGORY_MISC, k->categories);
k->bus_type = TYPE_I2C_BUS;
k->props = i2c_props;
Expand Down
9 changes: 4 additions & 5 deletions hw/input/lm832x.c
Original file line number Diff line number Diff line change
Expand Up @@ -464,20 +464,19 @@ static const VMStateDescription vmstate_lm_kbd = {
};


static int lm8323_init(I2CSlave *i2c)
static void lm8323_realize(DeviceState *dev, Error **errp)
{
LM823KbdState *s = LM8323(i2c);
LM823KbdState *s = LM8323(dev);

s->model = 0x8323;
s->pwm.tm[0] = timer_new_ns(QEMU_CLOCK_VIRTUAL, lm_kbd_pwm0_tick, s);
s->pwm.tm[1] = timer_new_ns(QEMU_CLOCK_VIRTUAL, lm_kbd_pwm1_tick, s);
s->pwm.tm[2] = timer_new_ns(QEMU_CLOCK_VIRTUAL, lm_kbd_pwm2_tick, s);
qdev_init_gpio_out(DEVICE(i2c), &s->nirq, 1);
qdev_init_gpio_out(dev, &s->nirq, 1);

lm_kbd_reset(s);

qemu_register_reset((void *) lm_kbd_reset, s);
return 0;
}

void lm832x_key_event(DeviceState *dev, int key, int state)
Expand Down Expand Up @@ -505,7 +504,7 @@ static void lm8323_class_init(ObjectClass *klass, void *data)
DeviceClass *dc = DEVICE_CLASS(klass);
I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);

k->init = lm8323_init;
dc->realize = lm8323_realize;
k->event = lm_i2c_event;
k->recv = lm_i2c_rx;
k->send = lm_i2c_tx;
Expand Down
7 changes: 3 additions & 4 deletions hw/misc/tmp105.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,15 +229,14 @@ static void tmp105_reset(I2CSlave *i2c)
tmp105_interrupt_update(s);
}

static int tmp105_init(I2CSlave *i2c)
static void tmp105_realize(DeviceState *dev, Error **errp)
{
I2CSlave *i2c = I2C_SLAVE(dev);
TMP105State *s = TMP105(i2c);

qdev_init_gpio_out(&i2c->qdev, &s->pin, 1);

tmp105_reset(&s->i2c);

return 0;
}

static void tmp105_initfn(Object *obj)
Expand All @@ -252,7 +251,7 @@ static void tmp105_class_init(ObjectClass *klass, void *data)
DeviceClass *dc = DEVICE_CLASS(klass);
I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);

k->init = tmp105_init;
dc->realize = tmp105_realize;
k->event = tmp105_event;
k->recv = tmp105_rx;
k->send = tmp105_tx;
Expand Down
8 changes: 3 additions & 5 deletions hw/misc/tmp421.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,13 +335,11 @@ static void tmp421_reset(I2CSlave *i2c)
s->status = 0;
}

static int tmp421_init(I2CSlave *i2c)
static void tmp421_realize(DeviceState *dev, Error **errp)
{
TMP421State *s = TMP421(i2c);
TMP421State *s = TMP421(dev);

tmp421_reset(&s->i2c);

return 0;
}

static void tmp421_initfn(Object *obj)
Expand All @@ -366,7 +364,7 @@ static void tmp421_class_init(ObjectClass *klass, void *data)
I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);
TMP421Class *sc = TMP421_CLASS(klass);

k->init = tmp421_init;
dc->realize = tmp421_realize;
k->event = tmp421_event;
k->recv = tmp421_rx;
k->send = tmp421_tx;
Expand Down
24 changes: 11 additions & 13 deletions hw/nvram/eeprom_at24c.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,31 +116,29 @@ int at24c_eeprom_send(I2CSlave *s, uint8_t data)
return 0;
}

static
int at24c_eeprom_init(I2CSlave *i2c)
static void at24c_eeprom_realize(DeviceState *dev, Error **errp)
{
EEPROMState *ee = AT24C_EE(i2c);

ee->mem = g_malloc0(ee->rsize);
EEPROMState *ee = AT24C_EE(dev);

if (ee->blk) {
int64_t len = blk_getlength(ee->blk);

if (len != ee->rsize) {
ERR(TYPE_AT24C_EE " : Backing file size %lu != %u\n",
(unsigned long)len, (unsigned)ee->rsize);
exit(1);
error_setg(errp, "%s: Backing file size %" PRId64 " != %u",
TYPE_AT24C_EE, len, ee->rsize);
return;
}

if (blk_set_perm(ee->blk, BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE,
BLK_PERM_ALL, &error_fatal) < 0)
{
ERR(TYPE_AT24C_EE
" : Backing file incorrect permission\n");
exit(1);
error_setg(errp, "%s: Backing file incorrect permission",
TYPE_AT24C_EE);
return;
}
}
return 0;

ee->mem = g_malloc0(ee->rsize);
}

static
Expand Down Expand Up @@ -178,7 +176,7 @@ void at24c_eeprom_class_init(ObjectClass *klass, void *data)
DeviceClass *dc = DEVICE_CLASS(klass);
I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);

k->init = &at24c_eeprom_init;
dc->realize = &at24c_eeprom_realize;
k->event = &at24c_eeprom_event;
k->recv = &at24c_eeprom_recv;
k->send = &at24c_eeprom_send;
Expand Down
11 changes: 4 additions & 7 deletions hw/timer/twl92230.c
Original file line number Diff line number Diff line change
Expand Up @@ -853,10 +853,9 @@ static const VMStateDescription vmstate_menelaus = {
}
};

static int twl92230_init(I2CSlave *i2c)
static void twl92230_realize(DeviceState *dev, Error **errp)
{
DeviceState *dev = DEVICE(i2c);
MenelausState *s = TWL92230(i2c);
MenelausState *s = TWL92230(dev);

s->rtc.hz_tm = timer_new_ms(rtc_clock, menelaus_rtc_hz, s);
/* Three output pins plus one interrupt pin. */
Expand All @@ -865,17 +864,15 @@ static int twl92230_init(I2CSlave *i2c)
/* Three input pins plus one power-button pin. */
qdev_init_gpio_in(dev, menelaus_gpio_set, 4);

menelaus_reset(i2c);

return 0;
menelaus_reset(I2C_SLAVE(dev));
}

static void twl92230_class_init(ObjectClass *klass, void *data)
{
DeviceClass *dc = DEVICE_CLASS(klass);
I2CSlaveClass *sc = I2C_SLAVE_CLASS(klass);

sc->init = twl92230_init;
dc->realize = twl92230_realize;
sc->event = menelaus_event;
sc->recv = menelaus_rx;
sc->send = menelaus_tx;
Expand Down
3 changes: 0 additions & 3 deletions include/hw/i2c/i2c.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ typedef struct I2CSlave I2CSlave;
typedef struct I2CSlaveClass {
DeviceClass parent_class;

/* Callbacks provided by the device. */
int (*init)(I2CSlave *dev);

/* Master to slave. Returns non-zero for a NAK, 0 for success. */
int (*send)(I2CSlave *s, uint8_t data);

Expand Down

0 comments on commit c8c9e10

Please sign in to comment.