blob: 5d0fbe1e097a3b17873dacc714ebca756f57a131 [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>
Paul Gortmaker4e36dd32011-07-03 15:13:27 -040020#include <linux/module.h>
Lee Jonesc94bb232012-06-29 19:01:03 +020021#include <linux/irqdomain.h>
22#include <linux/of.h>
Charles Keepax7fcd4272013-10-15 20:14:21 +010023#include <linux/regulator/consumer.h>
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010024
Charles Keepaxb9fbb622012-11-09 16:15:28 +000025static struct device_type mfd_dev_type = {
26 .name = "mfd_device",
27};
28
Andres Salomonf77289a2011-03-03 09:51:58 -080029int mfd_cell_enable(struct platform_device *pdev)
Andres Salomon1e29af62011-02-17 19:07:34 -080030{
31 const struct mfd_cell *cell = mfd_get_cell(pdev);
32 int err = 0;
33
34 /* only call enable hook if the cell wasn't previously enabled */
35 if (atomic_inc_return(cell->usage_count) == 1)
36 err = cell->enable(pdev);
37
38 /* if the enable hook failed, decrement counter to allow retries */
39 if (err)
40 atomic_dec(cell->usage_count);
41
42 return err;
43}
Andres Salomonf77289a2011-03-03 09:51:58 -080044EXPORT_SYMBOL(mfd_cell_enable);
Andres Salomon1e29af62011-02-17 19:07:34 -080045
Andres Salomonf77289a2011-03-03 09:51:58 -080046int mfd_cell_disable(struct platform_device *pdev)
Andres Salomon1e29af62011-02-17 19:07:34 -080047{
48 const struct mfd_cell *cell = mfd_get_cell(pdev);
49 int err = 0;
50
51 /* only disable if no other clients are using it */
52 if (atomic_dec_return(cell->usage_count) == 0)
53 err = cell->disable(pdev);
54
55 /* if the disable hook failed, increment to allow retries */
56 if (err)
57 atomic_inc(cell->usage_count);
58
59 /* sanity check; did someone call disable too many times? */
60 WARN_ON(atomic_read(cell->usage_count) < 0);
61
62 return err;
63}
Andres Salomonf77289a2011-03-03 09:51:58 -080064EXPORT_SYMBOL(mfd_cell_disable);
Andres Salomon1e29af62011-02-17 19:07:34 -080065
Samuel Ortize710d7d2011-04-08 00:43:01 +020066static int mfd_platform_add_cell(struct platform_device *pdev,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +010067 const struct mfd_cell *cell,
68 atomic_t *usage_count)
Samuel Ortize710d7d2011-04-08 00:43:01 +020069{
70 if (!cell)
71 return 0;
72
73 pdev->mfd_cell = kmemdup(cell, sizeof(*cell), GFP_KERNEL);
74 if (!pdev->mfd_cell)
75 return -ENOMEM;
76
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +010077 pdev->mfd_cell->usage_count = usage_count;
Samuel Ortize710d7d2011-04-08 00:43:01 +020078 return 0;
79}
80
Dmitry Baryshkov424f5252008-07-29 01:30:26 +020081static int mfd_add_device(struct device *parent, int id,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +010082 const struct mfd_cell *cell, atomic_t *usage_count,
Ben Dooks7f71ac92008-07-28 18:29:09 +020083 struct resource *mem_base,
Mark Brown0848c942012-09-11 15:16:36 +080084 int irq_base, struct irq_domain *domain)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010085{
Ian Moltona87903f2008-07-25 22:59:29 +010086 struct resource *res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010087 struct platform_device *pdev;
Lee Jonesc94bb232012-06-29 19:01:03 +020088 struct device_node *np = NULL;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010089 int ret = -ENOMEM;
90 int r;
91
Mark Brown3bed6e42009-07-27 14:45:51 +010092 pdev = platform_device_alloc(cell->name, id + cell->id);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010093 if (!pdev)
94 goto fail_alloc;
95
Ian Moltona87903f2008-07-25 22:59:29 +010096 res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL);
97 if (!res)
98 goto fail_device;
99
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200100 pdev->dev.parent = parent;
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000101 pdev->dev.type = &mfd_dev_type;
Benedikt Sprangerb018e132013-08-13 11:08:38 +0200102 pdev->dev.dma_mask = parent->dma_mask;
103 pdev->dev.dma_parms = parent->dma_parms;
Boris BREZILLON4f08df12014-09-22 21:37:55 +0200104 pdev->dev.coherent_dma_mask = parent->coherent_dma_mask;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100105
Charles Keepaxd137be02014-04-24 18:27:25 +0100106 ret = regulator_bulk_register_supply_alias(
Charles Keepax7fcd4272013-10-15 20:14:21 +0100107 &pdev->dev, cell->parent_supplies,
108 parent, cell->parent_supplies,
109 cell->num_parent_supplies);
110 if (ret < 0)
111 goto fail_res;
112
Lee Jonesc94bb232012-06-29 19:01:03 +0200113 if (parent->of_node && cell->of_compatible) {
114 for_each_child_of_node(parent->of_node, np) {
115 if (of_device_is_compatible(np, cell->of_compatible)) {
116 pdev->dev.of_node = np;
Lee Jonesc94bb232012-06-29 19:01:03 +0200117 break;
118 }
119 }
120 }
121
Samuel Ortizeb895602011-04-06 16:52:52 +0200122 if (cell->pdata_size) {
123 ret = platform_device_add_data(pdev,
124 cell->platform_data, cell->pdata_size);
125 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100126 goto fail_alias;
Samuel Ortizeb895602011-04-06 16:52:52 +0200127 }
128
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100129 ret = mfd_platform_add_cell(pdev, cell, usage_count);
Andres Salomonfe891a02011-02-17 19:07:09 -0800130 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100131 goto fail_alias;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100132
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100133 for (r = 0; r < cell->num_resources; r++) {
134 res[r].name = cell->resources[r].name;
135 res[r].flags = cell->resources[r].flags;
136
137 /* Find out base to use */
Samuel Ortizf03cfcb2010-03-26 01:09:04 +0100138 if ((cell->resources[r].flags & IORESOURCE_MEM) && mem_base) {
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100139 res[r].parent = mem_base;
140 res[r].start = mem_base->start +
141 cell->resources[r].start;
142 res[r].end = mem_base->start +
143 cell->resources[r].end;
144 } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
Lee Jonesc94bb232012-06-29 19:01:03 +0200145 if (domain) {
146 /* Unable to create mappings for IRQ ranges. */
147 WARN_ON(cell->resources[r].start !=
148 cell->resources[r].end);
149 res[r].start = res[r].end = irq_create_mapping(
150 domain, cell->resources[r].start);
151 } else {
152 res[r].start = irq_base +
153 cell->resources[r].start;
154 res[r].end = irq_base +
155 cell->resources[r].end;
156 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100157 } else {
158 res[r].parent = cell->resources[r].parent;
159 res[r].start = cell->resources[r].start;
160 res[r].end = cell->resources[r].end;
161 }
Samuel Ortiz91feded2010-02-19 11:07:59 +0100162
Daniel Drake5f2545f2010-09-30 21:55:36 +0100163 if (!cell->ignore_resource_conflicts) {
Jean Delvare855cc452012-02-18 17:54:23 +0100164 ret = acpi_check_resource_conflict(&res[r]);
Daniel Drake5f2545f2010-09-30 21:55:36 +0100165 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100166 goto fail_alias;
Daniel Drake5f2545f2010-09-30 21:55:36 +0100167 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100168 }
169
Axel Lin8af5fe32010-05-31 17:30:55 +0800170 ret = platform_device_add_resources(pdev, res, cell->num_resources);
171 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100172 goto fail_alias;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100173
174 ret = platform_device_add(pdev);
175 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100176 goto fail_alias;
Ian Moltona87903f2008-07-25 22:59:29 +0100177
Mark Brown4c90aa92010-11-26 17:19:34 +0000178 if (cell->pm_runtime_no_callbacks)
179 pm_runtime_no_callbacks(&pdev->dev);
180
Ian Moltona87903f2008-07-25 22:59:29 +0100181 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100182
183 return 0;
184
Charles Keepax7fcd4272013-10-15 20:14:21 +0100185fail_alias:
Charles Keepaxd137be02014-04-24 18:27:25 +0100186 regulator_bulk_unregister_supply_alias(&pdev->dev,
187 cell->parent_supplies,
188 cell->num_parent_supplies);
Ian Moltona87903f2008-07-25 22:59:29 +0100189fail_res:
190 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100191fail_device:
192 platform_device_put(pdev);
193fail_alloc:
194 return ret;
195}
196
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200197int mfd_add_devices(struct device *parent, int id,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100198 const struct mfd_cell *cells, int n_devs,
Ben Dooks7f71ac92008-07-28 18:29:09 +0200199 struct resource *mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800200 int irq_base, struct irq_domain *domain)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100201{
202 int i;
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100203 int ret;
Andres Salomon1e29af62011-02-17 19:07:34 -0800204 atomic_t *cnts;
205
206 /* initialize reference counting for all cells */
Axel Lind1b5c5e2012-02-12 17:43:22 +0800207 cnts = kcalloc(n_devs, sizeof(*cnts), GFP_KERNEL);
Andres Salomon1e29af62011-02-17 19:07:34 -0800208 if (!cnts)
209 return -ENOMEM;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100210
211 for (i = 0; i < n_devs; i++) {
Andres Salomon1e29af62011-02-17 19:07:34 -0800212 atomic_set(&cnts[i], 0);
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100213 ret = mfd_add_device(parent, id, cells + i, cnts + i, mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800214 irq_base, domain);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100215 if (ret)
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100216 goto fail;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100217 }
218
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100219 return 0;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100220
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100221fail:
222 if (i)
223 mfd_remove_devices(parent);
224 else
225 kfree(cnts);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100226 return ret;
227}
228EXPORT_SYMBOL(mfd_add_devices);
229
Andres Salomon1e29af62011-02-17 19:07:34 -0800230static int mfd_remove_devices_fn(struct device *dev, void *c)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100231{
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000232 struct platform_device *pdev;
233 const struct mfd_cell *cell;
Andres Salomon1e29af62011-02-17 19:07:34 -0800234 atomic_t **usage_count = c;
235
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000236 if (dev->type != &mfd_dev_type)
237 return 0;
238
239 pdev = to_platform_device(dev);
240 cell = mfd_get_cell(pdev);
241
Charles Keepaxd137be02014-04-24 18:27:25 +0100242 regulator_bulk_unregister_supply_alias(dev, cell->parent_supplies,
243 cell->num_parent_supplies);
244
Andres Salomon1e29af62011-02-17 19:07:34 -0800245 /* find the base address of usage_count pointers (for freeing) */
246 if (!*usage_count || (cell->usage_count < *usage_count))
247 *usage_count = cell->usage_count;
248
249 platform_device_unregister(pdev);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100250 return 0;
251}
252
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200253void mfd_remove_devices(struct device *parent)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100254{
Andres Salomon1e29af62011-02-17 19:07:34 -0800255 atomic_t *cnts = NULL;
256
257 device_for_each_child(parent, &cnts, mfd_remove_devices_fn);
258 kfree(cnts);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100259}
260EXPORT_SYMBOL(mfd_remove_devices);
261
Andres Salomonfa1df692011-03-21 19:19:35 -0700262int mfd_clone_cell(const char *cell, const char **clones, size_t n_clones)
Andres Salomona9bbba92011-02-17 19:07:35 -0800263{
264 struct mfd_cell cell_entry;
265 struct device *dev;
266 struct platform_device *pdev;
Andres Salomonfa1df692011-03-21 19:19:35 -0700267 int i;
Andres Salomona9bbba92011-02-17 19:07:35 -0800268
269 /* fetch the parent cell's device (should already be registered!) */
270 dev = bus_find_device_by_name(&platform_bus_type, NULL, cell);
271 if (!dev) {
272 printk(KERN_ERR "failed to find device for cell %s\n", cell);
273 return -ENODEV;
274 }
275 pdev = to_platform_device(dev);
276 memcpy(&cell_entry, mfd_get_cell(pdev), sizeof(cell_entry));
277
278 WARN_ON(!cell_entry.enable);
279
Andres Salomonfa1df692011-03-21 19:19:35 -0700280 for (i = 0; i < n_clones; i++) {
281 cell_entry.name = clones[i];
282 /* don't give up if a single call fails; just report error */
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100283 if (mfd_add_device(pdev->dev.parent, -1, &cell_entry,
284 cell_entry.usage_count, NULL, 0, NULL))
Andres Salomonfa1df692011-03-21 19:19:35 -0700285 dev_err(dev, "failed to create platform device '%s'\n",
286 clones[i]);
287 }
288
289 return 0;
Andres Salomona9bbba92011-02-17 19:07:35 -0800290}
Andres Salomonfa1df692011-03-21 19:19:35 -0700291EXPORT_SYMBOL(mfd_clone_cell);
Andres Salomona9bbba92011-02-17 19:07:35 -0800292
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100293MODULE_LICENSE("GPL");
294MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");