mm: convert anon_vma->lock to a mutex
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / powerpc / kernel / ibmebus.c
blob28581f1ad2c08a8494502e2335cfeef2a295577e
1 /*
2 * IBM PowerPC IBM eBus Infrastructure Support.
4 * Copyright (c) 2005 IBM Corporation
5 * Joachim Fenkes <fenkes@de.ibm.com>
6 * Heiko J Schick <schickhj@de.ibm.com>
8 * All rights reserved.
10 * This source code is distributed under a dual license of GPL v2.0 and OpenIB
11 * BSD.
13 * OpenIB BSD License
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions are met:
18 * Redistributions of source code must retain the above copyright notice, this
19 * list of conditions and the following disclaimer.
21 * Redistributions in binary form must reproduce the above copyright notice,
22 * this list of conditions and the following disclaimer in the documentation
23 * and/or other materials
24 * provided with the distribution.
26 * 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
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
33 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
34 * 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
36 * POSSIBILITY OF SUCH DAMAGE.
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 <linux/of.h>
45 #include <linux/slab.h>
46 #include <linux/of_platform.h>
47 #include <asm/ibmebus.h>
48 #include <asm/abs_addr.h>
50 static struct device ibmebus_bus_device = { /* fake "parent" device */
51 .init_name = "ibmebus",
54 struct bus_type ibmebus_bus_type;
56 /* These devices will automatically be added to the bus during init */
57 static struct of_device_id __initdata ibmebus_matches[] = {
58 { .compatible = "IBM,lhca" },
59 { .compatible = "IBM,lhea" },
60 {},
63 static void *ibmebus_alloc_coherent(struct device *dev,
64 size_t size,
65 dma_addr_t *dma_handle,
66 gfp_t flag)
68 void *mem;
70 mem = kmalloc(size, flag);
71 *dma_handle = (dma_addr_t)mem;
73 return mem;
76 static void ibmebus_free_coherent(struct device *dev,
77 size_t size, void *vaddr,
78 dma_addr_t dma_handle)
80 kfree(vaddr);
83 static dma_addr_t ibmebus_map_page(struct device *dev,
84 struct page *page,
85 unsigned long offset,
86 size_t size,
87 enum dma_data_direction direction,
88 struct dma_attrs *attrs)
90 return (dma_addr_t)(page_address(page) + offset);
93 static void ibmebus_unmap_page(struct device *dev,
94 dma_addr_t dma_addr,
95 size_t size,
96 enum dma_data_direction direction,
97 struct dma_attrs *attrs)
99 return;
102 static int ibmebus_map_sg(struct device *dev,
103 struct scatterlist *sgl,
104 int nents, enum dma_data_direction direction,
105 struct dma_attrs *attrs)
107 struct scatterlist *sg;
108 int i;
110 for_each_sg(sgl, sg, nents, i) {
111 sg->dma_address = (dma_addr_t) sg_virt(sg);
112 sg->dma_length = sg->length;
115 return nents;
118 static void ibmebus_unmap_sg(struct device *dev,
119 struct scatterlist *sg,
120 int nents, enum dma_data_direction direction,
121 struct dma_attrs *attrs)
123 return;
126 static int ibmebus_dma_supported(struct device *dev, u64 mask)
128 return 1;
131 static struct dma_map_ops ibmebus_dma_ops = {
132 .alloc_coherent = ibmebus_alloc_coherent,
133 .free_coherent = ibmebus_free_coherent,
134 .map_sg = ibmebus_map_sg,
135 .unmap_sg = ibmebus_unmap_sg,
136 .dma_supported = ibmebus_dma_supported,
137 .map_page = ibmebus_map_page,
138 .unmap_page = ibmebus_unmap_page,
141 static int ibmebus_match_path(struct device *dev, void *data)
143 struct device_node *dn = to_platform_device(dev)->dev.of_node;
144 return (dn->full_name &&
145 (strcasecmp((char *)data, dn->full_name) == 0));
148 static int ibmebus_match_node(struct device *dev, void *data)
150 return to_platform_device(dev)->dev.of_node == data;
153 static int ibmebus_create_device(struct device_node *dn)
155 struct platform_device *dev;
156 int ret;
158 dev = of_device_alloc(dn, NULL, &ibmebus_bus_device);
159 if (!dev)
160 return -ENOMEM;
162 dev->dev.bus = &ibmebus_bus_type;
163 dev->dev.archdata.dma_ops = &ibmebus_dma_ops;
165 ret = of_device_add(dev);
166 if (ret)
167 platform_device_put(dev);
168 return ret;
171 static int ibmebus_create_devices(const struct of_device_id *matches)
173 struct device_node *root, *child;
174 int ret = 0;
176 root = of_find_node_by_path("/");
178 for_each_child_of_node(root, child) {
179 if (!of_match_node(matches, child))
180 continue;
182 if (bus_find_device(&ibmebus_bus_type, NULL, child,
183 ibmebus_match_node))
184 continue;
186 ret = ibmebus_create_device(child);
187 if (ret) {
188 printk(KERN_ERR "%s: failed to create device (%i)",
189 __func__, ret);
190 of_node_put(child);
191 break;
195 of_node_put(root);
196 return ret;
199 int ibmebus_register_driver(struct of_platform_driver *drv)
201 /* If the driver uses devices that ibmebus doesn't know, add them */
202 ibmebus_create_devices(drv->driver.of_match_table);
204 drv->driver.bus = &ibmebus_bus_type;
205 return driver_register(&drv->driver);
207 EXPORT_SYMBOL(ibmebus_register_driver);
209 void ibmebus_unregister_driver(struct of_platform_driver *drv)
211 driver_unregister(&drv->driver);
213 EXPORT_SYMBOL(ibmebus_unregister_driver);
215 int ibmebus_request_irq(u32 ist, irq_handler_t handler,
216 unsigned long irq_flags, const char *devname,
217 void *dev_id)
219 unsigned int irq = irq_create_mapping(NULL, ist);
221 if (irq == NO_IRQ)
222 return -EINVAL;
224 return request_irq(irq, handler, irq_flags, devname, dev_id);
226 EXPORT_SYMBOL(ibmebus_request_irq);
228 void ibmebus_free_irq(u32 ist, void *dev_id)
230 unsigned int irq = irq_find_mapping(NULL, ist);
232 free_irq(irq, dev_id);
233 irq_dispose_mapping(irq);
235 EXPORT_SYMBOL(ibmebus_free_irq);
237 static char *ibmebus_chomp(const char *in, size_t count)
239 char *out = kmalloc(count + 1, GFP_KERNEL);
241 if (!out)
242 return NULL;
244 memcpy(out, in, count);
245 out[count] = '\0';
246 if (out[count - 1] == '\n')
247 out[count - 1] = '\0';
249 return out;
252 static ssize_t ibmebus_store_probe(struct bus_type *bus,
253 const char *buf, size_t count)
255 struct device_node *dn = NULL;
256 char *path;
257 ssize_t rc = 0;
259 path = ibmebus_chomp(buf, count);
260 if (!path)
261 return -ENOMEM;
263 if (bus_find_device(&ibmebus_bus_type, NULL, path,
264 ibmebus_match_path)) {
265 printk(KERN_WARNING "%s: %s has already been probed\n",
266 __func__, path);
267 rc = -EEXIST;
268 goto out;
271 if ((dn = of_find_node_by_path(path))) {
272 rc = ibmebus_create_device(dn);
273 of_node_put(dn);
274 } else {
275 printk(KERN_WARNING "%s: no such device node: %s\n",
276 __func__, path);
277 rc = -ENODEV;
280 out:
281 kfree(path);
282 if (rc)
283 return rc;
284 return count;
287 static ssize_t ibmebus_store_remove(struct bus_type *bus,
288 const char *buf, size_t count)
290 struct device *dev;
291 char *path;
293 path = ibmebus_chomp(buf, count);
294 if (!path)
295 return -ENOMEM;
297 if ((dev = bus_find_device(&ibmebus_bus_type, NULL, path,
298 ibmebus_match_path))) {
299 of_device_unregister(to_platform_device(dev));
301 kfree(path);
302 return count;
303 } else {
304 printk(KERN_WARNING "%s: %s not on the bus\n",
305 __func__, path);
307 kfree(path);
308 return -ENODEV;
313 static struct bus_attribute ibmebus_bus_attrs[] = {
314 __ATTR(probe, S_IWUSR, NULL, ibmebus_store_probe),
315 __ATTR(remove, S_IWUSR, NULL, ibmebus_store_remove),
316 __ATTR_NULL
319 static int ibmebus_bus_bus_match(struct device *dev, struct device_driver *drv)
321 const struct of_device_id *matches = drv->of_match_table;
323 if (!matches)
324 return 0;
326 return of_match_device(matches, dev) != NULL;
329 static int ibmebus_bus_device_probe(struct device *dev)
331 int error = -ENODEV;
332 struct of_platform_driver *drv;
333 struct platform_device *of_dev;
334 const struct of_device_id *match;
336 drv = to_of_platform_driver(dev->driver);
337 of_dev = to_platform_device(dev);
339 if (!drv->probe)
340 return error;
342 of_dev_get(of_dev);
344 match = of_match_device(drv->driver.of_match_table, dev);
345 if (match)
346 error = drv->probe(of_dev, match);
347 if (error)
348 of_dev_put(of_dev);
350 return error;
353 static int ibmebus_bus_device_remove(struct device *dev)
355 struct platform_device *of_dev = to_platform_device(dev);
356 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
358 if (dev->driver && drv->remove)
359 drv->remove(of_dev);
360 return 0;
363 static void ibmebus_bus_device_shutdown(struct device *dev)
365 struct platform_device *of_dev = to_platform_device(dev);
366 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
368 if (dev->driver && drv->shutdown)
369 drv->shutdown(of_dev);
373 * ibmebus_bus_device_attrs
375 static ssize_t devspec_show(struct device *dev,
376 struct device_attribute *attr, char *buf)
378 struct platform_device *ofdev;
380 ofdev = to_platform_device(dev);
381 return sprintf(buf, "%s\n", ofdev->dev.of_node->full_name);
384 static ssize_t name_show(struct device *dev,
385 struct device_attribute *attr, char *buf)
387 struct platform_device *ofdev;
389 ofdev = to_platform_device(dev);
390 return sprintf(buf, "%s\n", ofdev->dev.of_node->name);
393 static ssize_t modalias_show(struct device *dev,
394 struct device_attribute *attr, char *buf)
396 ssize_t len = of_device_get_modalias(dev, buf, PAGE_SIZE - 2);
397 buf[len] = '\n';
398 buf[len+1] = 0;
399 return len+1;
402 struct device_attribute ibmebus_bus_device_attrs[] = {
403 __ATTR_RO(devspec),
404 __ATTR_RO(name),
405 __ATTR_RO(modalias),
406 __ATTR_NULL
409 #ifdef CONFIG_PM_SLEEP
410 static int ibmebus_bus_legacy_suspend(struct device *dev, pm_message_t mesg)
412 struct platform_device *of_dev = to_platform_device(dev);
413 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
414 int ret = 0;
416 if (dev->driver && drv->suspend)
417 ret = drv->suspend(of_dev, mesg);
418 return ret;
421 static int ibmebus_bus_legacy_resume(struct device *dev)
423 struct platform_device *of_dev = to_platform_device(dev);
424 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
425 int ret = 0;
427 if (dev->driver && drv->resume)
428 ret = drv->resume(of_dev);
429 return ret;
432 static int ibmebus_bus_pm_prepare(struct device *dev)
434 struct device_driver *drv = dev->driver;
435 int ret = 0;
437 if (drv && drv->pm && drv->pm->prepare)
438 ret = drv->pm->prepare(dev);
440 return ret;
443 static void ibmebus_bus_pm_complete(struct device *dev)
445 struct device_driver *drv = dev->driver;
447 if (drv && drv->pm && drv->pm->complete)
448 drv->pm->complete(dev);
451 #ifdef CONFIG_SUSPEND
453 static int ibmebus_bus_pm_suspend(struct device *dev)
455 struct device_driver *drv = dev->driver;
456 int ret = 0;
458 if (!drv)
459 return 0;
461 if (drv->pm) {
462 if (drv->pm->suspend)
463 ret = drv->pm->suspend(dev);
464 } else {
465 ret = ibmebus_bus_legacy_suspend(dev, PMSG_SUSPEND);
468 return ret;
471 static int ibmebus_bus_pm_suspend_noirq(struct device *dev)
473 struct device_driver *drv = dev->driver;
474 int ret = 0;
476 if (!drv)
477 return 0;
479 if (drv->pm) {
480 if (drv->pm->suspend_noirq)
481 ret = drv->pm->suspend_noirq(dev);
484 return ret;
487 static int ibmebus_bus_pm_resume(struct device *dev)
489 struct device_driver *drv = dev->driver;
490 int ret = 0;
492 if (!drv)
493 return 0;
495 if (drv->pm) {
496 if (drv->pm->resume)
497 ret = drv->pm->resume(dev);
498 } else {
499 ret = ibmebus_bus_legacy_resume(dev);
502 return ret;
505 static int ibmebus_bus_pm_resume_noirq(struct device *dev)
507 struct device_driver *drv = dev->driver;
508 int ret = 0;
510 if (!drv)
511 return 0;
513 if (drv->pm) {
514 if (drv->pm->resume_noirq)
515 ret = drv->pm->resume_noirq(dev);
518 return ret;
521 #else /* !CONFIG_SUSPEND */
523 #define ibmebus_bus_pm_suspend NULL
524 #define ibmebus_bus_pm_resume NULL
525 #define ibmebus_bus_pm_suspend_noirq NULL
526 #define ibmebus_bus_pm_resume_noirq NULL
528 #endif /* !CONFIG_SUSPEND */
530 #ifdef CONFIG_HIBERNATE_CALLBACKS
532 static int ibmebus_bus_pm_freeze(struct device *dev)
534 struct device_driver *drv = dev->driver;
535 int ret = 0;
537 if (!drv)
538 return 0;
540 if (drv->pm) {
541 if (drv->pm->freeze)
542 ret = drv->pm->freeze(dev);
543 } else {
544 ret = ibmebus_bus_legacy_suspend(dev, PMSG_FREEZE);
547 return ret;
550 static int ibmebus_bus_pm_freeze_noirq(struct device *dev)
552 struct device_driver *drv = dev->driver;
553 int ret = 0;
555 if (!drv)
556 return 0;
558 if (drv->pm) {
559 if (drv->pm->freeze_noirq)
560 ret = drv->pm->freeze_noirq(dev);
563 return ret;
566 static int ibmebus_bus_pm_thaw(struct device *dev)
568 struct device_driver *drv = dev->driver;
569 int ret = 0;
571 if (!drv)
572 return 0;
574 if (drv->pm) {
575 if (drv->pm->thaw)
576 ret = drv->pm->thaw(dev);
577 } else {
578 ret = ibmebus_bus_legacy_resume(dev);
581 return ret;
584 static int ibmebus_bus_pm_thaw_noirq(struct device *dev)
586 struct device_driver *drv = dev->driver;
587 int ret = 0;
589 if (!drv)
590 return 0;
592 if (drv->pm) {
593 if (drv->pm->thaw_noirq)
594 ret = drv->pm->thaw_noirq(dev);
597 return ret;
600 static int ibmebus_bus_pm_poweroff(struct device *dev)
602 struct device_driver *drv = dev->driver;
603 int ret = 0;
605 if (!drv)
606 return 0;
608 if (drv->pm) {
609 if (drv->pm->poweroff)
610 ret = drv->pm->poweroff(dev);
611 } else {
612 ret = ibmebus_bus_legacy_suspend(dev, PMSG_HIBERNATE);
615 return ret;
618 static int ibmebus_bus_pm_poweroff_noirq(struct device *dev)
620 struct device_driver *drv = dev->driver;
621 int ret = 0;
623 if (!drv)
624 return 0;
626 if (drv->pm) {
627 if (drv->pm->poweroff_noirq)
628 ret = drv->pm->poweroff_noirq(dev);
631 return ret;
634 static int ibmebus_bus_pm_restore(struct device *dev)
636 struct device_driver *drv = dev->driver;
637 int ret = 0;
639 if (!drv)
640 return 0;
642 if (drv->pm) {
643 if (drv->pm->restore)
644 ret = drv->pm->restore(dev);
645 } else {
646 ret = ibmebus_bus_legacy_resume(dev);
649 return ret;
652 static int ibmebus_bus_pm_restore_noirq(struct device *dev)
654 struct device_driver *drv = dev->driver;
655 int ret = 0;
657 if (!drv)
658 return 0;
660 if (drv->pm) {
661 if (drv->pm->restore_noirq)
662 ret = drv->pm->restore_noirq(dev);
665 return ret;
668 #else /* !CONFIG_HIBERNATE_CALLBACKS */
670 #define ibmebus_bus_pm_freeze NULL
671 #define ibmebus_bus_pm_thaw NULL
672 #define ibmebus_bus_pm_poweroff NULL
673 #define ibmebus_bus_pm_restore NULL
674 #define ibmebus_bus_pm_freeze_noirq NULL
675 #define ibmebus_bus_pm_thaw_noirq NULL
676 #define ibmebus_bus_pm_poweroff_noirq NULL
677 #define ibmebus_bus_pm_restore_noirq NULL
679 #endif /* !CONFIG_HIBERNATE_CALLBACKS */
681 static struct dev_pm_ops ibmebus_bus_dev_pm_ops = {
682 .prepare = ibmebus_bus_pm_prepare,
683 .complete = ibmebus_bus_pm_complete,
684 .suspend = ibmebus_bus_pm_suspend,
685 .resume = ibmebus_bus_pm_resume,
686 .freeze = ibmebus_bus_pm_freeze,
687 .thaw = ibmebus_bus_pm_thaw,
688 .poweroff = ibmebus_bus_pm_poweroff,
689 .restore = ibmebus_bus_pm_restore,
690 .suspend_noirq = ibmebus_bus_pm_suspend_noirq,
691 .resume_noirq = ibmebus_bus_pm_resume_noirq,
692 .freeze_noirq = ibmebus_bus_pm_freeze_noirq,
693 .thaw_noirq = ibmebus_bus_pm_thaw_noirq,
694 .poweroff_noirq = ibmebus_bus_pm_poweroff_noirq,
695 .restore_noirq = ibmebus_bus_pm_restore_noirq,
698 #define IBMEBUS_BUS_PM_OPS_PTR (&ibmebus_bus_dev_pm_ops)
700 #else /* !CONFIG_PM_SLEEP */
702 #define IBMEBUS_BUS_PM_OPS_PTR NULL
704 #endif /* !CONFIG_PM_SLEEP */
706 struct bus_type ibmebus_bus_type = {
707 .name = "ibmebus",
708 .uevent = of_device_uevent,
709 .bus_attrs = ibmebus_bus_attrs,
710 .match = ibmebus_bus_bus_match,
711 .probe = ibmebus_bus_device_probe,
712 .remove = ibmebus_bus_device_remove,
713 .shutdown = ibmebus_bus_device_shutdown,
714 .dev_attrs = ibmebus_bus_device_attrs,
715 .pm = IBMEBUS_BUS_PM_OPS_PTR,
717 EXPORT_SYMBOL(ibmebus_bus_type);
719 static int __init ibmebus_bus_init(void)
721 int err;
723 printk(KERN_INFO "IBM eBus Device Driver\n");
725 err = bus_register(&ibmebus_bus_type);
726 if (err) {
727 printk(KERN_ERR "%s: failed to register IBM eBus.\n",
728 __func__);
729 return err;
732 err = device_register(&ibmebus_bus_device);
733 if (err) {
734 printk(KERN_WARNING "%s: device_register returned %i\n",
735 __func__, err);
736 bus_unregister(&ibmebus_bus_type);
738 return err;
741 err = ibmebus_create_devices(ibmebus_matches);
742 if (err) {
743 device_unregister(&ibmebus_bus_device);
744 bus_unregister(&ibmebus_bus_type);
745 return err;
748 return 0;
750 postcore_initcall(ibmebus_bus_init);