main.c 17.1 KB
Newer Older
1 2 3
/*
 *
 * Intel Management Engine Interface (Intel MEI) Linux driver
4
 * Copyright (c) 2003-2012, Intel Corporation.
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * 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.
 *
 */

17 18
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/fcntl.h>
#include <linux/aio.h>
#include <linux/pci.h>
#include <linux/poll.h>
#include <linux/init.h>
#include <linux/ioctl.h>
#include <linux/cdev.h>
#include <linux/sched.h>
#include <linux/uuid.h>
#include <linux/compat.h>
#include <linux/jiffies.h>
#include <linux/interrupt.h>
38
#include <linux/miscdevice.h>
39

40
#include <linux/mei.h>
41 42

#include "mei_dev.h"
T
Tomas Winkler 已提交
43
#include "hw-me.h"
T
Tomas Winkler 已提交
44
#include "client.h"
45 46 47 48 49 50 51 52 53 54 55

/**
 * mei_open - the open function
 *
 * @inode: pointer to inode structure
 * @file: pointer to file structure
 *
 * returns 0 on success, <0 on error
 */
static int mei_open(struct inode *inode, struct file *file)
{
56 57
	struct miscdevice *misc = file->private_data;
	struct pci_dev *pdev;
58 59
	struct mei_cl *cl;
	struct mei_device *dev;
60

61
	int err;
62 63

	err = -ENODEV;
64
	if (!misc->parent)
65 66
		goto out;

67 68 69
	pdev = container_of(misc->parent, struct pci_dev, dev);

	dev = pci_get_drvdata(pdev);
70
	if (!dev)
71 72 73 74
		goto out;

	mutex_lock(&dev->device_lock);
	err = -ENOMEM;
75
	cl = mei_cl_allocate(dev);
76
	if (!cl)
77
		goto out_unlock;
78 79

	err = -ENODEV;
80 81 82
	if (dev->dev_state != MEI_DEV_ENABLED) {
		dev_dbg(&dev->pdev->dev, "dev_state != MEI_ENABLED  dev_state = %s\n",
		    mei_dev_state_str(dev->dev_state));
83 84 85
		goto out_unlock;
	}
	err = -EMFILE;
86 87 88
	if (dev->open_handle_count >= MEI_MAX_OPEN_HANDLE_COUNT) {
		dev_err(&dev->pdev->dev, "open_handle_count exceded %d",
			MEI_MAX_OPEN_HANDLE_COUNT);
89
		goto out_unlock;
90
	}
91

92 93
	err = mei_cl_link(cl, MEI_HOST_CLIENT_ID_ANY);
	if (err)
94 95 96 97 98
		goto out_unlock;

	file->private_data = cl;
	mutex_unlock(&dev->device_lock);

99
	return nonseekable_open(inode, file);
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128

out_unlock:
	mutex_unlock(&dev->device_lock);
	kfree(cl);
out:
	return err;
}

/**
 * mei_release - the release function
 *
 * @inode: pointer to inode structure
 * @file: pointer to file structure
 *
 * returns 0 on success, <0 on error
 */
static int mei_release(struct inode *inode, struct file *file)
{
	struct mei_cl *cl = file->private_data;
	struct mei_cl_cb *cb;
	struct mei_device *dev;
	int rets = 0;

	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

	mutex_lock(&dev->device_lock);
129 130 131 132 133 134 135 136 137
	if (cl == &dev->iamthif_cl) {
		rets = mei_amthif_release(dev, file);
		goto out;
	}
	if (cl->state == MEI_FILE_CONNECTED) {
		cl->state = MEI_FILE_DISCONNECTING;
		dev_dbg(&dev->pdev->dev,
			"disconnecting client host client = %d, "
		    "ME client = %d\n",
138 139
		    cl->host_client_id,
		    cl->me_client_id);
T
Tomas Winkler 已提交
140
		rets = mei_cl_disconnect(cl);
141 142 143 144 145 146 147 148 149 150
	}
	mei_cl_flush_queues(cl);
	dev_dbg(&dev->pdev->dev, "remove client host client = %d, ME client = %d\n",
	    cl->host_client_id,
	    cl->me_client_id);

	if (dev->open_handle_count > 0) {
		clear_bit(cl->host_client_id, dev->host_clients_map);
		dev->open_handle_count--;
	}
T
Tomas Winkler 已提交
151
	mei_cl_unlink(cl);
152

153

154 155 156
	/* free read cb */
	cb = NULL;
	if (cl->read_cb) {
T
Tomas Winkler 已提交
157
		cb = mei_cl_find_read_cb(cl);
158 159 160 161 162 163 164
		/* Remove entry from read list */
		if (cb)
			list_del(&cb->list);

		cb = cl->read_cb;
		cl->read_cb = NULL;
	}
165

166
	file->private_data = NULL;
167

168 169
	if (cb) {
		mei_io_cb_free(cb);
170 171
		cb = NULL;
	}
172 173 174

	kfree(cl);
out:
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
	mutex_unlock(&dev->device_lock);
	return rets;
}


