interrupt.c 15.3 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 "hw-me.h"
T
Tomas Winkler 已提交
30
#include "client.h"
O
Oren Weil 已提交
31 32


33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
/**
 * mei_irq_compl_handler - dispatch complete handelers
 *	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
55
			mei_cl_complete(cl, cb);
56 57
	}
}
58
EXPORT_SYMBOL_GPL(mei_irq_compl_handler);
59

O
Oren Weil 已提交
60
/**
61
 * mei_cl_hbm_equal - check if hbm is addressed to the client
O
Oren Weil 已提交
62
 *
63
 * @cl: host client
O
Oren Weil 已提交
64 65
 * @mei_hdr: header of mei client message
 *
66
 * returns true if matches, false otherwise
O
Oren Weil 已提交
67
 */
68 69
static inline int mei_cl_hbm_equal(struct mei_cl *cl,
			struct mei_msg_hdr *mei_hdr)
O
Oren Weil 已提交
70
{
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
	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 已提交
86
		cl->state == MEI_FILE_CONNECTED &&
87
		cl->reading_state != MEI_READ_COMPLETE;
O
Oren Weil 已提交
88 89 90
}

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

107 108 109 110 111 112 113 114 115
	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) {
116
			cl_err(dev, cl, "response buffer is not allocated.\n");
117 118 119 120 121
			list_del(&cb->list);
			return -ENOMEM;
		}

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

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

139 140 141 142 143 144 145
		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);
146
			cl_dbg(dev, cl, "completed read length = %lu\n",
147 148 149 150
				cb->buf_idx);
			list_add_tail(&cb->list, &complete_list->list);
		}
		break;
O
Oren Weil 已提交
151 152 153 154
	}

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

	return 0;
}

/**
164 165
 * mei_cl_irq_close - processes close related operation from
 *	interrupt thread context - send disconnect request
O
Oren Weil 已提交
166
 *
167 168
 * @cl: client
 * @cb: callback block.
O
Oren Weil 已提交
169 170 171 172 173
 * @slots: free slots.
 * @cmpl_list: complete list.
 *
 * returns 0, OK; otherwise, error.
 */
174 175
static int mei_cl_irq_close(struct mei_cl *cl, struct mei_cl_cb *cb,
			s32 *slots, struct mei_cl_cb *cmpl_list)
O
Oren Weil 已提交
176
{
177 178
	struct mei_device *dev = cl->dev;

T
Tomas Winkler 已提交
179 180
	u32 msg_slots =
		mei_data2slots(sizeof(struct hbm_client_connect_request));
O
Oren Weil 已提交
181

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

	*slots -= msg_slots;
186

187
	if (mei_hbm_cl_disconnect_req(dev, cl)) {
188
		cl->status = 0;
189 190
		cb->buf_idx = 0;
		list_move_tail(&cb->list, &cmpl_list->list);
T
Tomas Winkler 已提交
191
		return -EIO;
O
Oren Weil 已提交
192 193
	}

T
Tomas Winkler 已提交
194 195
	cl->state = MEI_FILE_DISCONNECTING;
	cl->status = 0;
196 197
	cb->buf_idx = 0;
	list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
T
Tomas Winkler 已提交
198 199
	cl->timer_count = MEI_CONNECT_TIMEOUT;

O
Oren Weil 已提交
200 201 202 203 204
	return 0;
}


/**
205 206
 * mei_cl_irq_close - processes client read related operation from the
 *	interrupt thread context - request for flow control credits
O
Oren Weil 已提交
207
 *
208 209
 * @cl: client
 * @cb: callback block.
O
Oren Weil 已提交
210 211 212 213 214
 * @slots: free slots.
 * @cmpl_list: complete list.
 *
 * returns 0, OK; otherwise, error.
 */
215 216
static int mei_cl_irq_read(struct mei_cl *cl, struct mei_cl_cb *cb,
			   s32 *slots, struct mei_cl_cb *cmpl_list)
