mirror of https://github.com/xemu-project/xemu.git
hw/arm/fsl-imx25: Wire up eSDHC controllers
Wire up eSDHC controllers in fsl-imx25. For imx25-pdk, connect drives provided on the command line to available eSDHC controllers. This patch enables booting the imx25-pdk emulation from SD card. Signed-off-by: Guenter Roeck <linux@roeck-us.net> Message-id: 20200310215146.19688-2-linux@roeck-us.net Reviewed-by: Peter Maydell <peter.maydell@linaro.org> [PMM: made commit subject consistent with other patch] Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
d6f33c557c
commit
bfae1772c4
|
@ -31,6 +31,8 @@
|
||||||
#include "hw/qdev-properties.h"
|
#include "hw/qdev-properties.h"
|
||||||
#include "chardev/char.h"
|
#include "chardev/char.h"
|
||||||
|
|
||||||
|
#define IMX25_ESDHC_CAPABILITIES 0x07e20000
|
||||||
|
|
||||||
static void fsl_imx25_init(Object *obj)
|
static void fsl_imx25_init(Object *obj)
|
||||||
{
|
{
|
||||||
FslIMX25State *s = FSL_IMX25(obj);
|
FslIMX25State *s = FSL_IMX25(obj);
|
||||||
|
@ -74,6 +76,11 @@ static void fsl_imx25_init(Object *obj)
|
||||||
sysbus_init_child_obj(obj, "gpio[*]", &s->gpio[i], sizeof(s->gpio[i]),
|
sysbus_init_child_obj(obj, "gpio[*]", &s->gpio[i], sizeof(s->gpio[i]),
|
||||||
TYPE_IMX_GPIO);
|
TYPE_IMX_GPIO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < FSL_IMX25_NUM_ESDHCS; i++) {
|
||||||
|
sysbus_init_child_obj(obj, "sdhc[*]", &s->esdhc[i], sizeof(s->esdhc[i]),
|
||||||
|
TYPE_IMX_USDHC);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fsl_imx25_realize(DeviceState *dev, Error **errp)
|
static void fsl_imx25_realize(DeviceState *dev, Error **errp)
|
||||||
|
@ -246,6 +253,31 @@ static void fsl_imx25_realize(DeviceState *dev, Error **errp)
|
||||||
gpio_table[i].irq));
|
gpio_table[i].irq));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Initialize all SDHC */
|
||||||
|
for (i = 0; i < FSL_IMX25_NUM_ESDHCS; i++) {
|
||||||
|
static const struct {
|
||||||
|
hwaddr addr;
|
||||||
|
unsigned int irq;
|
||||||
|
} esdhc_table[FSL_IMX25_NUM_ESDHCS] = {
|
||||||
|
{ FSL_IMX25_ESDHC1_ADDR, FSL_IMX25_ESDHC1_IRQ },
|
||||||
|
{ FSL_IMX25_ESDHC2_ADDR, FSL_IMX25_ESDHC2_IRQ },
|
||||||
|
};
|
||||||
|
|
||||||
|
object_property_set_uint(OBJECT(&s->esdhc[i]), 2, "sd-spec-version",
|
||||||
|
&err);
|
||||||
|
object_property_set_uint(OBJECT(&s->esdhc[i]), IMX25_ESDHC_CAPABILITIES,
|
||||||
|
"capareg", &err);
|
||||||
|
object_property_set_bool(OBJECT(&s->esdhc[i]), true, "realized", &err);
|
||||||
|
if (err) {
|
||||||
|
error_propagate(errp, err);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
sysbus_mmio_map(SYS_BUS_DEVICE(&s->esdhc[i]), 0, esdhc_table[i].addr);
|
||||||
|
sysbus_connect_irq(SYS_BUS_DEVICE(&s->esdhc[i]), 0,
|
||||||
|
qdev_get_gpio_in(DEVICE(&s->avic),
|
||||||
|
esdhc_table[i].irq));
|
||||||
|
}
|
||||||
|
|
||||||
/* initialize 2 x 16 KB ROM */
|
/* initialize 2 x 16 KB ROM */
|
||||||
memory_region_init_rom(&s->rom[0], NULL,
|
memory_region_init_rom(&s->rom[0], NULL,
|
||||||
"imx25.rom0", FSL_IMX25_ROM0_SIZE, &err);
|
"imx25.rom0", FSL_IMX25_ROM0_SIZE, &err);
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
|
#include "hw/qdev-properties.h"
|
||||||
#include "hw/arm/fsl-imx25.h"
|
#include "hw/arm/fsl-imx25.h"
|
||||||
#include "hw/boards.h"
|
#include "hw/boards.h"
|
||||||
#include "qemu/error-report.h"
|
#include "qemu/error-report.h"
|
||||||
|
@ -120,6 +121,21 @@ static void imx25_pdk_init(MachineState *machine)
|
||||||
imx25_pdk_binfo.board_id = 1771,
|
imx25_pdk_binfo.board_id = 1771,
|
||||||
imx25_pdk_binfo.nb_cpus = 1;
|
imx25_pdk_binfo.nb_cpus = 1;
|
||||||
|
|
||||||
|
for (i = 0; i < FSL_IMX25_NUM_ESDHCS; i++) {
|
||||||
|
BusState *bus;
|
||||||
|
DeviceState *carddev;
|
||||||
|
DriveInfo *di;
|
||||||
|
BlockBackend *blk;
|
||||||
|
|
||||||
|
di = drive_get_next(IF_SD);
|
||||||
|
blk = di ? blk_by_legacy_dinfo(di) : NULL;
|
||||||
|
bus = qdev_get_child_bus(DEVICE(&s->soc.esdhc[i]), "sd-bus");
|
||||||
|
carddev = qdev_create(bus, TYPE_SD_CARD);
|
||||||
|
qdev_prop_set_drive(carddev, "drive", blk, &error_fatal);
|
||||||
|
object_property_set_bool(OBJECT(carddev), true,
|
||||||
|
"realized", &error_fatal);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We test explicitly for qtest here as it is not done (yet?) in
|
* We test explicitly for qtest here as it is not done (yet?) in
|
||||||
* arm_load_kernel(). Without this the "make check" command would
|
* arm_load_kernel(). Without this the "make check" command would
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#include "hw/misc/imx_rngc.h"
|
#include "hw/misc/imx_rngc.h"
|
||||||
#include "hw/i2c/imx_i2c.h"
|
#include "hw/i2c/imx_i2c.h"
|
||||||
#include "hw/gpio/imx_gpio.h"
|
#include "hw/gpio/imx_gpio.h"
|
||||||
|
#include "hw/sd/sdhci.h"
|
||||||
#include "exec/memory.h"
|
#include "exec/memory.h"
|
||||||
#include "target/arm/cpu.h"
|
#include "target/arm/cpu.h"
|
||||||
|
|
||||||
|
@ -38,6 +39,7 @@
|
||||||
#define FSL_IMX25_NUM_EPITS 2
|
#define FSL_IMX25_NUM_EPITS 2
|
||||||
#define FSL_IMX25_NUM_I2CS 3
|
#define FSL_IMX25_NUM_I2CS 3
|
||||||
#define FSL_IMX25_NUM_GPIOS 4
|
#define FSL_IMX25_NUM_GPIOS 4
|
||||||
|
#define FSL_IMX25_NUM_ESDHCS 2
|
||||||
|
|
||||||
typedef struct FslIMX25State {
|
typedef struct FslIMX25State {
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
|
@ -54,6 +56,7 @@ typedef struct FslIMX25State {
|
||||||
IMXRNGCState rngc;
|
IMXRNGCState rngc;
|
||||||
IMXI2CState i2c[FSL_IMX25_NUM_I2CS];
|
IMXI2CState i2c[FSL_IMX25_NUM_I2CS];
|
||||||
IMXGPIOState gpio[FSL_IMX25_NUM_GPIOS];
|
IMXGPIOState gpio[FSL_IMX25_NUM_GPIOS];
|
||||||
|
SDHCIState esdhc[FSL_IMX25_NUM_ESDHCS];
|
||||||
MemoryRegion rom[2];
|
MemoryRegion rom[2];
|
||||||
MemoryRegion iram;
|
MemoryRegion iram;
|
||||||
MemoryRegion iram_alias;
|
MemoryRegion iram_alias;
|
||||||
|
@ -215,6 +218,10 @@ typedef struct FslIMX25State {
|
||||||
#define FSL_IMX25_GPIO3_SIZE 0x4000
|
#define FSL_IMX25_GPIO3_SIZE 0x4000
|
||||||
#define FSL_IMX25_RNGC_ADDR 0x53FB0000
|
#define FSL_IMX25_RNGC_ADDR 0x53FB0000
|
||||||
#define FSL_IMX25_RNGC_SIZE 0x4000
|
#define FSL_IMX25_RNGC_SIZE 0x4000
|
||||||
|
#define FSL_IMX25_ESDHC1_ADDR 0x53FB4000
|
||||||
|
#define FSL_IMX25_ESDHC1_SIZE 0x4000
|
||||||
|
#define FSL_IMX25_ESDHC2_ADDR 0x53FB8000
|
||||||
|
#define FSL_IMX25_ESDHC2_SIZE 0x4000
|
||||||
#define FSL_IMX25_GPIO1_ADDR 0x53FCC000
|
#define FSL_IMX25_GPIO1_ADDR 0x53FCC000
|
||||||
#define FSL_IMX25_GPIO1_SIZE 0x4000
|
#define FSL_IMX25_GPIO1_SIZE 0x4000
|
||||||
#define FSL_IMX25_GPIO2_ADDR 0x53FD0000
|
#define FSL_IMX25_GPIO2_ADDR 0x53FD0000
|
||||||
|
@ -250,5 +257,7 @@ typedef struct FslIMX25State {
|
||||||
#define FSL_IMX25_GPIO2_IRQ 51
|
#define FSL_IMX25_GPIO2_IRQ 51
|
||||||
#define FSL_IMX25_GPIO3_IRQ 16
|
#define FSL_IMX25_GPIO3_IRQ 16
|
||||||
#define FSL_IMX25_GPIO4_IRQ 23
|
#define FSL_IMX25_GPIO4_IRQ 23
|
||||||
|
#define FSL_IMX25_ESDHC1_IRQ 9
|
||||||
|
#define FSL_IMX25_ESDHC2_IRQ 8
|
||||||
|
|
||||||
#endif /* FSL_IMX25_H */
|
#endif /* FSL_IMX25_H */
|
||||||
|
|
Loading…
Reference in New Issue