mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
Add the ability to change the FEC PHY MDIO device number on i.MX25 processor
Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net> Message-id: 9f8923ecd974160ae8f634c275b1100c2cbe66d7.1593806826.git.jcd@tribudubois.net Reviewed-by: Peter Maydell <peter.maydell@linaro.org> [PMM: updated for object_property_set_uint() argument reordering] Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
cdecb3fc1e
commit
74c1330582
@ -171,6 +171,7 @@ static void fsl_imx25_realize(DeviceState *dev, Error **errp)
|
|||||||
epit_table[i].irq));
|
epit_table[i].irq));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
object_property_set_uint(OBJECT(&s->fec), "phy-num", s->phy_num, &err);
|
||||||
qdev_set_nic_properties(DEVICE(&s->fec), &nd_table[0]);
|
qdev_set_nic_properties(DEVICE(&s->fec), &nd_table[0]);
|
||||||
|
|
||||||
if (!sysbus_realize(SYS_BUS_DEVICE(&s->fec), errp)) {
|
if (!sysbus_realize(SYS_BUS_DEVICE(&s->fec), errp)) {
|
||||||
@ -315,10 +316,16 @@ static void fsl_imx25_realize(DeviceState *dev, Error **errp)
|
|||||||
&s->iram_alias);
|
&s->iram_alias);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static Property fsl_imx25_properties[] = {
|
||||||
|
DEFINE_PROP_UINT32("fec-phy-num", FslIMX25State, phy_num, 0),
|
||||||
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
|
};
|
||||||
|
|
||||||
static void fsl_imx25_class_init(ObjectClass *oc, void *data)
|
static void fsl_imx25_class_init(ObjectClass *oc, void *data)
|
||||||
{
|
{
|
||||||
DeviceClass *dc = DEVICE_CLASS(oc);
|
DeviceClass *dc = DEVICE_CLASS(oc);
|
||||||
|
|
||||||
|
device_class_set_props(dc, fsl_imx25_properties);
|
||||||
dc->realize = fsl_imx25_realize;
|
dc->realize = fsl_imx25_realize;
|
||||||
dc->desc = "i.MX25 SOC";
|
dc->desc = "i.MX25 SOC";
|
||||||
/*
|
/*
|
||||||
|
@ -65,6 +65,7 @@ typedef struct FslIMX25State {
|
|||||||
MemoryRegion rom[2];
|
MemoryRegion rom[2];
|
||||||
MemoryRegion iram;
|
MemoryRegion iram;
|
||||||
MemoryRegion iram_alias;
|
MemoryRegion iram_alias;
|
||||||
|
uint32_t phy_num;
|
||||||
} FslIMX25State;
|
} FslIMX25State;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user