blob: 8ed1163c0bd4be2865d8a1836c38746013c3d4f3 [file] [log] [blame]
Heiko J Schickd7a30102005-11-16 08:56:43 +01001/*
2 * IBM PowerPC IBM eBus Infrastructure Support.
3 *
4 * Copyright (c) 2005 IBM Corporation
Joachim Fenkes6bccf752007-03-09 19:00:32 +01005 * Joachim Fenkes <fenkes@de.ibm.com>
Heiko J Schickd7a30102005-11-16 08:56:43 +01006 * Heiko J Schick <schickhj@de.ibm.com>
Joachim Fenkesa8308802007-03-09 18:56:46 +01007 *
Heiko J Schickd7a30102005-11-16 08:56:43 +01008 * All rights reserved.
9 *
Joachim Fenkesa8308802007-03-09 18:56:46 +010010 * This source code is distributed under a dual license of GPL v2.0 and OpenIB
11 * BSD.
Heiko J Schickd7a30102005-11-16 08:56:43 +010012 *
13 * OpenIB BSD License
14 *
Joachim Fenkesa8308802007-03-09 18:56:46 +010015 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions are met:
Heiko J Schickd7a30102005-11-16 08:56:43 +010017 *
Joachim Fenkesa8308802007-03-09 18:56:46 +010018 * Redistributions of source code must retain the above copyright notice, this
19 * list of conditions and the following disclaimer.
Heiko J Schickd7a30102005-11-16 08:56:43 +010020 *
Joachim Fenkesa8308802007-03-09 18:56:46 +010021 * Redistributions in binary form must reproduce the above copyright notice,
22 * this list of conditions and the following disclaimer in the documentation
Heiko J Schickd7a30102005-11-16 08:56:43 +010023 * and/or other materials
Joachim Fenkesa8308802007-03-09 18:56:46 +010024 * provided with the distribution.
Heiko J Schickd7a30102005-11-16 08:56:43 +010025 *
Joachim Fenkesa8308802007-03-09 18:56:46 +010026 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
30 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Heiko J Schickd7a30102005-11-16 08:56:43 +010032 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
33 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
Joachim Fenkesa8308802007-03-09 18:56:46 +010034 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Heiko J Schickd7a30102005-11-16 08:56:43 +010036 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39#include <linux/init.h>
40#include <linux/console.h>
41#include <linux/kobject.h>
42#include <linux/dma-mapping.h>
43#include <linux/interrupt.h>
44#include <asm/ibmebus.h>
45#include <asm/abs_addr.h>
46
Joachim Fenkes6bccf752007-03-09 19:00:32 +010047#define MAX_LOC_CODE_LENGTH 80
48
49static struct device ibmebus_bus_device = { /* fake "parent" device */
50 .bus_id = "ibmebus",
Heiko J Schickd7a30102005-11-16 08:56:43 +010051};
52
Joachim Fenkes6bccf752007-03-09 19:00:32 +010053struct bus_type ibmebus_bus_type;
54
Heiko J Schickd7a30102005-11-16 08:56:43 +010055static void *ibmebus_alloc_coherent(struct device *dev,
56 size_t size,
57 dma_addr_t *dma_handle,
58 gfp_t flag)
59{
60 void *mem;
Joachim Fenkesa8308802007-03-09 18:56:46 +010061
Heiko J Schickd7a30102005-11-16 08:56:43 +010062 mem = kmalloc(size, flag);
63 *dma_handle = (dma_addr_t)mem;
64
65 return mem;
66}
67
68static void ibmebus_free_coherent(struct device *dev,
Joachim Fenkesa8308802007-03-09 18:56:46 +010069 size_t size, void *vaddr,
Heiko J Schickd7a30102005-11-16 08:56:43 +010070 dma_addr_t dma_handle)
71{
72 kfree(vaddr);
73}
74
75static dma_addr_t ibmebus_map_single(struct device *dev,
76 void *ptr,
77 size_t size,
78 enum dma_data_direction direction)
79{
80 return (dma_addr_t)(ptr);
81}
82
83static void ibmebus_unmap_single(struct device *dev,
84 dma_addr_t dma_addr,
Joachim Fenkesa8308802007-03-09 18:56:46 +010085 size_t size,
Heiko J Schickd7a30102005-11-16 08:56:43 +010086 enum dma_data_direction direction)
87{
88 return;
89}
90
91static int ibmebus_map_sg(struct device *dev,
92 struct scatterlist *sg,
93 int nents, enum dma_data_direction direction)
94{
95 int i;
Joachim Fenkesa8308802007-03-09 18:56:46 +010096
Heiko J Schickd7a30102005-11-16 08:56:43 +010097 for (i = 0; i < nents; i++) {
Joachim Fenkesa8308802007-03-09 18:56:46 +010098 sg[i].dma_address = (dma_addr_t)page_address(sg[i].page)
Heiko J Schickd7a30102005-11-16 08:56:43 +010099 + sg[i].offset;
100 sg[i].dma_length = sg[i].length;
101 }
Joachim Fenkesa8308802007-03-09 18:56:46 +0100102
Heiko J Schickd7a30102005-11-16 08:56:43 +0100103 return nents;
104}
105
106static void ibmebus_unmap_sg(struct device *dev,
107 struct scatterlist *sg,
108 int nents, enum dma_data_direction direction)
109{
110 return;
111}
112
113static int ibmebus_dma_supported(struct device *dev, u64 mask)
114{
115 return 1;
116}
117
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100118static struct dma_mapping_ops ibmebus_dma_ops = {
Heiko J Schickd7a30102005-11-16 08:56:43 +0100119 .alloc_coherent = ibmebus_alloc_coherent,
120 .free_coherent = ibmebus_free_coherent,
121 .map_single = ibmebus_map_single,
122 .unmap_single = ibmebus_unmap_single,
123 .map_sg = ibmebus_map_sg,
124 .unmap_sg = ibmebus_unmap_sg,
125 .dma_supported = ibmebus_dma_supported,
126};
127
128static int ibmebus_bus_probe(struct device *dev)
129{
130 struct ibmebus_dev *ibmebusdev = to_ibmebus_dev(dev);
131 struct ibmebus_driver *ibmebusdrv = to_ibmebus_driver(dev->driver);
132 const struct of_device_id *id;
133 int error = -ENODEV;
Joachim Fenkesa8308802007-03-09 18:56:46 +0100134
Heiko J Schickd7a30102005-11-16 08:56:43 +0100135 if (!ibmebusdrv->probe)
136 return error;
Joachim Fenkesa8308802007-03-09 18:56:46 +0100137
Heiko J Schickd7a30102005-11-16 08:56:43 +0100138 id = of_match_device(ibmebusdrv->id_table, &ibmebusdev->ofdev);
139 if (id) {
140 error = ibmebusdrv->probe(ibmebusdev, id);
141 }
Joachim Fenkesa8308802007-03-09 18:56:46 +0100142
Heiko J Schickd7a30102005-11-16 08:56:43 +0100143 return error;
144}
145
146static int ibmebus_bus_remove(struct device *dev)
147{
148 struct ibmebus_dev *ibmebusdev = to_ibmebus_dev(dev);
149 struct ibmebus_driver *ibmebusdrv = to_ibmebus_driver(dev->driver);
Joachim Fenkesa8308802007-03-09 18:56:46 +0100150
Heiko J Schickd7a30102005-11-16 08:56:43 +0100151 if (ibmebusdrv->remove) {
152 return ibmebusdrv->remove(ibmebusdev);
153 }
Joachim Fenkesa8308802007-03-09 18:56:46 +0100154
Heiko J Schickd7a30102005-11-16 08:56:43 +0100155 return 0;
156}
157
158static void __devinit ibmebus_dev_release(struct device *dev)
159{
160 of_node_put(to_ibmebus_dev(dev)->ofdev.node);
161 kfree(to_ibmebus_dev(dev));
162}
163
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100164static int __devinit ibmebus_register_device_common(
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000165 struct ibmebus_dev *dev, const char *name)
Heiko J Schickd7a30102005-11-16 08:56:43 +0100166{
167 int err = 0;
168
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100169 dev->ofdev.dev.parent = &ibmebus_bus_device;
Heiko J Schickd7a30102005-11-16 08:56:43 +0100170 dev->ofdev.dev.bus = &ibmebus_bus_type;
171 dev->ofdev.dev.release = ibmebus_dev_release;
172
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +1100173 dev->ofdev.dev.archdata.of_node = dev->ofdev.node;
174 dev->ofdev.dev.archdata.dma_ops = &ibmebus_dma_ops;
175 dev->ofdev.dev.archdata.numa_node = of_node_to_nid(dev->ofdev.node);
176
Heiko J Schickd7a30102005-11-16 08:56:43 +0100177 /* An ibmebusdev is based on a of_device. We have to change the
Joachim Fenkesa8308802007-03-09 18:56:46 +0100178 * bus type to use our own DMA mapping operations.
179 */
Heiko J Schickd7a30102005-11-16 08:56:43 +0100180 if ((err = of_device_register(&dev->ofdev)) != 0) {
181 printk(KERN_ERR "%s: failed to register device (%d).\n",
182 __FUNCTION__, err);
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100183 return -ENODEV;
Heiko J Schickd7a30102005-11-16 08:56:43 +0100184 }
Joachim Fenkesa8308802007-03-09 18:56:46 +0100185
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100186 return 0;
Heiko J Schickd7a30102005-11-16 08:56:43 +0100187}
188
189static struct ibmebus_dev* __devinit ibmebus_register_device_node(
190 struct device_node *dn)
191{
192 struct ibmebus_dev *dev;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000193 const char *loc_code;
Heiko J Schickd7a30102005-11-16 08:56:43 +0100194 int length;
195
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000196 loc_code = get_property(dn, "ibm,loc-code", NULL);
Heiko J Schickd7a30102005-11-16 08:56:43 +0100197 if (!loc_code) {
198 printk(KERN_WARNING "%s: node %s missing 'ibm,loc-code'\n",
199 __FUNCTION__, dn->name ? dn->name : "<unknown>");
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100200 return ERR_PTR(-EINVAL);
Heiko J Schickd7a30102005-11-16 08:56:43 +0100201 }
Joachim Fenkesa8308802007-03-09 18:56:46 +0100202
Heiko J Schickd7a30102005-11-16 08:56:43 +0100203 if (strlen(loc_code) == 0) {
204 printk(KERN_WARNING "%s: 'ibm,loc-code' is invalid\n",
205 __FUNCTION__);
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100206 return ERR_PTR(-EINVAL);
Heiko J Schickd7a30102005-11-16 08:56:43 +0100207 }
208
Yan Burmanf8485352006-12-02 13:26:57 +0200209 dev = kzalloc(sizeof(struct ibmebus_dev), GFP_KERNEL);
Heiko J Schickd7a30102005-11-16 08:56:43 +0100210 if (!dev) {
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100211 return ERR_PTR(-ENOMEM);
Heiko J Schickd7a30102005-11-16 08:56:43 +0100212 }
Heiko J Schickd7a30102005-11-16 08:56:43 +0100213
214 dev->ofdev.node = of_node_get(dn);
Joachim Fenkesa8308802007-03-09 18:56:46 +0100215
Heiko J Schickd7a30102005-11-16 08:56:43 +0100216 length = strlen(loc_code);
Joachim Fenkesa8308802007-03-09 18:56:46 +0100217 memcpy(dev->ofdev.dev.bus_id, loc_code
218 + (length - min(length, BUS_ID_SIZE - 1)),
Heiko J Schickd7a30102005-11-16 08:56:43 +0100219 min(length, BUS_ID_SIZE - 1));
220
221 /* Register with generic device framework. */
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100222 if (ibmebus_register_device_common(dev, dn->name) != 0) {
Heiko J Schickd7a30102005-11-16 08:56:43 +0100223 kfree(dev);
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100224 return ERR_PTR(-ENODEV);
Heiko J Schickd7a30102005-11-16 08:56:43 +0100225 }
226
227 return dev;
228}
229
230static void ibmebus_probe_of_nodes(char* name)
231{
232 struct device_node *dn = NULL;
Joachim Fenkesa8308802007-03-09 18:56:46 +0100233
Heiko J Schickd7a30102005-11-16 08:56:43 +0100234 while ((dn = of_find_node_by_name(dn, name))) {
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100235 if (IS_ERR(ibmebus_register_device_node(dn))) {
Heiko J Schickd7a30102005-11-16 08:56:43 +0100236 of_node_put(dn);
Heiko J Schickd7a30102005-11-16 08:56:43 +0100237 return;
238 }
239 }
Joachim Fenkesa8308802007-03-09 18:56:46 +0100240
Heiko J Schickd7a30102005-11-16 08:56:43 +0100241 of_node_put(dn);
Joachim Fenkesa8308802007-03-09 18:56:46 +0100242
Heiko J Schickd7a30102005-11-16 08:56:43 +0100243 return;
244}
245
246static void ibmebus_add_devices_by_id(struct of_device_id *idt)
247{
248 while (strlen(idt->name) > 0) {
249 ibmebus_probe_of_nodes(idt->name);
250 idt++;
251 }
252
253 return;
254}
255
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100256static int ibmebus_match_helper_name(struct device *dev, void *data)
Heiko J Schickd7a30102005-11-16 08:56:43 +0100257{
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100258 const struct ibmebus_dev *ebus_dev = to_ibmebus_dev(dev);
259 char *name;
260
261 name = (char*)get_property(
262 ebus_dev->ofdev.node, "name", NULL);
263
264 if (name && (strcmp((char*)data, name) == 0))
Heiko J Schickd7a30102005-11-16 08:56:43 +0100265 return 1;
Joachim Fenkesa8308802007-03-09 18:56:46 +0100266
Heiko J Schickd7a30102005-11-16 08:56:43 +0100267 return 0;
268}
269
270static int ibmebus_unregister_device(struct device *dev)
271{
Heiko J Schickd7a30102005-11-16 08:56:43 +0100272 of_device_unregister(to_of_device(dev));
273
274 return 0;
275}
276
277static void ibmebus_remove_devices_by_id(struct of_device_id *idt)
278{
279 struct device *dev;
Joachim Fenkesa8308802007-03-09 18:56:46 +0100280
Heiko J Schickd7a30102005-11-16 08:56:43 +0100281 while (strlen(idt->name) > 0) {
Joachim Fenkesa8308802007-03-09 18:56:46 +0100282 while ((dev = bus_find_device(&ibmebus_bus_type, NULL,
Heiko J Schickd7a30102005-11-16 08:56:43 +0100283 (void*)idt->name,
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100284 ibmebus_match_helper_name))) {
Heiko J Schickd7a30102005-11-16 08:56:43 +0100285 ibmebus_unregister_device(dev);
286 }
287 idt++;
Heiko J Schickd7a30102005-11-16 08:56:43 +0100288 }
Joachim Fenkesa8308802007-03-09 18:56:46 +0100289
Heiko J Schickd7a30102005-11-16 08:56:43 +0100290 return;
291}
292
293int ibmebus_register_driver(struct ibmebus_driver *drv)
294{
295 int err = 0;
296
297 drv->driver.name = drv->name;
298 drv->driver.bus = &ibmebus_bus_type;
299 drv->driver.probe = ibmebus_bus_probe;
300 drv->driver.remove = ibmebus_bus_remove;
301
302 if ((err = driver_register(&drv->driver) != 0))
303 return err;
304
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100305 /* remove all supported devices first, in case someone
306 * probed them manually before registering the driver */
307 ibmebus_remove_devices_by_id(drv->id_table);
Heiko J Schickd7a30102005-11-16 08:56:43 +0100308 ibmebus_add_devices_by_id(drv->id_table);
Joachim Fenkesa8308802007-03-09 18:56:46 +0100309
Heiko J Schickd7a30102005-11-16 08:56:43 +0100310 return 0;
311}
312EXPORT_SYMBOL(ibmebus_register_driver);
313
314void ibmebus_unregister_driver(struct ibmebus_driver *drv)
Joachim Fenkesa8308802007-03-09 18:56:46 +0100315{
Heiko J Schickd7a30102005-11-16 08:56:43 +0100316 driver_unregister(&drv->driver);
317 ibmebus_remove_devices_by_id(drv->id_table);
318}
319EXPORT_SYMBOL(ibmebus_unregister_driver);
320
321int ibmebus_request_irq(struct ibmebus_dev *dev,
Joachim Fenkesa8308802007-03-09 18:56:46 +0100322 u32 ist,
David Howells40220c12006-10-09 12:19:47 +0100323 irq_handler_t handler,
Heiko J Schickd7a30102005-11-16 08:56:43 +0100324 unsigned long irq_flags, const char * devname,
325 void *dev_id)
326{
Benjamin Herrenschmidt6e99e452006-07-10 04:44:42 -0700327 unsigned int irq = irq_create_mapping(NULL, ist);
Joachim Fenkesa8308802007-03-09 18:56:46 +0100328
Heiko J Schickd7a30102005-11-16 08:56:43 +0100329 if (irq == NO_IRQ)
330 return -EINVAL;
Joachim Fenkesa8308802007-03-09 18:56:46 +0100331
Heiko J Schickd7a30102005-11-16 08:56:43 +0100332 return request_irq(irq, handler,
333 irq_flags, devname, dev_id);
334}
335EXPORT_SYMBOL(ibmebus_request_irq);
336
337void ibmebus_free_irq(struct ibmebus_dev *dev, u32 ist, void *dev_id)
338{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000339 unsigned int irq = irq_find_mapping(NULL, ist);
Joachim Fenkesa8308802007-03-09 18:56:46 +0100340
Heiko J Schickd7a30102005-11-16 08:56:43 +0100341 free_irq(irq, dev_id);
Heiko J Schickd7a30102005-11-16 08:56:43 +0100342}
343EXPORT_SYMBOL(ibmebus_free_irq);
344
345static int ibmebus_bus_match(struct device *dev, struct device_driver *drv)
Joachim Fenkesa8308802007-03-09 18:56:46 +0100346{
Heiko J Schickd7a30102005-11-16 08:56:43 +0100347 const struct ibmebus_dev *ebus_dev = to_ibmebus_dev(dev);
348 struct ibmebus_driver *ebus_drv = to_ibmebus_driver(drv);
349 const struct of_device_id *ids = ebus_drv->id_table;
350 const struct of_device_id *found_id;
Joachim Fenkesa8308802007-03-09 18:56:46 +0100351
Heiko J Schickd7a30102005-11-16 08:56:43 +0100352 if (!ids)
353 return 0;
Joachim Fenkesa8308802007-03-09 18:56:46 +0100354
Heiko J Schickd7a30102005-11-16 08:56:43 +0100355 found_id = of_match_device(ids, &ebus_dev->ofdev);
356 if (found_id)
357 return 1;
Joachim Fenkesa8308802007-03-09 18:56:46 +0100358
Heiko J Schickd7a30102005-11-16 08:56:43 +0100359 return 0;
360}
361
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100362static ssize_t name_show(struct device *dev,
363 struct device_attribute *attr, char *buf)
364{
365 struct ibmebus_dev *ebus_dev = to_ibmebus_dev(dev);
366 char *name = (char*)get_property(ebus_dev->ofdev.node, "name", NULL);
367 return sprintf(buf, "%s\n", name);
368}
369
370static struct device_attribute ibmebus_dev_attrs[] = {
371 __ATTR_RO(name),
372 __ATTR_NULL
373};
374
375static int ibmebus_match_helper_loc_code(struct device *dev, void *data)
376{
377 const struct ibmebus_dev *ebus_dev = to_ibmebus_dev(dev);
378 char *loc_code;
379
380 loc_code = (char*)get_property(
381 ebus_dev->ofdev.node, "ibm,loc-code", NULL);
382
383 if (loc_code && (strcmp((char*)data, loc_code) == 0))
384 return 1;
385
386 return 0;
387}
388
389static ssize_t ibmebus_store_probe(struct bus_type *bus,
390 const char *buf, size_t count)
391{
392 struct device_node *dn = NULL;
393 struct ibmebus_dev *dev;
394 char *loc_code;
395 char parm[MAX_LOC_CODE_LENGTH];
396
397 if (count >= MAX_LOC_CODE_LENGTH)
398 return -EINVAL;
399 memcpy(parm, buf, count);
400 parm[count] = '\0';
401 if (parm[count-1] == '\n')
402 parm[count-1] = '\0';
403
404 if (bus_find_device(&ibmebus_bus_type, NULL, parm,
405 ibmebus_match_helper_loc_code)) {
406 printk(KERN_WARNING "%s: loc_code %s has already been probed\n",
407 __FUNCTION__, parm);
408 return -EINVAL;
409 }
410
411 while ((dn = of_find_all_nodes(dn))) {
412 loc_code = (char *)get_property(dn, "ibm,loc-code", NULL);
413 if (loc_code && (strncmp(loc_code, parm, count) == 0)) {
414 dev = ibmebus_register_device_node(dn);
415 if (IS_ERR(dev)) {
416 of_node_put(dn);
417 return PTR_ERR(dev);
418 } else
419 return count; /* success */
420 }
421 }
422
423 /* if we drop out of the loop, the loc code was invalid */
424 printk(KERN_WARNING "%s: no device with loc_code %s found\n",
425 __FUNCTION__, parm);
426 return -ENODEV;
427}
428
429static ssize_t ibmebus_store_remove(struct bus_type *bus,
430 const char *buf, size_t count)
431{
432 struct device *dev;
433 char parm[MAX_LOC_CODE_LENGTH];
434
435 if (count >= MAX_LOC_CODE_LENGTH)
436 return -EINVAL;
437 memcpy(parm, buf, count);
438 parm[count] = '\0';
439 if (parm[count-1] == '\n')
440 parm[count-1] = '\0';
441
442 /* The location code is unique, so we will find one device at most */
443 if ((dev = bus_find_device(&ibmebus_bus_type, NULL, parm,
444 ibmebus_match_helper_loc_code))) {
445 ibmebus_unregister_device(dev);
446 } else {
447 printk(KERN_WARNING "%s: loc_code %s not on the bus\n",
448 __FUNCTION__, parm);
449 return -ENODEV;
450 }
451
452 return count;
453}
454
455static struct bus_attribute ibmebus_bus_attrs[] = {
456 __ATTR(probe, S_IWUSR, NULL, ibmebus_store_probe),
457 __ATTR(remove, S_IWUSR, NULL, ibmebus_store_remove),
458 __ATTR_NULL
459};
460
Heiko J Schickd7a30102005-11-16 08:56:43 +0100461struct bus_type ibmebus_bus_type = {
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100462 .name = "ibmebus",
463 .match = ibmebus_bus_match,
464 .dev_attrs = ibmebus_dev_attrs,
465 .bus_attrs = ibmebus_bus_attrs
Heiko J Schickd7a30102005-11-16 08:56:43 +0100466};
467EXPORT_SYMBOL(ibmebus_bus_type);
468
469static int __init ibmebus_bus_init(void)
470{
471 int err;
Joachim Fenkesa8308802007-03-09 18:56:46 +0100472
Heiko J Schickd7a30102005-11-16 08:56:43 +0100473 printk(KERN_INFO "IBM eBus Device Driver\n");
Joachim Fenkesa8308802007-03-09 18:56:46 +0100474
Heiko J Schickd7a30102005-11-16 08:56:43 +0100475 err = bus_register(&ibmebus_bus_type);
476 if (err) {
477 printk(KERN_ERR ":%s: failed to register IBM eBus.\n",
478 __FUNCTION__);
479 return err;
480 }
Joachim Fenkesa8308802007-03-09 18:56:46 +0100481
Joachim Fenkes6bccf752007-03-09 19:00:32 +0100482 err = device_register(&ibmebus_bus_device);
Heiko J Schickd7a30102005-11-16 08:56:43 +0100483 if (err) {
Joachim Fenkesa8308802007-03-09 18:56:46 +0100484 printk(KERN_WARNING "%s: device_register returned %i\n",
Heiko J Schickd7a30102005-11-16 08:56:43 +0100485 __FUNCTION__, err);
486 bus_unregister(&ibmebus_bus_type);
487
488 return err;
489 }
Joachim Fenkesa8308802007-03-09 18:56:46 +0100490
Heiko J Schickd7a30102005-11-16 08:56:43 +0100491 return 0;
492}
493__initcall(ibmebus_bus_init);