/**
 * mei_read - the read function.
 *
 * @file: pointer to file structure
 * @ubuf: pointer to user buffer
 * @length: buffer length
 * @offset: data offset in buffer
 *
 * returns >=0 data length on success , <0 on error
 */
static ssize_t mei_read(struct file *file, char __user *ubuf,
191
			size_t length, loff_t *offset)
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
{
	struct mei_cl *cl = file->private_data;
	struct mei_cl_cb *cb_pos = NULL;
	struct mei_cl_cb *cb = NULL;
	struct mei_device *dev;
	int i;
	int rets;
	int err;


	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

	mutex_lock(&dev->device_lock);
208
	if (dev->dev_state != MEI_DEV_ENABLED) {
209 210 211 212 213 214
		rets = -ENODEV;
		goto out;
	}

	if ((cl->sm_state & MEI_WD_STATE_INDEPENDENCE_MSG_SENT) == 0) {
		/* Do not allow to read watchdog client */
215
		i = mei_me_cl_by_uuid(dev, &mei_wd_guid);
216 217 218 219 220 221 222 223 224 225 226 227
		if (i >= 0) {
			struct mei_me_client *me_client = &dev->me_clients[i];
			if (cl->me_client_id == me_client->client_id) {
				rets = -EBADF;
				goto out;
			}
		}
	} else {
		cl->sm_state &= ~MEI_WD_STATE_INDEPENDENCE_MSG_SENT;
	}

	if (cl == &dev->iamthif_cl) {
228
		rets = mei_amthif_read(dev, file, ubuf, length, offset);
229 230 231
		goto out;
	}

232
	if (cl->read_cb && cl->read_cb->buf_idx > *offset) {
233 234
		cb = cl->read_cb;
		goto copy_buffer;
235 236
	} else if (cl->read_cb && cl->read_cb->buf_idx > 0 &&
		   cl->read_cb->buf_idx <= *offset) {
237 238 239
		cb = cl->read_cb;
		rets = 0;
		goto free;
240
	} else if ((!cl->read_cb || !cl->read_cb->buf_idx) && *offset > 0) {
241
		/*Offset needs to be cleaned for contiguous reads*/
242 243 244 245 246
		*offset = 0;
		rets = 0;
		goto out;
	}

T
Tomas Winkler 已提交
247
	err = mei_cl_read_start(cl);
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
	if (err && err != -EBUSY) {
		dev_dbg(&dev->pdev->dev,
			"mei start read failure with status = %d\n", err);
		rets = err;
		goto out;
	}

	if (MEI_READ_COMPLETE != cl->reading_state &&
			!waitqueue_active(&cl->rx_wait)) {
		if (file->f_flags & O_NONBLOCK) {
			rets = -EAGAIN;
			goto out;
		}

		mutex_unlock(&dev->device_lock);

		if (wait_event_interruptible(cl->rx_wait,
			(MEI_READ_COMPLETE == cl->reading_state ||
			 MEI_FILE_INITIALIZING == cl->state ||
			 MEI_FILE_DISCONNECTED == cl->state ||
			 MEI_FILE_DISCONNECTING == cl->state))) {
			if (signal_pending(current))
				return -EINTR;
			return -ERESTARTSYS;
		}

		mutex_lock(&dev->device_lock);
		if (MEI_FILE_INITIALIZING == cl->state ||
		    MEI_FILE_DISCONNECTED == cl->state ||
		    MEI_FILE_DISCONNECTING == cl->state) {
			rets = -EBUSY;
			goto out;
		}
	}

	cb = cl->read_cb;

	if (!cb) {
		rets = -ENODEV;
		goto out;
	}
	if (cl->reading_state != MEI_READ_COMPLETE) {
		rets = 0;
		goto out;
	}
	/* now copy the data to user space */
copy_buffer:
	dev_dbg(&dev->pdev->dev, "cb->response_buffer size - %d\n",
	    cb->response_buffer.size);
297 298
	dev_dbg(&dev->pdev->dev, "cb->buf_idx - %lu\n", cb->buf_idx);
	if (length == 0 || ubuf == NULL || *offset > cb->buf_idx) {
299 300 301 302
		rets = -EMSGSIZE;
		goto free;
	}

303 304 305
	/* length is being truncated to PAGE_SIZE,
	 * however buf_idx may point beyond that */
	length = min_t(size_t, length, cb->buf_idx - *offset);
306

307
	if (copy_to_user(ubuf, cb->response_buffer.data + *offset, length)) {
308 309 310 311 312 313
		rets = -EFAULT;
		goto free;
	}

	rets = length;
	*offset += length;
314
	if ((unsigned long)*offset < cb->buf_idx)
315 316 317
		goto out;

free:
T
Tomas Winkler 已提交
318
	cb_pos = mei_cl_find_read_cb(cl);
319 320
	/* Remove entry from read list */
	if (cb_pos)
321
		list_del(&cb_pos->list);
322
	mei_io_cb_free(cb);
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
	cl->reading_state = MEI_IDLE;
	cl->read_cb = NULL;
out:
	dev_dbg(&dev->pdev->dev, "end mei read rets= %d\n", rets);
	mutex_unlock(&dev->device_lock);
	return rets;
}
/**
 * mei_write - the write function.
 *
 * @file: pointer to file structure
 * @ubuf: pointer to user buffer
 * @length: buffer length
 * @offset: data offset in buffer
 *
 * returns >=0 data length on success , <0 on error
 */
