mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
i.MX: Add i2C devices to i.MX31 SOC
Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net> Reviewed-by: Peter Crosthwaite <crosthwaite.peter@gmail.com> Message-id: fb20e6bf5cf946c4530b2cfb55c7e37f5a0fc051.1441057361.git.jcd@tribudubois.net Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
7f3986278b
commit
d4e26d106a
2 changed files with 41 additions and 0 deletions
|
@ -50,6 +50,11 @@ static void fsl_imx31_init(Object *obj)
|
|||
object_initialize(&s->epit[i], sizeof(s->epit[i]), TYPE_IMX_EPIT);
|
||||
qdev_set_parent_bus(DEVICE(&s->epit[i]), sysbus_get_default());
|
||||
}
|
||||
|
||||
for (i = 0; i < FSL_IMX31_NUM_I2CS; i++) {
|
||||
object_initialize(&s->i2c[i], sizeof(s->i2c[i]), TYPE_IMX_I2C);
|
||||
qdev_set_parent_bus(DEVICE(&s->i2c[i]), sysbus_get_default());
|
||||
}
|
||||
}
|
||||
|
||||
static void fsl_imx31_realize(DeviceState *dev, Error **errp)
|
||||
|
@ -154,6 +159,31 @@ static void fsl_imx31_realize(DeviceState *dev, Error **errp)
|
|||
epit_table[i].irq));
|
||||
}
|
||||
|
||||
/* Initialize all I2C */
|
||||
for (i = 0; i < FSL_IMX31_NUM_I2CS; i++) {
|
||||
static const struct {
|
||||
hwaddr addr;
|
||||
unsigned int irq;
|
||||
} i2c_table[FSL_IMX31_NUM_I2CS] = {
|
||||
{ FSL_IMX31_I2C1_ADDR, FSL_IMX31_I2C1_IRQ },
|
||||
{ FSL_IMX31_I2C2_ADDR, FSL_IMX31_I2C2_IRQ },
|
||||
{ FSL_IMX31_I2C3_ADDR, FSL_IMX31_I2C3_IRQ }
|
||||
};
|
||||
|
||||
/* Initialize the I2C */
|
||||
object_property_set_bool(OBJECT(&s->i2c[i]), true, "realized", &err);
|
||||
if (err) {
|
||||
error_propagate(errp, err);
|
||||
return;
|
||||
}
|
||||
/* Map I2C memory */
|
||||
sysbus_mmio_map(SYS_BUS_DEVICE(&s->i2c[i]), 0, i2c_table[i].addr);
|
||||
/* Connect I2C IRQ to PIC */
|
||||
sysbus_connect_irq(SYS_BUS_DEVICE(&s->i2c[i]), 0,
|
||||
qdev_get_gpio_in(DEVICE(&s->avic),
|
||||
i2c_table[i].irq));
|
||||
}
|
||||
|
||||
/* On a real system, the first 16k is a `secure boot rom' */
|
||||
memory_region_init_rom_device(&s->secure_rom, NULL, NULL, NULL,
|
||||
"imx31.secure_rom",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue