blob: 96d02b6f06fd8f61975f78eefe48c658bbdfb7b1 [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
Lee Jonesb195e1012019-10-21 10:16:34 +010031 if (!cell->enable) {
32 dev_dbg(&pdev->dev, "No .enable() call-back registered\n");
33 return 0;
34 }
35
Andres Salomon1e29af62011-02-17 19:07:34 -080036 /* only call enable hook if the cell wasn't previously enabled */
37 if (atomic_inc_return(cell->usage_count) == 1)
38 err = cell->enable(pdev);
39
40 /* if the enable hook failed, decrement counter to allow retries */
41 if (err)
42 atomic_dec(cell->usage_count);
43
44 return err;
45}
Andres Salomonf77289a2011-03-03 09:51:58 -080046EXPORT_SYMBOL(mfd_cell_enable);
Andres Salomon1e29af62011-02-17 19:07:34 -080047
Andres Salomonf77289a2011-03-03 09:51:58 -080048int mfd_cell_disable(struct platform_device *pdev)
Andres Salomon1e29af62011-02-17 19:07:34 -080049{
50 const struct mfd_cell *cell = mfd_get_cell(pdev);
51 int err = 0;
52
Lee Jonesb195e1012019-10-21 10:16:34 +010053 if (!cell->disable) {
54 dev_dbg(&pdev->dev, "No .disable() call-back registered\n");
55 return 0;
56 }
57
Andres Salomon1e29af62011-02-17 19:07:34 -080058 /* only disable if no other clients are using it */
59 if (atomic_dec_return(cell->usage_count) == 0)
60 err = cell->disable(pdev);
61
62 /* if the disable hook failed, increment to allow retries */
63 if (err)
64 atomic_inc(cell->usage_count);
65
66 /* sanity check; did someone call disable too many times? */
67 WARN_ON(atomic_read(cell->usage_count) < 0);
68
69 return err;
70}
Andres Salomonf77289a2011-03-03 09:51:58 -080071EXPORT_SYMBOL(mfd_cell_disable);
Andres Salomon1e29af62011-02-17 19:07:34 -080072
Samuel Ortize710d7d2011-04-08 00:43:01 +020073static int mfd_platform_add_cell(struct platform_device *pdev,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +010074 const struct mfd_cell *cell,
75 atomic_t *usage_count)
Samuel Ortize710d7d2011-04-08 00:43:01 +020076{
77 if (!cell)
78 return 0;
79
80 pdev->mfd_cell = kmemdup(cell, sizeof(*cell), GFP_KERNEL);
81 if (!pdev->mfd_cell)
82 return -ENOMEM;
83
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +010084 pdev->mfd_cell->usage_count = usage_count;
Samuel Ortize710d7d2011-04-08 00:43:01 +020085 return 0;
86}
87
Mika Westerberg6ab34302014-09-16 14:52:36 +030088#if IS_ENABLED(CONFIG_ACPI)
89static void mfd_acpi_add_device(const struct mfd_cell *cell,
90 struct platform_device *pdev)
91{
Andy Shevchenko98a3be42015-10-23 12:16:41 +030092 const struct mfd_cell_acpi_match *match = cell->acpi_match;
93 struct acpi_device *parent, *child;
Mika Westerberg6ab34302014-09-16 14:52:36 +030094 struct acpi_device *adev;
95
Andy Shevchenko98a3be42015-10-23 12:16:41 +030096 parent = ACPI_COMPANION(pdev->dev.parent);
97 if (!parent)
Mika Westerberg6ab34302014-09-16 14:52:36 +030098 return;
99
100 /*
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300101 * MFD child device gets its ACPI handle either from the ACPI device
102 * directly under the parent that matches the either _HID or _CID, or
103 * _ADR or it will use the parent handle if is no ID is given.
104 *
105 * Note that use of _ADR is a grey area in the ACPI specification,
106 * though Intel Galileo Gen2 is using it to distinguish the children
107 * devices.
Mika Westerberg6ab34302014-09-16 14:52:36 +0300108 */
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300109 adev = parent;
110 if (match) {
111 if (match->pnpid) {
112 struct acpi_device_id ids[2] = {};
Mika Westerberg6ab34302014-09-16 14:52:36 +0300113
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300114 strlcpy(ids[0].id, match->pnpid, sizeof(ids[0].id));
115 list_for_each_entry(child, &parent->children, node) {
Irina Tirdeaee414de2016-03-13 03:02:58 +0200116 if (!acpi_match_device_ids(child, ids)) {
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300117 adev = child;
118 break;
119 }
Mika Westerberg6ab34302014-09-16 14:52:36 +0300120 }
Andy Shevchenko98a3be42015-10-23 12:16:41 +0300121 } else {
122 unsigned long long adr;
123 acpi_status status;
124
125 list_for_each_entry(child, &parent->children, node) {
126 status = acpi_evaluate_integer(child->handle,
127 "_ADR", NULL,
128 &adr);
129 if (ACPI_SUCCESS(status) && match->adr == adr) {
130 adev = child;
131 break;
132 }
133 }
134 }
Mika Westerberg6ab34302014-09-16 14:52:36 +0300135 }
136
137 ACPI_COMPANION_SET(&pdev->dev, adev);
138}
139#else
140static inline void mfd_acpi_add_device(const struct mfd_cell *cell,
141 struct platform_device *pdev)
142{
143}
144#endif
145
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200146static int mfd_add_device(struct device *parent, int id,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100147 const struct mfd_cell *cell, atomic_t *usage_count,
Ben Dooks7f71ac92008-07-28 18:29:09 +0200148 struct resource *mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800149 int irq_base, struct irq_domain *domain)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100150{
Ian Moltona87903f2008-07-25 22:59:29 +0100151 struct resource *res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100152 struct platform_device *pdev;
Lee Jonesc94bb232012-06-29 19:01:03 +0200153 struct device_node *np = NULL;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100154 int ret = -ENOMEM;
Johan Hovold6e3f62f2014-09-26 12:55:33 +0200155 int platform_id;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100156 int r;
157
Johan Hovolda77c50b2015-03-25 12:07:05 +0100158 if (id == PLATFORM_DEVID_AUTO)
Johan Hovold6e3f62f2014-09-26 12:55:33 +0200159 platform_id = id;
160 else
161 platform_id = id + cell->id;
162
163 pdev = platform_device_alloc(cell->name, platform_id);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100164 if (!pdev)
165 goto fail_alloc;
166
Kees Cook6396bb22018-06-12 14:03:40 -0700167 res = kcalloc(cell->num_resources, sizeof(*res), GFP_KERNEL);
Ian Moltona87903f2008-07-25 22:59:29 +0100168 if (!res)
169 goto fail_device;
170
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200171 pdev->dev.parent = parent;
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000172 pdev->dev.type = &mfd_dev_type;
Benedikt Sprangerb018e132013-08-13 11:08:38 +0200173 pdev->dev.dma_mask = parent->dma_mask;
174 pdev->dev.dma_parms = parent->dma_parms;
Boris BREZILLON4f08df12014-09-22 21:37:55 +0200175 pdev->dev.coherent_dma_mask = parent->coherent_dma_mask;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100176
Charles Keepaxd137be02014-04-24 18:27:25 +0100177 ret = regulator_bulk_register_supply_alias(
Charles Keepax7fcd4272013-10-15 20:14:21 +0100178 &pdev->dev, cell->parent_supplies,
179 parent, cell->parent_supplies,
180 cell->num_parent_supplies);
181 if (ret < 0)
182 goto fail_res;
183
Lee Jonesc94bb232012-06-29 19:01:03 +0200184 if (parent->of_node && cell->of_compatible) {
185 for_each_child_of_node(parent->of_node, np) {
186 if (of_device_is_compatible(np, cell->of_compatible)) {
187 pdev->dev.of_node = np;
Robert Hancockc176c6d2019-06-04 16:35:43 -0600188 pdev->dev.fwnode = &np->fwnode;
Lee Jonesc94bb232012-06-29 19:01:03 +0200189 break;
190 }
191 }
192 }
193
Mika Westerberg6ab34302014-09-16 14:52:36 +0300194 mfd_acpi_add_device(cell, pdev);
195
Samuel Ortizeb895602011-04-06 16:52:52 +0200196 if (cell->pdata_size) {
197 ret = platform_device_add_data(pdev,
198 cell->platform_data, cell->pdata_size);
199 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100200 goto fail_alias;
Samuel Ortizeb895602011-04-06 16:52:52 +0200201 }
202
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300203 if (cell->properties) {
204 ret = platform_device_add_properties(pdev, cell->properties);
Andy Shevchenko4d215ca2015-11-30 17:11:40 +0200205 if (ret)
206 goto fail_alias;
207 }
208
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100209 ret = mfd_platform_add_cell(pdev, cell, usage_count);
Andres Salomonfe891a02011-02-17 19:07:09 -0800210 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100211 goto fail_alias;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100212
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100213 for (r = 0; r < cell->num_resources; r++) {
214 res[r].name = cell->resources[r].name;
215 res[r].flags = cell->resources[r].flags;
216
217 /* Find out base to use */
Samuel Ortizf03cfcb2010-03-26 01:09:04 +0100218 if ((cell->resources[r].flags & IORESOURCE_MEM) && mem_base) {
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100219 res[r].parent = mem_base;
220 res[r].start = mem_base->start +
221 cell->resources[r].start;
222 res[r].end = mem_base->start +
223 cell->resources[r].end;
224 } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
Lee Jonesc94bb232012-06-29 19:01:03 +0200225 if (domain) {
226 /* Unable to create mappings for IRQ ranges. */
227 WARN_ON(cell->resources[r].start !=
228 cell->resources[r].end);
229 res[r].start = res[r].end = irq_create_mapping(
230 domain, cell->resources[r].start);
231 } else {
232 res[r].start = irq_base +
233 cell->resources[r].start;
234 res[r].end = irq_base +
235 cell->resources[r].end;
236 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100237 } else {
238 res[r].parent = cell->resources[r].parent;
239 res[r].start = cell->resources[r].start;
240 res[r].end = cell->resources[r].end;
241 }
Samuel Ortiz91feded2010-02-19 11:07:59 +0100242
Daniel Drake5f2545f2010-09-30 21:55:36 +0100243 if (!cell->ignore_resource_conflicts) {
Lorenzo Pieralisiec40c602015-05-01 10:41:10 +0100244 if (has_acpi_companion(&pdev->dev)) {
245 ret = acpi_check_resource_conflict(&res[r]);
246 if (ret)
247 goto fail_alias;
248 }
Daniel Drake5f2545f2010-09-30 21:55:36 +0100249 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100250 }
251
Axel Lin8af5fe32010-05-31 17:30:55 +0800252 ret = platform_device_add_resources(pdev, res, cell->num_resources);
253 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100254 goto fail_alias;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100255
256 ret = platform_device_add(pdev);
257 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100258 goto fail_alias;
Ian Moltona87903f2008-07-25 22:59:29 +0100259
Mark Brown4c90aa92010-11-26 17:19:34 +0000260 if (cell->pm_runtime_no_callbacks)
261 pm_runtime_no_callbacks(&pdev->dev);
262
Ian Moltona87903f2008-07-25 22:59:29 +0100263 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100264
265 return 0;
266
Charles Keepax7fcd4272013-10-15 20:14:21 +0100267fail_alias:
Charles Keepaxd137be02014-04-24 18:27:25 +0100268 regulator_bulk_unregister_supply_alias(&pdev->dev,
269 cell->parent_supplies,
270 cell->num_parent_supplies);
Ian Moltona87903f2008-07-25 22:59:29 +0100271fail_res:
272 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100273fail_device:
274 platform_device_put(pdev);
275fail_alloc:
276 return ret;
277}
278
Bartosz Golaszewski1946f9962019-04-23 11:04:45 +0200279/**
280 * mfd_add_devices - register child devices
281 *
282 * @parent: Pointer to parent device.
283 * @id: Can be PLATFORM_DEVID_AUTO to let the Platform API take care
284 * of device numbering, or will be added to a device's cell_id.
285 * @cells: Array of (struct mfd_cell)s describing child devices.
286 * @n_devs: Number of child devices to register.
287 * @mem_base: Parent register range resource for child devices.
288 * @irq_base: Base of the range of virtual interrupt numbers allocated for
289 * this MFD device. Unused if @domain is specified.
290 * @domain: Interrupt domain to create mappings for hardware interrupts.
291 */
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200292int mfd_add_devices(struct device *parent, int id,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100293 const struct mfd_cell *cells, int n_devs,
Ben Dooks7f71ac92008-07-28 18:29:09 +0200294 struct resource *mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800295 int irq_base, struct irq_domain *domain)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100296{
297 int i;
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100298 int ret;
Andres Salomon1e29af62011-02-17 19:07:34 -0800299 atomic_t *cnts;
300
301 /* initialize reference counting for all cells */
Axel Lind1b5c5e2012-02-12 17:43:22 +0800302 cnts = kcalloc(n_devs, sizeof(*cnts), GFP_KERNEL);
Andres Salomon1e29af62011-02-17 19:07:34 -0800303 if (!cnts)
304 return -ENOMEM;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100305
306 for (i = 0; i < n_devs; i++) {
Andres Salomon1e29af62011-02-17 19:07:34 -0800307 atomic_set(&cnts[i], 0);
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100308 ret = mfd_add_device(parent, id, cells + i, cnts + i, mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800309 irq_base, domain);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100310 if (ret)
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100311 goto fail;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100312 }
313
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100314 return 0;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100315
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100316fail:
317 if (i)
318 mfd_remove_devices(parent);
319 else
320 kfree(cnts);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100321 return ret;
322}
323EXPORT_SYMBOL(mfd_add_devices);
324
Andres Salomon1e29af62011-02-17 19:07:34 -0800325static int mfd_remove_devices_fn(struct device *dev, void *c)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100326{
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000327 struct platform_device *pdev;
328 const struct mfd_cell *cell;
Andres Salomon1e29af62011-02-17 19:07:34 -0800329 atomic_t **usage_count = c;
330
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000331 if (dev->type != &mfd_dev_type)
332 return 0;
333
334 pdev = to_platform_device(dev);
335 cell = mfd_get_cell(pdev);
336
Charles Keepaxd137be02014-04-24 18:27:25 +0100337 regulator_bulk_unregister_supply_alias(dev, cell->parent_supplies,
338 cell->num_parent_supplies);
339
Andres Salomon1e29af62011-02-17 19:07:34 -0800340 /* find the base address of usage_count pointers (for freeing) */
341 if (!*usage_count || (cell->usage_count < *usage_count))
342 *usage_count = cell->usage_count;
343
344 platform_device_unregister(pdev);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100345 return 0;
346}
347
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200348void mfd_remove_devices(struct device *parent)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100349{
Andres Salomon1e29af62011-02-17 19:07:34 -0800350 atomic_t *cnts = NULL;
351
Andy Shevchenkob9a8a272015-07-27 18:04:01 +0300352 device_for_each_child_reverse(parent, &cnts, mfd_remove_devices_fn);
Andres Salomon1e29af62011-02-17 19:07:34 -0800353 kfree(cnts);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100354}
355EXPORT_SYMBOL(mfd_remove_devices);
356
Laxman Dewangana8f447be2016-04-08 00:12:55 +0530357static void devm_mfd_dev_release(struct device *dev, void *res)
358{
359 mfd_remove_devices(dev);
360}
361
362/**
363 * devm_mfd_add_devices - Resource managed version of mfd_add_devices()
364 *
365 * Returns 0 on success or an appropriate negative error number on failure.
366 * All child-devices of the MFD will automatically be removed when it gets
367 * unbinded.
368 */
369int devm_mfd_add_devices(struct device *dev, int id,
370 const struct mfd_cell *cells, int n_devs,
371 struct resource *mem_base,
372 int irq_base, struct irq_domain *domain)
373{
374 struct device **ptr;
375 int ret;
376
377 ptr = devres_alloc(devm_mfd_dev_release, sizeof(*ptr), GFP_KERNEL);
378 if (!ptr)
379 return -ENOMEM;
380
381 ret = mfd_add_devices(dev, id, cells, n_devs, mem_base,
382 irq_base, domain);
383 if (ret < 0) {
384 devres_free(ptr);
385 return ret;
386 }
387
388 *ptr = dev;
389 devres_add(dev, ptr);
390
391 return ret;
392}
393EXPORT_SYMBOL(devm_mfd_add_devices);
394
Andres Salomonfa1df692011-03-21 19:19:35 -0700395int mfd_clone_cell(const char *cell, const char **clones, size_t n_clones)
Andres Salomona9bbba92011-02-17 19:07:35 -0800396{
397 struct mfd_cell cell_entry;
398 struct device *dev;
399 struct platform_device *pdev;
Andres Salomonfa1df692011-03-21 19:19:35 -0700400 int i;
Andres Salomona9bbba92011-02-17 19:07:35 -0800401
402 /* fetch the parent cell's device (should already be registered!) */
403 dev = bus_find_device_by_name(&platform_bus_type, NULL, cell);
404 if (!dev) {
405 printk(KERN_ERR "failed to find device for cell %s\n", cell);
406 return -ENODEV;
407 }
408 pdev = to_platform_device(dev);
409 memcpy(&cell_entry, mfd_get_cell(pdev), sizeof(cell_entry));
410
411 WARN_ON(!cell_entry.enable);
412
Andres Salomonfa1df692011-03-21 19:19:35 -0700413 for (i = 0; i < n_clones; i++) {
414 cell_entry.name = clones[i];
415 /* don't give up if a single call fails; just report error */
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100416 if (mfd_add_device(pdev->dev.parent, -1, &cell_entry,
417 cell_entry.usage_count, NULL, 0, NULL))
Andres Salomonfa1df692011-03-21 19:19:35 -0700418 dev_err(dev, "failed to create platform device '%s'\n",
419 clones[i]);
420 }
421
Johan Hovold722f1912016-11-01 11:38:18 +0100422 put_device(dev);
423
Andres Salomonfa1df692011-03-21 19:19:35 -0700424 return 0;
Andres Salomona9bbba92011-02-17 19:07:35 -0800425}
Andres Salomonfa1df692011-03-21 19:19:35 -0700426EXPORT_SYMBOL(mfd_clone_cell);
Andres Salomona9bbba92011-02-17 19:07:35 -0800427
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100428MODULE_LICENSE("GPL");
429MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");