mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
hw/riscv: microchip_pfsoc: Connect the IOSCB module
Previously IOSCB_CFG was created as an unimplemented device. With the new IOSCB model, its memory range is already covered by the IOSCB hence remove the previous unimplemented device creation in the SoC codes. Signed-off-by: Bin Meng <bin.meng@windriver.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 1603863010-15807-6-git-send-email-bmeng.cn@gmail.com Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
a937b30283
commit
e35d617919
3 changed files with 12 additions and 6 deletions
|
@ -25,6 +25,7 @@
|
|||
#include "hw/char/mchp_pfsoc_mmuart.h"
|
||||
#include "hw/dma/sifive_pdma.h"
|
||||
#include "hw/misc/mchp_pfsoc_dmc.h"
|
||||
#include "hw/misc/mchp_pfsoc_ioscb.h"
|
||||
#include "hw/net/cadence_gem.h"
|
||||
#include "hw/sd/cadence_sdhci.h"
|
||||
|
||||
|
@ -40,6 +41,7 @@ typedef struct MicrochipPFSoCState {
|
|||
DeviceState *plic;
|
||||
MchpPfSoCDdrSgmiiPhyState ddr_sgmii_phy;
|
||||
MchpPfSoCDdrCfgState ddr_cfg;
|
||||
MchpPfSoCIoscbState ioscb;
|
||||
MchpPfSoCMMUartState *serial0;
|
||||
MchpPfSoCMMUartState *serial1;
|
||||
MchpPfSoCMMUartState *serial2;
|
||||
|
@ -99,7 +101,7 @@ enum {
|
|||
MICROCHIP_PFSOC_GPIO2,
|
||||
MICROCHIP_PFSOC_ENVM_CFG,
|
||||
MICROCHIP_PFSOC_ENVM_DATA,
|
||||
MICROCHIP_PFSOC_IOSCB_CFG,
|
||||
MICROCHIP_PFSOC_IOSCB,
|
||||
MICROCHIP_PFSOC_DRAM,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue