blob: 60b60dc63dddbc610d0ac1cf02111066b4af5095 [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
Mika Westerberg6ab34302014-09-16 14:52:36 +030081#if IS_ENABLED(CONFIG_ACPI)
82static void mfd_acpi_add_device(const struct mfd_cell *cell,
83 struct platform_device *pdev)
84{
Andy Shevchenko98a3be42015-10-23 12:16:41 +030085 const struct mfd_cell_acpi_match *match = cell->acpi_match;
86 struct acpi_device *parent, *child;
Mika Westerberg6ab34302014-09-16 14:52:36 +030087 struct acpi_device *adev;
88
Andy Shevchenko98a3be42015-10-23 12:16:41 +030089 parent = ACPI_COMPANION(pdev->dev.parent);
90 if (!parent)
Mika Westerberg6ab34302014-09-16 14:52:36 +030091 return;
92
93 /*
Andy Shevchenko98a3be42015-10-23 12:16:41 +030094 * MFD child device gets its ACPI handle either from the ACPI device
95 * directly under the parent that matches the either _HID or _CID, or
96 * _ADR or it will use the parent handle if is no ID is given.
97 *
98 * Note that use of _ADR is a grey area in the ACPI specification,
99 * though Intel Galileo Gen2 is using it to distinguish the children
100 * devices.
Mika Westerberg6ab34302014-09-16 14:52:36 +0300101 */
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300102 adev = parent;
103 if (match) {
104 if (match->pnpid) {
105 struct acpi_device_id ids[2] = {};
Mika Westerberg6ab34302014-09-16 14:52:36 +0300106
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300107 strlcpy(ids[0].id, match->pnpid, sizeof(ids[0].id));
108 list_for_each_entry(child, &parent->children, node) {
109 if (acpi_match_device_ids(child, ids)) {
110 adev = child;
111 break;
112 }
Mika Westerberg6ab34302014-09-16 14:52:36 +0300113 }
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300114 } else {
115 unsigned long long adr;
116 acpi_status status;
117
118 list_for_each_entry(child, &parent->children, node) {
119 status = acpi_evaluate_integer(child->handle,
120 "_ADR", NULL,
121 &adr);
122 if (ACPI_SUCCESS(status) && match->adr == adr) {
123 adev = child;
124 break;
125 }
126 }
127 }
Mika Westerberg6ab34302014-09-16 14:52:36 +0300128 }
129
130 ACPI_COMPANION_SET(&pdev->dev, adev);
131}
132#else
133static inline void mfd_acpi_add_device(const struct mfd_cell *cell,
134 struct platform_device *pdev)
135{
136}
137#endif
138
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200139static int mfd_add_device(struct device *parent, int id,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100140 const struct mfd_cell *cell, atomic_t *usage_count,
Ben Dooks7f71ac92008-07-28 18:29:09 +0200141 struct resource *mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800142 int irq_base, struct irq_domain *domain)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100143{
Ian Moltona87903f2008-07-25 22:59:29 +0100144 struct resource *res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100145 struct platform_device *pdev;
Lee Jonesc94bb232012-06-29 19:01:03 +0200146 struct device_node *np = NULL;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100147 int ret = -ENOMEM;
Johan Hovold6e3f62f2014-09-26 12:55:33 +0200148 int platform_id;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100149 int r;
150
Johan Hovolda77c50b2015-03-25 12:07:05 +0100151 if (id == PLATFORM_DEVID_AUTO)
Johan Hovold6e3f62f2014-09-26 12:55:33 +0200152 platform_id = id;
153 else
154 platform_id = id + cell->id;
155
156 pdev = platform_device_alloc(cell->name, platform_id);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100157 if (!pdev)
158 goto fail_alloc;
159
Ian Moltona87903f2008-07-25 22:59:29 +0100160 res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL);
161 if (!res)
162 goto fail_device;
163
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200164 pdev->dev.parent = parent;
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000165 pdev->dev.type = &mfd_dev_type;
Benedikt Sprangerb018e132013-08-13 11:08:38 +0200166 pdev->dev.dma_mask = parent->dma_mask;
167 pdev->dev.dma_parms = parent->dma_parms;
Boris BREZILLON4f08df12014-09-22 21:37:55 +0200168 pdev->dev.coherent_dma_mask = parent->coherent_dma_mask;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100169
Charles Keepaxd137be02014-04-24 18:27:25 +0100170 ret = regulator_bulk_register_supply_alias(
Charles Keepax7fcd4272013-10-15 20:14:21 +0100171 &pdev->dev, cell->parent_supplies,
172 parent, cell->parent_supplies,
173 cell->num_parent_supplies);
174 if (ret < 0)
175 goto fail_res;
176
Lee Jonesc94bb232012-06-29 19:01:03 +0200177 if (parent->of_node && cell->of_compatible) {
178 for_each_child_of_node(parent->of_node, np) {
179 if (of_device_is_compatible(np, cell->of_compatible)) {
180 pdev->dev.of_node = np;
Lee Jonesc94bb232012-06-29 19:01:03 +0200181 break;
182 }
183 }
184 }
185
Mika Westerberg6ab34302014-09-16 14:52:36 +0300186 mfd_acpi_add_device(cell, pdev);
187
Samuel Ortizeb895602011-04-06 16:52:52 +0200188 if (cell->pdata_size) {
189 ret = platform_device_add_data(pdev,
190 cell->platform_data, cell->pdata_size);
191 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100192 goto fail_alias;
Samuel Ortizeb895602011-04-06 16:52:52 +0200193 }
194
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100195 ret = mfd_platform_add_cell(pdev, cell, usage_count);
Andres Salomonfe891a02011-02-17 19:07:09 -0800196 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100197 goto fail_alias;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100198
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100199 for (r = 0; r < cell->num_resources; r++) {
200 res[r].name = cell->resources[r].name;
201 res[r].flags = cell->resources[r].flags;
202
203 /* Find out base to use */
Samuel Ortizf03cfcb2010-03-26 01:09:04 +0100204 if ((cell->resources[r].flags & IORESOURCE_MEM) && mem_base) {
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100205 res[r].parent = mem_base;
206 res[r].start = mem_base->start +
207 cell->resources[r].start;
208 res[r].end = mem_base->start +
209 cell->resources[r].end;
210 } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
Lee Jonesc94bb232012-06-29 19:01:03 +0200211 if (domain) {
212 /* Unable to create mappings for IRQ ranges. */
213 WARN_ON(cell->resources[r].start !=
214 cell->resources[r].end);
215 res[r].start = res[r].end = irq_create_mapping(
216 domain, cell->resources[r].start);
217 } else {
218 res[r].start = irq_base +
219 cell->resources[r].start;
220 res[r].end = irq_base +
221 cell->resources[r].end;
222 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100223 } else {
224 res[r].parent = cell->resources[r].parent;
225 res[r].start = cell->resources[r].start;
226 res[r].end = cell->resources[r].end;
227 }
Samuel Ortiz91feded2010-02-19 11:07:59 +0100228
Daniel Drake5f2545f2010-09-30 21:55:36 +0100229 if (!cell->ignore_resource_conflicts) {
Lorenzo Pieralisiec40c602015-05-01 10:41:10 +0100230 if (has_acpi_companion(&pdev->dev)) {
231 ret = acpi_check_resource_conflict(&res[r]);
232 if (ret)
233 goto fail_alias;
234 }
Daniel Drake5f2545f2010-09-30 21:55:36 +0100235 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100236 }
237
Axel Lin8af5fe32010-05-31 17:30:55 +0800238 ret = platform_device_add_resources(pdev, res, cell->num_resources);
239 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100240 goto fail_alias;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100241
242 ret = platform_device_add(pdev);
243 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100244 goto fail_alias;
Ian Moltona87903f2008-07-25 22:59:29 +0100245
Mark Brown4c90aa92010-11-26 17:19:34 +0000246 if (cell->pm_runtime_no_callbacks)
247 pm_runtime_no_callbacks(&pdev->dev);
248
Ian Moltona87903f2008-07-25 22:59:29 +0100249 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100250
251 return 0;
252
Charles Keepax7fcd4272013-10-15 20:14:21 +0100253fail_alias:
Charles Keepaxd137be02014-04-24 18:27:25 +0100254 regulator_bulk_unregister_supply_alias(&pdev->dev,
255 cell->parent_supplies,
256 cell->num_parent_supplies);
Ian Moltona87903f2008-07-25 22:59:29 +0100257fail_res:
258 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100259fail_device:
260 platform_device_put(pdev);
261fail_alloc:
262 return ret;
263}
264
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200265int mfd_add_devices(struct device *parent, int id,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100266 const struct mfd_cell *cells, int n_devs,
Ben Dooks7f71ac92008-07-28 18:29:09 +0200267 struct resource *mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800268 int irq_base, struct irq_domain *domain)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100269{
270 int i;
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100271 int ret;
Andres Salomon1e29af62011-02-17 19:07:34 -0800272 atomic_t *cnts;
273
274 /* initialize reference counting for all cells */
Axel Lind1b5c5e2012-02-12 17:43:22 +0800275 cnts = kcalloc(n_devs, sizeof(*cnts), GFP_KERNEL);
Andres Salomon1e29af62011-02-17 19:07:34 -0800276 if (!cnts)
277 return -ENOMEM;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100278
279 for (i = 0; i < n_devs; i++) {
Andres Salomon1e29af62011-02-17 19:07:34 -0800280 atomic_set(&cnts[i], 0);
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100281 ret = mfd_add_device(parent, id, cells + i, cnts + i, mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800282 irq_base, domain);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100283 if (ret)
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100284 goto fail;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100285 }
286
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100287 return 0;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100288
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100289fail:
290 if (i)
291 mfd_remove_devices(parent);
292 else
293 kfree(cnts);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100294 return ret;
295}
296EXPORT_SYMBOL(mfd_add_devices);
297
Andres Salomon1e29af62011-02-17 19:07:34 -0800298static int mfd_remove_devices_fn(struct device *dev, void *c)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100299{
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000300 struct platform_device *pdev;
301 const struct mfd_cell *cell;
Andres Salomon1e29af62011-02-17 19:07:34 -0800302 atomic_t **usage_count = c;
303
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000304 if (dev->type != &mfd_dev_type)
305 return 0;
306
307 pdev = to_platform_device(dev);
308 cell = mfd_get_cell(pdev);
309
Charles Keepaxd137be02014-04-24 18:27:25 +0100310 regulator_bulk_unregister_supply_alias(dev, cell->parent_supplies,
311 cell->num_parent_supplies);
312
Andres Salomon1e29af62011-02-17 19:07:34 -0800313 /* find the base address of usage_count pointers (for freeing) */
314 if (!*usage_count || (cell->usage_count < *usage_count))
315 *usage_count = cell->usage_count;
316
317 platform_device_unregister(pdev);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100318 return 0;
319}
320
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200321void mfd_remove_devices(struct device *parent)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100322{
Andres Salomon1e29af62011-02-17 19:07:34 -0800323 atomic_t *cnts = NULL;
324
Andy Shevchenkob9a8a272015-07-27 18:04:01 +0300325 device_for_each_child_reverse(parent, &cnts, mfd_remove_devices_fn);
Andres Salomon1e29af62011-02-17 19:07:34 -0800326 kfree(cnts);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100327}
328EXPORT_SYMBOL(mfd_remove_devices);
329
Andres Salomonfa1df692011-03-21 19:19:35 -0700330int mfd_clone_cell(const char *cell, const char **clones, size_t n_clones)
Andres Salomona9bbba92011-02-17 19:07:35 -0800331{
332 struct mfd_cell cell_entry;
333 struct device *dev;
334 struct platform_device *pdev;
Andres Salomonfa1df692011-03-21 19:19:35 -0700335 int i;
Andres Salomona9bbba92011-02-17 19:07:35 -0800336
337 /* fetch the parent cell's device (should already be registered!) */
338 dev = bus_find_device_by_name(&platform_bus_type, NULL, cell);
339 if (!dev) {
340 printk(KERN_ERR "failed to find device for cell %s\n", cell);
341 return -ENODEV;
342 }
343 pdev = to_platform_device(dev);
344 memcpy(&cell_entry, mfd_get_cell(pdev), sizeof(cell_entry));
345
346 WARN_ON(!cell_entry.enable);
347
Andres Salomonfa1df692011-03-21 19:19:35 -0700348 for (i = 0; i < n_clones; i++) {
349 cell_entry.name = clones[i];
350 /* don't give up if a single call fails; just report error */
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100351 if (mfd_add_device(pdev->dev.parent, -1, &cell_entry,
352 cell_entry.usage_count, NULL, 0, NULL))
Andres Salomonfa1df692011-03-21 19:19:35 -0700353 dev_err(dev, "failed to create platform device '%s'\n",
354 clones[i]);
355 }
356
357 return 0;
Andres Salomona9bbba92011-02-17 19:07:35 -0800358}
Andres Salomonfa1df692011-03-21 19:19:35 -0700359EXPORT_SYMBOL(mfd_clone_cell);
Andres Salomona9bbba92011-02-17 19:07:35 -0800360
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100361MODULE_LICENSE("GPL");
362MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");