blob: 9267a85fee18685c4a54efd6394c2b5a6b4b2822 [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 if (!drv->ops->probe)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020068 return -EINVAL;
69
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020070 return drv->ops->probe(dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020071}
72
73static int ipack_bus_remove(struct device *device)
74{
75 struct ipack_device *dev = to_ipack_dev(device);
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020076 struct ipack_driver *drv = to_ipack_driver(device->driver);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020077
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020078 if (!drv->ops->remove)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020079 return -EINVAL;
80
Jens Taprogge3bea7fc2012-09-11 13:34:59 +020081 drv->ops->remove(dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +020082 return 0;
83}
84
Jens Taprogge35eb97b2012-09-04 17:01:20 +020085static int ipack_uevent(struct device *dev, struct kobj_uevent_env *env)
86{
87 struct ipack_device *idev;
88
89 if (!dev)
90 return -ENODEV;
91
92 idev = to_ipack_dev(dev);
93
94 if (add_uevent_var(env,
95 "MODALIAS=ipack:f%02Xv%08Xd%08X", idev->id_format,
96 idev->id_vendor, idev->id_device))
97 return -ENOMEM;
98
99 return 0;
100}
101
Jens Taproggee8ed3272012-09-04 17:01:15 +0200102#define ipack_device_attr(field, format_string) \
103static ssize_t \
104field##_show(struct device *dev, struct device_attribute *attr, \
105 char *buf) \
106{ \
107 struct ipack_device *idev = to_ipack_dev(dev); \
108 return sprintf(buf, format_string, idev->field); \
109}
110
Jens Taprogge5d72c8482012-09-04 17:01:21 +0200111static ssize_t id_show(struct device *dev,
112 struct device_attribute *attr, char *buf)
113{
114 unsigned int i, c, l, s;
115 struct ipack_device *idev = to_ipack_dev(dev);
116
117
118 switch (idev->id_format) {
119 case IPACK_ID_VERSION_1:
120 l = 0x7; s = 1; break;
121 case IPACK_ID_VERSION_2:
122 l = 0xf; s = 2; break;
123 default:
124 return -EIO;
125 }
126 c = 0;
127 for (i = 0; i < idev->id_avail; i++) {
128 if (i > 0) {
129 if ((i & l) == 0)
130 buf[c++] = '\n';
131 else if ((i & s) == 0)
132 buf[c++] = ' ';
133 }
134 sprintf(&buf[c], "%02x", idev->id[i]);
135 c += 2;
136 }
137 buf[c++] = '\n';
138 return c;
139}
140
Jens Taproggee8ed3272012-09-04 17:01:15 +0200141static ssize_t
142id_vendor_show(struct device *dev, struct device_attribute *attr, char *buf)
143{
144 struct ipack_device *idev = to_ipack_dev(dev);
145 switch (idev->id_format) {
146 case IPACK_ID_VERSION_1:
147 return sprintf(buf, "0x%02x\n", idev->id_vendor);
148 case IPACK_ID_VERSION_2:
149 return sprintf(buf, "0x%06x\n", idev->id_vendor);
150 default:
151 return -EIO;
152 }
153}
154
155static ssize_t
156id_device_show(struct device *dev, struct device_attribute *attr, char *buf)
157{
158 struct ipack_device *idev = to_ipack_dev(dev);
159 switch (idev->id_format) {
160 case IPACK_ID_VERSION_1:
161 return sprintf(buf, "0x%02x\n", idev->id_device);
162 case IPACK_ID_VERSION_2:
163 return sprintf(buf, "0x%04x\n", idev->id_device);
164 default:
165 return -EIO;
166 }
167}
168
Jens Taprogge35eb97b2012-09-04 17:01:20 +0200169static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
170 char *buf)
171{
172 struct ipack_device *idev = to_ipack_dev(dev);
173
174 return sprintf(buf, "ipac:f%02Xv%08Xd%08X", idev->id_format,
175 idev->id_vendor, idev->id_device);
176}
177
Uwe Kleine-König91055852016-10-27 17:47:07 -0700178ipack_device_attr(id_format, "0x%hhx\n");
Jens Taproggee8ed3272012-09-04 17:01:15 +0200179
Greg Kroah-Hartman5152a502013-10-07 18:27:36 -0700180static DEVICE_ATTR_RO(id);
181static DEVICE_ATTR_RO(id_device);
182static DEVICE_ATTR_RO(id_format);
183static DEVICE_ATTR_RO(id_vendor);
184static DEVICE_ATTR_RO(modalias);
185
186static struct attribute *ipack_attrs[] = {
187 &dev_attr_id.attr,
188 &dev_attr_id_device.attr,
189 &dev_attr_id_format.attr,
190 &dev_attr_id_vendor.attr,
191 &dev_attr_modalias.attr,
192 NULL,
Jens Taproggee8ed3272012-09-04 17:01:15 +0200193};
Greg Kroah-Hartman5152a502013-10-07 18:27:36 -0700194ATTRIBUTE_GROUPS(ipack);
Jens Taproggee8ed3272012-09-04 17:01:15 +0200195
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200196static struct bus_type ipack_bus_type = {
Jens Taproggee8ed3272012-09-04 17:01:15 +0200197 .name = "ipack",
198 .probe = ipack_bus_probe,
199 .match = ipack_bus_match,
200 .remove = ipack_bus_remove,
Greg Kroah-Hartman5152a502013-10-07 18:27:36 -0700201 .dev_groups = ipack_groups,
Jens Taprogge35eb97b2012-09-04 17:01:20 +0200202 .uevent = ipack_uevent,
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200203};
204
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200205struct ipack_bus_device *ipack_bus_register(struct device *parent, int slots,
Federico Vaga36c53b32014-09-02 17:31:40 +0200206 const struct ipack_bus_ops *ops,
207 struct module *owner)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200208{
209 int bus_nr;
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200210 struct ipack_bus_device *bus;
211
Markus Elfringff35eb22017-05-15 11:08:10 +0200212 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200213 if (!bus)
214 return NULL;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200215
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200216 bus_nr = ida_simple_get(&ipack_ida, 0, 0, GFP_KERNEL);
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200217 if (bus_nr < 0) {
218 kfree(bus);
219 return NULL;
220 }
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200221
222 bus->bus_nr = bus_nr;
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200223 bus->parent = parent;
224 bus->slots = slots;
225 bus->ops = ops;
Federico Vaga36c53b32014-09-02 17:31:40 +0200226 bus->owner = owner;
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200227 return bus;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200228}
229EXPORT_SYMBOL_GPL(ipack_bus_register);
230
Samuel Iglesias Gonsálvezbffe0fd2012-09-11 13:35:09 +0200231static int ipack_unregister_bus_member(struct device *dev, void *data)
232{
233 struct ipack_device *idev = to_ipack_dev(dev);
234 struct ipack_bus_device *bus = data;
235
Jens Taproggef9e314d2012-09-27 12:37:25 +0200236 if (idev->bus == bus)
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100237 ipack_device_del(idev);
Samuel Iglesias Gonsálvezbffe0fd2012-09-11 13:35:09 +0200238
239 return 1;
240}
241
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200242int ipack_bus_unregister(struct ipack_bus_device *bus)
243{
Johan Meiring0a8f4a02012-11-11 22:41:12 +0200244 bus_for_each_dev(&ipack_bus_type, NULL, bus,
245 ipack_unregister_bus_member);
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200246 ida_simple_remove(&ipack_ida, bus->bus_nr);
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200247 kfree(bus);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200248 return 0;
249}
250EXPORT_SYMBOL_GPL(ipack_bus_unregister);
251
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200252int ipack_driver_register(struct ipack_driver *edrv, struct module *owner,
Stephen Hemminger9869a9372012-09-10 11:14:01 -0700253 const char *name)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200254{
Samuel Iglesias Gonsalvezec440332012-05-18 11:10:05 +0200255 edrv->driver.owner = owner;
256 edrv->driver.name = name;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200257 edrv->driver.bus = &ipack_bus_type;
258 return driver_register(&edrv->driver);
259}
260EXPORT_SYMBOL_GPL(ipack_driver_register);
261
262void ipack_driver_unregister(struct ipack_driver *edrv)
263{
264 driver_unregister(&edrv->driver);
265}
266EXPORT_SYMBOL_GPL(ipack_driver_unregister);
267
Jens Taproggea92caeb2012-09-11 13:35:03 +0200268static u16 ipack_crc_byte(u16 crc, u8 c)
269{
270 int i;
271
272 crc ^= c << 8;
273 for (i = 0; i < 8; i++)
274 crc = (crc << 1) ^ ((crc & 0x8000) ? 0x1021 : 0);
275 return crc;
276}
277
278/*
279 * The algorithm in lib/crc-ccitt.c does not seem to apply since it uses the
280 * opposite bit ordering.
281 */
282static u8 ipack_calc_crc1(struct ipack_device *dev)
283{
284 u8 c;
285 u16 crc;
286 unsigned int i;
287
288 crc = 0xffff;
289 for (i = 0; i < dev->id_avail; i++) {
290 c = (i != 11) ? dev->id[i] : 0;
291 crc = ipack_crc_byte(crc, c);
292 }
293 crc = ~crc;
294 return crc & 0xff;
295}
296
297static u16 ipack_calc_crc2(struct ipack_device *dev)
298{
299 u8 c;
300 u16 crc;
301 unsigned int i;
302
303 crc = 0xffff;
304 for (i = 0; i < dev->id_avail; i++) {
305 c = ((i != 0x18) && (i != 0x19)) ? dev->id[i] : 0;
306 crc = ipack_crc_byte(crc, c);
307 }
308 crc = ~crc;
309 return crc;
310}
311
Jens Taproggee8ed3272012-09-04 17:01:15 +0200312static void ipack_parse_id1(struct ipack_device *dev)
313{
314 u8 *id = dev->id;
Jens Taproggea92caeb2012-09-11 13:35:03 +0200315 u8 crc;
Jens Taproggee8ed3272012-09-04 17:01:15 +0200316
317 dev->id_vendor = id[4];
318 dev->id_device = id[5];
Jens Taprogge0b0f3a12012-09-11 13:34:57 +0200319 dev->speed_8mhz = 1;
320 dev->speed_32mhz = (id[7] == 'H');
Jens Taproggea92caeb2012-09-11 13:35:03 +0200321 crc = ipack_calc_crc1(dev);
322 dev->id_crc_correct = (crc == id[11]);
323 if (!dev->id_crc_correct) {
324 dev_warn(&dev->dev, "ID CRC invalid found 0x%x, expected 0x%x.\n",
325 id[11], crc);
326 }
Jens Taproggee8ed3272012-09-04 17:01:15 +0200327}
328
329static void ipack_parse_id2(struct ipack_device *dev)
330{
331 __be16 *id = (__be16 *) dev->id;
Jens Taproggea92caeb2012-09-11 13:35:03 +0200332 u16 flags, crc;
Jens Taproggee8ed3272012-09-04 17:01:15 +0200333
334 dev->id_vendor = ((be16_to_cpu(id[3]) & 0xff) << 16)
335 + be16_to_cpu(id[4]);
336 dev->id_device = be16_to_cpu(id[5]);
Jens Taprogge0b0f3a12012-09-11 13:34:57 +0200337 flags = be16_to_cpu(id[10]);
338 dev->speed_8mhz = !!(flags & 2);
339 dev->speed_32mhz = !!(flags & 4);
Jens Taproggea92caeb2012-09-11 13:35:03 +0200340 crc = ipack_calc_crc2(dev);
341 dev->id_crc_correct = (crc == be16_to_cpu(id[12]));
342 if (!dev->id_crc_correct) {
343 dev_warn(&dev->dev, "ID CRC invalid found 0x%x, expected 0x%x.\n",
344 id[11], crc);
345 }
Jens Taproggee8ed3272012-09-04 17:01:15 +0200346}
347
Jens Taprogge187e4782012-09-04 17:01:14 +0200348static int ipack_device_read_id(struct ipack_device *dev)
349{
350 u8 __iomem *idmem;
351 int i;
352 int ret = 0;
353
Jens Taprogge402228d2012-09-27 12:37:34 +0200354 idmem = ioremap(dev->region[IPACK_ID_SPACE].start,
355 dev->region[IPACK_ID_SPACE].size);
356 if (!idmem) {
Jens Taprogge187e4782012-09-04 17:01:14 +0200357 dev_err(&dev->dev, "error mapping memory\n");
Samuel Iglesias Gonsalvez58b2c0c2012-09-27 12:37:41 +0200358 return -ENOMEM;
Jens Taprogge187e4782012-09-04 17:01:14 +0200359 }
Jens Taprogge187e4782012-09-04 17:01:14 +0200360
361 /* Determine ID PROM Data Format. If we find the ids "IPAC" or "IPAH"
362 * we are dealing with a IndustryPack format 1 device. If we detect
363 * "VITA4 " (16 bit big endian formatted) we are dealing with a
364 * IndustryPack format 2 device */
365 if ((ioread8(idmem + 1) == 'I') &&
366 (ioread8(idmem + 3) == 'P') &&
367 (ioread8(idmem + 5) == 'A') &&
368 ((ioread8(idmem + 7) == 'C') ||
369 (ioread8(idmem + 7) == 'H'))) {
370 dev->id_format = IPACK_ID_VERSION_1;
371 dev->id_avail = ioread8(idmem + 0x15);
372 if ((dev->id_avail < 0x0c) || (dev->id_avail > 0x40)) {
373 dev_warn(&dev->dev, "invalid id size");
374 dev->id_avail = 0x0c;
375 }
376 } else if ((ioread8(idmem + 0) == 'I') &&
377 (ioread8(idmem + 1) == 'V') &&
378 (ioread8(idmem + 2) == 'A') &&
379 (ioread8(idmem + 3) == 'T') &&
380 (ioread8(idmem + 4) == ' ') &&
381 (ioread8(idmem + 5) == '4')) {
382 dev->id_format = IPACK_ID_VERSION_2;
383 dev->id_avail = ioread16be(idmem + 0x16);
384 if ((dev->id_avail < 0x1a) || (dev->id_avail > 0x40)) {
385 dev_warn(&dev->dev, "invalid id size");
386 dev->id_avail = 0x1a;
387 }
388 } else {
389 dev->id_format = IPACK_ID_VERSION_INVALID;
390 dev->id_avail = 0;
391 }
392
393 if (!dev->id_avail) {
394 ret = -ENODEV;
395 goto out;
396 }
397
398 /* Obtain the amount of memory required to store a copy of the complete
399 * ID ROM contents */
400 dev->id = kmalloc(dev->id_avail, GFP_KERNEL);
401 if (!dev->id) {
Jens Taprogge187e4782012-09-04 17:01:14 +0200402 ret = -ENOMEM;
403 goto out;
404 }
405 for (i = 0; i < dev->id_avail; i++) {
406 if (dev->id_format == IPACK_ID_VERSION_1)
407 dev->id[i] = ioread8(idmem + (i << 1) + 1);
408 else
409 dev->id[i] = ioread8(idmem + i);
410 }
411
Jens Taproggee8ed3272012-09-04 17:01:15 +0200412 /* now we can finally work with the copy */
413 switch (dev->id_format) {
414 case IPACK_ID_VERSION_1:
415 ipack_parse_id1(dev);
416 break;
417 case IPACK_ID_VERSION_2:
418 ipack_parse_id2(dev);
419 break;
420 }
421
Jens Taprogge187e4782012-09-04 17:01:14 +0200422out:
Jens Taprogge402228d2012-09-27 12:37:34 +0200423 iounmap(idmem);
Jens Taprogge187e4782012-09-04 17:01:14 +0200424
425 return ret;
426}
427
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100428int ipack_device_init(struct ipack_device *dev)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200429{
430 int ret;
431
432 dev->dev.bus = &ipack_bus_type;
433 dev->dev.release = ipack_device_release;
Jens Taprogge1e917952012-09-27 12:37:26 +0200434 dev->dev.parent = dev->bus->parent;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200435 dev_set_name(&dev->dev,
Jens Taproggef9e314d2012-09-27 12:37:25 +0200436 "ipack-dev.%u.%u", dev->bus->bus_nr, dev->slot);
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100437 device_initialize(&dev->dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200438
Jens Taprogge1e917952012-09-27 12:37:26 +0200439 if (dev->bus->ops->set_clockrate(dev, 8))
Jens Taprogge07766ab2012-09-11 13:35:01 +0200440 dev_warn(&dev->dev, "failed to switch to 8 MHz operation for reading of device ID.\n");
Jens Taprogge1e917952012-09-27 12:37:26 +0200441 if (dev->bus->ops->reset_timeout(dev))
Jens Taprogge8a3ae162012-09-11 13:35:02 +0200442 dev_warn(&dev->dev, "failed to reset potential timeout.");
Jens Taprogge07766ab2012-09-11 13:35:01 +0200443
Jens Taprogge187e4782012-09-04 17:01:14 +0200444 ret = ipack_device_read_id(dev);
445 if (ret < 0) {
446 dev_err(&dev->dev, "error reading device id section.\n");
Jens Taprogge1e917952012-09-27 12:37:26 +0200447 return ret;
Jens Taprogge187e4782012-09-04 17:01:14 +0200448 }
449
Jens Taprogge90cb6192012-09-11 13:34:58 +0200450 /* if the device supports 32 MHz operation, use it. */
Jens Taprogge07766ab2012-09-11 13:35:01 +0200451 if (dev->speed_32mhz) {
Jens Taprogge1e917952012-09-27 12:37:26 +0200452 ret = dev->bus->ops->set_clockrate(dev, 32);
Jens Taprogge07766ab2012-09-11 13:35:01 +0200453 if (ret < 0)
454 dev_err(&dev->dev, "failed to switch to 32 MHz operation.\n");
455 }
Jens Taprogge90cb6192012-09-11 13:34:58 +0200456
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100457 return 0;
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200458}
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100459EXPORT_SYMBOL_GPL(ipack_device_init);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200460
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100461int ipack_device_add(struct ipack_device *dev)
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200462{
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100463 return device_add(&dev->dev);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200464}
Samuel Iglesias Gonsalveze9263012013-03-08 09:21:47 +0100465EXPORT_SYMBOL_GPL(ipack_device_add);
466
467void ipack_device_del(struct ipack_device *dev)
468{
469 device_del(&dev->dev);
470 ipack_put_device(dev);
471}
472EXPORT_SYMBOL_GPL(ipack_device_del);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200473
Samuel Iglesias Gonsalvezfa882862013-03-08 09:21:46 +0100474void ipack_get_device(struct ipack_device *dev)
475{
476 get_device(&dev->dev);
477}
478EXPORT_SYMBOL_GPL(ipack_get_device);
479
480void ipack_put_device(struct ipack_device *dev)
481{
482 put_device(&dev->dev);
483}
484EXPORT_SYMBOL_GPL(ipack_put_device);
485
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200486static int __init ipack_init(void)
487{
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200488 ida_init(&ipack_ida);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200489 return bus_register(&ipack_bus_type);
490}
491
492static void __exit ipack_exit(void)
493{
494 bus_unregister(&ipack_bus_type);
Samuel Iglesias Gonsalvez3b86bb22012-05-25 10:03:01 +0200495 ida_destroy(&ipack_ida);
Samuel Iglesias Gonsalvezd3465872012-05-09 15:27:19 +0200496}
497
498module_init(ipack_init);
499module_exit(ipack_exit);
500
501MODULE_AUTHOR("Samuel Iglesias Gonsalvez <siglesias@igalia.com>");
502MODULE_LICENSE("GPL");
503MODULE_DESCRIPTION("Industry-pack bus core");