blob: 9c9c126ed334d406320088ce29e66a8f3958f15d [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>
16#include <linux/mfd/core.h>
17
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020018static int mfd_add_device(struct device *parent, int id,
Ben Dooks7f71ac92008-07-28 18:29:09 +020019 const struct mfd_cell *cell,
20 struct resource *mem_base,
21 int irq_base)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010022{
23 struct resource res[cell->num_resources];
24 struct platform_device *pdev;
25 int ret = -ENOMEM;
26 int r;
27
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020028 pdev = platform_device_alloc(cell->name, id);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010029 if (!pdev)
30 goto fail_alloc;
31
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020032 pdev->dev.parent = parent;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010033
34 ret = platform_device_add_data(pdev,
Mike Rapoport56edb582008-07-29 01:23:32 +020035 cell->platform_data, cell->data_size);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010036 if (ret)
37 goto fail_device;
38
Andrew Mortonc82dd532008-07-25 01:45:22 -070039 memset(res, 0, sizeof(res));
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010040 for (r = 0; r < cell->num_resources; r++) {
41 res[r].name = cell->resources[r].name;
42 res[r].flags = cell->resources[r].flags;
43
44 /* Find out base to use */
45 if (cell->resources[r].flags & IORESOURCE_MEM) {
46 res[r].parent = mem_base;
47 res[r].start = mem_base->start +
48 cell->resources[r].start;
49 res[r].end = mem_base->start +
50 cell->resources[r].end;
51 } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
52 res[r].start = irq_base +
53 cell->resources[r].start;
54 res[r].end = irq_base +
55 cell->resources[r].end;
56 } else {
57 res[r].parent = cell->resources[r].parent;
58 res[r].start = cell->resources[r].start;
59 res[r].end = cell->resources[r].end;
60 }
61 }
62
63 platform_device_add_resources(pdev, res, cell->num_resources);
64
65 ret = platform_device_add(pdev);
66 if (ret)
67 goto fail_device;
68
69 return 0;
70
71/* platform_device_del(pdev); */
72fail_device:
73 platform_device_put(pdev);
74fail_alloc:
75 return ret;
76}
77
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020078int mfd_add_devices(struct device *parent, int id,
Ben Dooks7f71ac92008-07-28 18:29:09 +020079 const struct mfd_cell *cells, int n_devs,
80 struct resource *mem_base,
81 int irq_base)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010082{
83 int i;
84 int ret = 0;
85
86 for (i = 0; i < n_devs; i++) {
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020087 ret = mfd_add_device(parent, id, cells + i, mem_base, irq_base);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010088 if (ret)
89 break;
90 }
91
92 if (ret)
93 mfd_remove_devices(parent);
94
95 return ret;
96}
97EXPORT_SYMBOL(mfd_add_devices);
98
99static int mfd_remove_devices_fn(struct device *dev, void *unused)
100{
Ben Dooks96ee4192008-07-28 18:26:42 +0200101 platform_device_unregister(to_platform_device(dev));
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100102 return 0;
103}
104
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200105void mfd_remove_devices(struct device *parent)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100106{
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200107 device_for_each_child(parent, NULL, mfd_remove_devices_fn);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100108}
109EXPORT_SYMBOL(mfd_remove_devices);
110
111MODULE_LICENSE("GPL");
112MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");