static ssize_t mei_write(struct file *file, const char __user *ubuf,
341
			 size_t length, loff_t *offset)
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
{
	struct mei_cl *cl = file->private_data;
	struct mei_cl_cb *write_cb = NULL;
	struct mei_msg_hdr mei_hdr;
	struct mei_device *dev;
	unsigned long timeout = 0;
	int rets;
	int i;

	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

	mutex_lock(&dev->device_lock);

358
	if (dev->dev_state != MEI_DEV_ENABLED) {
359
		rets = -ENODEV;
360
		goto err;
361 362
	}

363 364 365
	i = mei_me_cl_by_id(dev, cl->me_client_id);
	if (i < 0) {
		rets = -ENODEV;
366
		goto err;
367 368 369
	}
	if (length > dev->me_clients[i].props.max_msg_length || length <= 0) {
		rets = -EMSGSIZE;
370
		goto err;
371 372 373 374 375 376
	}

	if (cl->state != MEI_FILE_CONNECTED) {
		rets = -ENODEV;
		dev_err(&dev->pdev->dev, "host client = %d,  is not connected to ME client = %d",
			cl->host_client_id, cl->me_client_id);
377
		goto err;
378
	}
379
	if (cl == &dev->iamthif_cl) {
380
		write_cb = mei_amthif_find_read_list_entry(dev, file);
381 382 383

		if (write_cb) {
			timeout = write_cb->read_time +
384
				mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER);
385 386

			if (time_after(jiffies, timeout) ||
387 388
			    cl->reading_state == MEI_READ_COMPLETE) {
				*offset = 0;
389
				list_del(&write_cb->list);
390
				mei_io_cb_free(write_cb);
391
				write_cb = NULL;
392 393 394 395 396 397 398
			}
		}
	}

	/* free entry used in read */
	if (cl->reading_state == MEI_READ_COMPLETE) {
		*offset = 0;
T
Tomas Winkler 已提交
399
		write_cb = mei_cl_find_read_cb(cl);
400
		if (write_cb) {
401
			list_del(&write_cb->list);
402
			mei_io_cb_free(write_cb);
403 404 405 406
			write_cb = NULL;
			cl->reading_state = MEI_IDLE;
			cl->read_cb = NULL;
		}
407
	} else if (cl->reading_state == MEI_IDLE)
