3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2003-2011, 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
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/version.h>
34 #include <linux/sched.h>
35 #include <linux/uuid.h>
36 #include <linux/compat.h>
37 #include <linux/jiffies.h>
38 #include <linux/interrupt.h>
42 #include "interface.h"
43 #include "mei_version.h"
46 #define MEI_READ_TIMEOUT 45
47 #define MEI_DRIVER_NAME "mei"
48 #define MEI_DEV_NAME "mei"
53 static char mei_driver_name
[] = MEI_DRIVER_NAME
;
54 static const char mei_driver_string
[] = "Intel(R) Management Engine Interface";
55 static const char mei_driver_version
[] = MEI_DRIVER_VERSION
;
57 /* mei char device for registration */
58 static struct cdev mei_cdev
;
60 /* major number for device */
62 /* The device pointer */
63 /* Currently this driver works as long as there is only a single AMT device. */
64 static struct pci_dev
*mei_device
;
66 static struct class *mei_class
;
69 /* mei_pci_tbl - PCI Device ID Table */
70 static DEFINE_PCI_DEVICE_TABLE(mei_pci_tbl
) = {
71 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_82946GZ
)},
72 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_82G35
)},
73 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_82Q965
)},
74 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_82G965
)},
75 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_82GM965
)},
76 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_82GME965
)},
77 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9_82Q35
)},
78 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9_82G33
)},
79 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9_82Q33
)},
80 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9_82X38
)},
81 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9_3200
)},
82 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9_6
)},
83 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9_7
)},
84 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9_8
)},
85 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9_9
)},
86 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9_10
)},
87 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9M_1
)},
88 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9M_2
)},
89 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9M_3
)},
90 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH9M_4
)},
91 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH10_1
)},
92 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH10_2
)},
93 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH10_3
)},
94 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_ICH10_4
)},
95 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_IBXPK_1
)},
96 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_IBXPK_2
)},
97 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_CPT_1
)},
98 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_PBG_1
)},
99 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_PPT_1
)},
100 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_PPT_2
)},
101 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, MEI_DEV_ID_PPT_3
)},
103 /* required last entry */
107 MODULE_DEVICE_TABLE(pci
, mei_pci_tbl
);
109 static DEFINE_MUTEX(mei_mutex
);
112 * mei_probe - Device Initialization Routine
114 * @pdev: PCI device structure
115 * @ent: entry in kcs_pci_tbl
117 * returns 0 on success, <0 on failure.
119 static int __devinit
mei_probe(struct pci_dev
*pdev
,
120 const struct pci_device_id
*ent
)
122 struct mei_device
*dev
;
125 mutex_lock(&mei_mutex
);
131 err
= pci_enable_device(pdev
);
133 printk(KERN_ERR
"mei: Failed to enable pci device.\n");
136 /* set PCI host mastering */
137 pci_set_master(pdev
);
138 /* pci request regions for mei driver */
139 err
= pci_request_regions(pdev
, mei_driver_name
);
141 printk(KERN_ERR
"mei: Failed to get pci regions.\n");
144 /* allocates and initializes the mei dev structure */
145 dev
= init_mei_device(pdev
);
148 goto release_regions
;
150 /* mapping IO device memory */
151 dev
->mem_addr
= pci_iomap(pdev
, 0, 0);
152 if (!dev
->mem_addr
) {
153 printk(KERN_ERR
"mei: mapping I/O device memory failure.\n");
157 /* request and enable interrupt */
158 err
= request_threaded_irq(pdev
->irq
,
159 mei_interrupt_quick_handler
,
160 mei_interrupt_thread_handler
,
161 IRQF_SHARED
, mei_driver_name
, dev
);
163 printk(KERN_ERR
"mei: request_threaded_irq failure. irq = %d\n",
167 INIT_DELAYED_WORK(&dev
->wd_work
, mei_wd_timer
);
168 if (mei_hw_init(dev
)) {
169 printk(KERN_ERR
"mei: Init hw failure.\n");
174 pci_set_drvdata(pdev
, dev
);
175 schedule_delayed_work(&dev
->wd_work
, HZ
);
177 mutex_unlock(&mei_mutex
);
179 pr_debug("mei: Driver initialization successful.\n");
184 /* disable interrupts */
185 dev
->host_hw_state
= mei_hcsr_read(dev
);
186 mei_disable_interrupts(dev
);
187 flush_scheduled_work();
188 free_irq(pdev
->irq
, dev
);
190 pci_iounmap(pdev
, dev
->mem_addr
);
194 pci_release_regions(pdev
);
196 pci_disable_device(pdev
);
198 mutex_unlock(&mei_mutex
);
199 printk(KERN_ERR
"mei: Driver initialization failed.\n");
204 * mei_remove - Device Removal Routine
206 * @pdev: PCI device structure
208 * mei_remove is called by the PCI subsystem to alert the driver
209 * that it should release a PCI device.
211 static void __devexit
mei_remove(struct pci_dev
*pdev
)
213 struct mei_device
*dev
;
215 if (mei_device
!= pdev
)
218 dev
= pci_get_drvdata(pdev
);
222 mutex_lock(&dev
->device_lock
);
224 mei_wd_stop(dev
, false);
228 if (dev
->iamthif_cl
.state
== MEI_FILE_CONNECTED
) {
229 dev
->iamthif_cl
.state
= MEI_FILE_DISCONNECTING
;
230 mei_disconnect_host_client(dev
, &dev
->iamthif_cl
);
232 if (dev
->wd_cl
.state
== MEI_FILE_CONNECTED
) {
233 dev
->wd_cl
.state
= MEI_FILE_DISCONNECTING
;
234 mei_disconnect_host_client(dev
, &dev
->wd_cl
);
237 /* remove entry if already in list */
238 dev_dbg(&pdev
->dev
, "list del iamthif and wd file list.\n");
239 mei_remove_client_from_file_list(dev
, dev
->wd_cl
.host_client_id
);
240 mei_remove_client_from_file_list(dev
, dev
->iamthif_cl
.host_client_id
);
242 dev
->iamthif_current_cb
= NULL
;
243 dev
->num_mei_me_clients
= 0;
245 mutex_unlock(&dev
->device_lock
);
247 flush_scheduled_work();
249 /* disable interrupts */
250 mei_disable_interrupts(dev
);
252 free_irq(pdev
->irq
, dev
);
253 pci_set_drvdata(pdev
, NULL
);
256 pci_iounmap(pdev
, dev
->mem_addr
);
260 pci_release_regions(pdev
);
261 pci_disable_device(pdev
);
265 * mei_clear_list - removes all callbacks associated with file
268 * @dev: device structure.
269 * @file: file structure
270 * @mei_cb_list: callbacks list
272 * mei_clear_list is called to clear resources associated with file
273 * when application calls close function or Ctrl-C was pressed
275 * returns true if callback removed from the list, false otherwise
277 static bool mei_clear_list(struct mei_device
*dev
,
278 struct file
*file
, struct list_head
*mei_cb_list
)
280 struct mei_cl_cb
*cb_pos
= NULL
;
281 struct mei_cl_cb
*cb_next
= NULL
;
282 struct file
*file_temp
;
283 bool removed
= false;
285 /* list all list member */
286 list_for_each_entry_safe(cb_pos
, cb_next
, mei_cb_list
, cb_list
) {
287 file_temp
= (struct file
*)cb_pos
->file_object
;
288 /* check if list member associated with a file */
289 if (file_temp
== file
) {
290 /* remove member from the list */
291 list_del(&cb_pos
->cb_list
);
292 /* check if cb equal to current iamthif cb */
293 if (dev
->iamthif_current_cb
== cb_pos
) {
294 dev
->iamthif_current_cb
= NULL
;
295 /* send flow control to iamthif client */
296 mei_send_flow_control(dev
, &dev
->iamthif_cl
);
298 /* free all allocated buffers */
299 mei_free_cb_private(cb_pos
);
308 * mei_clear_lists - removes all callbacks associated with file
310 * @dev: device structure
311 * @file: file structure
313 * mei_clear_lists is called to clear resources associated with file
314 * when application calls close function or Ctrl-C was pressed
316 * returns true if callback removed from the list, false otherwise
318 static bool mei_clear_lists(struct mei_device
*dev
, struct file
*file
)
320 bool removed
= false;
322 /* remove callbacks associated with a file */
323 mei_clear_list(dev
, file
, &dev
->amthi_cmd_list
.mei_cb
.cb_list
);
324 if (mei_clear_list(dev
, file
,
325 &dev
->amthi_read_complete_list
.mei_cb
.cb_list
))
328 mei_clear_list(dev
, file
, &dev
->ctrl_rd_list
.mei_cb
.cb_list
);
330 if (mei_clear_list(dev
, file
, &dev
->ctrl_wr_list
.mei_cb
.cb_list
))
333 if (mei_clear_list(dev
, file
, &dev
->write_waiting_list
.mei_cb
.cb_list
))
336 if (mei_clear_list(dev
, file
, &dev
->write_list
.mei_cb
.cb_list
))
339 /* check if iamthif_current_cb not NULL */
340 if (dev
->iamthif_current_cb
&& !removed
) {
341 /* check file and iamthif current cb association */
342 if (dev
->iamthif_current_cb
->file_object
== file
) {
344 mei_free_cb_private(dev
->iamthif_current_cb
);
345 dev
->iamthif_current_cb
= NULL
;
352 * find_read_list_entry - find read list entry
354 * @dev: device structure
355 * @file: pointer to file structure
357 * returns cb on success, NULL on error
359 static struct mei_cl_cb
*find_read_list_entry(
360 struct mei_device
*dev
,
363 struct mei_cl_cb
*cb_pos
= NULL
;
364 struct mei_cl_cb
*cb_next
= NULL
;
365 struct mei_cl
*cl_list_temp
;
367 if (!dev
->read_list
.status
&&
368 !list_empty(&dev
->read_list
.mei_cb
.cb_list
)) {
370 dev_dbg(&dev
->pdev
->dev
, "remove read_list CB\n");
371 list_for_each_entry_safe(cb_pos
, cb_next
,
372 &dev
->read_list
.mei_cb
.cb_list
, cb_list
) {
374 cl_list_temp
= (struct mei_cl
*)
375 cb_pos
->file_private
;
378 mei_fe_same_id(cl
, cl_list_temp
))
387 * mei_open - the open function
389 * @inode: pointer to inode structure
390 * @file: pointer to file structure
392 * returns 0 on success, <0 on error
394 static int mei_open(struct inode
*inode
, struct file
*file
)
397 int if_num
= iminor(inode
), err
;
398 struct mei_device
*dev
;
404 dev
= pci_get_drvdata(mei_device
);
405 if (if_num
!= MEI_MINOR_NUMBER
|| !dev
)
408 mutex_lock(&dev
->device_lock
);
410 cl
= mei_alloc_file_private(dev
);
415 if (dev
->mei_state
!= MEI_ENABLED
) {
416 dev_dbg(&dev
->pdev
->dev
, "mei_state != MEI_ENABLED mei_state= %d\n",
421 if (dev
->open_handle_count
>= MEI_MAX_OPEN_HANDLE_COUNT
)
424 cl
->host_client_id
= find_first_zero_bit(dev
->host_clients_map
,
426 if (cl
->host_client_id
> MEI_CLIENTS_MAX
)
429 dev_dbg(&dev
->pdev
->dev
, "client_id = %d\n", cl
->host_client_id
);
431 dev
->open_handle_count
++;
432 list_add_tail(&cl
->link
, &dev
->file_list
);
434 set_bit(cl
->host_client_id
, dev
->host_clients_map
);
435 cl
->state
= MEI_FILE_INITIALIZING
;
438 file
->private_data
= cl
;
439 mutex_unlock(&dev
->device_lock
);
444 mutex_unlock(&dev
->device_lock
);
451 * mei_release - the release function
453 * @inode: pointer to inode structure
454 * @file: pointer to file structure
456 * returns 0 on success, <0 on error
458 static int mei_release(struct inode
*inode
, struct file
*file
)
460 struct mei_cl
*cl
= file
->private_data
;
461 struct mei_cl_cb
*cb
;
462 struct mei_device
*dev
;
465 if (WARN_ON(!cl
|| !cl
->dev
))
470 mutex_lock(&dev
->device_lock
);
471 if (cl
!= &dev
->iamthif_cl
) {
472 if (cl
->state
== MEI_FILE_CONNECTED
) {
473 cl
->state
= MEI_FILE_DISCONNECTING
;
474 dev_dbg(&dev
->pdev
->dev
,
475 "disconnecting client host client = %d, "
479 rets
= mei_disconnect_host_client(dev
, cl
);
481 mei_flush_queues(dev
, cl
);
482 dev_dbg(&dev
->pdev
->dev
, "remove client host client = %d, ME client = %d\n",
486 if (dev
->open_handle_count
> 0) {
487 clear_bit(cl
->host_client_id
,
488 dev
->host_clients_map
);
489 dev
->open_handle_count
--;
491 mei_remove_client_from_file_list(dev
, cl
->host_client_id
);
496 cb
= find_read_list_entry(dev
, cl
);
497 /* Remove entry from read list */
499 list_del(&cb
->cb_list
);
505 file
->private_data
= NULL
;
508 mei_free_cb_private(cb
);
514 if (dev
->open_handle_count
> 0)
515 dev
->open_handle_count
--;
517 if (dev
->iamthif_file_object
== file
&&
518 dev
->iamthif_state
!= MEI_IAMTHIF_IDLE
) {
520 dev_dbg(&dev
->pdev
->dev
, "amthi canceled iamthif state %d\n",
522 dev
->iamthif_canceled
= 1;
523 if (dev
->iamthif_state
== MEI_IAMTHIF_READ_COMPLETE
) {
524 dev_dbg(&dev
->pdev
->dev
, "run next amthi iamthif cb\n");
525 run_next_iamthif_cmd(dev
);
529 if (mei_clear_lists(dev
, file
))
530 dev
->iamthif_state
= MEI_IAMTHIF_IDLE
;
533 mutex_unlock(&dev
->device_lock
);
539 * mei_read - the read function.
541 * @file: pointer to file structure
542 * @ubuf: pointer to user buffer
543 * @length: buffer length
544 * @offset: data offset in buffer
546 * returns >=0 data length on success , <0 on error
548 static ssize_t
mei_read(struct file
*file
, char __user
*ubuf
,
549 size_t length
, loff_t
*offset
)
551 struct mei_cl
*cl
= file
->private_data
;
552 struct mei_cl_cb
*cb_pos
= NULL
;
553 struct mei_cl_cb
*cb
= NULL
;
554 struct mei_device
*dev
;
560 if (WARN_ON(!cl
|| !cl
->dev
))
565 mutex_lock(&dev
->device_lock
);
566 if (dev
->mei_state
!= MEI_ENABLED
) {
571 if ((cl
->sm_state
& MEI_WD_STATE_INDEPENDENCE_MSG_SENT
) == 0) {
572 /* Do not allow to read watchdog client */
573 i
= mei_find_me_client_index(dev
, mei_wd_guid
);
575 struct mei_me_client
*me_client
= &dev
->me_clients
[i
];
577 if (cl
->me_client_id
== me_client
->client_id
) {
583 cl
->sm_state
&= ~MEI_WD_STATE_INDEPENDENCE_MSG_SENT
;
586 if (cl
== &dev
->iamthif_cl
) {
587 rets
= amthi_read(dev
, file
, ubuf
, length
, offset
);
591 if (cl
->read_cb
&& cl
->read_cb
->information
> *offset
) {
594 } else if (cl
->read_cb
&& cl
->read_cb
->information
> 0 &&
595 cl
->read_cb
->information
<= *offset
) {
599 } else if ((!cl
->read_cb
|| !cl
->read_cb
->information
) &&
601 /*Offset needs to be cleaned for contingous reads*/
607 err
= mei_start_read(dev
, cl
);
608 if (err
&& err
!= -EBUSY
) {
609 dev_dbg(&dev
->pdev
->dev
,
610 "mei start read failure with status = %d\n", err
);
615 if (MEI_READ_COMPLETE
!= cl
->reading_state
&&
616 !waitqueue_active(&cl
->rx_wait
)) {
617 if (file
->f_flags
& O_NONBLOCK
) {
622 mutex_unlock(&dev
->device_lock
);
624 if (wait_event_interruptible(cl
->rx_wait
,
625 (MEI_READ_COMPLETE
== cl
->reading_state
||
626 MEI_FILE_INITIALIZING
== cl
->state
||
627 MEI_FILE_DISCONNECTED
== cl
->state
||
628 MEI_FILE_DISCONNECTING
== cl
->state
))) {
629 if (signal_pending(current
))
634 mutex_lock(&dev
->device_lock
);
635 if (MEI_FILE_INITIALIZING
== cl
->state
||
636 MEI_FILE_DISCONNECTED
== cl
->state
||
637 MEI_FILE_DISCONNECTING
== cl
->state
) {
649 if (cl
->reading_state
!= MEI_READ_COMPLETE
) {
653 /* now copy the data to user space */
655 dev_dbg(&dev
->pdev
->dev
, "cb->response_buffer size - %d\n",
656 cb
->response_buffer
.size
);
657 dev_dbg(&dev
->pdev
->dev
, "cb->information - %lu\n",
659 if (length
== 0 || ubuf
== NULL
|| *offset
> cb
->information
) {
664 /* length is being turncated to PAGE_SIZE, however, */
665 /* information size may be longer */
666 length
= min_t(size_t, length
, (cb
->information
- *offset
));
668 if (copy_to_user(ubuf
,
669 cb
->response_buffer
.data
+ *offset
,
677 if ((unsigned long)*offset
< cb
->information
)
681 cb_pos
= find_read_list_entry(dev
, cl
);
682 /* Remove entry from read list */
684 list_del(&cb_pos
->cb_list
);
685 mei_free_cb_private(cb
);
686 cl
->reading_state
= MEI_IDLE
;
688 cl
->read_pending
= 0;
690 dev_dbg(&dev
->pdev
->dev
, "end mei read rets= %d\n", rets
);
691 mutex_unlock(&dev
->device_lock
);
696 * mei_write - the write function.
698 * @file: pointer to file structure
699 * @ubuf: pointer to user buffer
700 * @length: buffer length
701 * @offset: data offset in buffer
703 * returns >=0 data length on success , <0 on error
705 static ssize_t
mei_write(struct file
*file
, const char __user
*ubuf
,
706 size_t length
, loff_t
*offset
)
708 struct mei_cl
*cl
= file
->private_data
;
709 struct mei_cl_cb
*write_cb
= NULL
;
710 struct mei_msg_hdr mei_hdr
;
711 struct mei_device
*dev
;
712 unsigned long timeout
= 0;
716 if (WARN_ON(!cl
|| !cl
->dev
))
721 mutex_lock(&dev
->device_lock
);
723 if (dev
->mei_state
!= MEI_ENABLED
) {
724 mutex_unlock(&dev
->device_lock
);
728 if (cl
== &dev
->iamthif_cl
) {
729 write_cb
= find_amthi_read_list_entry(dev
, file
);
732 timeout
= write_cb
->read_time
+
733 msecs_to_jiffies(IAMTHIF_READ_TIMER
);
735 if (time_after(jiffies
, timeout
) ||
736 cl
->reading_state
== MEI_READ_COMPLETE
) {
738 list_del(&write_cb
->cb_list
);
739 mei_free_cb_private(write_cb
);
745 /* free entry used in read */
746 if (cl
->reading_state
== MEI_READ_COMPLETE
) {
748 write_cb
= find_read_list_entry(dev
, cl
);
750 list_del(&write_cb
->cb_list
);
751 mei_free_cb_private(write_cb
);
753 cl
->reading_state
= MEI_IDLE
;
755 cl
->read_pending
= 0;
757 } else if (cl
->reading_state
== MEI_IDLE
&&
762 write_cb
= kzalloc(sizeof(struct mei_cl_cb
), GFP_KERNEL
);
764 mutex_unlock(&dev
->device_lock
);
768 write_cb
->file_object
= file
;
769 write_cb
->file_private
= cl
;
770 write_cb
->request_buffer
.data
= kmalloc(length
, GFP_KERNEL
);
772 if (!write_cb
->request_buffer
.data
)
775 dev_dbg(&dev
->pdev
->dev
, "length =%d\n", (int) length
);
778 if (copy_from_user(write_cb
->request_buffer
.data
, ubuf
, length
))
783 ((memcmp(mei_wd_state_independence_msg
[0],
784 write_cb
->request_buffer
.data
, 4) == 0) ||
785 (memcmp(mei_wd_state_independence_msg
[1],
786 write_cb
->request_buffer
.data
, 4) == 0) ||
787 (memcmp(mei_wd_state_independence_msg
[2],
788 write_cb
->request_buffer
.data
, 4) == 0)))
789 cl
->sm_state
|= MEI_WD_STATE_INDEPENDENCE_MSG_SENT
;
791 INIT_LIST_HEAD(&write_cb
->cb_list
);
792 if (cl
== &dev
->iamthif_cl
) {
793 write_cb
->response_buffer
.data
=
794 kmalloc(dev
->iamthif_mtu
, GFP_KERNEL
);
795 if (!write_cb
->response_buffer
.data
) {
799 if (dev
->mei_state
!= MEI_ENABLED
) {
803 for (i
= 0; i
< dev
->num_mei_me_clients
; i
++) {
804 if (dev
->me_clients
[i
].client_id
==
805 dev
->iamthif_cl
.me_client_id
)
809 if (WARN_ON(dev
->me_clients
[i
].client_id
!= cl
->me_client_id
)) {
813 if (i
== dev
->num_mei_me_clients
||
814 (dev
->me_clients
[i
].client_id
!=
815 dev
->iamthif_cl
.me_client_id
)) {
818 } else if (length
> dev
->me_clients
[i
].props
.max_msg_length
||
824 write_cb
->response_buffer
.size
= dev
->iamthif_mtu
;
825 write_cb
->major_file_operations
= MEI_IOCTL
;
826 write_cb
->information
= 0;
827 write_cb
->request_buffer
.size
= length
;
828 if (dev
->iamthif_cl
.state
!= MEI_FILE_CONNECTED
) {
833 if (!list_empty(&dev
->amthi_cmd_list
.mei_cb
.cb_list
) ||
834 dev
->iamthif_state
!= MEI_IAMTHIF_IDLE
) {
835 dev_dbg(&dev
->pdev
->dev
, "amthi_state = %d\n",
836 (int) dev
->iamthif_state
);
837 dev_dbg(&dev
->pdev
->dev
, "add amthi cb to amthi cmd waiting list\n");
838 list_add_tail(&write_cb
->cb_list
,
839 &dev
->amthi_cmd_list
.mei_cb
.cb_list
);
842 dev_dbg(&dev
->pdev
->dev
, "call amthi write\n");
843 rets
= amthi_write(dev
, write_cb
);
846 dev_dbg(&dev
->pdev
->dev
, "amthi write failed with status = %d\n",
852 mutex_unlock(&dev
->device_lock
);
856 write_cb
->major_file_operations
= MEI_WRITE
;
857 /* make sure information is zero before we start */
859 write_cb
->information
= 0;
860 write_cb
->request_buffer
.size
= length
;
862 dev_dbg(&dev
->pdev
->dev
, "host client = %d, ME client = %d\n",
863 cl
->host_client_id
, cl
->me_client_id
);
864 if (cl
->state
!= MEI_FILE_CONNECTED
) {
866 dev_dbg(&dev
->pdev
->dev
, "host client = %d, is not connected to ME client = %d",
871 for (i
= 0; i
< dev
->num_mei_me_clients
; i
++) {
872 if (dev
->me_clients
[i
].client_id
==
876 if (WARN_ON(dev
->me_clients
[i
].client_id
!= cl
->me_client_id
)) {
880 if (i
== dev
->num_mei_me_clients
) {
884 if (length
> dev
->me_clients
[i
].props
.max_msg_length
|| length
<= 0) {
888 write_cb
->file_private
= cl
;
890 rets
= mei_flow_ctrl_creds(dev
, cl
);
894 if (rets
&& dev
->mei_host_buffer_is_empty
) {
896 dev
->mei_host_buffer_is_empty
= 0;
897 if (length
> ((((dev
->host_hw_state
& H_CBD
) >> 24) *
898 sizeof(u32
)) - sizeof(struct mei_msg_hdr
))) {
901 (((dev
->host_hw_state
& H_CBD
) >> 24) *
903 sizeof(struct mei_msg_hdr
);
904 mei_hdr
.msg_complete
= 0;
906 mei_hdr
.length
= length
;
907 mei_hdr
.msg_complete
= 1;
909 mei_hdr
.host_addr
= cl
->host_client_id
;
910 mei_hdr
.me_addr
= cl
->me_client_id
;
911 mei_hdr
.reserved
= 0;
912 dev_dbg(&dev
->pdev
->dev
, "call mei_write_message header=%08x.\n",
913 *((u32
*) &mei_hdr
));
914 if (!mei_write_message(dev
, &mei_hdr
,
915 (unsigned char *) (write_cb
->request_buffer
.data
),
920 cl
->writing_state
= MEI_WRITING
;
921 write_cb
->information
= mei_hdr
.length
;
922 if (mei_hdr
.msg_complete
) {
923 if (mei_flow_ctrl_reduce(dev
, cl
)) {
927 list_add_tail(&write_cb
->cb_list
,
928 &dev
->write_waiting_list
.mei_cb
.cb_list
);
930 list_add_tail(&write_cb
->cb_list
,
931 &dev
->write_list
.mei_cb
.cb_list
);
936 write_cb
->information
= 0;
937 cl
->writing_state
= MEI_WRITING
;
938 list_add_tail(&write_cb
->cb_list
,
939 &dev
->write_list
.mei_cb
.cb_list
);
941 mutex_unlock(&dev
->device_lock
);
945 mutex_unlock(&dev
->device_lock
);
946 mei_free_cb_private(write_cb
);
952 * mei_ioctl - the IOCTL function
954 * @file: pointer to file structure
955 * @cmd: ioctl command
956 * @data: pointer to mei message structure
958 * returns 0 on success , <0 on error
960 static long mei_ioctl(struct file
*file
, unsigned int cmd
, unsigned long data
)
962 struct mei_device
*dev
;
963 struct mei_cl
*cl
= file
->private_data
;
964 struct mei_connect_client_data
*connect_data
= NULL
;
967 if (cmd
!= IOCTL_MEI_CONNECT_CLIENT
)
970 if (WARN_ON(!cl
|| !cl
->dev
))
975 dev_dbg(&dev
->pdev
->dev
, "IOCTL cmd = 0x%x", cmd
);
977 mutex_lock(&dev
->device_lock
);
978 if (dev
->mei_state
!= MEI_ENABLED
) {
983 dev_dbg(&dev
->pdev
->dev
, ": IOCTL_MEI_CONNECT_CLIENT.\n");
985 connect_data
= kzalloc(sizeof(struct mei_connect_client_data
),
991 dev_dbg(&dev
->pdev
->dev
, "copy connect data from user\n");
992 if (copy_from_user(connect_data
, (char __user
*)data
,
993 sizeof(struct mei_connect_client_data
))) {
994 dev_dbg(&dev
->pdev
->dev
, "failed to copy data from userland\n");
998 rets
= mei_ioctl_connect_client(file
, connect_data
);
1000 /* if all is ok, copying the data back to user. */
1004 dev_dbg(&dev
->pdev
->dev
, "copy connect data to user\n");
1005 if (copy_to_user((char __user
*)data
, connect_data
,
1006 sizeof(struct mei_connect_client_data
))) {
1007 dev_dbg(&dev
->pdev
->dev
, "failed to copy data to userland\n");
1013 kfree(connect_data
);
1014 mutex_unlock(&dev
->device_lock
);
1019 * mei_compat_ioctl - the compat IOCTL function
1021 * @file: pointer to file structure
1022 * @cmd: ioctl command
1023 * @data: pointer to mei message structure
1025 * returns 0 on success , <0 on error
1027 #ifdef CONFIG_COMPAT
1028 static long mei_compat_ioctl(struct file
*file
,
1029 unsigned int cmd
, unsigned long data
)
1031 return mei_ioctl(file
, cmd
, (unsigned long)compat_ptr(data
));
1037 * mei_poll - the poll function
1039 * @file: pointer to file structure
1040 * @wait: pointer to poll_table structure
1044 static unsigned int mei_poll(struct file
*file
, poll_table
*wait
)
1046 struct mei_cl
*cl
= file
->private_data
;
1047 struct mei_device
*dev
;
1048 unsigned int mask
= 0;
1050 if (WARN_ON(!cl
|| !cl
->dev
))
1055 mutex_lock(&dev
->device_lock
);
1057 if (dev
->mei_state
!= MEI_ENABLED
)
1061 if (cl
== &dev
->iamthif_cl
) {
1062 mutex_unlock(&dev
->device_lock
);
1063 poll_wait(file
, &dev
->iamthif_cl
.wait
, wait
);
1064 mutex_lock(&dev
->device_lock
);
1065 if (dev
->iamthif_state
== MEI_IAMTHIF_READ_COMPLETE
&&
1066 dev
->iamthif_file_object
== file
) {
1067 mask
|= (POLLIN
| POLLRDNORM
);
1068 dev_dbg(&dev
->pdev
->dev
, "run next amthi cb\n");
1069 run_next_iamthif_cmd(dev
);
1074 mutex_unlock(&dev
->device_lock
);
1075 poll_wait(file
, &cl
->tx_wait
, wait
);
1076 mutex_lock(&dev
->device_lock
);
1077 if (MEI_WRITE_COMPLETE
== cl
->writing_state
)
1078 mask
|= (POLLIN
| POLLRDNORM
);
1081 mutex_unlock(&dev
->device_lock
);
1086 static int mei_pci_suspend(struct device
*device
)
1088 struct pci_dev
*pdev
= to_pci_dev(device
);
1089 struct mei_device
*dev
= pci_get_drvdata(pdev
);
1094 mutex_lock(&dev
->device_lock
);
1095 /* Stop watchdog if exists */
1096 err
= mei_wd_stop(dev
, true);
1097 /* Set new mei state */
1098 if (dev
->mei_state
== MEI_ENABLED
||
1099 dev
->mei_state
== MEI_RECOVERING_FROM_RESET
) {
1100 dev
->mei_state
= MEI_POWER_DOWN
;
1103 mutex_unlock(&dev
->device_lock
);
1105 free_irq(pdev
->irq
, dev
);
1111 static int mei_pci_resume(struct device
*device
)
1113 struct pci_dev
*pdev
= to_pci_dev(device
);
1114 struct mei_device
*dev
;
1117 dev
= pci_get_drvdata(pdev
);
1121 /* request and enable interrupt */
1122 err
= request_threaded_irq(pdev
->irq
,
1123 mei_interrupt_quick_handler
,
1124 mei_interrupt_thread_handler
,
1125 IRQF_SHARED
, mei_driver_name
, dev
);
1127 printk(KERN_ERR
"mei: Request_irq failure. irq = %d\n",
1132 mutex_lock(&dev
->device_lock
);
1133 dev
->mei_state
= MEI_POWER_UP
;
1135 mutex_unlock(&dev
->device_lock
);
1137 /* Start watchdog if stopped in suspend */
1138 if (dev
->wd_timeout
) {
1139 mei_wd_start_setup(dev
);
1140 dev
->wd_due_counter
= 1;
1141 schedule_delayed_work(&dev
->wd_work
, HZ
);
1145 static SIMPLE_DEV_PM_OPS(mei_pm_ops
, mei_pci_suspend
, mei_pci_resume
);
1146 #define MEI_PM_OPS (&mei_pm_ops)
1148 #define MEI_PM_OPS NULL
1149 #endif /* CONFIG_PM */
1151 * PCI driver structure
1153 static struct pci_driver mei_driver
= {
1154 .name
= mei_driver_name
,
1155 .id_table
= mei_pci_tbl
,
1157 .remove
= __devexit_p(mei_remove
),
1158 .shutdown
= __devexit_p(mei_remove
),
1159 .driver
.pm
= MEI_PM_OPS
,
1163 * file operations structure will be used for mei char device.
1165 static const struct file_operations mei_fops
= {
1166 .owner
= THIS_MODULE
,
1168 .unlocked_ioctl
= mei_ioctl
,
1169 #ifdef CONFIG_COMPAT
1170 .compat_ioctl
= mei_compat_ioctl
,
1173 .release
= mei_release
,
1179 * mei_registration_cdev - sets up the cdev structure for mei device.
1181 * @dev: char device struct
1182 * @hminor: minor number for registration char device
1183 * @fops: file operations structure
1185 * returns 0 on success, <0 on failure.
1187 static int mei_registration_cdev(struct cdev
*dev
, int hminor
,
1188 const struct file_operations
*fops
)
1190 int ret
, devno
= MKDEV(mei_major
, hminor
);
1192 cdev_init(dev
, fops
);
1193 dev
->owner
= THIS_MODULE
;
1194 ret
= cdev_add(dev
, devno
, 1);
1195 /* Fail gracefully if need be */
1197 printk(KERN_ERR
"mei: Error %d registering mei device %d\n",
1203 * mei_register_cdev - registers mei char device
1205 * returns 0 on success, <0 on failure.
1207 static int mei_register_cdev(void)
1212 /* registration of char devices */
1213 ret
= alloc_chrdev_region(&dev
, MEI_MINORS_BASE
, MEI_MINORS_COUNT
,
1216 printk(KERN_ERR
"mei: Error allocating char device region.\n");
1220 mei_major
= MAJOR(dev
);
1222 ret
= mei_registration_cdev(&mei_cdev
, MEI_MINOR_NUMBER
,
1225 unregister_chrdev_region(MKDEV(mei_major
, MEI_MINORS_BASE
),
1232 * mei_unregister_cdev - unregisters mei char device
1234 static void mei_unregister_cdev(void)
1236 cdev_del(&mei_cdev
);
1237 unregister_chrdev_region(MKDEV(mei_major
, MEI_MINORS_BASE
),
1242 * mei_sysfs_device_create - adds device entry to sysfs
1244 * returns 0 on success, <0 on failure.
1246 static int mei_sysfs_device_create(void)
1248 struct class *class;
1252 class = class_create(THIS_MODULE
, MEI_DRIVER_NAME
);
1253 if (IS_ERR(class)) {
1254 err
= PTR_ERR(class);
1255 printk(KERN_ERR
"mei: Error creating mei class.\n");
1259 tmphdev
= device_create(class, NULL
, mei_cdev
.dev
, NULL
,
1261 if (IS_ERR(tmphdev
)) {
1262 err
= PTR_ERR(tmphdev
);
1270 class_destroy(class);
1276 * mei_sysfs_device_remove - unregisters the device entry on sysfs
1278 static void mei_sysfs_device_remove(void)
1280 if (IS_ERR_OR_NULL(mei_class
))
1283 device_destroy(mei_class
, mei_cdev
.dev
);
1284 class_destroy(mei_class
);
1288 * mei_init_module - Driver Registration Routine
1290 * mei_init_module is the first routine called when the driver is
1291 * loaded. All it does is to register with the PCI subsystem.
1293 * returns 0 on success, <0 on failure.
1295 static int __init
mei_init_module(void)
1299 pr_debug("mei: %s - version %s\n",
1300 mei_driver_string
, mei_driver_version
);
1301 /* init pci module */
1302 ret
= pci_register_driver(&mei_driver
);
1304 printk(KERN_ERR
"mei: Error registering driver.\n");
1308 ret
= mei_register_cdev();
1310 goto unregister_pci
;
1312 ret
= mei_sysfs_device_create();
1314 goto unregister_cdev
;
1319 mei_unregister_cdev();
1321 pci_unregister_driver(&mei_driver
);
1326 module_init(mei_init_module
);
1329 * mei_exit_module - Driver Exit Cleanup Routine
1331 * mei_exit_module is called just before the driver is removed
1334 static void __exit
mei_exit_module(void)
1336 pci_unregister_driver(&mei_driver
);
1337 mei_sysfs_device_remove();
1338 mei_unregister_cdev();
1340 pr_debug("mei: Driver unloaded successfully.\n");
1343 module_exit(mei_exit_module
);
1346 MODULE_AUTHOR("Intel Corporation");
1347 MODULE_DESCRIPTION("Intel(R) Management Engine Interface");
1348 MODULE_LICENSE("GPL v2");
1349 MODULE_VERSION(MEI_DRIVER_VERSION
);