2016-10-22 11:46:39 +02: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 16:53:46 +02:00
|
|
|
* as published by the Free Software Foundation; either version 2.1 of
|
2016-10-22 11:46:39 +02: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 15:51:21 +01:00
|
|
|
|
|
|
|
#ifndef PPC_PNV_CORE_H
|
|
|
|
#define PPC_PNV_CORE_H
|
2016-10-22 11:46:39 +02:00
|
|
|
|
|
|
|
#include "hw/cpu/core.h"
|
2019-08-12 07:23:31 +02:00
|
|
|
#include "target/ppc/cpu.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2016-10-22 11:46:39 +02:00
|
|
|
|
|
|
|
#define TYPE_PNV_CORE "powernv-cpu-core"
|
2020-08-31 23:07:37 +02: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 20:25:17 +02:00
|
|
|
PNV_CORE)
|
2016-10-22 11:46:39 +02:00
|
|
|
|
2019-10-22 18:38:09 +02:00
|
|
|
typedef struct PnvChip PnvChip;
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct PnvCore {
|
2016-10-22 11:46:39 +02:00
|
|
|
/*< private >*/
|
|
|
|
CPUCore parent_obj;
|
|
|
|
|
|
|
|
/*< public >*/
|
2018-06-13 03:57:37 +02:00
|
|
|
PowerPCCPU **threads;
|
2016-10-22 11:46:39 +02:00
|
|
|
uint32_t pir;
|
2020-01-27 15:41:54 +01:00
|
|
|
uint64_t hrmor;
|
2019-10-22 18:38:09 +02:00
|
|
|
PnvChip *chip;
|
2016-10-22 11:46:41 +02:00
|
|
|
|
|
|
|
MemoryRegion xscom_regs;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2016-10-22 11:46:39 +02:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct PnvCoreClass {
|
2016-10-22 11:46:39 +02:00
|
|
|
DeviceClass parent_class;
|
2019-03-07 23:35:43 +01:00
|
|
|
|
|
|
|
const MemoryRegionOps *xscom_ops;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2016-10-22 11:46:39 +02:00
|
|
|
|
2017-10-09 21:51:07 +02: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 11:46:39 +02:00
|
|
|
|
2019-01-17 08:53:25 +01:00
|
|
|
typedef struct PnvCPUState {
|
2019-03-06 09:50:10 +01:00
|
|
|
Object *intc;
|
2019-01-17 08:53:25 +01:00
|
|
|
} PnvCPUState;
|
|
|
|
|
|
|
|
static inline PnvCPUState *pnv_cpu_state(PowerPCCPU *cpu)
|
|
|
|
{
|
|
|
|
return (PnvCPUState *)cpu->machine_data;
|
|
|
|
}
|
|
|
|
|
2019-03-07 23:35:44 +01:00
|
|
|
#define TYPE_PNV_QUAD "powernv-cpu-quad"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(PnvQuad, PNV_QUAD)
|
2019-03-07 23:35:44 +01:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct PnvQuad {
|
2019-03-07 23:35:44 +01:00
|
|
|
DeviceState parent_obj;
|
|
|
|
|
|
|
|
uint32_t id;
|
|
|
|
MemoryRegion xscom_regs;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2019-03-15 15:51:21 +01:00
|
|
|
#endif /* PPC_PNV_CORE_H */
|