2016-10-22 12:46:39 +03: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
|
|
|
|
* 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_CORE_H
|
|
|
|
#define PPC_PNV_CORE_H
|
2016-10-22 12:46:39 +03:00
|
|
|
|
|
|
|
#include "hw/cpu/core.h"
|
2019-08-12 08:23:31 +03:00
|
|
|
#include "target/ppc/cpu.h"
|
2016-10-22 12:46:39 +03:00
|
|
|
|
|
|
|
#define TYPE_PNV_CORE "powernv-cpu-core"
|
|
|
|
#define PNV_CORE(obj) \
|
|
|
|
OBJECT_CHECK(PnvCore, (obj), TYPE_PNV_CORE)
|
|
|
|
#define PNV_CORE_CLASS(klass) \
|
|
|
|
OBJECT_CLASS_CHECK(PnvCoreClass, (klass), TYPE_PNV_CORE)
|
|
|
|
#define PNV_CORE_GET_CLASS(obj) \
|
|
|
|
OBJECT_GET_CLASS(PnvCoreClass, (obj), TYPE_PNV_CORE)
|
|
|
|
|
2019-10-22 19:38:09 +03:00
|
|
|
typedef struct PnvChip PnvChip;
|
|
|
|
|
2016-10-22 12:46:39 +03:00
|
|
|
typedef struct PnvCore {
|
|
|
|
/*< private >*/
|
|
|
|
CPUCore parent_obj;
|
|
|
|
|
|
|
|
/*< public >*/
|
2018-06-13 04:57:37 +03:00
|
|
|
PowerPCCPU **threads;
|
2016-10-22 12:46:39 +03:00
|
|
|
uint32_t pir;
|
2020-01-27 17:41:54 +03:00
|
|
|
uint64_t hrmor;
|
2019-10-22 19:38:09 +03:00
|
|
|
PnvChip *chip;
|
2016-10-22 12:46:41 +03:00
|
|
|
|
|
|
|
MemoryRegion xscom_regs;
|
2016-10-22 12:46:39 +03:00
|
|
|
} PnvCore;
|
|
|
|
|
|
|
|
typedef struct PnvCoreClass {
|
|
|
|
DeviceClass parent_class;
|
2019-03-08 01:35:43 +03:00
|
|
|
|
|
|
|
const MemoryRegionOps *xscom_ops;
|
2016-10-22 12:46:39 +03:00
|
|
|
} PnvCoreClass;
|
|
|
|
|
2017-10-09 22:51:07 +03: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 12:46:39 +03:00
|
|
|
|
2019-01-17 10:53:25 +03:00
|
|
|
typedef struct PnvCPUState {
|
2019-03-06 11:50:10 +03:00
|
|
|
Object *intc;
|
2019-01-17 10:53:25 +03:00
|
|
|
} PnvCPUState;
|
|
|
|
|
|
|
|
static inline PnvCPUState *pnv_cpu_state(PowerPCCPU *cpu)
|
|
|
|
{
|
|
|
|
return (PnvCPUState *)cpu->machine_data;
|
|
|
|
}
|
|
|
|
|
2019-03-08 01:35:44 +03:00
|
|
|
#define TYPE_PNV_QUAD "powernv-cpu-quad"
|
|
|
|
#define PNV_QUAD(obj) \
|
|
|
|
OBJECT_CHECK(PnvQuad, (obj), TYPE_PNV_QUAD)
|
|
|
|
|
|
|
|
typedef struct PnvQuad {
|
|
|
|
DeviceState parent_obj;
|
|
|
|
|
|
|
|
uint32_t id;
|
|
|
|
MemoryRegion xscom_regs;
|
|
|
|
} PnvQuad;
|
2019-03-15 17:51:21 +03:00
|
|
|
#endif /* PPC_PNV_CORE_H */
|