blob: 4cebde85924f8f33085b45e27b7df8deae17ada5 [file] [log] [blame]
Oren Weil5a6003f2011-05-15 13:43:45 +03001/*
2 *
3 * Intel Management Engine Interface (Intel MEI) Linux driver
Tomas Winkler733ba912012-02-09 19:25:53 +02004 * Copyright (c) 2003-2012, Intel Corporation.
Oren Weil5a6003f2011-05-15 13:43:45 +03005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 */
16
17#ifndef _MEI_HW_TYPES_H_
18#define _MEI_HW_TYPES_H_
19
20#include <linux/uuid.h>
21
22/*
Tomas Winkler3870c322012-11-01 21:17:14 +020023 * Timeouts in Seconds
Oren Weil5a6003f2011-05-15 13:43:45 +030024 */
Tomas Winkler7d93e582014-01-14 23:10:10 +020025#define MEI_HW_READY_TIMEOUT 2 /* Timeout on ready message */
Tomas Winkler3870c322012-11-01 21:17:14 +020026#define MEI_CONNECT_TIMEOUT 3 /* HPS: at least 2 seconds */
Oren Weil5a6003f2011-05-15 13:43:45 +030027
Tomas Winkler3870c322012-11-01 21:17:14 +020028#define MEI_CL_CONNECT_TIMEOUT 15 /* HPS: Client Connect Timeout */
29#define MEI_CLIENTS_INIT_TIMEOUT 15 /* HPS: Clients Enumeration Timeout */
Oren Weil5a6003f2011-05-15 13:43:45 +030030
Tomas Winkler3870c322012-11-01 21:17:14 +020031#define MEI_IAMTHIF_STALL_TIMER 12 /* HPS */
32#define MEI_IAMTHIF_READ_TIMER 10 /* HPS */
Oren Weil5a6003f2011-05-15 13:43:45 +030033
Alexander Usyskin859ef2f2015-08-02 22:20:54 +030034#define MEI_PGI_TIMEOUT 1 /* PG Isolation time response 1 sec */
35#define MEI_D0I3_TIMEOUT 5 /* D0i3 set/unset max response time */
36#define MEI_HBM_TIMEOUT 1 /* 1 second */
Oren Weil5a6003f2011-05-15 13:43:45 +030037
38/*
Oren Weil5a6003f2011-05-15 13:43:45 +030039 * MEI Version
40 */
Tomas Winkler155718c2015-08-02 22:20:58 +030041#define HBM_MINOR_VERSION 0
42#define HBM_MAJOR_VERSION 2
Oren Weil5a6003f2011-05-15 13:43:45 +030043
Tomas Winkleree7e5af2014-03-18 22:51:58 +020044/*
45 * MEI version with PGI support
46 */
47#define HBM_MINOR_VERSION_PGI 1
48#define HBM_MAJOR_VERSION_PGI 1
49
Tomas Winkler70ef8352015-07-23 21:37:12 +030050/*
51 * MEI version with Dynamic clients support
52 */
53#define HBM_MINOR_VERSION_DC 0
54#define HBM_MAJOR_VERSION_DC 2
55
Alexander Usyskin18901352015-07-23 21:37:13 +030056/*
57 * MEI version with disconnect on connection timeout support
58 */
59#define HBM_MINOR_VERSION_DOT 0
60#define HBM_MAJOR_VERSION_DOT 2
61
Tomas Winkler4d998772015-07-26 09:54:17 +030062/*
63 * MEI version with notifcation support
64 */
65#define HBM_MINOR_VERSION_EV 0
66#define HBM_MAJOR_VERSION_EV 2
67
Tomas Winkler1ca7e782012-02-26 23:18:57 +020068/* Host bus message command opcode */
69#define MEI_HBM_CMD_OP_MSK 0x7f
70/* Host bus message command RESPONSE */
71#define MEI_HBM_CMD_RES_MSK 0x80
72
Oren Weil5a6003f2011-05-15 13:43:45 +030073/*
74 * MEI Bus Message Command IDs
75 */
76#define HOST_START_REQ_CMD 0x01
77#define HOST_START_RES_CMD 0x81
78
79#define HOST_STOP_REQ_CMD 0x02
80#define HOST_STOP_RES_CMD 0x82
81
82#define ME_STOP_REQ_CMD 0x03
83
84#define HOST_ENUM_REQ_CMD 0x04
85#define HOST_ENUM_RES_CMD 0x84
86
87#define HOST_CLIENT_PROPERTIES_REQ_CMD 0x05
88#define HOST_CLIENT_PROPERTIES_RES_CMD 0x85
89
90#define CLIENT_CONNECT_REQ_CMD 0x06
91#define CLIENT_CONNECT_RES_CMD 0x86
92
93#define CLIENT_DISCONNECT_REQ_CMD 0x07
94#define CLIENT_DISCONNECT_RES_CMD 0x87
95
Tomas Winkler1ca7e782012-02-26 23:18:57 +020096#define MEI_FLOW_CONTROL_CMD 0x08
Oren Weil5a6003f2011-05-15 13:43:45 +030097
Tomas Winkler4fcbc992014-03-18 22:51:55 +020098#define MEI_PG_ISOLATION_ENTRY_REQ_CMD 0x0a
99#define MEI_PG_ISOLATION_ENTRY_RES_CMD 0x8a
100#define MEI_PG_ISOLATION_EXIT_REQ_CMD 0x0b
101#define MEI_PG_ISOLATION_EXIT_RES_CMD 0x8b
102
Tomas Winkler70ef8352015-07-23 21:37:12 +0300103#define MEI_HBM_ADD_CLIENT_REQ_CMD 0x0f
104#define MEI_HBM_ADD_CLIENT_RES_CMD 0x8f
Tomas Winklerd3c1c802015-07-26 09:54:15 +0300105
106#define MEI_HBM_NOTIFY_REQ_CMD 0x10
107#define MEI_HBM_NOTIFY_RES_CMD 0x90
108#define MEI_HBM_NOTIFICATION_CMD 0x11
109
Oren Weil5a6003f2011-05-15 13:43:45 +0300110/*
111 * MEI Stop Reason
112 * used by hbm_host_stop_request.reason
113 */
114enum mei_stop_reason_types {
115 DRIVER_STOP_REQUEST = 0x00,
116 DEVICE_D1_ENTRY = 0x01,
117 DEVICE_D2_ENTRY = 0x02,
118 DEVICE_D3_ENTRY = 0x03,
119 SYSTEM_S1_ENTRY = 0x04,
120 SYSTEM_S2_ENTRY = 0x05,
121 SYSTEM_S3_ENTRY = 0x06,
122 SYSTEM_S4_ENTRY = 0x07,
123 SYSTEM_S5_ENTRY = 0x08
124};
125
Tomas Winkler89778d62014-08-21 14:29:16 +0300126
127/**
Alexander Usyskina8605ea2014-09-29 16:31:49 +0300128 * enum mei_hbm_status - mei host bus messages return values
Tomas Winkler89778d62014-08-21 14:29:16 +0300129 *
Alexander Usyskina8605ea2014-09-29 16:31:49 +0300130 * @MEI_HBMS_SUCCESS : status success
131 * @MEI_HBMS_CLIENT_NOT_FOUND : client not found
132 * @MEI_HBMS_ALREADY_EXISTS : connection already established
133 * @MEI_HBMS_REJECTED : connection is rejected
134 * @MEI_HBMS_INVALID_PARAMETER : invalid parameter
135 * @MEI_HBMS_NOT_ALLOWED : operation not allowed
136 * @MEI_HBMS_ALREADY_STARTED : system is already started
137 * @MEI_HBMS_NOT_STARTED : system not started
Alexander Usyskince231392014-09-29 16:31:50 +0300138 *
139 * @MEI_HBMS_MAX : sentinel
Tomas Winkler89778d62014-08-21 14:29:16 +0300140 */
141enum mei_hbm_status {
142 MEI_HBMS_SUCCESS = 0,
143 MEI_HBMS_CLIENT_NOT_FOUND = 1,
144 MEI_HBMS_ALREADY_EXISTS = 2,
145 MEI_HBMS_REJECTED = 3,
146 MEI_HBMS_INVALID_PARAMETER = 4,
147 MEI_HBMS_NOT_ALLOWED = 5,
148 MEI_HBMS_ALREADY_STARTED = 6,
149 MEI_HBMS_NOT_STARTED = 7,
150
151 MEI_HBMS_MAX
152};
153
154
Oren Weil5a6003f2011-05-15 13:43:45 +0300155/*
156 * Client Connect Status
157 * used by hbm_client_connect_response.status
158 */
Alexander Usyskin285e2992014-02-17 15:13:20 +0200159enum mei_cl_connect_status {
Tomas Winkler89778d62014-08-21 14:29:16 +0300160 MEI_CL_CONN_SUCCESS = MEI_HBMS_SUCCESS,
161 MEI_CL_CONN_NOT_FOUND = MEI_HBMS_CLIENT_NOT_FOUND,
162 MEI_CL_CONN_ALREADY_STARTED = MEI_HBMS_ALREADY_EXISTS,
163 MEI_CL_CONN_OUT_OF_RESOURCES = MEI_HBMS_REJECTED,
164 MEI_CL_CONN_MESSAGE_SMALL = MEI_HBMS_INVALID_PARAMETER,
Alexander Usyskin71e117f2015-07-29 14:59:33 +0300165 MEI_CL_CONN_NOT_ALLOWED = MEI_HBMS_NOT_ALLOWED,
Oren Weil5a6003f2011-05-15 13:43:45 +0300166};
167
168/*
169 * Client Disconnect Status
170 */
Alexander Usyskin285e2992014-02-17 15:13:20 +0200171enum mei_cl_disconnect_status {
Tomas Winkler89778d62014-08-21 14:29:16 +0300172 MEI_CL_DISCONN_SUCCESS = MEI_HBMS_SUCCESS
Oren Weil5a6003f2011-05-15 13:43:45 +0300173};
174
175/*
176 * MEI BUS Interface Section
177 */
178struct mei_msg_hdr {
179 u32 me_addr:8;
180 u32 host_addr:8;
181 u32 length:9;
Tomas Winkler479327f2013-12-17 15:56:56 +0200182 u32 reserved:5;
183 u32 internal:1;
Oren Weil5a6003f2011-05-15 13:43:45 +0300184 u32 msg_complete:1;
185} __packed;
186
187
Oren Weil5a6003f2011-05-15 13:43:45 +0300188struct mei_bus_message {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200189 u8 hbm_cmd;
190 u8 data[0];
Oren Weil5a6003f2011-05-15 13:43:45 +0300191} __packed;
192
Tomas Winklercd51ed62012-12-25 19:06:09 +0200193/**
194 * struct hbm_cl_cmd - client specific host bus command
195 * CONNECT, DISCONNECT, and FlOW CONTROL
196 *
Alexander Usyskina8605ea2014-09-29 16:31:49 +0300197 * @hbm_cmd: bus message command header
198 * @me_addr: address of the client in ME
199 * @host_addr: address of the client in the driver
200 * @data: generic data
Tomas Winklercd51ed62012-12-25 19:06:09 +0200201 */
202struct mei_hbm_cl_cmd {
203 u8 hbm_cmd;
204 u8 me_addr;
205 u8 host_addr;
206 u8 data;
207};
208
Oren Weil5a6003f2011-05-15 13:43:45 +0300209struct hbm_version {
210 u8 minor_version;
211 u8 major_version;
212} __packed;
213
214struct hbm_host_version_request {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200215 u8 hbm_cmd;
Oren Weil5a6003f2011-05-15 13:43:45 +0300216 u8 reserved;
217 struct hbm_version host_version;
218} __packed;
219
220struct hbm_host_version_response {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200221 u8 hbm_cmd;
Tomas Winkler4b007062012-02-23 21:52:55 +0200222 u8 host_version_supported;
Oren Weil5a6003f2011-05-15 13:43:45 +0300223 struct hbm_version me_max_version;
224} __packed;
225
226struct hbm_host_stop_request {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200227 u8 hbm_cmd;
Oren Weil5a6003f2011-05-15 13:43:45 +0300228 u8 reason;
229 u8 reserved[2];
230} __packed;
231
232struct hbm_host_stop_response {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200233 u8 hbm_cmd;
Oren Weil5a6003f2011-05-15 13:43:45 +0300234 u8 reserved[3];
235} __packed;
236
237struct hbm_me_stop_request {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200238 u8 hbm_cmd;
Oren Weil5a6003f2011-05-15 13:43:45 +0300239 u8 reason;
240 u8 reserved[2];
241} __packed;
242
Tomas Winkler70ef8352015-07-23 21:37:12 +0300243/**
244 * struct hbm_host_enum_request - enumeration request from host to fw
245 *
246 * @hbm_cmd: bus message command header
247 * @allow_add: allow dynamic clients add HBM version >= 2.0
248 * @reserved: reserved
249 */
Oren Weil5a6003f2011-05-15 13:43:45 +0300250struct hbm_host_enum_request {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200251 u8 hbm_cmd;
Tomas Winkler70ef8352015-07-23 21:37:12 +0300252 u8 allow_add;
253 u8 reserved[2];
Oren Weil5a6003f2011-05-15 13:43:45 +0300254} __packed;
255
256struct hbm_host_enum_response {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200257 u8 hbm_cmd;
Oren Weil5a6003f2011-05-15 13:43:45 +0300258 u8 reserved[3];
259 u8 valid_addresses[32];
260} __packed;
261
262struct mei_client_properties {
263 uuid_le protocol_name;
264 u8 protocol_version;
265 u8 max_number_of_connections;
266 u8 fixed_address;
267 u8 single_recv_buf;
268 u32 max_msg_length;
269} __packed;
270
271struct hbm_props_request {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200272 u8 hbm_cmd;
Tomas Winkler3438c1f2014-08-21 14:29:10 +0300273 u8 me_addr;
Oren Weil5a6003f2011-05-15 13:43:45 +0300274 u8 reserved[2];
275} __packed;
276
Oren Weil5a6003f2011-05-15 13:43:45 +0300277struct hbm_props_response {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200278 u8 hbm_cmd;
Tomas Winkler3438c1f2014-08-21 14:29:10 +0300279 u8 me_addr;
Oren Weil5a6003f2011-05-15 13:43:45 +0300280 u8 status;
281 u8 reserved[1];
282 struct mei_client_properties client_properties;
283} __packed;
284
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200285/**
Tomas Winkler70ef8352015-07-23 21:37:12 +0300286 * struct hbm_add_client_request - request to add a client
287 * might be sent by fw after enumeration has already completed
288 *
289 * @hbm_cmd: bus message command header
290 * @me_addr: address of the client in ME
291 * @reserved: reserved
292 * @client_properties: client properties
293 */
294struct hbm_add_client_request {
295 u8 hbm_cmd;
296 u8 me_addr;
297 u8 reserved[2];
298 struct mei_client_properties client_properties;
299} __packed;
300
301/**
302 * struct hbm_add_client_response - response to add a client
303 * sent by the host to report client addition status to fw
304 *
305 * @hbm_cmd: bus message command header
306 * @me_addr: address of the client in ME
307 * @status: if HBMS_SUCCESS then the client can now accept connections.
308 * @reserved: reserved
309 */
310struct hbm_add_client_response {
311 u8 hbm_cmd;
312 u8 me_addr;
313 u8 status;
314 u8 reserved[1];
315} __packed;
316
317/**
Tomas Winkler4fcbc992014-03-18 22:51:55 +0200318 * struct hbm_power_gate - power gate request/response
319 *
Alexander Usyskina8605ea2014-09-29 16:31:49 +0300320 * @hbm_cmd: bus message command header
321 * @reserved: reserved
Tomas Winkler4fcbc992014-03-18 22:51:55 +0200322 */
323struct hbm_power_gate {
324 u8 hbm_cmd;
325 u8 reserved[3];
326} __packed;
327
328/**
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200329 * struct hbm_client_connect_request - connect/disconnect request
330 *
Alexander Usyskina8605ea2014-09-29 16:31:49 +0300331 * @hbm_cmd: bus message command header
332 * @me_addr: address of the client in ME
333 * @host_addr: address of the client in the driver
334 * @reserved: reserved
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200335 */
Oren Weil5a6003f2011-05-15 13:43:45 +0300336struct hbm_client_connect_request {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200337 u8 hbm_cmd;
Oren Weil5a6003f2011-05-15 13:43:45 +0300338 u8 me_addr;
339 u8 host_addr;
340 u8 reserved;
341} __packed;
342
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200343/**
344 * struct hbm_client_connect_response - connect/disconnect response
345 *
Alexander Usyskina8605ea2014-09-29 16:31:49 +0300346 * @hbm_cmd: bus message command header
347 * @me_addr: address of the client in ME
348 * @host_addr: address of the client in the driver
349 * @status: status of the request
Tomas Winkleraeba4a02012-11-11 17:38:04 +0200350 */
Oren Weil5a6003f2011-05-15 13:43:45 +0300351struct hbm_client_connect_response {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200352 u8 hbm_cmd;
Oren Weil5a6003f2011-05-15 13:43:45 +0300353 u8 me_addr;
354 u8 host_addr;
355 u8 status;
356} __packed;
357
Oren Weil5a6003f2011-05-15 13:43:45 +0300358
359#define MEI_FC_MESSAGE_RESERVED_LENGTH 5
360
361struct hbm_flow_control {
Tomas Winkler1ca7e782012-02-26 23:18:57 +0200362 u8 hbm_cmd;
Oren Weil5a6003f2011-05-15 13:43:45 +0300363 u8 me_addr;
364 u8 host_addr;
365 u8 reserved[MEI_FC_MESSAGE_RESERVED_LENGTH];
366} __packed;
367
Tomas Winklerd3c1c802015-07-26 09:54:15 +0300368#define MEI_HBM_NOTIFICATION_START 1
369#define MEI_HBM_NOTIFICATION_STOP 0
370/**
371 * struct hbm_notification_request - start/stop notification request
372 *
373 * @hbm_cmd: bus message command header
374 * @me_addr: address of the client in ME
375 * @host_addr: address of the client in the driver
376 * @start: start = 1 or stop = 0 asynchronous notifications
377 */
378struct hbm_notification_request {
379 u8 hbm_cmd;
380 u8 me_addr;
381 u8 host_addr;
382 u8 start;
383} __packed;
384
385/**
386 * struct hbm_notification_response - start/stop notification response
387 *
388 * @hbm_cmd: bus message command header
389 * @me_addr: address of the client in ME
390 * @host_addr: - address of the client in the driver
391 * @status: (mei_hbm_status) response status for the request
392 * - MEI_HBMS_SUCCESS: successful stop/start
393 * - MEI_HBMS_CLIENT_NOT_FOUND: if the connection could not be found.
394 * - MEI_HBMS_ALREADY_STARTED: for start requests for a previously
395 * started notification.
396 * - MEI_HBMS_NOT_STARTED: for stop request for a connected client for whom
397 * asynchronous notifications are currently disabled.
398 *
399 * @start: start = 1 or stop = 0 asynchronous notifications
400 * @reserved: reserved
401 */
402struct hbm_notification_response {
403 u8 hbm_cmd;
404 u8 me_addr;
405 u8 host_addr;
406 u8 status;
407 u8 start;
408 u8 reserved[3];
409} __packed;
410
411/**
412 * struct hbm_notification - notification event
413 *
414 * @hbm_cmd: bus message command header
415 * @me_addr: address of the client in ME
416 * @host_addr: address of the client in the driver
417 * @reserved: reserved for alignment
418 */
419struct hbm_notification {
420 u8 hbm_cmd;
421 u8 me_addr;
422 u8 host_addr;
423 u8 reserved[1];
424} __packed;
Oren Weil5a6003f2011-05-15 13:43:45 +0300425
426#endif