408 409 410
		*offset = 0;


411
	write_cb = mei_io_cb_init(cl, file);
412
	if (!write_cb) {
413 414
		dev_err(&dev->pdev->dev, "write cb allocation failed\n");
		rets = -ENOMEM;
415
		goto err;
416
	}
417 418
	rets = mei_io_cb_alloc_req_buf(write_cb, length);
	if (rets)
419
		goto err;
420

421
	dev_dbg(&dev->pdev->dev, "cb request size = %zd\n", length);
422

423 424
	rets = copy_from_user(write_cb->request_buffer.data, ubuf, length);
	if (rets)
425
		goto err;
426 427 428 429 430 431 432 433 434 435 436 437

	cl->sm_state = 0;
	if (length == 4 &&
	    ((memcmp(mei_wd_state_independence_msg[0],
				 write_cb->request_buffer.data, 4) == 0) ||
	     (memcmp(mei_wd_state_independence_msg[1],
				 write_cb->request_buffer.data, 4) == 0) ||
	     (memcmp(mei_wd_state_independence_msg[2],
				 write_cb->request_buffer.data, 4) == 0)))
		cl->sm_state |= MEI_WD_STATE_INDEPENDENCE_MSG_SENT;

	if (cl == &dev->iamthif_cl) {
438
		rets = mei_amthif_write(dev, write_cb);
439

440 441
		if (rets) {
			dev_err(&dev->pdev->dev,
442
				"amthif write failed with status = %d\n", rets);
443
			goto err;
444 445
		}
		mutex_unlock(&dev->device_lock);
446
		return length;
447 448
	}

449
	write_cb->fop_type = MEI_FOP_WRITE;
450 451 452

	dev_dbg(&dev->pdev->dev, "host client = %d, ME client = %d\n",
	    cl->host_client_id, cl->me_client_id);
T
Tomas Winkler 已提交
453
	rets = mei_cl_flow_ctrl_creds(cl);
454
	if (rets < 0)
455
		goto err;
456

457 458 459
	if (rets == 0 || dev->mei_host_buffer_is_empty == false) {
		write_cb->buf_idx = 0;
		mei_hdr.msg_complete = 0;
460
		cl->writing_state = MEI_WRITING;
461 462
		goto out;
	}
463

464 465 466 467
	dev->mei_host_buffer_is_empty = false;
	if (length >  mei_hbuf_max_data(dev)) {
		mei_hdr.length = mei_hbuf_max_data(dev);
		mei_hdr.msg_complete = 0;
468
	} else {
469 470 471 472 473 474
		mei_hdr.length = length;
		mei_hdr.msg_complete = 1;
	}
	mei_hdr.host_addr = cl->host_client_id;
	mei_hdr.me_addr = cl->me_client_id;
	mei_hdr.reserved = 0;
475 476 477

	dev_dbg(&dev->pdev->dev, "write " MEI_HDR_FMT "\n",
		MEI_HDR_PRM(&mei_hdr));
478
	if (mei_write_message(dev, &mei_hdr, write_cb->request_buffer.data)) {
479 480 481 482 483
		rets = -ENODEV;
		goto err;
	}
	cl->writing_state = MEI_WRITING;
	write_cb->buf_idx = mei_hdr.length;
484

485 486
out:
	if (mei_hdr.msg_complete) {
T
Tomas Winkler 已提交
487
		if (mei_cl_flow_ctrl_reduce(cl)) {
488 489 490 491 492
			rets = -ENODEV;
			goto err;
		}
		list_add_tail(&write_cb->list, &dev->write_waiting_list.list);
	} else {
493
		list_add_tail(&write_cb->list, &dev->write_list.list);
494
	}
