interrupt.c 14.9 KB
Newer Older
O
Oren Weil 已提交
1 2 3
/*
 *
 * Intel Management Engine Interface (Intel MEI) Linux driver
4
 * Copyright (c) 2003-2012, Intel Corporation.
O
Oren Weil 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 */


18
#include <linux/export.h>
O
Oren Weil 已提交
19 20 21 22 23 24
#include <linux/pci.h>
#include <linux/kthread.h>
#include <linux/interrupt.h>
#include <linux/fs.h>
#include <linux/jiffies.h>

25
#include <linux/mei.h>
26 27

#include "mei_dev.h"
28
#include "hbm.h"
T
Tomas Winkler 已提交
29
#include "client.h"
O
Oren Weil 已提交
30 31


32
/**
33
 * mei_irq_compl_handler - dispatch complete handlers
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
 *	for the completed callbacks
 *
 * @dev - mei device
 * @compl_list - list of completed cbs
 */
void mei_irq_compl_handler(struct mei_device *dev, struct mei_cl_cb *compl_list)
{
	struct mei_cl_cb *cb, *next;
	struct mei_cl *cl;

	list_for_each_entry_safe(cb, next, &compl_list->list, list) {
		cl = cb->cl;
		list_del(&cb->list);
		if (!cl)
			continue;

		dev_dbg(&dev->pdev->dev, "completing call back.\n");
		if (cl == &dev->iamthif_cl)
			mei_amthif_complete(dev, cb);
		else
54
			mei_cl_complete(cl, cb);
55 56
	}
}
57
EXPORT_SYMBOL_GPL(mei_irq_compl_handler);
58

O
Oren Weil 已提交
59
/**
60
 * mei_cl_hbm_equal - check if hbm is addressed to the client
O
Oren Weil 已提交
61
 *
62
 * @cl: host client
O
Oren Weil 已提交
63 64
 * @mei_hdr: header of mei client message
 *
65
 * returns true if matches, false otherwise
O
Oren Weil 已提交
66
 */
67 68
static inline int mei_cl_hbm_equal(struct mei_cl *cl,
			struct mei_msg_hdr *mei_hdr)
O
Oren Weil 已提交
69
{
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
	return cl->host_client_id == mei_hdr->host_addr &&
		cl->me_client_id == mei_hdr->me_addr;
}
/**
 * mei_cl_is_reading - checks if the client
		is the one to read this message
 *
 * @cl: mei client
 * @mei_hdr: header of mei message
 *
 * returns true on match and false otherwise
 */
static bool mei_cl_is_reading(struct mei_cl *cl, struct mei_msg_hdr *mei_hdr)
{
	return mei_cl_hbm_equal(cl, mei_hdr) &&
O
Oren Weil 已提交
85
		cl->state == MEI_FILE_CONNECTED &&
86
		cl->reading_state != MEI_READ_COMPLETE;
O
Oren Weil 已提交
87 88 89
}

/**
90
 * mei_irq_read_client_message - process client message
O
Oren Weil 已提交
91 92 93
 *
 * @dev: the device structure
 * @mei_hdr: header of mei client message
94
 * @complete_list: An instance of our list structure
O
Oren Weil 已提交
95 96 97
 *
 * returns 0 on success, <0 on failure.
 */
98 99 100
static int mei_cl_irq_read_msg(struct mei_device *dev,
			       struct mei_msg_hdr *mei_hdr,
			       struct mei_cl_cb *complete_list)
