blob: 4114758cd1ceabd5539399a4bd978f6a0af3cf81 [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>
Tomas Winkler19838fb2012-11-01 21:17:15 +020024#include <linux/ioctl.h>
25#include <linux/cdev.h>
26#include <linux/list.h>
27#include <linux/delay.h>
28#include <linux/sched.h>
29#include <linux/uuid.h>
30#include <linux/jiffies.h>
31#include <linux/uaccess.h>
32
Tomas Winkler47a73802012-12-25 19:06:03 +020033#include <linux/mei.h>
Tomas Winkler19838fb2012-11-01 21:17:15 +020034
35#include "mei_dev.h"
Tomas Winkler0edb23f2013-01-08 23:07:12 +020036#include "hbm.h"
Tomas Winkler90e0b5f12013-01-08 23:07:14 +020037#include "client.h"
Tomas Winkler19838fb2012-11-01 21:17:15 +020038
Tomas Winkler1a1aca42013-01-08 23:07:21 +020039const uuid_le mei_amthif_guid = UUID_LE(0x12f80028, 0xb4b7, 0x4b2d,
40 0xac, 0xa8, 0x46, 0xe0,
41 0xff, 0x65, 0x81, 0x4c);
Tomas Winkler19838fb2012-11-01 21:17:15 +020042
43/**
44 * mei_amthif_reset_params - initializes mei device iamthif
45 *
46 * @dev: the device structure
47 */
48void mei_amthif_reset_params(struct mei_device *dev)
49{
50 /* reset iamthif parameters. */
51 dev->iamthif_current_cb = NULL;
52 dev->iamthif_msg_buf_size = 0;
53 dev->iamthif_msg_buf_index = 0;
54 dev->iamthif_canceled = false;
55 dev->iamthif_ioctl = false;
56 dev->iamthif_state = MEI_IAMTHIF_IDLE;
57 dev->iamthif_timer = 0;
Alexander Usyskin4a704572013-09-02 13:29:47 +030058 dev->iamthif_stall_timer = 0;
Tomas Winkler22f96a02013-09-16 23:44:47 +030059 dev->iamthif_open_count = 0;
Tomas Winkler19838fb2012-11-01 21:17:15 +020060}
61
62/**
Masanari Iida393b1482013-04-05 01:05:05 +090063 * mei_amthif_host_init - mei initialization amthif client.
Tomas Winkler19838fb2012-11-01 21:17:15 +020064 *
65 * @dev: the device structure
66 *
67 */
Tomas Winkler781d0d82013-01-08 23:07:22 +020068int mei_amthif_host_init(struct mei_device *dev)
Tomas Winkler19838fb2012-11-01 21:17:15 +020069{
Tomas Winkler781d0d82013-01-08 23:07:22 +020070 struct mei_cl *cl = &dev->iamthif_cl;
Tomas Winklerd3208322014-08-24 12:08:55 +030071 struct mei_me_client *me_cl;
Tomas Winkler19838fb2012-11-01 21:17:15 +020072 unsigned char *msg_buf;
Tomas Winklerd3208322014-08-24 12:08:55 +030073 int ret;
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 Winklerd3208322014-08-24 12:08:55 +030079 me_cl = mei_me_cl_by_uuid(dev, &mei_amthif_guid);
80 if (!me_cl) {
81 dev_info(&dev->pdev->dev, "amthif: failed to find the client");
Alexander Usyskin7ca96aa2014-02-19 17:35:49 +020082 return -ENOTTY;
Tomas Winkler19838fb2012-11-01 21:17:15 +020083 }
84
Tomas Winklerd3208322014-08-24 12:08:55 +030085 cl->me_client_id = me_cl->client_id;
Tomas Winklerd880f322014-08-21 14:29:15 +030086 cl->cl_uuid = me_cl->props.protocol_name;
Tomas Winkler781d0d82013-01-08 23:07:22 +020087
Tomas Winkler19838fb2012-11-01 21:17:15 +020088 /* Assign iamthif_mtu to the value received from ME */
89
Tomas Winklerd3208322014-08-24 12:08:55 +030090 dev->iamthif_mtu = me_cl->props.max_msg_length;
91 dev_dbg(&dev->pdev->dev, "IAMTHIF_MTU = %d\n", dev->iamthif_mtu);
Tomas Winkler19838fb2012-11-01 21:17:15 +020092
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) {
Tomas Winkleraf68fb62013-09-16 23:44:48 +0300109 dev_err(&dev->pdev->dev,
110 "amthif: failed link client %d\n", ret);
111 return ret;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200112 }
Tomas Winkler781d0d82013-01-08 23:07:22 +0200113
Tomas Winkler64092852014-02-17 15:13:21 +0200114 ret = mei_cl_connect(cl, NULL);
115
116 dev->iamthif_state = MEI_IAMTHIF_IDLE;
117
118 return ret;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200119}
120
121/**
122 * mei_amthif_find_read_list_entry - finds a amthilist entry for current file
123 *
124 * @dev: the device structure
125 * @file: pointer to file object
126 *
127 * returns returned a list entry on success, NULL on failure.
128 */
129struct mei_cl_cb *mei_amthif_find_read_list_entry(struct mei_device *dev,
130 struct file *file)
131{
Tomas Winkler31f88f52014-02-17 15:13:25 +0200132 struct mei_cl_cb *cb;
Alexander Usyskin05e314e2014-08-14 17:22:21 +0300133 list_for_each_entry(cb, &dev->amthif_rd_complete_list.list, list)
134 if (cb->file_object == file)
Tomas Winkler31f88f52014-02-17 15:13:25 +0200135 return cb;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200136 return NULL;
137}
138
139
140/**
141 * mei_amthif_read - read data from AMTHIF client
142 *
143 * @dev: the device structure
144 * @if_num: minor number
145 * @file: pointer to file object
146 * @*ubuf: pointer to user data in user space
147 * @length: data length to read
148 * @offset: data read offset
149 *
150 * Locking: called under "dev->device_lock" lock
151 *
152 * returns
153 * returned data length on success,
154 * zero if no data to read,
155 * negative on failure.
156 */
157int mei_amthif_read(struct mei_device *dev, struct file *file,
158 char __user *ubuf, size_t length, loff_t *offset)
159{
Tomas Winklerd3208322014-08-24 12:08:55 +0300160 struct mei_cl *cl = file->private_data;
161 struct mei_cl_cb *cb;
162 unsigned long timeout;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200163 int rets;
164 int wait_ret;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200165
Alexander Usyskin83ce0742014-01-08 22:31:46 +0200166 /* Only possible if we are in timeout */
Alexander Usyskin05e314e2014-08-14 17:22:21 +0300167 if (!cl) {
168 dev_err(&dev->pdev->dev, "bad file ext.\n");
Alexander Usyskin7ca96aa2014-02-19 17:35:49 +0200169 return -ETIME;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200170 }
171
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200172 dev_dbg(&dev->pdev->dev, "checking amthif data\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200173 cb = mei_amthif_find_read_list_entry(dev, file);
174
175 /* Check for if we can block or not*/
176 if (cb == NULL && file->f_flags & O_NONBLOCK)
177 return -EAGAIN;
178
179
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200180 dev_dbg(&dev->pdev->dev, "waiting for amthif data\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200181 while (cb == NULL) {
182 /* unlock the Mutex */
183 mutex_unlock(&dev->device_lock);
184
185 wait_ret = wait_event_interruptible(dev->iamthif_cl.wait,
186 (cb = mei_amthif_find_read_list_entry(dev, file)));
187
Alexey Khoroshilove6028db2012-12-22 01:44:16 +0400188 /* Locking again the Mutex */
189 mutex_lock(&dev->device_lock);
190
Tomas Winkler19838fb2012-11-01 21:17:15 +0200191 if (wait_ret)
192 return -ERESTARTSYS;
193
194 dev_dbg(&dev->pdev->dev, "woke up from sleep\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200195 }
196
197
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200198 dev_dbg(&dev->pdev->dev, "Got amthif data\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200199 dev->iamthif_timer = 0;
200
201 if (cb) {
202 timeout = cb->read_time +
203 mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER);
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200204 dev_dbg(&dev->pdev->dev, "amthif timeout = %lud\n",
Tomas Winkler19838fb2012-11-01 21:17:15 +0200205 timeout);
206
207 if (time_after(jiffies, timeout)) {
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200208 dev_dbg(&dev->pdev->dev, "amthif Time out\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200209 /* 15 sec for the message has expired */
210 list_del(&cb->list);
Alexander Usyskin7ca96aa2014-02-19 17:35:49 +0200211 rets = -ETIME;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200212 goto free;
213 }
214 }
215 /* if the whole message will fit remove it from the list */
216 if (cb->buf_idx >= *offset && length >= (cb->buf_idx - *offset))
217 list_del(&cb->list);
218 else if (cb->buf_idx > 0 && cb->buf_idx <= *offset) {
219 /* end of the message has been reached */
220 list_del(&cb->list);
221 rets = 0;
222 goto free;
223 }
224 /* else means that not full buffer will be read and do not
225 * remove message from deletion list
226 */
227
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200228 dev_dbg(&dev->pdev->dev, "amthif cb->response_buffer size - %d\n",
Tomas Winkler19838fb2012-11-01 21:17:15 +0200229 cb->response_buffer.size);
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200230 dev_dbg(&dev->pdev->dev, "amthif cb->buf_idx - %lu\n", cb->buf_idx);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200231
Alexander Usyskin83ce0742014-01-08 22:31:46 +0200232 /* length is being truncated to PAGE_SIZE, however,
Tomas Winkler19838fb2012-11-01 21:17:15 +0200233 * the buf_idx may point beyond */
234 length = min_t(size_t, length, (cb->buf_idx - *offset));
235
Alexander Usyskindbac4742014-03-12 13:19:13 +0200236 if (copy_to_user(ubuf, cb->response_buffer.data + *offset, length)) {
237 dev_dbg(&dev->pdev->dev, "failed to copy data to userland\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200238 rets = -EFAULT;
Tomas Winkler34e267d2014-03-16 14:35:57 +0200239 } else {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200240 rets = length;
241 if ((*offset + length) < cb->buf_idx) {
242 *offset += length;
243 goto out;
244 }
245 }
246free:
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200247 dev_dbg(&dev->pdev->dev, "free amthif cb memory.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200248 *offset = 0;
249 mei_io_cb_free(cb);
250out:
251 return rets;
252}
253
254/**
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200255 * mei_amthif_send_cmd - send amthif command to the ME
Tomas Winkler19838fb2012-11-01 21:17:15 +0200256 *
257 * @dev: the device structure
258 * @cb: mei call back struct
259 *
260 * returns 0 on success, <0 on failure.
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200261 *
Tomas Winkler19838fb2012-11-01 21:17:15 +0200262 */
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200263static int mei_amthif_send_cmd(struct mei_device *dev, struct mei_cl_cb *cb)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200264{
265 struct mei_msg_hdr mei_hdr;
266 int ret;
267
268 if (!dev || !cb)
269 return -ENODEV;
270
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200271 dev_dbg(&dev->pdev->dev, "write data to amthif client.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200272
273 dev->iamthif_state = MEI_IAMTHIF_WRITING;
274 dev->iamthif_current_cb = cb;
275 dev->iamthif_file_object = cb->file_object;
276 dev->iamthif_canceled = false;
277 dev->iamthif_ioctl = true;
278 dev->iamthif_msg_buf_size = cb->request_buffer.size;
279 memcpy(dev->iamthif_msg_buf, cb->request_buffer.data,
280 cb->request_buffer.size);
281
Tomas Winkler90e0b5f12013-01-08 23:07:14 +0200282 ret = mei_cl_flow_ctrl_creds(&dev->iamthif_cl);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200283 if (ret < 0)
284 return ret;
285
Tomas Winkler6aae48f2014-02-19 17:35:47 +0200286 if (ret && mei_hbuf_acquire(dev)) {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200287 ret = 0;
Tomas Winkler827eef52013-02-06 14:06:41 +0200288 if (cb->request_buffer.size > mei_hbuf_max_len(dev)) {
289 mei_hdr.length = mei_hbuf_max_len(dev);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200290 mei_hdr.msg_complete = 0;
291 } else {
292 mei_hdr.length = cb->request_buffer.size;
293 mei_hdr.msg_complete = 1;
294 }
295
296 mei_hdr.host_addr = dev->iamthif_cl.host_client_id;
297 mei_hdr.me_addr = dev->iamthif_cl.me_client_id;
298 mei_hdr.reserved = 0;
Tomas Winkler479327f2013-12-17 15:56:56 +0200299 mei_hdr.internal = 0;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200300 dev->iamthif_msg_buf_index += mei_hdr.length;
Tomas Winkler2ebf8c92013-09-16 23:44:43 +0300301 ret = mei_write_message(dev, &mei_hdr, dev->iamthif_msg_buf);
302 if (ret)
303 return ret;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200304
305 if (mei_hdr.msg_complete) {
Tomas Winkler90e0b5f12013-01-08 23:07:14 +0200306 if (mei_cl_flow_ctrl_reduce(&dev->iamthif_cl))
Tomas Winkler2ebf8c92013-09-16 23:44:43 +0300307 return -EIO;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200308 dev->iamthif_flow_control_pending = true;
309 dev->iamthif_state = MEI_IAMTHIF_FLOW_CONTROL;
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200310 dev_dbg(&dev->pdev->dev, "add amthif cb to write waiting list\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200311 dev->iamthif_current_cb = cb;
312 dev->iamthif_file_object = cb->file_object;
313 list_add_tail(&cb->list, &dev->write_waiting_list.list);
314 } else {
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200315 dev_dbg(&dev->pdev->dev, "message does not complete, so add amthif cb to write list.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200316 list_add_tail(&cb->list, &dev->write_list.list);
317 }
318 } else {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200319 list_add_tail(&cb->list, &dev->write_list.list);
320 }
321 return 0;
322}
323
324/**
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200325 * mei_amthif_write - write amthif data to amthif client
326 *
327 * @dev: the device structure
328 * @cb: mei call back struct
329 *
330 * returns 0 on success, <0 on failure.
331 *
332 */
333int mei_amthif_write(struct mei_device *dev, struct mei_cl_cb *cb)
334{
335 int ret;
336
337 if (!dev || !cb)
338 return -ENODEV;
339
340 ret = mei_io_cb_alloc_resp_buf(cb, dev->iamthif_mtu);
341 if (ret)
342 return ret;
343
Tomas Winkler02a7eec2014-02-12 21:41:51 +0200344 cb->fop_type = MEI_FOP_WRITE;
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200345
Tomas Winklere773efc2012-11-11 17:37:58 +0200346 if (!list_empty(&dev->amthif_cmd_list.list) ||
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200347 dev->iamthif_state != MEI_IAMTHIF_IDLE) {
348 dev_dbg(&dev->pdev->dev,
349 "amthif state = %d\n", dev->iamthif_state);
350 dev_dbg(&dev->pdev->dev, "AMTHIF: add cb to the wait list\n");
Tomas Winklere773efc2012-11-11 17:37:58 +0200351 list_add_tail(&cb->list, &dev->amthif_cmd_list.list);
Tomas Winklerab5c4a52012-11-01 21:17:18 +0200352 return 0;
353 }
354 return mei_amthif_send_cmd(dev, cb);
355}
356/**
Tomas Winkler19838fb2012-11-01 21:17:15 +0200357 * mei_amthif_run_next_cmd
358 *
359 * @dev: the device structure
360 *
361 * returns 0 on success, <0 on failure.
362 */
363void mei_amthif_run_next_cmd(struct mei_device *dev)
364{
Alexander Usyskin05e314e2014-08-14 17:22:21 +0300365 struct mei_cl_cb *cb;
366 struct mei_cl_cb *next;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200367 int status;
368
369 if (!dev)
370 return;
371
372 dev->iamthif_msg_buf_size = 0;
373 dev->iamthif_msg_buf_index = 0;
374 dev->iamthif_canceled = false;
375 dev->iamthif_ioctl = true;
376 dev->iamthif_state = MEI_IAMTHIF_IDLE;
377 dev->iamthif_timer = 0;
378 dev->iamthif_file_object = NULL;
379
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200380 dev_dbg(&dev->pdev->dev, "complete amthif cmd_list cb.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200381
Alexander Usyskin05e314e2014-08-14 17:22:21 +0300382 list_for_each_entry_safe(cb, next, &dev->amthif_cmd_list.list, list) {
383 list_del(&cb->list);
384 if (!cb->cl)
385 continue;
386 status = mei_amthif_send_cmd(dev, cb);
387 if (status)
388 dev_warn(&dev->pdev->dev, "amthif write failed status = %d\n",
Tomas Winkler19838fb2012-11-01 21:17:15 +0200389 status);
Alexander Usyskin05e314e2014-08-14 17:22:21 +0300390 break;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200391 }
392}
393
Tomas Winkler744f0f22012-11-11 17:38:02 +0200394
395unsigned int mei_amthif_poll(struct mei_device *dev,
396 struct file *file, poll_table *wait)
397{
398 unsigned int mask = 0;
Tomas Winklerb950ac12013-07-25 20:15:53 +0300399
Tomas Winkler744f0f22012-11-11 17:38:02 +0200400 poll_wait(file, &dev->iamthif_cl.wait, wait);
Tomas Winklerb950ac12013-07-25 20:15:53 +0300401
Tomas Winkler744f0f22012-11-11 17:38:02 +0200402 mutex_lock(&dev->device_lock);
Tomas Winklerb950ac12013-07-25 20:15:53 +0300403 if (!mei_cl_is_connected(&dev->iamthif_cl)) {
404
405 mask = POLLERR;
406
407 } else if (dev->iamthif_state == MEI_IAMTHIF_READ_COMPLETE &&
408 dev->iamthif_file_object == file) {
409
Tomas Winkler744f0f22012-11-11 17:38:02 +0200410 mask |= (POLLIN | POLLRDNORM);
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200411 dev_dbg(&dev->pdev->dev, "run next amthif cb\n");
Tomas Winkler744f0f22012-11-11 17:38:02 +0200412 mei_amthif_run_next_cmd(dev);
413 }
Tomas Winklerb950ac12013-07-25 20:15:53 +0300414 mutex_unlock(&dev->device_lock);
415
Tomas Winkler744f0f22012-11-11 17:38:02 +0200416 return mask;
417}
418
419
420
Tomas Winkler19838fb2012-11-01 21:17:15 +0200421/**
Tomas Winkler9d098192014-02-19 17:35:48 +0200422 * mei_amthif_irq_write - write iamthif command in irq thread context.
Tomas Winkler19838fb2012-11-01 21:17:15 +0200423 *
424 * @dev: the device structure.
Tomas Winkler19838fb2012-11-01 21:17:15 +0200425 * @cb_pos: callback block.
426 * @cl: private data of the file object.
427 * @cmpl_list: complete list.
428 *
429 * returns 0, OK; otherwise, error.
430 */
Tomas Winkler9d098192014-02-19 17:35:48 +0200431int mei_amthif_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
432 struct mei_cl_cb *cmpl_list)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200433{
Tomas Winkler6220d6a2013-05-12 15:34:46 +0300434 struct mei_device *dev = cl->dev;
Tomas Winklere46f1872012-12-25 19:06:10 +0200435 struct mei_msg_hdr mei_hdr;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200436 size_t len = dev->iamthif_msg_buf_size - dev->iamthif_msg_buf_index;
Tomas Winklerc8c8d082013-03-11 18:27:02 +0200437 u32 msg_slots = mei_data2slots(len);
Tomas Winkler9d098192014-02-19 17:35:48 +0200438 int slots;
Tomas Winkler2ebf8c92013-09-16 23:44:43 +0300439 int rets;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200440
Tomas Winkler136698e2013-09-16 23:44:44 +0300441 rets = mei_cl_flow_ctrl_creds(cl);
442 if (rets < 0)
443 return rets;
444
445 if (rets == 0) {
446 cl_dbg(dev, cl, "No flow control credentials: not sending.\n");
447 return 0;
448 }
449
Tomas Winklere46f1872012-12-25 19:06:10 +0200450 mei_hdr.host_addr = cl->host_client_id;
451 mei_hdr.me_addr = cl->me_client_id;
452 mei_hdr.reserved = 0;
Tomas Winkler479327f2013-12-17 15:56:56 +0200453 mei_hdr.internal = 0;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200454
Tomas Winkler9d098192014-02-19 17:35:48 +0200455 slots = mei_hbuf_empty_slots(dev);
456
457 if (slots >= msg_slots) {
Tomas Winklere46f1872012-12-25 19:06:10 +0200458 mei_hdr.length = len;
459 mei_hdr.msg_complete = 1;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200460 /* Split the message only if we can write the whole host buffer */
Tomas Winkler9d098192014-02-19 17:35:48 +0200461 } else if (slots == dev->hbuf_depth) {
462 msg_slots = slots;
463 len = (slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
Tomas Winklere46f1872012-12-25 19:06:10 +0200464 mei_hdr.length = len;
465 mei_hdr.msg_complete = 0;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200466 } else {
467 /* wait for next time the host buffer is empty */
468 return 0;
469 }
Tomas Winkler19838fb2012-11-01 21:17:15 +0200470
Tomas Winklere46f1872012-12-25 19:06:10 +0200471 dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(&mei_hdr));
Tomas Winkler19838fb2012-11-01 21:17:15 +0200472
Tomas Winkler2ebf8c92013-09-16 23:44:43 +0300473 rets = mei_write_message(dev, &mei_hdr,
474 dev->iamthif_msg_buf + dev->iamthif_msg_buf_index);
475 if (rets) {
476 dev->iamthif_state = MEI_IAMTHIF_IDLE;
477 cl->status = rets;
478 list_del(&cb->list);
479 return rets;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200480 }
481
Tomas Winkler90e0b5f12013-01-08 23:07:14 +0200482 if (mei_cl_flow_ctrl_reduce(cl))
Tomas Winkler2ebf8c92013-09-16 23:44:43 +0300483 return -EIO;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200484
Tomas Winklere46f1872012-12-25 19:06:10 +0200485 dev->iamthif_msg_buf_index += mei_hdr.length;
Tomas Winkler24c656e2012-11-18 15:13:17 +0200486 cl->status = 0;
487
Tomas Winklere46f1872012-12-25 19:06:10 +0200488 if (mei_hdr.msg_complete) {
Tomas Winkler24c656e2012-11-18 15:13:17 +0200489 dev->iamthif_state = MEI_IAMTHIF_FLOW_CONTROL;
490 dev->iamthif_flow_control_pending = true;
491
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200492 /* save iamthif cb sent to amthif client */
Tomas Winkler24c656e2012-11-18 15:13:17 +0200493 cb->buf_idx = dev->iamthif_msg_buf_index;
494 dev->iamthif_current_cb = cb;
495
496 list_move_tail(&cb->list, &dev->write_waiting_list.list);
497 }
498
499
Tomas Winkler19838fb2012-11-01 21:17:15 +0200500 return 0;
501}
502
503/**
504 * mei_amthif_irq_read_message - read routine after ISR to
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200505 * handle the read amthif message
Tomas Winkler19838fb2012-11-01 21:17:15 +0200506 *
Tomas Winkler19838fb2012-11-01 21:17:15 +0200507 * @dev: the device structure
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200508 * @mei_hdr: header of amthif message
Tomas Winkler5ceb46e2013-04-19 21:16:53 +0300509 * @complete_list: An instance of our list structure
Tomas Winkler19838fb2012-11-01 21:17:15 +0200510 *
511 * returns 0 on success, <0 on failure.
512 */
Tomas Winkler5ceb46e2013-04-19 21:16:53 +0300513int mei_amthif_irq_read_msg(struct mei_device *dev,
514 struct mei_msg_hdr *mei_hdr,
515 struct mei_cl_cb *complete_list)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200516{
Tomas Winkler19838fb2012-11-01 21:17:15 +0200517 struct mei_cl_cb *cb;
518 unsigned char *buffer;
519
520 BUG_ON(mei_hdr->me_addr != dev->iamthif_cl.me_client_id);
521 BUG_ON(dev->iamthif_state != MEI_IAMTHIF_READING);
522
523 buffer = dev->iamthif_msg_buf + dev->iamthif_msg_buf_index;
524 BUG_ON(dev->iamthif_mtu < dev->iamthif_msg_buf_index + mei_hdr->length);
525
526 mei_read_slots(dev, buffer, mei_hdr->length);
527
528 dev->iamthif_msg_buf_index += mei_hdr->length;
529
530 if (!mei_hdr->msg_complete)
531 return 0;
532
Tomas Winkler5ceb46e2013-04-19 21:16:53 +0300533 dev_dbg(&dev->pdev->dev, "amthif_message_buffer_index =%d\n",
Tomas Winkler19838fb2012-11-01 21:17:15 +0200534 mei_hdr->length);
535
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200536 dev_dbg(&dev->pdev->dev, "completed amthif read.\n ");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200537 if (!dev->iamthif_current_cb)
538 return -ENODEV;
539
540 cb = dev->iamthif_current_cb;
541 dev->iamthif_current_cb = NULL;
542
Tomas Winklerdb3ed432012-11-11 17:37:59 +0200543 if (!cb->cl)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200544 return -ENODEV;
545
546 dev->iamthif_stall_timer = 0;
547 cb->buf_idx = dev->iamthif_msg_buf_index;
548 cb->read_time = jiffies;
Alexander Usyskin05e314e2014-08-14 17:22:21 +0300549 if (dev->iamthif_ioctl) {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200550 /* found the iamthif cb */
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200551 dev_dbg(&dev->pdev->dev, "complete the amthif read cb.\n ");
552 dev_dbg(&dev->pdev->dev, "add the amthif read cb to complete.\n ");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200553 list_add_tail(&cb->list, &complete_list->list);
554 }
555 return 0;
556}
557
558/**
559 * mei_amthif_irq_read - prepares to read amthif data.
560 *
561 * @dev: the device structure.
562 * @slots: free slots.
563 *
564 * returns 0, OK; otherwise, error.
565 */
566int mei_amthif_irq_read(struct mei_device *dev, s32 *slots)
567{
Tomas Winklerc8c8d082013-03-11 18:27:02 +0200568 u32 msg_slots = mei_data2slots(sizeof(struct hbm_flow_control));
Tomas Winkler19838fb2012-11-01 21:17:15 +0200569
Tomas Winklerc8c8d082013-03-11 18:27:02 +0200570 if (*slots < msg_slots)
Tomas Winkler19838fb2012-11-01 21:17:15 +0200571 return -EMSGSIZE;
Tomas Winklerc8c8d082013-03-11 18:27:02 +0200572
573 *slots -= msg_slots;
574
Tomas Winkler8120e722012-12-25 19:06:11 +0200575 if (mei_hbm_cl_flow_control_req(dev, &dev->iamthif_cl)) {
Tomas Winkler19838fb2012-11-01 21:17:15 +0200576 dev_dbg(&dev->pdev->dev, "iamthif flow control failed\n");
577 return -EIO;
578 }
579
580 dev_dbg(&dev->pdev->dev, "iamthif flow control success\n");
581 dev->iamthif_state = MEI_IAMTHIF_READING;
582 dev->iamthif_flow_control_pending = false;
583 dev->iamthif_msg_buf_index = 0;
584 dev->iamthif_msg_buf_size = 0;
585 dev->iamthif_stall_timer = MEI_IAMTHIF_STALL_TIMER;
Tomas Winkler330dd7d2013-02-06 14:06:43 +0200586 dev->hbuf_is_ready = mei_hbuf_is_ready(dev);
Tomas Winkler19838fb2012-11-01 21:17:15 +0200587 return 0;
588}
589
590/**
591 * mei_amthif_complete - complete amthif callback.
592 *
593 * @dev: the device structure.
594 * @cb_pos: callback block.
595 */
596void mei_amthif_complete(struct mei_device *dev, struct mei_cl_cb *cb)
597{
598 if (dev->iamthif_canceled != 1) {
599 dev->iamthif_state = MEI_IAMTHIF_READ_COMPLETE;
600 dev->iamthif_stall_timer = 0;
601 memcpy(cb->response_buffer.data,
602 dev->iamthif_msg_buf,
603 dev->iamthif_msg_buf_index);
Tomas Winklere773efc2012-11-11 17:37:58 +0200604 list_add_tail(&cb->list, &dev->amthif_rd_complete_list.list);
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200605 dev_dbg(&dev->pdev->dev, "amthif read completed\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200606 dev->iamthif_timer = jiffies;
607 dev_dbg(&dev->pdev->dev, "dev->iamthif_timer = %ld\n",
608 dev->iamthif_timer);
609 } else {
610 mei_amthif_run_next_cmd(dev);
611 }
612
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200613 dev_dbg(&dev->pdev->dev, "completing amthif call back.\n");
Tomas Winkler19838fb2012-11-01 21:17:15 +0200614 wake_up_interruptible(&dev->iamthif_cl.wait);
615}
616
Tomas Winklera562d5c2012-11-11 17:38:01 +0200617/**
618 * mei_clear_list - removes all callbacks associated with file
619 * from mei_cb_list
620 *
621 * @dev: device structure.
622 * @file: file structure
623 * @mei_cb_list: callbacks list
624 *
625 * mei_clear_list is called to clear resources associated with file
626 * when application calls close function or Ctrl-C was pressed
627 *
628 * returns true if callback removed from the list, false otherwise
629 */
630static bool mei_clear_list(struct mei_device *dev,
631 const struct file *file, struct list_head *mei_cb_list)
632{
633 struct mei_cl_cb *cb_pos = NULL;
634 struct mei_cl_cb *cb_next = NULL;
635 bool removed = false;
Tomas Winkler19838fb2012-11-01 21:17:15 +0200636
Tomas Winklera562d5c2012-11-11 17:38:01 +0200637 /* list all list member */
638 list_for_each_entry_safe(cb_pos, cb_next, mei_cb_list, list) {
639 /* check if list member associated with a file */
640 if (file == cb_pos->file_object) {
641 /* remove member from the list */
642 list_del(&cb_pos->list);
643 /* check if cb equal to current iamthif cb */
644 if (dev->iamthif_current_cb == cb_pos) {
645 dev->iamthif_current_cb = NULL;
646 /* send flow control to iamthif client */
Tomas Winkler8120e722012-12-25 19:06:11 +0200647 mei_hbm_cl_flow_control_req(dev,
648 &dev->iamthif_cl);
Tomas Winklera562d5c2012-11-11 17:38:01 +0200649 }
650 /* free all allocated buffers */
651 mei_io_cb_free(cb_pos);
652 cb_pos = NULL;
653 removed = true;
654 }
655 }
656 return removed;
657}
658
659/**
660 * mei_clear_lists - removes all callbacks associated with file
661 *
662 * @dev: device structure
663 * @file: file structure
664 *
665 * mei_clear_lists is called to clear resources associated with file
666 * when application calls close function or Ctrl-C was pressed
667 *
668 * returns true if callback removed from the list, false otherwise
669 */
670static bool mei_clear_lists(struct mei_device *dev, struct file *file)
671{
672 bool removed = false;
673
674 /* remove callbacks associated with a file */
675 mei_clear_list(dev, file, &dev->amthif_cmd_list.list);
676 if (mei_clear_list(dev, file, &dev->amthif_rd_complete_list.list))
677 removed = true;
678
679 mei_clear_list(dev, file, &dev->ctrl_rd_list.list);
680
681 if (mei_clear_list(dev, file, &dev->ctrl_wr_list.list))
682 removed = true;
683
684 if (mei_clear_list(dev, file, &dev->write_waiting_list.list))
685 removed = true;
686
687 if (mei_clear_list(dev, file, &dev->write_list.list))
688 removed = true;
689
690 /* check if iamthif_current_cb not NULL */
691 if (dev->iamthif_current_cb && !removed) {
692 /* check file and iamthif current cb association */
693 if (dev->iamthif_current_cb->file_object == file) {
694 /* remove cb */
695 mei_io_cb_free(dev->iamthif_current_cb);
696 dev->iamthif_current_cb = NULL;
697 removed = true;
698 }
699 }
700 return removed;
701}
702
703/**
704* mei_amthif_release - the release function
705*
Masanari Iida393b1482013-04-05 01:05:05 +0900706* @dev: device structure
Tomas Winklera562d5c2012-11-11 17:38:01 +0200707* @file: pointer to file structure
708*
709* returns 0 on success, <0 on error
710*/
711int mei_amthif_release(struct mei_device *dev, struct file *file)
712{
Tomas Winkler22f96a02013-09-16 23:44:47 +0300713 if (dev->iamthif_open_count > 0)
714 dev->iamthif_open_count--;
Tomas Winklera562d5c2012-11-11 17:38:01 +0200715
716 if (dev->iamthif_file_object == file &&
717 dev->iamthif_state != MEI_IAMTHIF_IDLE) {
718
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200719 dev_dbg(&dev->pdev->dev, "amthif canceled iamthif state %d\n",
Tomas Winklera562d5c2012-11-11 17:38:01 +0200720 dev->iamthif_state);
721 dev->iamthif_canceled = true;
722 if (dev->iamthif_state == MEI_IAMTHIF_READ_COMPLETE) {
Tomas Winkler1a1aca42013-01-08 23:07:21 +0200723 dev_dbg(&dev->pdev->dev, "run next amthif iamthif cb\n");
Tomas Winklera562d5c2012-11-11 17:38:01 +0200724 mei_amthif_run_next_cmd(dev);
725 }
726 }
727
728 if (mei_clear_lists(dev, file))
729 dev->iamthif_state = MEI_IAMTHIF_IDLE;
730
731 return 0;
732}