495

496 497 498
	mutex_unlock(&dev->device_lock);
	return length;

499
err:
500
	mutex_unlock(&dev->device_lock);
501
	mei_io_cb_free(write_cb);
502 503 504
	return rets;
}

505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
/**
 * mei_ioctl_connect_client - the connect to fw client IOCTL function
 *
 * @dev: the device structure
 * @data: IOCTL connect data, input and output parameters
 * @file: private data of the file object
 *
 * Locking: called under "dev->device_lock" lock
 *
 * returns 0 on success, <0 on failure.
 */
static int mei_ioctl_connect_client(struct file *file,
			struct mei_connect_client_data *data)
{
	struct mei_device *dev;
	struct mei_client *client;
	struct mei_cl *cl;
	int i;
	int rets;

	cl = file->private_data;
	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

	if (dev->dev_state != MEI_DEV_ENABLED) {
		rets = -ENODEV;
		goto end;
	}

	if (cl->state != MEI_FILE_INITIALIZING &&
	    cl->state != MEI_FILE_DISCONNECTED) {
		rets = -EBUSY;
		goto end;
	}

	/* find ME client we're trying to connect to */
	i = mei_me_cl_by_uuid(dev, &data->in_client_uuid);
	if (i >= 0 && !dev->me_clients[i].props.fixed_address) {
		cl->me_client_id = dev->me_clients[i].client_id;
		cl->state = MEI_FILE_CONNECTING;
	}

	dev_dbg(&dev->pdev->dev, "Connect to FW Client ID = %d\n",
			cl->me_client_id);
	dev_dbg(&dev->pdev->dev, "FW Client - Protocol Version = %d\n",
			dev->me_clients[i].props.protocol_version);
	dev_dbg(&dev->pdev->dev, "FW Client - Max Msg Len = %d\n",
			dev->me_clients[i].props.max_msg_length);

556
	/* if we're connecting to amthif client then we will use the
557 558
	 * existing connection
	 */
559
	if (uuid_le_cmp(data->in_client_uuid, mei_amthif_guid) == 0) {
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
		dev_dbg(&dev->pdev->dev, "FW Client is amthi\n");
		if (dev->iamthif_cl.state != MEI_FILE_CONNECTED) {
			rets = -ENODEV;
			goto end;
		}
		clear_bit(cl->host_client_id, dev->host_clients_map);
		mei_cl_unlink(cl);

		kfree(cl);
		cl = NULL;
		file->private_data = &dev->iamthif_cl;

		client = &data->out_client_properties;
		client->max_msg_length =
			dev->me_clients[i].props.max_msg_length;
		client->protocol_version =
			dev->me_clients[i].props.protocol_version;
		rets = dev->iamthif_cl.status;

		goto end;
	}

	if (cl->state != MEI_FILE_CONNECTING) {
		rets = -ENODEV;
		goto end;
	}


	/* prepare the output buffer */
	client = &data->out_client_properties;
	client->max_msg_length = dev->me_clients[i].props.max_msg_length;
	client->protocol_version = dev->me_clients[i].props.protocol_version;
	dev_dbg(&dev->pdev->dev, "Can connect?\n");


	rets = mei_cl_connect(cl, file);

end:
	dev_dbg(&dev->pdev->dev, "free connect cb memory.");
	return rets;
}

602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629

/**
 * mei_ioctl - the IOCTL function
 *
 * @file: pointer to file structure
 * @cmd: ioctl command
 * @data: pointer to mei message structure
 *
 * returns 0 on success , <0 on error
 */