O
Oren Weil 已提交
101 102
{
	struct mei_cl *cl;
103
	struct mei_cl_cb *cb, *next;
104
	unsigned char *buffer = NULL;
O
Oren Weil 已提交
105

106 107 108 109 110 111 112 113 114
	list_for_each_entry_safe(cb, next, &dev->read_list.list, list) {
		cl = cb->cl;
		if (!cl || !mei_cl_is_reading(cl, mei_hdr))
			continue;

		cl->reading_state = MEI_READING;

		if (cb->response_buffer.size == 0 ||
		    cb->response_buffer.data == NULL) {
115
			cl_err(dev, cl, "response buffer is not allocated.\n");
116 117 118 119 120
			list_del(&cb->list);
			return -ENOMEM;
		}

		if (cb->response_buffer.size < mei_hdr->length + cb->buf_idx) {
121
			cl_dbg(dev, cl, "message overflow. size %d len %d idx %ld\n",
T
Tomas Winkler 已提交
122 123
				cb->response_buffer.size,
				mei_hdr->length, cb->buf_idx);
124 125 126
			buffer = krealloc(cb->response_buffer.data,
					  mei_hdr->length + cb->buf_idx,
					  GFP_KERNEL);
T
Tomas Winkler 已提交
127

128
			if (!buffer) {
129
				cl_err(dev, cl, "allocation failed.\n");
T
Tomas Winkler 已提交
130 131 132
				list_del(&cb->list);
				return -ENOMEM;
			}
133
			cb->response_buffer.data = buffer;
T
Tomas Winkler 已提交
134 135
			cb->response_buffer.size =
				mei_hdr->length + cb->buf_idx;
O
Oren Weil 已提交
136 137
		}

138 139 140 141 142 143 144
		buffer = cb->response_buffer.data + cb->buf_idx;
		mei_read_slots(dev, buffer, mei_hdr->length);

		cb->buf_idx += mei_hdr->length;
		if (mei_hdr->msg_complete) {
			cl->status = 0;
			list_del(&cb->list);
145
			cl_dbg(dev, cl, "completed read length = %lu\n",
146 147 148 149
				cb->buf_idx);
			list_add_tail(&cb->list, &complete_list->list);
		}
		break;
O
Oren Weil 已提交
150 151 152 153
	}

	dev_dbg(&dev->pdev->dev, "message read\n");
	if (!buffer) {
154
		mei_read_slots(dev, dev->rd_msg_buf, mei_hdr->length);
155 156
		dev_dbg(&dev->pdev->dev, "discarding message " MEI_HDR_FMT "\n",
				MEI_HDR_PRM(mei_hdr));
O
Oren Weil 已提交
157 158 159 160 161
	}

	return 0;
}

T
Tomas Winkler 已提交
162 163 164 165 166 167 168 169 170 171
/**
 * mei_cl_irq_disconnect_rsp - send disconnection response message
 *
 * @cl: client
 * @cb: callback block.
 * @cmpl_list: complete list.
 *
 * returns 0, OK; otherwise, error.
 */
static int mei_cl_irq_disconnect_rsp(struct mei_cl *cl, struct mei_cl_cb *cb,
172
				     struct mei_cl_cb *cmpl_list)
T
Tomas Winkler 已提交
173 174
{
	struct mei_device *dev = cl->dev;
175 176
	u32 msg_slots;
	int slots;
T
Tomas Winkler 已提交
177 178
	int ret;

179 180
	slots = mei_hbuf_empty_slots(dev);
	msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_response));
T
Tomas Winkler 已提交
181

182
	if (slots < msg_slots)
T
Tomas Winkler 已提交
183 184 185 186 187 188
		return -EMSGSIZE;

	ret = mei_hbm_cl_disconnect_rsp(dev, cl);

	cl->state = MEI_FILE_DISCONNECTED;
	cl->status = 0;
189
	list_del(&cb->list);
T
Tomas Winkler 已提交
190 191 192 193 194 195 196
	mei_io_cb_free(cb);

	return ret;
}



O
Oren Weil 已提交
197
/**
198 199
 * mei_cl_irq_close - processes close related operation from
 *	interrupt thread context - send disconnect request
O
Oren Weil 已提交
200
 *
201 202
 * @cl: client
 * @cb: callback block.
O
Oren Weil 已提交
203 204 205 206
 * @cmpl_list: complete list.
 *
 * returns 0, OK; otherwise, error.
 */
207
static int mei_cl_irq_close(struct mei_cl *cl, struct mei_cl_cb *cb,
208
			    struct mei_cl_cb *cmpl_list)
O
Oren Weil 已提交
209
{
210
	struct mei_device *dev = cl->dev;
211 212
	u32 msg_slots;
	int slots;
213

214 215
	msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
	slots = mei_hbuf_empty_slots(dev);
O
Oren Weil 已提交
216

217
	if (slots < msg_slots)
T
Tomas Winkler 已提交
218 219
		return -EMSGSIZE;

220
	if (mei_hbm_cl_disconnect_req(dev, cl)) {
221
		cl->status = 0;
222 223
		cb->buf_idx = 0;
		list_move_tail(&cb->list, &cmpl_list->list);
T
Tomas Winkler 已提交
224
		return -EIO;
O
Oren Weil 已提交
225 226
	}

T
Tomas Winkler 已提交
227 228
	cl->state = MEI_FILE_DISCONNECTING;
	cl->status = 0;
229 230
	cb->buf_idx = 0;
	list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
T
Tomas Winkler 已提交
231 232
	cl->timer_count = MEI_CONNECT_TIMEOUT;

O
Oren Weil 已提交
233 234 235 236 237
	return 0;
}


