blob: f6ff711aa5bbbaa4a177dbd416ccdab53017bb23 [file] [log] [blame]
Tomas Winkler19838fb2012-11-01 21:17:15 +02001/*
2 *
3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2003-2012, Intel Corporation.
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#include <linux/kernel.h>
18#include <linux/fs.h>
19#include <linux/errno.h>
20#include <linux/types.h>
21#include <linux/fcntl.h>
22#include <linux/aio.h>
23#include <linux/pci.h>
24#include <linux/init.h>
25#include <linux/ioctl.h>
26#include <linux/cdev.h>
27#include <linux/list.h>
28#include <linux/delay.h>
29#include <linux/sched.h>
30#include <linux/uuid.h>
31#include <linux/jiffies.h>
32#include <linux/uaccess.h>
33
Tomas Winkler47a73802012-12-25 19:06:03 +020034#include <linux/mei.h>
Tomas Winkler19838fb2012-11-01 21:17:15 +020035
36#include "mei_dev.h"
Tomas Winkler0edb23f2013-01-08 23:07:12 +020037#include "hbm.h"
Tomas Winkler9dc64d62013-01-08 23:07:17 +020038#include "hw-me.h"
Tomas Winkler90e0b5f2013-01-08 23:07:14 +020039#include "client.h"
Tomas Winkler19838fb2012-11-01 21:17:15 +020040
Tomas Winkler1a1aca42013-01-08 23:07:21 +020041const uuid_le mei_amthif_guid = UUID_LE(0x12f80028, 0xb4b7, 0x4b2d,
42 0xac, 0xa8, 0x46, 0xe0,
43 0xff, 0x65, 0x81, 0x4c);
Tomas Winkler19838fb2012-11-01 21:17:15 +020044
45/**
46 * mei_amthif_reset_params - initializes mei device iamthif
47 *
48 * @dev: the device structure
49 */
50void mei_amthif_reset_params(struct mei_device *dev)
51{
52 /* reset iamthif parameters. */
53 dev->iamthif_current_cb = NULL;
54 dev->iamthif_msg_buf_size = 0;
55 dev->iamthif_msg_buf_index = 0;
56 dev->iamthif_canceled = false;
57 dev->iamthif_ioctl = false;
58 dev->iamthif_state = MEI_IAMTHIF_IDLE;
59 dev->iamthif_timer = 0;
Alexander Usyskin4a704572013-09-02 13:29:47 +030060 dev->iamthif_stall_timer = 0;
Tomas Winkler19838fb2012-11-01 21:17:15 +020061}
62
63/**
Masanari Iida393b1482013-04-05 01:05:05 +090064 * mei_amthif_host_init - mei initialization amthif client.
Tomas Winkler19838fb2012-11-01 21:17:15 +020065 *
66 * @dev: the device structure
67 *
68 */
Tomas Winkler781d0d82013-01-08 23:07:22 +020069int mei_amthif_host_init(struct mei_device *dev)
Tomas Winkler19838fb2012-11-01 21:17:15 +020070{
Tomas Winkler781d0d82013-01-08 23:07:22 +020071 struct mei_cl *cl = &dev->iamthif_cl;
Tomas Winkler19838fb2012-11-01 21:17:15 +020072 unsigned char *msg_buf;
Tomas Winkler781d0d82013-01-08 23:07:22 +020073 int ret, i;
Tomas Winkler19838fb2012-11-01 21:17:15 +020074
Tomas Winkler6222f7b2013-01-08 23:07:23 +020075 dev->iamthif_state = MEI_IAMTHIF_IDLE;
76
Tomas Winkler781d0d82013-01-08 23:07:22 +020077 mei_cl_init(cl, dev);
Tomas Winkler19838fb2012-11-01 21:17:15 +020078
Tomas Winkler781d0d82013-01-08 23:07:22 +020079 i = mei_me_cl_by_uuid(dev, &mei_amthif_guid);
Tomas Winkler19838fb2012-11-01 21:17:15 +020080 if (i < 0) {
Tomas Winkler781d0d82013-01-08 23:07:22 +020081 dev_info(&dev->pdev->dev, "amthif: failed to find the client\n");
82 return -ENOENT;
Tomas Winkler19838fb2012-11-01 21:17:15 +020083 }
84
Tomas Winkler781d0d82013-01-08 23:07:22 +020085 cl->me_client_id = dev->me_clients[i].client_id;
86
Tomas Winkler19838fb2012-11-01 21:17:15 +020087 /* Assign iamthif_mtu to the value received from ME */
88
89 dev->iamthif_mtu = dev->me_clients[i].props.max_msg_length;
90 dev_dbg(&dev->pdev->dev, "IAMTHIF_MTU = %d\n",
91 dev->me_clients[i].props.max_msg_length);
92
93 kfree(dev->iamthif_msg_buf);
94 dev->iamthif_msg_buf = NULL;
95
96 /* allocate storage for ME message buffer */
97 msg_buf = kcalloc(dev->iamthif_mtu,
98 sizeof(unsigned char), GFP_KERNEL);
99 if (!msg_buf) {
Tomas Winkler781d0d82013-01-08 23:07:22 +0200100 dev_err(&dev->pdev->dev, "amthif: memory allocation for ME message buffer failed.\n");
101 return -ENOMEM;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200102 }
103
104 dev->iamthif_msg_buf = msg_buf;
105
Tomas Winkler781d0d82013-01-08 23:07:22 +0200106 ret = mei_cl_link(cl, MEI_IAMTHIF_HOST_CLIENT_ID);
107
108 if (ret < 0) {
109 dev_err(&dev->pdev->dev, "amthif: failed link client\n");
110 return -ENOENT;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200111 }
Tomas Winkler781d0d82013-01-08 23:07:22 +0200112
113 cl->state = MEI_FILE_CONNECTING;
114
115 if (mei_hbm_cl_connect_req(dev, cl)) {
116 dev_dbg(&dev->pdev->dev, "amthif: Failed to connect to ME client\n");
117 cl->state = MEI_FILE_DISCONNECTED;
118 cl->host_client_id = 0;
119 } else {
120 cl->timer_count = MEI_CONNECT_TIMEOUT;
121 }
122 return 0;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200123}
124
125/**
126 * mei_amthif_find_read_list_entry - finds a amthilist entry for current file
127 *
128 * @dev: the device structure
129 * @file: pointer to file object
130 *
131 * returns returned a list entry on success, NULL on failure.
132 */
133struct mei_cl_cb *mei_amthif_find_read_list_entry(struct mei_device *dev,
134 struct file *file)
135{
Tomas Winkler19838fb2012-11-01 21:17:15 +0200136 struct mei_cl_cb *pos = NULL;
137 struct mei_cl_cb *next = NULL;
138
139 list_for_each_entry_safe(pos, next,
Tomas Winklere773efc2012-11-11 17:37:58 +0200140 &dev->amthif_rd_complete_list.list, list) {
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200141 if (pos->cl && pos->cl == &dev->iamthif_cl &&
Tomas Winkler19838fb2012-11-01 21:17:15 +0200142 pos->file_object == file)
143 return pos;
144 }
145 return NULL;
146}
147
148
149/**
150 * mei_amthif_read - read data from AMTHIF client
151 *
152 * @dev: the device structure
153 * @if_num: minor number
154 * @file: pointer to file object
155 * @*ubuf: pointer to user data in user space
156 * @length: data length to read
157 * @offset: data read offset
158 *
159 * Locking: called under "dev->device_lock" lock
160 *
161 * returns
162 * returned data length on success,
163 * zero if no data to read,
164 * negative on failure.
165 */
166int mei_amthif_read(struct mei_device *dev, struct file *file,
167 char __user *ubuf, size_t length, loff_t *offset)
168{
169 int rets;
170 int wait_ret;
171 struct mei_cl_cb *cb = NULL;
172 struct mei_cl *cl = file->private_data;
173 unsigned long timeout;
174 int i;
175
176 /* Only Posible if we are in timeout */
177 if (!cl || cl != &dev->iamthif_cl) {
178 dev_dbg(&dev->pdev->dev, "bad file ext.\n");
179 return -ETIMEDOUT;
180 }
181
182 i = mei_me_cl_by_id(dev, dev->iamthif_cl.me_client_id);
183
184 if (i < 0) {
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200185 dev_dbg(&dev->pdev->dev, "amthif client not found.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200186 return -ENODEV;
187 }
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200188 dev_dbg(&dev->pdev->dev, "checking amthif data\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200189 cb = mei_amthif_find_read_list_entry(dev, file);
190
191 /* Check for if we can block or not*/
192 if (cb == NULL && file->f_flags & O_NONBLOCK)
193 return -EAGAIN;
194
195
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200196 dev_dbg(&dev->pdev->dev, "waiting for amthif data\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200197 while (cb == NULL) {
198 /* unlock the Mutex */
199 mutex_unlock(&dev->device_lock);
200
201 wait_ret = wait_event_interruptible(dev->iamthif_cl.wait,
202 (cb = mei_amthif_find_read_list_entry(dev, file)));
203
Alexey Khoroshilove6028db2012-12-22 01:44:16 +0400204 /* Locking again the Mutex */
205 mutex_lock(&dev->device_lock);
206
Tomas Winkler19838fb2012-11-01 21:17:15 +0200207 if (wait_ret)
208 return -ERESTARTSYS;
209
210 dev_dbg(&dev->pdev->dev, "woke up from sleep\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200211 }
212
213
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200214 dev_dbg(&dev->pdev->dev, "Got amthif data\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200215 dev->iamthif_timer = 0;
216
217 if (cb) {
218 timeout = cb->read_time +
219 mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER);
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200220 dev_dbg(&dev->pdev->dev, "amthif timeout = %lud\n",
Tomas Winkler19838fb2012-11-01 21:17:15 +0200221 timeout);
222
223 if (time_after(jiffies, timeout)) {
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200224 dev_dbg(&dev->pdev->dev, "amthif Time out\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200225 /* 15 sec for the message has expired */
226 list_del(&cb->list);
227 rets = -ETIMEDOUT;
228 goto free;
229 }
230 }
231 /* if the whole message will fit remove it from the list */
232 if (cb->buf_idx >= *offset && length >= (cb->buf_idx - *offset))
233 list_del(&cb->list);
234 else if (cb->buf_idx > 0 && cb->buf_idx <= *offset) {
235 /* end of the message has been reached */
236 list_del(&cb->list);
237 rets = 0;
238 goto free;
239 }
240 /* else means that not full buffer will be read and do not
241 * remove message from deletion list
242 */
243
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200244 dev_dbg(&dev->pdev->dev, "amthif cb->response_buffer size - %d\n",
Tomas Winkler19838fb2012-11-01 21:17:15 +0200245 cb->response_buffer.size);
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200246 dev_dbg(&dev->pdev->dev, "amthif cb->buf_idx - %lu\n", cb->buf_idx);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200247
248 /* length is being turncated to PAGE_SIZE, however,
249 * the buf_idx may point beyond */
250 length = min_t(size_t, length, (cb->buf_idx - *offset));
251
252 if (copy_to_user(ubuf, cb->response_buffer.data + *offset, length))
253 rets = -EFAULT;
254 else {
255 rets = length;
256 if ((*offset + length) < cb->buf_idx) {
257 *offset += length;
258 goto out;
259 }
260 }
261free:
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200262 dev_dbg(&dev->pdev->dev, "free amthif cb memory.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200263 *offset = 0;
264 mei_io_cb_free(cb);
265out:
266 return rets;
267}
268
269/**
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200270 * mei_amthif_send_cmd - send amthif command to the ME
Tomas Winkler19838fb2012-11-01 21:17:15 +0200271 *
272 * @dev: the device structure
273 * @cb: mei call back struct
274 *
275 * returns 0 on success, <0 on failure.
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200276 *
Tomas Winkler19838fb2012-11-01 21:17:15 +0200277 */
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200278static int mei_amthif_send_cmd(struct mei_device *dev, struct mei_cl_cb *cb)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200279{
280 struct mei_msg_hdr mei_hdr;
281 int ret;
282
283 if (!dev || !cb)
284 return -ENODEV;
285
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200286 dev_dbg(&dev->pdev->dev, "write data to amthif client.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200287
288 dev->iamthif_state = MEI_IAMTHIF_WRITING;
289 dev->iamthif_current_cb = cb;
290 dev->iamthif_file_object = cb->file_object;
291 dev->iamthif_canceled = false;
292 dev->iamthif_ioctl = true;
293 dev->iamthif_msg_buf_size = cb->request_buffer.size;
294 memcpy(dev->iamthif_msg_buf, cb->request_buffer.data,
295 cb->request_buffer.size);
296
Tomas Winkler90e0b5f2013-01-08 23:07:14 +0200297 ret = mei_cl_flow_ctrl_creds(&dev->iamthif_cl);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200298 if (ret < 0)
299 return ret;
300
Tomas Winkler330dd7d2013-02-06 14:06:43 +0200301 if (ret && dev->hbuf_is_ready) {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200302 ret = 0;
Tomas Winkler330dd7d2013-02-06 14:06:43 +0200303 dev->hbuf_is_ready = false;
Tomas Winkler827eef52013-02-06 14:06:41 +0200304 if (cb->request_buffer.size > mei_hbuf_max_len(dev)) {
305 mei_hdr.length = mei_hbuf_max_len(dev);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200306 mei_hdr.msg_complete = 0;
307 } else {
308 mei_hdr.length = cb->request_buffer.size;
309 mei_hdr.msg_complete = 1;
310 }
311
312 mei_hdr.host_addr = dev->iamthif_cl.host_client_id;
313 mei_hdr.me_addr = dev->iamthif_cl.me_client_id;
314 mei_hdr.reserved = 0;
315 dev->iamthif_msg_buf_index += mei_hdr.length;
316 if (mei_write_message(dev, &mei_hdr,
Tomas Winkler438763f2012-12-25 19:05:59 +0200317 (unsigned char *)dev->iamthif_msg_buf))
Tomas Winkler19838fb2012-11-01 21:17:15 +0200318 return -ENODEV;
319
320 if (mei_hdr.msg_complete) {
Tomas Winkler90e0b5f2013-01-08 23:07:14 +0200321 if (mei_cl_flow_ctrl_reduce(&dev->iamthif_cl))
Tomas Winkler19838fb2012-11-01 21:17:15 +0200322 return -ENODEV;
323 dev->iamthif_flow_control_pending = true;
324 dev->iamthif_state = MEI_IAMTHIF_FLOW_CONTROL;
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200325 dev_dbg(&dev->pdev->dev, "add amthif cb to write waiting list\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200326 dev->iamthif_current_cb = cb;
327 dev->iamthif_file_object = cb->file_object;
328 list_add_tail(&cb->list, &dev->write_waiting_list.list);
329 } else {
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200330 dev_dbg(&dev->pdev->dev, "message does not complete, so add amthif cb to write list.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200331 list_add_tail(&cb->list, &dev->write_list.list);
332 }
333 } else {
Tomas Winkler330dd7d2013-02-06 14:06:43 +0200334 if (!dev->hbuf_is_ready)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200335 dev_dbg(&dev->pdev->dev, "host buffer is not empty");
336
337 dev_dbg(&dev->pdev->dev, "No flow control credentials, so add iamthif cb to write list.\n");
338 list_add_tail(&cb->list, &dev->write_list.list);
339 }
340 return 0;
341}
342
343/**
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200344 * mei_amthif_write - write amthif data to amthif client
345 *
346 * @dev: the device structure
347 * @cb: mei call back struct
348 *
349 * returns 0 on success, <0 on failure.
350 *
351 */
352int mei_amthif_write(struct mei_device *dev, struct mei_cl_cb *cb)
353{
354 int ret;
355
356 if (!dev || !cb)
357 return -ENODEV;
358
359 ret = mei_io_cb_alloc_resp_buf(cb, dev->iamthif_mtu);
360 if (ret)
361 return ret;
362
Tomas Winkler4b8960b2012-11-11 17:38:00 +0200363 cb->fop_type = MEI_FOP_IOCTL;
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200364
Tomas Winklere773efc2012-11-11 17:37:58 +0200365 if (!list_empty(&dev->amthif_cmd_list.list) ||
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200366 dev->iamthif_state != MEI_IAMTHIF_IDLE) {
367 dev_dbg(&dev->pdev->dev,
368 "amthif state = %d\n", dev->iamthif_state);
369 dev_dbg(&dev->pdev->dev, "AMTHIF: add cb to the wait list\n");
Tomas Winklere773efc2012-11-11 17:37:58 +0200370 list_add_tail(&cb->list, &dev->amthif_cmd_list.list);
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200371 return 0;
372 }
373 return mei_amthif_send_cmd(dev, cb);
374}
375/**
Tomas Winkler19838fb2012-11-01 21:17:15 +0200376 * mei_amthif_run_next_cmd
377 *
378 * @dev: the device structure
379 *
380 * returns 0 on success, <0 on failure.
381 */
382void mei_amthif_run_next_cmd(struct mei_device *dev)
383{
Tomas Winkler19838fb2012-11-01 21:17:15 +0200384 struct mei_cl_cb *pos = NULL;
385 struct mei_cl_cb *next = NULL;
386 int status;
387
388 if (!dev)
389 return;
390
391 dev->iamthif_msg_buf_size = 0;
392 dev->iamthif_msg_buf_index = 0;
393 dev->iamthif_canceled = false;
394 dev->iamthif_ioctl = true;
395 dev->iamthif_state = MEI_IAMTHIF_IDLE;
396 dev->iamthif_timer = 0;
397 dev->iamthif_file_object = NULL;
398
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200399 dev_dbg(&dev->pdev->dev, "complete amthif cmd_list cb.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200400
Tomas Winklere773efc2012-11-11 17:37:58 +0200401 list_for_each_entry_safe(pos, next, &dev->amthif_cmd_list.list, list) {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200402 list_del(&pos->list);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200403
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200404 if (pos->cl && pos->cl == &dev->iamthif_cl) {
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200405 status = mei_amthif_send_cmd(dev, pos);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200406 if (status) {
407 dev_dbg(&dev->pdev->dev,
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200408 "amthif write failed status = %d\n",
Tomas Winkler19838fb2012-11-01 21:17:15 +0200409 status);
410 return;
411 }
412 break;
413 }
414 }
415}
416
Tomas Winkler744f0f22012-11-11 17:38:02 +0200417
418unsigned int mei_amthif_poll(struct mei_device *dev,
419 struct file *file, poll_table *wait)
420{
421 unsigned int mask = 0;
Tomas Winklerb950ac12013-07-25 20:15:53 +0300422
Tomas Winkler744f0f22012-11-11 17:38:02 +0200423 poll_wait(file, &dev->iamthif_cl.wait, wait);
Tomas Winklerb950ac12013-07-25 20:15:53 +0300424
Tomas Winkler744f0f22012-11-11 17:38:02 +0200425 mutex_lock(&dev->device_lock);
Tomas Winklerb950ac12013-07-25 20:15:53 +0300426 if (!mei_cl_is_connected(&dev->iamthif_cl)) {
427
428 mask = POLLERR;
429
430 } else if (dev->iamthif_state == MEI_IAMTHIF_READ_COMPLETE &&
431 dev->iamthif_file_object == file) {
432
Tomas Winkler744f0f22012-11-11 17:38:02 +0200433 mask |= (POLLIN | POLLRDNORM);
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200434 dev_dbg(&dev->pdev->dev, "run next amthif cb\n");
Tomas Winkler744f0f22012-11-11 17:38:02 +0200435 mei_amthif_run_next_cmd(dev);
436 }
Tomas Winklerb950ac12013-07-25 20:15:53 +0300437 mutex_unlock(&dev->device_lock);
438
Tomas Winkler744f0f22012-11-11 17:38:02 +0200439 return mask;
440}
441
442
443
Tomas Winkler19838fb2012-11-01 21:17:15 +0200444/**
Masanari Iida393b1482013-04-05 01:05:05 +0900445 * mei_amthif_irq_write_completed - processes completed iamthif operation.
Tomas Winkler19838fb2012-11-01 21:17:15 +0200446 *
447 * @dev: the device structure.
448 * @slots: free slots.
449 * @cb_pos: callback block.
450 * @cl: private data of the file object.
451 * @cmpl_list: complete list.
452 *
453 * returns 0, OK; otherwise, error.
454 */
Tomas Winkler6220d6a2013-05-12 15:34:46 +0300455int mei_amthif_irq_write_complete(struct mei_cl *cl, struct mei_cl_cb *cb,
456 s32 *slots, struct mei_cl_cb *cmpl_list)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200457{
Tomas Winkler6220d6a2013-05-12 15:34:46 +0300458 struct mei_device *dev = cl->dev;
Tomas Winklere46f1872012-12-25 19:06:10 +0200459 struct mei_msg_hdr mei_hdr;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200460 size_t len = dev->iamthif_msg_buf_size - dev->iamthif_msg_buf_index;
Tomas Winklerc8c8d082013-03-11 18:27:02 +0200461 u32 msg_slots = mei_data2slots(len);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200462
Tomas Winklere46f1872012-12-25 19:06:10 +0200463 mei_hdr.host_addr = cl->host_client_id;
464 mei_hdr.me_addr = cl->me_client_id;
465 mei_hdr.reserved = 0;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200466
467 if (*slots >= msg_slots) {
Tomas Winklere46f1872012-12-25 19:06:10 +0200468 mei_hdr.length = len;
469 mei_hdr.msg_complete = 1;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200470 /* Split the message only if we can write the whole host buffer */
471 } else if (*slots == dev->hbuf_depth) {
472 msg_slots = *slots;
473 len = (*slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
Tomas Winklere46f1872012-12-25 19:06:10 +0200474 mei_hdr.length = len;
475 mei_hdr.msg_complete = 0;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200476 } else {
477 /* wait for next time the host buffer is empty */
478 return 0;
479 }
Tomas Winkler19838fb2012-11-01 21:17:15 +0200480
Tomas Winklere46f1872012-12-25 19:06:10 +0200481 dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(&mei_hdr));
Tomas Winkler19838fb2012-11-01 21:17:15 +0200482
Tomas Winkler24c656e2012-11-18 15:13:17 +0200483 *slots -= msg_slots;
Tomas Winklere46f1872012-12-25 19:06:10 +0200484 if (mei_write_message(dev, &mei_hdr,
Tomas Winkler438763f2012-12-25 19:05:59 +0200485 dev->iamthif_msg_buf + dev->iamthif_msg_buf_index)) {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200486 dev->iamthif_state = MEI_IAMTHIF_IDLE;
487 cl->status = -ENODEV;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200488 list_del(&cb->list);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200489 return -ENODEV;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200490 }
491
Tomas Winkler90e0b5f2013-01-08 23:07:14 +0200492 if (mei_cl_flow_ctrl_reduce(cl))
Tomas Winkler24c656e2012-11-18 15:13:17 +0200493 return -ENODEV;
494
Tomas Winklere46f1872012-12-25 19:06:10 +0200495 dev->iamthif_msg_buf_index += mei_hdr.length;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200496 cl->status = 0;
497
Tomas Winklere46f1872012-12-25 19:06:10 +0200498 if (mei_hdr.msg_complete) {
Tomas Winkler24c656e2012-11-18 15:13:17 +0200499 dev->iamthif_state = MEI_IAMTHIF_FLOW_CONTROL;
500 dev->iamthif_flow_control_pending = true;
501
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200502 /* save iamthif cb sent to amthif client */
Tomas Winkler24c656e2012-11-18 15:13:17 +0200503 cb->buf_idx = dev->iamthif_msg_buf_index;
504 dev->iamthif_current_cb = cb;
505
506 list_move_tail(&cb->list, &dev->write_waiting_list.list);
507 }
508
509
Tomas Winkler19838fb2012-11-01 21:17:15 +0200510 return 0;
511}
512
513/**
514 * mei_amthif_irq_read_message - read routine after ISR to
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200515 * handle the read amthif message
Tomas Winkler19838fb2012-11-01 21:17:15 +0200516 *
Tomas Winkler19838fb2012-11-01 21:17:15 +0200517 * @dev: the device structure
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200518 * @mei_hdr: header of amthif message
Tomas Winkler5ceb46e2013-04-19 21:16:53 +0300519 * @complete_list: An instance of our list structure
Tomas Winkler19838fb2012-11-01 21:17:15 +0200520 *
521 * returns 0 on success, <0 on failure.
522 */
Tomas Winkler5ceb46e2013-04-19 21:16:53 +0300523int mei_amthif_irq_read_msg(struct mei_device *dev,
524 struct mei_msg_hdr *mei_hdr,
525 struct mei_cl_cb *complete_list)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200526{
Tomas Winkler19838fb2012-11-01 21:17:15 +0200527 struct mei_cl_cb *cb;
528 unsigned char *buffer;
529
530 BUG_ON(mei_hdr->me_addr != dev->iamthif_cl.me_client_id);
531 BUG_ON(dev->iamthif_state != MEI_IAMTHIF_READING);
532
533 buffer = dev->iamthif_msg_buf + dev->iamthif_msg_buf_index;
534 BUG_ON(dev->iamthif_mtu < dev->iamthif_msg_buf_index + mei_hdr->length);
535
536 mei_read_slots(dev, buffer, mei_hdr->length);
537
538 dev->iamthif_msg_buf_index += mei_hdr->length;
539
540 if (!mei_hdr->msg_complete)
541 return 0;
542
Tomas Winkler5ceb46e2013-04-19 21:16:53 +0300543 dev_dbg(&dev->pdev->dev, "amthif_message_buffer_index =%d\n",
Tomas Winkler19838fb2012-11-01 21:17:15 +0200544 mei_hdr->length);
545
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200546 dev_dbg(&dev->pdev->dev, "completed amthif read.\n ");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200547 if (!dev->iamthif_current_cb)
548 return -ENODEV;
549
550 cb = dev->iamthif_current_cb;
551 dev->iamthif_current_cb = NULL;
552
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200553 if (!cb->cl)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200554 return -ENODEV;
555
556 dev->iamthif_stall_timer = 0;
557 cb->buf_idx = dev->iamthif_msg_buf_index;
558 cb->read_time = jiffies;
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200559 if (dev->iamthif_ioctl && cb->cl == &dev->iamthif_cl) {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200560 /* found the iamthif cb */
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200561 dev_dbg(&dev->pdev->dev, "complete the amthif read cb.\n ");
562 dev_dbg(&dev->pdev->dev, "add the amthif read cb to complete.\n ");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200563 list_add_tail(&cb->list, &complete_list->list);
564 }
565 return 0;
566}
567
568/**
569 * mei_amthif_irq_read - prepares to read amthif data.
570 *
571 * @dev: the device structure.
572 * @slots: free slots.
573 *
574 * returns 0, OK; otherwise, error.
575 */
576int mei_amthif_irq_read(struct mei_device *dev, s32 *slots)
577{
Tomas Winklerc8c8d082013-03-11 18:27:02 +0200578 u32 msg_slots = mei_data2slots(sizeof(struct hbm_flow_control));
Tomas Winkler19838fb2012-11-01 21:17:15 +0200579
Tomas Winklerc8c8d082013-03-11 18:27:02 +0200580 if (*slots < msg_slots)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200581 return -EMSGSIZE;
Tomas Winklerc8c8d082013-03-11 18:27:02 +0200582
583 *slots -= msg_slots;
584
Tomas Winkler8120e722012-12-25 19:06:11 +0200585 if (mei_hbm_cl_flow_control_req(dev, &dev->iamthif_cl)) {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200586 dev_dbg(&dev->pdev->dev, "iamthif flow control failed\n");
587 return -EIO;
588 }
589
590 dev_dbg(&dev->pdev->dev, "iamthif flow control success\n");
591 dev->iamthif_state = MEI_IAMTHIF_READING;
592 dev->iamthif_flow_control_pending = false;
593 dev->iamthif_msg_buf_index = 0;
594 dev->iamthif_msg_buf_size = 0;
595 dev->iamthif_stall_timer = MEI_IAMTHIF_STALL_TIMER;
Tomas Winkler330dd7d2013-02-06 14:06:43 +0200596 dev->hbuf_is_ready = mei_hbuf_is_ready(dev);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200597 return 0;
598}
599
600/**
601 * mei_amthif_complete - complete amthif callback.
602 *
603 * @dev: the device structure.
604 * @cb_pos: callback block.
605 */
606void mei_amthif_complete(struct mei_device *dev, struct mei_cl_cb *cb)
607{
608 if (dev->iamthif_canceled != 1) {
609 dev->iamthif_state = MEI_IAMTHIF_READ_COMPLETE;
610 dev->iamthif_stall_timer = 0;
611 memcpy(cb->response_buffer.data,
612 dev->iamthif_msg_buf,
613 dev->iamthif_msg_buf_index);
Tomas Winklere773efc2012-11-11 17:37:58 +0200614 list_add_tail(&cb->list, &dev->amthif_rd_complete_list.list);
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200615 dev_dbg(&dev->pdev->dev, "amthif read completed\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200616 dev->iamthif_timer = jiffies;
617 dev_dbg(&dev->pdev->dev, "dev->iamthif_timer = %ld\n",
618 dev->iamthif_timer);
619 } else {
620 mei_amthif_run_next_cmd(dev);
621 }
622
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200623 dev_dbg(&dev->pdev->dev, "completing amthif call back.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200624 wake_up_interruptible(&dev->iamthif_cl.wait);
625}
626
Tomas Winklera562d5c2012-11-11 17:38:01 +0200627/**
628 * mei_clear_list - removes all callbacks associated with file
629 * from mei_cb_list
630 *
631 * @dev: device structure.
632 * @file: file structure
633 * @mei_cb_list: callbacks list
634 *
635 * mei_clear_list is called to clear resources associated with file
636 * when application calls close function or Ctrl-C was pressed
637 *
638 * returns true if callback removed from the list, false otherwise
639 */
640static bool mei_clear_list(struct mei_device *dev,
641 const struct file *file, struct list_head *mei_cb_list)
642{
643 struct mei_cl_cb *cb_pos = NULL;
644 struct mei_cl_cb *cb_next = NULL;
645 bool removed = false;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200646
Tomas Winklera562d5c2012-11-11 17:38:01 +0200647 /* list all list member */
648 list_for_each_entry_safe(cb_pos, cb_next, mei_cb_list, list) {
649 /* check if list member associated with a file */
650 if (file == cb_pos->file_object) {
651 /* remove member from the list */
652 list_del(&cb_pos->list);
653 /* check if cb equal to current iamthif cb */
654 if (dev->iamthif_current_cb == cb_pos) {
655 dev->iamthif_current_cb = NULL;
656 /* send flow control to iamthif client */
Tomas Winkler8120e722012-12-25 19:06:11 +0200657 mei_hbm_cl_flow_control_req(dev,
658 &dev->iamthif_cl);
Tomas Winklera562d5c2012-11-11 17:38:01 +0200659 }
660 /* free all allocated buffers */
661 mei_io_cb_free(cb_pos);
662 cb_pos = NULL;
663 removed = true;
664 }
665 }
666 return removed;
667}
668
669/**
670 * mei_clear_lists - removes all callbacks associated with file
671 *
672 * @dev: device structure
673 * @file: file structure
674 *
675 * mei_clear_lists is called to clear resources associated with file
676 * when application calls close function or Ctrl-C was pressed
677 *
678 * returns true if callback removed from the list, false otherwise
679 */
680static bool mei_clear_lists(struct mei_device *dev, struct file *file)
681{
682 bool removed = false;
683
684 /* remove callbacks associated with a file */
685 mei_clear_list(dev, file, &dev->amthif_cmd_list.list);
686 if (mei_clear_list(dev, file, &dev->amthif_rd_complete_list.list))
687 removed = true;
688
689 mei_clear_list(dev, file, &dev->ctrl_rd_list.list);
690
691 if (mei_clear_list(dev, file, &dev->ctrl_wr_list.list))
692 removed = true;
693
694 if (mei_clear_list(dev, file, &dev->write_waiting_list.list))
695 removed = true;
696
697 if (mei_clear_list(dev, file, &dev->write_list.list))
698 removed = true;
699
700 /* check if iamthif_current_cb not NULL */
701 if (dev->iamthif_current_cb && !removed) {
702 /* check file and iamthif current cb association */
703 if (dev->iamthif_current_cb->file_object == file) {
704 /* remove cb */
705 mei_io_cb_free(dev->iamthif_current_cb);
706 dev->iamthif_current_cb = NULL;
707 removed = true;
708 }
709 }
710 return removed;
711}
712
713/**
714* mei_amthif_release - the release function
715*
Masanari Iida393b1482013-04-05 01:05:05 +0900716* @dev: device structure
Tomas Winklera562d5c2012-11-11 17:38:01 +0200717* @file: pointer to file structure
718*
719* returns 0 on success, <0 on error
720*/
721int mei_amthif_release(struct mei_device *dev, struct file *file)
722{
723 if (dev->open_handle_count > 0)
724 dev->open_handle_count--;
725
726 if (dev->iamthif_file_object == file &&
727 dev->iamthif_state != MEI_IAMTHIF_IDLE) {
728
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200729 dev_dbg(&dev->pdev->dev, "amthif canceled iamthif state %d\n",
Tomas Winklera562d5c2012-11-11 17:38:01 +0200730 dev->iamthif_state);
731 dev->iamthif_canceled = true;
732 if (dev->iamthif_state == MEI_IAMTHIF_READ_COMPLETE) {
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200733 dev_dbg(&dev->pdev->dev, "run next amthif iamthif cb\n");
Tomas Winklera562d5c2012-11-11 17:38:01 +0200734 mei_amthif_run_next_cmd(dev);
735 }
736 }
737
738 if (mei_clear_lists(dev, file))
739 dev->iamthif_state = MEI_IAMTHIF_IDLE;
740
741 return 0;
742}