O
Oren Weil 已提交
217
{
218 219
	struct mei_device *dev = cl->dev;

T
Tomas Winkler 已提交
220 221 222
	u32 msg_slots = mei_data2slots(sizeof(struct hbm_flow_control));

	if (*slots < msg_slots) {
O
Oren Weil 已提交
223
		/* return the cancel routine */
224
		list_del(&cb->list);
T
Tomas Winkler 已提交
225
		return -EMSGSIZE;
O
Oren Weil 已提交
226 227
	}

T
Tomas Winkler 已提交
228
	*slots -= msg_slots;
229

230
	if (mei_hbm_cl_flow_control_req(dev, cl)) {
231
		cl->status = -ENODEV;
232 233
		cb->buf_idx = 0;
		list_move_tail(&cb->list, &cmpl_list->list);
234 235
		return -ENODEV;
	}
236
	list_move_tail(&cb->list, &dev->read_list.list);
237

O
Oren Weil 已提交
238 239 240 241 242
	return 0;
}


/**
243 244
 * mei_cl_irq_ioctl - processes client ioctl related operation from the
 *	interrupt thread context -   send connection request
O
Oren Weil 已提交
245
 *
246 247
 * @cl: client
 * @cb: callback block.
O
Oren Weil 已提交
248 249 250 251 252
 * @slots: free slots.
 * @cmpl_list: complete list.
 *
 * returns 0, OK; otherwise, error.
 */
253 254
static int mei_cl_irq_ioctl(struct mei_cl *cl, struct mei_cl_cb *cb,
			   s32 *slots, struct mei_cl_cb *cmpl_list)
O
Oren Weil 已提交
255
{
256 257
	struct mei_device *dev = cl->dev;

T
Tomas Winkler 已提交
258 259 260 261
	u32 msg_slots =
		mei_data2slots(sizeof(struct hbm_client_connect_request));

	if (*slots < msg_slots) {
O
Oren Weil 已提交
262
		/* return the cancel routine */
263
		list_del(&cb->list);
T
Tomas Winkler 已提交
264
		return -EMSGSIZE;
O
Oren Weil 已提交
265 266
	}

T
Tomas Winkler 已提交
267 268
	*slots -=  msg_slots;

269
	cl->state = MEI_FILE_CONNECTING;
T
Tomas Winkler 已提交
270

271
	if (mei_hbm_cl_connect_req(dev, cl)) {
272
		cl->status = -ENODEV;
273 274
		cb->buf_idx = 0;
		list_del(&cb->list);
275 276
		return -ENODEV;
	}
277 278 279

	list_move_tail(&cb->list, &dev->ctrl_rd_list.list);
	cl->timer_count = MEI_CONNECT_TIMEOUT;
O
Oren Weil 已提交
280 281 282 283 284
	return 0;
}


/**
285
 * mei_irq_read_handler - bottom half read routine after ISR to
O
Oren Weil 已提交
286 287 288
 * handle the read processing.
 *
 * @dev: the device structure
289
 * @cmpl_list: An instance of our list structure
O
Oren Weil 已提交
290 291 292 293
 * @slots: slots to read.
 *
 * returns 0 on success, <0 on failure.
 */
294 295
int mei_irq_read_handler(struct mei_device *dev,
		struct mei_cl_cb *cmpl_list, s32 *slots)
O
Oren Weil 已提交
296 297 298 299 300 301 302
{
	struct mei_msg_hdr *mei_hdr;
	struct mei_cl *cl_pos = NULL;
	struct mei_cl *cl_next = NULL;
	int ret = 0;

	if (!dev->rd_msg_hdr) {
303
		dev->rd_msg_hdr = mei_read_hdr(dev);
O
Oren Weil 已提交
304 305 306 307 308
		dev_dbg(&dev->pdev->dev, "slots =%08x.\n", *slots);
		(*slots)--;
		dev_dbg(&dev->pdev->dev, "slots =%08x.\n", *slots);
	}
	mei_hdr = (struct mei_msg_hdr *) &dev->rd_msg_hdr;
309
	dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(mei_hdr));
