blob: 6ea430e49f13a668d8453463f416d3ccf3fa65ed [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 Winkler66ef5ea2012-12-25 19:06:02 +020026#include "hw-me.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 */
49extern const uuid_le mei_amthi_guid;
50
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 Winkler1e2776c2012-08-24 00:35:58 +030070 * Limit to 253: 256 Total Clients
71 * minus internal client for MEI Bus Messags
Oren Weilab841162011-05-15 13:43:41 +030072 * minus internal client for AMTHI
73 * minus internal client for Watchdog
74 */
Tomas Winkler1e2776c2012-08-24 00:35:58 +030075#define MEI_MAX_OPEN_HANDLE_COUNT (MEI_CLIENTS_MAX - 3)
Oren Weilab841162011-05-15 13:43:41 +030076
Tomas Winkler1d3f3da2012-12-25 19:06:01 +020077/*
78 * Internal Clients Number
79 */
80#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. Mattock5f9092f2012-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
161
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200162struct mei_cl;
163
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200164/**
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200165 * struct mei_cl_cb - file operation callback structure
166 *
167 * @cl - file client who is running this operation
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200168 * @fop_type - file operation type
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200169 */
Oren Weilab841162011-05-15 13:43:41 +0300170struct mei_cl_cb {
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200171 struct list_head list;
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200172 struct mei_cl *cl;
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200173 enum mei_cb_file_ops fop_type;
Oren Weilab841162011-05-15 13:43:41 +0300174 struct mei_message_data request_buffer;
175 struct mei_message_data response_buffer;
Tomas Winklerebb108ef2012-10-09 16:50:16 +0200176 unsigned long buf_idx;
Oren Weilab841162011-05-15 13:43:41 +0300177 unsigned long read_time;
178 struct file *file_object;
179};
180
181/* MEI client instance carried as file->pirvate_data*/
182struct mei_cl {
183 struct list_head link;
184 struct mei_device *dev;
185 enum file_state state;
186 wait_queue_head_t tx_wait;
187 wait_queue_head_t rx_wait;
188 wait_queue_head_t wait;
189 int read_pending;
190 int status;
191 /* ID of client connected */
192 u8 host_client_id;
193 u8 me_client_id;
194 u8 mei_flow_ctrl_creds;
195 u8 timer_count;
196 enum mei_file_transaction_states reading_state;
197 enum mei_file_transaction_states writing_state;
198 int sm_state;
199 struct mei_cl_cb *read_cb;
200};
201
Tomas Winkler24aadc82012-06-25 23:46:27 +0300202/**
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200203 * struct mei_device - MEI private device struct
Tomas Winklerfecb0d52012-12-25 19:06:04 +0200204 * @mem_addr - mem mapped base register address
Tomas Winkler24aadc82012-06-25 23:46:27 +0300205 * @hbuf_depth - depth of host(write) buffer
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200206 * @wr_ext_msg - buffer for hbm control responses (set in read cycle)
Tomas Winkler24aadc82012-06-25 23:46:27 +0300207 */
Oren Weilab841162011-05-15 13:43:41 +0300208struct mei_device {
209 struct pci_dev *pdev; /* pointer to pci device struct */
210 /*
211 * lists of queues
212 */
Tomas Winklere773efc2012-11-11 17:37:58 +0200213 /* array of pointers to aio lists */
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200214 struct mei_cl_cb read_list; /* driver read queue */
215 struct mei_cl_cb write_list; /* driver write queue */
216 struct mei_cl_cb write_waiting_list; /* write waiting queue */
217 struct mei_cl_cb ctrl_wr_list; /* managed write IOCTL list */
218 struct mei_cl_cb ctrl_rd_list; /* managed read IOCTL list */
Oren Weilab841162011-05-15 13:43:41 +0300219
Oren Weilab841162011-05-15 13:43:41 +0300220 /*
221 * list of files
222 */
223 struct list_head file_list;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300224 long open_handle_count;
Tomas Winklerfecb0d52012-12-25 19:06:04 +0200225
Oren Weilab841162011-05-15 13:43:41 +0300226 void __iomem *mem_addr;
227 /*
228 * lock for the device
229 */
230 struct mutex device_lock; /* device lock */
Oren Weila61c6532011-09-07 09:03:13 +0300231 struct delayed_work timer_work; /* MEI timer delayed work (timeouts) */
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300232 bool recvd_msg;
Oren Weilab841162011-05-15 13:43:41 +0300233 /*
234 * hw states of host and fw(ME)
235 */
236 u32 host_hw_state;
237 u32 me_hw_state;
Tomas Winkler24aadc82012-06-25 23:46:27 +0300238 u8 hbuf_depth;
Oren Weilab841162011-05-15 13:43:41 +0300239 /*
240 * waiting queue for receive message from FW
241 */
242 wait_queue_head_t wait_recvd_msg;
243 wait_queue_head_t wait_stop_wd;
244
245 /*
246 * mei device states
247 */
Tomas Winklerb210d752012-08-07 00:03:56 +0300248 enum mei_dev_state dev_state;
Oren Weilab841162011-05-15 13:43:41 +0300249 enum mei_init_clients_states init_clients_state;
250 u16 init_clients_timer;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300251 bool need_reset;
Oren Weilab841162011-05-15 13:43:41 +0300252
Tomas Winkleredf1eed2012-02-09 19:25:54 +0200253 unsigned char rd_msg_buf[MEI_RD_MSG_BUF_SIZE]; /* control messages */
Oren Weilab841162011-05-15 13:43:41 +0300254 u32 rd_msg_hdr;
Tomas Winkler5fb54fb2012-11-18 15:13:15 +0200255 u32 wr_msg_buf[128]; /* used for control messages */
256 struct {
257 struct mei_msg_hdr hdr;
258 unsigned char data[4]; /* All HBM messages are 4 bytes */
259 } wr_ext_msg; /* for control responses */
Oren Weilab841162011-05-15 13:43:41 +0300260
261 struct hbm_version version;
262
Oren Weilab841162011-05-15 13:43:41 +0300263 struct mei_me_client *me_clients; /* Note: memory has to be allocated */
264 DECLARE_BITMAP(me_clients_map, MEI_CLIENTS_MAX);
265 DECLARE_BITMAP(host_clients_map, MEI_CLIENTS_MAX);
Tomas Winklercf9673d2011-06-06 10:44:33 +0300266 u8 me_clients_num;
Oren Weilab841162011-05-15 13:43:41 +0300267 u8 me_client_presentation_num;
268 u8 me_client_index;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300269 bool mei_host_buffer_is_empty;
Oren Weilab841162011-05-15 13:43:41 +0300270
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300271 struct mei_cl wd_cl;
Tomas Winklerc216fde2012-08-16 19:39:43 +0300272 enum mei_wd_states wd_state;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300273 bool wd_pending;
Tomas Winklerc216fde2012-08-16 19:39:43 +0300274 u16 wd_timeout;
Tomas Winkler248ffdf2012-08-16 19:39:42 +0300275 unsigned char wd_data[MEI_WD_START_MSG_SIZE];
Oren Weilab841162011-05-15 13:43:41 +0300276
277
Tomas Winklere773efc2012-11-11 17:37:58 +0200278 /* amthif list for cmd waiting */
279 struct mei_cl_cb amthif_cmd_list;
280 /* driver managed amthif list for reading completed amthif cmd data */
281 struct mei_cl_cb amthif_rd_complete_list;
Oren Weilab841162011-05-15 13:43:41 +0300282 struct file *iamthif_file_object;
283 struct mei_cl iamthif_cl;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300284 struct mei_cl_cb *iamthif_current_cb;
Oren Weilab841162011-05-15 13:43:41 +0300285 int iamthif_mtu;
286 unsigned long iamthif_timer;
287 u32 iamthif_stall_timer;
288 unsigned char *iamthif_msg_buf; /* Note: memory has to be allocated */
289 u32 iamthif_msg_buf_size;
290 u32 iamthif_msg_buf_index;
Oren Weilab841162011-05-15 13:43:41 +0300291 enum iamthif_states iamthif_state;
Tomas Winklereb9af0a2011-05-25 17:28:22 +0300292 bool iamthif_flow_control_pending;
293 bool iamthif_ioctl;
294 bool iamthif_canceled;
Samuel Ortizc1174c02012-11-18 15:13:20 +0200295
296 struct work_struct init_work;
Oren Weilab841162011-05-15 13:43:41 +0300297};
298
Tomas Winkler3870c322012-11-01 21:17:14 +0200299static inline unsigned long mei_secs_to_jiffies(unsigned long sec)
300{
301 return msecs_to_jiffies(sec * MSEC_PER_SEC);
302}
303
Oren Weilab841162011-05-15 13:43:41 +0300304
305/*
306 * mei init function prototypes
307 */
Tomas Winklerc95efb72011-05-25 17:28:21 +0300308struct mei_device *mei_device_init(struct pci_dev *pdev);
Oren Weilab841162011-05-15 13:43:41 +0300309void mei_reset(struct mei_device *dev, int interrupts);
310int mei_hw_init(struct mei_device *dev);
311int mei_task_initialize_clients(void *data);
312int mei_initialize_clients(struct mei_device *dev);
Oren Weilab841162011-05-15 13:43:41 +0300313int mei_disconnect_host_client(struct mei_device *dev, struct mei_cl *cl);
Tomas Winklerc95efb72011-05-25 17:28:21 +0300314void mei_allocate_me_clients_storage(struct mei_device *dev);
Oren Weilab841162011-05-15 13:43:41 +0300315
Oren Weilab841162011-05-15 13:43:41 +0300316
Tomas Winklerff8b2f42012-11-11 17:38:03 +0200317int mei_me_cl_link(struct mei_device *dev, struct mei_cl *cl,
Tomas Winkler07b509b2012-07-23 14:05:39 +0300318 const uuid_le *cguid, u8 host_client_id);
Tomas Winklerff8b2f42012-11-11 17:38:03 +0200319void mei_me_cl_unlink(struct mei_device *dev, struct mei_cl *cl);
Tomas Winkler07b509b2012-07-23 14:05:39 +0300320int mei_me_cl_by_uuid(const struct mei_device *dev, const uuid_le *cuuid);
321int mei_me_cl_by_id(struct mei_device *dev, u8 client_id);
Oren Weilab841162011-05-15 13:43:41 +0300322
323/*
Tomas Winkler601a1ef2012-10-09 16:50:20 +0200324 * MEI IO Functions
Tomas Winkler0288c7c2011-06-06 10:44:34 +0300325 */
Tomas Winkler664df382012-10-11 16:35:08 +0200326struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl, struct file *fp);
Tomas Winkler601a1ef2012-10-09 16:50:20 +0200327void mei_io_cb_free(struct mei_cl_cb *priv_cb);
Tomas Winkler664df382012-10-11 16:35:08 +0200328int mei_io_cb_alloc_req_buf(struct mei_cl_cb *cb, size_t length);
329int mei_io_cb_alloc_resp_buf(struct mei_cl_cb *cb, size_t length);
330
Tomas Winkler601a1ef2012-10-09 16:50:20 +0200331
Tomas Winklerfb601ad2012-10-15 12:06:48 +0200332/**
333 * mei_io_list_init - Sets up a queue list.
334 *
335 * @list: An instance cl callback structure
336 */
337static inline void mei_io_list_init(struct mei_cl_cb *list)
338{
339 INIT_LIST_HEAD(&list->list);
340}
341void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl);
Tomas Winkler0288c7c2011-06-06 10:44:34 +0300342
343/*
Tomas Winklerc95efb72011-05-25 17:28:21 +0300344 * MEI ME Client Functions
345 */
346
347struct mei_cl *mei_cl_allocate(struct mei_device *dev);
Tomas Winkler0288c7c2011-06-06 10:44:34 +0300348void mei_cl_init(struct mei_cl *cl, struct mei_device *dev);
349int mei_cl_flush_queues(struct mei_cl *cl);
350/**
351 * mei_cl_cmp_id - tells if file private data have same id
352 *
353 * @fe1: private data of 1. file object
354 * @fe2: private data of 2. file object
355 *
356 * returns true - if ids are the same and not NULL
357 */
358static inline bool mei_cl_cmp_id(const struct mei_cl *cl1,
359 const struct mei_cl *cl2)
360{
361 return cl1 && cl2 &&
362 (cl1->host_client_id == cl2->host_client_id) &&
363 (cl1->me_client_id == cl2->me_client_id);
364}
365
Tomas Winklerc95efb72011-05-25 17:28:21 +0300366
367
368/*
369 * MEI Host Client Functions
370 */
371void mei_host_start_message(struct mei_device *dev);
372void mei_host_enum_clients_message(struct mei_device *dev);
Samuel Ortizc1174c02012-11-18 15:13:20 +0200373int mei_host_client_enumerate(struct mei_device *dev);
374void mei_host_client_init(struct work_struct *work);
Tomas Winklerc95efb72011-05-25 17:28:21 +0300375
376/*
377 * MEI interrupt functions prototype
Oren Weilab841162011-05-15 13:43:41 +0300378 */
379irqreturn_t mei_interrupt_quick_handler(int irq, void *dev_id);
Tomas Winklerc95efb72011-05-25 17:28:21 +0300380irqreturn_t mei_interrupt_thread_handler(int irq, void *dev_id);
Oren Weila61c6532011-09-07 09:03:13 +0300381void mei_timer(struct work_struct *work);
Oren Weilab841162011-05-15 13:43:41 +0300382
383/*
Tomas Winklerc95efb72011-05-25 17:28:21 +0300384 * MEI input output function prototype
Oren Weilab841162011-05-15 13:43:41 +0300385 */
386int mei_ioctl_connect_client(struct file *file,
387 struct mei_connect_client_data *data);
388
389int mei_start_read(struct mei_device *dev, struct mei_cl *cl);
390
Oren Weilab841162011-05-15 13:43:41 +0300391
Tomas Winkler19838fb2012-11-01 21:17:15 +0200392/*
393 * AMTHIF - AMT Host Interface Functions
394 */
395void mei_amthif_reset_params(struct mei_device *dev);
396
397void mei_amthif_host_init(struct mei_device *dev);
398
399int mei_amthif_write(struct mei_device *dev, struct mei_cl_cb *priv_cb);
400
401int mei_amthif_read(struct mei_device *dev, struct file *file,
Tomas Winkler744f0f22012-11-11 17:38:02 +0200402 char __user *ubuf, size_t length, loff_t *offset);
403
404unsigned int mei_amthif_poll(struct mei_device *dev,
405 struct file *file, poll_table *wait);
Oren Weilab841162011-05-15 13:43:41 +0300406
Tomas Winklera562d5c2012-11-11 17:38:01 +0200407int mei_amthif_release(struct mei_device *dev, struct file *file);
408
Tomas Winkler19838fb2012-11-01 21:17:15 +0200409struct mei_cl_cb *mei_amthif_find_read_list_entry(struct mei_device *dev,
Oren Weilab841162011-05-15 13:43:41 +0300410 struct file *file);
411
Tomas Winkler19838fb2012-11-01 21:17:15 +0200412void mei_amthif_run_next_cmd(struct mei_device *dev);
Oren Weilab841162011-05-15 13:43:41 +0300413
Oren Weilab841162011-05-15 13:43:41 +0300414
Tomas Winkler19838fb2012-11-01 21:17:15 +0200415int mei_amthif_read_message(struct mei_cl_cb *complete_list,
416 struct mei_device *dev, struct mei_msg_hdr *mei_hdr);
417
Tomas Winkler24c656e2012-11-18 15:13:17 +0200418int mei_amthif_irq_write_complete(struct mei_device *dev, s32 *slots,
419 struct mei_cl_cb *cb, struct mei_cl_cb *cmpl_list);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200420
421void mei_amthif_complete(struct mei_device *dev, struct mei_cl_cb *cb);
422int mei_amthif_irq_read_message(struct mei_cl_cb *complete_list,
423 struct mei_device *dev, struct mei_msg_hdr *mei_hdr);
424int mei_amthif_irq_read(struct mei_device *dev, s32 *slots);
Oren Weilab841162011-05-15 13:43:41 +0300425
426/*
427 * Register Access Function
428 */
429
430/**
431 * mei_reg_read - Reads 32bit data from the mei device
432 *
433 * @dev: the device structure
434 * @offset: offset from which to read the data
435 *
Oren Weil92eb4012011-09-07 09:03:08 +0300436 * returns register value (u32)
Oren Weilab841162011-05-15 13:43:41 +0300437 */
Tomas Winkler4a0d6a72012-07-04 19:24:49 +0300438static inline u32 mei_reg_read(const struct mei_device *dev,
439 unsigned long offset)
Oren Weilab841162011-05-15 13:43:41 +0300440{
441 return ioread32(dev->mem_addr + offset);
442}
443
444/**
445 * mei_reg_write - Writes 32bit data to the mei device
446 *
447 * @dev: the device structure
448 * @offset: offset from which to write the data
Oren Weil92eb4012011-09-07 09:03:08 +0300449 * @value: register value to write (u32)
Oren Weilab841162011-05-15 13:43:41 +0300450 */
Tomas Winkler4a0d6a72012-07-04 19:24:49 +0300451static inline void mei_reg_write(const struct mei_device *dev,
452 unsigned long offset, u32 value)
Oren Weilab841162011-05-15 13:43:41 +0300453{
454 iowrite32(value, dev->mem_addr + offset);
455}
456
457/**
458 * mei_hcsr_read - Reads 32bit data from the host CSR
459 *
460 * @dev: the device structure
461 *
462 * returns the byte read.
463 */
Tomas Winkler4a0d6a72012-07-04 19:24:49 +0300464static inline u32 mei_hcsr_read(const struct mei_device *dev)
Oren Weilab841162011-05-15 13:43:41 +0300465{
466 return mei_reg_read(dev, H_CSR);
467}
468
469/**
470 * mei_mecsr_read - Reads 32bit data from the ME CSR
471 *
472 * @dev: the device structure
473 *
474 * returns ME_CSR_HA register value (u32)
475 */
Tomas Winkler4a0d6a72012-07-04 19:24:49 +0300476static inline u32 mei_mecsr_read(const struct mei_device *dev)
Oren Weilab841162011-05-15 13:43:41 +0300477{
478 return mei_reg_read(dev, ME_CSR_HA);
479}
480
481/**
482 * get_me_cb_rw - Reads 32bit data from the mei ME_CB_RW register
483 *
484 * @dev: the device structure
485 *
486 * returns ME_CB_RW register value (u32)
487 */
Tomas Winkler4a0d6a72012-07-04 19:24:49 +0300488static inline u32 mei_mecbrw_read(const struct mei_device *dev)
Oren Weilab841162011-05-15 13:43:41 +0300489{
490 return mei_reg_read(dev, ME_CB_RW);
491}
492
493
494/*
495 * mei interface function prototypes
496 */
497void mei_hcsr_set(struct mei_device *dev);
498void mei_csr_clear_his(struct mei_device *dev);
499
500void mei_enable_interrupts(struct mei_device *dev);
501void mei_disable_interrupts(struct mei_device *dev);
502
Tomas Winkler5bd64712012-11-18 15:13:14 +0200503static inline struct mei_msg_hdr *mei_hbm_hdr(u32 *buf, size_t length)
504{
505 struct mei_msg_hdr *hdr = (struct mei_msg_hdr *)buf;
506 hdr->host_addr = 0;
507 hdr->me_addr = 0;
508 hdr->length = length;
509 hdr->msg_complete = 1;
510 hdr->reserved = 0;
511 return hdr;
512}
513
Tomas Winkler15d4acc2012-12-25 19:06:00 +0200514#define MEI_HDR_FMT "hdr:host=%02d me=%02d len=%d comp=%1d"
515#define MEI_HDR_PRM(hdr) \
516 (hdr)->host_addr, (hdr)->me_addr, \
517 (hdr)->length, (hdr)->msg_complete
518
Oren Weilab841162011-05-15 13:43:41 +0300519#endif