static long mei_ioctl(struct file *file, unsigned int cmd, unsigned long data)
{
	struct mei_device *dev;
	struct mei_cl *cl = file->private_data;
	struct mei_connect_client_data *connect_data = NULL;
	int rets;

	if (cmd != IOCTL_MEI_CONNECT_CLIENT)
		return -EINVAL;

	if (WARN_ON(!cl || !cl->dev))
		return -ENODEV;

	dev = cl->dev;

	dev_dbg(&dev->pdev->dev, "IOCTL cmd = 0x%x", cmd);

	mutex_lock(&dev->device_lock);
630
	if (dev->dev_state != MEI_DEV_ENABLED) {
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
		rets = -ENODEV;
		goto out;
	}

	dev_dbg(&dev->pdev->dev, ": IOCTL_MEI_CONNECT_CLIENT.\n");

	connect_data = kzalloc(sizeof(struct mei_connect_client_data),
							GFP_KERNEL);
	if (!connect_data) {
		rets = -ENOMEM;
		goto out;
	}
	dev_dbg(&dev->pdev->dev, "copy connect data from user\n");
	if (copy_from_user(connect_data, (char __user *)data,
				sizeof(struct mei_connect_client_data))) {
		dev_dbg(&dev->pdev->dev, "failed to copy data from userland\n");
		rets = -EFAULT;
		goto out;
	}
650

651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
	rets = mei_ioctl_connect_client(file, connect_data);

	/* if all is ok, copying the data back to user. */
	if (rets)
		goto out;

	dev_dbg(&dev->pdev->dev, "copy connect data to user\n");
	if (copy_to_user((char __user *)data, connect_data,
				sizeof(struct mei_connect_client_data))) {
		dev_dbg(&dev->pdev->dev, "failed to copy data to userland\n");
		rets = -EFAULT;
		goto out;
	}

out:
	kfree(connect_data);
	mutex_unlock(&dev->device_lock);
	return rets;
}

/**
 * mei_compat_ioctl - the compat IOCTL function
 *
 * @file: pointer to file structure
 * @cmd: ioctl command
 * @data: pointer to mei message structure
 *
 * returns 0 on success , <0 on error
 */
#ifdef CONFIG_COMPAT
static long mei_compat_ioctl(struct file *file,
682
			unsigned int cmd, unsigned long data)
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
{
	return mei_ioctl(file, cmd, (unsigned long)compat_ptr(data));
}
#endif


/**
 * mei_poll - the poll function
 *
 * @file: pointer to file structure
 * @wait: pointer to poll_table structure
 *
 * returns poll mask
 */
static unsigned int mei_poll(struct file *file, poll_table *wait)
{
	struct mei_cl *cl = file->private_data;
	struct mei_device *dev;
	unsigned int mask = 0;

	if (WARN_ON(!cl || !cl->dev))
		return mask;

	dev = cl->dev;

	mutex_lock(&dev->device_lock);

710
	if (dev->dev_state != MEI_DEV_ENABLED)
711 712 713 714
		goto out;


	if (cl == &dev->iamthif_cl) {
715
		mask = mei_amthif_poll(dev, file, wait);
716 717 718 719 720 721 722 723 724 725 726 727 728 729
		goto out;
	}

	mutex_unlock(&dev->device_lock);
	poll_wait(file, &cl->tx_wait, wait);
	mutex_lock(&dev->device_lock);
	if (MEI_WRITE_COMPLETE == cl->writing_state)
		mask |= (POLLIN | POLLRDNORM);

out:
	mutex_unlock(&dev->device_lock);
	return mask;
}

730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
/*
 * file operations structure will be used for mei char device.
 */
static const struct file_operations mei_fops = {
	.owner = THIS_MODULE,
	.read = mei_read,
	.unlocked_ioctl = mei_ioctl,
#ifdef CONFIG_COMPAT
	.compat_ioctl = mei_compat_ioctl,
#endif
	.open = mei_open,
	.release = mei_release,
	.write = mei_write,
	.poll = mei_poll,
	.llseek = no_llseek
};

/*
 * Misc Device Struct
 */
static struct miscdevice  mei_misc_device = {
751
		.name = "mei",
752 753 754 755
		.fops = &mei_fops,
		.minor = MISC_DYNAMIC_MINOR,
};

756
int mei_register(struct device *dev)
757
{
758 759
	mei_misc_device.parent = dev;
	return misc_register(&mei_misc_device);
760 761
}

762
void mei_deregister(void)
763
{
764
	misc_deregister(&mei_misc_device);
765
	mei_misc_device.parent = NULL;
766
}
767 768