blob: 21a39dc64ea0dc00e25d14b7abb4783eecab4819 [file] [log] [blame]
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +01001/*
2 * drivers/mfd/mfd-core.c
3 *
4 * core MFD support
5 * Copyright (c) 2006 Ian Molton
6 * Copyright (c) 2007,2008 Dmitry Baryshkov
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 */
13
14#include <linux/kernel.h>
15#include <linux/platform_device.h>
Samuel Ortiz91feded2010-02-19 11:07:59 +010016#include <linux/acpi.h>
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010017#include <linux/mfd/core.h>
Mark Brown4c90aa92010-11-26 17:19:34 +000018#include <linux/pm_runtime.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010020
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020021static int mfd_add_device(struct device *parent, int id,
Ben Dooks7f71ac92008-07-28 18:29:09 +020022 const struct mfd_cell *cell,
23 struct resource *mem_base,
24 int irq_base)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010025{
Ian Moltona87903f2008-07-25 22:59:29 +010026 struct resource *res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010027 struct platform_device *pdev;
28 int ret = -ENOMEM;
29 int r;
30
Mark Brown3bed6e42009-07-27 14:45:51 +010031 pdev = platform_device_alloc(cell->name, id + cell->id);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010032 if (!pdev)
33 goto fail_alloc;
34
Ian Moltona87903f2008-07-25 22:59:29 +010035 res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL);
36 if (!res)
37 goto fail_device;
38
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020039 pdev->dev.parent = parent;
Mark Brown44faac32008-12-18 10:54:12 +010040 platform_set_drvdata(pdev, cell->driver_data);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010041
Andres Salomonfe891a02011-02-17 19:07:09 -080042 ret = platform_device_add_data(pdev, cell, sizeof(*cell));
43 if (ret)
44 goto fail_res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010045
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010046 for (r = 0; r < cell->num_resources; r++) {
47 res[r].name = cell->resources[r].name;
48 res[r].flags = cell->resources[r].flags;
49
50 /* Find out base to use */
Samuel Ortizf03cfcb2010-03-26 01:09:04 +010051 if ((cell->resources[r].flags & IORESOURCE_MEM) && mem_base) {
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010052 res[r].parent = mem_base;
53 res[r].start = mem_base->start +
54 cell->resources[r].start;
55 res[r].end = mem_base->start +
56 cell->resources[r].end;
57 } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
58 res[r].start = irq_base +
59 cell->resources[r].start;
60 res[r].end = irq_base +
61 cell->resources[r].end;
62 } else {
63 res[r].parent = cell->resources[r].parent;
64 res[r].start = cell->resources[r].start;
65 res[r].end = cell->resources[r].end;
66 }
Samuel Ortiz91feded2010-02-19 11:07:59 +010067
Daniel Drake5f2545f2010-09-30 21:55:36 +010068 if (!cell->ignore_resource_conflicts) {
69 ret = acpi_check_resource_conflict(res);
70 if (ret)
71 goto fail_res;
72 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010073 }
74
Axel Lin8af5fe32010-05-31 17:30:55 +080075 ret = platform_device_add_resources(pdev, res, cell->num_resources);
76 if (ret)
77 goto fail_res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010078
79 ret = platform_device_add(pdev);
80 if (ret)
Ian Moltona87903f2008-07-25 22:59:29 +010081 goto fail_res;
82
Mark Brown4c90aa92010-11-26 17:19:34 +000083 if (cell->pm_runtime_no_callbacks)
84 pm_runtime_no_callbacks(&pdev->dev);
85
Ian Moltona87903f2008-07-25 22:59:29 +010086 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010087
88 return 0;
89
90/* platform_device_del(pdev); */
Ian Moltona87903f2008-07-25 22:59:29 +010091fail_res:
92 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010093fail_device:
94 platform_device_put(pdev);
95fail_alloc:
96 return ret;
97}
98
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020099int mfd_add_devices(struct device *parent, int id,
Ben Dooks7f71ac92008-07-28 18:29:09 +0200100 const struct mfd_cell *cells, int n_devs,
101 struct resource *mem_base,
102 int irq_base)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100103{
104 int i;
105 int ret = 0;
106
107 for (i = 0; i < n_devs; i++) {
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200108 ret = mfd_add_device(parent, id, cells + i, mem_base, irq_base);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100109 if (ret)
110 break;
111 }
112
113 if (ret)
114 mfd_remove_devices(parent);
115
116 return ret;
117}
118EXPORT_SYMBOL(mfd_add_devices);
119
120static int mfd_remove_devices_fn(struct device *dev, void *unused)
121{
Ben Dooks96ee4192008-07-28 18:26:42 +0200122 platform_device_unregister(to_platform_device(dev));
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100123 return 0;
124}
125
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200126void mfd_remove_devices(struct device *parent)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100127{
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200128 device_for_each_child(parent, NULL, mfd_remove_devices_fn);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100129}
130EXPORT_SYMBOL(mfd_remove_devices);
131
132MODULE_LICENSE("GPL");
133MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");