2012-04-02 11:39:23 +02:00
|
|
|
/*
|
|
|
|
* QEMU S/390 CPU
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 SUSE LINUX Products GmbH
|
|
|
|
*
|
|
|
|
* 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.1 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/lgpl-2.1.html>
|
|
|
|
*/
|
|
|
|
#ifndef QEMU_S390_CPU_QOM_H
|
|
|
|
#define QEMU_S390_CPU_QOM_H
|
|
|
|
|
2019-07-09 17:20:52 +02:00
|
|
|
#include "hw/core/cpu.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2012-04-02 11:39:23 +02:00
|
|
|
|
2017-10-20 13:58:03 +02:00
|
|
|
#define TYPE_S390_CPU "s390x-cpu"
|
2012-04-02 11:39:23 +02:00
|
|
|
|
2020-08-31 23:07:37 +02:00
|
|
|
OBJECT_DECLARE_TYPE(S390CPU, S390CPUClass,
|
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
|
|
|
S390_CPU)
|
2012-04-02 11:39:23 +02:00
|
|
|
|
2017-09-13 15:24:02 +02:00
|
|
|
typedef struct S390CPUModel S390CPUModel;
|
|
|
|
typedef struct S390CPUDef S390CPUDef;
|
|
|
|
|
2019-11-27 18:50:42 +01:00
|
|
|
typedef enum cpu_reset_type {
|
|
|
|
S390_CPU_RESET_NORMAL,
|
2019-11-28 09:37:23 +01:00
|
|
|
S390_CPU_RESET_INITIAL,
|
2019-11-27 18:50:44 +01:00
|
|
|
S390_CPU_RESET_CLEAR,
|
2019-11-27 18:50:42 +01:00
|
|
|
} cpu_reset_type;
|
|
|
|
|
2012-04-02 11:39:23 +02:00
|
|
|
/**
|
|
|
|
* S390CPUClass:
|
2013-01-16 04:00:41 +01:00
|
|
|
* @parent_realize: The parent class' realize handler.
|
2012-04-02 11:39:23 +02:00
|
|
|
* @parent_reset: The parent class' reset handler.
|
2013-07-25 16:45:51 +02:00
|
|
|
* @load_normal: Performs a load normal.
|
s390/cpu: split CPU reset into architectured functions
s390 provides several CPU resets:
- CPU reset, clears interrupts, stop processing, clears TLB, but does
not touch registers
- initial CPU reset, like CPU reset, but also clears PSW, prefix, FPC,
timer and control registers. It does not touch gprs, fprs and acrs (!)
- Power on reset: the full monty
wire up CPUClass reset to the full monty, but provide the lesser resets
as part of S390CPUClass.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
2013-06-28 10:51:09 +02:00
|
|
|
* @cpu_reset: Performs a CPU reset.
|
|
|
|
* @initial_cpu_reset: Performs an initial CPU reset.
|
2012-04-02 11:39:23 +02:00
|
|
|
*
|
|
|
|
* An S/390 CPU model.
|
|
|
|
*/
|
2020-09-03 22:43:22 +02:00
|
|
|
struct S390CPUClass {
|
2012-04-02 11:39:23 +02:00
|
|
|
/*< private >*/
|
|
|
|
CPUClass parent_class;
|
|
|
|
/*< public >*/
|
2016-09-05 10:52:22 +02:00
|
|
|
const S390CPUDef *cpu_def;
|
2016-09-05 10:52:16 +02:00
|
|
|
bool kvm_required;
|
|
|
|
bool is_static;
|
|
|
|
bool is_migration_safe;
|
|
|
|
const char *desc;
|
2012-04-02 11:39:23 +02:00
|
|
|
|
2013-01-16 04:00:41 +01:00
|
|
|
DeviceRealize parent_realize;
|
cpu: Use DeviceClass reset instead of a special CPUClass reset
The CPUClass has a 'reset' method. This is a legacy from when
TYPE_CPU used not to inherit from TYPE_DEVICE. We don't need it any
more, as we can simply use the TYPE_DEVICE reset. The 'cpu_reset()'
function is kept as the API which most places use to reset a CPU; it
is now a wrapper which calls device_cold_reset() and then the
tracepoint function.
This change should not cause CPU objects to be reset more often
than they are at the moment, because:
* nobody is directly calling device_cold_reset() or
qdev_reset_all() on CPU objects
* no CPU object is on a qbus, so they will not be reset either
by somebody calling qbus_reset_all()/bus_cold_reset(), or
by the main "reset sysbus and everything in the qbus tree"
reset that most devices are reset by
Note that this does not change the need for each machine or whatever
to use qemu_register_reset() to arrange to call cpu_reset() -- that
is necessary because CPU objects are not on any qbus, so they don't
get reset when the qbus tree rooted at the sysbus bus is reset, and
this isn't being changed here.
All the changes to the files under target/ were made using the
included Coccinelle script, except:
(1) the deletion of the now-inaccurate and not terribly useful
"CPUClass::reset" comments was done with a perl one-liner afterwards:
perl -n -i -e '/ CPUClass::reset/ or print' target/*/*.c
(2) this bit of the s390 change was done by hand, because the
Coccinelle script is not sophisticated enough to handle the
parent_reset call being inside another function:
| @@ -96,8 +96,9 @@ static void s390_cpu_reset(CPUState *s, cpu_reset_type type)
| S390CPU *cpu = S390_CPU(s);
| S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
| CPUS390XState *env = &cpu->env;
|+ DeviceState *dev = DEVICE(s);
|
|- scc->parent_reset(s);
|+ scc->parent_reset(dev);
| cpu->env.sigp_order = 0;
| s390_cpu_set_state(S390_CPU_STATE_STOPPED, cpu);
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20200303100511.5498-1-peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
2020-03-03 11:05:11 +01:00
|
|
|
DeviceReset parent_reset;
|
2013-07-25 16:45:51 +02:00
|
|
|
void (*load_normal)(CPUState *cpu);
|
2019-11-27 18:50:42 +01:00
|
|
|
void (*reset)(CPUState *cpu, cpu_reset_type type);
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2012-04-02 11:39:23 +02:00
|
|
|
|
2017-09-13 15:24:02 +02:00
|
|
|
typedef struct CPUS390XState CPUS390XState;
|
2013-02-02 10:57:51 +01:00
|
|
|
|
2012-04-02 11:39:23 +02:00
|
|
|
#endif
|