[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v7 08/27] pcie_host: expose UNMAPPED macro
From: |
Michael S. Tsirkin |
Subject: |
[Qemu-devel] [PATCH v7 08/27] pcie_host: expose UNMAPPED macro |
Date: |
Wed, 2 Oct 2013 00:26:37 +0300 |
Make it possible to test unmapped status through QMP.
Reviewed-by: Gerd Hoffmann <address@hidden>
Tested-by: Gerd Hoffmann <address@hidden>
Signed-off-by: Michael S. Tsirkin <address@hidden>
---
include/hw/pci/pcie_host.h | 3 +++
hw/pci/pcie_host.c | 3 ---
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/hw/pci/pcie_host.h b/include/hw/pci/pcie_host.h
index 1228e36..bac3c67 100644
--- a/include/hw/pci/pcie_host.h
+++ b/include/hw/pci/pcie_host.h
@@ -28,6 +28,9 @@
#define PCIE_HOST_BRIDGE(obj) \
OBJECT_CHECK(PCIExpressHost, (obj), TYPE_PCIE_HOST_BRIDGE)
+/* pcie_host::base_addr == PCIE_BASE_ADDR_UNMAPPED when it isn't mapped. */
+#define PCIE_BASE_ADDR_UNMAPPED ((hwaddr)-1ULL)
+
struct PCIExpressHost {
PCIHostState pci;
diff --git a/hw/pci/pcie_host.c b/hw/pci/pcie_host.c
index b70e5ad..410ac08 100644
--- a/hw/pci/pcie_host.c
+++ b/hw/pci/pcie_host.c
@@ -104,9 +104,6 @@ static const MemoryRegionOps pcie_mmcfg_ops = {
.endianness = DEVICE_NATIVE_ENDIAN,
};
-/* pcie_host::base_addr == PCIE_BASE_ADDR_UNMAPPED when it isn't mapped. */
-#define PCIE_BASE_ADDR_UNMAPPED ((hwaddr)-1ULL)
-
int pcie_host_init(PCIExpressHost *e)
{
e->base_addr = PCIE_BASE_ADDR_UNMAPPED;
--
MST
- [Qemu-devel] [PATCH v7 00/27] qemu: generate acpi tables for the guest, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 01/27] qemu: add Error to typedefs, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 02/27] qom: pull in qemu/typedefs, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 03/27] qom: cleanup struct Error references, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 04/27] qom: add pointer to int property helpers, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 05/27] pci: fix up w64 size calculation helper, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 06/27] fw_cfg: interface to trigger callback on read, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 07/27] loader: support for unmapped ROM blobs, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 08/27] pcie_host: expose UNMAPPED macro,
Michael S. Tsirkin <=
- [Qemu-devel] [PATCH v7 09/27] pcie_host: expose address format, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 10/27] q35: use macro for MCFG property name, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 11/27] q35: expose mmcfg size as a property, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 13/27] acpi: add rules to compile ASL source, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 12/27] i386: add ACPI table files from seabios, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 15/27] acpi: ssdt pcihp: updat generated file, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 14/27] acpi: pre-compiled ASL files, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 17/27] i386: add bios linker/loader, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 16/27] loader: use file path size from fw_cfg.h, Michael S. Tsirkin, 2013/10/01
- [Qemu-devel] [PATCH v7 18/27] loader: allow adding ROMs in done callbacks, Michael S. Tsirkin, 2013/10/01