mirror of https://github.com/xemu-project/xemu.git
hw/arm: Attach PSPI module to NPCM7XX SoC
Signed-off-by: Hao Wu <wuhaotsh@google.com> Reviewed-by: Titus Rwantare <titusr@google.com> Reviewed-by: Philippe Mathieu-Daude <philmd@linaro.org> Message-id: 20230208235433.3989937-4-wuhaotsh@google.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
69fbfb8ff1
commit
4d120d7d60
|
@ -49,6 +49,7 @@ Supported devices
|
|||
* SMBus controller (SMBF)
|
||||
* Ethernet controller (EMC)
|
||||
* Tachometer
|
||||
* Peripheral SPI controller (PSPI)
|
||||
|
||||
Missing devices
|
||||
---------------
|
||||
|
@ -64,7 +65,6 @@ Missing devices
|
|||
|
||||
* Ethernet controller (GMAC)
|
||||
* USB device (USBD)
|
||||
* Peripheral SPI controller (PSPI)
|
||||
* SD/MMC host
|
||||
* PECI interface
|
||||
* PCI and PCIe root complex and bridges
|
||||
|
|
|
@ -86,6 +86,8 @@ enum NPCM7xxInterrupt {
|
|||
NPCM7XX_EMC1RX_IRQ = 15,
|
||||
NPCM7XX_EMC1TX_IRQ,
|
||||
NPCM7XX_MMC_IRQ = 26,
|
||||
NPCM7XX_PSPI2_IRQ = 28,
|
||||
NPCM7XX_PSPI1_IRQ = 31,
|
||||
NPCM7XX_TIMER0_IRQ = 32, /* Timer Module 0 */
|
||||
NPCM7XX_TIMER1_IRQ,
|
||||
NPCM7XX_TIMER2_IRQ,
|
||||
|
@ -220,6 +222,12 @@ static const hwaddr npcm7xx_emc_addr[] = {
|
|||
0xf0826000,
|
||||
};
|
||||
|
||||
/* Register base address for each PSPI Module */
|
||||
static const hwaddr npcm7xx_pspi_addr[] = {
|
||||
0xf0200000,
|
||||
0xf0201000,
|
||||
};
|
||||
|
||||
static const struct {
|
||||
hwaddr regs_addr;
|
||||
uint32_t unconnected_pins;
|
||||
|
@ -444,6 +452,10 @@ static void npcm7xx_init(Object *obj)
|
|||
object_initialize_child(obj, "emc[*]", &s->emc[i], TYPE_NPCM7XX_EMC);
|
||||
}
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(s->pspi); i++) {
|
||||
object_initialize_child(obj, "pspi[*]", &s->pspi[i], TYPE_NPCM_PSPI);
|
||||
}
|
||||
|
||||
object_initialize_child(obj, "mmc", &s->mmc, TYPE_NPCM7XX_SDHCI);
|
||||
}
|
||||
|
||||
|
@ -715,6 +727,17 @@ static void npcm7xx_realize(DeviceState *dev, Error **errp)
|
|||
sysbus_connect_irq(SYS_BUS_DEVICE(&s->mmc), 0,
|
||||
npcm7xx_irq(s, NPCM7XX_MMC_IRQ));
|
||||
|
||||
/* PSPI */
|
||||
QEMU_BUILD_BUG_ON(ARRAY_SIZE(npcm7xx_pspi_addr) != ARRAY_SIZE(s->pspi));
|
||||
for (i = 0; i < ARRAY_SIZE(s->pspi); i++) {
|
||||
SysBusDevice *sbd = SYS_BUS_DEVICE(&s->pspi[i]);
|
||||
int irq = (i == 0) ? NPCM7XX_PSPI1_IRQ : NPCM7XX_PSPI2_IRQ;
|
||||
|
||||
sysbus_realize(sbd, &error_abort);
|
||||
sysbus_mmio_map(sbd, 0, npcm7xx_pspi_addr[i]);
|
||||
sysbus_connect_irq(sbd, 0, npcm7xx_irq(s, irq));
|
||||
}
|
||||
|
||||
create_unimplemented_device("npcm7xx.shm", 0xc0001000, 4 * KiB);
|
||||
create_unimplemented_device("npcm7xx.vdmx", 0xe0800000, 4 * KiB);
|
||||
create_unimplemented_device("npcm7xx.pcierc", 0xe1000000, 64 * KiB);
|
||||
|
@ -724,8 +747,6 @@ static void npcm7xx_realize(DeviceState *dev, Error **errp)
|
|||
create_unimplemented_device("npcm7xx.peci", 0xf0100000, 4 * KiB);
|
||||
create_unimplemented_device("npcm7xx.siox[1]", 0xf0101000, 4 * KiB);
|
||||
create_unimplemented_device("npcm7xx.siox[2]", 0xf0102000, 4 * KiB);
|
||||
create_unimplemented_device("npcm7xx.pspi1", 0xf0200000, 4 * KiB);
|
||||
create_unimplemented_device("npcm7xx.pspi2", 0xf0201000, 4 * KiB);
|
||||
create_unimplemented_device("npcm7xx.ahbpci", 0xf0400000, 1 * MiB);
|
||||
create_unimplemented_device("npcm7xx.mcphy", 0xf05f0000, 64 * KiB);
|
||||
create_unimplemented_device("npcm7xx.gmac1", 0xf0802000, 8 * KiB);
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
#include "hw/nvram/npcm7xx_otp.h"
|
||||
#include "hw/timer/npcm7xx_timer.h"
|
||||
#include "hw/ssi/npcm7xx_fiu.h"
|
||||
#include "hw/ssi/npcm_pspi.h"
|
||||
#include "hw/usb/hcd-ehci.h"
|
||||
#include "hw/usb/hcd-ohci.h"
|
||||
#include "target/arm/cpu.h"
|
||||
|
@ -104,6 +105,7 @@ struct NPCM7xxState {
|
|||
NPCM7xxFIUState fiu[2];
|
||||
NPCM7xxEMCState emc[2];
|
||||
NPCM7xxSDHCIState mmc;
|
||||
NPCMPSPIState pspi[2];
|
||||
};
|
||||
|
||||
#define TYPE_NPCM7XX "npcm7xx"
|
||||
|
|
Loading…
Reference in New Issue