13384f95cSDavid Gibson /* 23384f95cSDavid Gibson * QEMU SPAPR PCI BUS definitions 33384f95cSDavid Gibson * 43384f95cSDavid Gibson * Copyright (c) 2011 Alexey Kardashevskiy <aik@au1.ibm.com> 53384f95cSDavid Gibson * 63384f95cSDavid Gibson * This library is free software; you can redistribute it and/or 73384f95cSDavid Gibson * modify it under the terms of the GNU Lesser General Public 83384f95cSDavid Gibson * License as published by the Free Software Foundation; either 93384f95cSDavid Gibson * version 2 of the License, or (at your option) any later version. 103384f95cSDavid Gibson * 113384f95cSDavid Gibson * This library is distributed in the hope that it will be useful, 123384f95cSDavid Gibson * but WITHOUT ANY WARRANTY; without even the implied warranty of 133384f95cSDavid Gibson * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 143384f95cSDavid Gibson * Lesser General Public License for more details. 153384f95cSDavid Gibson * 163384f95cSDavid Gibson * You should have received a copy of the GNU Lesser General Public 173384f95cSDavid Gibson * License along with this library; if not, see <http://www.gnu.org/licenses/>. 183384f95cSDavid Gibson */ 193384f95cSDavid Gibson #if !defined(__HW_SPAPR_H__) 203384f95cSDavid Gibson #error Please include spapr.h before this file! 213384f95cSDavid Gibson #endif 223384f95cSDavid Gibson 233384f95cSDavid Gibson #if !defined(__HW_SPAPR_PCI_H__) 243384f95cSDavid Gibson #define __HW_SPAPR_PCI_H__ 253384f95cSDavid Gibson 26a2cb15b0SMichael S. Tsirkin #include "hw/pci/pci.h" 27a2cb15b0SMichael S. Tsirkin #include "hw/pci/pci_host.h" 280d09e41aSPaolo Bonzini #include "hw/ppc/xics.h" 293384f95cSDavid Gibson 300ee2c058SAlexey Kardashevskiy #define SPAPR_MSIX_MAX_DEVS 32 310ee2c058SAlexey Kardashevskiy 328c9f64dfSAndreas Färber #define TYPE_SPAPR_PCI_HOST_BRIDGE "spapr-pci-host-bridge" 33*9fc34adaSAlexey Kardashevskiy #define TYPE_SPAPR_PCI_VFIO_HOST_BRIDGE "spapr-pci-vfio-host-bridge" 348c9f64dfSAndreas Färber 358c9f64dfSAndreas Färber #define SPAPR_PCI_HOST_BRIDGE(obj) \ 368c9f64dfSAndreas Färber OBJECT_CHECK(sPAPRPHBState, (obj), TYPE_SPAPR_PCI_HOST_BRIDGE) 378c9f64dfSAndreas Färber 38*9fc34adaSAlexey Kardashevskiy #define SPAPR_PCI_VFIO_HOST_BRIDGE(obj) \ 39*9fc34adaSAlexey Kardashevskiy OBJECT_CHECK(sPAPRPHBVFIOState, (obj), TYPE_SPAPR_PCI_VFIO_HOST_BRIDGE) 40*9fc34adaSAlexey Kardashevskiy 41da6ccee4SAlexey Kardashevskiy #define SPAPR_PCI_HOST_BRIDGE_CLASS(klass) \ 42da6ccee4SAlexey Kardashevskiy OBJECT_CLASS_CHECK(sPAPRPHBClass, (klass), TYPE_SPAPR_PCI_HOST_BRIDGE) 43da6ccee4SAlexey Kardashevskiy #define SPAPR_PCI_HOST_BRIDGE_GET_CLASS(obj) \ 44da6ccee4SAlexey Kardashevskiy OBJECT_GET_CLASS(sPAPRPHBClass, (obj), TYPE_SPAPR_PCI_HOST_BRIDGE) 45da6ccee4SAlexey Kardashevskiy 46da6ccee4SAlexey Kardashevskiy typedef struct sPAPRPHBClass sPAPRPHBClass; 47da6ccee4SAlexey Kardashevskiy typedef struct sPAPRPHBState sPAPRPHBState; 48*9fc34adaSAlexey Kardashevskiy typedef struct sPAPRPHBVFIOState sPAPRPHBVFIOState; 49da6ccee4SAlexey Kardashevskiy 50da6ccee4SAlexey Kardashevskiy struct sPAPRPHBClass { 51da6ccee4SAlexey Kardashevskiy PCIHostBridgeClass parent_class; 52da6ccee4SAlexey Kardashevskiy 53da6ccee4SAlexey Kardashevskiy void (*finish_realize)(sPAPRPHBState *sphb, Error **errp); 54da6ccee4SAlexey Kardashevskiy }; 55da6ccee4SAlexey Kardashevskiy 56da6ccee4SAlexey Kardashevskiy struct sPAPRPHBState { 5767c332fdSAndreas Färber PCIHostState parent_obj; 583384f95cSDavid Gibson 59caae58cbSDavid Gibson int32_t index; 603384f95cSDavid Gibson uint64_t buid; 61298a9710SDavid Gibson char *dtbusname; 623384f95cSDavid Gibson 633384f95cSDavid Gibson MemoryRegion memspace, iospace; 64a8170e5eSAvi Kivity hwaddr mem_win_addr, mem_win_size, io_win_addr, io_win_size; 65f1c2dc7cSAlexey Kardashevskiy MemoryRegion memwindow, iowindow; 660ee2c058SAlexey Kardashevskiy 675c4cbcf2SAlexey Kardashevskiy uint32_t dma_liobn; 68e00387d5SAvi Kivity AddressSpace iommu_as; 69cca7fad5SAlexey Kardashevskiy MemoryRegion iommu_root; 703384f95cSDavid Gibson 711112cf94SDavid Gibson struct spapr_pci_lsi { 72a307d594SAlexey Kardashevskiy uint32_t irq; 737fb0bd34SDavid Gibson } lsi_table[PCI_NUM_PINS]; 743384f95cSDavid Gibson 751112cf94SDavid Gibson struct spapr_pci_msi { 760ee2c058SAlexey Kardashevskiy uint32_t config_addr; 770ee2c058SAlexey Kardashevskiy uint32_t irq; 781112cf94SDavid Gibson uint32_t nvec; 790ee2c058SAlexey Kardashevskiy } msi_table[SPAPR_MSIX_MAX_DEVS]; 800ee2c058SAlexey Kardashevskiy 813384f95cSDavid Gibson QLIST_ENTRY(sPAPRPHBState) list; 82da6ccee4SAlexey Kardashevskiy }; 833384f95cSDavid Gibson 84*9fc34adaSAlexey Kardashevskiy struct sPAPRPHBVFIOState { 85*9fc34adaSAlexey Kardashevskiy sPAPRPHBState phb; 86*9fc34adaSAlexey Kardashevskiy 87*9fc34adaSAlexey Kardashevskiy int32_t iommugroupid; 88*9fc34adaSAlexey Kardashevskiy }; 89*9fc34adaSAlexey Kardashevskiy 90caae58cbSDavid Gibson #define SPAPR_PCI_BASE_BUID 0x800000020000000ULL 91caae58cbSDavid Gibson 92caae58cbSDavid Gibson #define SPAPR_PCI_WINDOW_BASE 0x10000000000ULL 93caae58cbSDavid Gibson #define SPAPR_PCI_WINDOW_SPACING 0x1000000000ULL 94caae58cbSDavid Gibson #define SPAPR_PCI_MMIO_WIN_OFF 0xA0000000 95caae58cbSDavid Gibson #define SPAPR_PCI_MMIO_WIN_SIZE 0x20000000 96caae58cbSDavid Gibson #define SPAPR_PCI_IO_WIN_OFF 0x80000000 97caae58cbSDavid Gibson #define SPAPR_PCI_IO_WIN_SIZE 0x10000 98f1c2dc7cSAlexey Kardashevskiy 99f1c2dc7cSAlexey Kardashevskiy #define SPAPR_PCI_MSI_WINDOW 0x40000000000ULL 100caae58cbSDavid Gibson 101caae58cbSDavid Gibson #define SPAPR_PCI_MEM_WIN_BUS_OFFSET 0x80000000ULL 102caae58cbSDavid Gibson 103a307d594SAlexey Kardashevskiy static inline qemu_irq spapr_phb_lsi_qirq(struct sPAPRPHBState *phb, int pin) 104a307d594SAlexey Kardashevskiy { 105a307d594SAlexey Kardashevskiy return xics_get_qirq(spapr->icp, phb->lsi_table[pin].irq); 106a307d594SAlexey Kardashevskiy } 107a307d594SAlexey Kardashevskiy 10889dfd6e1SDavid Gibson PCIHostState *spapr_create_phb(sPAPREnvironment *spapr, int index); 1093384f95cSDavid Gibson 110e0fdbd7cSAlexey Kardashevskiy int spapr_populate_pci_dt(sPAPRPHBState *phb, 1113384f95cSDavid Gibson uint32_t xics_phandle, 1123384f95cSDavid Gibson void *fdt); 1133384f95cSDavid Gibson 114f1c2dc7cSAlexey Kardashevskiy void spapr_pci_msi_init(sPAPREnvironment *spapr, hwaddr addr); 115f1c2dc7cSAlexey Kardashevskiy 116fa28f71bSAlexey Kardashevskiy void spapr_pci_rtas_init(void); 117fa28f71bSAlexey Kardashevskiy 1183384f95cSDavid Gibson #endif /* __HW_SPAPR_PCI_H__ */ 119