blob: 03e36fb6a5a0492abe1801bbf4d4e824b8a3752f [file] [log] [blame]
Benjamin Romer6f14cc12015-07-16 12:40:48 -04001/* Copyright (C) 2010 - 2015 UNISYS CORPORATION
Ken Cox12e364b2014-03-04 07:58:07 -06002 * All rights reserved.
3 *
Benjamin Romer6f14cc12015-07-16 12:40:48 -04004 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
Ken Cox12e364b2014-03-04 07:58:07 -06007 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for more
12 * details.
13 */
14
15#ifndef __CONTROLVMCHANNEL_H__
16#define __CONTROLVMCHANNEL_H__
17
Benjamin Romer90addb02014-05-06 09:58:23 -040018#include <linux/uuid.h>
Ken Cox12e364b2014-03-04 07:58:07 -060019#include "channel.h"
Benjamin Romeraf96e9c2014-08-02 22:03:40 -040020
Ken Cox12e364b2014-03-04 07:58:07 -060021/* {2B3C2D10-7EF5-4ad8-B966-3448B7386B3D} */
Benjamin Romer5fbaa4b2014-10-23 14:30:14 -040022#define SPAR_CONTROLVM_CHANNEL_PROTOCOL_UUID \
Benjamin Romer90addb02014-05-06 09:58:23 -040023 UUID_LE(0x2b3c2d10, 0x7ef5, 0x4ad8, \
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -040024 0xb9, 0x66, 0x34, 0x48, 0xb7, 0x38, 0x6b, 0x3d)
Ken Cox12e364b2014-03-04 07:58:07 -060025
Ken Cox12e364b2014-03-04 07:58:07 -060026#define ULTRA_CONTROLVM_CHANNEL_PROTOCOL_SIGNATURE \
27 ULTRA_CHANNEL_PROTOCOL_SIGNATURE
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -040028#define CONTROLVM_MESSAGE_MAX 64
Ken Cox12e364b2014-03-04 07:58:07 -060029
30/* Must increment this whenever you insert or delete fields within
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -040031 * this channel struct. Also increment whenever you change the meaning
32 * of fields within this channel struct so as to break pre-existing
33 * software. Note that you can usually add fields to the END of the
34 * channel struct withOUT needing to increment this.
35 */
Ken Cox12e364b2014-03-04 07:58:07 -060036#define ULTRA_CONTROLVM_CHANNEL_PROTOCOL_VERSIONID 1
37
Benjamin Romer600832f2014-10-23 14:30:16 -040038#define SPAR_CONTROLVM_CHANNEL_OK_CLIENT(ch) \
39 spar_check_channel_client(ch, \
Jes Sorensendf942472015-05-05 18:37:10 -040040 SPAR_CONTROLVM_CHANNEL_PROTOCOL_UUID, \
Benjamin Romerd19642f2014-10-23 14:30:34 -040041 "controlvm", \
42 sizeof(struct spar_controlvm_channel_protocol), \
43 ULTRA_CONTROLVM_CHANNEL_PROTOCOL_VERSIONID, \
44 ULTRA_CONTROLVM_CHANNEL_PROTOCOL_SIGNATURE)
Ken Cox12e364b2014-03-04 07:58:07 -060045
Ken Cox12e364b2014-03-04 07:58:07 -060046#define MAX_SERIAL_NUM 32
47
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -040048/* Defines for various channel queues */
Ken Cox12e364b2014-03-04 07:58:07 -060049#define CONTROLVM_QUEUE_REQUEST 0
50#define CONTROLVM_QUEUE_RESPONSE 1
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -040051#define CONTROLVM_QUEUE_EVENT 2
Ken Cox12e364b2014-03-04 07:58:07 -060052#define CONTROLVM_QUEUE_ACK 3
53
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -040054/* Max num of messages stored during IOVM creation to be reused after crash */
Ken Cox12e364b2014-03-04 07:58:07 -060055#define CONTROLVM_CRASHMSG_MAX 2
56
David Kershner389f5592015-05-13 13:22:03 -040057struct spar_segment_state {
Erik Arfvidson1e3ab522016-02-08 10:41:41 -050058 /* Bit 0: May enter other states */
59 u16 enabled:1;
60 /* Bit 1: Assigned to active partition */
61 u16 active:1;
62 /* Bit 2: Configure message sent to service/server */
63 u16 alive:1;
64 /* Bit 3: similar to partition state ShuttingDown */
65 u16 revoked:1;
66 /* Bit 4: memory (device/port number) has been selected by Command */
67 u16 allocated:1;
68 /* Bit 5: has been introduced to the service/guest partition */
69 u16 known:1;
70 /* Bit 6: service/Guest partition has responded to introduction */
71 u16 ready:1;
72 /* Bit 7: resource is configured and operating */
73 u16 operating:1;
74/* Note: don't use high bit unless we need to switch to ushort
75 * which is non-compliant
76 */
David Kershner389f5592015-05-13 13:22:03 -040077};
78
79static const struct spar_segment_state segment_state_running = {
80 1, 1, 1, 0, 1, 1, 1, 1
81};
82
83static const struct spar_segment_state segment_state_paused = {
84 1, 1, 1, 0, 1, 1, 1, 0
85};
86
87static const struct spar_segment_state segment_state_standby = {
88 1, 1, 0, 0, 1, 1, 1, 0
89};
90
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -040091/* Ids for commands that may appear in either queue of a ControlVm channel.
Ken Cox12e364b2014-03-04 07:58:07 -060092 *
93 * Commands that are initiated by the command partition (CP), by an IO or
94 * console service partition (SP), or by a guest partition (GP)are:
95 * - issued on the RequestQueue queue (q #0) in the ControlVm channel
96 * - responded to on the ResponseQueue queue (q #1) in the ControlVm channel
97 *
98 * Events that are initiated by an IO or console service partition (SP) or
99 * by a guest partition (GP) are:
100 * - issued on the EventQueue queue (q #2) in the ControlVm channel
101 * - responded to on the EventAckQueue queue (q #3) in the ControlVm channel
102 */
Benjamin Romer53bebb12014-10-23 14:30:17 -0400103enum controlvm_id {
Ken Cox12e364b2014-03-04 07:58:07 -0600104 CONTROLVM_INVALID = 0,
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400105 /* SWITCH commands required Parameter: SwitchNumber */
106 /* BUS commands required Parameter: BusNumber */
107 CONTROLVM_BUS_CREATE = 0x101, /* CP --> SP, GP */
108 CONTROLVM_BUS_DESTROY = 0x102, /* CP --> SP, GP */
109 CONTROLVM_BUS_CONFIGURE = 0x104, /* CP --> SP */
110 CONTROLVM_BUS_CHANGESTATE = 0x105, /* CP --> SP, GP */
111 CONTROLVM_BUS_CHANGESTATE_EVENT = 0x106, /* SP, GP --> CP */
112/* DEVICE commands required Parameter: BusNumber, DeviceNumber */
Ken Cox12e364b2014-03-04 07:58:07 -0600113
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400114 CONTROLVM_DEVICE_CREATE = 0x201, /* CP --> SP, GP */
115 CONTROLVM_DEVICE_DESTROY = 0x202, /* CP --> SP, GP */
116 CONTROLVM_DEVICE_CONFIGURE = 0x203, /* CP --> SP */
117 CONTROLVM_DEVICE_CHANGESTATE = 0x204, /* CP --> SP, GP */
118 CONTROLVM_DEVICE_CHANGESTATE_EVENT = 0x205, /* SP, GP --> CP */
119 CONTROLVM_DEVICE_RECONFIGURE = 0x206, /* CP --> Boot */
Ken Cox12e364b2014-03-04 07:58:07 -0600120/* CHIPSET commands */
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400121 CONTROLVM_CHIPSET_INIT = 0x301, /* CP --> SP, GP */
122 CONTROLVM_CHIPSET_STOP = 0x302, /* CP --> SP, GP */
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400123 CONTROLVM_CHIPSET_READY = 0x304, /* CP --> SP */
124 CONTROLVM_CHIPSET_SELFTEST = 0x305, /* CP --> SP */
Ken Cox12e364b2014-03-04 07:58:07 -0600125
Veronika Kabatovad8ad8b02014-10-08 03:59:55 +0200126};
Ken Cox12e364b2014-03-04 07:58:07 -0600127
Benjamin Romer4eddbf12014-10-03 14:09:10 -0400128struct irq_info {
Erik Arfvidson22a03502015-05-05 18:36:41 -0400129 u64 reserved1;
Ken Cox12e364b2014-03-04 07:58:07 -0600130
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400131 /* specifies interrupt handle. It is used to retrieve the
Ken Cox12e364b2014-03-04 07:58:07 -0600132 * corresponding interrupt pin from Monitor; and the
133 * interrupt pin is used to connect to the corresponding
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400134 * interrupt. Used by IOPart-GP only.
135 */
Benjamin Romeraf3286b2014-10-23 14:30:18 -0400136 u64 recv_irq_handle;
Ken Cox12e364b2014-03-04 07:58:07 -0600137
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400138 /* specifies interrupt vector. It, interrupt pin, and shared are
Ken Cox12e364b2014-03-04 07:58:07 -0600139 * used to connect to the corresponding interrupt. Used by
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400140 * IOPart-GP only.
141 */
Benjamin Romeraf3286b2014-10-23 14:30:18 -0400142 u32 recv_irq_vector;
Ken Cox12e364b2014-03-04 07:58:07 -0600143
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400144 /* specifies if the recvInterrupt is shared. It, interrupt pin
145 * and vector are used to connect to 0 = not shared; 1 = shared.
146 * the corresponding interrupt. Used by IOPart-GP only.
147 */
Benjamin Romeraf3286b2014-10-23 14:30:18 -0400148 u8 recv_irq_shared;
Benjamin Romerc2422332014-07-29 15:09:40 -0400149 u8 reserved[3]; /* Natural alignment purposes */
Ken Cox12e364b2014-03-04 07:58:07 -0600150};
151
Benjamin Romerc12ad832014-10-03 14:09:09 -0400152struct pci_id {
Benjamin Romer6822f732014-10-23 14:30:19 -0400153 u16 domain;
154 u8 bus;
155 u8 slot;
156 u8 func;
157 u8 reserved[3]; /* Natural alignment purposes */
Ken Cox12e364b2014-03-04 07:58:07 -0600158};
159
Benjamin Romer755e2ec2014-10-23 14:30:21 -0400160struct efi_spar_indication {
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400161 u64 boot_to_fw_ui:1; /* Bit 0: Stop in uefi ui */
162 u64 clear_nvram:1; /* Bit 1: Clear NVRAM */
163 u64 clear_cmos:1; /* Bit 2: Clear CMOS */
164 u64 boot_to_tool:1; /* Bit 3: Run install tool */
Ken Cox12e364b2014-03-04 07:58:07 -0600165 /* remaining bits are available */
Benjamin Romer755e2ec2014-10-23 14:30:21 -0400166};
Ken Cox12e364b2014-03-04 07:58:07 -0600167
Benjamin Romerb9b141e2014-10-23 14:30:24 -0400168enum ultra_chipset_feature {
Ken Cox12e364b2014-03-04 07:58:07 -0600169 ULTRA_CHIPSET_FEATURE_REPLY = 0x00000001,
170 ULTRA_CHIPSET_FEATURE_PARA_HOTPLUG = 0x00000002,
Benjamin Romerb9b141e2014-10-23 14:30:24 -0400171};
Ken Cox12e364b2014-03-04 07:58:07 -0600172
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400173/* This is the common structure that is at the beginning of every
Ken Cox12e364b2014-03-04 07:58:07 -0600174 * ControlVm message (both commands and responses) in any ControlVm
175 * queue. Commands are easily distinguished from responses by
176 * looking at the flags.response field.
177 */
Benjamin Romer98d7b592014-10-23 14:30:26 -0400178struct controlvm_message_header {
179 u32 id; /* See CONTROLVM_ID. */
Ken Cox12e364b2014-03-04 07:58:07 -0600180 /* For requests, indicates the message type. */
181 /* For responses, indicates the type of message we are responding to. */
182
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500183 /* Includes size of this struct + size of message */
184 u32 message_size;
185 /* Index of segment containing Vm message/information */
186 u32 segment_index;
187 /* Error status code or result of message completion */
188 u32 completion_status;
Ken Cox12e364b2014-03-04 07:58:07 -0600189 struct {
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500190 /* =1 in a response to signify failure */
191 u32 failed:1;
192 /* =1 in all messages that expect a response */
193 u32 response_expected:1;
194 /* =1 in all bus & device-related messages where the message
195 * receiver is to act as the bus or device server
196 */
197 u32 server:1;
198 /* =1 for testing use only (Control and Command ignore this */
199 u32 test_message:1;
200 /* =1 if there are forthcoming responses/acks associated
201 * with this message
202 */
203 u32 partial_completion:1;
204 /* =1 this is to let us know to preserve channel contents */
205 u32 preserve:1;
206 /* =1 the DiagWriter is active in the Diagnostic Partition */
207 u32 writer_in_diag:1;
Benjamin Romer98d7b592014-10-23 14:30:26 -0400208 } flags;
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500209 /* Natural alignment */
210 u32 reserved;
211 /* Identifies the particular message instance */
212 u64 message_handle;
Ken Cox12e364b2014-03-04 07:58:07 -0600213 /* request instances with the corresponding response instance. */
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500214 /* Offset of payload area from start of this instance */
215 u64 payload_vm_offset;
216 /* Maximum bytes allocated in payload area of ControlVm segment */
217 u32 payload_max_bytes;
218 /* Actual number of bytes of payload area to copy between IO/Command */
219 u32 payload_bytes;
Ken Cox12e364b2014-03-04 07:58:07 -0600220 /* if non-zero, there is a payload to copy. */
Benjamin Romer98d7b592014-10-23 14:30:26 -0400221};
Ken Cox12e364b2014-03-04 07:58:07 -0600222
Benjamin Romerf91b9262014-10-23 14:30:27 -0400223struct controlvm_packet_device_create {
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400224 u32 bus_no; /* bus # (0..n-1) from the msg receiver's end */
225 u32 dev_no; /* bus-relative (0..n-1) device number */
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500226 /* Guest physical address of the channel, which can be dereferenced by
227 * the receiver of this ControlVm command
228 */
229 u64 channel_addr;
Benjamin Romerf91b9262014-10-23 14:30:27 -0400230 u64 channel_bytes; /* specifies size of the channel in bytes */
231 uuid_le data_type_uuid; /* specifies format of data in channel */
232 uuid_le dev_inst_uuid; /* instance guid for the device */
233 struct irq_info intr; /* specifies interrupt information */
234}; /* for CONTROLVM_DEVICE_CREATE */
Ken Cox12e364b2014-03-04 07:58:07 -0600235
Benjamin Romere6ad00b2014-10-23 14:30:28 -0400236struct controlvm_packet_device_configure {
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500237 /* bus # (0..n-1) from the msg receiver's perspective */
238 u32 bus_no;
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400239 /* Control uses header SegmentIndex field to access bus number... */
240 u32 dev_no; /* bus-relative (0..n-1) device number */
Benjamin Romere6ad00b2014-10-23 14:30:28 -0400241} ; /* for CONTROLVM_DEVICE_CONFIGURE */
Ken Cox12e364b2014-03-04 07:58:07 -0600242
Benjamin Romerc36acb52014-10-23 14:30:29 -0400243struct controlvm_message_device_create {
244 struct controlvm_message_header header;
245 struct controlvm_packet_device_create packet;
246}; /* total 128 bytes */
Ken Cox12e364b2014-03-04 07:58:07 -0600247
Benjamin Romerf6760542014-10-23 14:30:30 -0400248struct controlvm_message_device_configure {
249 struct controlvm_message_header header;
250 struct controlvm_packet_device_configure packet;
251}; /* total 56 bytes */
Ken Cox12e364b2014-03-04 07:58:07 -0600252
253/* This is the format for a message in any ControlVm queue. */
Benjamin Romer2ea51172014-10-23 14:30:25 -0400254struct controlvm_message_packet {
Ken Cox12e364b2014-03-04 07:58:07 -0600255 union {
Ken Cox12e364b2014-03-04 07:58:07 -0600256 struct {
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500257 /* bus # (0..n-1) from the msg receiver's perspective */
258 u32 bus_no;
259 /* indicates the max number of devices on this bus */
260 u32 dev_count;
261 /* Guest physical address of the channel, which can be
262 * dereferenced by the receiver of this ControlVm command
263 */
264 u64 channel_addr;
Benjamin Romer2ea51172014-10-23 14:30:25 -0400265 u64 channel_bytes; /* size of the channel */
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500266 /* indicates format of data in bus channel*/
267 uuid_le bus_data_type_uuid;
Benjamin Romer2ea51172014-10-23 14:30:25 -0400268 uuid_le bus_inst_uuid; /* instance uuid for the bus */
269 } create_bus; /* for CONTROLVM_BUS_CREATE */
Ken Cox12e364b2014-03-04 07:58:07 -0600270 struct {
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500271 /* bus # (0..n-1) from the msg receiver's perspective */
272 u32 bus_no;
Benjamin Romerb3c55b12014-07-31 12:00:50 -0400273 u32 reserved; /* Natural alignment purposes */
Benjamin Romer2ea51172014-10-23 14:30:25 -0400274 } destroy_bus; /* for CONTROLVM_BUS_DESTROY */
Ken Cox12e364b2014-03-04 07:58:07 -0600275 struct {
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500276 /* bus # (0..n-1) from the receiver's perspective */
277 u32 bus_no;
Benjamin Romer2ea51172014-10-23 14:30:25 -0400278 u32 reserved1; /* for alignment purposes */
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500279 /* This is used to convert guest physical address to physical address */
280 u64 guest_handle;
Benjamin Romer2ea51172014-10-23 14:30:25 -0400281 u64 recv_bus_irq_handle;
282 /* specifies interrupt info. It is used by SP
283 * to register to receive interrupts from the
284 * CP. This interrupt is used for bus level
285 * notifications. The corresponding
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500286 * sendBusInterruptHandle is kept in CP.
287 */
Benjamin Romer2ea51172014-10-23 14:30:25 -0400288 } configure_bus; /* for CONTROLVM_BUS_CONFIGURE */
Ken Cox12e364b2014-03-04 07:58:07 -0600289 /* for CONTROLVM_DEVICE_CREATE */
Benjamin Romerf91b9262014-10-23 14:30:27 -0400290 struct controlvm_packet_device_create create_device;
Ken Cox12e364b2014-03-04 07:58:07 -0600291 struct {
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500292 /* bus # (0..n-1) from the msg receiver's perspective */
293 u32 bus_no;
Benjamin Romer2ea51172014-10-23 14:30:25 -0400294 u32 dev_no; /* bus-relative (0..n-1) device # */
295 } destroy_device; /* for CONTROLVM_DEVICE_DESTROY */
Ken Cox12e364b2014-03-04 07:58:07 -0600296 /* for CONTROLVM_DEVICE_CONFIGURE */
Benjamin Romere6ad00b2014-10-23 14:30:28 -0400297 struct controlvm_packet_device_configure configure_device;
Ken Cox12e364b2014-03-04 07:58:07 -0600298 struct {
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500299 /* bus # (0..n-1) from the msg receiver's perspective */
300 u32 bus_no;
Benjamin Romer2ea51172014-10-23 14:30:25 -0400301 u32 dev_no; /* bus-relative (0..n-1) device # */
302 } reconfigure_device; /* for CONTROLVM_DEVICE_RECONFIGURE */
Ken Cox12e364b2014-03-04 07:58:07 -0600303 struct {
Benjamin Romer2ea51172014-10-23 14:30:25 -0400304 u32 bus_no;
Benjamin Romer3f833b52014-10-23 14:30:12 -0400305 struct spar_segment_state state;
Benjamin Romerc2422332014-07-29 15:09:40 -0400306 u8 reserved[2]; /* Natural alignment purposes */
Benjamin Romer2ea51172014-10-23 14:30:25 -0400307 } bus_change_state; /* for CONTROLVM_BUS_CHANGESTATE */
Ken Cox12e364b2014-03-04 07:58:07 -0600308 struct {
Benjamin Romer2ea51172014-10-23 14:30:25 -0400309 u32 bus_no;
310 u32 dev_no;
Benjamin Romer3f833b52014-10-23 14:30:12 -0400311 struct spar_segment_state state;
Ken Cox12e364b2014-03-04 07:58:07 -0600312 struct {
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500313 /* =1 if message is for a physical device */
314 u32 phys_device:1;
Ken Cox12e364b2014-03-04 07:58:07 -0600315 } flags;
Benjamin Romerc2422332014-07-29 15:09:40 -0400316 u8 reserved[2]; /* Natural alignment purposes */
Benjamin Romer2ea51172014-10-23 14:30:25 -0400317 } device_change_state; /* for CONTROLVM_DEVICE_CHANGESTATE */
Ken Cox12e364b2014-03-04 07:58:07 -0600318 struct {
Benjamin Romer2ea51172014-10-23 14:30:25 -0400319 u32 bus_no;
320 u32 dev_no;
Benjamin Romer3f833b52014-10-23 14:30:12 -0400321 struct spar_segment_state state;
Benjamin Romerc2422332014-07-29 15:09:40 -0400322 u8 reserved[6]; /* Natural alignment purposes */
Benjamin Romer2ea51172014-10-23 14:30:25 -0400323 } device_change_state_event;
324 /* for CONTROLVM_DEVICE_CHANGESTATE_EVENT */
Ken Cox12e364b2014-03-04 07:58:07 -0600325 struct {
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500326 /* indicates the max number of busses */
327 u32 bus_count;
328 /* indicates the max number of switches */
329 u32 switch_count;
Benjamin Romerb9b141e2014-10-23 14:30:24 -0400330 enum ultra_chipset_feature features;
Benjamin Romer2ea51172014-10-23 14:30:25 -0400331 u32 platform_number; /* Platform Number */
332 } init_chipset; /* for CONTROLVM_CHIPSET_INIT */
Ken Cox12e364b2014-03-04 07:58:07 -0600333 struct {
Benjamin Romer2ea51172014-10-23 14:30:25 -0400334 u32 options; /* reserved */
335 u32 test; /* bit 0 set to run embedded selftest */
336 } chipset_selftest; /* for CONTROLVM_CHIPSET_SELFTEST */
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500337 /* a physical address of something, that can be dereferenced
338 * by the receiver of this ControlVm command
339 */
340 u64 addr;
341 /* a handle of something (depends on command id) */
342 u64 handle;
Ken Cox12e364b2014-03-04 07:58:07 -0600343 };
Benjamin Romer2ea51172014-10-23 14:30:25 -0400344};
Ken Cox12e364b2014-03-04 07:58:07 -0600345
346/* All messages in any ControlVm queue have this layout. */
Benjamin Romer3ab47702014-10-23 14:30:31 -0400347struct controlvm_message {
Benjamin Romer98d7b592014-10-23 14:30:26 -0400348 struct controlvm_message_header hdr;
Benjamin Romer2ea51172014-10-23 14:30:25 -0400349 struct controlvm_message_packet cmd;
Benjamin Romer3ab47702014-10-23 14:30:31 -0400350};
Ken Cox12e364b2014-03-04 07:58:07 -0600351
Benjamin Romerd19642f2014-10-23 14:30:34 -0400352struct spar_controlvm_channel_protocol {
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400353 struct channel_header header;
354 u64 gp_controlvm; /* guest phys addr of this channel */
355 u64 gp_partition_tables;/* guest phys addr of partition tables */
356 u64 gp_diag_guest; /* guest phys addr of diagnostic channel */
357 u64 gp_boot_romdisk;/* guest phys addr of (read* only) Boot ROM disk */
358 u64 gp_boot_ramdisk;/* guest phys addr of writable Boot RAM disk */
359 u64 gp_acpi_table; /* guest phys addr of acpi table */
360 u64 gp_control_channel;/* guest phys addr of control channel */
361 u64 gp_diag_romdisk;/* guest phys addr of diagnostic ROM disk */
362 u64 gp_nvram; /* guest phys addr of NVRAM channel */
363 u64 request_payload_offset; /* Offset to request payload area */
364 u64 event_payload_offset; /* Offset to event payload area */
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500365 /* Bytes available in request payload area */
366 u32 request_payload_bytes;
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400367 u32 event_payload_bytes;/* Bytes available in event payload area */
368 u32 control_channel_bytes;
369 u32 nvram_channel_bytes; /* Bytes in PartitionNvram segment */
370 u32 message_bytes; /* sizeof(CONTROLVM_MESSAGE) */
371 u32 message_count; /* CONTROLVM_MESSAGE_MAX */
372 u64 gp_smbios_table; /* guest phys addr of SMBIOS tables */
373 u64 gp_physical_smbios_table; /* guest phys addr of SMBIOS table */
374 /* ULTRA_MAX_GUESTS_PER_SERVICE */
Erik Arfvidson680385e2015-05-05 18:36:43 -0400375 char gp_reserved[2688];
Ken Cox12e364b2014-03-04 07:58:07 -0600376
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400377 /* guest physical address of EFI firmware image base */
378 u64 virtual_guest_firmware_image_base;
Ken Cox12e364b2014-03-04 07:58:07 -0600379
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400380 /* guest physical address of EFI firmware entry point */
381 u64 virtual_guest_firmware_entry_point;
Ken Cox12e364b2014-03-04 07:58:07 -0600382
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400383 /* guest EFI firmware image size */
384 u64 virtual_guest_firmware_image_size;
Ken Cox12e364b2014-03-04 07:58:07 -0600385
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400386 /* GPA = 1MB where EFI firmware image is copied to */
387 u64 virtual_guest_firmware_boot_base;
388 u64 virtual_guest_image_base;
389 u64 virtual_guest_image_size;
390 u64 prototype_control_channel_offset;
391 u64 virtual_guest_partition_handle;
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500392 /* Restore Action field to restore the guest partition */
393 u16 restore_action;
394 /* For Windows guests it shows if the visordisk is in dump mode */
395 u16 dump_action;
Benjamin Romerd19642f2014-10-23 14:30:34 -0400396 u16 nvram_fail_count;
397 u16 saved_crash_message_count; /* = CONTROLVM_CRASHMSG_MAX */
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500398 /* Offset to request payload area needed for crash dump */
399 u32 saved_crash_message_offset;
400 /* Type of error encountered during installation */
401 u32 installation_error;
Benjamin Romerd19642f2014-10-23 14:30:34 -0400402 u32 installation_text_id; /* Id of string to display */
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500403 /* Number of remaining installation steps (for progress bars) */
404 u16 installation_remaining_steps;
405 /* ULTRA_TOOL_ACTIONS Installation Action field */
406 u8 tool_action;
Benjamin Romerd19642f2014-10-23 14:30:34 -0400407 u8 reserved; /* alignment */
408 struct efi_spar_indication efi_spar_ind;
409 struct efi_spar_indication efi_spar_ind_supported;
410 u32 sp_reserved;
Erik Arfvidson1e3ab522016-02-08 10:41:41 -0500411 /* Force signals to begin on 128-byte cache line */
412 u8 reserved2[28];
413 /* guest partition uses this queue to send requests to Control */
414 struct signal_queue_header request_queue;
415 /* Control uses this queue to respond to service or guest
416 * partition requests
417 */
418 struct signal_queue_header response_queue;
419 /* Control uses this queue to send events to guest partition */
420 struct signal_queue_header event_queue;
421 /* Service or guest partition uses this queue to ack Control events */
422 struct signal_queue_header event_ack_queue;
Ken Cox12e364b2014-03-04 07:58:07 -0600423 /* Request fixed-size message pool - does not include payload */
Benjamin Romerd19642f2014-10-23 14:30:34 -0400424 struct controlvm_message request_msg[CONTROLVM_MESSAGE_MAX];
Ken Cox12e364b2014-03-04 07:58:07 -0600425
426 /* Response fixed-size message pool - does not include payload */
Benjamin Romerd19642f2014-10-23 14:30:34 -0400427 struct controlvm_message response_msg[CONTROLVM_MESSAGE_MAX];
Ken Cox12e364b2014-03-04 07:58:07 -0600428
429 /* Event fixed-size message pool - does not include payload */
Benjamin Romerd19642f2014-10-23 14:30:34 -0400430 struct controlvm_message event_msg[CONTROLVM_MESSAGE_MAX];
Ken Cox12e364b2014-03-04 07:58:07 -0600431
432 /* Ack fixed-size message pool - does not include payload */
Benjamin Romerd19642f2014-10-23 14:30:34 -0400433 struct controlvm_message event_ack_msg[CONTROLVM_MESSAGE_MAX];
Ken Cox12e364b2014-03-04 07:58:07 -0600434
435 /* Message stored during IOVM creation to be reused after crash */
Benjamin Romerd19642f2014-10-23 14:30:34 -0400436 struct controlvm_message saved_crash_msg[CONTROLVM_CRASHMSG_MAX];
437};
Ken Cox12e364b2014-03-04 07:58:07 -0600438
Erik Arfvidson7e5a1a72015-05-05 18:36:42 -0400439/* Offsets for VM channel attributes */
Ken Cox12e364b2014-03-04 07:58:07 -0600440#define VM_CH_REQ_QUEUE_OFFSET \
Benjamin Romerd19642f2014-10-23 14:30:34 -0400441 offsetof(struct spar_controlvm_channel_protocol, request_queue)
Ken Cox12e364b2014-03-04 07:58:07 -0600442#define VM_CH_RESP_QUEUE_OFFSET \
Benjamin Romerd19642f2014-10-23 14:30:34 -0400443 offsetof(struct spar_controlvm_channel_protocol, response_queue)
Ken Cox12e364b2014-03-04 07:58:07 -0600444#define VM_CH_EVENT_QUEUE_OFFSET \
Benjamin Romerd19642f2014-10-23 14:30:34 -0400445 offsetof(struct spar_controlvm_channel_protocol, event_queue)
Ken Cox12e364b2014-03-04 07:58:07 -0600446#define VM_CH_ACK_QUEUE_OFFSET \
Benjamin Romerd19642f2014-10-23 14:30:34 -0400447 offsetof(struct spar_controlvm_channel_protocol, event_ack_queue)
Ken Cox12e364b2014-03-04 07:58:07 -0600448#define VM_CH_REQ_MSG_OFFSET \
Benjamin Romerd19642f2014-10-23 14:30:34 -0400449 offsetof(struct spar_controlvm_channel_protocol, request_msg)
Ken Cox12e364b2014-03-04 07:58:07 -0600450#define VM_CH_RESP_MSG_OFFSET \
Benjamin Romerd19642f2014-10-23 14:30:34 -0400451 offsetof(struct spar_controlvm_channel_protocol, response_msg)
Ken Cox12e364b2014-03-04 07:58:07 -0600452#define VM_CH_EVENT_MSG_OFFSET \
Benjamin Romerd19642f2014-10-23 14:30:34 -0400453 offsetof(struct spar_controlvm_channel_protocol, event_msg)
Ken Cox12e364b2014-03-04 07:58:07 -0600454#define VM_CH_ACK_MSG_OFFSET \
Benjamin Romerd19642f2014-10-23 14:30:34 -0400455 offsetof(struct spar_controlvm_channel_protocol, event_ack_msg)
Ken Cox12e364b2014-03-04 07:58:07 -0600456#define VM_CH_CRASH_MSG_OFFSET \
Benjamin Romerd19642f2014-10-23 14:30:34 -0400457 offsetof(struct spar_controlvm_channel_protocol, saved_crash_msg)
Ken Cox12e364b2014-03-04 07:58:07 -0600458
459/* The following header will be located at the beginning of PayloadVmOffset for
Benjamin Romer62420892014-10-23 14:30:35 -0400460 * various ControlVm commands. The receiver of a ControlVm command with a
461 * PayloadVmOffset will dereference this address and then use connection_offset,
462 * initiator_offset, and target_offset to get the location of UTF-8 formatted
463 * strings that can be parsed to obtain command-specific information. The value
464 * of total_length should equal PayloadBytes. The format of the strings at
465 * PayloadVmOffset will take different forms depending on the message.
Ken Cox12e364b2014-03-04 07:58:07 -0600466 */
Benjamin Romer62420892014-10-23 14:30:35 -0400467struct spar_controlvm_parameters_header {
468 u32 total_length;
469 u32 header_length;
470 u32 connection_offset;
471 u32 connection_length;
472 u32 initiator_offset;
473 u32 initiator_length;
474 u32 target_offset;
475 u32 target_length;
476 u32 client_offset;
477 u32 client_length;
478 u32 name_offset;
479 u32 name_length;
480 uuid_le id;
481 u32 revision;
482 u32 reserved; /* Natural alignment */
483};
Ken Cox12e364b2014-03-04 07:58:07 -0600484
485#endif /* __CONTROLVMCHANNEL_H__ */