Merge 3.12-rc3 into char-misc-next
[deliverable/linux.git] / drivers / misc / mei / interrupt.c
CommitLineData
fb7d879f
OW
1/*
2 *
3 * Intel Management Engine Interface (Intel MEI) Linux driver
733ba91c 4 * Copyright (c) 2003-2012, Intel Corporation.
fb7d879f
OW
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
40e0b67b 18#include <linux/export.h>
fb7d879f
OW
19#include <linux/pci.h>
20#include <linux/kthread.h>
21#include <linux/interrupt.h>
22#include <linux/fs.h>
23#include <linux/jiffies.h>
24
4f3afe1d 25#include <linux/mei.h>
47a73801
TW
26
27#include "mei_dev.h"
0edb23fc 28#include "hbm.h"
9dc64d6a 29#include "hw-me.h"
90e0b5f1 30#include "client.h"
fb7d879f
OW
31
32
4c6e22b8
TW
33/**
34 * mei_irq_compl_handler - dispatch complete handelers
35 * for the completed callbacks
36 *
37 * @dev - mei device
38 * @compl_list - list of completed cbs
39 */
40void mei_irq_compl_handler(struct mei_device *dev, struct mei_cl_cb *compl_list)
41{
42 struct mei_cl_cb *cb, *next;
43 struct mei_cl *cl;
44
45 list_for_each_entry_safe(cb, next, &compl_list->list, list) {
46 cl = cb->cl;
47 list_del(&cb->list);
48 if (!cl)
49 continue;
50
51 dev_dbg(&dev->pdev->dev, "completing call back.\n");
52 if (cl == &dev->iamthif_cl)
53 mei_amthif_complete(dev, cb);
54 else
db086fa9 55 mei_cl_complete(cl, cb);
4c6e22b8
TW
56 }
57}
40e0b67b 58EXPORT_SYMBOL_GPL(mei_irq_compl_handler);
6e0f180f 59
fb7d879f 60/**
6e0f180f 61 * mei_cl_hbm_equal - check if hbm is addressed to the client
fb7d879f 62 *
6e0f180f 63 * @cl: host client
fb7d879f
OW
64 * @mei_hdr: header of mei client message
65 *
6e0f180f 66 * returns true if matches, false otherwise
fb7d879f 67 */
6e0f180f
TW
68static inline int mei_cl_hbm_equal(struct mei_cl *cl,
69 struct mei_msg_hdr *mei_hdr)
fb7d879f 70{
6e0f180f
TW
71 return cl->host_client_id == mei_hdr->host_addr &&
72 cl->me_client_id == mei_hdr->me_addr;
73}
74/**
75 * mei_cl_is_reading - checks if the client
76 is the one to read this message
77 *
78 * @cl: mei client
79 * @mei_hdr: header of mei message
80 *
81 * returns true on match and false otherwise
82 */
83static bool mei_cl_is_reading(struct mei_cl *cl, struct mei_msg_hdr *mei_hdr)
84{
85 return mei_cl_hbm_equal(cl, mei_hdr) &&
fb7d879f 86 cl->state == MEI_FILE_CONNECTED &&
6e0f180f 87 cl->reading_state != MEI_READ_COMPLETE;
fb7d879f
OW
88}
89
90/**
6e0f180f 91 * mei_irq_read_client_message - process client message
fb7d879f 92 *
fb7d879f
OW
93 * @dev: the device structure
94 * @mei_hdr: header of mei client message
6e0f180f 95 * @complete_list: An instance of our list structure
fb7d879f
OW
96 *
97 * returns 0 on success, <0 on failure.
98 */
6e0f180f
TW
99static int mei_cl_irq_read_msg(struct mei_device *dev,
100 struct mei_msg_hdr *mei_hdr,
101 struct mei_cl_cb *complete_list)
fb7d879f
OW
102{
103 struct mei_cl *cl;
6e0f180f 104 struct mei_cl_cb *cb, *next;
479bc59d 105 unsigned char *buffer = NULL;
fb7d879f 106
6e0f180f
TW
107 list_for_each_entry_safe(cb, next, &dev->read_list.list, list) {
108 cl = cb->cl;
109 if (!cl || !mei_cl_is_reading(cl, mei_hdr))
110 continue;
111
112 cl->reading_state = MEI_READING;
113
114 if (cb->response_buffer.size == 0 ||
115 cb->response_buffer.data == NULL) {
c0abffbd 116 cl_err(dev, cl, "response buffer is not allocated.\n");
6e0f180f
TW
117 list_del(&cb->list);
118 return -ENOMEM;
119 }
120
121 if (cb->response_buffer.size < mei_hdr->length + cb->buf_idx) {
c0abffbd 122 cl_dbg(dev, cl, "message overflow. size %d len %d idx %ld\n",
fcb136e1
TW
123 cb->response_buffer.size,
124 mei_hdr->length, cb->buf_idx);
46e407dd
WY
125 buffer = krealloc(cb->response_buffer.data,
126 mei_hdr->length + cb->buf_idx,
127 GFP_KERNEL);
fcb136e1 128
46e407dd 129 if (!buffer) {
c0abffbd 130 cl_err(dev, cl, "allocation failed.\n");
fcb136e1
TW
131 list_del(&cb->list);
132 return -ENOMEM;
133 }
46e407dd 134 cb->response_buffer.data = buffer;
fcb136e1
TW
135 cb->response_buffer.size =
136 mei_hdr->length + cb->buf_idx;
fb7d879f
OW
137 }
138
6e0f180f
TW
139 buffer = cb->response_buffer.data + cb->buf_idx;
140 mei_read_slots(dev, buffer, mei_hdr->length);
141
142 cb->buf_idx += mei_hdr->length;
143 if (mei_hdr->msg_complete) {
144 cl->status = 0;
145 list_del(&cb->list);
c0abffbd 146 cl_dbg(dev, cl, "completed read length = %lu\n",
6e0f180f
TW
147 cb->buf_idx);
148 list_add_tail(&cb->list, &complete_list->list);
149 }
150 break;
fb7d879f
OW
151 }
152
fb7d879f
OW
153 dev_dbg(&dev->pdev->dev, "message read\n");
154 if (!buffer) {
edf1eed4 155 mei_read_slots(dev, dev->rd_msg_buf, mei_hdr->length);
15d4acc5
TW
156 dev_dbg(&dev->pdev->dev, "discarding message " MEI_HDR_FMT "\n",
157 MEI_HDR_PRM(mei_hdr));
fb7d879f
OW
158 }
159
160 return 0;
161}
162
fb7d879f 163/**
6220d6a0
TW
164 * mei_cl_irq_close - processes close related operation from
165 * interrupt thread context - send disconnect request
fb7d879f 166 *
6220d6a0
TW
167 * @cl: client
168 * @cb: callback block.
fb7d879f 169 * @slots: free slots.
fb7d879f
OW
170 * @cmpl_list: complete list.
171 *
172 * returns 0, OK; otherwise, error.
173 */
6220d6a0
TW
174static int mei_cl_irq_close(struct mei_cl *cl, struct mei_cl_cb *cb,
175 s32 *slots, struct mei_cl_cb *cmpl_list)
fb7d879f 176{
6220d6a0
TW
177 struct mei_device *dev = cl->dev;
178
c8c8d080
TW
179 u32 msg_slots =
180 mei_data2slots(sizeof(struct hbm_client_connect_request));
fb7d879f 181
c8c8d080
TW
182 if (*slots < msg_slots)
183 return -EMSGSIZE;
184
185 *slots -= msg_slots;
b45f3ccf 186
8120e720 187 if (mei_hbm_cl_disconnect_req(dev, cl)) {
b45f3ccf 188 cl->status = 0;
6220d6a0
TW
189 cb->buf_idx = 0;
190 list_move_tail(&cb->list, &cmpl_list->list);
c8c8d080 191 return -EIO;
fb7d879f
OW
192 }
193
c8c8d080
TW
194 cl->state = MEI_FILE_DISCONNECTING;
195 cl->status = 0;
6220d6a0
TW
196 cb->buf_idx = 0;
197 list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
c8c8d080
TW
198 cl->timer_count = MEI_CONNECT_TIMEOUT;
199
fb7d879f
OW
200 return 0;
201}
202
fb7d879f
OW
203
204/**
6220d6a0
TW
205 * mei_cl_irq_close - processes client read related operation from the
206 * interrupt thread context - request for flow control credits
fb7d879f 207 *
6220d6a0
TW
208 * @cl: client
209 * @cb: callback block.
fb7d879f 210 * @slots: free slots.
fb7d879f
OW
211 * @cmpl_list: complete list.
212 *
213 * returns 0, OK; otherwise, error.
214 */
6220d6a0
TW
215static int mei_cl_irq_read(struct mei_cl *cl, struct mei_cl_cb *cb,
216 s32 *slots, struct mei_cl_cb *cmpl_list)
fb7d879f 217{
6220d6a0 218 struct mei_device *dev = cl->dev;
c8c8d080
TW
219 u32 msg_slots = mei_data2slots(sizeof(struct hbm_flow_control));
220
2ebf8c94
TW
221 int ret;
222
223
c8c8d080 224 if (*slots < msg_slots) {
fb7d879f 225 /* return the cancel routine */
6220d6a0 226 list_del(&cb->list);
c8c8d080 227 return -EMSGSIZE;
fb7d879f
OW
228 }
229
c8c8d080 230 *slots -= msg_slots;
7bdf72d3 231
2ebf8c94
TW
232 ret = mei_hbm_cl_flow_control_req(dev, cl);
233 if (ret) {
234 cl->status = ret;
6220d6a0
TW
235 cb->buf_idx = 0;
236 list_move_tail(&cb->list, &cmpl_list->list);
2ebf8c94 237 return ret;
1ccb7b62 238 }
2ebf8c94 239
6220d6a0 240 list_move_tail(&cb->list, &dev->read_list.list);
1ccb7b62 241
fb7d879f
OW
242 return 0;
243}
244
245
246/**
6220d6a0
TW
247 * mei_cl_irq_ioctl - processes client ioctl related operation from the
248 * interrupt thread context - send connection request
fb7d879f 249 *
6220d6a0
TW
250 * @cl: client
251 * @cb: callback block.
fb7d879f 252 * @slots: free slots.
fb7d879f
OW
253 * @cmpl_list: complete list.
254 *
255 * returns 0, OK; otherwise, error.
256 */
6220d6a0
TW
257static int mei_cl_irq_ioctl(struct mei_cl *cl, struct mei_cl_cb *cb,
258 s32 *slots, struct mei_cl_cb *cmpl_list)
fb7d879f 259{
6220d6a0 260 struct mei_device *dev = cl->dev;
2ebf8c94 261 int ret;
6220d6a0 262
c8c8d080
TW
263 u32 msg_slots =
264 mei_data2slots(sizeof(struct hbm_client_connect_request));
265
266 if (*slots < msg_slots) {
fb7d879f 267 /* return the cancel routine */
6220d6a0 268 list_del(&cb->list);
c8c8d080 269 return -EMSGSIZE;
fb7d879f
OW
270 }
271
c8c8d080
TW
272 *slots -= msg_slots;
273
b45f3ccf 274 cl->state = MEI_FILE_CONNECTING;
c8c8d080 275
2ebf8c94
TW
276 ret = mei_hbm_cl_connect_req(dev, cl);
277 if (ret) {
278 cl->status = ret;
6220d6a0
TW
279 cb->buf_idx = 0;
280 list_del(&cb->list);
2ebf8c94 281 return ret;
b45f3ccf 282 }
6220d6a0
TW
283
284 list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
285 cl->timer_count = MEI_CONNECT_TIMEOUT;
fb7d879f
OW
286 return 0;
287}
288
fb7d879f 289
fb7d879f 290/**
393b148f 291 * mei_irq_read_handler - bottom half read routine after ISR to
fb7d879f
OW
292 * handle the read processing.
293 *
fb7d879f 294 * @dev: the device structure
06ecd645 295 * @cmpl_list: An instance of our list structure
fb7d879f
OW
296 * @slots: slots to read.
297 *
298 * returns 0 on success, <0 on failure.
299 */
06ecd645
TW
300int mei_irq_read_handler(struct mei_device *dev,
301 struct mei_cl_cb *cmpl_list, s32 *slots)
fb7d879f
OW
302{
303 struct mei_msg_hdr *mei_hdr;
304 struct mei_cl *cl_pos = NULL;
305 struct mei_cl *cl_next = NULL;
306 int ret = 0;
307
308 if (!dev->rd_msg_hdr) {
827eef51 309 dev->rd_msg_hdr = mei_read_hdr(dev);
fb7d879f
OW
310 dev_dbg(&dev->pdev->dev, "slots =%08x.\n", *slots);
311 (*slots)--;
312 dev_dbg(&dev->pdev->dev, "slots =%08x.\n", *slots);
313 }
314 mei_hdr = (struct mei_msg_hdr *) &dev->rd_msg_hdr;
15d4acc5 315 dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(mei_hdr));
fb7d879f
OW
316
317 if (mei_hdr->reserved || !dev->rd_msg_hdr) {
318 dev_dbg(&dev->pdev->dev, "corrupted message header.\n");
319 ret = -EBADMSG;
320 goto end;
321 }
322
323 if (mei_hdr->host_addr || mei_hdr->me_addr) {
324 list_for_each_entry_safe(cl_pos, cl_next,
325 &dev->file_list, link) {
326 dev_dbg(&dev->pdev->dev,
327 "list_for_each_entry_safe read host"
328 " client = %d, ME client = %d\n",
329 cl_pos->host_client_id,
330 cl_pos->me_client_id);
6e0f180f 331 if (mei_cl_hbm_equal(cl_pos, mei_hdr))
fb7d879f
OW
332 break;
333 }
334
335 if (&cl_pos->link == &dev->file_list) {
336 dev_dbg(&dev->pdev->dev, "corrupted message header\n");
337 ret = -EBADMSG;
338 goto end;
339 }
340 }
341 if (((*slots) * sizeof(u32)) < mei_hdr->length) {
6e0f180f 342 dev_err(&dev->pdev->dev,
fb7d879f
OW
343 "we can't read the message slots =%08x.\n",
344 *slots);
345 /* we can't read the message */
346 ret = -ERANGE;
347 goto end;
348 }
349
350 /* decide where to read the message too */
351 if (!mei_hdr->host_addr) {
0da90747 352 dev_dbg(&dev->pdev->dev, "call mei_hbm_dispatch.\n");
bb1b0133 353 mei_hbm_dispatch(dev, mei_hdr);
0da90747 354 dev_dbg(&dev->pdev->dev, "end mei_hbm_dispatch.\n");
fb7d879f
OW
355 } else if (mei_hdr->host_addr == dev->iamthif_cl.host_client_id &&
356 (MEI_FILE_CONNECTED == dev->iamthif_cl.state) &&
357 (dev->iamthif_state == MEI_IAMTHIF_READING)) {
15d4acc5 358
0da90747 359 dev_dbg(&dev->pdev->dev, "call mei_amthif_irq_read_msg.\n");
15d4acc5 360 dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(mei_hdr));
19838fb8 361
5ceb46e2 362 ret = mei_amthif_irq_read_msg(dev, mei_hdr, cmpl_list);
fb7d879f
OW
363 if (ret)
364 goto end;
fb7d879f 365 } else {
6e0f180f
TW
366 dev_dbg(&dev->pdev->dev, "call mei_cl_irq_read_msg.\n");
367 dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(mei_hdr));
368 ret = mei_cl_irq_read_msg(dev, mei_hdr, cmpl_list);
fb7d879f
OW
369 if (ret)
370 goto end;
fb7d879f
OW
371 }
372
373 /* reset the number of slots and header */
374 *slots = mei_count_full_read_slots(dev);
375 dev->rd_msg_hdr = 0;
376
377 if (*slots == -EOVERFLOW) {
378 /* overflow - reset */
6e0f180f 379 dev_err(&dev->pdev->dev, "resetting due to slots overflow.\n");
fb7d879f
OW
380 /* set the event since message has been read */
381 ret = -ERANGE;
382 goto end;
383 }
384end:
385 return ret;
386}
40e0b67b 387EXPORT_SYMBOL_GPL(mei_irq_read_handler);
fb7d879f
OW
388
389
390/**
06ecd645
TW
391 * mei_irq_write_handler - dispatch write requests
392 * after irq received
fb7d879f 393 *
fb7d879f 394 * @dev: the device structure
9a84d616 395 * @cmpl_list: An instance of our list structure
fb7d879f
OW
396 *
397 * returns 0 on success, <0 on failure.
398 */
c8c8d080 399int mei_irq_write_handler(struct mei_device *dev, struct mei_cl_cb *cmpl_list)
fb7d879f
OW
400{
401
402 struct mei_cl *cl;
6220d6a0 403 struct mei_cl_cb *cb, *next;
fb601adb 404 struct mei_cl_cb *list;
9a84d616 405 s32 slots;
fb7d879f
OW
406 int ret;
407
827eef51 408 if (!mei_hbuf_is_ready(dev)) {
fb7d879f
OW
409 dev_dbg(&dev->pdev->dev, "host buffer is not empty.\n");
410 return 0;
411 }
9a84d616
TW
412 slots = mei_hbuf_empty_slots(dev);
413 if (slots <= 0)
7d5e0e59
TW
414 return -EMSGSIZE;
415
fb7d879f
OW
416 /* complete all waiting for write CB */
417 dev_dbg(&dev->pdev->dev, "complete all waiting for write cb.\n");
418
419 list = &dev->write_waiting_list;
6220d6a0
TW
420 list_for_each_entry_safe(cb, next, &list->list, list) {
421 cl = cb->cl;
b7cd2d9f
TW
422 if (cl == NULL)
423 continue;
424
425 cl->status = 0;
6220d6a0 426 list_del(&cb->list);
b7cd2d9f 427 if (MEI_WRITING == cl->writing_state &&
6220d6a0 428 cb->fop_type == MEI_FOP_WRITE &&
4b8960b4 429 cl != &dev->iamthif_cl) {
c0abffbd 430 cl_dbg(dev, cl, "MEI WRITE COMPLETE\n");
b7cd2d9f 431 cl->writing_state = MEI_WRITE_COMPLETE;
6220d6a0 432 list_add_tail(&cb->list, &cmpl_list->list);
b7cd2d9f
TW
433 }
434 if (cl == &dev->iamthif_cl) {
c0abffbd 435 cl_dbg(dev, cl, "check iamthif flow control.\n");
b7cd2d9f 436 if (dev->iamthif_flow_control_pending) {
9a84d616 437 ret = mei_amthif_irq_read(dev, &slots);
b7cd2d9f
TW
438 if (ret)
439 return ret;
fb7d879f 440 }
fb7d879f
OW
441 }
442 }
443
c216fdeb
TW
444 if (dev->wd_state == MEI_WD_STOPPING) {
445 dev->wd_state = MEI_WD_IDLE;
fb7d879f 446 wake_up_interruptible(&dev->wait_stop_wd);
fb7d879f
OW
447 }
448
5fb54fb4
TW
449 if (dev->wr_ext_msg.hdr.length) {
450 mei_write_message(dev, &dev->wr_ext_msg.hdr,
438763f3 451 dev->wr_ext_msg.data);
9a84d616 452 slots -= mei_data2slots(dev->wr_ext_msg.hdr.length);
5fb54fb4 453 dev->wr_ext_msg.hdr.length = 0;
fb7d879f 454 }
b210d750 455 if (dev->dev_state == MEI_DEV_ENABLED) {
fb7d879f 456 if (dev->wd_pending &&
90e0b5f1 457 mei_cl_flow_ctrl_creds(&dev->wd_cl) > 0) {
fb7d879f
OW
458 if (mei_wd_send(dev))
459 dev_dbg(&dev->pdev->dev, "wd send failed.\n");
90e0b5f1 460 else if (mei_cl_flow_ctrl_reduce(&dev->wd_cl))
483136ea 461 return -ENODEV;
fb7d879f 462
eb9af0ac 463 dev->wd_pending = false;
fb7d879f 464
c216fdeb 465 if (dev->wd_state == MEI_WD_RUNNING)
9a84d616 466 slots -= mei_data2slots(MEI_WD_START_MSG_SIZE);
d242a0af 467 else
9a84d616 468 slots -= mei_data2slots(MEI_WD_STOP_MSG_SIZE);
fb7d879f
OW
469 }
470 }
fb7d879f
OW
471
472 /* complete control write list CB */
c8372094 473 dev_dbg(&dev->pdev->dev, "complete control write list cb.\n");
6220d6a0
TW
474 list_for_each_entry_safe(cb, next, &dev->ctrl_wr_list.list, list) {
475 cl = cb->cl;
c8372094 476 if (!cl) {
6220d6a0 477 list_del(&cb->list);
c8372094
TW
478 return -ENODEV;
479 }
6220d6a0 480 switch (cb->fop_type) {
4b8960b4 481 case MEI_FOP_CLOSE:
c8372094 482 /* send disconnect message */
6220d6a0 483 ret = mei_cl_irq_close(cl, cb, &slots, cmpl_list);
c8372094
TW
484 if (ret)
485 return ret;
fb7d879f 486
c8372094 487 break;
4b8960b4 488 case MEI_FOP_READ:
c8372094 489 /* send flow control message */
6220d6a0 490 ret = mei_cl_irq_read(cl, cb, &slots, cmpl_list);
c8372094
TW
491 if (ret)
492 return ret;
fb7d879f 493
c8372094 494 break;
4b8960b4 495 case MEI_FOP_IOCTL:
c8372094 496 /* connect message */
90e0b5f1 497 if (mei_cl_is_other_connecting(cl))
c8372094 498 continue;
6220d6a0 499 ret = mei_cl_irq_ioctl(cl, cb, &slots, cmpl_list);
c8372094
TW
500 if (ret)
501 return ret;
fb7d879f 502
c8372094 503 break;
fb7d879f 504
c8372094
TW
505 default:
506 BUG();
fb7d879f 507 }
c8372094 508
fb7d879f
OW
509 }
510 /* complete write list CB */
b7cd2d9f 511 dev_dbg(&dev->pdev->dev, "complete write list cb.\n");
6220d6a0
TW
512 list_for_each_entry_safe(cb, next, &dev->write_list.list, list) {
513 cl = cb->cl;
b7cd2d9f
TW
514 if (cl == NULL)
515 continue;
be9d87a7 516 if (cl == &dev->iamthif_cl)
6220d6a0
TW
517 ret = mei_amthif_irq_write_complete(cl, cb,
518 &slots, cmpl_list);
be9d87a7 519 else
6220d6a0
TW
520 ret = mei_cl_irq_write_complete(cl, cb,
521 &slots, cmpl_list);
be9d87a7
TW
522 if (ret)
523 return ret;
fb7d879f
OW
524 }
525 return 0;
526}
40e0b67b 527EXPORT_SYMBOL_GPL(mei_irq_write_handler);
fb7d879f
OW
528
529
530
531/**
532 * mei_timer - timer function.
533 *
534 * @work: pointer to the work_struct structure
535 *
536 * NOTE: This function is called by timer interrupt work
537 */
a61c6530 538void mei_timer(struct work_struct *work)
fb7d879f
OW
539{
540 unsigned long timeout;
541 struct mei_cl *cl_pos = NULL;
542 struct mei_cl *cl_next = NULL;
fb7d879f
OW
543 struct mei_cl_cb *cb_pos = NULL;
544 struct mei_cl_cb *cb_next = NULL;
545
546 struct mei_device *dev = container_of(work,
a61c6530 547 struct mei_device, timer_work.work);
fb7d879f
OW
548
549
550 mutex_lock(&dev->device_lock);
b210d750
TW
551 if (dev->dev_state != MEI_DEV_ENABLED) {
552 if (dev->dev_state == MEI_DEV_INIT_CLIENTS) {
fb7d879f
OW
553 if (dev->init_clients_timer) {
554 if (--dev->init_clients_timer == 0) {
9b0d5efc
TW
555 dev_err(&dev->pdev->dev, "reset: init clients timeout hbm_state = %d.\n",
556 dev->hbm_state);
fb7d879f
OW
557 mei_reset(dev, 1);
558 }
559 }
560 }
561 goto out;
562 }
563 /*** connect/disconnect timeouts ***/
564 list_for_each_entry_safe(cl_pos, cl_next, &dev->file_list, link) {
565 if (cl_pos->timer_count) {
566 if (--cl_pos->timer_count == 0) {
d6c36a47 567 dev_err(&dev->pdev->dev, "reset: connect/disconnect timeout.\n");
fb7d879f
OW
568 mei_reset(dev, 1);
569 goto out;
570 }
571 }
572 }
573
fb7d879f
OW
574 if (dev->iamthif_stall_timer) {
575 if (--dev->iamthif_stall_timer == 0) {
d6c36a47 576 dev_err(&dev->pdev->dev, "reset: amthif hanged.\n");
fb7d879f
OW
577 mei_reset(dev, 1);
578 dev->iamthif_msg_buf_size = 0;
579 dev->iamthif_msg_buf_index = 0;
eb9af0ac
TW
580 dev->iamthif_canceled = false;
581 dev->iamthif_ioctl = true;
fb7d879f
OW
582 dev->iamthif_state = MEI_IAMTHIF_IDLE;
583 dev->iamthif_timer = 0;
584
601a1efa
TW
585 mei_io_cb_free(dev->iamthif_current_cb);
586 dev->iamthif_current_cb = NULL;
fb7d879f
OW
587
588 dev->iamthif_file_object = NULL;
19838fb8 589 mei_amthif_run_next_cmd(dev);
fb7d879f
OW
590 }
591 }
592
593 if (dev->iamthif_timer) {
594
595 timeout = dev->iamthif_timer +
3870c320 596 mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER);
fb7d879f
OW
597
598 dev_dbg(&dev->pdev->dev, "dev->iamthif_timer = %ld\n",
599 dev->iamthif_timer);
600 dev_dbg(&dev->pdev->dev, "timeout = %ld\n", timeout);
601 dev_dbg(&dev->pdev->dev, "jiffies = %ld\n", jiffies);
602 if (time_after(jiffies, timeout)) {
603 /*
604 * User didn't read the AMTHI data on time (15sec)
605 * freeing AMTHI for other requests
606 */
607
608 dev_dbg(&dev->pdev->dev, "freeing AMTHI for other requests\n");
609
e773efc4
TW
610 list_for_each_entry_safe(cb_pos, cb_next,
611 &dev->amthif_rd_complete_list.list, list) {
fb7d879f 612
b7cd2d9f 613 cl_pos = cb_pos->file_object->private_data;
fb7d879f 614
b7cd2d9f
TW
615 /* Finding the AMTHI entry. */
616 if (cl_pos == &dev->iamthif_cl)
fb601adb 617 list_del(&cb_pos->list);
fb7d879f 618 }
601a1efa
TW
619 mei_io_cb_free(dev->iamthif_current_cb);
620 dev->iamthif_current_cb = NULL;
fb7d879f
OW
621
622 dev->iamthif_file_object->private_data = NULL;
623 dev->iamthif_file_object = NULL;
fb7d879f 624 dev->iamthif_timer = 0;
19838fb8 625 mei_amthif_run_next_cmd(dev);
fb7d879f
OW
626
627 }
628 }
629out:
441ab50f
TW
630 schedule_delayed_work(&dev->timer_work, 2 * HZ);
631 mutex_unlock(&dev->device_lock);
fb7d879f
OW
632}
633
This page took 0.218991 seconds and 5 git commands to generate.