/**
238 239
 * mei_cl_irq_close - processes client read related operation from the
 *	interrupt thread context - request for flow control credits
O
Oren Weil 已提交
240
 *
241 242
 * @cl: client
 * @cb: callback block.
O
Oren Weil 已提交
243 244 245 246
 * @cmpl_list: complete list.
 *
 * returns 0, OK; otherwise, error.
 */
247
static int mei_cl_irq_read(struct mei_cl *cl, struct mei_cl_cb *cb,
248
			   struct mei_cl_cb *cmpl_list)
O
Oren Weil 已提交
249
{
250
	struct mei_device *dev = cl->dev;
251 252
	u32 msg_slots;
	int slots;
253 254
	int ret;

255 256
	msg_slots = mei_data2slots(sizeof(struct hbm_flow_control));
	slots = mei_hbuf_empty_slots(dev);
257

258
	if (slots < msg_slots)
T
Tomas Winkler 已提交
259
		return -EMSGSIZE;
260

261 262 263
	ret = mei_hbm_cl_flow_control_req(dev, cl);
	if (ret) {
		cl->status = ret;
264 265
		cb->buf_idx = 0;
		list_move_tail(&cb->list, &cmpl_list->list);
266
		return ret;
267
	}
268

269
	list_move_tail(&cb->list, &dev->read_list.list);
270

O
Oren Weil 已提交
271 272 273 274 275
	return 0;
}


/**
276
 * mei_cl_irq_connect - send connect request in irq_thread context
O
Oren Weil 已提交
277
 *
278 279
 * @cl: client
 * @cb: callback block.
O
Oren Weil 已提交
280 281 282 283
 * @cmpl_list: complete list.
 *
 * returns 0, OK; otherwise, error.
 */
284
static int mei_cl_irq_connect(struct mei_cl *cl, struct mei_cl_cb *cb,
285
			      struct mei_cl_cb *cmpl_list)
O
Oren Weil 已提交
286
{
287
	struct mei_device *dev = cl->dev;
288 289
	u32 msg_slots;
	int slots;
290
	int ret;
291

292 293
	msg_slots = mei_data2slots(sizeof(struct hbm_client_connect_request));
	slots = mei_hbuf_empty_slots(dev);
T
Tomas Winkler 已提交
294

295 296 297
	if (mei_cl_is_other_connecting(cl))
		return 0;

298
	if (slots < msg_slots)
T
Tomas Winkler 已提交
299 300
		return -EMSGSIZE;

301
	cl->state = MEI_FILE_CONNECTING;
T
Tomas Winkler 已提交
302

303 304 305
	ret = mei_hbm_cl_connect_req(dev, cl);
	if (ret) {
		cl->status = ret;
306 307
		cb->buf_idx = 0;
		list_del(&cb->list);
308
		return ret;
309
	}
310 311 312

	list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
	cl->timer_count = MEI_CONNECT_TIMEOUT;
O
Oren Weil 已提交
313 314 315 316 317
	return 0;
}


/**
318
 * mei_irq_read_handler - bottom half read routine after ISR to
O
Oren Weil 已提交
319 320 321
 * handle the read processing.
 *
 * @dev: the device structure
322
 * @cmpl_list: An instance of our list structure
O
Oren Weil 已提交
323 324 325 326
 * @slots: slots to read.
 *
 * returns 0 on success, <0 on failure.
 */
327 328
int mei_irq_read_handler(struct mei_device *dev,
		struct mei_cl_cb *cmpl_list, s32 *slots)
O
Oren Weil 已提交
329 330
{
	struct mei_msg_hdr *mei_hdr;
T
Tomas Winkler 已提交
331 332
	struct mei_cl *cl;
	int ret;
O
Oren Weil 已提交
333 334

	if (!dev->rd_msg_hdr) {
335
		dev->rd_msg_hdr = mei_read_hdr(dev);
O
Oren Weil 已提交
336 337 338 339
		(*slots)--;
		dev_dbg(&dev->pdev->dev, "slots =%08x.\n", *slots);
	}
	mei_hdr = (struct mei_msg_hdr *) &dev->rd_msg_hdr;
340
	dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(mei_hdr));
