3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2003-2012, Intel Corporation.
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.
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
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19 #include <linux/module.h>
20 #include <linux/moduleparam.h>
21 #include <linux/kernel.h>
22 #include <linux/device.h>
24 #include <linux/errno.h>
25 #include <linux/types.h>
26 #include <linux/fcntl.h>
27 #include <linux/aio.h>
28 #include <linux/pci.h>
29 #include <linux/poll.h>
30 #include <linux/init.h>
31 #include <linux/ioctl.h>
32 #include <linux/cdev.h>
33 #include <linux/sched.h>
34 #include <linux/uuid.h>
35 #include <linux/compat.h>
36 #include <linux/jiffies.h>
37 #include <linux/interrupt.h>
38 #include <linux/miscdevice.h>
40 #include <linux/mei.h>
47 * mei_open - the open function
49 * @inode: pointer to inode structure
50 * @file: pointer to file structure
52 * returns 0 on success, <0 on error
54 static int mei_open(struct inode
*inode
, struct file
*file
)
56 struct miscdevice
*misc
= file
->private_data
;
59 struct mei_device
*dev
;
66 pdev
= container_of(misc
->parent
, struct pci_dev
, dev
);
68 dev
= pci_get_drvdata(pdev
);
72 mutex_lock(&dev
->device_lock
);
77 if (dev
->dev_state
!= MEI_DEV_ENABLED
) {
78 dev_dbg(&dev
->pdev
->dev
, "dev_state != MEI_ENABLED dev_state = %s\n",
79 mei_dev_state_str(dev
->dev_state
));
84 cl
= mei_cl_allocate(dev
);
88 /* open_handle_count check is handled in the mei_cl_link */
89 err
= mei_cl_link(cl
, MEI_HOST_CLIENT_ID_ANY
);
93 file
->private_data
= cl
;
95 mutex_unlock(&dev
->device_lock
);
97 return nonseekable_open(inode
, file
);
100 mutex_unlock(&dev
->device_lock
);
106 * mei_release - the release function
108 * @inode: pointer to inode structure
109 * @file: pointer to file structure
111 * returns 0 on success, <0 on error
113 static int mei_release(struct inode
*inode
, struct file
*file
)
115 struct mei_cl
*cl
= file
->private_data
;
116 struct mei_cl_cb
*cb
;
117 struct mei_device
*dev
;
120 if (WARN_ON(!cl
|| !cl
->dev
))
125 mutex_lock(&dev
->device_lock
);
126 if (cl
== &dev
->iamthif_cl
) {
127 rets
= mei_amthif_release(dev
, file
);
130 if (cl
->state
== MEI_FILE_CONNECTED
) {
131 cl
->state
= MEI_FILE_DISCONNECTING
;
132 dev_dbg(&dev
->pdev
->dev
,
133 "disconnecting client host client = %d, "
137 rets
= mei_cl_disconnect(cl
);
139 mei_cl_flush_queues(cl
);
140 dev_dbg(&dev
->pdev
->dev
, "remove client host client = %d, ME client = %d\n",
150 cb
= mei_cl_find_read_cb(cl
);
151 /* Remove entry from read list */
159 file
->private_data
= NULL
;
165 mutex_unlock(&dev
->device_lock
);
171 * mei_read - the read function.
173 * @file: pointer to file structure
174 * @ubuf: pointer to user buffer
175 * @length: buffer length
176 * @offset: data offset in buffer
178 * returns >=0 data length on success , <0 on error
180 static ssize_t
mei_read(struct file
*file
, char __user
*ubuf
,
181 size_t length
, loff_t
*offset
)
183 struct mei_cl
*cl
= file
->private_data
;
184 struct mei_cl_cb
*cb_pos
= NULL
;
185 struct mei_cl_cb
*cb
= NULL
;
186 struct mei_device
*dev
;
191 if (WARN_ON(!cl
|| !cl
->dev
))
197 mutex_lock(&dev
->device_lock
);
198 if (dev
->dev_state
!= MEI_DEV_ENABLED
) {
208 if (cl
== &dev
->iamthif_cl
) {
209 rets
= mei_amthif_read(dev
, file
, ubuf
, length
, offset
);
216 if (cb
->buf_idx
> *offset
)
218 /* offset is beyond buf_idx we have no more data return 0 */
219 if (cb
->buf_idx
> 0 && cb
->buf_idx
<= *offset
) {
223 /* Offset needs to be cleaned for contiguous reads*/
224 if (cb
->buf_idx
== 0 && *offset
> 0)
226 } else if (*offset
> 0) {
230 err
= mei_cl_read_start(cl
, length
);
231 if (err
&& err
!= -EBUSY
) {
232 dev_dbg(&dev
->pdev
->dev
,
233 "mei start read failure with status = %d\n", err
);
238 if (MEI_READ_COMPLETE
!= cl
->reading_state
&&
239 !waitqueue_active(&cl
->rx_wait
)) {
240 if (file
->f_flags
& O_NONBLOCK
) {
245 mutex_unlock(&dev
->device_lock
);
247 if (wait_event_interruptible(cl
->rx_wait
,
248 MEI_READ_COMPLETE
== cl
->reading_state
||
249 mei_cl_is_transitioning(cl
))) {
251 if (signal_pending(current
))
256 mutex_lock(&dev
->device_lock
);
257 if (mei_cl_is_transitioning(cl
)) {
269 if (cl
->reading_state
!= MEI_READ_COMPLETE
) {
273 /* now copy the data to user space */
275 dev_dbg(&dev
->pdev
->dev
, "buf.size = %d buf.idx= %ld\n",
276 cb
->response_buffer
.size
, cb
->buf_idx
);
277 if (length
== 0 || ubuf
== NULL
|| *offset
> cb
->buf_idx
) {
282 /* length is being truncated to PAGE_SIZE,
283 * however buf_idx may point beyond that */
284 length
= min_t(size_t, length
, cb
->buf_idx
- *offset
);
286 if (copy_to_user(ubuf
, cb
->response_buffer
.data
+ *offset
, length
)) {
293 if ((unsigned long)*offset
< cb
->buf_idx
)
297 cb_pos
= mei_cl_find_read_cb(cl
);
298 /* Remove entry from read list */
300 list_del(&cb_pos
->list
);
302 cl
->reading_state
= MEI_IDLE
;
305 dev_dbg(&dev
->pdev
->dev
, "end mei read rets= %d\n", rets
);
306 mutex_unlock(&dev
->device_lock
);
310 * mei_write - the write function.
312 * @file: pointer to file structure
313 * @ubuf: pointer to user buffer
314 * @length: buffer length
315 * @offset: data offset in buffer
317 * returns >=0 data length on success , <0 on error
319 static ssize_t
mei_write(struct file
*file
, const char __user
*ubuf
,
320 size_t length
, loff_t
*offset
)
322 struct mei_cl
*cl
= file
->private_data
;
323 struct mei_cl_cb
*write_cb
= NULL
;
324 struct mei_device
*dev
;
325 unsigned long timeout
= 0;
329 if (WARN_ON(!cl
|| !cl
->dev
))
334 mutex_lock(&dev
->device_lock
);
336 if (dev
->dev_state
!= MEI_DEV_ENABLED
) {
341 id
= mei_me_cl_by_id(dev
, cl
->me_client_id
);
352 if (length
> dev
->me_clients
[id
].props
.max_msg_length
) {
357 if (cl
->state
!= MEI_FILE_CONNECTED
) {
358 dev_err(&dev
->pdev
->dev
, "host client = %d, is not connected to ME client = %d",
359 cl
->host_client_id
, cl
->me_client_id
);
363 if (cl
== &dev
->iamthif_cl
) {
364 write_cb
= mei_amthif_find_read_list_entry(dev
, file
);
367 timeout
= write_cb
->read_time
+
368 mei_secs_to_jiffies(MEI_IAMTHIF_READ_TIMER
);
370 if (time_after(jiffies
, timeout
) ||
371 cl
->reading_state
== MEI_READ_COMPLETE
) {
373 list_del(&write_cb
->list
);
374 mei_io_cb_free(write_cb
);
380 /* free entry used in read */
381 if (cl
->reading_state
== MEI_READ_COMPLETE
) {
383 write_cb
= mei_cl_find_read_cb(cl
);
385 list_del(&write_cb
->list
);
386 mei_io_cb_free(write_cb
);
388 cl
->reading_state
= MEI_IDLE
;
391 } else if (cl
->reading_state
== MEI_IDLE
)
395 write_cb
= mei_io_cb_init(cl
, file
);
397 dev_err(&dev
->pdev
->dev
, "write cb allocation failed\n");
401 rets
= mei_io_cb_alloc_req_buf(write_cb
, length
);
405 rets
= copy_from_user(write_cb
->request_buffer
.data
, ubuf
, length
);
407 dev_err(&dev
->pdev
->dev
, "failed to copy data from userland\n");
412 if (cl
== &dev
->iamthif_cl
) {
413 rets
= mei_amthif_write(dev
, write_cb
);
416 dev_err(&dev
->pdev
->dev
,
417 "amthif write failed with status = %d\n", rets
);
420 mutex_unlock(&dev
->device_lock
);
424 rets
= mei_cl_write(cl
, write_cb
, false);
426 mutex_unlock(&dev
->device_lock
);
428 mei_io_cb_free(write_cb
);
433 * mei_ioctl_connect_client - the connect to fw client IOCTL function
435 * @dev: the device structure
436 * @data: IOCTL connect data, input and output parameters
437 * @file: private data of the file object
439 * Locking: called under "dev->device_lock" lock
441 * returns 0 on success, <0 on failure.
443 static int mei_ioctl_connect_client(struct file
*file
,
444 struct mei_connect_client_data
*data
)
446 struct mei_device
*dev
;
447 struct mei_client
*client
;
452 cl
= file
->private_data
;
453 if (WARN_ON(!cl
|| !cl
->dev
))
458 if (dev
->dev_state
!= MEI_DEV_ENABLED
) {
463 if (cl
->state
!= MEI_FILE_INITIALIZING
&&
464 cl
->state
!= MEI_FILE_DISCONNECTED
) {
469 /* find ME client we're trying to connect to */
470 i
= mei_me_cl_by_uuid(dev
, &data
->in_client_uuid
);
471 if (i
< 0 || dev
->me_clients
[i
].props
.fixed_address
) {
472 dev_dbg(&dev
->pdev
->dev
, "Cannot connect to FW Client UUID = %pUl\n",
473 &data
->in_client_uuid
);
478 cl
->me_client_id
= dev
->me_clients
[i
].client_id
;
479 cl
->state
= MEI_FILE_CONNECTING
;
481 dev_dbg(&dev
->pdev
->dev
, "Connect to FW Client ID = %d\n",
483 dev_dbg(&dev
->pdev
->dev
, "FW Client - Protocol Version = %d\n",
484 dev
->me_clients
[i
].props
.protocol_version
);
485 dev_dbg(&dev
->pdev
->dev
, "FW Client - Max Msg Len = %d\n",
486 dev
->me_clients
[i
].props
.max_msg_length
);
488 /* if we're connecting to amthif client then we will use the
489 * existing connection
491 if (uuid_le_cmp(data
->in_client_uuid
, mei_amthif_guid
) == 0) {
492 dev_dbg(&dev
->pdev
->dev
, "FW Client is amthi\n");
493 if (dev
->iamthif_cl
.state
!= MEI_FILE_CONNECTED
) {
501 dev
->iamthif_open_count
++;
502 file
->private_data
= &dev
->iamthif_cl
;
504 client
= &data
->out_client_properties
;
505 client
->max_msg_length
=
506 dev
->me_clients
[i
].props
.max_msg_length
;
507 client
->protocol_version
=
508 dev
->me_clients
[i
].props
.protocol_version
;
509 rets
= dev
->iamthif_cl
.status
;
515 /* prepare the output buffer */
516 client
= &data
->out_client_properties
;
517 client
->max_msg_length
= dev
->me_clients
[i
].props
.max_msg_length
;
518 client
->protocol_version
= dev
->me_clients
[i
].props
.protocol_version
;
519 dev_dbg(&dev
->pdev
->dev
, "Can connect?\n");
522 rets
= mei_cl_connect(cl
, file
);
530 * mei_ioctl - the IOCTL function
532 * @file: pointer to file structure
533 * @cmd: ioctl command
534 * @data: pointer to mei message structure
536 * returns 0 on success , <0 on error
538 static long mei_ioctl(struct file
*file
, unsigned int cmd
, unsigned long data
)
540 struct mei_device
*dev
;
541 struct mei_cl
*cl
= file
->private_data
;
542 struct mei_connect_client_data
*connect_data
= NULL
;
545 if (cmd
!= IOCTL_MEI_CONNECT_CLIENT
)
548 if (WARN_ON(!cl
|| !cl
->dev
))
553 dev_dbg(&dev
->pdev
->dev
, "IOCTL cmd = 0x%x", cmd
);
555 mutex_lock(&dev
->device_lock
);
556 if (dev
->dev_state
!= MEI_DEV_ENABLED
) {
561 dev_dbg(&dev
->pdev
->dev
, ": IOCTL_MEI_CONNECT_CLIENT.\n");
563 connect_data
= kzalloc(sizeof(struct mei_connect_client_data
),
569 dev_dbg(&dev
->pdev
->dev
, "copy connect data from user\n");
570 if (copy_from_user(connect_data
, (char __user
*)data
,
571 sizeof(struct mei_connect_client_data
))) {
572 dev_err(&dev
->pdev
->dev
, "failed to copy data from userland\n");
577 rets
= mei_ioctl_connect_client(file
, connect_data
);
579 /* if all is ok, copying the data back to user. */
583 dev_dbg(&dev
->pdev
->dev
, "copy connect data to user\n");
584 if (copy_to_user((char __user
*)data
, connect_data
,
585 sizeof(struct mei_connect_client_data
))) {
586 dev_dbg(&dev
->pdev
->dev
, "failed to copy data to userland\n");
593 mutex_unlock(&dev
->device_lock
);
598 * mei_compat_ioctl - the compat IOCTL function
600 * @file: pointer to file structure
601 * @cmd: ioctl command
602 * @data: pointer to mei message structure
604 * returns 0 on success , <0 on error
607 static long mei_compat_ioctl(struct file
*file
,
608 unsigned int cmd
, unsigned long data
)
610 return mei_ioctl(file
, cmd
, (unsigned long)compat_ptr(data
));
616 * mei_poll - the poll function
618 * @file: pointer to file structure
619 * @wait: pointer to poll_table structure
623 static unsigned int mei_poll(struct file
*file
, poll_table
*wait
)
625 struct mei_cl
*cl
= file
->private_data
;
626 struct mei_device
*dev
;
627 unsigned int mask
= 0;
629 if (WARN_ON(!cl
|| !cl
->dev
))
634 mutex_lock(&dev
->device_lock
);
636 if (!mei_cl_is_connected(cl
)) {
641 mutex_unlock(&dev
->device_lock
);
644 if (cl
== &dev
->iamthif_cl
)
645 return mei_amthif_poll(dev
, file
, wait
);
647 poll_wait(file
, &cl
->tx_wait
, wait
);
649 mutex_lock(&dev
->device_lock
);
651 if (!mei_cl_is_connected(cl
)) {
656 if (MEI_WRITE_COMPLETE
== cl
->writing_state
)
657 mask
|= (POLLIN
| POLLRDNORM
);
660 mutex_unlock(&dev
->device_lock
);
665 * file operations structure will be used for mei char device.
667 static const struct file_operations mei_fops
= {
668 .owner
= THIS_MODULE
,
670 .unlocked_ioctl
= mei_ioctl
,
672 .compat_ioctl
= mei_compat_ioctl
,
675 .release
= mei_release
,
684 static struct miscdevice mei_misc_device
= {
687 .minor
= MISC_DYNAMIC_MINOR
,
691 int mei_register(struct mei_device
*dev
)
694 mei_misc_device
.parent
= &dev
->pdev
->dev
;
695 ret
= misc_register(&mei_misc_device
);
699 if (mei_dbgfs_register(dev
, mei_misc_device
.name
))
700 dev_err(&dev
->pdev
->dev
, "cannot register debugfs\n");
704 EXPORT_SYMBOL_GPL(mei_register
);
706 void mei_deregister(struct mei_device
*dev
)
708 mei_dbgfs_deregister(dev
);
709 misc_deregister(&mei_misc_device
);
710 mei_misc_device
.parent
= NULL
;
712 EXPORT_SYMBOL_GPL(mei_deregister
);
714 static int __init
mei_init(void)
716 return mei_cl_bus_init();
719 static void __exit
mei_exit(void)
724 module_init(mei_init
);
725 module_exit(mei_exit
);
727 MODULE_AUTHOR("Intel Corporation");
728 MODULE_DESCRIPTION("Intel(R) Management Engine Interface");
729 MODULE_LICENSE("GPL v2");