]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/staging/rdma/hfi1/device.c
scsi_dh: don't try to load a device handler during async probing
[karo-tx-linux.git] / drivers / staging / rdma / hfi1 / device.c
1 /*
2  *
3  * This file is provided under a dual BSD/GPLv2 license.  When using or
4  * redistributing this file, you may do so under either license.
5  *
6  * GPL LICENSE SUMMARY
7  *
8  * Copyright(c) 2015 Intel Corporation.
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of version 2 of the GNU General Public License as
12  * published by the Free Software Foundation.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  *
19  * BSD LICENSE
20  *
21  * Copyright(c) 2015 Intel Corporation.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  *
27  *  - Redistributions of source code must retain the above copyright
28  *    notice, this list of conditions and the following disclaimer.
29  *  - Redistributions in binary form must reproduce the above copyright
30  *    notice, this list of conditions and the following disclaimer in
31  *    the documentation and/or other materials provided with the
32  *    distribution.
33  *  - Neither the name of Intel Corporation nor the names of its
34  *    contributors may be used to endorse or promote products derived
35  *    from this software without specific prior written permission.
36  *
37  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
38  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
39  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
40  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
41  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
42  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
43  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
44  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
45  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
46  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
47  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48  *
49  */
50
51 #include <linux/cdev.h>
52 #include <linux/module.h>
53 #include <linux/device.h>
54 #include <linux/fs.h>
55
56 #include "hfi.h"
57 #include "device.h"
58
59 static struct class *class;
60 static dev_t hfi1_dev;
61
62 int hfi1_cdev_init(int minor, const char *name,
63                    const struct file_operations *fops,
64                    struct cdev *cdev, struct device **devp)
65 {
66         const dev_t dev = MKDEV(MAJOR(hfi1_dev), minor);
67         struct device *device = NULL;
68         int ret;
69
70         cdev_init(cdev, fops);
71         cdev->owner = THIS_MODULE;
72         kobject_set_name(&cdev->kobj, name);
73
74         ret = cdev_add(cdev, dev, 1);
75         if (ret < 0) {
76                 pr_err("Could not add cdev for minor %d, %s (err %d)\n",
77                        minor, name, -ret);
78                 goto done;
79         }
80
81         device = device_create(class, NULL, dev, NULL, "%s", name);
82         if (!IS_ERR(device))
83                 goto done;
84         ret = PTR_ERR(device);
85         device = NULL;
86         pr_err("Could not create device for minor %d, %s (err %d)\n",
87                minor, name, -ret);
88         cdev_del(cdev);
89 done:
90         *devp = device;
91         return ret;
92 }
93
94 void hfi1_cdev_cleanup(struct cdev *cdev, struct device **devp)
95 {
96         struct device *device = *devp;
97
98         if (device) {
99                 device_unregister(device);
100                 *devp = NULL;
101
102                 cdev_del(cdev);
103         }
104 }
105
106 static const char *hfi1_class_name = "hfi1";
107
108 const char *class_name(void)
109 {
110         return hfi1_class_name;
111 }
112
113 int __init dev_init(void)
114 {
115         int ret;
116
117         ret = alloc_chrdev_region(&hfi1_dev, 0, HFI1_NMINORS, DRIVER_NAME);
118         if (ret < 0) {
119                 pr_err("Could not allocate chrdev region (err %d)\n", -ret);
120                 goto done;
121         }
122
123         class = class_create(THIS_MODULE, class_name());
124         if (IS_ERR(class)) {
125                 ret = PTR_ERR(class);
126                 pr_err("Could not create device class (err %d)\n", -ret);
127                 unregister_chrdev_region(hfi1_dev, HFI1_NMINORS);
128         }
129
130 done:
131         return ret;
132 }
133
134 void dev_cleanup(void)
135 {
136         if (class) {
137                 class_destroy(class);
138                 class = NULL;
139         }
140
141         unregister_chrdev_region(hfi1_dev, HFI1_NMINORS);
142 }