O
Oren Weil 已提交
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324

	if (mei_hdr->reserved || !dev->rd_msg_hdr) {
		dev_dbg(&dev->pdev->dev, "corrupted message header.\n");
		ret = -EBADMSG;
		goto end;
	}

	if (mei_hdr->host_addr || mei_hdr->me_addr) {
		list_for_each_entry_safe(cl_pos, cl_next,
					&dev->file_list, link) {
			dev_dbg(&dev->pdev->dev,
					"list_for_each_entry_safe read host"
					" client = %d, ME client = %d\n",
					cl_pos->host_client_id,
					cl_pos->me_client_id);
325
			if (mei_cl_hbm_equal(cl_pos, mei_hdr))
O
Oren Weil 已提交
326 327 328 329 330 331 332 333 334 335
				break;
		}

		if (&cl_pos->link == &dev->file_list) {
			dev_dbg(&dev->pdev->dev, "corrupted message header\n");
			ret = -EBADMSG;
			goto end;
		}
	}
	if (((*slots) * sizeof(u32)) < mei_hdr->length) {
336
		dev_err(&dev->pdev->dev,
O
Oren Weil 已提交
337 338 339 340 341 342 343 344 345
				"we can't read the message slots =%08x.\n",
				*slots);
		/* we can't read the message */
		ret = -ERANGE;
		goto end;
	}

	/* decide where to read the message too */
	if (!mei_hdr->host_addr) {
346
		dev_dbg(&dev->pdev->dev, "call mei_hbm_dispatch.\n");
347
		mei_hbm_dispatch(dev, mei_hdr);
348
		dev_dbg(&dev->pdev->dev, "end mei_hbm_dispatch.\n");
O
Oren Weil 已提交
349 350 351
	} else if (mei_hdr->host_addr == dev->iamthif_cl.host_client_id &&
		   (MEI_FILE_CONNECTED == dev->iamthif_cl.state) &&
		   (dev->iamthif_state == MEI_IAMTHIF_READING)) {
352

353
		dev_dbg(&dev->pdev->dev, "call mei_amthif_irq_read_msg.\n");
354
		dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(mei_hdr));
355

356
		ret = mei_amthif_irq_read_msg(dev, mei_hdr, cmpl_list);
O
Oren Weil 已提交
357 358 359
		if (ret)
			goto end;
	} else {
360 361 362
		dev_dbg(&dev->pdev->dev, "call mei_cl_irq_read_msg.\n");
		dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(mei_hdr));
		ret = mei_cl_irq_read_msg(dev, mei_hdr, cmpl_list);
O
Oren Weil 已提交
363 364 365 366 367 368 369 370 371 372
		if (ret)
			goto end;
	}

	/* reset the number of slots and header */
	*slots = mei_count_full_read_slots(dev);
	dev->rd_msg_hdr = 0;

	if (*slots == -EOVERFLOW) {
		/* overflow - reset */
373
		dev_err(&dev->pdev->dev, "resetting due to slots overflow.\n");
O
Oren Weil 已提交
374 375 376 377 378 379 380
		/* set the event since message has been read */
		ret = -ERANGE;
		goto end;
	}
end:
	return ret;
}
381
EXPORT_SYMBOL_GPL(mei_irq_read_handler);
O
Oren Weil 已提交
382 383 384


/**
385 386
 * mei_irq_write_handler -  dispatch write requests
 *  after irq received
O
Oren Weil 已提交
387 388
 *
 * @dev: the device structure
389
 * @cmpl_list: An instance of our list structure
O
Oren Weil 已提交
390 391 392
 *
 * returns 0 on success, <0 on failure.
 */
