GNU Linux-libre 4.9.301-gnu1
[releases.git] / drivers / misc / mei / main.c
1 /*
2  *
3  * Intel Management Engine Interface (Intel MEI) Linux driver
4  * Copyright (c) 2003-2012, Intel Corporation.
5  *
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.
9  *
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
13  * more details.
14  *
15  */
16 #include <linux/module.h>
17 #include <linux/moduleparam.h>
18 #include <linux/kernel.h>
19 #include <linux/device.h>
20 #include <linux/slab.h>
21 #include <linux/fs.h>
22 #include <linux/errno.h>
23 #include <linux/types.h>
24 #include <linux/fcntl.h>
25 #include <linux/poll.h>
26 #include <linux/init.h>
27 #include <linux/ioctl.h>
28 #include <linux/cdev.h>
29 #include <linux/sched.h>
30 #include <linux/uuid.h>
31 #include <linux/compat.h>
32 #include <linux/jiffies.h>
33 #include <linux/interrupt.h>
34
35 #include <linux/mei.h>
36
37 #include "mei_dev.h"
38 #include "client.h"
39
40 /**
41  * mei_open - the open function
42  *
43  * @inode: pointer to inode structure
44  * @file: pointer to file structure
45  *
46  * Return: 0 on success, <0 on error
47  */
48 static int mei_open(struct inode *inode, struct file *file)
49 {
50         struct mei_device *dev;
51         struct mei_cl *cl;
52
53         int err;
54
55         dev = container_of(inode->i_cdev, struct mei_device, cdev);
56         if (!dev)
57                 return -ENODEV;
58
59         mutex_lock(&dev->device_lock);
60
61         if (dev->dev_state != MEI_DEV_ENABLED) {
62                 dev_dbg(dev->dev, "dev_state != MEI_ENABLED  dev_state = %s\n",
63                     mei_dev_state_str(dev->dev_state));
64                 err = -ENODEV;
65                 goto err_unlock;
66         }
67
68         cl = mei_cl_alloc_linked(dev);
69         if (IS_ERR(cl)) {
70                 err = PTR_ERR(cl);
71                 goto err_unlock;
72         }
73
74         cl->fp = file;
75         file->private_data = cl;
76
77         mutex_unlock(&dev->device_lock);
78
79         return nonseekable_open(inode, file);
80
81 err_unlock:
82         mutex_unlock(&dev->device_lock);
83         return err;
84 }
85
86 /**
87  * mei_release - the release function
88  *
89  * @inode: pointer to inode structure
90  * @file: pointer to file structure
91  *
92  * Return: 0 on success, <0 on error
93  */
94 static int mei_release(struct inode *inode, struct file *file)
95 {
96         struct mei_cl *cl = file->private_data;
97         struct mei_device *dev;
98         int rets;
99
100         if (WARN_ON(!cl || !cl->dev))
101                 return -ENODEV;
102
103         dev = cl->dev;
104
105         mutex_lock(&dev->device_lock);
106         if (cl == &dev->iamthif_cl) {
107                 rets = mei_amthif_release(dev, file);
108                 goto out;
109         }
110         rets = mei_cl_disconnect(cl);
111
112         mei_cl_flush_queues(cl, file);
113         cl_dbg(dev, cl, "removing\n");
114
115         mei_cl_unlink(cl);
116
117         file->private_data = NULL;
118
119         kfree(cl);
120 out:
121         mutex_unlock(&dev->device_lock);
122         return rets;
123 }
124
125
126 /**
127  * mei_read - the read function.
128  *
129  * @file: pointer to file structure
130  * @ubuf: pointer to user buffer
131  * @length: buffer length
132  * @offset: data offset in buffer
133  *
134  * Return: >=0 data length on success , <0 on error
135  */
136 static ssize_t mei_read(struct file *file, char __user *ubuf,
137                         size_t length, loff_t *offset)
138 {
139         struct mei_cl *cl = file->private_data;
140         struct mei_device *dev;
141         struct mei_cl_cb *cb = NULL;
142         bool nonblock = !!(file->f_flags & O_NONBLOCK);
143         int rets;
144
145         if (WARN_ON(!cl || !cl->dev))
146                 return -ENODEV;
147
148         dev = cl->dev;
149
150
151         mutex_lock(&dev->device_lock);
152         if (dev->dev_state != MEI_DEV_ENABLED) {
153                 rets = -ENODEV;
154                 goto out;
155         }
156
157         if (length == 0) {
158                 rets = 0;
159                 goto out;
160         }
161
162         if (ubuf == NULL) {
163                 rets = -EMSGSIZE;
164                 goto out;
165         }
166
167         cb = mei_cl_read_cb(cl, file);
168         if (cb)
169                 goto copy_buffer;
170
171         if (*offset > 0)
172                 *offset = 0;
173
174         rets = mei_cl_read_start(cl, length, file);
175         if (rets && rets != -EBUSY) {
176                 cl_dbg(dev, cl, "mei start read failure status = %d\n", rets);
177                 goto out;
178         }
179
180         if (nonblock) {
181                 rets = -EAGAIN;
182                 goto out;
183         }
184
185
186 again:
187         mutex_unlock(&dev->device_lock);
188         if (wait_event_interruptible(cl->rx_wait,
189                                      !list_empty(&cl->rd_completed) ||
190                                      !mei_cl_is_connected(cl))) {
191                 if (signal_pending(current))
192                         return -EINTR;
193                 return -ERESTARTSYS;
194         }
195         mutex_lock(&dev->device_lock);
196
197         if (!mei_cl_is_connected(cl)) {
198                 rets = -ENODEV;
199                 goto out;
200         }
201
202         cb = mei_cl_read_cb(cl, file);
203         if (!cb) {
204                 /*
205                  * For amthif all the waiters are woken up,
206                  * but only fp with matching cb->fp get the cb,
207                  * the others have to return to wait on read.
208                  */
209                 if (cl == &dev->iamthif_cl)
210                         goto again;
211
212                 rets = 0;
213                 goto out;
214         }
215
216 copy_buffer:
217         /* now copy the data to user space */
218         if (cb->status) {
219                 rets = cb->status;
220                 cl_dbg(dev, cl, "read operation failed %d\n", rets);
221                 goto free;
222         }
223
224         cl_dbg(dev, cl, "buf.size = %zu buf.idx = %zu offset = %lld\n",
225                cb->buf.size, cb->buf_idx, *offset);
226         if (*offset >= cb->buf_idx) {
227                 rets = 0;
228                 goto free;
229         }
230
231         /* length is being truncated to PAGE_SIZE,
232          * however buf_idx may point beyond that */
233         length = min_t(size_t, length, cb->buf_idx - *offset);
234
235         if (copy_to_user(ubuf, cb->buf.data + *offset, length)) {
236                 dev_dbg(dev->dev, "failed to copy data to userland\n");
237                 rets = -EFAULT;
238                 goto free;
239         }
240
241         rets = length;
242         *offset += length;
243         /* not all data was read, keep the cb */
244         if (*offset < cb->buf_idx)
245                 goto out;
246
247 free:
248         mei_io_cb_free(cb);
249         *offset = 0;
250
251 out:
252         cl_dbg(dev, cl, "end mei read rets = %d\n", rets);
253         mutex_unlock(&dev->device_lock);
254         return rets;
255 }
256 /**
257  * mei_write - the write function.
258  *
259  * @file: pointer to file structure
260  * @ubuf: pointer to user buffer
261  * @length: buffer length
262  * @offset: data offset in buffer
263  *
264  * Return: >=0 data length on success , <0 on error
265  */
266 static ssize_t mei_write(struct file *file, const char __user *ubuf,
267                          size_t length, loff_t *offset)
268 {
269         struct mei_cl *cl = file->private_data;
270         struct mei_cl_cb *cb;
271         struct mei_device *dev;
272         int rets;
273
274         if (WARN_ON(!cl || !cl->dev))
275                 return -ENODEV;
276
277         dev = cl->dev;
278
279         mutex_lock(&dev->device_lock);
280
281         if (dev->dev_state != MEI_DEV_ENABLED) {
282                 rets = -ENODEV;
283                 goto out;
284         }
285
286         if (!mei_cl_is_connected(cl)) {
287                 cl_err(dev, cl, "is not connected");
288                 rets = -ENODEV;
289                 goto out;
290         }
291
292         if (!mei_me_cl_is_active(cl->me_cl)) {
293                 rets = -ENOTTY;
294                 goto out;
295         }
296
297         if (length > mei_cl_mtu(cl)) {
298                 rets = -EFBIG;
299                 goto out;
300         }
301
302         if (length == 0) {
303                 rets = 0;
304                 goto out;
305         }
306
307         cb = mei_cl_alloc_cb(cl, length, MEI_FOP_WRITE, file);
308         if (!cb) {
309                 rets = -ENOMEM;
310                 goto out;
311         }
312
313         rets = copy_from_user(cb->buf.data, ubuf, length);
314         if (rets) {
315                 dev_dbg(dev->dev, "failed to copy data from userland\n");
316                 rets = -EFAULT;
317                 mei_io_cb_free(cb);
318                 goto out;
319         }
320
321         if (cl == &dev->iamthif_cl) {
322                 rets = mei_amthif_write(cl, cb);
323                 if (!rets)
324                         rets = length;
325                 goto out;
326         }
327
328         rets = mei_cl_write(cl, cb, false);
329 out:
330         mutex_unlock(&dev->device_lock);
331         return rets;
332 }
333
334 /**
335  * mei_ioctl_connect_client - the connect to fw client IOCTL function
336  *
337  * @file: private data of the file object
338  * @data: IOCTL connect data, input and output parameters
339  *
340  * Locking: called under "dev->device_lock" lock
341  *
342  * Return: 0 on success, <0 on failure.
343  */
344 static int mei_ioctl_connect_client(struct file *file,
345                         struct mei_connect_client_data *data)
346 {
347         struct mei_device *dev;
348         struct mei_client *client;
349         struct mei_me_client *me_cl;
350         struct mei_cl *cl;
351         int rets;
352
353         cl = file->private_data;
354         dev = cl->dev;
355
356         if (dev->dev_state != MEI_DEV_ENABLED)
357                 return -ENODEV;
358
359         if (cl->state != MEI_FILE_INITIALIZING &&
360             cl->state != MEI_FILE_DISCONNECTED)
361                 return  -EBUSY;
362
363         /* find ME client we're trying to connect to */
364         me_cl = mei_me_cl_by_uuid(dev, &data->in_client_uuid);
365         if (!me_cl) {
366                 dev_dbg(dev->dev, "Cannot connect to FW Client UUID = %pUl\n",
367                         &data->in_client_uuid);
368                 rets = -ENOTTY;
369                 goto end;
370         }
371
372         if (me_cl->props.fixed_address) {
373                 bool forbidden = dev->override_fixed_address ?
374                          !dev->allow_fixed_address : !dev->hbm_f_fa_supported;
375                 if (forbidden) {
376                         dev_dbg(dev->dev, "Connection forbidden to FW Client UUID = %pUl\n",
377                                 &data->in_client_uuid);
378                         rets = -ENOTTY;
379                         goto end;
380                 }
381         }
382
383         dev_dbg(dev->dev, "Connect to FW Client ID = %d\n",
384                         me_cl->client_id);
385         dev_dbg(dev->dev, "FW Client - Protocol Version = %d\n",
386                         me_cl->props.protocol_version);
387         dev_dbg(dev->dev, "FW Client - Max Msg Len = %d\n",
388                         me_cl->props.max_msg_length);
389
390         /* if we're connecting to amthif client then we will use the
391          * existing connection
392          */
393         if (uuid_le_cmp(data->in_client_uuid, mei_amthif_guid) == 0) {
394                 dev_dbg(dev->dev, "FW Client is amthi\n");
395                 if (!mei_cl_is_connected(&dev->iamthif_cl)) {
396                         rets = -ENODEV;
397                         goto end;
398                 }
399                 mei_cl_unlink(cl);
400
401                 kfree(cl);
402                 cl = NULL;
403                 dev->iamthif_open_count++;
404                 file->private_data = &dev->iamthif_cl;
405
406                 client = &data->out_client_properties;
407                 client->max_msg_length = me_cl->props.max_msg_length;
408                 client->protocol_version = me_cl->props.protocol_version;
409                 rets = dev->iamthif_cl.status;
410
411                 goto end;
412         }
413
414         /* prepare the output buffer */
415         client = &data->out_client_properties;
416         client->max_msg_length = me_cl->props.max_msg_length;
417         client->protocol_version = me_cl->props.protocol_version;
418         dev_dbg(dev->dev, "Can connect?\n");
419
420         rets = mei_cl_connect(cl, me_cl, file);
421
422 end:
423         mei_me_cl_put(me_cl);
424         return rets;
425 }
426
427 /**
428  * mei_ioctl_client_notify_request -
429  *     propagate event notification request to client
430  *
431  * @file: pointer to file structure
432  * @request: 0 - disable, 1 - enable
433  *
434  * Return: 0 on success , <0 on error
435  */
436 static int mei_ioctl_client_notify_request(const struct file *file, u32 request)
437 {
438         struct mei_cl *cl = file->private_data;
439
440         if (request != MEI_HBM_NOTIFICATION_START &&
441             request != MEI_HBM_NOTIFICATION_STOP)
442                 return -EINVAL;
443
444         return mei_cl_notify_request(cl, file, (u8)request);
445 }
446
447 /**
448  * mei_ioctl_client_notify_get -  wait for notification request
449  *
450  * @file: pointer to file structure
451  * @notify_get: 0 - disable, 1 - enable
452  *
453  * Return: 0 on success , <0 on error
454  */
455 static int mei_ioctl_client_notify_get(const struct file *file, u32 *notify_get)
456 {
457         struct mei_cl *cl = file->private_data;
458         bool notify_ev;
459         bool block = (file->f_flags & O_NONBLOCK) == 0;
460         int rets;
461
462         rets = mei_cl_notify_get(cl, block, &notify_ev);
463         if (rets)
464                 return rets;
465
466         *notify_get = notify_ev ? 1 : 0;
467         return 0;
468 }
469
470 /**
471  * mei_ioctl - the IOCTL function
472  *
473  * @file: pointer to file structure
474  * @cmd: ioctl command
475  * @data: pointer to mei message structure
476  *
477  * Return: 0 on success , <0 on error
478  */
479 static long mei_ioctl(struct file *file, unsigned int cmd, unsigned long data)
480 {
481         struct mei_device *dev;
482         struct mei_cl *cl = file->private_data;
483         struct mei_connect_client_data connect_data;
484         u32 notify_get, notify_req;
485         int rets;
486
487
488         if (WARN_ON(!cl || !cl->dev))
489                 return -ENODEV;
490
491         dev = cl->dev;
492
493         dev_dbg(dev->dev, "IOCTL cmd = 0x%x", cmd);
494
495         mutex_lock(&dev->device_lock);
496         if (dev->dev_state != MEI_DEV_ENABLED) {
497                 rets = -ENODEV;
498                 goto out;
499         }
500
501         switch (cmd) {
502         case IOCTL_MEI_CONNECT_CLIENT:
503                 dev_dbg(dev->dev, ": IOCTL_MEI_CONNECT_CLIENT.\n");
504                 if (copy_from_user(&connect_data, (char __user *)data,
505                                 sizeof(struct mei_connect_client_data))) {
506                         dev_dbg(dev->dev, "failed to copy data from userland\n");
507                         rets = -EFAULT;
508                         goto out;
509                 }
510
511                 rets = mei_ioctl_connect_client(file, &connect_data);
512                 if (rets)
513                         goto out;
514
515                 /* if all is ok, copying the data back to user. */
516                 if (copy_to_user((char __user *)data, &connect_data,
517                                 sizeof(struct mei_connect_client_data))) {
518                         dev_dbg(dev->dev, "failed to copy data to userland\n");
519                         rets = -EFAULT;
520                         goto out;
521                 }
522
523                 break;
524
525         case IOCTL_MEI_NOTIFY_SET:
526                 dev_dbg(dev->dev, ": IOCTL_MEI_NOTIFY_SET.\n");
527                 if (copy_from_user(&notify_req,
528                                    (char __user *)data, sizeof(notify_req))) {
529                         dev_dbg(dev->dev, "failed to copy data from userland\n");
530                         rets = -EFAULT;
531                         goto out;
532                 }
533                 rets = mei_ioctl_client_notify_request(file, notify_req);
534                 break;
535
536         case IOCTL_MEI_NOTIFY_GET:
537                 dev_dbg(dev->dev, ": IOCTL_MEI_NOTIFY_GET.\n");
538                 rets = mei_ioctl_client_notify_get(file, &notify_get);
539                 if (rets)
540                         goto out;
541
542                 dev_dbg(dev->dev, "copy connect data to user\n");
543                 if (copy_to_user((char __user *)data,
544                                 &notify_get, sizeof(notify_get))) {
545                         dev_dbg(dev->dev, "failed to copy data to userland\n");
546                         rets = -EFAULT;
547                         goto out;
548
549                 }
550                 break;
551
552         default:
553                 rets = -ENOIOCTLCMD;
554         }
555
556 out:
557         mutex_unlock(&dev->device_lock);
558         return rets;
559 }
560
561 /**
562  * mei_compat_ioctl - the compat IOCTL function
563  *
564  * @file: pointer to file structure
565  * @cmd: ioctl command
566  * @data: pointer to mei message structure
567  *
568  * Return: 0 on success , <0 on error
569  */
570 #ifdef CONFIG_COMPAT
571 static long mei_compat_ioctl(struct file *file,
572                         unsigned int cmd, unsigned long data)
573 {
574         return mei_ioctl(file, cmd, (unsigned long)compat_ptr(data));
575 }
576 #endif
577
578
579 /**
580  * mei_poll - the poll function
581  *
582  * @file: pointer to file structure
583  * @wait: pointer to poll_table structure
584  *
585  * Return: poll mask
586  */
587 static unsigned int mei_poll(struct file *file, poll_table *wait)
588 {
589         unsigned long req_events = poll_requested_events(wait);
590         struct mei_cl *cl = file->private_data;
591         struct mei_device *dev;
592         unsigned int mask = 0;
593         bool notify_en;
594
595         if (WARN_ON(!cl || !cl->dev))
596                 return POLLERR;
597
598         dev = cl->dev;
599
600         mutex_lock(&dev->device_lock);
601
602         notify_en = cl->notify_en && (req_events & POLLPRI);
603
604         if (dev->dev_state != MEI_DEV_ENABLED ||
605             !mei_cl_is_connected(cl)) {
606                 mask = POLLERR;
607                 goto out;
608         }
609
610         if (notify_en) {
611                 poll_wait(file, &cl->ev_wait, wait);
612                 if (cl->notify_ev)
613                         mask |= POLLPRI;
614         }
615
616         if (cl == &dev->iamthif_cl) {
617                 mask |= mei_amthif_poll(file, wait);
618                 goto out;
619         }
620
621         if (req_events & (POLLIN | POLLRDNORM)) {
622                 poll_wait(file, &cl->rx_wait, wait);
623
624                 if (!list_empty(&cl->rd_completed))
625                         mask |= POLLIN | POLLRDNORM;
626                 else
627                         mei_cl_read_start(cl, mei_cl_mtu(cl), file);
628         }
629
630 out:
631         mutex_unlock(&dev->device_lock);
632         return mask;
633 }
634
635 /**
636  * mei_fasync - asynchronous io support
637  *
638  * @fd: file descriptor
639  * @file: pointer to file structure
640  * @band: band bitmap
641  *
642  * Return: negative on error,
643  *         0 if it did no changes,
644  *         and positive a process was added or deleted
645  */
646 static int mei_fasync(int fd, struct file *file, int band)
647 {
648
649         struct mei_cl *cl = file->private_data;
650
651         if (!mei_cl_is_connected(cl))
652                 return -ENODEV;
653
654         return fasync_helper(fd, file, band, &cl->ev_async);
655 }
656
657 /**
658  * fw_status_show - mei device attribute show method
659  *
660  * @device: device pointer
661  * @attr: attribute pointer
662  * @buf:  char out buffer
663  *
664  * Return: number of the bytes printed into buf or error
665  */
666 static ssize_t fw_status_show(struct device *device,
667                 struct device_attribute *attr, char *buf)
668 {
669         struct mei_device *dev = dev_get_drvdata(device);
670         struct mei_fw_status fw_status;
671         int err, i;
672         ssize_t cnt = 0;
673
674         mutex_lock(&dev->device_lock);
675         err = mei_fw_status(dev, &fw_status);
676         mutex_unlock(&dev->device_lock);
677         if (err) {
678                 dev_err(device, "read fw_status error = %d\n", err);
679                 return err;
680         }
681
682         for (i = 0; i < fw_status.count; i++)
683                 cnt += scnprintf(buf + cnt, PAGE_SIZE - cnt, "%08X\n",
684                                 fw_status.status[i]);
685         return cnt;
686 }
687 static DEVICE_ATTR_RO(fw_status);
688
689 static struct attribute *mei_attrs[] = {
690         &dev_attr_fw_status.attr,
691         NULL
692 };
693 ATTRIBUTE_GROUPS(mei);
694
695 /*
696  * file operations structure will be used for mei char device.
697  */
698 static const struct file_operations mei_fops = {
699         .owner = THIS_MODULE,
700         .read = mei_read,
701         .unlocked_ioctl = mei_ioctl,
702 #ifdef CONFIG_COMPAT
703         .compat_ioctl = mei_compat_ioctl,
704 #endif
705         .open = mei_open,
706         .release = mei_release,
707         .write = mei_write,
708         .poll = mei_poll,
709         .fasync = mei_fasync,
710         .llseek = no_llseek
711 };
712
713 static struct class *mei_class;
714 static dev_t mei_devt;
715 #define MEI_MAX_DEVS  MINORMASK
716 static DEFINE_MUTEX(mei_minor_lock);
717 static DEFINE_IDR(mei_idr);
718
719 /**
720  * mei_minor_get - obtain next free device minor number
721  *
722  * @dev:  device pointer
723  *
724  * Return: allocated minor, or -ENOSPC if no free minor left
725  */
726 static int mei_minor_get(struct mei_device *dev)
727 {
728         int ret;
729
730         mutex_lock(&mei_minor_lock);
731         ret = idr_alloc(&mei_idr, dev, 0, MEI_MAX_DEVS, GFP_KERNEL);
732         if (ret >= 0)
733                 dev->minor = ret;
734         else if (ret == -ENOSPC)
735                 dev_err(dev->dev, "too many mei devices\n");
736
737         mutex_unlock(&mei_minor_lock);
738         return ret;
739 }
740
741 /**
742  * mei_minor_free - mark device minor number as free
743  *
744  * @dev:  device pointer
745  */
746 static void mei_minor_free(struct mei_device *dev)
747 {
748         mutex_lock(&mei_minor_lock);
749         idr_remove(&mei_idr, dev->minor);
750         mutex_unlock(&mei_minor_lock);
751 }
752
753 int mei_register(struct mei_device *dev, struct device *parent)
754 {
755         struct device *clsdev; /* class device */
756         int ret, devno;
757
758         ret = mei_minor_get(dev);
759         if (ret < 0)
760                 return ret;
761
762         /* Fill in the data structures */
763         devno = MKDEV(MAJOR(mei_devt), dev->minor);
764         cdev_init(&dev->cdev, &mei_fops);
765         dev->cdev.owner = parent->driver->owner;
766
767         /* Add the device */
768         ret = cdev_add(&dev->cdev, devno, 1);
769         if (ret) {
770                 dev_err(parent, "unable to add device %d:%d\n",
771                         MAJOR(mei_devt), dev->minor);
772                 goto err_dev_add;
773         }
774
775         clsdev = device_create_with_groups(mei_class, parent, devno,
776                                            dev, mei_groups,
777                                            "mei%d", dev->minor);
778
779         if (IS_ERR(clsdev)) {
780                 dev_err(parent, "unable to create device %d:%d\n",
781                         MAJOR(mei_devt), dev->minor);
782                 ret = PTR_ERR(clsdev);
783                 goto err_dev_create;
784         }
785
786         ret = mei_dbgfs_register(dev, dev_name(clsdev));
787         if (ret) {
788                 dev_err(clsdev, "cannot register debugfs ret = %d\n", ret);
789                 goto err_dev_dbgfs;
790         }
791
792         return 0;
793
794 err_dev_dbgfs:
795         device_destroy(mei_class, devno);
796 err_dev_create:
797         cdev_del(&dev->cdev);
798 err_dev_add:
799         mei_minor_free(dev);
800         return ret;
801 }
802 EXPORT_SYMBOL_GPL(mei_register);
803
804 void mei_deregister(struct mei_device *dev)
805 {
806         int devno;
807
808         devno = dev->cdev.dev;
809         cdev_del(&dev->cdev);
810
811         mei_dbgfs_deregister(dev);
812
813         device_destroy(mei_class, devno);
814
815         mei_minor_free(dev);
816 }
817 EXPORT_SYMBOL_GPL(mei_deregister);
818
819 static int __init mei_init(void)
820 {
821         int ret;
822
823         mei_class = class_create(THIS_MODULE, "mei");
824         if (IS_ERR(mei_class)) {
825                 pr_err("couldn't create class\n");
826                 ret = PTR_ERR(mei_class);
827                 goto err;
828         }
829
830         ret = alloc_chrdev_region(&mei_devt, 0, MEI_MAX_DEVS, "mei");
831         if (ret < 0) {
832                 pr_err("unable to allocate char dev region\n");
833                 goto err_class;
834         }
835
836         ret = mei_cl_bus_init();
837         if (ret < 0) {
838                 pr_err("unable to initialize bus\n");
839                 goto err_chrdev;
840         }
841
842         return 0;
843
844 err_chrdev:
845         unregister_chrdev_region(mei_devt, MEI_MAX_DEVS);
846 err_class:
847         class_destroy(mei_class);
848 err:
849         return ret;
850 }
851
852 static void __exit mei_exit(void)
853 {
854         unregister_chrdev_region(mei_devt, MEI_MAX_DEVS);
855         class_destroy(mei_class);
856         mei_cl_bus_exit();
857 }
858
859 module_init(mei_init);
860 module_exit(mei_exit);
861
862 MODULE_AUTHOR("Intel Corporation");
863 MODULE_DESCRIPTION("Intel(R) Management Engine Interface");
864 MODULE_LICENSE("GPL v2");
865