2016-10-22 09:46:39 +00:00
|
|
|
/*
|
|
|
|
* QEMU PowerPC PowerNV CPU Core model
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016, 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
|
2020-10-16 14:53:46 +00:00
|
|
|
* as published by the Free Software Foundation; either version 2.1 of
|
2016-10-22 09:46:39 +00:00
|
|
|
* 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 14:51:21 +00:00
|
|
|
|
|
|
|
#ifndef PPC_PNV_CORE_H
|
|
|
|
#define PPC_PNV_CORE_H
|
2016-10-22 09:46:39 +00:00
|
|
|
|
|
|
|
#include "hw/cpu/core.h"
|
2019-08-12 05:23:31 +00:00
|
|
|
#include "target/ppc/cpu.h"
|
2022-12-22 10:46:28 +00:00
|
|
|
#include "hw/ppc/pnv.h"
|
2020-09-03 20:43:22 +00:00
|
|
|
#include "qom/object.h"
|
2016-10-22 09:46:39 +00:00
|
|
|
|
2024-05-24 11:58:18 +00:00
|
|
|
/* Per-core ChipTOD / TimeBase state */
|
|
|
|
typedef struct PnvCoreTODState {
|
2024-06-18 03:09:54 +00:00
|
|
|
/*
|
|
|
|
* POWER10 DD2.0 - big core TFMR drives the state machine on the even
|
|
|
|
* small core. Skiboot has a workaround that targets the even small core
|
|
|
|
* for CHIPTOD_TO_TB ops.
|
|
|
|
*/
|
|
|
|
bool big_core_quirk;
|
|
|
|
|
2024-05-24 11:58:18 +00:00
|
|
|
int tb_ready_for_tod; /* core TB ready to receive TOD from chiptod */
|
|
|
|
int tod_sent_to_tb; /* chiptod sent TOD to the core TB */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "Timers" for async TBST events are simulated by mfTFAC because TFAC
|
|
|
|
* is polled for such events. These are just used to ensure firmware
|
|
|
|
* performs the polling at least a few times.
|
|
|
|
*/
|
|
|
|
int tb_state_timer;
|
|
|
|
int tb_sync_pulse_timer;
|
|
|
|
} PnvCoreTODState;
|
|
|
|
|
2016-10-22 09:46:39 +00:00
|
|
|
#define TYPE_PNV_CORE "powernv-cpu-core"
|
2020-08-31 21:07:37 +00:00
|
|
|
OBJECT_DECLARE_TYPE(PnvCore, PnvCoreClass,
|
qom: Remove module_obj_name parameter from OBJECT_DECLARE* macros
One of the goals of having less boilerplate on QOM declarations
is to avoid human error. Requiring an extra argument that is
never used is an opportunity for mistakes.
Remove the unused argument from OBJECT_DECLARE_TYPE and
OBJECT_DECLARE_SIMPLE_TYPE.
Coccinelle patch used to convert all users of the macros:
@@
declarer name OBJECT_DECLARE_TYPE;
identifier InstanceType, ClassType, lowercase, UPPERCASE;
@@
OBJECT_DECLARE_TYPE(InstanceType, ClassType,
- lowercase,
UPPERCASE);
@@
declarer name OBJECT_DECLARE_SIMPLE_TYPE;
identifier InstanceType, lowercase, UPPERCASE;
@@
OBJECT_DECLARE_SIMPLE_TYPE(InstanceType,
- lowercase,
UPPERCASE);
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Acked-by: Igor Mammedov <imammedo@redhat.com>
Acked-by: Paul Durrant <paul@xen.org>
Acked-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20200916182519.415636-4-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
2020-09-16 18:25:17 +00:00
|
|
|
PNV_CORE)
|
2016-10-22 09:46:39 +00:00
|
|
|
|
2020-09-03 20:43:22 +00:00
|
|
|
struct PnvCore {
|
2016-10-22 09:46:39 +00:00
|
|
|
/*< private >*/
|
|
|
|
CPUCore parent_obj;
|
|
|
|
|
|
|
|
/*< public >*/
|
2018-06-13 01:57:37 +00:00
|
|
|
PowerPCCPU **threads;
|
2024-05-16 05:25:12 +00:00
|
|
|
bool big_core;
|
2024-05-24 05:02:46 +00:00
|
|
|
bool lpar_per_core;
|
2016-10-22 09:46:39 +00:00
|
|
|
uint32_t pir;
|
2024-02-27 20:36:23 +00:00
|
|
|
uint32_t hwid;
|
2020-01-27 14:41:54 +00:00
|
|
|
uint64_t hrmor;
|
2024-05-24 11:58:18 +00:00
|
|
|
|
2024-05-26 11:24:00 +00:00
|
|
|
target_ulong scratch[8]; /* SPRC/SPRD indirect SCRATCH registers */
|
2024-05-24 11:58:18 +00:00
|
|
|
PnvCoreTODState tod_state;
|
|
|
|
|
2019-10-22 16:38:09 +00:00
|
|
|
PnvChip *chip;
|
2016-10-22 09:46:41 +00:00
|
|
|
|
|
|
|
MemoryRegion xscom_regs;
|
2020-09-03 20:43:22 +00:00
|
|
|
};
|
2016-10-22 09:46:39 +00:00
|
|
|
|
2020-09-03 20:43:22 +00:00
|
|
|
struct PnvCoreClass {
|
2016-10-22 09:46:39 +00:00
|
|
|
DeviceClass parent_class;
|
2019-03-07 22:35:43 +00:00
|
|
|
|
|
|
|
const MemoryRegionOps *xscom_ops;
|
2023-07-06 05:39:22 +00:00
|
|
|
uint64_t xscom_size;
|
2020-09-03 20:43:22 +00:00
|
|
|
};
|
2016-10-22 09:46:39 +00:00
|
|
|
|
2017-10-09 19:51:07 +00:00
|
|
|
#define PNV_CORE_TYPE_SUFFIX "-" TYPE_PNV_CORE
|
|
|
|
#define PNV_CORE_TYPE_NAME(cpu_model) cpu_model PNV_CORE_TYPE_SUFFIX
|
2016-10-22 09:46:39 +00:00
|
|
|
|
2019-01-17 07:53:25 +00:00
|
|
|
typedef struct PnvCPUState {
|
2024-05-26 05:04:05 +00:00
|
|
|
PnvCore *pnv_core;
|
2019-03-06 08:50:10 +00:00
|
|
|
Object *intc;
|
2019-01-17 07:53:25 +00:00
|
|
|
} PnvCPUState;
|
|
|
|
|
|
|
|
static inline PnvCPUState *pnv_cpu_state(PowerPCCPU *cpu)
|
|
|
|
{
|
|
|
|
return (PnvCPUState *)cpu->machine_data;
|
|
|
|
}
|
|
|
|
|
2023-07-04 05:42:01 +00:00
|
|
|
struct PnvQuadClass {
|
|
|
|
DeviceClass parent_class;
|
|
|
|
|
|
|
|
const MemoryRegionOps *xscom_ops;
|
|
|
|
uint64_t xscom_size;
|
2023-07-07 07:12:13 +00:00
|
|
|
|
|
|
|
const MemoryRegionOps *xscom_qme_ops;
|
|
|
|
uint64_t xscom_qme_size;
|
2023-07-04 05:42:01 +00:00
|
|
|
};
|
|
|
|
|
2019-03-07 22:35:44 +00:00
|
|
|
#define TYPE_PNV_QUAD "powernv-cpu-quad"
|
2023-07-04 05:42:01 +00:00
|
|
|
|
|
|
|
#define PNV_QUAD_TYPE_SUFFIX "-" TYPE_PNV_QUAD
|
|
|
|
#define PNV_QUAD_TYPE_NAME(cpu_model) cpu_model PNV_QUAD_TYPE_SUFFIX
|
|
|
|
|
|
|
|
OBJECT_DECLARE_TYPE(PnvQuad, PnvQuadClass, PNV_QUAD)
|
2019-03-07 22:35:44 +00:00
|
|
|
|
2020-09-03 20:43:22 +00:00
|
|
|
struct PnvQuad {
|
2019-03-07 22:35:44 +00:00
|
|
|
DeviceState parent_obj;
|
|
|
|
|
2024-05-16 13:44:12 +00:00
|
|
|
bool special_wakeup_done;
|
|
|
|
bool special_wakeup[4];
|
|
|
|
|
2021-09-01 09:41:53 +00:00
|
|
|
uint32_t quad_id;
|
2019-03-07 22:35:44 +00:00
|
|
|
MemoryRegion xscom_regs;
|
2023-07-07 07:12:13 +00:00
|
|
|
MemoryRegion xscom_qme_regs;
|
2020-09-03 20:43:22 +00:00
|
|
|
};
|
2019-03-15 14:51:21 +00:00
|
|
|
#endif /* PPC_PNV_CORE_H */
|