blob: 10c5779634182815cb76cc01eb7de7121b0532da [file] [log] [blame]
Greg Kroah-Hartman989d42e2017-11-07 17:30:07 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * platform.c - platform 'pseudo' bus for legacy devices
4 *
5 * Copyright (c) 2002-3 Patrick Mochel
6 * Copyright (c) 2002-3 Open Source Development Labs
7 *
Mauro Carvalho Chehabfe34c892019-06-18 12:34:59 -03008 * Please see Documentation/driver-api/driver-model/platform.rst for more
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * information.
10 */
11
Andrew Mortondaa41222009-08-06 16:00:44 -070012#include <linux/string.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010013#include <linux/platform_device.h>
Grant Likely05212152010-06-08 07:48:20 -060014#include <linux/of_device.h>
Rob Herring9ec36ca2014-04-23 17:57:41 -050015#include <linux/of_irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/init.h>
John Garrye15f2fa2020-12-02 18:36:56 +080018#include <linux/interrupt.h>
19#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/dma-mapping.h>
Mike Rapoport57c8a662018-10-30 15:09:49 -070021#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/err.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080023#include <linux/slab.h>
Magnus Damm9d730222009-08-20 20:25:32 +020024#include <linux/pm_runtime.h>
Ulf Hanssonf48c7672014-09-29 13:58:47 +020025#include <linux/pm_domain.h>
Jean Delvare689ae232012-07-27 22:14:59 +020026#include <linux/idr.h>
Mika Westerberg91e56872012-10-31 22:45:02 +010027#include <linux/acpi.h>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020028#include <linux/clk/clk-conf.h>
Kim Phillips3d713e02014-06-02 19:42:58 -050029#include <linux/limits.h>
Mika Westerberg00bbc1d2015-11-30 17:11:38 +020030#include <linux/property.h>
Qian Cai967d3012019-01-03 15:29:05 -080031#include <linux/kmemleak.h>
Simon Schwartz39cc5392019-12-10 17:41:37 -050032#include <linux/types.h>
Lu Baolu512881e2022-04-18 08:49:53 +080033#include <linux/iommu.h>
34#include <linux/dma-map-ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010036#include "base.h"
Rafael J. Wysockibed2b422012-08-06 01:45:11 +020037#include "power/power.h"
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010038
Jean Delvare689ae232012-07-27 22:14:59 +020039/* For automatically allocated device IDs */
40static DEFINE_IDA(platform_devid_ida);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042struct device platform_bus = {
Kay Sievers1e0b2cf2008-10-30 01:36:48 +010043 .init_name = "platform",
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
Dmitry Torokhova96b2042005-12-10 01:36:28 -050045EXPORT_SYMBOL_GPL(platform_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080048 * platform_get_resource - get a resource for a device
49 * @dev: platform device
50 * @type: resource type
51 * @num: resource index
Stephen Boyd0c7a6b92020-09-09 23:04:40 -070052 *
53 * Return: a pointer to the resource or NULL on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080055struct resource *platform_get_resource(struct platform_device *dev,
56 unsigned int type, unsigned int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Simon Schwartz39cc5392019-12-10 17:41:37 -050058 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 for (i = 0; i < dev->num_resources; i++) {
61 struct resource *r = &dev->resource[i];
62
Magnus Dammc9f66162008-10-15 22:05:15 -070063 if (type == resource_type(r) && num-- == 0)
64 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 }
66 return NULL;
67}
Dmitry Torokhova96b2042005-12-10 01:36:28 -050068EXPORT_SYMBOL_GPL(platform_get_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Andy Shevchenko0aec2da2020-12-09 22:36:38 +020070struct resource *platform_get_mem_or_io(struct platform_device *dev,
71 unsigned int num)
72{
73 u32 i;
74
75 for (i = 0; i < dev->num_resources; i++) {
76 struct resource *r = &dev->resource[i];
77
78 if ((resource_type(r) & (IORESOURCE_MEM|IORESOURCE_IO)) && num-- == 0)
79 return r;
80 }
81 return NULL;
82}
83EXPORT_SYMBOL_GPL(platform_get_mem_or_io);
84
Bartosz Golaszewskibb6243b2019-10-22 10:43:14 +020085#ifdef CONFIG_HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/**
Dejin Zheng890cc392020-03-24 00:06:08 +080087 * devm_platform_get_and_ioremap_resource - call devm_ioremap_resource() for a
88 * platform device and get resource
89 *
90 * @pdev: platform device to use both for memory resource lookup as well as
91 * resource management
92 * @index: resource index
93 * @res: optional output parameter to store a pointer to the obtained resource.
Stephen Boyd0c7a6b92020-09-09 23:04:40 -070094 *
95 * Return: a pointer to the remapped memory or an ERR_PTR() encoded error code
96 * on failure.
Dejin Zheng890cc392020-03-24 00:06:08 +080097 */
98void __iomem *
99devm_platform_get_and_ioremap_resource(struct platform_device *pdev,
100 unsigned int index, struct resource **res)
101{
102 struct resource *r;
103
104 r = platform_get_resource(pdev, IORESOURCE_MEM, index);
105 if (res)
106 *res = r;
107 return devm_ioremap_resource(&pdev->dev, r);
108}
109EXPORT_SYMBOL_GPL(devm_platform_get_and_ioremap_resource);
110
111/**
Bartosz Golaszewski7945f922019-02-20 11:12:39 +0000112 * devm_platform_ioremap_resource - call devm_ioremap_resource() for a platform
113 * device
114 *
115 * @pdev: platform device to use both for memory resource lookup as well as
Bartosz Golaszewski7067c962019-04-01 10:16:35 +0200116 * resource management
Bartosz Golaszewski7945f922019-02-20 11:12:39 +0000117 * @index: resource index
Stephen Boyd0c7a6b92020-09-09 23:04:40 -0700118 *
119 * Return: a pointer to the remapped memory or an ERR_PTR() encoded error code
120 * on failure.
Bartosz Golaszewski7945f922019-02-20 11:12:39 +0000121 */
122void __iomem *devm_platform_ioremap_resource(struct platform_device *pdev,
123 unsigned int index)
124{
Dejin Zhengfd789012020-03-24 00:06:12 +0800125 return devm_platform_get_and_ioremap_resource(pdev, index, NULL);
Bartosz Golaszewski7945f922019-02-20 11:12:39 +0000126}
127EXPORT_SYMBOL_GPL(devm_platform_ioremap_resource);
Bartosz Golaszewskibb6243b2019-10-22 10:43:14 +0200128
129/**
Bartosz Golaszewskic9c86412019-10-22 10:43:16 +0200130 * devm_platform_ioremap_resource_byname - call devm_ioremap_resource for
131 * a platform device, retrieve the
132 * resource by name
133 *
134 * @pdev: platform device to use both for memory resource lookup as well as
135 * resource management
136 * @name: name of the resource
Stephen Boyd0c7a6b92020-09-09 23:04:40 -0700137 *
138 * Return: a pointer to the remapped memory or an ERR_PTR() encoded error code
139 * on failure.
Bartosz Golaszewskic9c86412019-10-22 10:43:16 +0200140 */
141void __iomem *
142devm_platform_ioremap_resource_byname(struct platform_device *pdev,
143 const char *name)
144{
145 struct resource *res;
146
147 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
148 return devm_ioremap_resource(&pdev->dev, res);
149}
150EXPORT_SYMBOL_GPL(devm_platform_ioremap_resource_byname);
Bartosz Golaszewski837ccda2019-02-21 17:26:27 +0100151#endif /* CONFIG_HAS_IOMEM */
Bartosz Golaszewski7945f922019-02-20 11:12:39 +0000152
Greg Kroah-Hartmanc2f3f752021-04-07 11:47:56 +0200153/**
154 * platform_get_irq_optional - get an optional IRQ for a device
155 * @dev: platform device
156 * @num: IRQ number index
157 *
158 * Gets an IRQ for a platform device. Device drivers should check the return
159 * value for errors so as to not pass a negative integer value to the
160 * request_irq() APIs. This is the same as platform_get_irq(), except that it
161 * does not print an error message if an IRQ can not be obtained.
162 *
163 * For example::
164 *
165 * int irq = platform_get_irq_optional(pdev, 0);
166 * if (irq < 0)
167 * return irq;
168 *
169 * Return: non-zero IRQ number on success, negative error number on failure.
170 */
171int platform_get_irq_optional(struct platform_device *dev, unsigned int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500173 int ret;
Andreas Larsson5cf8f7d2012-10-29 23:26:56 +0000174#ifdef CONFIG_SPARC
175 /* sparc does not have irqs represented as IORESOURCE_IRQ resources */
176 if (!dev || num >= dev->archdata.num_irqs)
Andy Shevchenkoc99f4eb2021-03-31 17:59:36 +0300177 goto out_not_found;
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500178 ret = dev->archdata.irqs[num];
179 goto out;
Andreas Larsson5cf8f7d2012-10-29 23:26:56 +0000180#else
Andy Shevchenko243e1b72023-10-03 17:21:22 +0300181 struct fwnode_handle *fwnode = dev_fwnode(&dev->dev);
Rob Herring9ec36ca2014-04-23 17:57:41 -0500182 struct resource *r;
Guenter Roeckaff008a2014-06-17 15:51:02 -0700183
Andy Shevchenko243e1b72023-10-03 17:21:22 +0300184 if (is_of_node(fwnode)) {
185 ret = of_irq_get(to_of_node(fwnode), num);
Sergei Shtylyove330b9a2016-07-04 01:04:24 +0300186 if (ret > 0 || ret == -EPROBE_DEFER)
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500187 goto out;
Guenter Roeckaff008a2014-06-17 15:51:02 -0700188 }
Rob Herring9ec36ca2014-04-23 17:57:41 -0500189
190 r = platform_get_resource(dev, IORESOURCE_IRQ, num);
Andy Shevchenko243e1b72023-10-03 17:21:22 +0300191 if (is_acpi_device_node(fwnode)) {
Agustin Vega-Friasd44fa3d2017-02-02 18:23:58 -0500192 if (r && r->flags & IORESOURCE_DISABLED) {
Andy Shevchenko243e1b72023-10-03 17:21:22 +0300193 ret = acpi_irq_get(ACPI_HANDLE_FWNODE(fwnode), num, r);
Agustin Vega-Friasd44fa3d2017-02-02 18:23:58 -0500194 if (ret)
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500195 goto out;
Agustin Vega-Friasd44fa3d2017-02-02 18:23:58 -0500196 }
197 }
198
Linus Walleij7085a742015-02-18 17:12:18 +0100199 /*
200 * The resources may pass trigger flags to the irqs that need
201 * to be set up. It so happens that the trigger flags for
202 * IORESOURCE_BITS correspond 1-to-1 to the IRQF_TRIGGER*
203 * settings.
204 */
Guenter Roeck60ca5e02016-09-13 20:32:44 -0700205 if (r && r->flags & IORESOURCE_BITS) {
206 struct irq_data *irqd;
207
208 irqd = irq_get_irq_data(r->start);
Andy Shevchenkoc99f4eb2021-03-31 17:59:36 +0300209 if (!irqd)
210 goto out_not_found;
Guenter Roeck60ca5e02016-09-13 20:32:44 -0700211 irqd_set_trigger_type(irqd, r->flags & IORESOURCE_BITS);
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500214 if (r) {
215 ret = r->start;
216 goto out;
217 }
Enrico Granatadaaef252019-02-11 11:01:12 -0800218
219 /*
220 * For the index 0 interrupt, allow falling back to GpioInt
221 * resources. While a device could have both Interrupt and GpioInt
222 * resources, making this fallback ambiguous, in many common cases
223 * the device will only expose one IRQ, and this fallback
224 * allows a common code path across either kind of resource.
225 */
Andy Shevchenko243e1b72023-10-03 17:21:22 +0300226 if (num == 0 && is_acpi_device_node(fwnode)) {
227 ret = acpi_dev_gpio_irq_get(to_acpi_device_node(fwnode), num);
Brian Norris46c42d82019-07-29 13:49:54 -0700228 /* Our callers expect -ENXIO for missing IRQs. */
229 if (ret >= 0 || ret == -EPROBE_DEFER)
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500230 goto out;
Brian Norris46c42d82019-07-29 13:49:54 -0700231 }
Enrico Granatadaaef252019-02-11 11:01:12 -0800232
Andreas Larsson5cf8f7d2012-10-29 23:26:56 +0000233#endif
Andy Shevchenkoc99f4eb2021-03-31 17:59:36 +0300234out_not_found:
235 ret = -ENXIO;
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500236out:
Sergey Shtylyovce753ad2022-03-11 22:35:29 +0300237 if (WARN(!ret, "0 is an invalid IRQ number\n"))
238 return -EINVAL;
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500239 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
Uwe Kleine-Königec4e2902019-10-09 11:37:46 +0200241EXPORT_SYMBOL_GPL(platform_get_irq_optional);
Stephen Boyd7723f4c2019-07-29 22:38:43 -0700242
243/**
244 * platform_get_irq - get an IRQ for a device
245 * @dev: platform device
246 * @num: IRQ number index
247 *
248 * Gets an IRQ for a platform device and prints an error message if finding the
249 * IRQ fails. Device drivers should check the return value for errors so as to
250 * not pass a negative integer value to the request_irq() APIs.
251 *
Mauro Carvalho Chehabf0825242020-04-14 18:48:45 +0200252 * For example::
253 *
Stephen Boyd7723f4c2019-07-29 22:38:43 -0700254 * int irq = platform_get_irq(pdev, 0);
255 * if (irq < 0)
256 * return irq;
257 *
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500258 * Return: non-zero IRQ number on success, negative error number on failure.
Stephen Boyd7723f4c2019-07-29 22:38:43 -0700259 */
260int platform_get_irq(struct platform_device *dev, unsigned int num)
261{
262 int ret;
263
Greg Kroah-Hartmanc2f3f752021-04-07 11:47:56 +0200264 ret = platform_get_irq_optional(dev, num);
Cai Huoqing20437272021-11-05 15:15:09 +0800265 if (ret < 0)
266 return dev_err_probe(&dev->dev, ret,
267 "IRQ index %u not found\n", num);
Stephen Boyd7723f4c2019-07-29 22:38:43 -0700268
269 return ret;
270}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500271EXPORT_SYMBOL_GPL(platform_get_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273/**
Stephen Boyd4b835552016-01-06 17:12:47 -0800274 * platform_irq_count - Count the number of IRQs a platform device uses
275 * @dev: platform device
276 *
277 * Return: Number of IRQs a platform device uses or EPROBE_DEFER
278 */
279int platform_irq_count(struct platform_device *dev)
280{
281 int ret, nr = 0;
282
Greg Kroah-Hartmanc2f3f752021-04-07 11:47:56 +0200283 while ((ret = platform_get_irq_optional(dev, nr)) >= 0)
Stephen Boyd4b835552016-01-06 17:12:47 -0800284 nr++;
285
286 if (ret == -EPROBE_DEFER)
287 return ret;
288
289 return nr;
290}
291EXPORT_SYMBOL_GPL(platform_irq_count);
292
John Garrye15f2fa2020-12-02 18:36:56 +0800293struct irq_affinity_devres {
294 unsigned int count;
Kees Cook36b2d7d2023-10-06 13:17:49 -0700295 unsigned int irq[] __counted_by(count);
John Garrye15f2fa2020-12-02 18:36:56 +0800296};
297
298static void platform_disable_acpi_irq(struct platform_device *pdev, int index)
299{
300 struct resource *r;
301
302 r = platform_get_resource(pdev, IORESOURCE_IRQ, index);
303 if (r)
304 irqresource_disabled(r, 0);
305}
306
307static void devm_platform_get_irqs_affinity_release(struct device *dev,
308 void *res)
309{
310 struct irq_affinity_devres *ptr = res;
311 int i;
312
313 for (i = 0; i < ptr->count; i++) {
314 irq_dispose_mapping(ptr->irq[i]);
315
Andy Shevchenko243e1b72023-10-03 17:21:22 +0300316 if (is_acpi_device_node(dev_fwnode(dev)))
John Garrye15f2fa2020-12-02 18:36:56 +0800317 platform_disable_acpi_irq(to_platform_device(dev), i);
318 }
319}
320
321/**
322 * devm_platform_get_irqs_affinity - devm method to get a set of IRQs for a
323 * device using an interrupt affinity descriptor
324 * @dev: platform device pointer
325 * @affd: affinity descriptor
326 * @minvec: minimum count of interrupt vectors
327 * @maxvec: maximum count of interrupt vectors
328 * @irqs: pointer holder for IRQ numbers
329 *
330 * Gets a set of IRQs for a platform device, and updates IRQ afffinty according
331 * to the passed affinity descriptor
332 *
333 * Return: Number of vectors on success, negative error number on failure.
334 */
335int devm_platform_get_irqs_affinity(struct platform_device *dev,
336 struct irq_affinity *affd,
337 unsigned int minvec,
338 unsigned int maxvec,
339 int **irqs)
340{
341 struct irq_affinity_devres *ptr;
342 struct irq_affinity_desc *desc;
343 size_t size;
344 int i, ret, nvec;
345
346 if (!affd)
347 return -EPERM;
348
349 if (maxvec < minvec)
350 return -ERANGE;
351
352 nvec = platform_irq_count(dev);
John Garrye1dc2092020-12-21 22:30:55 +0800353 if (nvec < 0)
354 return nvec;
John Garrye15f2fa2020-12-02 18:36:56 +0800355
356 if (nvec < minvec)
357 return -ENOSPC;
358
359 nvec = irq_calc_affinity_vectors(minvec, nvec, affd);
360 if (nvec < minvec)
361 return -ENOSPC;
362
363 if (nvec > maxvec)
364 nvec = maxvec;
365
366 size = sizeof(*ptr) + sizeof(unsigned int) * nvec;
367 ptr = devres_alloc(devm_platform_get_irqs_affinity_release, size,
368 GFP_KERNEL);
369 if (!ptr)
370 return -ENOMEM;
371
372 ptr->count = nvec;
373
374 for (i = 0; i < nvec; i++) {
375 int irq = platform_get_irq(dev, i);
376 if (irq < 0) {
377 ret = irq;
378 goto err_free_devres;
379 }
380 ptr->irq[i] = irq;
381 }
382
383 desc = irq_create_affinity_masks(nvec, affd);
384 if (!desc) {
385 ret = -ENOMEM;
386 goto err_free_devres;
387 }
388
389 for (i = 0; i < nvec; i++) {
390 ret = irq_update_affinity_desc(ptr->irq[i], &desc[i]);
391 if (ret) {
392 dev_err(&dev->dev, "failed to update irq%d affinity descriptor (%d)\n",
393 ptr->irq[i], ret);
394 goto err_free_desc;
395 }
396 }
397
398 devres_add(&dev->dev, ptr);
399
400 kfree(desc);
401
402 *irqs = ptr->irq;
403
404 return nvec;
405
406err_free_desc:
407 kfree(desc);
408err_free_devres:
409 devres_free(ptr);
410 return ret;
411}
412EXPORT_SYMBOL_GPL(devm_platform_get_irqs_affinity);
413
Stephen Boyd4b835552016-01-06 17:12:47 -0800414/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800415 * platform_get_resource_byname - get a resource for a device by name
416 * @dev: platform device
417 * @type: resource type
418 * @name: resource name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800420struct resource *platform_get_resource_byname(struct platform_device *dev,
Linus Walleijc0afe7b2009-04-27 02:38:16 +0200421 unsigned int type,
422 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Simon Schwartz39cc5392019-12-10 17:41:37 -0500424 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 for (i = 0; i < dev->num_resources; i++) {
427 struct resource *r = &dev->resource[i];
428
Peter Ujfalusi1b8cb922012-08-23 17:10:00 +0300429 if (unlikely(!r->name))
430 continue;
431
Magnus Dammc9f66162008-10-15 22:05:15 -0700432 if (type == resource_type(r) && !strcmp(r->name, name))
433 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435 return NULL;
436}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500437EXPORT_SYMBOL_GPL(platform_get_resource_byname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Hans de Goedef1da5672019-10-05 23:04:47 +0200439static int __platform_get_irq_byname(struct platform_device *dev,
440 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Grygorii Strashkoad696742014-05-20 13:42:02 +0300442 struct resource *r;
Andy Shevchenko71564a22019-10-23 15:25:05 +0300443 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Soha Jin9dd45412022-11-11 17:45:42 +0800445 ret = fwnode_irq_get_byname(dev_fwnode(&dev->dev), name);
446 if (ret > 0 || ret == -EPROBE_DEFER)
447 return ret;
Grygorii Strashkoad696742014-05-20 13:42:02 +0300448
449 r = platform_get_resource_byname(dev, IORESOURCE_IRQ, name);
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500450 if (r) {
Sergey Shtylyovce753ad2022-03-11 22:35:29 +0300451 if (WARN(!r->start, "0 is an invalid IRQ number\n"))
452 return -EINVAL;
Stephen Boyd7723f4c2019-07-29 22:38:43 -0700453 return r->start;
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500454 }
Stephen Boyd7723f4c2019-07-29 22:38:43 -0700455
Stephen Boyd7723f4c2019-07-29 22:38:43 -0700456 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
Hans de Goedef1da5672019-10-05 23:04:47 +0200458
459/**
460 * platform_get_irq_byname - get an IRQ for a device by name
461 * @dev: platform device
462 * @name: IRQ name
463 *
464 * Get an IRQ like platform_get_irq(), but then by name rather then by index.
465 *
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500466 * Return: non-zero IRQ number on success, negative error number on failure.
Hans de Goedef1da5672019-10-05 23:04:47 +0200467 */
468int platform_get_irq_byname(struct platform_device *dev, const char *name)
469{
470 int ret;
471
472 ret = __platform_get_irq_byname(dev, name);
Sergey Shtylyov27446562022-02-04 23:25:23 +0300473 if (ret < 0)
474 return dev_err_probe(&dev->dev, ret, "IRQ %s not found\n",
475 name);
Hans de Goedef1da5672019-10-05 23:04:47 +0200476 return ret;
477}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500478EXPORT_SYMBOL_GPL(platform_get_irq_byname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480/**
Hans de Goedef1da5672019-10-05 23:04:47 +0200481 * platform_get_irq_byname_optional - get an optional IRQ for a device by name
482 * @dev: platform device
483 * @name: IRQ name
484 *
485 * Get an optional IRQ by name like platform_get_irq_byname(). Except that it
486 * does not print an error message if an IRQ can not be obtained.
487 *
Bjorn Helgaasa85a6c82020-03-16 16:43:38 -0500488 * Return: non-zero IRQ number on success, negative error number on failure.
Hans de Goedef1da5672019-10-05 23:04:47 +0200489 */
490int platform_get_irq_byname_optional(struct platform_device *dev,
491 const char *name)
492{
493 return __platform_get_irq_byname(dev, name);
494}
495EXPORT_SYMBOL_GPL(platform_get_irq_byname_optional);
496
497/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800498 * platform_add_devices - add a numbers of platform devices
499 * @devs: array of platform devices to add
500 * @num: number of platform devices in array
Umang Jain64f79742022-12-20 14:21:16 +0530501 *
502 * Return: 0 on success, negative error number on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 */
504int platform_add_devices(struct platform_device **devs, int num)
505{
506 int i, ret = 0;
507
508 for (i = 0; i < num; i++) {
509 ret = platform_device_register(devs[i]);
510 if (ret) {
511 while (--i >= 0)
512 platform_device_unregister(devs[i]);
513 break;
514 }
515 }
516
517 return ret;
518}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500519EXPORT_SYMBOL_GPL(platform_add_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Russell King37c12e72005-11-05 21:19:33 +0000521struct platform_object {
522 struct platform_device pdev;
Yann Droneaud1cec24c2014-05-30 22:02:47 +0200523 char name[];
Russell King37c12e72005-11-05 21:19:33 +0000524};
525
Christoph Hellwigcdfee562019-08-16 08:24:35 +0200526/*
527 * Set up default DMA mask for platform devices if the they weren't
528 * previously set by the architecture / DT.
529 */
530static void setup_pdev_dma_masks(struct platform_device *pdev)
531{
Ulf Hansson9495b7e2020-04-22 12:09:54 +0200532 pdev->dev.dma_parms = &pdev->dma_parms;
533
Christoph Hellwigcdfee562019-08-16 08:24:35 +0200534 if (!pdev->dev.coherent_dma_mask)
535 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
Christoph Hellwige3a36eb2020-03-11 17:07:10 +0100536 if (!pdev->dev.dma_mask) {
537 pdev->platform_dma_mask = DMA_BIT_MASK(32);
538 pdev->dev.dma_mask = &pdev->platform_dma_mask;
539 }
Christoph Hellwigcdfee562019-08-16 08:24:35 +0200540};
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000543 * platform_device_put - destroy a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800544 * @pdev: platform device to free
Russell King37c12e72005-11-05 21:19:33 +0000545 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800546 * Free all memory associated with a platform device. This function must
547 * _only_ be externally called in error cases. All other usage is a bug.
Russell King37c12e72005-11-05 21:19:33 +0000548 */
549void platform_device_put(struct platform_device *pdev)
550{
Andy Shevchenko99fef582018-12-03 20:21:41 +0200551 if (!IS_ERR_OR_NULL(pdev))
Russell King37c12e72005-11-05 21:19:33 +0000552 put_device(&pdev->dev);
553}
554EXPORT_SYMBOL_GPL(platform_device_put);
555
556static void platform_device_release(struct device *dev)
557{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800558 struct platform_object *pa = container_of(dev, struct platform_object,
559 pdev.dev);
Russell King37c12e72005-11-05 21:19:33 +0000560
Rob Herringcb8be8b2021-02-11 17:27:45 -0600561 of_node_put(pa->pdev.dev.of_node);
Russell King37c12e72005-11-05 21:19:33 +0000562 kfree(pa->pdev.dev.platform_data);
Samuel Ortize710d7d2011-04-08 00:43:01 +0200563 kfree(pa->pdev.mfd_cell);
Russell King37c12e72005-11-05 21:19:33 +0000564 kfree(pa->pdev.resource);
Kim Phillips3d713e02014-06-02 19:42:58 -0500565 kfree(pa->pdev.driver_override);
Russell King37c12e72005-11-05 21:19:33 +0000566 kfree(pa);
567}
568
569/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000570 * platform_device_alloc - create a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800571 * @name: base name of the device we're adding
572 * @id: instance id
Russell King37c12e72005-11-05 21:19:33 +0000573 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800574 * Create a platform device object which can have other objects attached
575 * to it, and which will have attached objects freed when it is released.
Russell King37c12e72005-11-05 21:19:33 +0000576 */
Jean Delvare1359555e2007-09-09 12:54:16 +0200577struct platform_device *platform_device_alloc(const char *name, int id)
Russell King37c12e72005-11-05 21:19:33 +0000578{
579 struct platform_object *pa;
580
Yann Droneaud1cec24c2014-05-30 22:02:47 +0200581 pa = kzalloc(sizeof(*pa) + strlen(name) + 1, GFP_KERNEL);
Russell King37c12e72005-11-05 21:19:33 +0000582 if (pa) {
583 strcpy(pa->name, name);
584 pa->pdev.name = pa->name;
585 pa->pdev.id = id;
586 device_initialize(&pa->pdev.dev);
587 pa->pdev.dev.release = platform_device_release;
Christoph Hellwigcdfee562019-08-16 08:24:35 +0200588 setup_pdev_dma_masks(&pa->pdev);
Russell King37c12e72005-11-05 21:19:33 +0000589 }
590
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500591 return pa ? &pa->pdev : NULL;
Russell King37c12e72005-11-05 21:19:33 +0000592}
593EXPORT_SYMBOL_GPL(platform_device_alloc);
594
595/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000596 * platform_device_add_resources - add resources to a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800597 * @pdev: platform device allocated by platform_device_alloc to add resources to
598 * @res: set of resources that needs to be allocated for the device
599 * @num: number of resources
Russell King37c12e72005-11-05 21:19:33 +0000600 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800601 * Add a copy of the resources to the platform device. The memory
602 * associated with the resources will be freed when the platform device is
603 * released.
Russell King37c12e72005-11-05 21:19:33 +0000604 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800605int platform_device_add_resources(struct platform_device *pdev,
Geert Uytterhoeven0b7f1a72009-01-28 21:01:02 +0100606 const struct resource *res, unsigned int num)
Russell King37c12e72005-11-05 21:19:33 +0000607{
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200608 struct resource *r = NULL;
Russell King37c12e72005-11-05 21:19:33 +0000609
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200610 if (res) {
611 r = kmemdup(res, sizeof(struct resource) * num, GFP_KERNEL);
612 if (!r)
613 return -ENOMEM;
Russell King37c12e72005-11-05 21:19:33 +0000614 }
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200615
Uwe Kleine-König4a03d6f2011-04-20 09:44:45 +0200616 kfree(pdev->resource);
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200617 pdev->resource = r;
618 pdev->num_resources = num;
619 return 0;
Russell King37c12e72005-11-05 21:19:33 +0000620}
621EXPORT_SYMBOL_GPL(platform_device_add_resources);
622
623/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000624 * platform_device_add_data - add platform-specific data to a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800625 * @pdev: platform device allocated by platform_device_alloc to add resources to
626 * @data: platform specific data for this platform device
627 * @size: size of platform specific data
Russell King37c12e72005-11-05 21:19:33 +0000628 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800629 * Add a copy of platform specific data to the platform device's
630 * platform_data pointer. The memory associated with the platform data
631 * will be freed when the platform device is released.
Russell King37c12e72005-11-05 21:19:33 +0000632 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800633int platform_device_add_data(struct platform_device *pdev, const void *data,
634 size_t size)
Russell King37c12e72005-11-05 21:19:33 +0000635{
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200636 void *d = NULL;
Russell King37c12e72005-11-05 21:19:33 +0000637
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200638 if (data) {
639 d = kmemdup(data, size, GFP_KERNEL);
640 if (!d)
641 return -ENOMEM;
Russell King37c12e72005-11-05 21:19:33 +0000642 }
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200643
Uwe Kleine-König251e0312011-04-20 09:44:43 +0200644 kfree(pdev->dev.platform_data);
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200645 pdev->dev.platform_data = d;
646 return 0;
Russell King37c12e72005-11-05 21:19:33 +0000647}
648EXPORT_SYMBOL_GPL(platform_device_add_data);
649
650/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800651 * platform_device_add - add a platform device to device hierarchy
652 * @pdev: platform device we're adding
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800654 * This is part 2 of platform_device_register(), though may be called
655 * separately _iff_ pdev was allocated by platform_device_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
Russell King37c12e72005-11-05 21:19:33 +0000657int platform_device_add(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Andy Shevchenko61365972023-10-03 17:21:21 +0300659 struct device *dev = &pdev->dev;
Simon Schwartz39cc5392019-12-10 17:41:37 -0500660 u32 i;
661 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Andy Shevchenko61365972023-10-03 17:21:21 +0300663 if (!dev->parent)
664 dev->parent = &platform_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Andy Shevchenko61365972023-10-03 17:21:21 +0300666 dev->bus = &platform_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Jean Delvare689ae232012-07-27 22:14:59 +0200668 switch (pdev->id) {
669 default:
Andy Shevchenko61365972023-10-03 17:21:21 +0300670 dev_set_name(dev, "%s.%d", pdev->name, pdev->id);
Jean Delvare689ae232012-07-27 22:14:59 +0200671 break;
672 case PLATFORM_DEVID_NONE:
Andy Shevchenko61365972023-10-03 17:21:21 +0300673 dev_set_name(dev, "%s", pdev->name);
Jean Delvare689ae232012-07-27 22:14:59 +0200674 break;
675 case PLATFORM_DEVID_AUTO:
676 /*
677 * Automatically allocated device ID. We mark it as such so
678 * that we remember it must be freed, and we append a suffix
679 * to avoid namespace collision with explicit IDs.
680 */
Bartosz Golaszewski0de75112020-09-09 20:02:48 +0200681 ret = ida_alloc(&platform_devid_ida, GFP_KERNEL);
Jean Delvare689ae232012-07-27 22:14:59 +0200682 if (ret < 0)
Andy Shevchenkoa549e3a2023-10-03 17:21:20 +0300683 return ret;
Jean Delvare689ae232012-07-27 22:14:59 +0200684 pdev->id = ret;
685 pdev->id_auto = true;
Andy Shevchenko61365972023-10-03 17:21:21 +0300686 dev_set_name(dev, "%s.%d.auto", pdev->name, pdev->id);
Jean Delvare689ae232012-07-27 22:14:59 +0200687 break;
688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 for (i = 0; i < pdev->num_resources; i++) {
Greg Kroah-Hartman5da7f702015-06-10 08:38:02 -0700691 struct resource *p, *r = &pdev->resource[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 if (r->name == NULL)
Andy Shevchenko61365972023-10-03 17:21:21 +0300694 r->name = dev_name(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 p = r->parent;
697 if (!p) {
Greg Kroah-Hartman0e6c8612015-06-10 08:38:29 -0700698 if (resource_type(r) == IORESOURCE_MEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 p = &iomem_resource;
Greg Kroah-Hartman0e6c8612015-06-10 08:38:29 -0700700 else if (resource_type(r) == IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 p = &ioport_resource;
702 }
703
Andy Shevchenko25ebcb72019-04-04 11:11:58 +0300704 if (p) {
705 ret = insert_resource(p, r);
706 if (ret) {
Andy Shevchenko61365972023-10-03 17:21:21 +0300707 dev_err(dev, "failed to claim resource %d: %pR\n", i, r);
Andy Shevchenko25ebcb72019-04-04 11:11:58 +0300708 goto failed;
709 }
Greg Kroah-Hartman5da7f702015-06-10 08:38:02 -0700710 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712
Andy Shevchenko61365972023-10-03 17:21:21 +0300713 pr_debug("Registering platform device '%s'. Parent at %s\n", dev_name(dev),
714 dev_name(dev->parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Andy Shevchenko61365972023-10-03 17:21:21 +0300716 ret = device_add(dev);
Andy Shevchenkoa549e3a2023-10-03 17:21:20 +0300717 if (ret)
718 goto failed;
719
720 return 0;
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700721
Greg Kroah-Hartman5da7f702015-06-10 08:38:02 -0700722 failed:
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700723 if (pdev->id_auto) {
Bartosz Golaszewski0de75112020-09-09 20:02:48 +0200724 ida_free(&platform_devid_ida, pdev->id);
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700725 pdev->id = PLATFORM_DEVID_AUTO;
726 }
727
Colin Ian King0707cfa2020-01-16 17:57:58 +0000728 while (i--) {
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700729 struct resource *r = &pdev->resource[i];
Grant Likely7f5dcaf2015-06-07 15:20:11 +0100730 if (r->parent)
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700731 release_resource(r);
732 }
Magnus Dammc9f66162008-10-15 22:05:15 -0700733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return ret;
735}
Russell King37c12e72005-11-05 21:19:33 +0000736EXPORT_SYMBOL_GPL(platform_device_add);
737
738/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800739 * platform_device_del - remove a platform-level device
740 * @pdev: platform device we're removing
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500741 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800742 * Note that this function will also release all memory- and port-based
743 * resources owned by the device (@dev->resource). This function must
744 * _only_ be externally called in error cases. All other usage is a bug.
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500745 */
746void platform_device_del(struct platform_device *pdev)
747{
Simon Schwartz39cc5392019-12-10 17:41:37 -0500748 u32 i;
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500749
Andy Shevchenko99fef582018-12-03 20:21:41 +0200750 if (!IS_ERR_OR_NULL(pdev)) {
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700751 device_del(&pdev->dev);
752
753 if (pdev->id_auto) {
Bartosz Golaszewski0de75112020-09-09 20:02:48 +0200754 ida_free(&platform_devid_ida, pdev->id);
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700755 pdev->id = PLATFORM_DEVID_AUTO;
756 }
757
758 for (i = 0; i < pdev->num_resources; i++) {
759 struct resource *r = &pdev->resource[i];
Grant Likely7f5dcaf2015-06-07 15:20:11 +0100760 if (r->parent)
Greg Kroah-Hartman8b2dceb2015-06-10 08:36:50 -0700761 release_resource(r);
762 }
763 }
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500764}
765EXPORT_SYMBOL_GPL(platform_device_del);
766
767/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800768 * platform_device_register - add a platform-level device
769 * @pdev: platform device we're adding
Johan Hovold67e532a2021-12-22 11:42:13 +0100770 *
771 * NOTE: _Never_ directly free @pdev after calling this function, even if it
772 * returned an error! Always use platform_device_put() to give up the
773 * reference initialised in this function instead.
Russell King37c12e72005-11-05 21:19:33 +0000774 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800775int platform_device_register(struct platform_device *pdev)
Russell King37c12e72005-11-05 21:19:33 +0000776{
777 device_initialize(&pdev->dev);
Christoph Hellwigcdfee562019-08-16 08:24:35 +0200778 setup_pdev_dma_masks(pdev);
Russell King37c12e72005-11-05 21:19:33 +0000779 return platform_device_add(pdev);
780}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500781EXPORT_SYMBOL_GPL(platform_device_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800784 * platform_device_unregister - unregister a platform-level device
785 * @pdev: platform device we're unregistering
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800787 * Unregistration is done in 2 steps. First we release all resources
788 * and remove it from the subsystem, then we drop reference count by
789 * calling platform_device_put().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800791void platform_device_unregister(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500793 platform_device_del(pdev);
794 platform_device_put(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500796EXPORT_SYMBOL_GPL(platform_device_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798/**
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200799 * platform_device_register_full - add a platform-level device with
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200800 * resources and platform-specific data
801 *
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200802 * @pdevinfo: data used to create device
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700803 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +0200804 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700805 */
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200806struct platform_device *platform_device_register_full(
Uwe Kleine-König5a3072b2011-12-08 22:53:29 +0100807 const struct platform_device_info *pdevinfo)
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700808{
Colin Ian King45bb08d2020-04-02 12:13:41 +0100809 int ret;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700810 struct platform_device *pdev;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700811
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200812 pdev = platform_device_alloc(pdevinfo->name, pdevinfo->id);
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200813 if (!pdev)
Johannes Berg36cf3b12019-03-01 13:24:47 +0100814 return ERR_PTR(-ENOMEM);
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700815
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200816 pdev->dev.parent = pdevinfo->parent;
Rafael J. Wysockice793482015-03-16 23:49:03 +0100817 pdev->dev.fwnode = pdevinfo->fwnode;
Mans Rullgard2c1ea6a2019-02-21 11:29:35 +0000818 pdev->dev.of_node = of_node_get(to_of_node(pdev->dev.fwnode));
819 pdev->dev.of_node_reused = pdevinfo->of_node_reused;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700820
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200821 if (pdevinfo->dma_mask) {
Christoph Hellwige3a36eb2020-03-11 17:07:10 +0100822 pdev->platform_dma_mask = pdevinfo->dma_mask;
823 pdev->dev.dma_mask = &pdev->platform_dma_mask;
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200824 pdev->dev.coherent_dma_mask = pdevinfo->dma_mask;
825 }
826
827 ret = platform_device_add_resources(pdev,
828 pdevinfo->res, pdevinfo->num_res);
Anton Vorontsov807508c2010-09-07 17:31:54 +0400829 if (ret)
830 goto err;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700831
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200832 ret = platform_device_add_data(pdev,
833 pdevinfo->data, pdevinfo->size_data);
Anton Vorontsov807508c2010-09-07 17:31:54 +0400834 if (ret)
835 goto err;
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200836
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300837 if (pdevinfo->properties) {
Heikki Krogerusbd1e3362021-08-17 13:24:49 +0300838 ret = device_create_managed_software_node(&pdev->dev,
839 pdevinfo->properties, NULL);
Mika Westerberg00bbc1d2015-11-30 17:11:38 +0200840 if (ret)
841 goto err;
842 }
843
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200844 ret = platform_device_add(pdev);
845 if (ret) {
846err:
Rafael J. Wysocki7b199812013-11-11 22:41:56 +0100847 ACPI_COMPANION_SET(&pdev->dev, NULL);
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200848 platform_device_put(pdev);
849 return ERR_PTR(ret);
850 }
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700851
852 return pdev;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700853}
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200854EXPORT_SYMBOL_GPL(platform_device_register_full);
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700855
Russell King00d3dcd2005-11-09 17:23:39 +0000856/**
Libo Chen94470572013-05-25 12:40:50 +0800857 * __platform_driver_register - register a driver for platform-level devices
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800858 * @drv: platform driver structure
Randy Dunlap08801f92013-07-14 17:43:06 -0700859 * @owner: owning module/driver
Russell King00d3dcd2005-11-09 17:23:39 +0000860 */
Libo Chen94470572013-05-25 12:40:50 +0800861int __platform_driver_register(struct platform_driver *drv,
862 struct module *owner)
Russell King00d3dcd2005-11-09 17:23:39 +0000863{
Libo Chen94470572013-05-25 12:40:50 +0800864 drv->driver.owner = owner;
Russell King00d3dcd2005-11-09 17:23:39 +0000865 drv->driver.bus = &platform_bus_type;
Magnus Damm783ea7d2009-06-04 22:13:33 +0200866
Russell King00d3dcd2005-11-09 17:23:39 +0000867 return driver_register(&drv->driver);
868}
Libo Chen94470572013-05-25 12:40:50 +0800869EXPORT_SYMBOL_GPL(__platform_driver_register);
Russell King00d3dcd2005-11-09 17:23:39 +0000870
871/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000872 * platform_driver_unregister - unregister a driver for platform-level devices
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800873 * @drv: platform driver structure
Russell King00d3dcd2005-11-09 17:23:39 +0000874 */
875void platform_driver_unregister(struct platform_driver *drv)
876{
877 driver_unregister(&drv->driver);
878}
879EXPORT_SYMBOL_GPL(platform_driver_unregister);
880
Uwe Kleine-König16085662020-11-19 13:46:10 +0100881static int platform_probe_fail(struct platform_device *pdev)
Uwe Kleine-Könige21d740a2020-11-19 13:46:09 +0100882{
883 return -ENXIO;
884}
885
Greg Kroah-Hartman40b38802023-01-31 09:24:59 +0100886static int is_bound_to_driver(struct device *dev, void *driver)
887{
888 if (dev->driver == driver)
889 return 1;
890 return 0;
891}
892
David Brownellc67334f2006-11-16 23:28:47 -0800893/**
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100894 * __platform_driver_probe - register driver for non-hotpluggable device
David Brownellc67334f2006-11-16 23:28:47 -0800895 * @drv: platform driver structure
Johan Hovold3f9120b2013-09-23 16:27:26 +0200896 * @probe: the driver probe routine, probably from an __init section
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100897 * @module: module which will be the owner of the driver
David Brownellc67334f2006-11-16 23:28:47 -0800898 *
899 * Use this instead of platform_driver_register() when you know the device
900 * is not hotpluggable and has already been registered, and you want to
901 * remove its run-once probe() infrastructure from memory after the driver
902 * has bound to the device.
903 *
904 * One typical use for this would be with drivers for controllers integrated
905 * into system-on-chip processors, where the controller devices have been
906 * configured as part of board setup.
907 *
Johan Hovold3f9120b2013-09-23 16:27:26 +0200908 * Note that this is incompatible with deferred probing.
Fabio Porcedda647c86d2013-03-26 10:35:15 +0100909 *
David Brownellc67334f2006-11-16 23:28:47 -0800910 * Returns zero if the driver registered and bound to a device, else returns
911 * a negative error code and with the driver not registered.
912 */
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100913int __init_or_module __platform_driver_probe(struct platform_driver *drv,
914 int (*probe)(struct platform_device *), struct module *module)
David Brownellc67334f2006-11-16 23:28:47 -0800915{
Greg Kroah-Hartmanb4ce0bf2023-01-31 09:24:58 +0100916 int retval;
David Brownellc67334f2006-11-16 23:28:47 -0800917
Dmitry Torokhov5c36eb22015-03-30 16:20:07 -0700918 if (drv->driver.probe_type == PROBE_PREFER_ASYNCHRONOUS) {
919 pr_err("%s: drivers registered with %s can not be probed asynchronously\n",
920 drv->driver.name, __func__);
921 return -EINVAL;
922 }
923
924 /*
925 * We have to run our probes synchronously because we check if
926 * we find any devices to bind to and exit with error if there
927 * are any.
928 */
929 drv->driver.probe_type = PROBE_FORCE_SYNCHRONOUS;
930
Johan Hovold3f9120b2013-09-23 16:27:26 +0200931 /*
932 * Prevent driver from requesting probe deferral to avoid further
933 * futile probe attempts.
934 */
935 drv->prevent_deferred_probe = true;
936
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700937 /* make sure driver won't have bind/unbind attributes */
938 drv->driver.suppress_bind_attrs = true;
939
David Brownellc67334f2006-11-16 23:28:47 -0800940 /* temporary section violation during probe() */
941 drv->probe = probe;
Greg Kroah-Hartmanb4ce0bf2023-01-31 09:24:58 +0100942 retval = __platform_driver_register(drv, module);
Kuppuswamy Sathyanarayanan388bcc62020-04-08 14:40:03 -0700943 if (retval)
944 return retval;
David Brownellc67334f2006-11-16 23:28:47 -0800945
Greg Kroah-Hartman40b38802023-01-31 09:24:59 +0100946 /* Force all new probes of this driver to fail */
Uwe Kleine-König16085662020-11-19 13:46:10 +0100947 drv->probe = platform_probe_fail;
David Brownellc67334f2006-11-16 23:28:47 -0800948
Greg Kroah-Hartman40b38802023-01-31 09:24:59 +0100949 /* Walk all platform devices and see if any actually bound to this driver.
950 * If not, return an error as the device should have done so by now.
951 */
952 if (!bus_for_each_dev(&platform_bus_type, NULL, &drv->driver, is_bound_to_driver)) {
953 retval = -ENODEV;
David Brownellc67334f2006-11-16 23:28:47 -0800954 platform_driver_unregister(drv);
Greg Kroah-Hartman40b38802023-01-31 09:24:59 +0100955 }
956
David Brownellc67334f2006-11-16 23:28:47 -0800957 return retval;
958}
Wolfram Sangc3b50dc2014-10-28 17:40:41 +0100959EXPORT_SYMBOL_GPL(__platform_driver_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800961/**
Wolfram Sang291f6532014-10-28 17:40:42 +0100962 * __platform_create_bundle - register driver and create corresponding device
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800963 * @driver: platform driver structure
964 * @probe: the driver probe routine, probably from an __init section
965 * @res: set of resources that needs to be allocated for the device
966 * @n_res: number of resources
967 * @data: platform specific data for this platform device
968 * @size: size of platform specific data
Wolfram Sang291f6532014-10-28 17:40:42 +0100969 * @module: module which will be the owner of the driver
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800970 *
971 * Use this in legacy-style modules that probe hardware directly and
972 * register a single platform device and corresponding platform driver.
Jani Nikulaf0eae0e2010-03-11 18:11:45 +0200973 *
974 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800975 */
Wolfram Sang291f6532014-10-28 17:40:42 +0100976struct platform_device * __init_or_module __platform_create_bundle(
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800977 struct platform_driver *driver,
978 int (*probe)(struct platform_device *),
979 struct resource *res, unsigned int n_res,
Wolfram Sang291f6532014-10-28 17:40:42 +0100980 const void *data, size_t size, struct module *module)
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800981{
982 struct platform_device *pdev;
983 int error;
984
985 pdev = platform_device_alloc(driver->driver.name, -1);
986 if (!pdev) {
987 error = -ENOMEM;
988 goto err_out;
989 }
990
Anton Vorontsov807508c2010-09-07 17:31:54 +0400991 error = platform_device_add_resources(pdev, res, n_res);
992 if (error)
993 goto err_pdev_put;
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800994
Anton Vorontsov807508c2010-09-07 17:31:54 +0400995 error = platform_device_add_data(pdev, data, size);
996 if (error)
997 goto err_pdev_put;
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800998
999 error = platform_device_add(pdev);
1000 if (error)
1001 goto err_pdev_put;
1002
Wolfram Sang291f6532014-10-28 17:40:42 +01001003 error = __platform_driver_probe(driver, probe, module);
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -08001004 if (error)
1005 goto err_pdev_del;
1006
1007 return pdev;
1008
1009err_pdev_del:
1010 platform_device_del(pdev);
1011err_pdev_put:
1012 platform_device_put(pdev);
1013err_out:
1014 return ERR_PTR(error);
1015}
Wolfram Sang291f6532014-10-28 17:40:42 +01001016EXPORT_SYMBOL_GPL(__platform_create_bundle);
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -08001017
Thierry Redingdbe22562015-09-25 17:29:04 +02001018/**
1019 * __platform_register_drivers - register an array of platform drivers
1020 * @drivers: an array of drivers to register
1021 * @count: the number of drivers to register
1022 * @owner: module owning the drivers
1023 *
1024 * Registers platform drivers specified by an array. On failure to register a
1025 * driver, all previously registered drivers will be unregistered. Callers of
1026 * this API should use platform_unregister_drivers() to unregister drivers in
1027 * the reverse order.
1028 *
1029 * Returns: 0 on success or a negative error code on failure.
1030 */
1031int __platform_register_drivers(struct platform_driver * const *drivers,
1032 unsigned int count, struct module *owner)
1033{
1034 unsigned int i;
1035 int err;
1036
1037 for (i = 0; i < count; i++) {
1038 pr_debug("registering platform driver %ps\n", drivers[i]);
1039
1040 err = __platform_driver_register(drivers[i], owner);
1041 if (err < 0) {
1042 pr_err("failed to register platform driver %ps: %d\n",
1043 drivers[i], err);
1044 goto error;
1045 }
1046 }
1047
1048 return 0;
1049
1050error:
1051 while (i--) {
1052 pr_debug("unregistering platform driver %ps\n", drivers[i]);
1053 platform_driver_unregister(drivers[i]);
1054 }
1055
1056 return err;
1057}
1058EXPORT_SYMBOL_GPL(__platform_register_drivers);
1059
1060/**
1061 * platform_unregister_drivers - unregister an array of platform drivers
1062 * @drivers: an array of drivers to unregister
1063 * @count: the number of drivers to unregister
1064 *
Tang Binc82c83c2020-05-20 22:12:02 +08001065 * Unregisters platform drivers specified by an array. This is typically used
Thierry Redingdbe22562015-09-25 17:29:04 +02001066 * to complement an earlier call to platform_register_drivers(). Drivers are
1067 * unregistered in the reverse order in which they were registered.
1068 */
1069void platform_unregister_drivers(struct platform_driver * const *drivers,
1070 unsigned int count)
1071{
1072 while (count--) {
1073 pr_debug("unregistering platform driver %ps\n", drivers[count]);
1074 platform_driver_unregister(drivers[count]);
1075 }
1076}
1077EXPORT_SYMBOL_GPL(platform_unregister_drivers);
1078
Eric Miao57fee4a2009-02-04 11:52:40 +08001079static const struct platform_device_id *platform_match_id(
Uwe Kleine-König831fad22010-01-26 09:35:00 +01001080 const struct platform_device_id *id,
Eric Miao57fee4a2009-02-04 11:52:40 +08001081 struct platform_device *pdev)
1082{
1083 while (id->name[0]) {
Greg Kroah-Hartman391c0322019-04-29 19:49:21 +02001084 if (strcmp(pdev->name, id->name) == 0) {
Eric Miao57fee4a2009-02-04 11:52:40 +08001085 pdev->id_entry = id;
1086 return id;
1087 }
1088 id++;
1089 }
1090 return NULL;
1091}
1092
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001093#ifdef CONFIG_PM_SLEEP
1094
1095static int platform_legacy_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Magnus Damm783ea7d2009-06-04 22:13:33 +02001097 struct platform_driver *pdrv = to_platform_driver(dev->driver);
1098 struct platform_device *pdev = to_platform_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 int ret = 0;
1100
Magnus Damm783ea7d2009-06-04 22:13:33 +02001101 if (dev->driver && pdrv->suspend)
1102 ret = pdrv->suspend(pdev, mesg);
David Brownell386415d82006-09-03 13:16:45 -07001103
1104 return ret;
1105}
1106
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001107static int platform_legacy_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Magnus Damm783ea7d2009-06-04 22:13:33 +02001109 struct platform_driver *pdrv = to_platform_driver(dev->driver);
1110 struct platform_device *pdev = to_platform_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 int ret = 0;
1112
Magnus Damm783ea7d2009-06-04 22:13:33 +02001113 if (dev->driver && pdrv->resume)
1114 ret = pdrv->resume(pdev);
Russell King9480e302005-10-28 09:52:56 -07001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return ret;
1117}
1118
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001119#endif /* CONFIG_PM_SLEEP */
Magnus Damm9d730222009-08-20 20:25:32 +02001120
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001121#ifdef CONFIG_SUSPEND
1122
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001123int platform_pm_suspend(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001124{
1125 struct device_driver *drv = dev->driver;
1126 int ret = 0;
1127
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001128 if (!drv)
1129 return 0;
1130
1131 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001132 if (drv->pm->suspend)
1133 ret = drv->pm->suspend(dev);
1134 } else {
1135 ret = platform_legacy_suspend(dev, PMSG_SUSPEND);
1136 }
1137
1138 return ret;
1139}
1140
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001141int platform_pm_resume(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001142{
1143 struct device_driver *drv = dev->driver;
1144 int ret = 0;
1145
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001146 if (!drv)
1147 return 0;
1148
1149 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001150 if (drv->pm->resume)
1151 ret = drv->pm->resume(dev);
1152 } else {
1153 ret = platform_legacy_resume(dev);
1154 }
1155
1156 return ret;
1157}
1158
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001159#endif /* CONFIG_SUSPEND */
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001160
Rafael J. Wysocki1f112ce2011-04-11 22:54:42 +02001161#ifdef CONFIG_HIBERNATE_CALLBACKS
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001162
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001163int platform_pm_freeze(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001164{
1165 struct device_driver *drv = dev->driver;
1166 int ret = 0;
1167
1168 if (!drv)
1169 return 0;
1170
1171 if (drv->pm) {
1172 if (drv->pm->freeze)
1173 ret = drv->pm->freeze(dev);
1174 } else {
1175 ret = platform_legacy_suspend(dev, PMSG_FREEZE);
1176 }
1177
1178 return ret;
1179}
1180
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001181int platform_pm_thaw(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001182{
1183 struct device_driver *drv = dev->driver;
1184 int ret = 0;
1185
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001186 if (!drv)
1187 return 0;
1188
1189 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001190 if (drv->pm->thaw)
1191 ret = drv->pm->thaw(dev);
1192 } else {
1193 ret = platform_legacy_resume(dev);
1194 }
1195
1196 return ret;
1197}
1198
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001199int platform_pm_poweroff(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001200{
1201 struct device_driver *drv = dev->driver;
1202 int ret = 0;
1203
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001204 if (!drv)
1205 return 0;
1206
1207 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001208 if (drv->pm->poweroff)
1209 ret = drv->pm->poweroff(dev);
1210 } else {
1211 ret = platform_legacy_suspend(dev, PMSG_HIBERNATE);
1212 }
1213
1214 return ret;
1215}
1216
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001217int platform_pm_restore(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001218{
1219 struct device_driver *drv = dev->driver;
1220 int ret = 0;
1221
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001222 if (!drv)
1223 return 0;
1224
1225 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001226 if (drv->pm->restore)
1227 ret = drv->pm->restore(dev);
1228 } else {
1229 ret = platform_legacy_resume(dev);
1230 }
1231
1232 return ret;
1233}
1234
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001235#endif /* CONFIG_HIBERNATE_CALLBACKS */
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001236
Uwe Kleine-Könige21d740a2020-11-19 13:46:09 +01001237/* modalias support enables more hands-off userspace setup:
1238 * (a) environment variable lets new-style hotplug events work once system is
1239 * fully running: "modprobe $MODALIAS"
1240 * (b) sysfs attribute lets new-style coldplug recover from hotplug events
1241 * mishandled before system is fully running: "modprobe $(cat modalias)"
1242 */
1243static ssize_t modalias_show(struct device *dev,
1244 struct device_attribute *attr, char *buf)
1245{
1246 struct platform_device *pdev = to_platform_device(dev);
1247 int len;
1248
1249 len = of_device_modalias(dev, buf, PAGE_SIZE);
1250 if (len != -ENODEV)
1251 return len;
1252
1253 len = acpi_device_modalias(dev, buf, PAGE_SIZE - 1);
1254 if (len != -ENODEV)
1255 return len;
1256
1257 return sysfs_emit(buf, "platform:%s\n", pdev->name);
1258}
1259static DEVICE_ATTR_RO(modalias);
1260
1261static ssize_t numa_node_show(struct device *dev,
1262 struct device_attribute *attr, char *buf)
1263{
1264 return sysfs_emit(buf, "%d\n", dev_to_node(dev));
1265}
1266static DEVICE_ATTR_RO(numa_node);
1267
1268static ssize_t driver_override_show(struct device *dev,
1269 struct device_attribute *attr, char *buf)
1270{
1271 struct platform_device *pdev = to_platform_device(dev);
1272 ssize_t len;
1273
1274 device_lock(dev);
1275 len = sysfs_emit(buf, "%s\n", pdev->driver_override);
1276 device_unlock(dev);
1277
1278 return len;
1279}
1280
1281static ssize_t driver_override_store(struct device *dev,
1282 struct device_attribute *attr,
1283 const char *buf, size_t count)
1284{
1285 struct platform_device *pdev = to_platform_device(dev);
Krzysztof Kozlowski6c2f42112022-04-19 13:34:24 +02001286 int ret;
Uwe Kleine-Könige21d740a2020-11-19 13:46:09 +01001287
Krzysztof Kozlowski6c2f42112022-04-19 13:34:24 +02001288 ret = driver_set_override(dev, &pdev->driver_override, buf, count);
1289 if (ret)
1290 return ret;
Uwe Kleine-Könige21d740a2020-11-19 13:46:09 +01001291
1292 return count;
1293}
1294static DEVICE_ATTR_RW(driver_override);
1295
1296static struct attribute *platform_dev_attrs[] = {
1297 &dev_attr_modalias.attr,
1298 &dev_attr_numa_node.attr,
1299 &dev_attr_driver_override.attr,
1300 NULL,
1301};
1302
1303static umode_t platform_dev_attrs_visible(struct kobject *kobj, struct attribute *a,
1304 int n)
1305{
1306 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1307
1308 if (a == &dev_attr_numa_node.attr &&
1309 dev_to_node(dev) == NUMA_NO_NODE)
1310 return 0;
1311
1312 return a->mode;
1313}
1314
Rikard Falkeborn5a576762021-05-28 23:34:08 +02001315static const struct attribute_group platform_dev_group = {
Uwe Kleine-Könige21d740a2020-11-19 13:46:09 +01001316 .attrs = platform_dev_attrs,
1317 .is_visible = platform_dev_attrs_visible,
1318};
1319__ATTRIBUTE_GROUPS(platform_dev);
1320
1321
1322/**
1323 * platform_match - bind platform device to platform driver.
1324 * @dev: device.
1325 * @drv: driver.
1326 *
1327 * Platform device IDs are assumed to be encoded like this:
1328 * "<name><instance>", where <name> is a short description of the type of
1329 * device, like "pci" or "floppy", and <instance> is the enumerated
1330 * instance of the device, like '0' or '42'. Driver IDs are simply
1331 * "<name>". So, extract the <name> from the platform_device structure,
1332 * and compare it against the name of the driver. Return whether they match
1333 * or not.
1334 */
1335static int platform_match(struct device *dev, struct device_driver *drv)
1336{
1337 struct platform_device *pdev = to_platform_device(dev);
1338 struct platform_driver *pdrv = to_platform_driver(drv);
1339
1340 /* When driver_override is set, only bind to the matching driver */
1341 if (pdev->driver_override)
1342 return !strcmp(pdev->driver_override, drv->name);
1343
1344 /* Attempt an OF style match first */
1345 if (of_driver_match_device(dev, drv))
1346 return 1;
1347
1348 /* Then try ACPI style match */
1349 if (acpi_driver_match_device(dev, drv))
1350 return 1;
1351
1352 /* Then try to match against the id table */
1353 if (pdrv->id_table)
1354 return platform_match_id(pdrv->id_table, pdev) != NULL;
1355
1356 /* fall-back to driver name match */
1357 return (strcmp(pdev->name, drv->name) == 0);
1358}
1359
Greg Kroah-Hartman2a81ada2023-01-11 12:30:17 +01001360static int platform_uevent(const struct device *dev, struct kobj_uevent_env *env)
Uwe Kleine-Könige21d740a2020-11-19 13:46:09 +01001361{
Greg Kroah-Hartman2a81ada2023-01-11 12:30:17 +01001362 const struct platform_device *pdev = to_platform_device(dev);
Uwe Kleine-Könige21d740a2020-11-19 13:46:09 +01001363 int rc;
1364
1365 /* Some devices have extra OF data and an OF-style MODALIAS */
1366 rc = of_device_uevent_modalias(dev, env);
1367 if (rc != -ENODEV)
1368 return rc;
1369
1370 rc = acpi_device_uevent_modalias(dev, env);
1371 if (rc != -ENODEV)
1372 return rc;
1373
1374 add_uevent_var(env, "MODALIAS=%s%s", PLATFORM_MODULE_PREFIX,
1375 pdev->name);
1376 return 0;
1377}
1378
Uwe Kleine-König9c309212020-11-19 13:46:11 +01001379static int platform_probe(struct device *_dev)
1380{
1381 struct platform_driver *drv = to_platform_driver(_dev->driver);
1382 struct platform_device *dev = to_platform_device(_dev);
1383 int ret;
1384
1385 /*
1386 * A driver registered using platform_driver_probe() cannot be bound
1387 * again later because the probe function usually lives in __init code
1388 * and so is gone. For these drivers .probe is set to
1389 * platform_probe_fail in __platform_driver_probe(). Don't even prepare
1390 * clocks and PM domains for these to match the traditional behaviour.
1391 */
1392 if (unlikely(drv->probe == platform_probe_fail))
1393 return -ENXIO;
1394
1395 ret = of_clk_set_defaults(_dev->of_node, false);
1396 if (ret < 0)
1397 return ret;
1398
1399 ret = dev_pm_domain_attach(_dev, true);
1400 if (ret)
1401 goto out;
1402
1403 if (drv->probe) {
1404 ret = drv->probe(dev);
1405 if (ret)
1406 dev_pm_domain_detach(_dev, true);
1407 }
1408
1409out:
1410 if (drv->prevent_deferred_probe && ret == -EPROBE_DEFER) {
1411 dev_warn(_dev, "probe deferral not supported\n");
1412 ret = -ENXIO;
1413 }
1414
1415 return ret;
1416}
1417
Uwe Kleine-Königfc7a6202021-07-13 21:35:22 +02001418static void platform_remove(struct device *_dev)
Uwe Kleine-König9c309212020-11-19 13:46:11 +01001419{
1420 struct platform_driver *drv = to_platform_driver(_dev->driver);
1421 struct platform_device *dev = to_platform_device(_dev);
Uwe Kleine-König9c309212020-11-19 13:46:11 +01001422
Uwe Kleine-König5c5a7682022-12-09 16:09:14 +01001423 if (drv->remove_new) {
1424 drv->remove_new(dev);
1425 } else if (drv->remove) {
Uwe Kleine-Könige5e1c202021-02-07 22:15:37 +01001426 int ret = drv->remove(dev);
1427
1428 if (ret)
1429 dev_warn(_dev, "remove callback returned a non-zero value. This will be ignored.\n");
1430 }
Uwe Kleine-König9c309212020-11-19 13:46:11 +01001431 dev_pm_domain_detach(_dev, true);
Uwe Kleine-König9c309212020-11-19 13:46:11 +01001432}
1433
1434static void platform_shutdown(struct device *_dev)
1435{
Uwe Kleine-König9c309212020-11-19 13:46:11 +01001436 struct platform_device *dev = to_platform_device(_dev);
Dmitry Baryshkov46e85af2020-12-13 02:55:33 +03001437 struct platform_driver *drv;
Uwe Kleine-König9c309212020-11-19 13:46:11 +01001438
Dmitry Baryshkov46e85af2020-12-13 02:55:33 +03001439 if (!_dev->driver)
1440 return;
1441
1442 drv = to_platform_driver(_dev->driver);
Uwe Kleine-König9c309212020-11-19 13:46:11 +01001443 if (drv->shutdown)
1444 drv->shutdown(dev);
1445}
1446
Lu Baolu4a6d9dd2022-04-18 08:49:52 +08001447static int platform_dma_configure(struct device *dev)
Nipun Gupta07397df2018-04-28 08:21:58 +05301448{
Lu Baolu512881e2022-04-18 08:49:53 +08001449 struct platform_driver *drv = to_platform_driver(dev->driver);
Andy Shevchenko243e1b72023-10-03 17:21:22 +03001450 struct fwnode_handle *fwnode = dev_fwnode(dev);
Nipun Gupta07397df2018-04-28 08:21:58 +05301451 enum dev_dma_attr attr;
1452 int ret = 0;
1453
Andy Shevchenko243e1b72023-10-03 17:21:22 +03001454 if (is_of_node(fwnode)) {
1455 ret = of_dma_configure(dev, to_of_node(fwnode), true);
1456 } else if (is_acpi_device_node(fwnode)) {
1457 attr = acpi_get_dma_attr(to_acpi_device_node(fwnode));
Robin Murphye5361ca2018-12-06 13:20:49 -08001458 ret = acpi_dma_configure(dev, attr);
Nipun Gupta07397df2018-04-28 08:21:58 +05301459 }
Andy Shevchenkoa549e3a2023-10-03 17:21:20 +03001460 if (ret || drv->driver_managed_dma)
1461 return ret;
Nipun Gupta07397df2018-04-28 08:21:58 +05301462
Andy Shevchenkoa549e3a2023-10-03 17:21:20 +03001463 ret = iommu_device_use_default_domain(dev);
1464 if (ret)
1465 arch_teardown_dma_ops(dev);
Lu Baolu512881e2022-04-18 08:49:53 +08001466
Nipun Gupta07397df2018-04-28 08:21:58 +05301467 return ret;
1468}
1469
Lu Baolu512881e2022-04-18 08:49:53 +08001470static void platform_dma_cleanup(struct device *dev)
1471{
1472 struct platform_driver *drv = to_platform_driver(dev->driver);
1473
1474 if (!drv->driver_managed_dma)
1475 iommu_device_unuse_default_domain(dev);
1476}
1477
Dmitry Torokhovd9ab7712009-07-22 00:37:25 +02001478static const struct dev_pm_ops platform_dev_pm_ops = {
Cai Huoqing86854b42021-08-28 17:02:19 +08001479 SET_RUNTIME_PM_OPS(pm_generic_runtime_suspend, pm_generic_runtime_resume, NULL)
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +02001480 USE_PLATFORM_PM_SLEEP_OPS
Rafael J. Wysocki25e18492008-05-21 01:40:43 +02001481};
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483struct bus_type platform_bus_type = {
1484 .name = "platform",
Greg Kroah-Hartmand06262e2013-08-23 14:24:37 -07001485 .dev_groups = platform_dev_groups,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 .match = platform_match,
David Brownella0245f72006-05-29 10:37:33 -07001487 .uevent = platform_uevent,
Uwe Kleine-König9c309212020-11-19 13:46:11 +01001488 .probe = platform_probe,
1489 .remove = platform_remove,
1490 .shutdown = platform_shutdown,
Nipun Gupta07397df2018-04-28 08:21:58 +05301491 .dma_configure = platform_dma_configure,
Lu Baolu512881e2022-04-18 08:49:53 +08001492 .dma_cleanup = platform_dma_cleanup,
Magnus Damm9d730222009-08-20 20:25:32 +02001493 .pm = &platform_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494};
Dmitry Torokhova96b2042005-12-10 01:36:28 -05001495EXPORT_SYMBOL_GPL(platform_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Sami Tolvanen492c8872019-11-12 13:41:56 -08001497static inline int __platform_match(struct device *dev, const void *drv)
1498{
1499 return platform_match(dev, (struct device_driver *)drv);
1500}
1501
Suzuki K Poulose36f33132019-07-23 23:18:38 +01001502/**
1503 * platform_find_device_by_driver - Find a platform device with a given
1504 * driver.
1505 * @start: The device to start the search from.
1506 * @drv: The device driver to look for.
1507 */
1508struct device *platform_find_device_by_driver(struct device *start,
1509 const struct device_driver *drv)
1510{
1511 return bus_find_device(&platform_bus_type, start, drv,
Sami Tolvanen492c8872019-11-12 13:41:56 -08001512 __platform_match);
Suzuki K Poulose36f33132019-07-23 23:18:38 +01001513}
1514EXPORT_SYMBOL_GPL(platform_find_device_by_driver);
1515
Guenter Roeckeecd37e2019-12-03 12:58:52 -08001516void __weak __init early_platform_cleanup(void) { }
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518int __init platform_bus_init(void)
1519{
Cornelia Huckfbfb1442006-11-27 10:35:08 +01001520 int error;
1521
Guenter Roeckeecd37e2019-12-03 12:58:52 -08001522 early_platform_cleanup();
1523
Cornelia Huckfbfb1442006-11-27 10:35:08 +01001524 error = device_register(&platform_bus);
Arvind Yadavc8ae1672018-03-11 11:25:49 +05301525 if (error) {
1526 put_device(&platform_bus);
Cornelia Huckfbfb1442006-11-27 10:35:08 +01001527 return error;
Arvind Yadavc8ae1672018-03-11 11:25:49 +05301528 }
Cornelia Huckfbfb1442006-11-27 10:35:08 +01001529 error = bus_register(&platform_bus_type);
1530 if (error)
1531 device_unregister(&platform_bus);
Rob Herring73aca582023-07-17 08:37:16 -06001532
Cornelia Huckfbfb1442006-11-27 10:35:08 +01001533 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}