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