blob: c974292f16d6d77567177ad2ea97910379082e38 [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>
Tomas Winkler66ef5ea2012-12-25 19:06:02 +020024
Oren Weilab841162011-05-15 13:43:41 +030025#include "hw.h"
Tomas Winkler9dc64d62013-01-08 23:07:17 +020026#include "hw-me-regs.h"
Oren Weilab841162011-05-15 13:43:41 +030027
28/*
Oren Weilab841162011-05-15 13:43:41 +030029 * watch dog definition
30 */
Tomas Winkler248ffdf2012-08-16 19:39:42 +030031#define MEI_WD_HDR_SIZE 4
32#define MEI_WD_STOP_MSG_SIZE MEI_WD_HDR_SIZE
33#define MEI_WD_START_MSG_SIZE (MEI_WD_HDR_SIZE + 16)
34
35#define MEI_WD_DEFAULT_TIMEOUT 120 /* seconds */
36#define MEI_WD_MIN_TIMEOUT 120 /* seconds */
37#define MEI_WD_MAX_TIMEOUT 65535 /* seconds */
38
Tomas Winklerc216fde2012-08-16 19:39:43 +030039#define MEI_WD_STOP_TIMEOUT 10 /* msecs */
40
Oren Weilab841162011-05-15 13:43:41 +030041#define MEI_WD_STATE_INDEPENDENCE_MSG_SENT (1 << 0)
42
Tomas Winkleredf1eed2012-02-09 19:25:54 +020043#define MEI_RD_MSG_BUF_SIZE (128 * sizeof(u32))
44
Oren Weil9ce178e2011-09-07 09:03:09 +030045
46/*
Oren Weilab841162011-05-15 13:43:41 +030047 * AMTHI Client UUID
48 */
Tomas Winkler1a1aca42013-01-08 23:07:21 +020049extern const uuid_le mei_amthif_guid;
Oren Weilab841162011-05-15 13:43:41 +030050
51/*
52 * Watchdog Client UUID
53 */
54extern const uuid_le mei_wd_guid;
55
56/*
57 * Watchdog independence state message
58 */
59extern const u8 mei_wd_state_independence_msg[3][4];
60
61/*
Tomas Winkler1e2776c2012-08-24 00:35:58 +030062 * Number of Maximum MEI Clients
63 */
64#define MEI_CLIENTS_MAX 256
65
66/*
Oren Weilab841162011-05-15 13:43:41 +030067 * Number of File descriptors/handles
68 * that can be opened to the driver.
69 *
Tomas Winkler781d0d82013-01-08 23:07:22 +020070 * Limit to 255: 256 Total Clients
Tomas Winkler1e2776c2012-08-24 00:35:58 +030071 * minus internal client for MEI Bus Messags
Oren Weilab841162011-05-15 13:43:41 +030072 */
Tomas Winkler781d0d82013-01-08 23:07:22 +020073#define MEI_MAX_OPEN_HANDLE_COUNT (MEI_CLIENTS_MAX - 1)
Oren Weilab841162011-05-15 13:43:41 +030074
Tomas Winkler1d3f3da2012-12-25 19:06:01 +020075/*
76 * Internal Clients Number
77 */
Tomas Winkler781d0d82013-01-08 23:07:22 +020078#define MEI_HOST_CLIENT_ID_ANY (-1)
79#define MEI_HBM_HOST_CLIENT_ID 0 /* not used, just for documentation */
Tomas Winkler1d3f3da2012-12-25 19:06:01 +020080#define MEI_WD_HOST_CLIENT_ID 1
81#define MEI_IAMTHIF_HOST_CLIENT_ID 2
82
Oren Weilab841162011-05-15 13:43:41 +030083
84/* File state */
85enum file_state {
86 MEI_FILE_INITIALIZING = 0,
87 MEI_FILE_CONNECTING,
88 MEI_FILE_CONNECTED,
89 MEI_FILE_DISCONNECTING,
90 MEI_FILE_DISCONNECTED
91};
92
93/* MEI device states */
Tomas Winklerb210d752012-08-07 00:03:56 +030094enum mei_dev_state {
95 MEI_DEV_INITIALIZING = 0,
96 MEI_DEV_INIT_CLIENTS,
97 MEI_DEV_ENABLED,
98 MEI_DEV_RESETING,
99 MEI_DEV_DISABLED,
100 MEI_DEV_RECOVERING_FROM_RESET,
101 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 */
156struct mei_message_data {
157 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;
Oren Weilab841162011-05-15 13:43:41 +0300187 struct mei_message_data request_buffer;
188 struct mei_message_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;
212};
213
Tomas Winkler827eef52013-02-06 14:06:41 +0200214/** struct mei_hw_ops
215 *
216 * @host_set_ready - notify FW that host side is ready
217 * @host_is_ready - query for host readiness
218
219 * @hw_is_ready - query if hw is ready
220 * @hw_reset - reset hw
221 * @hw_config - configure hw
222
223 * @intr_clear - clear pending interrupts
224 * @intr_enable - enable interrupts
225 * @intr_disable - disable interrupts
226
227 * @hbuf_free_slots - query for write buffer empty slots
228 * @hbuf_is_ready - query if write buffer is empty
229 * @hbuf_max_len - query for write buffer max len
230
231 * @write - write a message to FW
232
233 * @rdbuf_full_slots - query how many slots are filled
234
235 * @read_hdr - get first 4 bytes (header)
236 * @read - read a buffer from the FW
237 */
238struct mei_hw_ops {
239
240 void (*host_set_ready) (struct mei_device *dev);
241 bool (*host_is_ready) (struct mei_device *dev);
242
243 bool (*hw_is_ready) (struct mei_device *dev);
244 void (*hw_reset) (struct mei_device *dev, bool enable);
245 void (*hw_config) (struct mei_device *dev);
246
247 void (*intr_clear) (struct mei_device *dev);
248 void (*intr_enable) (struct mei_device *dev);
249 void (*intr_disable) (struct mei_device *dev);
250
251 int (*hbuf_free_slots) (struct mei_device *dev);
252 bool (*hbuf_is_ready) (struct mei_device *dev);
253 size_t (*hbuf_max_len) (const struct mei_device *dev);
254
255 int (*write)(struct mei_device *dev,
256 struct mei_msg_hdr *hdr,
257 unsigned char *buf);
258
259 int (*rdbuf_full_slots)(struct mei_device *dev);
260
261 u32 (*read_hdr)(const struct mei_device *dev);
262 int (*read) (struct mei_device *dev,
263 unsigned char *buf, unsigned long len);
264};
265
Tomas Winkler24aadc82012-06-25 23:46:27 +0300266/**
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200267 * struct mei_device - MEI private device struct
Tomas Winklerfecb0d52012-12-25 19:06:04 +0200268 * @mem_addr - mem mapped base register address
Tomas Winkler24aadc82012-06-25 23:46:27 +0300269 * @hbuf_depth - depth of host(write) buffer
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200270 * @wr_ext_msg - buffer for hbm control responses (set in read cycle)
Tomas Winkler24aadc82012-06-25 23:46:27 +0300271 */
Oren Weilab841162011-05-15 13:43:41 +0300272struct mei_device {
273 struct pci_dev *pdev; /* pointer to pci device struct */
274 /*
275 * lists of queues
276 */
Tomas Winklere773efc2012-11-11 17:37:58 +0200277 /* array of pointers to aio lists */
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200278 struct mei_cl_cb read_list; /* driver read queue */
279 struct mei_cl_cb write_list; /* driver write queue */
280 struct mei_cl_cb write_waiting_list; /* write waiting queue */
281 struct mei_cl_cb ctrl_wr_list; /* managed write IOCTL list */
282 struct mei_cl_cb ctrl_rd_list; /* managed read IOCTL list */
Oren Weilab841162011-05-15 13:43:41 +0300283
Oren Weilab841162011-05-15 13:43:41 +0300284 /*
285 * list of files
286 */
287 struct list_head file_list;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300288 long open_handle_count;
Tomas Winklerfecb0d52012-12-25 19:06:04 +0200289
Oren Weilab841162011-05-15 13:43:41 +0300290 /*
291 * lock for the device
292 */
293 struct mutex device_lock; /* device lock */
Oren Weila61c6532011-09-07 09:03:13 +0300294 struct delayed_work timer_work; /* MEI timer delayed work (timeouts) */
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300295 bool recvd_msg;
Tomas Winkler52c34562013-02-06 14:06:40 +0200296
Tomas Winkler24aadc82012-06-25 23:46:27 +0300297 u8 hbuf_depth;
Oren Weilab841162011-05-15 13:43:41 +0300298 /*
299 * waiting queue for receive message from FW
300 */
301 wait_queue_head_t wait_recvd_msg;
302 wait_queue_head_t wait_stop_wd;
303
304 /*
305 * mei device states
306 */
Tomas Winklerb210d752012-08-07 00:03:56 +0300307 enum mei_dev_state dev_state;
Oren Weilab841162011-05-15 13:43:41 +0300308 enum mei_init_clients_states init_clients_state;
309 u16 init_clients_timer;
Oren Weilab841162011-05-15 13:43:41 +0300310
Tomas Winkleredf1eed2012-02-09 19:25:54 +0200311 unsigned char rd_msg_buf[MEI_RD_MSG_BUF_SIZE]; /* control messages */
Oren Weilab841162011-05-15 13:43:41 +0300312 u32 rd_msg_hdr;
Tomas Winklere46f1872012-12-25 19:06:10 +0200313
314 /* used for control messages */
315 struct {
316 struct mei_msg_hdr hdr;
317 unsigned char data[128];
318 } wr_msg;
319
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200320 struct {
321 struct mei_msg_hdr hdr;
322 unsigned char data[4]; /* All HBM messages are 4 bytes */
323 } wr_ext_msg; /* for control responses */
Oren Weilab841162011-05-15 13:43:41 +0300324
325 struct hbm_version version;
326
Oren Weilab841162011-05-15 13:43:41 +0300327 struct mei_me_client *me_clients; /* Note: memory has to be allocated */
328 DECLARE_BITMAP(me_clients_map, MEI_CLIENTS_MAX);
329 DECLARE_BITMAP(host_clients_map, MEI_CLIENTS_MAX);
Tomas Winklercf9673d2011-06-06 10:44:33 +0300330 u8 me_clients_num;
Oren Weilab841162011-05-15 13:43:41 +0300331 u8 me_client_presentation_num;
332 u8 me_client_index;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300333 bool mei_host_buffer_is_empty;
Oren Weilab841162011-05-15 13:43:41 +0300334
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300335 struct mei_cl wd_cl;
Tomas Winklerc216fde2012-08-16 19:39:43 +0300336 enum mei_wd_states wd_state;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300337 bool wd_pending;
Tomas Winklerc216fde2012-08-16 19:39:43 +0300338 u16 wd_timeout;
Tomas Winkler248ffdf2012-08-16 19:39:42 +0300339 unsigned char wd_data[MEI_WD_START_MSG_SIZE];
Oren Weilab841162011-05-15 13:43:41 +0300340
341
Tomas Winklere773efc2012-11-11 17:37:58 +0200342 /* amthif list for cmd waiting */
343 struct mei_cl_cb amthif_cmd_list;
344 /* driver managed amthif list for reading completed amthif cmd data */
345 struct mei_cl_cb amthif_rd_complete_list;
Oren Weilab841162011-05-15 13:43:41 +0300346 struct file *iamthif_file_object;
347 struct mei_cl iamthif_cl;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300348 struct mei_cl_cb *iamthif_current_cb;
Oren Weilab841162011-05-15 13:43:41 +0300349 int iamthif_mtu;
350 unsigned long iamthif_timer;
351 u32 iamthif_stall_timer;
352 unsigned char *iamthif_msg_buf; /* Note: memory has to be allocated */
353 u32 iamthif_msg_buf_size;
354 u32 iamthif_msg_buf_index;
Oren Weilab841162011-05-15 13:43:41 +0300355 enum iamthif_states iamthif_state;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300356 bool iamthif_flow_control_pending;
357 bool iamthif_ioctl;
358 bool iamthif_canceled;
Samuel Ortizc1174c02012-11-18 15:13:20 +0200359
360 struct work_struct init_work;
Tomas Winkler827eef52013-02-06 14:06:41 +0200361
362 const struct mei_hw_ops *ops;
Tomas Winkler52c34562013-02-06 14:06:40 +0200363 char hw[0] __aligned(sizeof(void *));
Oren Weilab841162011-05-15 13:43:41 +0300364};
365
Tomas Winkler3870c322012-11-01 21:17:14 +0200366static inline unsigned long mei_secs_to_jiffies(unsigned long sec)
367{
368 return msecs_to_jiffies(sec * MSEC_PER_SEC);
369}
370
Oren Weilab841162011-05-15 13:43:41 +0300371
372/*
373 * mei init function prototypes
374 */
Tomas Winkler52c34562013-02-06 14:06:40 +0200375void mei_device_init(struct mei_device *dev);
Oren Weilab841162011-05-15 13:43:41 +0300376void mei_reset(struct mei_device *dev, int interrupts);
377int mei_hw_init(struct mei_device *dev);
Tomas Winklerc95efb72011-05-25 17:28:21 +0300378
Tomas Winklerc95efb72011-05-25 17:28:21 +0300379/*
380 * MEI interrupt functions prototype
Oren Weilab841162011-05-15 13:43:41 +0300381 */
382irqreturn_t mei_interrupt_quick_handler(int irq, void *dev_id);
Tomas Winklerc95efb72011-05-25 17:28:21 +0300383irqreturn_t mei_interrupt_thread_handler(int irq, void *dev_id);
Oren Weila61c6532011-09-07 09:03:13 +0300384void mei_timer(struct work_struct *work);
Oren Weilab841162011-05-15 13:43:41 +0300385
386/*
Tomas Winkler19838fb2012-11-01 21:17:15 +0200387 * AMTHIF - AMT Host Interface Functions
388 */
389void mei_amthif_reset_params(struct mei_device *dev);
390
Tomas Winkler781d0d82013-01-08 23:07:22 +0200391int mei_amthif_host_init(struct mei_device *dev);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200392
393int mei_amthif_write(struct mei_device *dev, struct mei_cl_cb *priv_cb);
394
395int mei_amthif_read(struct mei_device *dev, struct file *file,
Tomas Winkler744f0f22012-11-11 17:38:02 +0200396 char __user *ubuf, size_t length, loff_t *offset);
397
398unsigned int mei_amthif_poll(struct mei_device *dev,
399 struct file *file, poll_table *wait);
Oren Weilab841162011-05-15 13:43:41 +0300400
Tomas Winklera562d5c2012-11-11 17:38:01 +0200401int mei_amthif_release(struct mei_device *dev, struct file *file);
402
Tomas Winkler19838fb2012-11-01 21:17:15 +0200403struct mei_cl_cb *mei_amthif_find_read_list_entry(struct mei_device *dev,
Oren Weilab841162011-05-15 13:43:41 +0300404 struct file *file);
405
Tomas Winkler19838fb2012-11-01 21:17:15 +0200406void mei_amthif_run_next_cmd(struct mei_device *dev);
Oren Weilab841162011-05-15 13:43:41 +0300407
Oren Weilab841162011-05-15 13:43:41 +0300408
Tomas Winkler24c656e2012-11-18 15:13:17 +0200409int mei_amthif_irq_write_complete(struct mei_device *dev, s32 *slots,
410 struct mei_cl_cb *cb, struct mei_cl_cb *cmpl_list);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200411
412void mei_amthif_complete(struct mei_device *dev, struct mei_cl_cb *cb);
413int mei_amthif_irq_read_message(struct mei_cl_cb *complete_list,
414 struct mei_device *dev, struct mei_msg_hdr *mei_hdr);
415int mei_amthif_irq_read(struct mei_device *dev, s32 *slots);
Oren Weilab841162011-05-15 13:43:41 +0300416
Tomas Winkler37e7d6e2013-01-08 23:07:16 +0200417
418int mei_wd_send(struct mei_device *dev);
419int mei_wd_stop(struct mei_device *dev);
420int mei_wd_host_init(struct mei_device *dev);
421/*
422 * mei_watchdog_register - Registering watchdog interface
423 * once we got connection to the WD Client
424 * @dev - mei device
425 */
426void mei_watchdog_register(struct mei_device *dev);
427/*
428 * mei_watchdog_unregister - Unregistering watchdog interface
429 * @dev - mei device
430 */
431void mei_watchdog_unregister(struct mei_device *dev);
432
Oren Weilab841162011-05-15 13:43:41 +0300433/*
434 * Register Access Function
435 */
436
Tomas Winkler827eef52013-02-06 14:06:41 +0200437static inline void mei_hw_config(struct mei_device *dev)
438{
439 dev->ops->hw_config(dev);
440}
441static inline void mei_hw_reset(struct mei_device *dev, bool enable)
442{
443 dev->ops->hw_reset(dev, enable);
444}
Oren Weilab841162011-05-15 13:43:41 +0300445
Tomas Winkler827eef52013-02-06 14:06:41 +0200446static inline void mei_clear_interrupts(struct mei_device *dev)
447{
448 dev->ops->intr_clear(dev);
449}
Oren Weilab841162011-05-15 13:43:41 +0300450
Tomas Winkler827eef52013-02-06 14:06:41 +0200451static inline void mei_enable_interrupts(struct mei_device *dev)
452{
453 dev->ops->intr_enable(dev);
454}
Tomas Winklere7e0c232013-01-08 23:07:31 +0200455
Tomas Winkler827eef52013-02-06 14:06:41 +0200456static inline void mei_disable_interrupts(struct mei_device *dev)
457{
458 dev->ops->intr_disable(dev);
459}
Oren Weilab841162011-05-15 13:43:41 +0300460
Tomas Winkler827eef52013-02-06 14:06:41 +0200461static inline void mei_host_set_ready(struct mei_device *dev)
462{
463 dev->ops->host_set_ready(dev);
464}
465static inline bool mei_host_is_ready(struct mei_device *dev)
466{
467 return dev->ops->host_is_ready(dev);
468}
469static inline bool mei_hw_is_ready(struct mei_device *dev)
470{
471 return dev->ops->hw_is_ready(dev);
472}
Tomas Winkler115ba282013-01-08 23:07:29 +0200473
Tomas Winkler827eef52013-02-06 14:06:41 +0200474static inline bool mei_hbuf_is_ready(struct mei_device *dev)
475{
476 return dev->ops->hbuf_is_ready(dev);
477}
Tomas Winkler3a65dd42012-12-25 19:06:06 +0200478
Tomas Winkler827eef52013-02-06 14:06:41 +0200479static inline int mei_hbuf_empty_slots(struct mei_device *dev)
480{
481 return dev->ops->hbuf_free_slots(dev);
482}
483
484static inline size_t mei_hbuf_max_len(const struct mei_device *dev)
485{
486 return dev->ops->hbuf_max_len(dev);
487}
488
489static inline int mei_write_message(struct mei_device *dev,
490 struct mei_msg_hdr *hdr,
491 unsigned char *buf)
492{
493 return dev->ops->write(dev, hdr, buf);
494}
495
496static inline u32 mei_read_hdr(const struct mei_device *dev)
497{
498 return dev->ops->read_hdr(dev);
499}
500
501static inline void mei_read_slots(struct mei_device *dev,
502 unsigned char *buf, unsigned long len)
503{
504 dev->ops->read(dev, buf, len);
505}
506
507static inline int mei_count_full_read_slots(struct mei_device *dev)
508{
509 return dev->ops->rdbuf_full_slots(dev);
510}
Tomas Winkler5bd64712012-11-18 15:13:14 +0200511
Tomas Winkler2703d4b2013-02-06 14:06:39 +0200512int mei_register(struct device *dev);
513void mei_deregister(void);
514
Tomas Winkler15d4acc2012-12-25 19:06:00 +0200515#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
Oren Weilab841162011-05-15 13:43:41 +0300520#endif