1967b7523SCédric Le Goater /* 2967b7523SCédric Le Goater * QEMU PowerPC PowerNV XSCOM bus definitions 3967b7523SCédric Le Goater * 4967b7523SCédric Le Goater * Copyright (c) 2016, IBM Corporation. 5967b7523SCédric Le Goater * 6967b7523SCédric Le Goater * This library is free software; you can redistribute it and/or 7967b7523SCédric Le Goater * modify it under the terms of the GNU Lesser General Public 8967b7523SCédric Le Goater * License as published by the Free Software Foundation; either 9967b7523SCédric Le Goater * version 2 of the License, or (at your option) any later version. 10967b7523SCédric Le Goater * 11967b7523SCédric Le Goater * This library is distributed in the hope that it will be useful, 12967b7523SCédric Le Goater * but WITHOUT ANY WARRANTY; without even the implied warranty of 13967b7523SCédric Le Goater * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14967b7523SCédric Le Goater * Lesser General Public License for more details. 15967b7523SCédric Le Goater * 16967b7523SCédric Le Goater * You should have received a copy of the GNU Lesser General Public 17967b7523SCédric Le Goater * License along with this library; if not, see <http://www.gnu.org/licenses/>. 18967b7523SCédric Le Goater */ 19a8b991b5SMarkus Armbruster 20a8b991b5SMarkus Armbruster #ifndef PPC_PNV_XSCOM_H 21a8b991b5SMarkus Armbruster #define PPC_PNV_XSCOM_H 22967b7523SCédric Le Goater 23967b7523SCédric Le Goater #include "qom/object.h" 24967b7523SCédric Le Goater 25967b7523SCédric Le Goater typedef struct PnvXScomInterface { 26967b7523SCédric Le Goater Object parent; 27967b7523SCédric Le Goater } PnvXScomInterface; 28967b7523SCédric Le Goater 29967b7523SCédric Le Goater #define TYPE_PNV_XSCOM_INTERFACE "pnv-xscom-interface" 30967b7523SCédric Le Goater #define PNV_XSCOM_INTERFACE(obj) \ 31967b7523SCédric Le Goater OBJECT_CHECK(PnvXScomInterface, (obj), TYPE_PNV_XSCOM_INTERFACE) 32967b7523SCédric Le Goater #define PNV_XSCOM_INTERFACE_CLASS(klass) \ 33967b7523SCédric Le Goater OBJECT_CLASS_CHECK(PnvXScomInterfaceClass, (klass), \ 34967b7523SCédric Le Goater TYPE_PNV_XSCOM_INTERFACE) 35967b7523SCédric Le Goater #define PNV_XSCOM_INTERFACE_GET_CLASS(obj) \ 36967b7523SCédric Le Goater OBJECT_GET_CLASS(PnvXScomInterfaceClass, (obj), TYPE_PNV_XSCOM_INTERFACE) 37967b7523SCédric Le Goater 38967b7523SCédric Le Goater typedef struct PnvXScomInterfaceClass { 39967b7523SCédric Le Goater InterfaceClass parent; 40b168a138SCédric Le Goater int (*dt_xscom)(PnvXScomInterface *dev, void *fdt, int offset); 41967b7523SCédric Le Goater } PnvXScomInterfaceClass; 42967b7523SCédric Le Goater 4324ece072SCédric Le Goater /* 44ad521238SCédric Le Goater * Layout of the XSCOM PCB addresses of EX core 1 (POWER 8) 4524ece072SCédric Le Goater * 4624ece072SCédric Le Goater * GPIO 0x1100xxxx 4724ece072SCédric Le Goater * SCOM 0x1101xxxx 4824ece072SCédric Le Goater * OHA 0x1102xxxx 4924ece072SCédric Le Goater * CLOCK CTL 0x1103xxxx 5024ece072SCédric Le Goater * FIR 0x1104xxxx 5124ece072SCédric Le Goater * THERM 0x1105xxxx 5224ece072SCédric Le Goater * <reserved> 0x1106xxxx 5324ece072SCédric Le Goater * .. 5424ece072SCédric Le Goater * 0x110Exxxx 5524ece072SCédric Le Goater * PCB SLAVE 0x110Fxxxx 5624ece072SCédric Le Goater */ 5724ece072SCédric Le Goater 58c035851aSCédric Le Goater #define PNV_XSCOM_EX_CORE_BASE 0x10000000ull 59c035851aSCédric Le Goater 60c035851aSCédric Le Goater #define PNV_XSCOM_EX_BASE(core) \ 61c035851aSCédric Le Goater (PNV_XSCOM_EX_CORE_BASE | ((uint64_t)(core) << 24)) 62c035851aSCédric Le Goater #define PNV_XSCOM_EX_SIZE 0x100000 63c035851aSCédric Le Goater 64a3980bf5SBenjamin Herrenschmidt #define PNV_XSCOM_LPC_BASE 0xb0020 65a3980bf5SBenjamin Herrenschmidt #define PNV_XSCOM_LPC_SIZE 0x4 66a3980bf5SBenjamin Herrenschmidt 6754f59d78SCédric Le Goater #define PNV_XSCOM_PSIHB_BASE 0x2010900 6854f59d78SCédric Le Goater #define PNV_XSCOM_PSIHB_SIZE 0x20 6954f59d78SCédric Le Goater 700722d05aSBenjamin Herrenschmidt #define PNV_XSCOM_OCC_BASE 0x0066000 710722d05aSBenjamin Herrenschmidt #define PNV_XSCOM_OCC_SIZE 0x6000 720722d05aSBenjamin Herrenschmidt 73*2b548a42SCédric Le Goater /* 74*2b548a42SCédric Le Goater * Layout of the XSCOM PCB addresses (POWER 9) 75*2b548a42SCédric Le Goater */ 765dad902cSCédric Le Goater #define PNV9_XSCOM_EC_BASE(core) \ 775dad902cSCédric Le Goater ((uint64_t)(((core) & 0x1F) + 0x20) << 24) 785dad902cSCédric Le Goater #define PNV9_XSCOM_EC_SIZE 0x100000 795dad902cSCédric Le Goater 805dad902cSCédric Le Goater #define PNV9_XSCOM_EQ_BASE(core) \ 815dad902cSCédric Le Goater ((uint64_t)(((core) & 0x1C) + 0x40) << 22) 825dad902cSCédric Le Goater #define PNV9_XSCOM_EQ_SIZE 0x100000 835dad902cSCédric Le Goater 846598a70dSCédric Le Goater #define PNV9_XSCOM_OCC_BASE PNV_XSCOM_OCC_BASE 856598a70dSCédric Le Goater #define PNV9_XSCOM_OCC_SIZE 0x8000 866598a70dSCédric Le Goater 87c38536bcSCédric Le Goater #define PNV9_XSCOM_PSIHB_BASE 0x5012900 88c38536bcSCédric Le Goater #define PNV9_XSCOM_PSIHB_SIZE 0x100 89c38536bcSCédric Le Goater 902dfa91a2SCédric Le Goater #define PNV9_XSCOM_XIVE_BASE 0x5013000 912dfa91a2SCédric Le Goater #define PNV9_XSCOM_XIVE_SIZE 0x300 922dfa91a2SCédric Le Goater 93*2b548a42SCédric Le Goater /* 94*2b548a42SCédric Le Goater * Layout of the XSCOM PCB addresses (POWER 10) 95*2b548a42SCédric Le Goater */ 96*2b548a42SCédric Le Goater #define PNV10_XSCOM_EQ_CHIPLET(core) (0x20 + ((core) >> 2)) 97*2b548a42SCédric Le Goater #define PNV10_XSCOM_EQ(chiplet) ((chiplet) << 24) 98*2b548a42SCédric Le Goater #define PNV10_XSCOM_EC(proc) \ 99*2b548a42SCédric Le Goater ((0x2 << 16) | ((1 << (3 - (proc))) << 12)) 100*2b548a42SCédric Le Goater 101*2b548a42SCédric Le Goater #define PNV10_XSCOM_EQ_BASE(core) \ 102*2b548a42SCédric Le Goater ((uint64_t) PNV10_XSCOM_EQ(PNV10_XSCOM_EQ_CHIPLET(core))) 103*2b548a42SCédric Le Goater #define PNV10_XSCOM_EQ_SIZE 0x100000 104*2b548a42SCédric Le Goater 105*2b548a42SCédric Le Goater #define PNV10_XSCOM_EC_BASE(core) \ 106*2b548a42SCédric Le Goater ((uint64_t) PNV10_XSCOM_EQ_BASE(core) | PNV10_XSCOM_EC(core & 0x3)) 107*2b548a42SCédric Le Goater #define PNV10_XSCOM_EC_SIZE 0x100000 108*2b548a42SCédric Le Goater 109709044fdSCédric Le Goater extern void pnv_xscom_realize(PnvChip *chip, uint64_t size, Error **errp); 110b168a138SCédric Le Goater extern int pnv_dt_xscom(PnvChip *chip, void *fdt, int offset); 111967b7523SCédric Le Goater 112967b7523SCédric Le Goater extern void pnv_xscom_add_subregion(PnvChip *chip, hwaddr offset, 113967b7523SCédric Le Goater MemoryRegion *mr); 114967b7523SCédric Le Goater extern void pnv_xscom_region_init(MemoryRegion *mr, 115967b7523SCédric Le Goater struct Object *owner, 116967b7523SCédric Le Goater const MemoryRegionOps *ops, 117967b7523SCédric Le Goater void *opaque, 118967b7523SCédric Le Goater const char *name, 119967b7523SCédric Le Goater uint64_t size); 120967b7523SCédric Le Goater 121a8b991b5SMarkus Armbruster #endif /* PPC_PNV_XSCOM_H */ 122