blob: aa17f4bddc56a1a77fee6f1a641e064f3aed1059 [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>
18
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020019static int mfd_add_device(struct device *parent, int id,
Ben Dooks7f71ac92008-07-28 18:29:09 +020020 const struct mfd_cell *cell,
21 struct resource *mem_base,
22 int irq_base)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010023{
Ian Moltona87903f2008-07-25 22:59:29 +010024 struct resource *res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010025 struct platform_device *pdev;
26 int ret = -ENOMEM;
27 int r;
28
Mark Brown3bed6e42009-07-27 14:45:51 +010029 pdev = platform_device_alloc(cell->name, id + cell->id);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010030 if (!pdev)
31 goto fail_alloc;
32
Ian Moltona87903f2008-07-25 22:59:29 +010033 res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL);
34 if (!res)
35 goto fail_device;
36
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020037 pdev->dev.parent = parent;
Mark Brown44faac32008-12-18 10:54:12 +010038 platform_set_drvdata(pdev, cell->driver_data);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010039
40 ret = platform_device_add_data(pdev,
Mike Rapoport56edb582008-07-29 01:23:32 +020041 cell->platform_data, cell->data_size);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010042 if (ret)
Ian Moltona87903f2008-07-25 22:59:29 +010043 goto fail_res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010044
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010045 for (r = 0; r < cell->num_resources; r++) {
46 res[r].name = cell->resources[r].name;
47 res[r].flags = cell->resources[r].flags;
48
49 /* Find out base to use */
50 if (cell->resources[r].flags & IORESOURCE_MEM) {
51 res[r].parent = mem_base;
52 res[r].start = mem_base->start +
53 cell->resources[r].start;
54 res[r].end = mem_base->start +
55 cell->resources[r].end;
56 } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
57 res[r].start = irq_base +
58 cell->resources[r].start;
59 res[r].end = irq_base +
60 cell->resources[r].end;
61 } else {
62 res[r].parent = cell->resources[r].parent;
63 res[r].start = cell->resources[r].start;
64 res[r].end = cell->resources[r].end;
65 }
Samuel Ortiz91feded2010-02-19 11:07:59 +010066
67 ret = acpi_check_resource_conflict(res);
68 if (ret)
69 goto fail_res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010070 }
71
72 platform_device_add_resources(pdev, res, cell->num_resources);
73
74 ret = platform_device_add(pdev);
75 if (ret)
Ian Moltona87903f2008-07-25 22:59:29 +010076 goto fail_res;
77
78 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010079
80 return 0;
81
82/* platform_device_del(pdev); */
Ian Moltona87903f2008-07-25 22:59:29 +010083fail_res:
84 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010085fail_device:
86 platform_device_put(pdev);
87fail_alloc:
88 return ret;
89}
90
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020091int mfd_add_devices(struct device *parent, int id,
Ben Dooks7f71ac92008-07-28 18:29:09 +020092 const struct mfd_cell *cells, int n_devs,
93 struct resource *mem_base,
94 int irq_base)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010095{
96 int i;
97 int ret = 0;
98
99 for (i = 0; i < n_devs; i++) {
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200100 ret = mfd_add_device(parent, id, cells + i, mem_base, irq_base);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100101 if (ret)
102 break;
103 }
104
105 if (ret)
106 mfd_remove_devices(parent);
107
108 return ret;
109}
110EXPORT_SYMBOL(mfd_add_devices);
111
112static int mfd_remove_devices_fn(struct device *dev, void *unused)
113{
Ben Dooks96ee4192008-07-28 18:26:42 +0200114 platform_device_unregister(to_platform_device(dev));
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100115 return 0;
116}
117
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200118void mfd_remove_devices(struct device *parent)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100119{
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200120 device_for_each_child(parent, NULL, mfd_remove_devices_fn);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100121}
122EXPORT_SYMBOL(mfd_remove_devices);
123
124MODULE_LICENSE("GPL");
125MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");