blob: 6e066c53acce7fcd0fc5f36193f8b4c05a25ebb5 [file] [log] [blame]
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +02001/*
2 * Industry-pack bus support functions.
3 *
Samuel Iglesias Gonsalvez76859722012-11-16 16:19:58 +01004 * Copyright (C) 2011-2012 CERN (www.cern.ch)
5 * Author: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +02006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
Samuel Iglesias Gonsalvez416289b2012-05-11 10:17:13 +02009 * Software Foundation; version 2 of the License.
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020010 */
11
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020012#include <linux/module.h>
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +020013#include <linux/slab.h>
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +020014#include <linux/idr.h>
Johan Meiring0a8f4a02012-11-11 22:41:12 +020015#include <linux/io.h>
Samuel Iglesias Gonsalvez7dbce022012-11-16 19:33:45 +010016#include <linux/ipack.h>
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020017
18#define to_ipack_dev(device) container_of(device, struct ipack_device, dev)
19#define to_ipack_driver(drv) container_of(drv, struct ipack_driver, driver)
20
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +020021static DEFINE_IDA(ipack_ida);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020022
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +020023static void ipack_device_release(struct device *dev)
24{
25 struct ipack_device *device = to_ipack_dev(dev);
Jens Taprogge187e4782012-09-04 17:01:14 +020026 kfree(device->id);
Jens Taprogge1e917952012-09-27 12:37:26 +020027 device->release(device);
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +020028}
29
Jens Taprogge4aa09d42012-09-04 17:01:19 +020030static inline const struct ipack_device_id *
31ipack_match_one_device(const struct ipack_device_id *id,
32 const struct ipack_device *device)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020033{
Jens Taprogge5948ae22012-09-07 10:29:19 +020034 if ((id->format == IPACK_ANY_FORMAT ||
35 id->format == device->id_format) &&
Jens Taprogge4aa09d42012-09-04 17:01:19 +020036 (id->vendor == IPACK_ANY_ID || id->vendor == device->id_vendor) &&
37 (id->device == IPACK_ANY_ID || id->device == device->id_device))
38 return id;
39 return NULL;
40}
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020041
Jens Taprogge4aa09d42012-09-04 17:01:19 +020042static const struct ipack_device_id *
43ipack_match_id(const struct ipack_device_id *ids, struct ipack_device *idev)
44{
45 if (ids) {
46 while (ids->vendor || ids->device) {
47 if (ipack_match_one_device(ids, idev))
48 return ids;
49 ids++;
50 }
51 }
52 return NULL;
53}
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020054
Jens Taprogge4aa09d42012-09-04 17:01:19 +020055static int ipack_bus_match(struct device *dev, struct device_driver *drv)
56{
57 struct ipack_device *idev = to_ipack_dev(dev);
58 struct ipack_driver *idrv = to_ipack_driver(drv);
59 const struct ipack_device_id *found_id;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020060
Jens Taprogge4aa09d42012-09-04 17:01:19 +020061 found_id = ipack_match_id(idrv->id_table, idev);
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020062 return found_id ? 1 : 0;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020063}
64
65static int ipack_bus_probe(struct device *device)
66{
67 struct ipack_device *dev = to_ipack_dev(device);
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020068 struct ipack_driver *drv = to_ipack_driver(device->driver);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020069
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020070 if (!drv->ops->probe)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020071 return -EINVAL;
72
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020073 return drv->ops->probe(dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020074}
75
76static int ipack_bus_remove(struct device *device)
77{
78 struct ipack_device *dev = to_ipack_dev(device);
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020079 struct ipack_driver *drv = to_ipack_driver(device->driver);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020080
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020081 if (!drv->ops->remove)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020082 return -EINVAL;
83
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020084 drv->ops->remove(dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020085 return 0;
86}
87
Jens Taprogge35eb97b2012-09-04 17:01:20 +020088static int ipack_uevent(struct device *dev, struct kobj_uevent_env *env)
89{
90 struct ipack_device *idev;
91
92 if (!dev)
93 return -ENODEV;
94
95 idev = to_ipack_dev(dev);
96
97 if (add_uevent_var(env,
98 "MODALIAS=ipack:f%02Xv%08Xd%08X", idev->id_format,
99 idev->id_vendor, idev->id_device))
100 return -ENOMEM;
101
102 return 0;
103}
104
Jens Taproggee8ed3272012-09-04 17:01:15 +0200105#define ipack_device_attr(field, format_string) \
106static ssize_t \
107field##_show(struct device *dev, struct device_attribute *attr, \
108 char *buf) \
109{ \
110 struct ipack_device *idev = to_ipack_dev(dev); \
111 return sprintf(buf, format_string, idev->field); \
112}
113
Jens Taprogge5d72c8482012-09-04 17:01:21 +0200114static ssize_t id_show(struct device *dev,
115 struct device_attribute *attr, char *buf)
116{
117 unsigned int i, c, l, s;
118 struct ipack_device *idev = to_ipack_dev(dev);
119
120
121 switch (idev->id_format) {
122 case IPACK_ID_VERSION_1:
123 l = 0x7; s = 1; break;
124 case IPACK_ID_VERSION_2:
125 l = 0xf; s = 2; break;
126 default:
127 return -EIO;
128 }
129 c = 0;
130 for (i = 0; i < idev->id_avail; i++) {
131 if (i > 0) {
132 if ((i & l) == 0)
133 buf[c++] = '\n';
134 else if ((i & s) == 0)
135 buf[c++] = ' ';
136 }
137 sprintf(&buf[c], "%02x", idev->id[i]);
138 c += 2;
139 }
140 buf[c++] = '\n';
141 return c;
142}
143
Jens Taproggee8ed3272012-09-04 17:01:15 +0200144static ssize_t
145id_vendor_show(struct device *dev, struct device_attribute *attr, char *buf)
146{
147 struct ipack_device *idev = to_ipack_dev(dev);
148 switch (idev->id_format) {
149 case IPACK_ID_VERSION_1:
150 return sprintf(buf, "0x%02x\n", idev->id_vendor);
151 case IPACK_ID_VERSION_2:
152 return sprintf(buf, "0x%06x\n", idev->id_vendor);
153 default:
154 return -EIO;
155 }
156}
157
158static ssize_t
159id_device_show(struct device *dev, struct device_attribute *attr, char *buf)
160{
161 struct ipack_device *idev = to_ipack_dev(dev);
162 switch (idev->id_format) {
163 case IPACK_ID_VERSION_1:
164 return sprintf(buf, "0x%02x\n", idev->id_device);
165 case IPACK_ID_VERSION_2:
166 return sprintf(buf, "0x%04x\n", idev->id_device);
167 default:
168 return -EIO;
169 }
170}
171
Jens Taprogge35eb97b2012-09-04 17:01:20 +0200172static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
173 char *buf)
174{
175 struct ipack_device *idev = to_ipack_dev(dev);
176
177 return sprintf(buf, "ipac:f%02Xv%08Xd%08X", idev->id_format,
178 idev->id_vendor, idev->id_device);
179}
180
Jens Taproggee8ed3272012-09-04 17:01:15 +0200181ipack_device_attr(id_format, "0x%hhu\n");
182
183static struct device_attribute ipack_dev_attrs[] = {
Jens Taprogge5d72c8482012-09-04 17:01:21 +0200184 __ATTR_RO(id),
Jens Taproggee8ed3272012-09-04 17:01:15 +0200185 __ATTR_RO(id_device),
186 __ATTR_RO(id_format),
187 __ATTR_RO(id_vendor),
Jens Taprogge35eb97b2012-09-04 17:01:20 +0200188 __ATTR_RO(modalias),
Jens Taproggee8ed3272012-09-04 17:01:15 +0200189};
190
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200191static struct bus_type ipack_bus_type = {
Jens Taproggee8ed3272012-09-04 17:01:15 +0200192 .name = "ipack",
193 .probe = ipack_bus_probe,
194 .match = ipack_bus_match,
195 .remove = ipack_bus_remove,
196 .dev_attrs = ipack_dev_attrs,
Jens Taprogge35eb97b2012-09-04 17:01:20 +0200197 .uevent = ipack_uevent,
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200198};
199
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200200struct ipack_bus_device *ipack_bus_register(struct device *parent, int slots,
Stephen Hemminger9869a932012-09-10 11:14:01 -0700201 const struct ipack_bus_ops *ops)
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
206 bus = kzalloc(sizeof(struct ipack_bus_device), GFP_KERNEL);
207 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;
220 return bus;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200221}
222EXPORT_SYMBOL_GPL(ipack_bus_register);
223
Samuel Iglesias Gonsálvezbffe0fd2012-09-11 13:35:09 +0200224static int ipack_unregister_bus_member(struct device *dev, void *data)
225{
226 struct ipack_device *idev = to_ipack_dev(dev);
227 struct ipack_bus_device *bus = data;
228
Jens Taproggef9e314d2012-09-27 12:37:25 +0200229 if (idev->bus == bus)
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100230 ipack_device_del(idev);
Samuel Iglesias Gonsálvezbffe0fd2012-09-11 13:35:09 +0200231
232 return 1;
233}
234
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200235int ipack_bus_unregister(struct ipack_bus_device *bus)
236{
Johan Meiring0a8f4a02012-11-11 22:41:12 +0200237 bus_for_each_dev(&ipack_bus_type, NULL, bus,
238 ipack_unregister_bus_member);
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200239 ida_simple_remove(&ipack_ida, bus->bus_nr);
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200240 kfree(bus);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200241 return 0;
242}
243EXPORT_SYMBOL_GPL(ipack_bus_unregister);
244
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200245int ipack_driver_register(struct ipack_driver *edrv, struct module *owner,
Stephen Hemminger9869a932012-09-10 11:14:01 -0700246 const char *name)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200247{
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200248 edrv->driver.owner = owner;
249 edrv->driver.name = name;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200250 edrv->driver.bus = &ipack_bus_type;
251 return driver_register(&edrv->driver);
252}
253EXPORT_SYMBOL_GPL(ipack_driver_register);
254
255void ipack_driver_unregister(struct ipack_driver *edrv)
256{
257 driver_unregister(&edrv->driver);
258}
259EXPORT_SYMBOL_GPL(ipack_driver_unregister);
260
Jens Taproggea92caeb2012-09-11 13:35:03 +0200261static u16 ipack_crc_byte(u16 crc, u8 c)
262{
263 int i;
264
265 crc ^= c << 8;
266 for (i = 0; i < 8; i++)
267 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x1021 : 0);
268 return crc;
269}
270
271/*
272 * The algorithm in lib/crc-ccitt.c does not seem to apply since it uses the
273 * opposite bit ordering.
274 */
275static u8 ipack_calc_crc1(struct ipack_device *dev)
276{
277 u8 c;
278 u16 crc;
279 unsigned int i;
280
281 crc = 0xffff;
282 for (i = 0; i < dev->id_avail; i++) {
283 c = (i != 11) ? dev->id[i] : 0;
284 crc = ipack_crc_byte(crc, c);
285 }
286 crc = ~crc;
287 return crc & 0xff;
288}
289
290static u16 ipack_calc_crc2(struct ipack_device *dev)
291{
292 u8 c;
293 u16 crc;
294 unsigned int i;
295
296 crc = 0xffff;
297 for (i = 0; i < dev->id_avail; i++) {
298 c = ((i != 0x18) && (i != 0x19)) ? dev->id[i] : 0;
299 crc = ipack_crc_byte(crc, c);
300 }
301 crc = ~crc;
302 return crc;
303}
304
Jens Taproggee8ed3272012-09-04 17:01:15 +0200305static void ipack_parse_id1(struct ipack_device *dev)
306{
307 u8 *id = dev->id;
Jens Taproggea92caeb2012-09-11 13:35:03 +0200308 u8 crc;
Jens Taproggee8ed3272012-09-04 17:01:15 +0200309
310 dev->id_vendor = id[4];
311 dev->id_device = id[5];
Jens Taprogge0b0f3a12012-09-11 13:34:57 +0200312 dev->speed_8mhz = 1;
313 dev->speed_32mhz = (id[7] == 'H');
Jens Taproggea92caeb2012-09-11 13:35:03 +0200314 crc = ipack_calc_crc1(dev);
315 dev->id_crc_correct = (crc == id[11]);
316 if (!dev->id_crc_correct) {
317 dev_warn(&dev->dev, "ID CRC invalid found 0x%x, expected 0x%x.\n",
318 id[11], crc);
319 }
Jens Taproggee8ed3272012-09-04 17:01:15 +0200320}
321
322static void ipack_parse_id2(struct ipack_device *dev)
323{
324 __be16 *id = (__be16 *) dev->id;
Jens Taproggea92caeb2012-09-11 13:35:03 +0200325 u16 flags, crc;
Jens Taproggee8ed3272012-09-04 17:01:15 +0200326
327 dev->id_vendor = ((be16_to_cpu(id[3]) & 0xff) << 16)
328 + be16_to_cpu(id[4]);
329 dev->id_device = be16_to_cpu(id[5]);
Jens Taprogge0b0f3a12012-09-11 13:34:57 +0200330 flags = be16_to_cpu(id[10]);
331 dev->speed_8mhz = !!(flags & 2);
332 dev->speed_32mhz = !!(flags & 4);
Jens Taproggea92caeb2012-09-11 13:35:03 +0200333 crc = ipack_calc_crc2(dev);
334 dev->id_crc_correct = (crc == be16_to_cpu(id[12]));
335 if (!dev->id_crc_correct) {
336 dev_warn(&dev->dev, "ID CRC invalid found 0x%x, expected 0x%x.\n",
337 id[11], crc);
338 }
Jens Taproggee8ed3272012-09-04 17:01:15 +0200339}
340
Jens Taprogge187e4782012-09-04 17:01:14 +0200341static int ipack_device_read_id(struct ipack_device *dev)
342{
343 u8 __iomem *idmem;
344 int i;
345 int ret = 0;
346
Jens Taprogge402228d2012-09-27 12:37:34 +0200347 idmem = ioremap(dev->region[IPACK_ID_SPACE].start,
348 dev->region[IPACK_ID_SPACE].size);
349 if (!idmem) {
Jens Taprogge187e4782012-09-04 17:01:14 +0200350 dev_err(&dev->dev, "error mapping memory\n");
Samuel Iglesias Gonsalvez58b2c0c2012-09-27 12:37:41 +0200351 return -ENOMEM;
Jens Taprogge187e4782012-09-04 17:01:14 +0200352 }
Jens Taprogge187e4782012-09-04 17:01:14 +0200353
354 /* Determine ID PROM Data Format. If we find the ids "IPAC" or "IPAH"
355 * we are dealing with a IndustryPack format 1 device. If we detect
356 * "VITA4 " (16 bit big endian formatted) we are dealing with a
357 * IndustryPack format 2 device */
358 if ((ioread8(idmem + 1) == 'I') &&
359 (ioread8(idmem + 3) == 'P') &&
360 (ioread8(idmem + 5) == 'A') &&
361 ((ioread8(idmem + 7) == 'C') ||
362 (ioread8(idmem + 7) == 'H'))) {
363 dev->id_format = IPACK_ID_VERSION_1;
364 dev->id_avail = ioread8(idmem + 0x15);
365 if ((dev->id_avail < 0x0c) || (dev->id_avail > 0x40)) {
366 dev_warn(&dev->dev, "invalid id size");
367 dev->id_avail = 0x0c;
368 }
369 } else if ((ioread8(idmem + 0) == 'I') &&
370 (ioread8(idmem + 1) == 'V') &&
371 (ioread8(idmem + 2) == 'A') &&
372 (ioread8(idmem + 3) == 'T') &&
373 (ioread8(idmem + 4) == ' ') &&
374 (ioread8(idmem + 5) == '4')) {
375 dev->id_format = IPACK_ID_VERSION_2;
376 dev->id_avail = ioread16be(idmem + 0x16);
377 if ((dev->id_avail < 0x1a) || (dev->id_avail > 0x40)) {
378 dev_warn(&dev->dev, "invalid id size");
379 dev->id_avail = 0x1a;
380 }
381 } else {
382 dev->id_format = IPACK_ID_VERSION_INVALID;
383 dev->id_avail = 0;
384 }
385
386 if (!dev->id_avail) {
387 ret = -ENODEV;
388 goto out;
389 }
390
391 /* Obtain the amount of memory required to store a copy of the complete
392 * ID ROM contents */
393 dev->id = kmalloc(dev->id_avail, GFP_KERNEL);
394 if (!dev->id) {
395 dev_err(&dev->dev, "dev->id alloc failed.\n");
396 ret = -ENOMEM;
397 goto out;
398 }
399 for (i = 0; i < dev->id_avail; i++) {
400 if (dev->id_format == IPACK_ID_VERSION_1)
401 dev->id[i] = ioread8(idmem + (i << 1) + 1);
402 else
403 dev->id[i] = ioread8(idmem + i);
404 }
405
Jens Taproggee8ed3272012-09-04 17:01:15 +0200406 /* now we can finally work with the copy */
407 switch (dev->id_format) {
408 case IPACK_ID_VERSION_1:
409 ipack_parse_id1(dev);
410 break;
411 case IPACK_ID_VERSION_2:
412 ipack_parse_id2(dev);
413 break;
414 }
415
Jens Taprogge187e4782012-09-04 17:01:14 +0200416out:
Jens Taprogge402228d2012-09-27 12:37:34 +0200417 iounmap(idmem);
Jens Taprogge187e4782012-09-04 17:01:14 +0200418
419 return ret;
420}
421
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100422int ipack_device_init(struct ipack_device *dev)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200423{
424 int ret;
425
426 dev->dev.bus = &ipack_bus_type;
427 dev->dev.release = ipack_device_release;
Jens Taprogge1e917952012-09-27 12:37:26 +0200428 dev->dev.parent = dev->bus->parent;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200429 dev_set_name(&dev->dev,
Jens Taproggef9e314d2012-09-27 12:37:25 +0200430 "ipack-dev.%u.%u", dev->bus->bus_nr, dev->slot);
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100431 device_initialize(&dev->dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200432
Jens Taprogge1e917952012-09-27 12:37:26 +0200433 if (dev->bus->ops->set_clockrate(dev, 8))
Jens Taprogge07766ab2012-09-11 13:35:01 +0200434 dev_warn(&dev->dev, "failed to switch to 8 MHz operation for reading of device ID.\n");
Jens Taprogge1e917952012-09-27 12:37:26 +0200435 if (dev->bus->ops->reset_timeout(dev))
Jens Taprogge8a3ae162012-09-11 13:35:02 +0200436 dev_warn(&dev->dev, "failed to reset potential timeout.");
Jens Taprogge07766ab2012-09-11 13:35:01 +0200437
Jens Taprogge187e4782012-09-04 17:01:14 +0200438 ret = ipack_device_read_id(dev);
439 if (ret < 0) {
440 dev_err(&dev->dev, "error reading device id section.\n");
Jens Taprogge1e917952012-09-27 12:37:26 +0200441 return ret;
Jens Taprogge187e4782012-09-04 17:01:14 +0200442 }
443
Jens Taprogge90cb6192012-09-11 13:34:58 +0200444 /* if the device supports 32 MHz operation, use it. */
Jens Taprogge07766ab2012-09-11 13:35:01 +0200445 if (dev->speed_32mhz) {
Jens Taprogge1e917952012-09-27 12:37:26 +0200446 ret = dev->bus->ops->set_clockrate(dev, 32);
Jens Taprogge07766ab2012-09-11 13:35:01 +0200447 if (ret < 0)
448 dev_err(&dev->dev, "failed to switch to 32 MHz operation.\n");
449 }
Jens Taprogge90cb6192012-09-11 13:34:58 +0200450
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100451 return 0;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200452}
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100453EXPORT_SYMBOL_GPL(ipack_device_init);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200454
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100455int ipack_device_add(struct ipack_device *dev)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200456{
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100457 return device_add(&dev->dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200458}
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100459EXPORT_SYMBOL_GPL(ipack_device_add);
460
461void ipack_device_del(struct ipack_device *dev)
462{
463 device_del(&dev->dev);
464 ipack_put_device(dev);
465}
466EXPORT_SYMBOL_GPL(ipack_device_del);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200467
Samuel Iglesias Gonsalvezfa882862013-03-08 09:21:46 +0100468void ipack_get_device(struct ipack_device *dev)
469{
470 get_device(&dev->dev);
471}
472EXPORT_SYMBOL_GPL(ipack_get_device);
473
474void ipack_put_device(struct ipack_device *dev)
475{
476 put_device(&dev->dev);
477}
478EXPORT_SYMBOL_GPL(ipack_put_device);
479
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200480static int __init ipack_init(void)
481{
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200482 ida_init(&ipack_ida);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200483 return bus_register(&ipack_bus_type);
484}
485
486static void __exit ipack_exit(void)
487{
488 bus_unregister(&ipack_bus_type);
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200489 ida_destroy(&ipack_ida);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200490}
491
492module_init(ipack_init);
493module_exit(ipack_exit);
494
495MODULE_AUTHOR("Samuel Iglesias Gonsalvez <siglesias@igalia.com>");
496MODULE_LICENSE("GPL");
497MODULE_DESCRIPTION("Industry-pack bus core");