]> Git Repo - qemu.git/blame - hw/s390x/ipl.h
s390x: machine reset function with new ipl cpu handling
[qemu.git] / hw / s390x / ipl.h
CommitLineData
df75a4e2
FZ
1/*
2 * s390 IPL device
3 *
4 * Copyright 2015 IBM Corp.
5 * Author(s): Zhang Fan <[email protected]>
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or (at
8 * your option) any later version. See the COPYING file in the top-level
9 * directory.
10 */
11
12#ifndef HW_S390_IPL_H
13#define HW_S390_IPL_H
14
db3b2566
DH
15#include "cpu.h"
16
df75a4e2
FZ
17typedef struct IplParameterBlock {
18 uint8_t reserved1[110];
19 uint16_t devno;
20 uint8_t reserved2[88];
21} IplParameterBlock;
22
feacc6c2 23void s390_ipl_update_diag308(IplParameterBlock *iplb);
db3b2566 24void s390_ipl_prepare_cpu(S390CPU *cpu);
df75a4e2 25IplParameterBlock *s390_ipl_get_iplb(void);
e91e972c 26void s390_reipl_request(void);
df75a4e2
FZ
27
28#endif
This page took 0.06349 seconds and 4 git commands to generate.