T
Tomas Winkler 已提交
393
int mei_irq_write_handler(struct mei_device *dev, struct mei_cl_cb *cmpl_list)
O
Oren Weil 已提交
394 395 396
{

	struct mei_cl *cl;
397
	struct mei_cl_cb *cb, *next;
398
	struct mei_cl_cb *list;
399
	s32 slots;
O
Oren Weil 已提交
400 401
	int ret;

402
	if (!mei_hbuf_is_ready(dev)) {
O
Oren Weil 已提交
403 404 405
		dev_dbg(&dev->pdev->dev, "host buffer is not empty.\n");
		return 0;
	}
406 407
	slots = mei_hbuf_empty_slots(dev);
	if (slots <= 0)
408 409
		return -EMSGSIZE;

O
Oren Weil 已提交
410 411 412 413
	/* complete all waiting for write CB */
	dev_dbg(&dev->pdev->dev, "complete all waiting for write cb.\n");

	list = &dev->write_waiting_list;
414 415
	list_for_each_entry_safe(cb, next, &list->list, list) {
		cl = cb->cl;
416 417 418 419
		if (cl == NULL)
			continue;

		cl->status = 0;
420
		list_del(&cb->list);
421
		if (MEI_WRITING == cl->writing_state &&
422
		    cb->fop_type == MEI_FOP_WRITE &&
423
		    cl != &dev->iamthif_cl) {
424
			cl_dbg(dev, cl, "MEI WRITE COMPLETE\n");
425
			cl->writing_state = MEI_WRITE_COMPLETE;
426
			list_add_tail(&cb->list, &cmpl_list->list);
427 428
		}
		if (cl == &dev->iamthif_cl) {
429
			cl_dbg(dev, cl, "check iamthif flow control.\n");
430
			if (dev->iamthif_flow_control_pending) {
431
				ret = mei_amthif_irq_read(dev, &slots);
432 433
				if (ret)
					return ret;
O
Oren Weil 已提交
434 435 436 437
			}
		}
	}

438 439
	if (dev->wd_state == MEI_WD_STOPPING) {
		dev->wd_state = MEI_WD_IDLE;
O
Oren Weil 已提交
440 441 442
		wake_up_interruptible(&dev->wait_stop_wd);
	}

443 444
	if (dev->wr_ext_msg.hdr.length) {
		mei_write_message(dev, &dev->wr_ext_msg.hdr,
445
				dev->wr_ext_msg.data);
446
		slots -= mei_data2slots(dev->wr_ext_msg.hdr.length);
447
		dev->wr_ext_msg.hdr.length = 0;
O
Oren Weil 已提交
448
	}
449
	if (dev->dev_state == MEI_DEV_ENABLED) {
O
Oren Weil 已提交
450
		if (dev->wd_pending &&
T
Tomas Winkler 已提交
451
		    mei_cl_flow_ctrl_creds(&dev->wd_cl) > 0) {
O
Oren Weil 已提交
452 453
			if (mei_wd_send(dev))
				dev_dbg(&dev->pdev->dev, "wd send failed.\n");
T
Tomas Winkler 已提交
454
			else if (mei_cl_flow_ctrl_reduce(&dev->wd_cl))
455
				return -ENODEV;
O
Oren Weil 已提交
456

457
			dev->wd_pending = false;
O
Oren Weil 已提交
458

459
			if (dev->wd_state == MEI_WD_RUNNING)
460
				slots -= mei_data2slots(MEI_WD_START_MSG_SIZE);
461
			else
462
				slots -= mei_data2slots(MEI_WD_STOP_MSG_SIZE);
O
Oren Weil 已提交
463 464 465 466
		}
	}

	/* complete control write list CB */
467
	dev_dbg(&dev->pdev->dev, "complete control write list cb.\n");
468 469
	list_for_each_entry_safe(cb, next, &dev->ctrl_wr_list.list, list) {
		cl = cb->cl;
470
		if (!cl) {
471
			list_del(&cb->list);
472 473
			return -ENODEV;
		}
474
		switch (cb->fop_type) {
475
		case MEI_FOP_CLOSE:
476
			/* send disconnect message */
477
			ret = mei_cl_irq_close(cl, cb, &slots, cmpl_list);
478 479
			if (ret)
				return ret;
O
Oren Weil 已提交
480

481
			break;
482
		case MEI_FOP_READ:
483
			/* send flow control message */
484
			ret = mei_cl_irq_read(cl, cb, &slots, cmpl_list);
485 486
			if (ret)
				return ret;
O
Oren Weil 已提交
487

488
			break;
489
		case MEI_FOP_IOCTL:
490
			/* connect message */
T
Tomas Winkler 已提交
491
			if (mei_cl_is_other_connecting(cl))
492
				continue;
493
			ret = mei_cl_irq_ioctl(cl, cb, &slots, cmpl_list);
494 495
			if (ret)
				return ret;
O
Oren Weil 已提交
496

497
			break;
O
Oren Weil 已提交
498

499 500
		default:
			BUG();
O
Oren Weil 已提交
501
		}
502

O
Oren Weil 已提交
503 504
	}
	/* complete  write list CB */
505
	dev_dbg(&dev->pdev->dev, "complete write list cb.\n");
506 507
	list_for_each_entry_safe(cb, next, &dev->write_list.list, list) {
		cl = cb->cl;
508 509
		if (cl == NULL)
			continue;
T
Tomas Winkler 已提交
510
		if (mei_cl_flow_ctrl_creds(cl) <= 0) {
511
			cl_dbg(dev, cl, "No flow control credentials, not sending.\n");
512 513
			continue;
		}
514

515
		if (cl == &dev->iamthif_cl)
516 517
			ret = mei_amthif_irq_write_complete(cl, cb,
						&slots, cmpl_list);
518
		else
519 520
			ret = mei_cl_irq_write_complete(cl, cb,
						&slots, cmpl_list);
521 522
		if (ret)
			return ret;
O
Oren Weil 已提交
523 524 525
	}
	return 0;
}
526
EXPORT_SYMBOL_GPL(mei_irq_write_handler);
O
Oren Weil 已提交
527 528 529 530 531 532 533 534 535 536



