blob: d786da6aa25b352a5cb2aef7179d82a118085de5 [file] [log] [blame]
Oren Weilab841162011-05-15 13:43:41 +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 Weilab841162011-05-15 13:43:41 +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_DEV_H_
18#define _MEI_DEV_H_
19
20#include <linux/types.h>
Oren Weil9ce178e2011-09-07 09:03:09 +030021#include <linux/watchdog.h>
Tomas Winkler744f0f22012-11-11 17:38:02 +020022#include <linux/poll.h>
Tomas Winkler4f3afe12012-05-09 16:38:59 +030023#include <linux/mei.h>
Samuel Ortize5354102013-03-27 17:29:53 +020024#include <linux/mei_cl_bus.h>
Tomas Winkler66ef5ea2012-12-25 19:06:02 +020025
Oren Weilab841162011-05-15 13:43:41 +030026#include "hw.h"
Tomas Winkler9dc64d62013-01-08 23:07:17 +020027#include "hw-me-regs.h"
Oren Weilab841162011-05-15 13:43:41 +030028
29/*
Oren Weilab841162011-05-15 13:43:41 +030030 * watch dog definition
31 */
Tomas Winkler248ffdf2012-08-16 19:39:42 +030032#define MEI_WD_HDR_SIZE 4
33#define MEI_WD_STOP_MSG_SIZE MEI_WD_HDR_SIZE
34#define MEI_WD_START_MSG_SIZE (MEI_WD_HDR_SIZE + 16)
35
36#define MEI_WD_DEFAULT_TIMEOUT 120 /* seconds */
37#define MEI_WD_MIN_TIMEOUT 120 /* seconds */
38#define MEI_WD_MAX_TIMEOUT 65535 /* seconds */
39
Tomas Winklerc216fde2012-08-16 19:39:43 +030040#define MEI_WD_STOP_TIMEOUT 10 /* msecs */
41
Oren Weilab841162011-05-15 13:43:41 +030042#define MEI_WD_STATE_INDEPENDENCE_MSG_SENT (1 << 0)
43
Tomas Winkleredf1eed2012-02-09 19:25:54 +020044#define MEI_RD_MSG_BUF_SIZE (128 * sizeof(u32))
45
Oren Weil9ce178e2011-09-07 09:03:09 +030046
47/*
Oren Weilab841162011-05-15 13:43:41 +030048 * AMTHI Client UUID
49 */
Tomas Winkler1a1aca42013-01-08 23:07:21 +020050extern const uuid_le mei_amthif_guid;
Oren Weilab841162011-05-15 13:43:41 +030051
52/*
53 * Watchdog Client UUID
54 */
55extern const uuid_le mei_wd_guid;
56
57/*
58 * Watchdog independence state message
59 */
60extern const u8 mei_wd_state_independence_msg[3][4];
61
62/*
Tomas Winkler1e2776c2012-08-24 00:35:58 +030063 * Number of Maximum MEI Clients
64 */
65#define MEI_CLIENTS_MAX 256
66
67/*
Oren Weilab841162011-05-15 13:43:41 +030068 * Number of File descriptors/handles
69 * that can be opened to the driver.
70 *
Tomas Winkler781d0d82013-01-08 23:07:22 +020071 * Limit to 255: 256 Total Clients
Tomas Winkler1e2776c2012-08-24 00:35:58 +030072 * minus internal client for MEI Bus Messags
Oren Weilab841162011-05-15 13:43:41 +030073 */
Tomas Winkler781d0d82013-01-08 23:07:22 +020074#define MEI_MAX_OPEN_HANDLE_COUNT (MEI_CLIENTS_MAX - 1)
Oren Weilab841162011-05-15 13:43:41 +030075
Tomas Winkler1d3f3da2012-12-25 19:06:01 +020076/*
77 * Internal Clients Number
78 */
Tomas Winkler781d0d82013-01-08 23:07:22 +020079#define MEI_HOST_CLIENT_ID_ANY (-1)
80#define MEI_HBM_HOST_CLIENT_ID 0 /* not used, just for documentation */
Tomas Winkler1d3f3da2012-12-25 19:06:01 +020081#define MEI_WD_HOST_CLIENT_ID 1
82#define MEI_IAMTHIF_HOST_CLIENT_ID 2
83
Oren Weilab841162011-05-15 13:43:41 +030084
85/* File state */
86enum file_state {
87 MEI_FILE_INITIALIZING = 0,
88 MEI_FILE_CONNECTING,
89 MEI_FILE_CONNECTED,
90 MEI_FILE_DISCONNECTING,
91 MEI_FILE_DISCONNECTED
92};
93
94/* MEI device states */
Tomas Winklerb210d752012-08-07 00:03:56 +030095enum mei_dev_state {
96 MEI_DEV_INITIALIZING = 0,
97 MEI_DEV_INIT_CLIENTS,
98 MEI_DEV_ENABLED,
99 MEI_DEV_RESETING,
100 MEI_DEV_DISABLED,
Tomas Winklerb210d752012-08-07 00:03:56 +0300101 MEI_DEV_POWER_DOWN,
102 MEI_DEV_POWER_UP
Oren Weilab841162011-05-15 13:43:41 +0300103};
104
Tomas Winklerb210d752012-08-07 00:03:56 +0300105const char *mei_dev_state_str(int state);
106
Justin P. Mattock5f9092f32012-03-12 07:18:09 -0700107/* init clients states*/
Oren Weilab841162011-05-15 13:43:41 +0300108enum mei_init_clients_states {
109 MEI_START_MESSAGE = 0,
110 MEI_ENUM_CLIENTS_MESSAGE,
111 MEI_CLIENT_PROPERTIES_MESSAGE
112};
113
114enum iamthif_states {
115 MEI_IAMTHIF_IDLE,
116 MEI_IAMTHIF_WRITING,
117 MEI_IAMTHIF_FLOW_CONTROL,
118 MEI_IAMTHIF_READING,
119 MEI_IAMTHIF_READ_COMPLETE
120};
121
122enum mei_file_transaction_states {
123 MEI_IDLE,
124 MEI_WRITING,
125 MEI_WRITE_COMPLETE,
126 MEI_FLOW_CONTROL,
127 MEI_READING,
128 MEI_READ_COMPLETE
129};
130
Tomas Winklerc216fde2012-08-16 19:39:43 +0300131enum mei_wd_states {
132 MEI_WD_IDLE,
133 MEI_WD_RUNNING,
134 MEI_WD_STOPPING,
135};
136
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200137/**
138 * enum mei_cb_file_ops - file operation associated with the callback
139 * @MEI_FOP_READ - read
140 * @MEI_FOP_WRITE - write
141 * @MEI_FOP_IOCTL - ioctl
142 * @MEI_FOP_OPEN - open
143 * @MEI_FOP_CLOSE - close
144 */
145enum mei_cb_file_ops {
146 MEI_FOP_READ = 0,
147 MEI_FOP_WRITE,
148 MEI_FOP_IOCTL,
149 MEI_FOP_OPEN,
150 MEI_FOP_CLOSE
Oren Weilab841162011-05-15 13:43:41 +0300151};
152
153/*
154 * Intel MEI message data struct
155 */
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300156struct mei_msg_data {
Oren Weilab841162011-05-15 13:43:41 +0300157 u32 size;
Tomas Winkleredf1eed2012-02-09 19:25:54 +0200158 unsigned char *data;
Tomas Winklerf0609392012-09-11 00:43:21 +0300159};
Oren Weilab841162011-05-15 13:43:41 +0300160
Tomas Winklerdb7da792012-12-25 19:06:05 +0200161/**
162 * struct mei_me_client - representation of me (fw) client
163 *
164 * @props - client properties
165 * @client_id - me client id
166 * @mei_flow_ctrl_creds - flow control credits
167 */
168struct mei_me_client {
169 struct mei_client_properties props;
170 u8 client_id;
171 u8 mei_flow_ctrl_creds;
172};
173
Oren Weilab841162011-05-15 13:43:41 +0300174
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200175struct mei_cl;
176
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200177/**
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200178 * struct mei_cl_cb - file operation callback structure
179 *
180 * @cl - file client who is running this operation
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200181 * @fop_type - file operation type
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200182 */
Oren Weilab841162011-05-15 13:43:41 +0300183struct mei_cl_cb {
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200184 struct list_head list;
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200185 struct mei_cl *cl;
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200186 enum mei_cb_file_ops fop_type;
Tomas Winkler4234a6d2013-04-08 21:56:37 +0300187 struct mei_msg_data request_buffer;
188 struct mei_msg_data response_buffer;
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200189 unsigned long buf_idx;
Oren Weilab841162011-05-15 13:43:41 +0300190 unsigned long read_time;
191 struct file *file_object;
192};
193
194/* MEI client instance carried as file->pirvate_data*/
195struct mei_cl {
196 struct list_head link;
197 struct mei_device *dev;
198 enum file_state state;
199 wait_queue_head_t tx_wait;
200 wait_queue_head_t rx_wait;
201 wait_queue_head_t wait;
Oren Weilab841162011-05-15 13:43:41 +0300202 int status;
203 /* ID of client connected */
204 u8 host_client_id;
205 u8 me_client_id;
206 u8 mei_flow_ctrl_creds;
207 u8 timer_count;
208 enum mei_file_transaction_states reading_state;
209 enum mei_file_transaction_states writing_state;
210 int sm_state;
211 struct mei_cl_cb *read_cb;
Samuel Ortiza7b71bc2013-03-27 17:29:56 +0200212
213 /* MEI CL bus data */
214 struct mei_cl_device *device;
215 struct list_head device_link;
216 uuid_le device_uuid;
Oren Weilab841162011-05-15 13:43:41 +0300217};
218
Tomas Winkler827eef52013-02-06 14:06:41 +0200219/** struct mei_hw_ops
220 *
Tomas Winkler827eef52013-02-06 14:06:41 +0200221 * @host_is_ready - query for host readiness
222
223 * @hw_is_ready - query if hw is ready
224 * @hw_reset - reset hw
Tomas Winkleraafae7e2013-03-11 18:27:03 +0200225 * @hw_start - start hw after reset
Tomas Winkler827eef52013-02-06 14:06:41 +0200226 * @hw_config - configure hw
227
228 * @intr_clear - clear pending interrupts
229 * @intr_enable - enable interrupts
230 * @intr_disable - disable interrupts
231
232 * @hbuf_free_slots - query for write buffer empty slots
233 * @hbuf_is_ready - query if write buffer is empty
234 * @hbuf_max_len - query for write buffer max len
235
236 * @write - write a message to FW
237
238 * @rdbuf_full_slots - query how many slots are filled
239
240 * @read_hdr - get first 4 bytes (header)
241 * @read - read a buffer from the FW
242 */
243struct mei_hw_ops {
244
Tomas Winkler827eef52013-02-06 14:06:41 +0200245 bool (*host_is_ready) (struct mei_device *dev);
246
247 bool (*hw_is_ready) (struct mei_device *dev);
248 void (*hw_reset) (struct mei_device *dev, bool enable);
Tomas Winkleraafae7e2013-03-11 18:27:03 +0200249 int (*hw_start) (struct mei_device *dev);
Tomas Winkler827eef52013-02-06 14:06:41 +0200250 void (*hw_config) (struct mei_device *dev);
251
252 void (*intr_clear) (struct mei_device *dev);
253 void (*intr_enable) (struct mei_device *dev);
254 void (*intr_disable) (struct mei_device *dev);
255
256 int (*hbuf_free_slots) (struct mei_device *dev);
257 bool (*hbuf_is_ready) (struct mei_device *dev);
258 size_t (*hbuf_max_len) (const struct mei_device *dev);
259
260 int (*write)(struct mei_device *dev,
261 struct mei_msg_hdr *hdr,
262 unsigned char *buf);
263
264 int (*rdbuf_full_slots)(struct mei_device *dev);
265
266 u32 (*read_hdr)(const struct mei_device *dev);
267 int (*read) (struct mei_device *dev,
268 unsigned char *buf, unsigned long len);
269};
270
Samuel Ortize5354102013-03-27 17:29:53 +0200271/* MEI bus API*/
272struct mei_cl_device *mei_cl_add_device(struct mei_device *dev,
273 uuid_le uuid, char *name);
274void mei_cl_remove_device(struct mei_cl_device *device);
275
Samuel Ortiz44d88d92013-03-27 17:29:58 +0200276int __mei_cl_async_send(struct mei_cl *cl, u8 *buf, size_t length);
Samuel Ortiz3e833292013-03-27 17:29:55 +0200277int __mei_cl_send(struct mei_cl *cl, u8 *buf, size_t length);
278int __mei_cl_recv(struct mei_cl *cl, u8 *buf, size_t length);
279
280/**
281 * struct mei_cl_transport_ops - MEI CL device transport ops
282 * This structure allows ME host clients to implement technology
283 * specific transport layers.
284 *
285 * @send: Tx hook for the device. This allows ME host clients to trap
286 * the device driver buffers before actually physically
287 * pushing it to the ME.
288 * @recv: Rx hook for the device. This allows ME host clients to trap the
289 * ME buffers before forwarding them to the device driver.
290 */
291struct mei_cl_transport_ops {
292 int (*send)(struct mei_cl_device *device, u8 *buf, size_t length);
293 int (*recv)(struct mei_cl_device *device, u8 *buf, size_t length);
294};
295
Samuel Ortizcf3baef2013-03-27 17:29:57 +0200296void mei_cl_bus_rx_event(struct mei_cl *cl);
297int mei_cl_bus_init(void);
298void mei_cl_bus_exit(void);
299
300
Samuel Ortize5354102013-03-27 17:29:53 +0200301/**
302 * struct mei_cl_device - MEI device handle
303 * An mei_cl_device pointer is returned from mei_add_device()
304 * and links MEI bus clients to their actual ME host client pointer.
305 * Drivers for MEI devices will get an mei_cl_device pointer
306 * when being probed and shall use it for doing ME bus I/O.
307 *
308 * @dev: linux driver model device pointer
309 * @uuid: me client uuid
310 * @cl: mei client
Samuel Ortiz3e833292013-03-27 17:29:55 +0200311 * @ops: ME transport ops
312 * @event_cb: Drivers register this callback to get asynchronous ME
313 * events (e.g. Rx buffer pending) notifications.
314 * @events: Events bitmask sent to the driver.
Samuel Ortize5354102013-03-27 17:29:53 +0200315 * @priv_data: client private data
316 */
317struct mei_cl_device {
318 struct device dev;
319
320 struct mei_cl *cl;
321
Samuel Ortiz3e833292013-03-27 17:29:55 +0200322 const struct mei_cl_transport_ops *ops;
323
324 struct work_struct event_work;
325 mei_cl_event_cb_t event_cb;
326 void *event_context;
327 unsigned long events;
328
Samuel Ortize5354102013-03-27 17:29:53 +0200329 void *priv_data;
330};
331
Tomas Winkler24aadc82012-06-25 23:46:27 +0300332/**
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200333 * struct mei_device - MEI private device struct
Tomas Winkler330dd7d2013-02-06 14:06:43 +0200334
Tomas Winklerfecb0d52012-12-25 19:06:04 +0200335 * @mem_addr - mem mapped base register address
Tomas Winkler330dd7d2013-02-06 14:06:43 +0200336
337 * @hbuf_depth - depth of hardware host/write buffer is slots
338 * @hbuf_is_ready - query if the host host/write buffer is ready
339 * @wr_msg - the buffer for hbm control messages
340 * @wr_ext_msg - the buffer for hbm control responses (set in read cycle)
Tomas Winkler24aadc82012-06-25 23:46:27 +0300341 */
Oren Weilab841162011-05-15 13:43:41 +0300342struct mei_device {
343 struct pci_dev *pdev; /* pointer to pci device struct */
344 /*
345 * lists of queues
346 */
Tomas Winklere773efc2012-11-11 17:37:58 +0200347 /* array of pointers to aio lists */
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200348 struct mei_cl_cb read_list; /* driver read queue */
349 struct mei_cl_cb write_list; /* driver write queue */
350 struct mei_cl_cb write_waiting_list; /* write waiting queue */
351 struct mei_cl_cb ctrl_wr_list; /* managed write IOCTL list */
352 struct mei_cl_cb ctrl_rd_list; /* managed read IOCTL list */
Oren Weilab841162011-05-15 13:43:41 +0300353
Oren Weilab841162011-05-15 13:43:41 +0300354 /*
355 * list of files
356 */
357 struct list_head file_list;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300358 long open_handle_count;
Tomas Winklerfecb0d52012-12-25 19:06:04 +0200359
Oren Weilab841162011-05-15 13:43:41 +0300360 /*
361 * lock for the device
362 */
363 struct mutex device_lock; /* device lock */
Oren Weila61c6532011-09-07 09:03:13 +0300364 struct delayed_work timer_work; /* MEI timer delayed work (timeouts) */
Tomas Winkleraafae7e2013-03-11 18:27:03 +0200365
366 bool recvd_hw_ready;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300367 bool recvd_msg;
Tomas Winkler52c34562013-02-06 14:06:40 +0200368
Oren Weilab841162011-05-15 13:43:41 +0300369 /*
370 * waiting queue for receive message from FW
371 */
Tomas Winkleraafae7e2013-03-11 18:27:03 +0200372 wait_queue_head_t wait_hw_ready;
Oren Weilab841162011-05-15 13:43:41 +0300373 wait_queue_head_t wait_recvd_msg;
374 wait_queue_head_t wait_stop_wd;
375
376 /*
377 * mei device states
378 */
Tomas Winklerb210d752012-08-07 00:03:56 +0300379 enum mei_dev_state dev_state;
Oren Weilab841162011-05-15 13:43:41 +0300380 enum mei_init_clients_states init_clients_state;
381 u16 init_clients_timer;
Oren Weilab841162011-05-15 13:43:41 +0300382
Tomas Winkleredf1eed2012-02-09 19:25:54 +0200383 unsigned char rd_msg_buf[MEI_RD_MSG_BUF_SIZE]; /* control messages */
Oren Weilab841162011-05-15 13:43:41 +0300384 u32 rd_msg_hdr;
Tomas Winklere46f1872012-12-25 19:06:10 +0200385
Tomas Winkler330dd7d2013-02-06 14:06:43 +0200386 /* write buffer */
387 u8 hbuf_depth;
388 bool hbuf_is_ready;
389
Tomas Winklere46f1872012-12-25 19:06:10 +0200390 /* used for control messages */
391 struct {
392 struct mei_msg_hdr hdr;
393 unsigned char data[128];
394 } wr_msg;
395
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200396 struct {
397 struct mei_msg_hdr hdr;
398 unsigned char data[4]; /* All HBM messages are 4 bytes */
399 } wr_ext_msg; /* for control responses */
Oren Weilab841162011-05-15 13:43:41 +0300400
401 struct hbm_version version;
402
Oren Weilab841162011-05-15 13:43:41 +0300403 struct mei_me_client *me_clients; /* Note: memory has to be allocated */
404 DECLARE_BITMAP(me_clients_map, MEI_CLIENTS_MAX);
405 DECLARE_BITMAP(host_clients_map, MEI_CLIENTS_MAX);
Tomas Winklercf9673d2011-06-06 10:44:33 +0300406 u8 me_clients_num;
Oren Weilab841162011-05-15 13:43:41 +0300407 u8 me_client_presentation_num;
408 u8 me_client_index;
409
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300410 struct mei_cl wd_cl;
Tomas Winklerc216fde2012-08-16 19:39:43 +0300411 enum mei_wd_states wd_state;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300412 bool wd_pending;
Tomas Winklerc216fde2012-08-16 19:39:43 +0300413 u16 wd_timeout;
Tomas Winkler248ffdf2012-08-16 19:39:42 +0300414 unsigned char wd_data[MEI_WD_START_MSG_SIZE];
Oren Weilab841162011-05-15 13:43:41 +0300415
416
Tomas Winklere773efc2012-11-11 17:37:58 +0200417 /* amthif list for cmd waiting */
418 struct mei_cl_cb amthif_cmd_list;
419 /* driver managed amthif list for reading completed amthif cmd data */
420 struct mei_cl_cb amthif_rd_complete_list;
Oren Weilab841162011-05-15 13:43:41 +0300421 struct file *iamthif_file_object;
422 struct mei_cl iamthif_cl;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300423 struct mei_cl_cb *iamthif_current_cb;
Oren Weilab841162011-05-15 13:43:41 +0300424 int iamthif_mtu;
425 unsigned long iamthif_timer;
426 u32 iamthif_stall_timer;
427 unsigned char *iamthif_msg_buf; /* Note: memory has to be allocated */
428 u32 iamthif_msg_buf_size;
429 u32 iamthif_msg_buf_index;
Oren Weilab841162011-05-15 13:43:41 +0300430 enum iamthif_states iamthif_state;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300431 bool iamthif_flow_control_pending;
432 bool iamthif_ioctl;
433 bool iamthif_canceled;
Samuel Ortizc1174c02012-11-18 15:13:20 +0200434
435 struct work_struct init_work;
Tomas Winkler827eef52013-02-06 14:06:41 +0200436
Samuel Ortiza7b71bc2013-03-27 17:29:56 +0200437 /* List of bus devices */
438 struct list_head device_list;
439
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300440#if IS_ENABLED(CONFIG_DEBUG_FS)
441 struct dentry *dbgfs_dir;
442#endif /* CONFIG_DEBUG_FS */
443
444
Tomas Winkler827eef52013-02-06 14:06:41 +0200445 const struct mei_hw_ops *ops;
Tomas Winkler52c34562013-02-06 14:06:40 +0200446 char hw[0] __aligned(sizeof(void *));
Oren Weilab841162011-05-15 13:43:41 +0300447};
448
Tomas Winkler3870c322012-11-01 21:17:14 +0200449static inline unsigned long mei_secs_to_jiffies(unsigned long sec)
450{
451 return msecs_to_jiffies(sec * MSEC_PER_SEC);
452}
453
Tomas Winklerc8c8d082013-03-11 18:27:02 +0200454/**
455 * mei_data2slots - get slots - number of (dwords) from a message length
456 * + size of the mei header
457 * @length - size of the messages in bytes
458 * returns - number of slots
459 */
460static inline u32 mei_data2slots(size_t length)
461{
462 return DIV_ROUND_UP(sizeof(struct mei_msg_hdr) + length, 4);
463}
464
Oren Weilab841162011-05-15 13:43:41 +0300465/*
466 * mei init function prototypes
467 */
Tomas Winkler52c34562013-02-06 14:06:40 +0200468void mei_device_init(struct mei_device *dev);
Oren Weilab841162011-05-15 13:43:41 +0300469void mei_reset(struct mei_device *dev, int interrupts);
Tomas Winklerc4d589b2013-03-27 16:58:28 +0200470int mei_start(struct mei_device *dev);
Tomas Winkler7cb035d2013-03-10 13:56:08 +0200471void mei_stop(struct mei_device *dev);
Tomas Winklerc95efb72011-05-25 17:28:21 +0300472
Tomas Winklerc95efb72011-05-25 17:28:21 +0300473/*
474 * MEI interrupt functions prototype
Oren Weilab841162011-05-15 13:43:41 +0300475 */
Tomas Winkler06ecd642013-02-06 14:06:42 +0200476
Oren Weila61c6532011-09-07 09:03:13 +0300477void mei_timer(struct work_struct *work);
Tomas Winkler06ecd642013-02-06 14:06:42 +0200478int mei_irq_read_handler(struct mei_device *dev,
479 struct mei_cl_cb *cmpl_list, s32 *slots);
480
481int mei_irq_write_handler(struct mei_device *dev, struct mei_cl_cb *cmpl_list);
Tomas Winkler4c6e22b2013-03-17 11:41:20 +0200482void mei_irq_compl_handler(struct mei_device *dev, struct mei_cl_cb *cmpl_list);
Oren Weilab841162011-05-15 13:43:41 +0300483
484/*
Tomas Winkler19838fb2012-11-01 21:17:15 +0200485 * AMTHIF - AMT Host Interface Functions
486 */
487void mei_amthif_reset_params(struct mei_device *dev);
488
Tomas Winkler781d0d82013-01-08 23:07:22 +0200489int mei_amthif_host_init(struct mei_device *dev);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200490
491int mei_amthif_write(struct mei_device *dev, struct mei_cl_cb *priv_cb);
492
493int mei_amthif_read(struct mei_device *dev, struct file *file,
Tomas Winkler744f0f22012-11-11 17:38:02 +0200494 char __user *ubuf, size_t length, loff_t *offset);
495
496unsigned int mei_amthif_poll(struct mei_device *dev,
497 struct file *file, poll_table *wait);
Oren Weilab841162011-05-15 13:43:41 +0300498
Tomas Winklera562d5c2012-11-11 17:38:01 +0200499int mei_amthif_release(struct mei_device *dev, struct file *file);
500
Tomas Winkler19838fb2012-11-01 21:17:15 +0200501struct mei_cl_cb *mei_amthif_find_read_list_entry(struct mei_device *dev,
Oren Weilab841162011-05-15 13:43:41 +0300502 struct file *file);
503
Tomas Winkler19838fb2012-11-01 21:17:15 +0200504void mei_amthif_run_next_cmd(struct mei_device *dev);
Oren Weilab841162011-05-15 13:43:41 +0300505
Oren Weilab841162011-05-15 13:43:41 +0300506
Tomas Winkler24c656e2012-11-18 15:13:17 +0200507int mei_amthif_irq_write_complete(struct mei_device *dev, s32 *slots,
508 struct mei_cl_cb *cb, struct mei_cl_cb *cmpl_list);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200509
510void mei_amthif_complete(struct mei_device *dev, struct mei_cl_cb *cb);
511int mei_amthif_irq_read_message(struct mei_cl_cb *complete_list,
512 struct mei_device *dev, struct mei_msg_hdr *mei_hdr);
513int mei_amthif_irq_read(struct mei_device *dev, s32 *slots);
Oren Weilab841162011-05-15 13:43:41 +0300514
Tomas Winkler37e7d6e2013-01-08 23:07:16 +0200515
516int mei_wd_send(struct mei_device *dev);
517int mei_wd_stop(struct mei_device *dev);
518int mei_wd_host_init(struct mei_device *dev);
519/*
520 * mei_watchdog_register - Registering watchdog interface
521 * once we got connection to the WD Client
522 * @dev - mei device
523 */
524void mei_watchdog_register(struct mei_device *dev);
525/*
526 * mei_watchdog_unregister - Unregistering watchdog interface
527 * @dev - mei device
528 */
529void mei_watchdog_unregister(struct mei_device *dev);
530
Oren Weilab841162011-05-15 13:43:41 +0300531/*
532 * Register Access Function
533 */
534
Tomas Winkler827eef52013-02-06 14:06:41 +0200535static inline void mei_hw_config(struct mei_device *dev)
536{
537 dev->ops->hw_config(dev);
538}
539static inline void mei_hw_reset(struct mei_device *dev, bool enable)
540{
541 dev->ops->hw_reset(dev, enable);
542}
Oren Weilab841162011-05-15 13:43:41 +0300543
Tomas Winkleraafae7e2013-03-11 18:27:03 +0200544static inline void mei_hw_start(struct mei_device *dev)
545{
546 dev->ops->hw_start(dev);
547}
548
Tomas Winkler827eef52013-02-06 14:06:41 +0200549static inline void mei_clear_interrupts(struct mei_device *dev)
550{
551 dev->ops->intr_clear(dev);
552}
Oren Weilab841162011-05-15 13:43:41 +0300553
Tomas Winkler827eef52013-02-06 14:06:41 +0200554static inline void mei_enable_interrupts(struct mei_device *dev)
555{
556 dev->ops->intr_enable(dev);
557}
Tomas Winklere7e0c232013-01-08 23:07:31 +0200558
Tomas Winkler827eef52013-02-06 14:06:41 +0200559static inline void mei_disable_interrupts(struct mei_device *dev)
560{
561 dev->ops->intr_disable(dev);
562}
Oren Weilab841162011-05-15 13:43:41 +0300563
Tomas Winkler827eef52013-02-06 14:06:41 +0200564static inline bool mei_host_is_ready(struct mei_device *dev)
565{
566 return dev->ops->host_is_ready(dev);
567}
568static inline bool mei_hw_is_ready(struct mei_device *dev)
569{
570 return dev->ops->hw_is_ready(dev);
571}
Tomas Winkler115ba282013-01-08 23:07:29 +0200572
Tomas Winkler827eef52013-02-06 14:06:41 +0200573static inline bool mei_hbuf_is_ready(struct mei_device *dev)
574{
575 return dev->ops->hbuf_is_ready(dev);
576}
Tomas Winkler3a65dd42012-12-25 19:06:06 +0200577
Tomas Winkler827eef52013-02-06 14:06:41 +0200578static inline int mei_hbuf_empty_slots(struct mei_device *dev)
579{
580 return dev->ops->hbuf_free_slots(dev);
581}
582
583static inline size_t mei_hbuf_max_len(const struct mei_device *dev)
584{
585 return dev->ops->hbuf_max_len(dev);
586}
587
588static inline int mei_write_message(struct mei_device *dev,
589 struct mei_msg_hdr *hdr,
590 unsigned char *buf)
591{
592 return dev->ops->write(dev, hdr, buf);
593}
594
595static inline u32 mei_read_hdr(const struct mei_device *dev)
596{
597 return dev->ops->read_hdr(dev);
598}
599
600static inline void mei_read_slots(struct mei_device *dev,
601 unsigned char *buf, unsigned long len)
602{
603 dev->ops->read(dev, buf, len);
604}
605
606static inline int mei_count_full_read_slots(struct mei_device *dev)
607{
608 return dev->ops->rdbuf_full_slots(dev);
609}
Tomas Winkler5bd64712012-11-18 15:13:14 +0200610
Tomas Winkler30e53bb2013-04-05 22:10:34 +0300611#if IS_ENABLED(CONFIG_DEBUG_FS)
612int mei_dbgfs_register(struct mei_device *dev, const char *name);
613void mei_dbgfs_deregister(struct mei_device *dev);
614#else
615static inline int mei_dbgfs_register(struct mei_device *dev, const char *name)
616{
617 return 0;
618}
619static inline void mei_dbgfs_deregister(struct mei_device *dev) {}
620#endif /* CONFIG_DEBUG_FS */
621
622int mei_register(struct mei_device *dev);
623void mei_deregister(struct mei_device *dev);
Tomas Winkler2703d4b2013-02-06 14:06:39 +0200624
Tomas Winkler15d4acc2012-12-25 19:06:00 +0200625#define MEI_HDR_FMT "hdr:host=%02d me=%02d len=%d comp=%1d"
626#define MEI_HDR_PRM(hdr) \
627 (hdr)->host_addr, (hdr)->me_addr, \
628 (hdr)->length, (hdr)->msg_complete
629
Oren Weilab841162011-05-15 13:43:41 +0300630#endif