blob: 1823a57b7d8f06f083f921bd7e9cfaa4f40c98a8 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010019
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020020static int mfd_add_device(struct device *parent, int id,
Ben Dooks7f71ac92008-07-28 18:29:09 +020021 const struct mfd_cell *cell,
22 struct resource *mem_base,
23 int irq_base)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010024{
Ian Moltona87903f2008-07-25 22:59:29 +010025 struct resource *res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010026 struct platform_device *pdev;
27 int ret = -ENOMEM;
28 int r;
29
Mark Brown3bed6e42009-07-27 14:45:51 +010030 pdev = platform_device_alloc(cell->name, id + cell->id);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010031 if (!pdev)
32 goto fail_alloc;
33
Ian Moltona87903f2008-07-25 22:59:29 +010034 res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL);
35 if (!res)
36 goto fail_device;
37
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020038 pdev->dev.parent = parent;
Mark Brown44faac32008-12-18 10:54:12 +010039 platform_set_drvdata(pdev, cell->driver_data);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010040
41 ret = platform_device_add_data(pdev,
Mike Rapoport56edb582008-07-29 01:23:32 +020042 cell->platform_data, cell->data_size);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010043 if (ret)
Ian Moltona87903f2008-07-25 22:59:29 +010044 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
68 ret = acpi_check_resource_conflict(res);
69 if (ret)
70 goto fail_res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010071 }
72
Axel Lin8af5fe32010-05-31 17:30:55 +080073 ret = platform_device_add_resources(pdev, res, cell->num_resources);
74 if (ret)
75 goto fail_res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010076
77 ret = platform_device_add(pdev);
78 if (ret)
Ian Moltona87903f2008-07-25 22:59:29 +010079 goto fail_res;
80
81 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010082
83 return 0;
84
85/* platform_device_del(pdev); */
Ian Moltona87903f2008-07-25 22:59:29 +010086fail_res:
87 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010088fail_device:
89 platform_device_put(pdev);
90fail_alloc:
91 return ret;
92}
93
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020094int mfd_add_devices(struct device *parent, int id,
Ben Dooks7f71ac92008-07-28 18:29:09 +020095 const struct mfd_cell *cells, int n_devs,
96 struct resource *mem_base,
97 int irq_base)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010098{
99 int i;
100 int ret = 0;
101
102 for (i = 0; i < n_devs; i++) {
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200103 ret = mfd_add_device(parent, id, cells + i, mem_base, irq_base);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100104 if (ret)
105 break;
106 }
107
108 if (ret)
109 mfd_remove_devices(parent);
110
111 return ret;
112}
113EXPORT_SYMBOL(mfd_add_devices);
114
115static int mfd_remove_devices_fn(struct device *dev, void *unused)
116{
Ben Dooks96ee4192008-07-28 18:26:42 +0200117 platform_device_unregister(to_platform_device(dev));
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100118 return 0;
119}
120
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200121void mfd_remove_devices(struct device *parent)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100122{
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200123 device_for_each_child(parent, NULL, mfd_remove_devices_fn);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100124}
125EXPORT_SYMBOL(mfd_remove_devices);
126
127MODULE_LICENSE("GPL");
128MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");