/**
 * mei_timer - timer function.
 *
 * @work: pointer to the work_struct structure
 *
 * NOTE: This function is called by timer interrupt work
 */
537
void mei_timer(struct work_struct *work)
O
Oren Weil 已提交
538 539 540 541 542 543 544 545
{
	unsigned long timeout;
	struct mei_cl *cl_pos = NULL;
	struct mei_cl *cl_next = NULL;
	struct mei_cl_cb  *cb_pos = NULL;
	struct mei_cl_cb  *cb_next = NULL;

	struct mei_device *dev = container_of(work,
546
					struct mei_device, timer_work.work);
O
Oren Weil 已提交
547 548 549


	mutex_lock(&dev->device_lock);
550 551
	if (dev->dev_state != MEI_DEV_ENABLED) {
		if (dev->dev_state == MEI_DEV_INIT_CLIENTS) {
O
Oren Weil 已提交
552 553
			if (dev->init_clients_timer) {
				if (--dev->init_clients_timer == 0) {
T
Tomas Winkler 已提交
554 555
					dev_err(&dev->pdev->dev, "reset: init clients timeout hbm_state = %d.\n",
						dev->hbm_state);
O
Oren Weil 已提交
556 557 558 559 560 561 562 563 564 565
					mei_reset(dev, 1);
				}
			}
		}
		goto out;
	}
	/*** connect/disconnect timeouts ***/
	list_for_each_entry_safe(cl_pos, cl_next, &dev->file_list, link) {
		if (cl_pos->timer_count) {
			if (--cl_pos->timer_count == 0) {
566
				dev_err(&dev->pdev->dev, "reset: connect/disconnect timeout.\n");
O
Oren Weil 已提交
567 568 569 570 571 572 573 574
				mei_reset(dev, 1);
				goto out;
			}
		}
	}

	if (dev->iamthif_stall_timer) {
		if (--dev->iamthif_stall_timer == 0) {
575
			dev_err(&dev->pdev->dev, "reset: amthif  hanged.\n");
O
Oren Weil 已提交
576 577 578
			mei_reset(dev, 1);
			dev->iamthif_msg_buf_size = 0;
			dev->iamthif_msg_buf_index = 0;
579 580
			dev->iamthif_canceled = false;
			dev->iamthif_ioctl = true;
O
Oren Weil 已提交
581 582 583
			dev->iamthif_state = MEI_IAMTHIF_IDLE;
			dev->iamthif_timer = 0;

584 585
			mei_io_cb_free(dev->iamthif_current_cb);
			dev->iamthif_current_cb = NULL;
O
Oren Weil 已提交
586 587

			dev->iamthif_file_object = NULL;
588
			mei_amthif_run_next_cmd(dev);
O
Oren Weil 已提交
589 590 591 592 593 594
		}
	}

	if (dev->iamthif_timer) {

		timeout = dev->iamthif_timer +
595
			mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER);
O
Oren Weil 已提交
596 597 598 599 600 601 602 603 604 605 606 607 608

		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");

609 610
			list_for_each_entry_safe(cb_pos, cb_next,
				&dev->amthif_rd_complete_list.list, list) {
O
Oren Weil 已提交
611

612
				cl_pos = cb_pos->file_object->private_data;
O
Oren Weil 已提交
613

614 615
				/* Finding the AMTHI entry. */
				if (cl_pos == &dev->iamthif_cl)
616
					list_del(&cb_pos->list);
O
Oren Weil 已提交
617
			}
618 619
			mei_io_cb_free(dev->iamthif_current_cb);
			dev->iamthif_current_cb = NULL;
O
Oren Weil 已提交
620 621 622 623

			dev->iamthif_file_object->private_data = NULL;
			dev->iamthif_file_object = NULL;
			dev->iamthif_timer = 0;
624
			mei_amthif_run_next_cmd(dev);
O
Oren Weil 已提交
625 626 627 628

		}
	}
out:
629 630
	schedule_delayed_work(&dev->timer_work, 2 * HZ);
	mutex_unlock(&dev->device_lock);
O
Oren Weil 已提交
631 632
}