O
Oren Weil 已提交
341 342

	if (mei_hdr->reserved || !dev->rd_msg_hdr) {
T
Tomas Winkler 已提交
343 344
		dev_err(&dev->pdev->dev, "corrupted message header 0x%08X\n",
				dev->rd_msg_hdr);
O
Oren Weil 已提交
345 346 347 348
		ret = -EBADMSG;
		goto end;
	}

T
Tomas Winkler 已提交
349 350
	if (mei_slots2data(*slots) < mei_hdr->length) {
		dev_err(&dev->pdev->dev, "less data available than length=%08x.\n",
O
Oren Weil 已提交
351 352
				*slots);
		/* we can't read the message */
353
		ret = -ENODATA;
O
Oren Weil 已提交
354 355 356
		goto end;
	}

T
Tomas Winkler 已提交
357 358
	/*  HBM message */
	if (mei_hdr->host_addr == 0 && mei_hdr->me_addr == 0) {
359 360 361 362 363 364
		ret = mei_hbm_dispatch(dev, mei_hdr);
		if (ret) {
			dev_dbg(&dev->pdev->dev, "mei_hbm_dispatch failed ret = %d\n",
					ret);
			goto end;
		}
T
Tomas Winkler 已提交
365 366
		goto reset_slots;
	}
367

368
	/* find recipient cl */
T
Tomas Winkler 已提交
369 370 371 372 373 374 375
	list_for_each_entry(cl, &dev->file_list, link) {
		if (mei_cl_hbm_equal(cl, mei_hdr)) {
			cl_dbg(dev, cl, "got a message\n");
			break;
		}
	}

376
	/* if no recipient cl was found we assume corrupted header */
T
Tomas Winkler 已提交
377 378 379 380 381 382 383 384 385 386
	if (&cl->link == &dev->file_list) {
		dev_err(&dev->pdev->dev, "no destination client found 0x%08X\n",
				dev->rd_msg_hdr);
		ret = -EBADMSG;
		goto end;
	}

	if (mei_hdr->host_addr == dev->iamthif_cl.host_client_id &&
	    MEI_FILE_CONNECTED == dev->iamthif_cl.state &&
	    dev->iamthif_state == MEI_IAMTHIF_READING) {
387

388
		ret = mei_amthif_irq_read_msg(dev, mei_hdr, cmpl_list);
T
Tomas Winkler 已提交
389 390 391
		if (ret) {
			dev_err(&dev->pdev->dev, "mei_amthif_irq_read_msg failed = %d\n",
					ret);
O
Oren Weil 已提交
392
			goto end;
T
Tomas Winkler 已提交
393
		}
O
Oren Weil 已提交
394
	} else {
395
		ret = mei_cl_irq_read_msg(dev, mei_hdr, cmpl_list);
T
Tomas Winkler 已提交
396 397 398
		if (ret) {
			dev_err(&dev->pdev->dev, "mei_cl_irq_read_msg failed = %d\n",
					ret);
O
Oren Weil 已提交
399
			goto end;
T
Tomas Winkler 已提交
400
		}
O
Oren Weil 已提交
401 402
	}

T
Tomas Winkler 已提交
403
reset_slots:
O
Oren Weil 已提交
404 405 406 407 408 409
	/* reset the number of slots and header */
	*slots = mei_count_full_read_slots(dev);
	dev->rd_msg_hdr = 0;

	if (*slots == -EOVERFLOW) {
		/* overflow - reset */
410
		dev_err(&dev->pdev->dev, "resetting due to slots overflow.\n");
O
Oren Weil 已提交
411 412 413 414 415 416 417
		/* set the event since message has been read */
		ret = -ERANGE;
		goto end;
	}
end:
	return ret;
}
418
EXPORT_SYMBOL_GPL(mei_irq_read_handler);
O
Oren Weil 已提交
419 420 421


/**
422 423
 * mei_irq_write_handler -  dispatch write requests
 *  after irq received
O
Oren Weil 已提交
424 425
 *
 * @dev: the device structure
426
 * @cmpl_list: An instance of our list structure
O
Oren Weil 已提交
427 428 429
 *
 * returns 0 on success, <0 on failure.
 */
