blob: b1c3198355e7667f77cc7eba87c779eea81a535a [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +02002/*
3 * Industry-pack bus support functions.
4 *
Samuel Iglesias Gonsalvez76859722012-11-16 16:19:58 +01005 * Copyright (C) 2011-2012 CERN (www.cern.ch)
6 * Author: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +02007 */
8
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +02009#include <linux/module.h>
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +020010#include <linux/slab.h>
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +020011#include <linux/idr.h>
Johan Meiring0a8f4a02012-11-11 22:41:12 +020012#include <linux/io.h>
Samuel Iglesias Gonsalvez7dbce022012-11-16 19:33:45 +010013#include <linux/ipack.h>
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020014
15#define to_ipack_dev(device) container_of(device, struct ipack_device, dev)
16#define to_ipack_driver(drv) container_of(drv, struct ipack_driver, driver)
17
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +020018static DEFINE_IDA(ipack_ida);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020019
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +020020static void ipack_device_release(struct device *dev)
21{
22 struct ipack_device *device = to_ipack_dev(dev);
Jens Taprogge187e4782012-09-04 17:01:14 +020023 kfree(device->id);
Jens Taprogge1e917952012-09-27 12:37:26 +020024 device->release(device);
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +020025}
26
Jens Taprogge4aa09d42012-09-04 17:01:19 +020027static inline const struct ipack_device_id *
28ipack_match_one_device(const struct ipack_device_id *id,
29 const struct ipack_device *device)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020030{
Jens Taprogge5948ae22012-09-07 10:29:19 +020031 if ((id->format == IPACK_ANY_FORMAT ||
32 id->format == device->id_format) &&
Jens Taprogge4aa09d42012-09-04 17:01:19 +020033 (id->vendor == IPACK_ANY_ID || id->vendor == device->id_vendor) &&
34 (id->device == IPACK_ANY_ID || id->device == device->id_device))
35 return id;
36 return NULL;
37}
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020038
Jens Taprogge4aa09d42012-09-04 17:01:19 +020039static const struct ipack_device_id *
40ipack_match_id(const struct ipack_device_id *ids, struct ipack_device *idev)
41{
42 if (ids) {
43 while (ids->vendor || ids->device) {
44 if (ipack_match_one_device(ids, idev))
45 return ids;
46 ids++;
47 }
48 }
49 return NULL;
50}
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020051
Jens Taprogge4aa09d42012-09-04 17:01:19 +020052static int ipack_bus_match(struct device *dev, struct device_driver *drv)
53{
54 struct ipack_device *idev = to_ipack_dev(dev);
55 struct ipack_driver *idrv = to_ipack_driver(drv);
56 const struct ipack_device_id *found_id;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020057
Jens Taprogge4aa09d42012-09-04 17:01:19 +020058 found_id = ipack_match_id(idrv->id_table, idev);
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020059 return found_id ? 1 : 0;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020060}
61
62static int ipack_bus_probe(struct device *device)
63{
64 struct ipack_device *dev = to_ipack_dev(device);
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020065 struct ipack_driver *drv = to_ipack_driver(device->driver);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020066
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020067 return drv->ops->probe(dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020068}
69
Uwe Kleine-Königfc7a6202021-07-13 21:35:22 +020070static void ipack_bus_remove(struct device *device)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020071{
72 struct ipack_device *dev = to_ipack_dev(device);
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020073 struct ipack_driver *drv = to_ipack_driver(device->driver);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020074
Uwe Kleine-König609cf092021-02-07 22:55:56 +010075 if (drv->ops->remove)
76 drv->ops->remove(dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020077}
78
Jens Taprogge35eb97b2012-09-04 17:01:20 +020079static int ipack_uevent(struct device *dev, struct kobj_uevent_env *env)
80{
81 struct ipack_device *idev;
82
83 if (!dev)
84 return -ENODEV;
85
86 idev = to_ipack_dev(dev);
87
88 if (add_uevent_var(env,
89 "MODALIAS=ipack:f%02Xv%08Xd%08X", idev->id_format,
90 idev->id_vendor, idev->id_device))
91 return -ENOMEM;
92
93 return 0;
94}
95
Jens Taproggee8ed3272012-09-04 17:01:15 +020096#define ipack_device_attr(field, format_string) \
97static ssize_t \
98field##_show(struct device *dev, struct device_attribute *attr, \
99 char *buf) \
100{ \
101 struct ipack_device *idev = to_ipack_dev(dev); \
102 return sprintf(buf, format_string, idev->field); \
103}
104
Jens Taprogge5d72c8482012-09-04 17:01:21 +0200105static ssize_t id_show(struct device *dev,
106 struct device_attribute *attr, char *buf)
107{
108 unsigned int i, c, l, s;
109 struct ipack_device *idev = to_ipack_dev(dev);
110
111
112 switch (idev->id_format) {
113 case IPACK_ID_VERSION_1:
114 l = 0x7; s = 1; break;
115 case IPACK_ID_VERSION_2:
116 l = 0xf; s = 2; break;
117 default:
118 return -EIO;
119 }
120 c = 0;
121 for (i = 0; i < idev->id_avail; i++) {
122 if (i > 0) {
123 if ((i & l) == 0)
124 buf[c++] = '\n';
125 else if ((i & s) == 0)
126 buf[c++] = ' ';
127 }
128 sprintf(&buf[c], "%02x", idev->id[i]);
129 c += 2;
130 }
131 buf[c++] = '\n';
132 return c;
133}
134
Jens Taproggee8ed3272012-09-04 17:01:15 +0200135static ssize_t
136id_vendor_show(struct device *dev, struct device_attribute *attr, char *buf)
137{
138 struct ipack_device *idev = to_ipack_dev(dev);
139 switch (idev->id_format) {
140 case IPACK_ID_VERSION_1:
141 return sprintf(buf, "0x%02x\n", idev->id_vendor);
142 case IPACK_ID_VERSION_2:
143 return sprintf(buf, "0x%06x\n", idev->id_vendor);
144 default:
145 return -EIO;
146 }
147}
148
149static ssize_t
150id_device_show(struct device *dev, struct device_attribute *attr, char *buf)
151{
152 struct ipack_device *idev = to_ipack_dev(dev);
153 switch (idev->id_format) {
154 case IPACK_ID_VERSION_1:
155 return sprintf(buf, "0x%02x\n", idev->id_device);
156 case IPACK_ID_VERSION_2:
157 return sprintf(buf, "0x%04x\n", idev->id_device);
158 default:
159 return -EIO;
160 }
161}
162
Jens Taprogge35eb97b2012-09-04 17:01:20 +0200163static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
164 char *buf)
165{
166 struct ipack_device *idev = to_ipack_dev(dev);
167
168 return sprintf(buf, "ipac:f%02Xv%08Xd%08X", idev->id_format,
169 idev->id_vendor, idev->id_device);
170}
171
Uwe Kleine-König91055852016-10-27 17:47:07 -0700172ipack_device_attr(id_format, "0x%hhx\n");
Jens Taproggee8ed3272012-09-04 17:01:15 +0200173
Greg Kroah-Hartman5152a502013-10-07 18:27:36 -0700174static DEVICE_ATTR_RO(id);
175static DEVICE_ATTR_RO(id_device);
176static DEVICE_ATTR_RO(id_format);
177static DEVICE_ATTR_RO(id_vendor);
178static DEVICE_ATTR_RO(modalias);
179
180static struct attribute *ipack_attrs[] = {
181 &dev_attr_id.attr,
182 &dev_attr_id_device.attr,
183 &dev_attr_id_format.attr,
184 &dev_attr_id_vendor.attr,
185 &dev_attr_modalias.attr,
186 NULL,
Jens Taproggee8ed3272012-09-04 17:01:15 +0200187};
Greg Kroah-Hartman5152a502013-10-07 18:27:36 -0700188ATTRIBUTE_GROUPS(ipack);
Jens Taproggee8ed3272012-09-04 17:01:15 +0200189
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200190static struct bus_type ipack_bus_type = {
Jens Taproggee8ed3272012-09-04 17:01:15 +0200191 .name = "ipack",
192 .probe = ipack_bus_probe,
193 .match = ipack_bus_match,
194 .remove = ipack_bus_remove,
Greg Kroah-Hartman5152a502013-10-07 18:27:36 -0700195 .dev_groups = ipack_groups,
Jens Taprogge35eb97b2012-09-04 17:01:20 +0200196 .uevent = ipack_uevent,
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200197};
198
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200199struct ipack_bus_device *ipack_bus_register(struct device *parent, int slots,
Federico Vaga36c53b32014-09-02 17:31:40 +0200200 const struct ipack_bus_ops *ops,
201 struct module *owner)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200202{
203 int bus_nr;
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200204 struct ipack_bus_device *bus;
205
Markus Elfringff35eb22017-05-15 11:08:10 +0200206 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200207 if (!bus)
208 return NULL;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200209
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200210 bus_nr = ida_simple_get(&ipack_ida, 0, 0, GFP_KERNEL);
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200211 if (bus_nr < 0) {
212 kfree(bus);
213 return NULL;
214 }
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200215
216 bus->bus_nr = bus_nr;
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200217 bus->parent = parent;
218 bus->slots = slots;
219 bus->ops = ops;
Federico Vaga36c53b32014-09-02 17:31:40 +0200220 bus->owner = owner;
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200221 return bus;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200222}
223EXPORT_SYMBOL_GPL(ipack_bus_register);
224
Samuel Iglesias Gonsálvezbffe0fd2012-09-11 13:35:09 +0200225static int ipack_unregister_bus_member(struct device *dev, void *data)
226{
227 struct ipack_device *idev = to_ipack_dev(dev);
228 struct ipack_bus_device *bus = data;
229
Jens Taproggef9e314d2012-09-27 12:37:25 +0200230 if (idev->bus == bus)
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100231 ipack_device_del(idev);
Samuel Iglesias Gonsálvezbffe0fd2012-09-11 13:35:09 +0200232
233 return 1;
234}
235
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200236int ipack_bus_unregister(struct ipack_bus_device *bus)
237{
Johan Meiring0a8f4a02012-11-11 22:41:12 +0200238 bus_for_each_dev(&ipack_bus_type, NULL, bus,
239 ipack_unregister_bus_member);
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200240 ida_simple_remove(&ipack_ida, bus->bus_nr);
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200241 kfree(bus);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200242 return 0;
243}
244EXPORT_SYMBOL_GPL(ipack_bus_unregister);
245
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200246int ipack_driver_register(struct ipack_driver *edrv, struct module *owner,
Stephen Hemminger9869a9372012-09-10 11:14:01 -0700247 const char *name)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200248{
Uwe Kleine-Königc31d32b2021-02-07 22:55:55 +0100249 if (!edrv->ops->probe)
250 return -EINVAL;
251
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200252 edrv->driver.owner = owner;
253 edrv->driver.name = name;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200254 edrv->driver.bus = &ipack_bus_type;
255 return driver_register(&edrv->driver);
256}
257EXPORT_SYMBOL_GPL(ipack_driver_register);
258
259void ipack_driver_unregister(struct ipack_driver *edrv)
260{
261 driver_unregister(&edrv->driver);
262}
263EXPORT_SYMBOL_GPL(ipack_driver_unregister);
264
Jens Taproggea92caeb2012-09-11 13:35:03 +0200265static u16 ipack_crc_byte(u16 crc, u8 c)
266{
267 int i;
268
269 crc ^= c << 8;
270 for (i = 0; i < 8; i++)
271 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x1021 : 0);
272 return crc;
273}
274
275/*
276 * The algorithm in lib/crc-ccitt.c does not seem to apply since it uses the
277 * opposite bit ordering.
278 */
279static u8 ipack_calc_crc1(struct ipack_device *dev)
280{
281 u8 c;
282 u16 crc;
283 unsigned int i;
284
285 crc = 0xffff;
286 for (i = 0; i < dev->id_avail; i++) {
287 c = (i != 11) ? dev->id[i] : 0;
288 crc = ipack_crc_byte(crc, c);
289 }
290 crc = ~crc;
291 return crc & 0xff;
292}
293
294static u16 ipack_calc_crc2(struct ipack_device *dev)
295{
296 u8 c;
297 u16 crc;
298 unsigned int i;
299
300 crc = 0xffff;
301 for (i = 0; i < dev->id_avail; i++) {
302 c = ((i != 0x18) && (i != 0x19)) ? dev->id[i] : 0;
303 crc = ipack_crc_byte(crc, c);
304 }
305 crc = ~crc;
306 return crc;
307}
308
Jens Taproggee8ed3272012-09-04 17:01:15 +0200309static void ipack_parse_id1(struct ipack_device *dev)
310{
311 u8 *id = dev->id;
Jens Taproggea92caeb2012-09-11 13:35:03 +0200312 u8 crc;
Jens Taproggee8ed3272012-09-04 17:01:15 +0200313
314 dev->id_vendor = id[4];
315 dev->id_device = id[5];
Jens Taprogge0b0f3a12012-09-11 13:34:57 +0200316 dev->speed_8mhz = 1;
317 dev->speed_32mhz = (id[7] == 'H');
Jens Taproggea92caeb2012-09-11 13:35:03 +0200318 crc = ipack_calc_crc1(dev);
319 dev->id_crc_correct = (crc == id[11]);
320 if (!dev->id_crc_correct) {
321 dev_warn(&dev->dev, "ID CRC invalid found 0x%x, expected 0x%x.\n",
322 id[11], crc);
323 }
Jens Taproggee8ed3272012-09-04 17:01:15 +0200324}
325
326static void ipack_parse_id2(struct ipack_device *dev)
327{
328 __be16 *id = (__be16 *) dev->id;
Jens Taproggea92caeb2012-09-11 13:35:03 +0200329 u16 flags, crc;
Jens Taproggee8ed3272012-09-04 17:01:15 +0200330
331 dev->id_vendor = ((be16_to_cpu(id[3]) & 0xff) << 16)
332 + be16_to_cpu(id[4]);
333 dev->id_device = be16_to_cpu(id[5]);
Jens Taprogge0b0f3a12012-09-11 13:34:57 +0200334 flags = be16_to_cpu(id[10]);
335 dev->speed_8mhz = !!(flags & 2);
336 dev->speed_32mhz = !!(flags & 4);
Jens Taproggea92caeb2012-09-11 13:35:03 +0200337 crc = ipack_calc_crc2(dev);
338 dev->id_crc_correct = (crc == be16_to_cpu(id[12]));
339 if (!dev->id_crc_correct) {
340 dev_warn(&dev->dev, "ID CRC invalid found 0x%x, expected 0x%x.\n",
341 id[11], crc);
342 }
Jens Taproggee8ed3272012-09-04 17:01:15 +0200343}
344
Jens Taprogge187e4782012-09-04 17:01:14 +0200345static int ipack_device_read_id(struct ipack_device *dev)
346{
347 u8 __iomem *idmem;
348 int i;
349 int ret = 0;
350
Jens Taprogge402228d2012-09-27 12:37:34 +0200351 idmem = ioremap(dev->region[IPACK_ID_SPACE].start,
352 dev->region[IPACK_ID_SPACE].size);
353 if (!idmem) {
Jens Taprogge187e4782012-09-04 17:01:14 +0200354 dev_err(&dev->dev, "error mapping memory\n");
Samuel Iglesias Gonsalvez58b2c0c2012-09-27 12:37:41 +0200355 return -ENOMEM;
Jens Taprogge187e4782012-09-04 17:01:14 +0200356 }
Jens Taprogge187e4782012-09-04 17:01:14 +0200357
358 /* Determine ID PROM Data Format. If we find the ids "IPAC" or "IPAH"
359 * we are dealing with a IndustryPack format 1 device. If we detect
360 * "VITA4 " (16 bit big endian formatted) we are dealing with a
361 * IndustryPack format 2 device */
362 if ((ioread8(idmem + 1) == 'I') &&
363 (ioread8(idmem + 3) == 'P') &&
364 (ioread8(idmem + 5) == 'A') &&
365 ((ioread8(idmem + 7) == 'C') ||
366 (ioread8(idmem + 7) == 'H'))) {
367 dev->id_format = IPACK_ID_VERSION_1;
368 dev->id_avail = ioread8(idmem + 0x15);
369 if ((dev->id_avail < 0x0c) || (dev->id_avail > 0x40)) {
370 dev_warn(&dev->dev, "invalid id size");
371 dev->id_avail = 0x0c;
372 }
373 } else if ((ioread8(idmem + 0) == 'I') &&
374 (ioread8(idmem + 1) == 'V') &&
375 (ioread8(idmem + 2) == 'A') &&
376 (ioread8(idmem + 3) == 'T') &&
377 (ioread8(idmem + 4) == ' ') &&
378 (ioread8(idmem + 5) == '4')) {
379 dev->id_format = IPACK_ID_VERSION_2;
380 dev->id_avail = ioread16be(idmem + 0x16);
381 if ((dev->id_avail < 0x1a) || (dev->id_avail > 0x40)) {
382 dev_warn(&dev->dev, "invalid id size");
383 dev->id_avail = 0x1a;
384 }
385 } else {
386 dev->id_format = IPACK_ID_VERSION_INVALID;
387 dev->id_avail = 0;
388 }
389
390 if (!dev->id_avail) {
391 ret = -ENODEV;
392 goto out;
393 }
394
395 /* Obtain the amount of memory required to store a copy of the complete
396 * ID ROM contents */
397 dev->id = kmalloc(dev->id_avail, GFP_KERNEL);
398 if (!dev->id) {
Jens Taprogge187e4782012-09-04 17:01:14 +0200399 ret = -ENOMEM;
400 goto out;
401 }
402 for (i = 0; i < dev->id_avail; i++) {
403 if (dev->id_format == IPACK_ID_VERSION_1)
404 dev->id[i] = ioread8(idmem + (i << 1) + 1);
405 else
406 dev->id[i] = ioread8(idmem + i);
407 }
408
Jens Taproggee8ed3272012-09-04 17:01:15 +0200409 /* now we can finally work with the copy */
410 switch (dev->id_format) {
411 case IPACK_ID_VERSION_1:
412 ipack_parse_id1(dev);
413 break;
414 case IPACK_ID_VERSION_2:
415 ipack_parse_id2(dev);
416 break;
417 }
418
Jens Taprogge187e4782012-09-04 17:01:14 +0200419out:
Jens Taprogge402228d2012-09-27 12:37:34 +0200420 iounmap(idmem);
Jens Taprogge187e4782012-09-04 17:01:14 +0200421
422 return ret;
423}
424
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100425int ipack_device_init(struct ipack_device *dev)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200426{
427 int ret;
428
429 dev->dev.bus = &ipack_bus_type;
430 dev->dev.release = ipack_device_release;
Jens Taprogge1e917952012-09-27 12:37:26 +0200431 dev->dev.parent = dev->bus->parent;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200432 dev_set_name(&dev->dev,
Jens Taproggef9e314d2012-09-27 12:37:25 +0200433 "ipack-dev.%u.%u", dev->bus->bus_nr, dev->slot);
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100434 device_initialize(&dev->dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200435
Jens Taprogge1e917952012-09-27 12:37:26 +0200436 if (dev->bus->ops->set_clockrate(dev, 8))
Jens Taprogge07766ab2012-09-11 13:35:01 +0200437 dev_warn(&dev->dev, "failed to switch to 8 MHz operation for reading of device ID.\n");
Jens Taprogge1e917952012-09-27 12:37:26 +0200438 if (dev->bus->ops->reset_timeout(dev))
Jens Taprogge8a3ae162012-09-11 13:35:02 +0200439 dev_warn(&dev->dev, "failed to reset potential timeout.");
Jens Taprogge07766ab2012-09-11 13:35:01 +0200440
Jens Taprogge187e4782012-09-04 17:01:14 +0200441 ret = ipack_device_read_id(dev);
442 if (ret < 0) {
443 dev_err(&dev->dev, "error reading device id section.\n");
Jens Taprogge1e917952012-09-27 12:37:26 +0200444 return ret;
Jens Taprogge187e4782012-09-04 17:01:14 +0200445 }
446
Jens Taprogge90cb6192012-09-11 13:34:58 +0200447 /* if the device supports 32 MHz operation, use it. */
Jens Taprogge07766ab2012-09-11 13:35:01 +0200448 if (dev->speed_32mhz) {
Jens Taprogge1e917952012-09-27 12:37:26 +0200449 ret = dev->bus->ops->set_clockrate(dev, 32);
Jens Taprogge07766ab2012-09-11 13:35:01 +0200450 if (ret < 0)
451 dev_err(&dev->dev, "failed to switch to 32 MHz operation.\n");
452 }
Jens Taprogge90cb6192012-09-11 13:34:58 +0200453
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100454 return 0;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200455}
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100456EXPORT_SYMBOL_GPL(ipack_device_init);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200457
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100458int ipack_device_add(struct ipack_device *dev)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200459{
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100460 return device_add(&dev->dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200461}
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100462EXPORT_SYMBOL_GPL(ipack_device_add);
463
464void ipack_device_del(struct ipack_device *dev)
465{
466 device_del(&dev->dev);
467 ipack_put_device(dev);
468}
469EXPORT_SYMBOL_GPL(ipack_device_del);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200470
Samuel Iglesias Gonsalvezfa882862013-03-08 09:21:46 +0100471void ipack_get_device(struct ipack_device *dev)
472{
473 get_device(&dev->dev);
474}
475EXPORT_SYMBOL_GPL(ipack_get_device);
476
477void ipack_put_device(struct ipack_device *dev)
478{
479 put_device(&dev->dev);
480}
481EXPORT_SYMBOL_GPL(ipack_put_device);
482
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200483static int __init ipack_init(void)
484{
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200485 ida_init(&ipack_ida);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200486 return bus_register(&ipack_bus_type);
487}
488
489static void __exit ipack_exit(void)
490{
491 bus_unregister(&ipack_bus_type);
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200492 ida_destroy(&ipack_ida);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200493}
494
495module_init(ipack_init);
496module_exit(ipack_exit);
497
498MODULE_AUTHOR("Samuel Iglesias Gonsalvez <siglesias@igalia.com>");
499MODULE_LICENSE("GPL");
500MODULE_DESCRIPTION("Industry-pack bus core");