blob: dbf684c4ebfb228979e5cd4d61bb2d4f393f8187 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +01002/*
3 * drivers/mfd/mfd-core.c
4 *
5 * core MFD support
6 * Copyright (c) 2006 Ian Molton
7 * Copyright (c) 2007,2008 Dmitry Baryshkov
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +01008 */
9
10#include <linux/kernel.h>
11#include <linux/platform_device.h>
Samuel Ortiz91feded2010-02-19 11:07:59 +010012#include <linux/acpi.h>
Andy Shevchenko4d215ca2015-11-30 17:11:40 +020013#include <linux/property.h>
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010014#include <linux/mfd/core.h>
Mark Brown4c90aa92010-11-26 17:19:34 +000015#include <linux/pm_runtime.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Paul Gortmaker4e36dd32011-07-03 15:13:27 -040017#include <linux/module.h>
Lee Jonesc94bb232012-06-29 19:01:03 +020018#include <linux/irqdomain.h>
19#include <linux/of.h>
Charles Keepax7fcd4272013-10-15 20:14:21 +010020#include <linux/regulator/consumer.h>
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010021
Charles Keepaxb9fbb622012-11-09 16:15:28 +000022static struct device_type mfd_dev_type = {
23 .name = "mfd_device",
24};
25
Andres Salomonf77289a2011-03-03 09:51:58 -080026int mfd_cell_enable(struct platform_device *pdev)
Andres Salomon1e29af62011-02-17 19:07:34 -080027{
28 const struct mfd_cell *cell = mfd_get_cell(pdev);
29 int err = 0;
30
31 /* only call enable hook if the cell wasn't previously enabled */
32 if (atomic_inc_return(cell->usage_count) == 1)
33 err = cell->enable(pdev);
34
35 /* if the enable hook failed, decrement counter to allow retries */
36 if (err)
37 atomic_dec(cell->usage_count);
38
39 return err;
40}
Andres Salomonf77289a2011-03-03 09:51:58 -080041EXPORT_SYMBOL(mfd_cell_enable);
Andres Salomon1e29af62011-02-17 19:07:34 -080042
Andres Salomonf77289a2011-03-03 09:51:58 -080043int mfd_cell_disable(struct platform_device *pdev)
Andres Salomon1e29af62011-02-17 19:07:34 -080044{
45 const struct mfd_cell *cell = mfd_get_cell(pdev);
46 int err = 0;
47
48 /* only disable if no other clients are using it */
49 if (atomic_dec_return(cell->usage_count) == 0)
50 err = cell->disable(pdev);
51
52 /* if the disable hook failed, increment to allow retries */
53 if (err)
54 atomic_inc(cell->usage_count);
55
56 /* sanity check; did someone call disable too many times? */
57 WARN_ON(atomic_read(cell->usage_count) < 0);
58
59 return err;
60}
Andres Salomonf77289a2011-03-03 09:51:58 -080061EXPORT_SYMBOL(mfd_cell_disable);
Andres Salomon1e29af62011-02-17 19:07:34 -080062
Samuel Ortize710d7d2011-04-08 00:43:01 +020063static int mfd_platform_add_cell(struct platform_device *pdev,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +010064 const struct mfd_cell *cell,
65 atomic_t *usage_count)
Samuel Ortize710d7d2011-04-08 00:43:01 +020066{
67 if (!cell)
68 return 0;
69
70 pdev->mfd_cell = kmemdup(cell, sizeof(*cell), GFP_KERNEL);
71 if (!pdev->mfd_cell)
72 return -ENOMEM;
73
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +010074 pdev->mfd_cell->usage_count = usage_count;
Samuel Ortize710d7d2011-04-08 00:43:01 +020075 return 0;
76}
77
Mika Westerberg6ab34302014-09-16 14:52:36 +030078#if IS_ENABLED(CONFIG_ACPI)
79static void mfd_acpi_add_device(const struct mfd_cell *cell,
80 struct platform_device *pdev)
81{
Andy Shevchenko98a3be42015-10-23 12:16:41 +030082 const struct mfd_cell_acpi_match *match = cell->acpi_match;
83 struct acpi_device *parent, *child;
Mika Westerberg6ab34302014-09-16 14:52:36 +030084 struct acpi_device *adev;
85
Andy Shevchenko98a3be42015-10-23 12:16:41 +030086 parent = ACPI_COMPANION(pdev->dev.parent);
87 if (!parent)
Mika Westerberg6ab34302014-09-16 14:52:36 +030088 return;
89
90 /*
Andy Shevchenko98a3be42015-10-23 12:16:41 +030091 * MFD child device gets its ACPI handle either from the ACPI device
92 * directly under the parent that matches the either _HID or _CID, or
93 * _ADR or it will use the parent handle if is no ID is given.
94 *
95 * Note that use of _ADR is a grey area in the ACPI specification,
96 * though Intel Galileo Gen2 is using it to distinguish the children
97 * devices.
Mika Westerberg6ab34302014-09-16 14:52:36 +030098 */
Andy Shevchenko98a3be42015-10-23 12:16:41 +030099 adev = parent;
100 if (match) {
101 if (match->pnpid) {
102 struct acpi_device_id ids[2] = {};
Mika Westerberg6ab34302014-09-16 14:52:36 +0300103
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300104 strlcpy(ids[0].id, match->pnpid, sizeof(ids[0].id));
105 list_for_each_entry(child, &parent->children, node) {
Irina Tirdeaee414de2016-03-13 03:02:58 +0200106 if (!acpi_match_device_ids(child, ids)) {
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300107 adev = child;
108 break;
109 }
Mika Westerberg6ab34302014-09-16 14:52:36 +0300110 }
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300111 } else {
112 unsigned long long adr;
113 acpi_status status;
114
115 list_for_each_entry(child, &parent->children, node) {
116 status = acpi_evaluate_integer(child->handle,
117 "_ADR", NULL,
118 &adr);
119 if (ACPI_SUCCESS(status) && match->adr == adr) {
120 adev = child;
121 break;
122 }
123 }
124 }
Mika Westerberg6ab34302014-09-16 14:52:36 +0300125 }
126
127 ACPI_COMPANION_SET(&pdev->dev, adev);
128}
129#else
130static inline void mfd_acpi_add_device(const struct mfd_cell *cell,
131 struct platform_device *pdev)
132{
133}
134#endif
135
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200136static int mfd_add_device(struct device *parent, int id,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100137 const struct mfd_cell *cell, atomic_t *usage_count,
Ben Dooks7f71ac92008-07-28 18:29:09 +0200138 struct resource *mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800139 int irq_base, struct irq_domain *domain)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100140{
Ian Moltona87903f2008-07-25 22:59:29 +0100141 struct resource *res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100142 struct platform_device *pdev;
Lee Jonesc94bb232012-06-29 19:01:03 +0200143 struct device_node *np = NULL;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100144 int ret = -ENOMEM;
Johan Hovold6e3f62f2014-09-26 12:55:33 +0200145 int platform_id;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100146 int r;
147
Johan Hovolda77c50b2015-03-25 12:07:05 +0100148 if (id == PLATFORM_DEVID_AUTO)
Johan Hovold6e3f62f2014-09-26 12:55:33 +0200149 platform_id = id;
150 else
151 platform_id = id + cell->id;
152
153 pdev = platform_device_alloc(cell->name, platform_id);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100154 if (!pdev)
155 goto fail_alloc;
156
Kees Cook6396bb22018-06-12 14:03:40 -0700157 res = kcalloc(cell->num_resources, sizeof(*res), GFP_KERNEL);
Ian Moltona87903f2008-07-25 22:59:29 +0100158 if (!res)
159 goto fail_device;
160
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200161 pdev->dev.parent = parent;
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000162 pdev->dev.type = &mfd_dev_type;
Benedikt Sprangerb018e132013-08-13 11:08:38 +0200163 pdev->dev.dma_mask = parent->dma_mask;
164 pdev->dev.dma_parms = parent->dma_parms;
Boris BREZILLON4f08df12014-09-22 21:37:55 +0200165 pdev->dev.coherent_dma_mask = parent->coherent_dma_mask;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100166
Charles Keepaxd137be02014-04-24 18:27:25 +0100167 ret = regulator_bulk_register_supply_alias(
Charles Keepax7fcd4272013-10-15 20:14:21 +0100168 &pdev->dev, cell->parent_supplies,
169 parent, cell->parent_supplies,
170 cell->num_parent_supplies);
171 if (ret < 0)
172 goto fail_res;
173
Lee Jonesc94bb232012-06-29 19:01:03 +0200174 if (parent->of_node && cell->of_compatible) {
175 for_each_child_of_node(parent->of_node, np) {
176 if (of_device_is_compatible(np, cell->of_compatible)) {
177 pdev->dev.of_node = np;
Lee Jonesc94bb232012-06-29 19:01:03 +0200178 break;
179 }
180 }
181 }
182
Mika Westerberg6ab34302014-09-16 14:52:36 +0300183 mfd_acpi_add_device(cell, pdev);
184
Samuel Ortizeb895602011-04-06 16:52:52 +0200185 if (cell->pdata_size) {
186 ret = platform_device_add_data(pdev,
187 cell->platform_data, cell->pdata_size);
188 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100189 goto fail_alias;
Samuel Ortizeb895602011-04-06 16:52:52 +0200190 }
191
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300192 if (cell->properties) {
193 ret = platform_device_add_properties(pdev, cell->properties);
Andy Shevchenko4d215ca2015-11-30 17:11:40 +0200194 if (ret)
195 goto fail_alias;
196 }
197
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100198 ret = mfd_platform_add_cell(pdev, cell, usage_count);
Andres Salomonfe891a02011-02-17 19:07:09 -0800199 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100200 goto fail_alias;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100201
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100202 for (r = 0; r < cell->num_resources; r++) {
203 res[r].name = cell->resources[r].name;
204 res[r].flags = cell->resources[r].flags;
205
206 /* Find out base to use */
Samuel Ortizf03cfcb2010-03-26 01:09:04 +0100207 if ((cell->resources[r].flags & IORESOURCE_MEM) && mem_base) {
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100208 res[r].parent = mem_base;
209 res[r].start = mem_base->start +
210 cell->resources[r].start;
211 res[r].end = mem_base->start +
212 cell->resources[r].end;
213 } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
Lee Jonesc94bb232012-06-29 19:01:03 +0200214 if (domain) {
215 /* Unable to create mappings for IRQ ranges. */
216 WARN_ON(cell->resources[r].start !=
217 cell->resources[r].end);
218 res[r].start = res[r].end = irq_create_mapping(
219 domain, cell->resources[r].start);
220 } else {
221 res[r].start = irq_base +
222 cell->resources[r].start;
223 res[r].end = irq_base +
224 cell->resources[r].end;
225 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100226 } else {
227 res[r].parent = cell->resources[r].parent;
228 res[r].start = cell->resources[r].start;
229 res[r].end = cell->resources[r].end;
230 }
Samuel Ortiz91feded2010-02-19 11:07:59 +0100231
Daniel Drake5f2545f2010-09-30 21:55:36 +0100232 if (!cell->ignore_resource_conflicts) {
Lorenzo Pieralisiec40c602015-05-01 10:41:10 +0100233 if (has_acpi_companion(&pdev->dev)) {
234 ret = acpi_check_resource_conflict(&res[r]);
235 if (ret)
236 goto fail_alias;
237 }
Daniel Drake5f2545f2010-09-30 21:55:36 +0100238 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100239 }
240
Axel Lin8af5fe32010-05-31 17:30:55 +0800241 ret = platform_device_add_resources(pdev, res, cell->num_resources);
242 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100243 goto fail_alias;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100244
245 ret = platform_device_add(pdev);
246 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100247 goto fail_alias;
Ian Moltona87903f2008-07-25 22:59:29 +0100248
Mark Brown4c90aa92010-11-26 17:19:34 +0000249 if (cell->pm_runtime_no_callbacks)
250 pm_runtime_no_callbacks(&pdev->dev);
251
Ian Moltona87903f2008-07-25 22:59:29 +0100252 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100253
254 return 0;
255
Charles Keepax7fcd4272013-10-15 20:14:21 +0100256fail_alias:
Charles Keepaxd137be02014-04-24 18:27:25 +0100257 regulator_bulk_unregister_supply_alias(&pdev->dev,
258 cell->parent_supplies,
259 cell->num_parent_supplies);
Ian Moltona87903f2008-07-25 22:59:29 +0100260fail_res:
261 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100262fail_device:
263 platform_device_put(pdev);
264fail_alloc:
265 return ret;
266}
267
Bartosz Golaszewski1946f9962019-04-23 11:04:45 +0200268/**
269 * mfd_add_devices - register child devices
270 *
271 * @parent: Pointer to parent device.
272 * @id: Can be PLATFORM_DEVID_AUTO to let the Platform API take care
273 * of device numbering, or will be added to a device's cell_id.
274 * @cells: Array of (struct mfd_cell)s describing child devices.
275 * @n_devs: Number of child devices to register.
276 * @mem_base: Parent register range resource for child devices.
277 * @irq_base: Base of the range of virtual interrupt numbers allocated for
278 * this MFD device. Unused if @domain is specified.
279 * @domain: Interrupt domain to create mappings for hardware interrupts.
280 */
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200281int mfd_add_devices(struct device *parent, int id,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100282 const struct mfd_cell *cells, int n_devs,
Ben Dooks7f71ac92008-07-28 18:29:09 +0200283 struct resource *mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800284 int irq_base, struct irq_domain *domain)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100285{
286 int i;
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100287 int ret;
Andres Salomon1e29af62011-02-17 19:07:34 -0800288 atomic_t *cnts;
289
290 /* initialize reference counting for all cells */
Axel Lind1b5c5e2012-02-12 17:43:22 +0800291 cnts = kcalloc(n_devs, sizeof(*cnts), GFP_KERNEL);
Andres Salomon1e29af62011-02-17 19:07:34 -0800292 if (!cnts)
293 return -ENOMEM;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100294
295 for (i = 0; i < n_devs; i++) {
Andres Salomon1e29af62011-02-17 19:07:34 -0800296 atomic_set(&cnts[i], 0);
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100297 ret = mfd_add_device(parent, id, cells + i, cnts + i, mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800298 irq_base, domain);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100299 if (ret)
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100300 goto fail;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100301 }
302
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100303 return 0;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100304
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100305fail:
306 if (i)
307 mfd_remove_devices(parent);
308 else
309 kfree(cnts);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100310 return ret;
311}
312EXPORT_SYMBOL(mfd_add_devices);
313
Andres Salomon1e29af62011-02-17 19:07:34 -0800314static int mfd_remove_devices_fn(struct device *dev, void *c)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100315{
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000316 struct platform_device *pdev;
317 const struct mfd_cell *cell;
Andres Salomon1e29af62011-02-17 19:07:34 -0800318 atomic_t **usage_count = c;
319
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000320 if (dev->type != &mfd_dev_type)
321 return 0;
322
323 pdev = to_platform_device(dev);
324 cell = mfd_get_cell(pdev);
325
Charles Keepaxd137be02014-04-24 18:27:25 +0100326 regulator_bulk_unregister_supply_alias(dev, cell->parent_supplies,
327 cell->num_parent_supplies);
328
Andres Salomon1e29af62011-02-17 19:07:34 -0800329 /* find the base address of usage_count pointers (for freeing) */
330 if (!*usage_count || (cell->usage_count < *usage_count))
331 *usage_count = cell->usage_count;
332
333 platform_device_unregister(pdev);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100334 return 0;
335}
336
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200337void mfd_remove_devices(struct device *parent)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100338{
Andres Salomon1e29af62011-02-17 19:07:34 -0800339 atomic_t *cnts = NULL;
340
Andy Shevchenkob9a8a272015-07-27 18:04:01 +0300341 device_for_each_child_reverse(parent, &cnts, mfd_remove_devices_fn);
Andres Salomon1e29af62011-02-17 19:07:34 -0800342 kfree(cnts);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100343}
344EXPORT_SYMBOL(mfd_remove_devices);
345
Laxman Dewangana8f447be2016-04-08 00:12:55 +0530346static void devm_mfd_dev_release(struct device *dev, void *res)
347{
348 mfd_remove_devices(dev);
349}
350
351/**
352 * devm_mfd_add_devices - Resource managed version of mfd_add_devices()
353 *
354 * Returns 0 on success or an appropriate negative error number on failure.
355 * All child-devices of the MFD will automatically be removed when it gets
356 * unbinded.
357 */
358int devm_mfd_add_devices(struct device *dev, int id,
359 const struct mfd_cell *cells, int n_devs,
360 struct resource *mem_base,
361 int irq_base, struct irq_domain *domain)
362{
363 struct device **ptr;
364 int ret;
365
366 ptr = devres_alloc(devm_mfd_dev_release, sizeof(*ptr), GFP_KERNEL);
367 if (!ptr)
368 return -ENOMEM;
369
370 ret = mfd_add_devices(dev, id, cells, n_devs, mem_base,
371 irq_base, domain);
372 if (ret < 0) {
373 devres_free(ptr);
374 return ret;
375 }
376
377 *ptr = dev;
378 devres_add(dev, ptr);
379
380 return ret;
381}
382EXPORT_SYMBOL(devm_mfd_add_devices);
383
Andres Salomonfa1df692011-03-21 19:19:35 -0700384int mfd_clone_cell(const char *cell, const char **clones, size_t n_clones)
Andres Salomona9bbba92011-02-17 19:07:35 -0800385{
386 struct mfd_cell cell_entry;
387 struct device *dev;
388 struct platform_device *pdev;
Andres Salomonfa1df692011-03-21 19:19:35 -0700389 int i;
Andres Salomona9bbba92011-02-17 19:07:35 -0800390
391 /* fetch the parent cell's device (should already be registered!) */
392 dev = bus_find_device_by_name(&platform_bus_type, NULL, cell);
393 if (!dev) {
394 printk(KERN_ERR "failed to find device for cell %s\n", cell);
395 return -ENODEV;
396 }
397 pdev = to_platform_device(dev);
398 memcpy(&cell_entry, mfd_get_cell(pdev), sizeof(cell_entry));
399
400 WARN_ON(!cell_entry.enable);
401
Andres Salomonfa1df692011-03-21 19:19:35 -0700402 for (i = 0; i < n_clones; i++) {
403 cell_entry.name = clones[i];
404 /* don't give up if a single call fails; just report error */
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100405 if (mfd_add_device(pdev->dev.parent, -1, &cell_entry,
406 cell_entry.usage_count, NULL, 0, NULL))
Andres Salomonfa1df692011-03-21 19:19:35 -0700407 dev_err(dev, "failed to create platform device '%s'\n",
408 clones[i]);
409 }
410
Johan Hovold722f1912016-11-01 11:38:18 +0100411 put_device(dev);
412
Andres Salomonfa1df692011-03-21 19:19:35 -0700413 return 0;
Andres Salomona9bbba92011-02-17 19:07:35 -0800414}
Andres Salomonfa1df692011-03-21 19:19:35 -0700415EXPORT_SYMBOL(mfd_clone_cell);
Andres Salomona9bbba92011-02-17 19:07:35 -0800416
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100417MODULE_LICENSE("GPL");
418MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");