T
Tomas Winkler 已提交
430
int mei_irq_write_handler(struct mei_device *dev, struct mei_cl_cb *cmpl_list)
O
Oren Weil 已提交
431 432 433
{

	struct mei_cl *cl;
434
	struct mei_cl_cb *cb, *next;
435
	struct mei_cl_cb *list;
436
	s32 slots;
O
Oren Weil 已提交
437 438
	int ret;

439 440

	if (!mei_hbuf_acquire(dev))
O
Oren Weil 已提交
441
		return 0;
442

443 444
	slots = mei_hbuf_empty_slots(dev);
	if (slots <= 0)
445 446
		return -EMSGSIZE;

O
Oren Weil 已提交
447 448 449 450
	/* complete all waiting for write CB */
	dev_dbg(&dev->pdev->dev, "complete all waiting for write cb.\n");

	list = &dev->write_waiting_list;
451 452
	list_for_each_entry_safe(cb, next, &list->list, list) {
		cl = cb->cl;
453 454 455 456
		if (cl == NULL)
			continue;

		cl->status = 0;
457
		list_del(&cb->list);
458
		if (cb->fop_type == MEI_FOP_WRITE &&
459
		    cl != &dev->iamthif_cl) {
460
			cl_dbg(dev, cl, "MEI WRITE COMPLETE\n");
461
			cl->writing_state = MEI_WRITE_COMPLETE;
462
			list_add_tail(&cb->list, &cmpl_list->list);
463 464
		}
		if (cl == &dev->iamthif_cl) {
465
			cl_dbg(dev, cl, "check iamthif flow control.\n");
466
			if (dev->iamthif_flow_control_pending) {
467
				ret = mei_amthif_irq_read(dev, &slots);
468 469
				if (ret)
					return ret;
O
Oren Weil 已提交
470 471 472 473
			}
		}
	}

474 475
	if (dev->wd_state == MEI_WD_STOPPING) {
		dev->wd_state = MEI_WD_IDLE;
476
		wake_up(&dev->wait_stop_wd);
O
Oren Weil 已提交
477 478
	}

479
	if (mei_cl_is_connected(&dev->wd_cl)) {
O
Oren Weil 已提交
480
		if (dev->wd_pending &&
T
Tomas Winkler 已提交
481
		    mei_cl_flow_ctrl_creds(&dev->wd_cl) > 0) {
482 483 484
			ret = mei_wd_send(dev);
			if (ret)
				return ret;
485
			dev->wd_pending = false;
O
Oren Weil 已提交
486 487 488 489
		}
	}

	/* complete control write list CB */
490
	dev_dbg(&dev->pdev->dev, "complete control write list cb.\n");
491 492
	list_for_each_entry_safe(cb, next, &dev->ctrl_wr_list.list, list) {
		cl = cb->cl;
493
		if (!cl) {
494
			list_del(&cb->list);
495 496
			return -ENODEV;
		}
497
		switch (cb->fop_type) {
498
		case MEI_FOP_CLOSE:
499
			/* send disconnect message */
500
			ret = mei_cl_irq_close(cl, cb, cmpl_list);
501 502
			if (ret)
				return ret;
O
Oren Weil 已提交
503

504
			break;
505
		case MEI_FOP_READ:
506
			/* send flow control message */
507
			ret = mei_cl_irq_read(cl, cb, cmpl_list);
508 509
			if (ret)
				return ret;
O
Oren Weil 已提交
510

511
			break;
512
		case MEI_FOP_CONNECT:
513
			/* connect message */
514
			ret = mei_cl_irq_connect(cl, cb, cmpl_list);
515 516
			if (ret)
				return ret;
O
Oren Weil 已提交
517

518
			break;
T
Tomas Winkler 已提交
519 520
		case MEI_FOP_DISCONNECT_RSP:
			/* send disconnect resp */
521
			ret = mei_cl_irq_disconnect_rsp(cl, cb, cmpl_list);
T
Tomas Winkler 已提交
522 523
			if (ret)
				return ret;
524
			break;
525 526
		default:
			BUG();
O
Oren Weil 已提交
527
		}
528

O
Oren Weil 已提交
529 530
	}
	/* complete  write list CB */
531
	dev_dbg(&dev->pdev->dev, "complete write list cb.\n");
532 533
	list_for_each_entry_safe(cb, next, &dev->write_list.list, list) {
		cl = cb->cl;
534 535
		if (cl == NULL)
			continue;
536
		if (cl == &dev->iamthif_cl)
537
			ret = mei_amthif_irq_write(cl, cb, cmpl_list);
538
		else
539
			ret = mei_cl_irq_write(cl, cb, cmpl_list);
540 541
		if (ret)
			return ret;
O
Oren Weil 已提交
542 543 544
	}
	return 0;
}
545
EXPORT_SYMBOL_GPL(mei_irq_write_handler);
O
Oren Weil 已提交
546 547 548 549 550 551 552 553 554



