target/arm/kvm64: Fix error returns
[qemu/ar7.git] / include / hw / pci-host / designware.h
blob186bb36238c15348854d7929b40111edd185f2ae
1 /*
2 * Copyright (c) 2017, Impinj, Inc.
4 * Designware PCIe IP block emulation
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see
18 * <http://www.gnu.org/licenses/>.
21 #ifndef DESIGNWARE_H
22 #define DESIGNWARE_H
24 #include "hw/hw.h"
25 #include "hw/sysbus.h"
26 #include "hw/pci/pci.h"
27 #include "hw/pci/pci_bus.h"
28 #include "hw/pci/pcie_host.h"
29 #include "hw/pci/pci_bridge.h"
31 #define TYPE_DESIGNWARE_PCIE_HOST "designware-pcie-host"
32 #define DESIGNWARE_PCIE_HOST(obj) \
33 OBJECT_CHECK(DesignwarePCIEHost, (obj), TYPE_DESIGNWARE_PCIE_HOST)
35 #define TYPE_DESIGNWARE_PCIE_ROOT "designware-pcie-root"
36 #define DESIGNWARE_PCIE_ROOT(obj) \
37 OBJECT_CHECK(DesignwarePCIERoot, (obj), TYPE_DESIGNWARE_PCIE_ROOT)
39 struct DesignwarePCIERoot;
40 typedef struct DesignwarePCIERoot DesignwarePCIERoot;
42 typedef struct DesignwarePCIEViewport {
43 DesignwarePCIERoot *root;
45 MemoryRegion cfg;
46 MemoryRegion mem;
48 uint64_t base;
49 uint64_t target;
50 uint32_t limit;
51 uint32_t cr[2];
53 bool inbound;
54 } DesignwarePCIEViewport;
56 typedef struct DesignwarePCIEMSIBank {
57 uint32_t enable;
58 uint32_t mask;
59 uint32_t status;
60 } DesignwarePCIEMSIBank;
62 typedef struct DesignwarePCIEMSI {
63 uint64_t base;
64 MemoryRegion iomem;
66 #define DESIGNWARE_PCIE_NUM_MSI_BANKS 1
68 DesignwarePCIEMSIBank intr[DESIGNWARE_PCIE_NUM_MSI_BANKS];
69 } DesignwarePCIEMSI;
71 struct DesignwarePCIERoot {
72 PCIBridge parent_obj;
74 uint32_t atu_viewport;
76 #define DESIGNWARE_PCIE_VIEWPORT_OUTBOUND 0
77 #define DESIGNWARE_PCIE_VIEWPORT_INBOUND 1
78 #define DESIGNWARE_PCIE_NUM_VIEWPORTS 4
80 DesignwarePCIEViewport viewports[2][DESIGNWARE_PCIE_NUM_VIEWPORTS];
81 DesignwarePCIEMSI msi;
84 typedef struct DesignwarePCIEHost {
85 PCIHostState parent_obj;
87 DesignwarePCIERoot root;
89 struct {
90 AddressSpace address_space;
91 MemoryRegion address_space_root;
93 MemoryRegion memory;
94 MemoryRegion io;
96 qemu_irq irqs[4];
97 } pci;
99 MemoryRegion mmio;
100 } DesignwarePCIEHost;
102 #endif /* DESIGNWARE_H */