]> git.proxmox.com Git - mirror_qemu.git/blame - hw/s390x/ipl.h
Merge remote-tracking branch 'remotes/thibault/tags/samuel-thibault' into staging
[mirror_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 <bjfanzh@cn.ibm.com>
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
04fccf10 15#include "hw/qdev.h"
db3b2566
DH
16#include "cpu.h"
17
04ca4b92 18struct IplBlockCcw {
f38b5b7f
FA
19 uint64_t netboot_start_addr;
20 uint8_t reserved0[77];
3041e3be 21 uint8_t ssid;
04ca4b92
AY
22 uint16_t devno;
23 uint8_t vm_flags;
24 uint8_t reserved3[3];
25 uint32_t vm_parm_len;
26 uint8_t nss_name[8];
27 uint8_t vm_parm[64];
28 uint8_t reserved4[8];
29} QEMU_PACKED;
30typedef struct IplBlockCcw IplBlockCcw;
31
32struct IplBlockFcp {
33 uint8_t reserved1[305 - 1];
34 uint8_t opt;
35 uint8_t reserved2[3];
36 uint16_t reserved3;
37 uint16_t devno;
38 uint8_t reserved4[4];
39 uint64_t wwpn;
40 uint64_t lun;
41 uint32_t bootprog;
42 uint8_t reserved5[12];
43 uint64_t br_lba;
44 uint32_t scp_data_len;
45 uint8_t reserved6[260];
46 uint8_t scp_data[];
47} QEMU_PACKED;
48typedef struct IplBlockFcp IplBlockFcp;
49
e468b673
AY
50struct IplBlockQemuScsi {
51 uint32_t lun;
52 uint16_t target;
53 uint16_t channel;
54 uint8_t reserved0[77];
55 uint8_t ssid;
56 uint16_t devno;
57} QEMU_PACKED;
58typedef struct IplBlockQemuScsi IplBlockQemuScsi;
59
04ca4b92
AY
60union IplParameterBlock {
61 struct {
62 uint32_t len;
63 uint8_t reserved0[3];
64 uint8_t version;
65 uint32_t blk0_len;
66 uint8_t pbt;
67 uint8_t flags;
68 uint16_t reserved01;
69 uint8_t loadparm[8];
70 union {
71 IplBlockCcw ccw;
72 IplBlockFcp fcp;
e468b673 73 IplBlockQemuScsi scsi;
04ca4b92
AY
74 };
75 } QEMU_PACKED;
76 struct {
77 uint8_t reserved1[110];
78 uint16_t devno;
79 uint8_t reserved2[88];
80 uint8_t reserved_ext[4096 - 200];
81 } QEMU_PACKED;
82} QEMU_PACKED;
83typedef union IplParameterBlock IplParameterBlock;
df75a4e2 84
feacc6c2 85void s390_ipl_update_diag308(IplParameterBlock *iplb);
db3b2566 86void s390_ipl_prepare_cpu(S390CPU *cpu);
df75a4e2 87IplParameterBlock *s390_ipl_get_iplb(void);
e91e972c 88void s390_reipl_request(void);
df75a4e2 89
04fccf10
DH
90#define TYPE_S390_IPL "s390-ipl"
91#define S390_IPL(obj) OBJECT_CHECK(S390IPLState, (obj), TYPE_S390_IPL)
92
93struct S390IPLState {
94 /*< private >*/
95 DeviceState parent_obj;
96 uint64_t start_addr;
bb099546 97 uint64_t compat_start_addr;
04fccf10 98 uint64_t bios_start_addr;
bb099546 99 uint64_t compat_bios_start_addr;
04fccf10
DH
100 bool enforce_bios;
101 IplParameterBlock iplb;
102 bool iplb_valid;
103 bool reipl_requested;
f38b5b7f 104 bool netboot;
04fccf10
DH
105
106 /*< public >*/
107 char *kernel;
108 char *initrd;
109 char *cmdline;
110 char *firmware;
5f31ade0 111 char *netboot_fw;
04fccf10
DH
112 uint8_t cssid;
113 uint8_t ssid;
114 uint16_t devno;
04ca4b92 115 bool iplbext_migration;
04fccf10
DH
116};
117typedef struct S390IPLState S390IPLState;
118
9946a911
AY
119#define S390_IPL_TYPE_FCP 0x00
120#define S390_IPL_TYPE_CCW 0x02
e468b673 121#define S390_IPL_TYPE_QEMU_SCSI 0xff
9946a911 122
6aed9589 123#define S390_IPLB_HEADER_LEN 8
04ca4b92 124#define S390_IPLB_MIN_CCW_LEN 200
9946a911 125#define S390_IPLB_MIN_FCP_LEN 384
e468b673 126#define S390_IPLB_MIN_QEMU_SCSI_LEN 200
9946a911
AY
127
128static inline bool iplb_valid_len(IplParameterBlock *iplb)
129{
130 return be32_to_cpu(iplb->len) <= sizeof(IplParameterBlock);
131}
132
133static inline bool iplb_valid_ccw(IplParameterBlock *iplb)
134{
135 return be32_to_cpu(iplb->len) >= S390_IPLB_MIN_CCW_LEN &&
136 iplb->pbt == S390_IPL_TYPE_CCW;
137}
138
139static inline bool iplb_valid_fcp(IplParameterBlock *iplb)
140{
141 return be32_to_cpu(iplb->len) >= S390_IPLB_MIN_FCP_LEN &&
142 iplb->pbt == S390_IPL_TYPE_FCP;
143}
04ca4b92 144
df75a4e2 145#endif