/**
 * mei_timer - timer function.
 *
 * @work: pointer to the work_struct structure
 *
 */
555
void mei_timer(struct work_struct *work)
O
Oren Weil 已提交
556 557
{
	unsigned long timeout;
558
	struct mei_cl *cl;
O
Oren Weil 已提交
559 560

	struct mei_device *dev = container_of(work,
561
					struct mei_device, timer_work.work);
O
Oren Weil 已提交
562 563 564


	mutex_lock(&dev->device_lock);
565 566 567 568 569 570 571 572 573

	/* Catch interrupt stalls during HBM init handshake */
	if (dev->dev_state == MEI_DEV_INIT_CLIENTS &&
	    dev->hbm_state != MEI_HBM_IDLE) {

		if (dev->init_clients_timer) {
			if (--dev->init_clients_timer == 0) {
				dev_err(&dev->pdev->dev, "timer: init clients timeout hbm_state = %d.\n",
					dev->hbm_state);
574
				mei_reset(dev);
575
				goto out;
O
Oren Weil 已提交
576 577 578
			}
		}
	}
579 580 581 582

	if (dev->dev_state != MEI_DEV_ENABLED)
		goto out;

O
Oren Weil 已提交
583
	/*** connect/disconnect timeouts ***/
584 585 586
	list_for_each_entry(cl, &dev->file_list, link) {
		if (cl->timer_count) {
			if (--cl->timer_count == 0) {
587 588
				dev_err(&dev->pdev->dev, "timer: connect/disconnect timeout.\n");
				mei_reset(dev);
O
Oren Weil 已提交
589 590 591 592 593
				goto out;
			}
		}
	}

594 595 596
	if (!mei_cl_is_connected(&dev->iamthif_cl))
		goto out;

O
Oren Weil 已提交
597 598
	if (dev->iamthif_stall_timer) {
		if (--dev->iamthif_stall_timer == 0) {
599 600
			dev_err(&dev->pdev->dev, "timer: amthif  hanged.\n");
			mei_reset(dev);
O
Oren Weil 已提交
601 602
			dev->iamthif_msg_buf_size = 0;
			dev->iamthif_msg_buf_index = 0;
603 604
			dev->iamthif_canceled = false;
			dev->iamthif_ioctl = true;
O
Oren Weil 已提交
605 606 607
			dev->iamthif_state = MEI_IAMTHIF_IDLE;
			dev->iamthif_timer = 0;

608 609
			mei_io_cb_free(dev->iamthif_current_cb);
			dev->iamthif_current_cb = NULL;
O
Oren Weil 已提交
610 611

			dev->iamthif_file_object = NULL;
612
			mei_amthif_run_next_cmd(dev);
O
Oren Weil 已提交
613 614 615 616 617 618
		}
	}

	if (dev->iamthif_timer) {

		timeout = dev->iamthif_timer +
619
			mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER);
O
Oren Weil 已提交
620 621 622 623 624 625 626 627 628 629 630 631 632

		dev_dbg(&dev->pdev->dev, "dev->iamthif_timer = %ld\n",
				dev->iamthif_timer);
		dev_dbg(&dev->pdev->dev, "timeout = %ld\n", timeout);
		dev_dbg(&dev->pdev->dev, "jiffies = %ld\n", jiffies);
		if (time_after(jiffies, timeout)) {
			/*
			 * User didn't read the AMTHI data on time (15sec)
			 * freeing AMTHI for other requests
			 */

			dev_dbg(&dev->pdev->dev, "freeing AMTHI for other requests\n");

633 634
			mei_io_list_flush(&dev->amthif_rd_complete_list,
				&dev->iamthif_cl);
635 636
			mei_io_cb_free(dev->iamthif_current_cb);
			dev->iamthif_current_cb = NULL;
O
Oren Weil 已提交
637 638 639 640

			dev->iamthif_file_object->private_data = NULL;
			dev->iamthif_file_object = NULL;
			dev->iamthif_timer = 0;
641
			mei_amthif_run_next_cmd(dev);
O
Oren Weil 已提交
642 643 644 645

		}
	}
out:
646 647
	if (dev->dev_state != MEI_DEV_DISABLED)
		schedule_delayed_work(&dev->timer_work, 2 * HZ);
648
	mutex_unlock(&dev->device_lock);
O
Oren Weil 已提交
649 650
}