1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
/*
* 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/>.
*/
#include "qemu/osdep.h"
#include "qapi/error.h"
#include "target/ppc/cpu.h"
#include "migration/vmstate.h"
#include "trace.h"
#include "hw/ppc/spapr.h"
#define FIELD_BE(reg, field, start, len) \
FIELD(reg, field, 64 - (start + len), len)
/*
* Bits 47: "leaveOtherWatchdogsRunningOnTimeout", specified on
* the "Start watchdog" operation,
* 0 - stop out-standing watchdogs on timeout,
* 1 - leave outstanding watchdogs running on timeout
*/
FIELD_BE(PSERIES_WDTF, LEAVE_OTHER, 47, 1)
/* Bits 48-55: "operation" */
FIELD_BE(PSERIES_WDTF, OP, 48, 8)
#define PSERIES_WDTF_OP_START 0x1
#define PSERIES_WDTF_OP_STOP 0x2
#define PSERIES_WDTF_OP_QUERY 0x3
#define PSERIES_WDTF_OP_QUERY_LPM 0x4
/* Bits 56-63: "timeoutAction" */
FIELD_BE(PSERIES_WDTF, ACTION, 56, 8)
#define PSERIES_WDTF_ACTION_HARD_POWER_OFF 0x1
#define PSERIES_WDTF_ACTION_HARD_RESTART 0x2
#define PSERIES_WDTF_ACTION_DUMP_RESTART 0x3
FIELD_BE(PSERIES_WDTF, RESERVED, 0, 47)
/* Special watchdogNumber for the "stop all watchdogs" operation */
#define PSERIES_WDT_STOP_ALL ((uint64_t)~0)
/*
* For the "Query watchdog capabilities" operation, a uint64 structure
* defined as:
* Bits 0-15: The minimum supported timeout in milliseconds
* Bits 16-31: The number of watchdogs supported
* Bits 32-63: Reserved
*/
FIELD_BE(PSERIES_WDTQ, MIN_TIMEOUT, 0, 16)
FIELD_BE(PSERIES_WDTQ, NUM, 16, 16)
/*
* For the "Query watchdog LPM requirement" operation:
* 1 = The given "watchdogNumber" must be stopped prior to suspending
* 2 = The given "watchdogNumber" does not have to be stopped prior to
* suspending
*/
#define PSERIES_WDTQL_STOPPED 1
#define PSERIES_WDTQL_QUERY_NOT_STOPPED 2
#define WDT_MIN_TIMEOUT 1 /* 1ms */
static target_ulong watchdog_stop(unsigned watchdogNumber, SpaprWatchdog *w)
{
target_ulong ret = H_NOOP;
if (timer_pending(&w->timer)) {
timer_del(&w->timer);
ret = H_SUCCESS;
}
trace_spapr_watchdog_stop(watchdogNumber, ret);
return ret;
}
static target_ulong watchdog_stop_all(SpaprMachineState *spapr)
{
target_ulong ret = H_NOOP;
int i;
for (i = 1; i <= ARRAY_SIZE(spapr->wds); ++i) {
target_ulong r = watchdog_stop(i, &spapr->wds[i - 1]);
if (r != H_NOOP && r != H_SUCCESS) {
ret = r;
}
}
return ret;
}
static void watchdog_expired(void *pw)
{
SpaprWatchdog *w = pw;
CPUState *cs;
SpaprMachineState *spapr = SPAPR_MACHINE(qdev_get_machine());
unsigned num = w - spapr->wds;
g_assert(num < ARRAY_SIZE(spapr->wds));
trace_spapr_watchdog_expired(num, w->action);
switch (w->action) {
case PSERIES_WDTF_ACTION_HARD_POWER_OFF:
qemu_system_vmstop_request(RUN_STATE_SHUTDOWN);
break;
case PSERIES_WDTF_ACTION_HARD_RESTART:
qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
break;
case PSERIES_WDTF_ACTION_DUMP_RESTART:
CPU_FOREACH(cs) {
async_run_on_cpu(cs, spapr_do_system_reset_on_cpu, RUN_ON_CPU_NULL);
}
break;
}
if (!w->leave_others) {
watchdog_stop_all(spapr);
}
}
static target_ulong h_watchdog(PowerPCCPU *cpu,
SpaprMachineState *spapr,
target_ulong opcode, target_ulong *args)
{
target_ulong ret = H_SUCCESS;
target_ulong flags = args[0];
target_ulong watchdogNumber = args[1]; /* 1-Based per PAPR */
target_ulong timeoutInMs = args[2];
unsigned operation = FIELD_EX64(flags, PSERIES_WDTF, OP);
unsigned timeoutAction = FIELD_EX64(flags, PSERIES_WDTF, ACTION);
SpaprWatchdog *w;
if (FIELD_EX64(flags, PSERIES_WDTF, RESERVED)) {
return H_PARAMETER;
}
switch (operation) {
case PSERIES_WDTF_OP_START:
if (watchdogNumber > ARRAY_SIZE(spapr->wds)) {
return H_P2;
}
if (timeoutInMs <= WDT_MIN_TIMEOUT) {
return H_P3;
}
w = &spapr->wds[watchdogNumber - 1];
switch (timeoutAction) {
case PSERIES_WDTF_ACTION_HARD_POWER_OFF:
case PSERIES_WDTF_ACTION_HARD_RESTART:
case PSERIES_WDTF_ACTION_DUMP_RESTART:
w->action = timeoutAction;
break;
default:
return H_PARAMETER;
}
w->leave_others = FIELD_EX64(flags, PSERIES_WDTF, LEAVE_OTHER);
timer_mod(&w->timer,
qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + timeoutInMs);
trace_spapr_watchdog_start(flags, watchdogNumber, timeoutInMs);
break;
case PSERIES_WDTF_OP_STOP:
if (watchdogNumber == PSERIES_WDT_STOP_ALL) {
ret = watchdog_stop_all(spapr);
} else if (watchdogNumber <= ARRAY_SIZE(spapr->wds)) {
ret = watchdog_stop(watchdogNumber,
&spapr->wds[watchdogNumber - 1]);
} else {
return H_P2;
}
break;
case PSERIES_WDTF_OP_QUERY:
args[0] = FIELD_DP64(0, PSERIES_WDTQ, MIN_TIMEOUT, WDT_MIN_TIMEOUT);
args[0] = FIELD_DP64(args[0], PSERIES_WDTQ, NUM,
ARRAY_SIZE(spapr->wds));
trace_spapr_watchdog_query(args[0]);
break;
case PSERIES_WDTF_OP_QUERY_LPM:
if (watchdogNumber > ARRAY_SIZE(spapr->wds)) {
return H_P2;
}
args[0] = PSERIES_WDTQL_QUERY_NOT_STOPPED;
trace_spapr_watchdog_query_lpm(args[0]);
break;
default:
return H_PARAMETER;
}
return ret;
}
void spapr_watchdog_init(SpaprMachineState *spapr)
{
int i;
for (i = 0; i < ARRAY_SIZE(spapr->wds); ++i) {
char name[16];
SpaprWatchdog *w = &spapr->wds[i];
snprintf(name, sizeof(name) - 1, "wdt%d", i + 1);
object_initialize_child_with_props(OBJECT(spapr), name, w,
sizeof(SpaprWatchdog),
TYPE_SPAPR_WDT,
&error_fatal, NULL);
qdev_realize(DEVICE(w), NULL, &error_fatal);
}
}
static bool watchdog_needed(void *opaque)
{
SpaprWatchdog *w = opaque;
return timer_pending(&w->timer);
}
static const VMStateDescription vmstate_wdt = {
.name = "spapr_watchdog",
.version_id = 1,
.minimum_version_id = 1,
.needed = watchdog_needed,
.fields = (const VMStateField[]) {
VMSTATE_TIMER(timer, SpaprWatchdog),
VMSTATE_UINT8(action, SpaprWatchdog),
VMSTATE_UINT8(leave_others, SpaprWatchdog),
VMSTATE_END_OF_LIST()
}
};
static void spapr_wdt_realize(DeviceState *dev, Error **errp)
{
SpaprWatchdog *w = SPAPR_WDT(dev);
Object *o = OBJECT(dev);
timer_init_ms(&w->timer, QEMU_CLOCK_VIRTUAL, watchdog_expired, w);
object_property_add_uint64_ptr(o, "expire",
(uint64_t *)&w->timer.expire_time,
OBJ_PROP_FLAG_READ);
object_property_add_uint8_ptr(o, "action", &w->action, OBJ_PROP_FLAG_READ);
object_property_add_uint8_ptr(o, "leaveOtherWatchdogsRunningOnTimeout",
&w->leave_others, OBJ_PROP_FLAG_READ);
}
static void spapr_wdt_class_init(ObjectClass *oc, void *data)
{
DeviceClass *dc = DEVICE_CLASS(oc);
dc->realize = spapr_wdt_realize;
dc->vmsd = &vmstate_wdt;
dc->user_creatable = false;
}
static const TypeInfo spapr_wdt_info = {
.name = TYPE_SPAPR_WDT,
.parent = TYPE_DEVICE,
.instance_size = sizeof(SpaprWatchdog),
.class_init = spapr_wdt_class_init,
};
static void spapr_watchdog_register_types(void)
{
spapr_register_hypercall(H_WATCHDOG, h_watchdog);
type_register_static(&spapr_wdt_info);
}
type_init(spapr_watchdog_register_types)
|