]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/misc/mei/mei_dev.h
mei: move internal host clients ids to mei_dev.h from hw.h
[mirror_ubuntu-eoan-kernel.git] / drivers / misc / mei / mei_dev.h
CommitLineData
ab841160
OW
1/*
2 *
3 * Intel Management Engine Interface (Intel MEI) Linux driver
733ba91c 4 * Copyright (c) 2003-2012, Intel Corporation.
ab841160
OW
5 *
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_DEV_H_
18#define _MEI_DEV_H_
19
20#include <linux/types.h>
9ce178e5 21#include <linux/watchdog.h>
744f0f2f 22#include <linux/poll.h>
4f3afe1d 23#include <linux/mei.h>
ab841160
OW
24#include "hw.h"
25
ab841160
OW
26/*
27 * watch dog definition
28 */
248ffdf7
TW
29#define MEI_WD_HDR_SIZE 4
30#define MEI_WD_STOP_MSG_SIZE MEI_WD_HDR_SIZE
31#define MEI_WD_START_MSG_SIZE (MEI_WD_HDR_SIZE + 16)
32
33#define MEI_WD_DEFAULT_TIMEOUT 120 /* seconds */
34#define MEI_WD_MIN_TIMEOUT 120 /* seconds */
35#define MEI_WD_MAX_TIMEOUT 65535 /* seconds */
36
c216fdeb
TW
37#define MEI_WD_STOP_TIMEOUT 10 /* msecs */
38
ab841160
OW
39#define MEI_WD_STATE_INDEPENDENCE_MSG_SENT (1 << 0)
40
edf1eed4
TW
41#define MEI_RD_MSG_BUF_SIZE (128 * sizeof(u32))
42
9ce178e5 43
ab841160
OW
44/*
45 * AMTHI Client UUID
46 */
47extern const uuid_le mei_amthi_guid;
48
49/*
50 * Watchdog Client UUID
51 */
52extern const uuid_le mei_wd_guid;
53
54/*
55 * Watchdog independence state message
56 */
57extern const u8 mei_wd_state_independence_msg[3][4];
58
1e2776c3
TW
59/*
60 * Number of Maximum MEI Clients
61 */
62#define MEI_CLIENTS_MAX 256
63
ab841160
OW
64/*
65 * Number of File descriptors/handles
66 * that can be opened to the driver.
67 *
1e2776c3
TW
68 * Limit to 253: 256 Total Clients
69 * minus internal client for MEI Bus Messags
ab841160
OW
70 * minus internal client for AMTHI
71 * minus internal client for Watchdog
72 */
1e2776c3 73#define MEI_MAX_OPEN_HANDLE_COUNT (MEI_CLIENTS_MAX - 3)
ab841160 74
1d3f3da3
TW
75/*
76 * Internal Clients Number
77 */
78#define MEI_WD_HOST_CLIENT_ID 1
79#define MEI_IAMTHIF_HOST_CLIENT_ID 2
80
ab841160
OW
81
82/* File state */
83enum file_state {
84 MEI_FILE_INITIALIZING = 0,
85 MEI_FILE_CONNECTING,
86 MEI_FILE_CONNECTED,
87 MEI_FILE_DISCONNECTING,
88 MEI_FILE_DISCONNECTED
89};
90
91/* MEI device states */
b210d750
TW
92enum mei_dev_state {
93 MEI_DEV_INITIALIZING = 0,
94 MEI_DEV_INIT_CLIENTS,
95 MEI_DEV_ENABLED,
96 MEI_DEV_RESETING,
97 MEI_DEV_DISABLED,
98 MEI_DEV_RECOVERING_FROM_RESET,
99 MEI_DEV_POWER_DOWN,
100 MEI_DEV_POWER_UP
ab841160
OW
101};
102
b210d750
TW
103const char *mei_dev_state_str(int state);
104
5f9092f3 105/* init clients states*/
ab841160
OW
106enum mei_init_clients_states {
107 MEI_START_MESSAGE = 0,
108 MEI_ENUM_CLIENTS_MESSAGE,
109 MEI_CLIENT_PROPERTIES_MESSAGE
110};
111
112enum iamthif_states {
113 MEI_IAMTHIF_IDLE,
114 MEI_IAMTHIF_WRITING,
115 MEI_IAMTHIF_FLOW_CONTROL,
116 MEI_IAMTHIF_READING,
117 MEI_IAMTHIF_READ_COMPLETE
118};
119
120enum mei_file_transaction_states {
121 MEI_IDLE,
122 MEI_WRITING,
123 MEI_WRITE_COMPLETE,
124 MEI_FLOW_CONTROL,
125 MEI_READING,
126 MEI_READ_COMPLETE
127};
128
c216fdeb
TW
129enum mei_wd_states {
130 MEI_WD_IDLE,
131 MEI_WD_RUNNING,
132 MEI_WD_STOPPING,
133};
134
4b8960b4
TW
135/**
136 * enum mei_cb_file_ops - file operation associated with the callback
137 * @MEI_FOP_READ - read
138 * @MEI_FOP_WRITE - write
139 * @MEI_FOP_IOCTL - ioctl
140 * @MEI_FOP_OPEN - open
141 * @MEI_FOP_CLOSE - close
142 */
143enum mei_cb_file_ops {
144 MEI_FOP_READ = 0,
145 MEI_FOP_WRITE,
146 MEI_FOP_IOCTL,
147 MEI_FOP_OPEN,
148 MEI_FOP_CLOSE
ab841160
OW
149};
150
151/*
152 * Intel MEI message data struct
153 */
154struct mei_message_data {
155 u32 size;
edf1eed4 156 unsigned char *data;
f060939d 157};
ab841160
OW
158
159
db3ed431
TW
160struct mei_cl;
161
4b8960b4 162/**
db3ed431
TW
163 * struct mei_cl_cb - file operation callback structure
164 *
165 * @cl - file client who is running this operation
4b8960b4 166 * @fop_type - file operation type
db3ed431 167 */
ab841160 168struct mei_cl_cb {
fb601adb 169 struct list_head list;
db3ed431 170 struct mei_cl *cl;
4b8960b4 171 enum mei_cb_file_ops fop_type;
ab841160
OW
172 struct mei_message_data request_buffer;
173 struct mei_message_data response_buffer;
ebb108ef 174 unsigned long buf_idx;
ab841160
OW
175 unsigned long read_time;
176 struct file *file_object;
177};
178
179/* MEI client instance carried as file->pirvate_data*/
180struct mei_cl {
181 struct list_head link;
182 struct mei_device *dev;
183 enum file_state state;
184 wait_queue_head_t tx_wait;
185 wait_queue_head_t rx_wait;
186 wait_queue_head_t wait;
187 int read_pending;
188 int status;
189 /* ID of client connected */
190 u8 host_client_id;
191 u8 me_client_id;
192 u8 mei_flow_ctrl_creds;
193 u8 timer_count;
194 enum mei_file_transaction_states reading_state;
195 enum mei_file_transaction_states writing_state;
196 int sm_state;
197 struct mei_cl_cb *read_cb;
198};
199
24aadc80 200/**
5fb54fb4 201 * struct mei_device - MEI private device struct
24aadc80 202 * @hbuf_depth - depth of host(write) buffer
5fb54fb4 203 * @wr_ext_msg - buffer for hbm control responses (set in read cycle)
24aadc80 204 */
ab841160
OW
205struct mei_device {
206 struct pci_dev *pdev; /* pointer to pci device struct */
207 /*
208 * lists of queues
209 */
e773efc4 210 /* array of pointers to aio lists */
fb601adb
TW
211 struct mei_cl_cb read_list; /* driver read queue */
212 struct mei_cl_cb write_list; /* driver write queue */
213 struct mei_cl_cb write_waiting_list; /* write waiting queue */
214 struct mei_cl_cb ctrl_wr_list; /* managed write IOCTL list */
215 struct mei_cl_cb ctrl_rd_list; /* managed read IOCTL list */
ab841160 216
ab841160
OW
217 /*
218 * list of files
219 */
220 struct list_head file_list;
eb9af0ac 221 long open_handle_count;
ab841160
OW
222 /*
223 * memory of device
224 */
225 unsigned int mem_base;
226 unsigned int mem_length;
227 void __iomem *mem_addr;
228 /*
229 * lock for the device
230 */
231 struct mutex device_lock; /* device lock */
a61c6530 232 struct delayed_work timer_work; /* MEI timer delayed work (timeouts) */
eb9af0ac 233 bool recvd_msg;
ab841160
OW
234 /*
235 * hw states of host and fw(ME)
236 */
237 u32 host_hw_state;
238 u32 me_hw_state;
24aadc80 239 u8 hbuf_depth;
ab841160
OW
240 /*
241 * waiting queue for receive message from FW
242 */
243 wait_queue_head_t wait_recvd_msg;
244 wait_queue_head_t wait_stop_wd;
245
246 /*
247 * mei device states
248 */
b210d750 249 enum mei_dev_state dev_state;
ab841160
OW
250 enum mei_init_clients_states init_clients_state;
251 u16 init_clients_timer;
eb9af0ac 252 bool need_reset;
ab841160 253
edf1eed4 254 unsigned char rd_msg_buf[MEI_RD_MSG_BUF_SIZE]; /* control messages */
ab841160 255 u32 rd_msg_hdr;
5fb54fb4
TW
256 u32 wr_msg_buf[128]; /* used for control messages */
257 struct {
258 struct mei_msg_hdr hdr;
259 unsigned char data[4]; /* All HBM messages are 4 bytes */
260 } wr_ext_msg; /* for control responses */
ab841160
OW
261
262 struct hbm_version version;
263
ab841160
OW
264 struct mei_me_client *me_clients; /* Note: memory has to be allocated */
265 DECLARE_BITMAP(me_clients_map, MEI_CLIENTS_MAX);
266 DECLARE_BITMAP(host_clients_map, MEI_CLIENTS_MAX);
cf9673da 267 u8 me_clients_num;
ab841160
OW
268 u8 me_client_presentation_num;
269 u8 me_client_index;
eb9af0ac 270 bool mei_host_buffer_is_empty;
ab841160 271
eb9af0ac 272 struct mei_cl wd_cl;
c216fdeb 273 enum mei_wd_states wd_state;
eb9af0ac 274 bool wd_pending;
c216fdeb 275 u16 wd_timeout;
248ffdf7 276 unsigned char wd_data[MEI_WD_START_MSG_SIZE];
ab841160
OW
277
278
e773efc4
TW
279 /* amthif list for cmd waiting */
280 struct mei_cl_cb amthif_cmd_list;
281 /* driver managed amthif list for reading completed amthif cmd data */
282 struct mei_cl_cb amthif_rd_complete_list;
ab841160
OW
283 struct file *iamthif_file_object;
284 struct mei_cl iamthif_cl;
eb9af0ac 285 struct mei_cl_cb *iamthif_current_cb;
ab841160
OW
286 int iamthif_mtu;
287 unsigned long iamthif_timer;
288 u32 iamthif_stall_timer;
289 unsigned char *iamthif_msg_buf; /* Note: memory has to be allocated */
290 u32 iamthif_msg_buf_size;
291 u32 iamthif_msg_buf_index;
ab841160 292 enum iamthif_states iamthif_state;
eb9af0ac
TW
293 bool iamthif_flow_control_pending;
294 bool iamthif_ioctl;
295 bool iamthif_canceled;
c1174c0e
SO
296
297 struct work_struct init_work;
ab841160
OW
298};
299
3870c320
TW
300static inline unsigned long mei_secs_to_jiffies(unsigned long sec)
301{
302 return msecs_to_jiffies(sec * MSEC_PER_SEC);
303}
304
ab841160
OW
305
306/*
307 * mei init function prototypes
308 */
c95efb74 309struct mei_device *mei_device_init(struct pci_dev *pdev);
ab841160
OW
310void mei_reset(struct mei_device *dev, int interrupts);
311int mei_hw_init(struct mei_device *dev);
312int mei_task_initialize_clients(void *data);
313int mei_initialize_clients(struct mei_device *dev);
ab841160 314int mei_disconnect_host_client(struct mei_device *dev, struct mei_cl *cl);
c95efb74 315void mei_allocate_me_clients_storage(struct mei_device *dev);
ab841160 316
ab841160 317
ff8b2f4e 318int mei_me_cl_link(struct mei_device *dev, struct mei_cl *cl,
07b509b7 319 const uuid_le *cguid, u8 host_client_id);
ff8b2f4e 320void mei_me_cl_unlink(struct mei_device *dev, struct mei_cl *cl);
07b509b7
TW
321int mei_me_cl_by_uuid(const struct mei_device *dev, const uuid_le *cuuid);
322int mei_me_cl_by_id(struct mei_device *dev, u8 client_id);
ab841160 323
0288c7c9 324/*
601a1efa 325 * MEI IO Functions
0288c7c9 326 */
664df38b 327struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl, struct file *fp);
601a1efa 328void mei_io_cb_free(struct mei_cl_cb *priv_cb);
664df38b
TW
329int mei_io_cb_alloc_req_buf(struct mei_cl_cb *cb, size_t length);
330int mei_io_cb_alloc_resp_buf(struct mei_cl_cb *cb, size_t length);
331
601a1efa 332
fb601adb
TW
333/**
334 * mei_io_list_init - Sets up a queue list.
335 *
336 * @list: An instance cl callback structure
337 */
338static inline void mei_io_list_init(struct mei_cl_cb *list)
339{
340 INIT_LIST_HEAD(&list->list);
341}
342void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl);
0288c7c9 343
ab841160 344/*
c95efb74
TW
345 * MEI ME Client Functions
346 */
347
348struct mei_cl *mei_cl_allocate(struct mei_device *dev);
0288c7c9
TW
349void mei_cl_init(struct mei_cl *cl, struct mei_device *dev);
350int mei_cl_flush_queues(struct mei_cl *cl);
351/**
352 * mei_cl_cmp_id - tells if file private data have same id
353 *
354 * @fe1: private data of 1. file object
355 * @fe2: private data of 2. file object
356 *
357 * returns true - if ids are the same and not NULL
358 */
359static inline bool mei_cl_cmp_id(const struct mei_cl *cl1,
360 const struct mei_cl *cl2)
361{
362 return cl1 && cl2 &&
363 (cl1->host_client_id == cl2->host_client_id) &&
364 (cl1->me_client_id == cl2->me_client_id);
365}
366
c95efb74
TW
367
368
369/*
370 * MEI Host Client Functions
371 */
372void mei_host_start_message(struct mei_device *dev);
373void mei_host_enum_clients_message(struct mei_device *dev);
c1174c0e
SO
374int mei_host_client_enumerate(struct mei_device *dev);
375void mei_host_client_init(struct work_struct *work);
c95efb74
TW
376
377/*
378 * MEI interrupt functions prototype
ab841160
OW
379 */
380irqreturn_t mei_interrupt_quick_handler(int irq, void *dev_id);
c95efb74 381irqreturn_t mei_interrupt_thread_handler(int irq, void *dev_id);
a61c6530 382void mei_timer(struct work_struct *work);
ab841160
OW
383
384/*
c95efb74 385 * MEI input output function prototype
ab841160
OW
386 */
387int mei_ioctl_connect_client(struct file *file,
388 struct mei_connect_client_data *data);
389
390int mei_start_read(struct mei_device *dev, struct mei_cl *cl);
391
ab841160 392
19838fb8
TW
393/*
394 * AMTHIF - AMT Host Interface Functions
395 */
396void mei_amthif_reset_params(struct mei_device *dev);
397
398void mei_amthif_host_init(struct mei_device *dev);
399
400int mei_amthif_write(struct mei_device *dev, struct mei_cl_cb *priv_cb);
401
402int mei_amthif_read(struct mei_device *dev, struct file *file,
744f0f2f
TW
403 char __user *ubuf, size_t length, loff_t *offset);
404
405unsigned int mei_amthif_poll(struct mei_device *dev,
406 struct file *file, poll_table *wait);
ab841160 407
a562d5c2
TW
408int mei_amthif_release(struct mei_device *dev, struct file *file);
409
19838fb8 410struct mei_cl_cb *mei_amthif_find_read_list_entry(struct mei_device *dev,
ab841160
OW
411 struct file *file);
412
19838fb8
TW
413void mei_amthif_run_next_cmd(struct mei_device *dev);
414
415
416int mei_amthif_read_message(struct mei_cl_cb *complete_list,
417 struct mei_device *dev, struct mei_msg_hdr *mei_hdr);
ab841160 418
24c656e5
TW
419int mei_amthif_irq_write_complete(struct mei_device *dev, s32 *slots,
420 struct mei_cl_cb *cb, struct mei_cl_cb *cmpl_list);
ab841160 421
19838fb8
TW
422void mei_amthif_complete(struct mei_device *dev, struct mei_cl_cb *cb);
423int mei_amthif_irq_read_message(struct mei_cl_cb *complete_list,
424 struct mei_device *dev, struct mei_msg_hdr *mei_hdr);
425int mei_amthif_irq_read(struct mei_device *dev, s32 *slots);
ab841160
OW
426
427/*
428 * Register Access Function
429 */
430
431/**
432 * mei_reg_read - Reads 32bit data from the mei device
433 *
434 * @dev: the device structure
435 * @offset: offset from which to read the data
436 *
92eb4013 437 * returns register value (u32)
ab841160 438 */
4a0d6a74
TW
439static inline u32 mei_reg_read(const struct mei_device *dev,
440 unsigned long offset)
ab841160
OW
441{
442 return ioread32(dev->mem_addr + offset);
443}
444
445/**
446 * mei_reg_write - Writes 32bit data to the mei device
447 *
448 * @dev: the device structure
449 * @offset: offset from which to write the data
92eb4013 450 * @value: register value to write (u32)
ab841160 451 */
4a0d6a74
TW
452static inline void mei_reg_write(const struct mei_device *dev,
453 unsigned long offset, u32 value)
ab841160
OW
454{
455 iowrite32(value, dev->mem_addr + offset);
456}
457
458/**
459 * mei_hcsr_read - Reads 32bit data from the host CSR
460 *
461 * @dev: the device structure
462 *
463 * returns the byte read.
464 */
4a0d6a74 465static inline u32 mei_hcsr_read(const struct mei_device *dev)
ab841160
OW
466{
467 return mei_reg_read(dev, H_CSR);
468}
469
470/**
471 * mei_mecsr_read - Reads 32bit data from the ME CSR
472 *
473 * @dev: the device structure
474 *
475 * returns ME_CSR_HA register value (u32)
476 */
4a0d6a74 477static inline u32 mei_mecsr_read(const struct mei_device *dev)
ab841160
OW
478{
479 return mei_reg_read(dev, ME_CSR_HA);
480}
481
482/**
483 * get_me_cb_rw - Reads 32bit data from the mei ME_CB_RW register
484 *
485 * @dev: the device structure
486 *
487 * returns ME_CB_RW register value (u32)
488 */
4a0d6a74 489static inline u32 mei_mecbrw_read(const struct mei_device *dev)
ab841160
OW
490{
491 return mei_reg_read(dev, ME_CB_RW);
492}
493
494
495/*
496 * mei interface function prototypes
497 */
498void mei_hcsr_set(struct mei_device *dev);
499void mei_csr_clear_his(struct mei_device *dev);
500
501void mei_enable_interrupts(struct mei_device *dev);
502void mei_disable_interrupts(struct mei_device *dev);
503
5bd64714
TW
504static inline struct mei_msg_hdr *mei_hbm_hdr(u32 *buf, size_t length)
505{
506 struct mei_msg_hdr *hdr = (struct mei_msg_hdr *)buf;
507 hdr->host_addr = 0;
508 hdr->me_addr = 0;
509 hdr->length = length;
510 hdr->msg_complete = 1;
511 hdr->reserved = 0;
512 return hdr;
513}
514
15d4acc5
TW
515#define MEI_HDR_FMT "hdr:host=%02d me=%02d len=%d comp=%1d"
516#define MEI_HDR_PRM(hdr) \
517 (hdr)->host_addr, (hdr)->me_addr, \
518 (hdr)->length, (hdr)->msg_complete
519
ab841160 520#endif