2016-10-22 12:46:35 +03:00
|
|
|
/*
|
|
|
|
* QEMU PowerPC PowerNV various definitions
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014-2016 BenH, IBM Corporation.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2019-03-15 17:51:21 +03:00
|
|
|
|
|
|
|
#ifndef PPC_PNV_H
|
|
|
|
#define PPC_PNV_H
|
2016-10-22 12:46:35 +03:00
|
|
|
|
|
|
|
#include "hw/boards.h"
|
2016-10-22 12:46:36 +03:00
|
|
|
#include "hw/sysbus.h"
|
2017-05-10 09:46:01 +03:00
|
|
|
#include "hw/ipmi/ipmi.h"
|
2016-10-22 12:46:42 +03:00
|
|
|
#include "hw/ppc/pnv_lpc.h"
|
2019-10-21 16:12:11 +03:00
|
|
|
#include "hw/ppc/pnv_pnor.h"
|
2017-04-05 15:41:26 +03:00
|
|
|
#include "hw/ppc/pnv_psi.h"
|
2017-04-05 15:41:27 +03:00
|
|
|
#include "hw/ppc/pnv_occ.h"
|
2019-09-12 12:30:54 +03:00
|
|
|
#include "hw/ppc/pnv_homer.h"
|
2019-03-06 11:50:11 +03:00
|
|
|
#include "hw/ppc/pnv_xive.h"
|
2019-03-08 01:35:44 +03:00
|
|
|
#include "hw/ppc/pnv_core.h"
|
2016-10-22 12:46:36 +03:00
|
|
|
|
2017-12-15 16:56:01 +03:00
|
|
|
#define TYPE_PNV_CHIP "pnv-chip"
|
2016-10-22 12:46:36 +03:00
|
|
|
#define PNV_CHIP(obj) OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP)
|
|
|
|
#define PNV_CHIP_CLASS(klass) \
|
|
|
|
OBJECT_CLASS_CHECK(PnvChipClass, (klass), TYPE_PNV_CHIP)
|
|
|
|
#define PNV_CHIP_GET_CLASS(obj) \
|
|
|
|
OBJECT_GET_CLASS(PnvChipClass, (obj), TYPE_PNV_CHIP)
|
|
|
|
|
|
|
|
typedef enum PnvChipType {
|
|
|
|
PNV_CHIP_POWER8E, /* AKA Murano (default) */
|
|
|
|
PNV_CHIP_POWER8, /* AKA Venice */
|
|
|
|
PNV_CHIP_POWER8NVL, /* AKA Naples */
|
|
|
|
PNV_CHIP_POWER9, /* AKA Nimbus */
|
2019-12-05 21:44:51 +03:00
|
|
|
PNV_CHIP_POWER10, /* AKA TBD */
|
2016-10-22 12:46:36 +03:00
|
|
|
} PnvChipType;
|
|
|
|
|
|
|
|
typedef struct PnvChip {
|
|
|
|
/*< private >*/
|
|
|
|
SysBusDevice parent_obj;
|
|
|
|
|
|
|
|
/*< public >*/
|
|
|
|
uint32_t chip_id;
|
|
|
|
uint64_t ram_start;
|
|
|
|
uint64_t ram_size;
|
2016-10-22 12:46:37 +03:00
|
|
|
|
|
|
|
uint32_t nr_cores;
|
|
|
|
uint64_t cores_mask;
|
2019-11-25 09:58:03 +03:00
|
|
|
PnvCore **cores;
|
ppc/pnv: add XSCOM infrastructure
On a real POWER8 system, the Pervasive Interconnect Bus (PIB) serves
as a backbone to connect different units of the system. The host
firmware connects to the PIB through a bridge unit, the
Alter-Display-Unit (ADU), which gives him access to all the chiplets
on the PCB network (Pervasive Connect Bus), the PIB acting as the root
of this network.
XSCOM (serial communication) is the interface to the sideband bus
provided by the POWER8 pervasive unit to read and write to chiplets
resources. This is needed by the host firmware, OPAL and to a lesser
extent, Linux. This is among others how the PCI Host bridges get
configured at boot or how the LPC bus is accessed.
To represent the ADU of a real system, we introduce a specific
AddressSpace to dispatch XSCOM accesses to the targeted chiplets. The
translation of an XSCOM address into a PCB register address is
slightly different between the P9 and the P8. This is handled before
the dispatch using a 8byte alignment for all.
To customize the device tree, a QOM InterfaceClass, PnvXScomInterface,
is provided with a populate() handler. The chip populates the device
tree by simply looping on its children. Therefore, each model needing
custom nodes should not forget to declare itself as a child at
instantiation time.
Based on previous work done by :
Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
[dwg: Added cpu parameter to xscom_complete()]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2016-10-22 12:46:40 +03:00
|
|
|
|
|
|
|
MemoryRegion xscom_mmio;
|
|
|
|
MemoryRegion xscom;
|
|
|
|
AddressSpace xscom_as;
|
2019-03-08 01:35:38 +03:00
|
|
|
|
|
|
|
gchar *dt_isa_nodename;
|
2018-06-18 20:05:39 +03:00
|
|
|
} PnvChip;
|
|
|
|
|
|
|
|
#define TYPE_PNV8_CHIP "pnv8-chip"
|
|
|
|
#define PNV8_CHIP(obj) OBJECT_CHECK(Pnv8Chip, (obj), TYPE_PNV8_CHIP)
|
|
|
|
|
|
|
|
typedef struct Pnv8Chip {
|
|
|
|
/*< private >*/
|
|
|
|
PnvChip parent_obj;
|
|
|
|
|
|
|
|
/*< public >*/
|
2017-04-03 10:46:05 +03:00
|
|
|
MemoryRegion icp_mmio;
|
2016-10-22 12:46:42 +03:00
|
|
|
|
|
|
|
PnvLpcController lpc;
|
2019-03-08 01:35:34 +03:00
|
|
|
Pnv8Psi psi;
|
2017-04-05 15:41:27 +03:00
|
|
|
PnvOCC occ;
|
2019-09-12 12:30:54 +03:00
|
|
|
PnvHomer homer;
|
2018-06-18 20:05:39 +03:00
|
|
|
} Pnv8Chip;
|
|
|
|
|
|
|
|
#define TYPE_PNV9_CHIP "pnv9-chip"
|
|
|
|
#define PNV9_CHIP(obj) OBJECT_CHECK(Pnv9Chip, (obj), TYPE_PNV9_CHIP)
|
|
|
|
|
|
|
|
typedef struct Pnv9Chip {
|
|
|
|
/*< private >*/
|
|
|
|
PnvChip parent_obj;
|
|
|
|
|
|
|
|
/*< public >*/
|
2019-03-06 11:50:11 +03:00
|
|
|
PnvXive xive;
|
2019-03-08 01:35:35 +03:00
|
|
|
Pnv9Psi psi;
|
2019-03-08 01:35:39 +03:00
|
|
|
PnvLpcController lpc;
|
2019-03-08 01:35:42 +03:00
|
|
|
PnvOCC occ;
|
2019-09-12 12:30:54 +03:00
|
|
|
PnvHomer homer;
|
2019-03-08 01:35:44 +03:00
|
|
|
|
|
|
|
uint32_t nr_quads;
|
|
|
|
PnvQuad *quads;
|
2018-06-18 20:05:39 +03:00
|
|
|
} Pnv9Chip;
|
2016-10-22 12:46:36 +03:00
|
|
|
|
2019-11-25 09:58:06 +03:00
|
|
|
/*
|
|
|
|
* A SMT8 fused core is a pair of SMT4 cores.
|
|
|
|
*/
|
|
|
|
#define PNV9_PIR2FUSEDCORE(pir) (((pir) >> 3) & 0xf)
|
2019-11-25 09:58:13 +03:00
|
|
|
#define PNV9_PIR2CHIP(pir) (((pir) >> 8) & 0x7f)
|
2019-11-25 09:58:06 +03:00
|
|
|
|
2019-12-05 21:44:51 +03:00
|
|
|
#define TYPE_PNV10_CHIP "pnv10-chip"
|
|
|
|
#define PNV10_CHIP(obj) OBJECT_CHECK(Pnv10Chip, (obj), TYPE_PNV10_CHIP)
|
|
|
|
|
|
|
|
typedef struct Pnv10Chip {
|
|
|
|
/*< private >*/
|
|
|
|
PnvChip parent_obj;
|
2019-12-05 21:44:53 +03:00
|
|
|
|
|
|
|
/*< public >*/
|
|
|
|
Pnv9Psi psi;
|
2019-12-05 21:44:54 +03:00
|
|
|
PnvLpcController lpc;
|
2019-12-05 21:44:51 +03:00
|
|
|
} Pnv10Chip;
|
|
|
|
|
2016-10-22 12:46:36 +03:00
|
|
|
typedef struct PnvChipClass {
|
|
|
|
/*< private >*/
|
|
|
|
SysBusDeviceClass parent_class;
|
|
|
|
|
|
|
|
/*< public >*/
|
|
|
|
PnvChipType chip_type;
|
|
|
|
uint64_t chip_cfam_id;
|
2016-10-22 12:46:37 +03:00
|
|
|
uint64_t cores_mask;
|
2016-10-22 12:46:38 +03:00
|
|
|
|
2018-06-18 20:05:39 +03:00
|
|
|
DeviceRealize parent_realize;
|
|
|
|
|
2016-10-22 12:46:38 +03:00
|
|
|
uint32_t (*core_pir)(PnvChip *chip, uint32_t core_id);
|
2019-01-02 08:57:34 +03:00
|
|
|
void (*intc_create)(PnvChip *chip, PowerPCCPU *cpu, Error **errp);
|
2019-10-22 19:38:10 +03:00
|
|
|
void (*intc_reset)(PnvChip *chip, PowerPCCPU *cpu);
|
2019-10-24 17:27:22 +03:00
|
|
|
void (*intc_destroy)(PnvChip *chip, PowerPCCPU *cpu);
|
2019-12-13 15:00:07 +03:00
|
|
|
void (*intc_print_info)(PnvChip *chip, PowerPCCPU *cpu, Monitor *mon);
|
2018-06-15 18:25:34 +03:00
|
|
|
ISABus *(*isa_create)(PnvChip *chip, Error **errp);
|
2019-03-06 11:50:12 +03:00
|
|
|
void (*dt_populate)(PnvChip *chip, void *fdt);
|
2019-03-06 11:50:13 +03:00
|
|
|
void (*pic_print_info)(PnvChip *chip, Monitor *mon);
|
2019-12-13 15:00:13 +03:00
|
|
|
uint64_t (*xscom_core_base)(PnvChip *chip, uint32_t core_id);
|
2016-10-22 12:46:36 +03:00
|
|
|
} PnvChipClass;
|
|
|
|
|
2017-10-09 22:51:07 +03:00
|
|
|
#define PNV_CHIP_TYPE_SUFFIX "-" TYPE_PNV_CHIP
|
|
|
|
#define PNV_CHIP_TYPE_NAME(cpu_model) cpu_model PNV_CHIP_TYPE_SUFFIX
|
|
|
|
|
|
|
|
#define TYPE_PNV_CHIP_POWER8E PNV_CHIP_TYPE_NAME("power8e_v2.1")
|
2016-10-22 12:46:36 +03:00
|
|
|
#define PNV_CHIP_POWER8E(obj) \
|
|
|
|
OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER8E)
|
|
|
|
|
2017-10-09 22:51:07 +03:00
|
|
|
#define TYPE_PNV_CHIP_POWER8 PNV_CHIP_TYPE_NAME("power8_v2.0")
|
2016-10-22 12:46:36 +03:00
|
|
|
#define PNV_CHIP_POWER8(obj) \
|
|
|
|
OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER8)
|
|
|
|
|
2017-10-09 22:51:07 +03:00
|
|
|
#define TYPE_PNV_CHIP_POWER8NVL PNV_CHIP_TYPE_NAME("power8nvl_v1.0")
|
2016-10-22 12:46:36 +03:00
|
|
|
#define PNV_CHIP_POWER8NVL(obj) \
|
|
|
|
OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER8NVL)
|
|
|
|
|
2017-10-09 22:51:07 +03:00
|
|
|
#define TYPE_PNV_CHIP_POWER9 PNV_CHIP_TYPE_NAME("power9_v2.0")
|
2016-10-22 12:46:36 +03:00
|
|
|
#define PNV_CHIP_POWER9(obj) \
|
|
|
|
OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER9)
|
|
|
|
|
2019-12-05 21:44:51 +03:00
|
|
|
#define TYPE_PNV_CHIP_POWER10 PNV_CHIP_TYPE_NAME("power10_v1.0")
|
|
|
|
#define PNV_CHIP_POWER10(obj) \
|
|
|
|
OBJECT_CHECK(PnvChip, (obj), TYPE_PNV_CHIP_POWER10)
|
|
|
|
|
2016-10-22 12:46:36 +03:00
|
|
|
/*
|
2017-04-03 10:46:04 +03:00
|
|
|
* This generates a HW chip id depending on an index, as found on a
|
|
|
|
* two socket system with dual chip modules :
|
2016-10-22 12:46:36 +03:00
|
|
|
*
|
|
|
|
* 0x0, 0x1, 0x10, 0x11
|
|
|
|
*
|
|
|
|
* 4 chips should be the maximum
|
2017-04-03 10:46:04 +03:00
|
|
|
*
|
|
|
|
* TODO: use a machine property to define the chip ids
|
2016-10-22 12:46:36 +03:00
|
|
|
*/
|
|
|
|
#define PNV_CHIP_HWID(i) ((((i) & 0x3e) << 3) | ((i) & 0x1))
|
2016-10-22 12:46:35 +03:00
|
|
|
|
2017-04-03 10:46:04 +03:00
|
|
|
/*
|
|
|
|
* Converts back a HW chip id to an index. This is useful to calculate
|
|
|
|
* the MMIO addresses of some controllers which depend on the chip id.
|
|
|
|
*/
|
|
|
|
#define PNV_CHIP_INDEX(chip) \
|
|
|
|
(((chip)->chip_id >> 2) * 2 + ((chip)->chip_id & 0x3))
|
|
|
|
|
2019-11-25 09:58:07 +03:00
|
|
|
PowerPCCPU *pnv_chip_find_cpu(PnvChip *chip, uint32_t pir);
|
|
|
|
|
2017-12-15 16:56:01 +03:00
|
|
|
#define TYPE_PNV_MACHINE MACHINE_TYPE_NAME("powernv")
|
|
|
|
#define PNV_MACHINE(obj) \
|
|
|
|
OBJECT_CHECK(PnvMachineState, (obj), TYPE_PNV_MACHINE)
|
2019-12-13 14:59:50 +03:00
|
|
|
#define PNV_MACHINE_GET_CLASS(obj) \
|
|
|
|
OBJECT_GET_CLASS(PnvMachineClass, obj, TYPE_PNV_MACHINE)
|
|
|
|
#define PNV_MACHINE_CLASS(klass) \
|
|
|
|
OBJECT_CLASS_CHECK(PnvMachineClass, klass, TYPE_PNV_MACHINE)
|
|
|
|
|
2019-12-13 14:59:56 +03:00
|
|
|
typedef struct PnvMachineState PnvMachineState;
|
|
|
|
|
2019-12-13 14:59:50 +03:00
|
|
|
typedef struct PnvMachineClass {
|
|
|
|
/*< private >*/
|
|
|
|
MachineClass parent_class;
|
|
|
|
|
|
|
|
/*< public >*/
|
|
|
|
const char *compat;
|
|
|
|
int compat_size;
|
2019-12-13 14:59:56 +03:00
|
|
|
|
|
|
|
void (*dt_power_mgt)(PnvMachineState *pnv, void *fdt);
|
2019-12-13 14:59:50 +03:00
|
|
|
} PnvMachineClass;
|
2016-10-22 12:46:35 +03:00
|
|
|
|
2019-12-13 14:59:56 +03:00
|
|
|
struct PnvMachineState {
|
2016-10-22 12:46:35 +03:00
|
|
|
/*< private >*/
|
|
|
|
MachineState parent_obj;
|
|
|
|
|
|
|
|
uint32_t initrd_base;
|
|
|
|
long initrd_size;
|
2016-10-22 12:46:36 +03:00
|
|
|
|
|
|
|
uint32_t num_chips;
|
|
|
|
PnvChip **chips;
|
2016-10-22 12:46:43 +03:00
|
|
|
|
|
|
|
ISABus *isa_bus;
|
2017-04-05 15:41:26 +03:00
|
|
|
uint32_t cpld_irqstate;
|
2017-04-11 18:30:05 +03:00
|
|
|
|
|
|
|
IPMIBmc *bmc;
|
2017-04-11 18:30:06 +03:00
|
|
|
Notifier powerdown_notifier;
|
2019-10-21 16:12:11 +03:00
|
|
|
|
|
|
|
PnvPnor *pnor;
|
2019-12-13 14:59:56 +03:00
|
|
|
};
|
2016-10-22 12:46:35 +03:00
|
|
|
|
2019-11-25 09:58:13 +03:00
|
|
|
PnvChip *pnv_get_chip(uint32_t chip_id);
|
|
|
|
|
2016-10-22 12:46:35 +03:00
|
|
|
#define PNV_FDT_ADDR 0x01000000
|
2016-10-22 12:46:39 +03:00
|
|
|
#define PNV_TIMEBASE_FREQ 512000000ULL
|
2016-10-22 12:46:35 +03:00
|
|
|
|
2017-04-11 18:30:05 +03:00
|
|
|
/*
|
|
|
|
* BMC helpers
|
|
|
|
*/
|
2017-12-15 16:56:01 +03:00
|
|
|
void pnv_dt_bmc_sensors(IPMIBmc *bmc, void *fdt);
|
2017-04-11 18:30:06 +03:00
|
|
|
void pnv_bmc_powerdown(IPMIBmc *bmc);
|
ppc/pnv: Create BMC devices at machine init
The BMC of the OpenPOWER systems monitors the machine state using
sensors, controls the power and controls the access to the PNOR flash
device containing the firmware image required to boot the host.
QEMU models the power cycle process, access to the sensors and access
to the PNOR device. But, for these features to be available, the QEMU
PowerNV machine needs two extras devices on the command line, an IPMI
BT device for communication and a BMC backend device:
-device ipmi-bmc-sim,id=bmc0 -device isa-ipmi-bt,bmc=bmc0,irq=10
The BMC properties are then defined accordingly in the device tree and
OPAL self adapts. If a BMC device and an IPMI BT device are not
available, OPAL does not try to communicate with the BMC in any
manner. This is not how real systems behave.
To be closer to the default behavior, create an IPMI BMC simulator
device and an IPMI BT device at machine initialization time. We loose
the ability to define an external BMC device but there are benefits:
- a better match with real systems,
- a better test coverage of the OPAL code,
- system powerdown and reset commands that work,
- a QEMU device tree compliant with the specifications (*).
(*) Still needs a MBOX device.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20191121162340.11049-1-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2019-11-21 19:23:40 +03:00
|
|
|
IPMIBmc *pnv_bmc_create(void);
|
2017-04-11 18:30:05 +03:00
|
|
|
|
ppc/pnv: add XSCOM infrastructure
On a real POWER8 system, the Pervasive Interconnect Bus (PIB) serves
as a backbone to connect different units of the system. The host
firmware connects to the PIB through a bridge unit, the
Alter-Display-Unit (ADU), which gives him access to all the chiplets
on the PCB network (Pervasive Connect Bus), the PIB acting as the root
of this network.
XSCOM (serial communication) is the interface to the sideband bus
provided by the POWER8 pervasive unit to read and write to chiplets
resources. This is needed by the host firmware, OPAL and to a lesser
extent, Linux. This is among others how the PCI Host bridges get
configured at boot or how the LPC bus is accessed.
To represent the ADU of a real system, we introduce a specific
AddressSpace to dispatch XSCOM accesses to the targeted chiplets. The
translation of an XSCOM address into a PCB register address is
slightly different between the P9 and the P8. This is handled before
the dispatch using a 8byte alignment for all.
To customize the device tree, a QOM InterfaceClass, PnvXScomInterface,
is provided with a populate() handler. The chip populates the device
tree by simply looping on its children. Therefore, each model needing
custom nodes should not forget to declare itself as a child at
instantiation time.
Based on previous work done by :
Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
[dwg: Added cpu parameter to xscom_complete()]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2016-10-22 12:46:40 +03:00
|
|
|
/*
|
|
|
|
* POWER8 MMIO base addresses
|
|
|
|
*/
|
|
|
|
#define PNV_XSCOM_SIZE 0x800000000ull
|
|
|
|
#define PNV_XSCOM_BASE(chip) \
|
2019-06-12 20:43:45 +03:00
|
|
|
(0x0003fc0000000000ull + ((uint64_t)(chip)->chip_id) * PNV_XSCOM_SIZE)
|
ppc/pnv: add XSCOM infrastructure
On a real POWER8 system, the Pervasive Interconnect Bus (PIB) serves
as a backbone to connect different units of the system. The host
firmware connects to the PIB through a bridge unit, the
Alter-Display-Unit (ADU), which gives him access to all the chiplets
on the PCB network (Pervasive Connect Bus), the PIB acting as the root
of this network.
XSCOM (serial communication) is the interface to the sideband bus
provided by the POWER8 pervasive unit to read and write to chiplets
resources. This is needed by the host firmware, OPAL and to a lesser
extent, Linux. This is among others how the PCI Host bridges get
configured at boot or how the LPC bus is accessed.
To represent the ADU of a real system, we introduce a specific
AddressSpace to dispatch XSCOM accesses to the targeted chiplets. The
translation of an XSCOM address into a PCB register address is
slightly different between the P9 and the P8. This is handled before
the dispatch using a 8byte alignment for all.
To customize the device tree, a QOM InterfaceClass, PnvXScomInterface,
is provided with a populate() handler. The chip populates the device
tree by simply looping on its children. Therefore, each model needing
custom nodes should not forget to declare itself as a child at
instantiation time.
Based on previous work done by :
Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
[dwg: Added cpu parameter to xscom_complete()]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2016-10-22 12:46:40 +03:00
|
|
|
|
2019-12-11 11:29:11 +03:00
|
|
|
#define PNV_OCC_COMMON_AREA_SIZE 0x0000000000800000ull
|
|
|
|
#define PNV_OCC_COMMON_AREA_BASE 0x7fff800000ull
|
2019-12-11 11:29:12 +03:00
|
|
|
#define PNV_OCC_SENSOR_BASE(chip) (PNV_OCC_COMMON_AREA_BASE + \
|
|
|
|
PNV_OCC_SENSOR_DATA_BLOCK_BASE(PNV_CHIP_INDEX(chip)))
|
2019-09-12 12:30:52 +03:00
|
|
|
|
2019-12-11 11:29:11 +03:00
|
|
|
#define PNV_HOMER_SIZE 0x0000000000400000ull
|
2019-09-12 12:30:52 +03:00
|
|
|
#define PNV_HOMER_BASE(chip) \
|
|
|
|
(0x7ffd800000ull + ((uint64_t)PNV_CHIP_INDEX(chip)) * PNV_HOMER_SIZE)
|
|
|
|
|
|
|
|
|
2017-04-03 10:46:05 +03:00
|
|
|
/*
|
|
|
|
* XSCOM 0x20109CA defines the ICP BAR:
|
|
|
|
*
|
|
|
|
* 0:29 : bits 14 to 43 of address to define 1 MB region.
|
|
|
|
* 30 : 1 to enable ICP to receive loads/stores against its BAR region
|
|
|
|
* 31:63 : Constant 0
|
|
|
|
*
|
|
|
|
* Usually defined as :
|
|
|
|
*
|
|
|
|
* 0xffffe00200000000 -> 0x0003ffff80000000
|
|
|
|
* 0xffffe00600000000 -> 0x0003ffff80100000
|
|
|
|
* 0xffffe02200000000 -> 0x0003ffff80800000
|
|
|
|
* 0xffffe02600000000 -> 0x0003ffff80900000
|
|
|
|
*/
|
|
|
|
#define PNV_ICP_SIZE 0x0000000000100000ull
|
|
|
|
#define PNV_ICP_BASE(chip) \
|
|
|
|
(0x0003ffff80000000ull + (uint64_t) PNV_CHIP_INDEX(chip) * PNV_ICP_SIZE)
|
|
|
|
|
2017-04-05 15:41:26 +03:00
|
|
|
|
|
|
|
#define PNV_PSIHB_SIZE 0x0000000000100000ull
|
|
|
|
#define PNV_PSIHB_BASE(chip) \
|
|
|
|
(0x0003fffe80000000ull + (uint64_t)PNV_CHIP_INDEX(chip) * PNV_PSIHB_SIZE)
|
|
|
|
|
|
|
|
#define PNV_PSIHB_FSP_SIZE 0x0000000100000000ull
|
|
|
|
#define PNV_PSIHB_FSP_BASE(chip) \
|
|
|
|
(0x0003ffe000000000ull + (uint64_t)PNV_CHIP_INDEX(chip) * \
|
|
|
|
PNV_PSIHB_FSP_SIZE)
|
|
|
|
|
2019-03-06 11:50:11 +03:00
|
|
|
/*
|
|
|
|
* POWER9 MMIO base addresses
|
|
|
|
*/
|
|
|
|
#define PNV9_CHIP_BASE(chip, base) \
|
|
|
|
((base) + ((uint64_t) (chip)->chip_id << 42))
|
|
|
|
|
|
|
|
#define PNV9_XIVE_VC_SIZE 0x0000008000000000ull
|
|
|
|
#define PNV9_XIVE_VC_BASE(chip) PNV9_CHIP_BASE(chip, 0x0006010000000000ull)
|
|
|
|
|
|
|
|
#define PNV9_XIVE_PC_SIZE 0x0000001000000000ull
|
|
|
|
#define PNV9_XIVE_PC_BASE(chip) PNV9_CHIP_BASE(chip, 0x0006018000000000ull)
|
|
|
|
|
2019-03-08 01:35:39 +03:00
|
|
|
#define PNV9_LPCM_SIZE 0x0000000100000000ull
|
|
|
|
#define PNV9_LPCM_BASE(chip) PNV9_CHIP_BASE(chip, 0x0006030000000000ull)
|
|
|
|
|
2019-03-08 01:35:35 +03:00
|
|
|
#define PNV9_PSIHB_SIZE 0x0000000000100000ull
|
|
|
|
#define PNV9_PSIHB_BASE(chip) PNV9_CHIP_BASE(chip, 0x0006030203000000ull)
|
|
|
|
|
2019-03-06 11:50:11 +03:00
|
|
|
#define PNV9_XIVE_IC_SIZE 0x0000000000080000ull
|
|
|
|
#define PNV9_XIVE_IC_BASE(chip) PNV9_CHIP_BASE(chip, 0x0006030203100000ull)
|
|
|
|
|
|
|
|
#define PNV9_XIVE_TM_SIZE 0x0000000000040000ull
|
|
|
|
#define PNV9_XIVE_TM_BASE(chip) PNV9_CHIP_BASE(chip, 0x0006030203180000ull)
|
|
|
|
|
2019-03-08 01:35:35 +03:00
|
|
|
#define PNV9_PSIHB_ESB_SIZE 0x0000000000010000ull
|
|
|
|
#define PNV9_PSIHB_ESB_BASE(chip) PNV9_CHIP_BASE(chip, 0x00060302031c0000ull)
|
2019-03-06 11:50:11 +03:00
|
|
|
|
2019-06-12 20:43:44 +03:00
|
|
|
#define PNV9_XSCOM_SIZE 0x0000000400000000ull
|
|
|
|
#define PNV9_XSCOM_BASE(chip) PNV9_CHIP_BASE(chip, 0x00603fc00000000ull)
|
|
|
|
|
2019-12-11 11:29:11 +03:00
|
|
|
#define PNV9_OCC_COMMON_AREA_SIZE 0x0000000000800000ull
|
|
|
|
#define PNV9_OCC_COMMON_AREA_BASE 0x203fff800000ull
|
2019-12-11 11:29:12 +03:00
|
|
|
#define PNV9_OCC_SENSOR_BASE(chip) (PNV9_OCC_COMMON_AREA_BASE + \
|
|
|
|
PNV_OCC_SENSOR_DATA_BLOCK_BASE(PNV_CHIP_INDEX(chip)))
|
2019-09-12 12:30:52 +03:00
|
|
|
|
2019-12-11 11:29:11 +03:00
|
|
|
#define PNV9_HOMER_SIZE 0x0000000000400000ull
|
2019-09-12 12:30:52 +03:00
|
|
|
#define PNV9_HOMER_BASE(chip) \
|
|
|
|
(0x203ffd800000ull + ((uint64_t)PNV_CHIP_INDEX(chip)) * PNV9_HOMER_SIZE)
|
2019-12-05 21:44:51 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* POWER10 MMIO base addresses - 16TB stride per chip
|
|
|
|
*/
|
|
|
|
#define PNV10_CHIP_BASE(chip, base) \
|
|
|
|
((base) + ((uint64_t) (chip)->chip_id << 44))
|
|
|
|
|
|
|
|
#define PNV10_XSCOM_SIZE 0x0000000400000000ull
|
|
|
|
#define PNV10_XSCOM_BASE(chip) PNV10_CHIP_BASE(chip, 0x00603fc00000000ull)
|
|
|
|
|
2019-12-05 21:44:54 +03:00
|
|
|
#define PNV10_LPCM_SIZE 0x0000000100000000ull
|
|
|
|
#define PNV10_LPCM_BASE(chip) PNV10_CHIP_BASE(chip, 0x0006030000000000ull)
|
|
|
|
|
2019-12-05 21:44:53 +03:00
|
|
|
#define PNV10_PSIHB_ESB_SIZE 0x0000000000100000ull
|
|
|
|
#define PNV10_PSIHB_ESB_BASE(chip) PNV10_CHIP_BASE(chip, 0x0006030202000000ull)
|
|
|
|
|
|
|
|
#define PNV10_PSIHB_SIZE 0x0000000000100000ull
|
|
|
|
#define PNV10_PSIHB_BASE(chip) PNV10_CHIP_BASE(chip, 0x0006030203000000ull)
|
|
|
|
|
2019-03-15 17:51:21 +03:00
|
|
|
#endif /* PPC_PNV_H */
|