blob: f5a73af60dd407f20aa73a89a88aa6714a79f6f5 [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);
Andres Salomon1e29af62011-02-17 19:07:34 -080029
Lee Jonesb195e1012019-10-21 10:16:34 +010030 if (!cell->enable) {
31 dev_dbg(&pdev->dev, "No .enable() call-back registered\n");
32 return 0;
33 }
34
Lee Jones5a47c0f2019-10-21 10:47:37 +010035 return cell->enable(pdev);
Andres Salomon1e29af62011-02-17 19:07:34 -080036}
Andres Salomonf77289a2011-03-03 09:51:58 -080037EXPORT_SYMBOL(mfd_cell_enable);
Andres Salomon1e29af62011-02-17 19:07:34 -080038
Andres Salomonf77289a2011-03-03 09:51:58 -080039int mfd_cell_disable(struct platform_device *pdev)
Andres Salomon1e29af62011-02-17 19:07:34 -080040{
41 const struct mfd_cell *cell = mfd_get_cell(pdev);
Andres Salomon1e29af62011-02-17 19:07:34 -080042
Lee Jonesb195e1012019-10-21 10:16:34 +010043 if (!cell->disable) {
44 dev_dbg(&pdev->dev, "No .disable() call-back registered\n");
45 return 0;
46 }
47
Lee Jones5a47c0f2019-10-21 10:47:37 +010048 return cell->disable(pdev);
Andres Salomon1e29af62011-02-17 19:07:34 -080049}
Andres Salomonf77289a2011-03-03 09:51:58 -080050EXPORT_SYMBOL(mfd_cell_disable);
Andres Salomon1e29af62011-02-17 19:07:34 -080051
Mika Westerberg6ab34302014-09-16 14:52:36 +030052#if IS_ENABLED(CONFIG_ACPI)
53static void mfd_acpi_add_device(const struct mfd_cell *cell,
54 struct platform_device *pdev)
55{
Andy Shevchenko98a3be42015-10-23 12:16:41 +030056 const struct mfd_cell_acpi_match *match = cell->acpi_match;
57 struct acpi_device *parent, *child;
Mika Westerberg6ab34302014-09-16 14:52:36 +030058 struct acpi_device *adev;
59
Andy Shevchenko98a3be42015-10-23 12:16:41 +030060 parent = ACPI_COMPANION(pdev->dev.parent);
61 if (!parent)
Mika Westerberg6ab34302014-09-16 14:52:36 +030062 return;
63
64 /*
Andy Shevchenko98a3be42015-10-23 12:16:41 +030065 * MFD child device gets its ACPI handle either from the ACPI device
66 * directly under the parent that matches the either _HID or _CID, or
67 * _ADR or it will use the parent handle if is no ID is given.
68 *
69 * Note that use of _ADR is a grey area in the ACPI specification,
70 * though Intel Galileo Gen2 is using it to distinguish the children
71 * devices.
Mika Westerberg6ab34302014-09-16 14:52:36 +030072 */
Andy Shevchenko98a3be42015-10-23 12:16:41 +030073 adev = parent;
74 if (match) {
75 if (match->pnpid) {
76 struct acpi_device_id ids[2] = {};
Mika Westerberg6ab34302014-09-16 14:52:36 +030077
Andy Shevchenko98a3be42015-10-23 12:16:41 +030078 strlcpy(ids[0].id, match->pnpid, sizeof(ids[0].id));
79 list_for_each_entry(child, &parent->children, node) {
Irina Tirdeaee414de2016-03-13 03:02:58 +020080 if (!acpi_match_device_ids(child, ids)) {
Andy Shevchenko98a3be42015-10-23 12:16:41 +030081 adev = child;
82 break;
83 }
Mika Westerberg6ab34302014-09-16 14:52:36 +030084 }
Andy Shevchenko98a3be42015-10-23 12:16:41 +030085 } else {
86 unsigned long long adr;
87 acpi_status status;
88
89 list_for_each_entry(child, &parent->children, node) {
90 status = acpi_evaluate_integer(child->handle,
91 "_ADR", NULL,
92 &adr);
93 if (ACPI_SUCCESS(status) && match->adr == adr) {
94 adev = child;
95 break;
96 }
97 }
98 }
Mika Westerberg6ab34302014-09-16 14:52:36 +030099 }
100
101 ACPI_COMPANION_SET(&pdev->dev, adev);
102}
103#else
104static inline void mfd_acpi_add_device(const struct mfd_cell *cell,
105 struct platform_device *pdev)
106{
107}
108#endif
109
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200110static int mfd_add_device(struct device *parent, int id,
Lee Jones5a47c0f2019-10-21 10:47:37 +0100111 const struct mfd_cell *cell,
Ben Dooks7f71ac92008-07-28 18:29:09 +0200112 struct resource *mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800113 int irq_base, struct irq_domain *domain)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100114{
Ian Moltona87903f2008-07-25 22:59:29 +0100115 struct resource *res;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100116 struct platform_device *pdev;
Lee Jonesc94bb232012-06-29 19:01:03 +0200117 struct device_node *np = NULL;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100118 int ret = -ENOMEM;
Johan Hovold6e3f62f2014-09-26 12:55:33 +0200119 int platform_id;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100120 int r;
121
Johan Hovolda77c50b2015-03-25 12:07:05 +0100122 if (id == PLATFORM_DEVID_AUTO)
Johan Hovold6e3f62f2014-09-26 12:55:33 +0200123 platform_id = id;
124 else
125 platform_id = id + cell->id;
126
127 pdev = platform_device_alloc(cell->name, platform_id);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100128 if (!pdev)
129 goto fail_alloc;
130
Lee Jonesb944a682019-10-21 10:55:23 +0100131 pdev->mfd_cell = kmemdup(cell, sizeof(*cell), GFP_KERNEL);
132 if (!pdev->mfd_cell)
133 goto fail_device;
134
Kees Cook6396bb22018-06-12 14:03:40 -0700135 res = kcalloc(cell->num_resources, sizeof(*res), GFP_KERNEL);
Ian Moltona87903f2008-07-25 22:59:29 +0100136 if (!res)
137 goto fail_device;
138
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200139 pdev->dev.parent = parent;
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000140 pdev->dev.type = &mfd_dev_type;
Benedikt Sprangerb018e132013-08-13 11:08:38 +0200141 pdev->dev.dma_mask = parent->dma_mask;
142 pdev->dev.dma_parms = parent->dma_parms;
Boris BREZILLON4f08df12014-09-22 21:37:55 +0200143 pdev->dev.coherent_dma_mask = parent->coherent_dma_mask;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100144
Charles Keepaxd137be02014-04-24 18:27:25 +0100145 ret = regulator_bulk_register_supply_alias(
Charles Keepax7fcd4272013-10-15 20:14:21 +0100146 &pdev->dev, cell->parent_supplies,
147 parent, cell->parent_supplies,
148 cell->num_parent_supplies);
149 if (ret < 0)
150 goto fail_res;
151
Lee Jonesc94bb232012-06-29 19:01:03 +0200152 if (parent->of_node && cell->of_compatible) {
153 for_each_child_of_node(parent->of_node, np) {
154 if (of_device_is_compatible(np, cell->of_compatible)) {
Lee Jones6b5c3502019-11-07 11:19:50 +0000155 if (!of_device_is_available(np)) {
156 /* Ignore disabled devices error free */
157 ret = 0;
158 goto fail_alias;
159 }
Lee Jonesc94bb232012-06-29 19:01:03 +0200160 pdev->dev.of_node = np;
Robert Hancockc176c6d2019-06-04 16:35:43 -0600161 pdev->dev.fwnode = &np->fwnode;
Lee Jonesc94bb232012-06-29 19:01:03 +0200162 break;
163 }
164 }
165 }
166
Mika Westerberg6ab34302014-09-16 14:52:36 +0300167 mfd_acpi_add_device(cell, pdev);
168
Samuel Ortizeb895602011-04-06 16:52:52 +0200169 if (cell->pdata_size) {
170 ret = platform_device_add_data(pdev,
171 cell->platform_data, cell->pdata_size);
172 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100173 goto fail_alias;
Samuel Ortizeb895602011-04-06 16:52:52 +0200174 }
175
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300176 if (cell->properties) {
177 ret = platform_device_add_properties(pdev, cell->properties);
Andy Shevchenko4d215ca2015-11-30 17:11:40 +0200178 if (ret)
179 goto fail_alias;
180 }
181
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100182 for (r = 0; r < cell->num_resources; r++) {
183 res[r].name = cell->resources[r].name;
184 res[r].flags = cell->resources[r].flags;
185
186 /* Find out base to use */
Samuel Ortizf03cfcb2010-03-26 01:09:04 +0100187 if ((cell->resources[r].flags & IORESOURCE_MEM) && mem_base) {
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100188 res[r].parent = mem_base;
189 res[r].start = mem_base->start +
190 cell->resources[r].start;
191 res[r].end = mem_base->start +
192 cell->resources[r].end;
193 } else if (cell->resources[r].flags & IORESOURCE_IRQ) {
Lee Jonesc94bb232012-06-29 19:01:03 +0200194 if (domain) {
195 /* Unable to create mappings for IRQ ranges. */
196 WARN_ON(cell->resources[r].start !=
197 cell->resources[r].end);
198 res[r].start = res[r].end = irq_create_mapping(
199 domain, cell->resources[r].start);
200 } else {
201 res[r].start = irq_base +
202 cell->resources[r].start;
203 res[r].end = irq_base +
204 cell->resources[r].end;
205 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100206 } else {
207 res[r].parent = cell->resources[r].parent;
208 res[r].start = cell->resources[r].start;
209 res[r].end = cell->resources[r].end;
210 }
Samuel Ortiz91feded2010-02-19 11:07:59 +0100211
Daniel Drake5f2545f2010-09-30 21:55:36 +0100212 if (!cell->ignore_resource_conflicts) {
Lorenzo Pieralisiec40c602015-05-01 10:41:10 +0100213 if (has_acpi_companion(&pdev->dev)) {
214 ret = acpi_check_resource_conflict(&res[r]);
215 if (ret)
216 goto fail_alias;
217 }
Daniel Drake5f2545f2010-09-30 21:55:36 +0100218 }
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100219 }
220
Axel Lin8af5fe32010-05-31 17:30:55 +0800221 ret = platform_device_add_resources(pdev, res, cell->num_resources);
222 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100223 goto fail_alias;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100224
225 ret = platform_device_add(pdev);
226 if (ret)
Charles Keepax7fcd4272013-10-15 20:14:21 +0100227 goto fail_alias;
Ian Moltona87903f2008-07-25 22:59:29 +0100228
Mark Brown4c90aa92010-11-26 17:19:34 +0000229 if (cell->pm_runtime_no_callbacks)
230 pm_runtime_no_callbacks(&pdev->dev);
231
Ian Moltona87903f2008-07-25 22:59:29 +0100232 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100233
234 return 0;
235
Charles Keepax7fcd4272013-10-15 20:14:21 +0100236fail_alias:
Charles Keepaxd137be02014-04-24 18:27:25 +0100237 regulator_bulk_unregister_supply_alias(&pdev->dev,
238 cell->parent_supplies,
239 cell->num_parent_supplies);
Ian Moltona87903f2008-07-25 22:59:29 +0100240fail_res:
241 kfree(res);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100242fail_device:
243 platform_device_put(pdev);
244fail_alloc:
245 return ret;
246}
247
Bartosz Golaszewski1946f9962019-04-23 11:04:45 +0200248/**
249 * mfd_add_devices - register child devices
250 *
251 * @parent: Pointer to parent device.
252 * @id: Can be PLATFORM_DEVID_AUTO to let the Platform API take care
253 * of device numbering, or will be added to a device's cell_id.
254 * @cells: Array of (struct mfd_cell)s describing child devices.
255 * @n_devs: Number of child devices to register.
256 * @mem_base: Parent register range resource for child devices.
257 * @irq_base: Base of the range of virtual interrupt numbers allocated for
258 * this MFD device. Unused if @domain is specified.
259 * @domain: Interrupt domain to create mappings for hardware interrupts.
260 */
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200261int mfd_add_devices(struct device *parent, int id,
Geert Uytterhoeven03e361b2013-10-29 10:03:04 +0100262 const struct mfd_cell *cells, int n_devs,
Ben Dooks7f71ac92008-07-28 18:29:09 +0200263 struct resource *mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800264 int irq_base, struct irq_domain *domain)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100265{
266 int i;
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100267 int ret;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100268
269 for (i = 0; i < n_devs; i++) {
Lee Jones5a47c0f2019-10-21 10:47:37 +0100270 ret = mfd_add_device(parent, id, cells + i, mem_base,
Mark Brown0848c942012-09-11 15:16:36 +0800271 irq_base, domain);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100272 if (ret)
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100273 goto fail;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100274 }
275
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100276 return 0;
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100277
Geert Uytterhoeven0b208e42013-10-29 15:47:22 +0100278fail:
279 if (i)
280 mfd_remove_devices(parent);
Lee Jones5a47c0f2019-10-21 10:47:37 +0100281
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100282 return ret;
283}
284EXPORT_SYMBOL(mfd_add_devices);
285
Lee Jones5a47c0f2019-10-21 10:47:37 +0100286static int mfd_remove_devices_fn(struct device *dev, void *data)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100287{
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000288 struct platform_device *pdev;
289 const struct mfd_cell *cell;
Andres Salomon1e29af62011-02-17 19:07:34 -0800290
Charles Keepaxb9fbb622012-11-09 16:15:28 +0000291 if (dev->type != &mfd_dev_type)
292 return 0;
293
294 pdev = to_platform_device(dev);
295 cell = mfd_get_cell(pdev);
296
Charles Keepaxd137be02014-04-24 18:27:25 +0100297 regulator_bulk_unregister_supply_alias(dev, cell->parent_supplies,
298 cell->num_parent_supplies);
299
Andres Salomon1e29af62011-02-17 19:07:34 -0800300 platform_device_unregister(pdev);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100301 return 0;
302}
303
Dmitry Baryshkov424f5252008-07-29 01:30:26 +0200304void mfd_remove_devices(struct device *parent)
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100305{
Lee Jones5a47c0f2019-10-21 10:47:37 +0100306 device_for_each_child_reverse(parent, NULL, mfd_remove_devices_fn);
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100307}
308EXPORT_SYMBOL(mfd_remove_devices);
309
Laxman Dewangana8f447be2016-04-08 00:12:55 +0530310static void devm_mfd_dev_release(struct device *dev, void *res)
311{
312 mfd_remove_devices(dev);
313}
314
315/**
316 * devm_mfd_add_devices - Resource managed version of mfd_add_devices()
317 *
318 * Returns 0 on success or an appropriate negative error number on failure.
319 * All child-devices of the MFD will automatically be removed when it gets
320 * unbinded.
321 */
322int devm_mfd_add_devices(struct device *dev, int id,
323 const struct mfd_cell *cells, int n_devs,
324 struct resource *mem_base,
325 int irq_base, struct irq_domain *domain)
326{
327 struct device **ptr;
328 int ret;
329
330 ptr = devres_alloc(devm_mfd_dev_release, sizeof(*ptr), GFP_KERNEL);
331 if (!ptr)
332 return -ENOMEM;
333
334 ret = mfd_add_devices(dev, id, cells, n_devs, mem_base,
335 irq_base, domain);
336 if (ret < 0) {
337 devres_free(ptr);
338 return ret;
339 }
340
341 *ptr = dev;
342 devres_add(dev, ptr);
343
344 return ret;
345}
346EXPORT_SYMBOL(devm_mfd_add_devices);
347
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +0100348MODULE_LICENSE("GPL");
349MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov");