]> Git Repo - qemu.git/commitdiff
hw/pci-host/bonito: Map all the Bonito64 I/O range
authorPhilippe Mathieu-Daudé <[email protected]>
Sun, 10 May 2020 17:26:36 +0000 (19:26 +0200)
committerPhilippe Mathieu-Daudé <[email protected]>
Tue, 26 May 2020 10:09:18 +0000 (12:09 +0200)
To ease following guest accesses to the Bonito64 chipset,
map its I/O range as UnimplementedDevice.
We can now see the accesses to unimplemented peripheral
using the '-d unimp' command line option.

Reviewed-by: Aleksandar Markovic <[email protected]>
Message-id: <20200510210128[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
hw/pci-host/Kconfig
hw/pci-host/bonito.c

index 8db41edc7eac0c591619943b1186c1889a65ec8e..036a61877a73105bcbe2a09f0ac6e3237e707368 100644 (file)
@@ -58,4 +58,5 @@ config PCI_EXPRESS_DESIGNWARE
 
 config PCI_BONITO
     select PCI
+    select UNIMP
     bool
index b90e5a636d1551931c888567577e6420ed8ba52b..f09bb1c6a8e4fd9a0acfec03dc333444dc4d077a 100644 (file)
@@ -48,6 +48,7 @@
 #include "sysemu/reset.h"
 #include "sysemu/runstate.h"
 #include "exec/address-spaces.h"
+#include "hw/misc/unimp.h"
 
 /* #define DEBUG_BONITO */
 
@@ -644,6 +645,8 @@ static void bonito_realize(PCIDevice *dev, Error **errp)
     sysbus_init_mmio(sysbus, &phb->data_mem);
     sysbus_mmio_map(sysbus, 2, BONITO_SPCICONFIG_BASE);
 
+    create_unimplemented_device("bonito", BONITO_REG_BASE, BONITO_REG_SIZE);
+
     memory_region_init_io(&s->iomem_ldma, OBJECT(s), &bonito_ldma_ops, s,
                           "ldma", 0x100);
     sysbus_init_mmio(sysbus, &s->iomem_ldma);
This page took 0.02956 seconds and 4 git commands to generate.