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