Greg Kroah-Hartman | 989d42e | 2017-11-07 17:30:07 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 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 Chehab | fe34c89 | 2019-06-18 12:34:59 -0300 | [diff] [blame] | 8 | * Please see Documentation/driver-api/driver-model/platform.rst for more |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * information. |
| 10 | */ |
| 11 | |
Andrew Morton | daa4122 | 2009-08-06 16:00:44 -0700 | [diff] [blame] | 12 | #include <linux/string.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 13 | #include <linux/platform_device.h> |
Grant Likely | 0521215 | 2010-06-08 07:48:20 -0600 | [diff] [blame] | 14 | #include <linux/of_device.h> |
Rob Herring | 9ec36ca | 2014-04-23 17:57:41 -0500 | [diff] [blame] | 15 | #include <linux/of_irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/module.h> |
| 17 | #include <linux/init.h> |
John Garry | e15f2fa | 2020-12-02 18:36:56 +0800 | [diff] [blame] | 18 | #include <linux/interrupt.h> |
| 19 | #include <linux/ioport.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/dma-mapping.h> |
Mike Rapoport | 57c8a66 | 2018-10-30 15:09:49 -0700 | [diff] [blame] | 21 | #include <linux/memblock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/err.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 23 | #include <linux/slab.h> |
Magnus Damm | 9d73022 | 2009-08-20 20:25:32 +0200 | [diff] [blame] | 24 | #include <linux/pm_runtime.h> |
Ulf Hansson | f48c767 | 2014-09-29 13:58:47 +0200 | [diff] [blame] | 25 | #include <linux/pm_domain.h> |
Jean Delvare | 689ae23 | 2012-07-27 22:14:59 +0200 | [diff] [blame] | 26 | #include <linux/idr.h> |
Mika Westerberg | 91e5687 | 2012-10-31 22:45:02 +0100 | [diff] [blame] | 27 | #include <linux/acpi.h> |
Sylwester Nawrocki | 86be408 | 2014-06-18 17:29:32 +0200 | [diff] [blame] | 28 | #include <linux/clk/clk-conf.h> |
Kim Phillips | 3d713e0 | 2014-06-02 19:42:58 -0500 | [diff] [blame] | 29 | #include <linux/limits.h> |
Mika Westerberg | 00bbc1d | 2015-11-30 17:11:38 +0200 | [diff] [blame] | 30 | #include <linux/property.h> |
Qian Cai | 967d301 | 2019-01-03 15:29:05 -0800 | [diff] [blame] | 31 | #include <linux/kmemleak.h> |
Simon Schwartz | 39cc539 | 2019-12-10 17:41:37 -0500 | [diff] [blame] | 32 | #include <linux/types.h> |
Lu Baolu | 512881e | 2022-04-18 08:49:53 +0800 | [diff] [blame] | 33 | #include <linux/iommu.h> |
| 34 | #include <linux/dma-map-ops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Ben Dooks | a1bdc7a | 2005-10-13 17:54:41 +0100 | [diff] [blame] | 36 | #include "base.h" |
Rafael J. Wysocki | bed2b42 | 2012-08-06 01:45:11 +0200 | [diff] [blame] | 37 | #include "power/power.h" |
Ben Dooks | a1bdc7a | 2005-10-13 17:54:41 +0100 | [diff] [blame] | 38 | |
Jean Delvare | 689ae23 | 2012-07-27 22:14:59 +0200 | [diff] [blame] | 39 | /* For automatically allocated device IDs */ |
| 40 | static DEFINE_IDA(platform_devid_ida); |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | struct device platform_bus = { |
Kay Sievers | 1e0b2cf | 2008-10-30 01:36:48 +0100 | [diff] [blame] | 43 | .init_name = "platform", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | }; |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 45 | EXPORT_SYMBOL_GPL(platform_bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 48 | * platform_get_resource - get a resource for a device |
| 49 | * @dev: platform device |
| 50 | * @type: resource type |
| 51 | * @num: resource index |
Stephen Boyd | 0c7a6b9 | 2020-09-09 23:04:40 -0700 | [diff] [blame] | 52 | * |
| 53 | * Return: a pointer to the resource or NULL on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 55 | struct resource *platform_get_resource(struct platform_device *dev, |
| 56 | unsigned int type, unsigned int num) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
Simon Schwartz | 39cc539 | 2019-12-10 17:41:37 -0500 | [diff] [blame] | 58 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | for (i = 0; i < dev->num_resources; i++) { |
| 61 | struct resource *r = &dev->resource[i]; |
| 62 | |
Magnus Damm | c9f6616 | 2008-10-15 22:05:15 -0700 | [diff] [blame] | 63 | if (type == resource_type(r) && num-- == 0) |
| 64 | return r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | } |
| 66 | return NULL; |
| 67 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 68 | EXPORT_SYMBOL_GPL(platform_get_resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Andy Shevchenko | 0aec2da | 2020-12-09 22:36:38 +0200 | [diff] [blame] | 70 | struct 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 | } |
| 83 | EXPORT_SYMBOL_GPL(platform_get_mem_or_io); |
| 84 | |
Bartosz Golaszewski | bb6243b | 2019-10-22 10:43:14 +0200 | [diff] [blame] | 85 | #ifdef CONFIG_HAS_IOMEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | /** |
Dejin Zheng | 890cc39 | 2020-03-24 00:06:08 +0800 | [diff] [blame] | 87 | * 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 Boyd | 0c7a6b9 | 2020-09-09 23:04:40 -0700 | [diff] [blame] | 94 | * |
| 95 | * Return: a pointer to the remapped memory or an ERR_PTR() encoded error code |
| 96 | * on failure. |
Dejin Zheng | 890cc39 | 2020-03-24 00:06:08 +0800 | [diff] [blame] | 97 | */ |
| 98 | void __iomem * |
| 99 | devm_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 | } |
| 109 | EXPORT_SYMBOL_GPL(devm_platform_get_and_ioremap_resource); |
| 110 | |
| 111 | /** |
Bartosz Golaszewski | 7945f92 | 2019-02-20 11:12:39 +0000 | [diff] [blame] | 112 | * 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 Golaszewski | 7067c96 | 2019-04-01 10:16:35 +0200 | [diff] [blame] | 116 | * resource management |
Bartosz Golaszewski | 7945f92 | 2019-02-20 11:12:39 +0000 | [diff] [blame] | 117 | * @index: resource index |
Stephen Boyd | 0c7a6b9 | 2020-09-09 23:04:40 -0700 | [diff] [blame] | 118 | * |
| 119 | * Return: a pointer to the remapped memory or an ERR_PTR() encoded error code |
| 120 | * on failure. |
Bartosz Golaszewski | 7945f92 | 2019-02-20 11:12:39 +0000 | [diff] [blame] | 121 | */ |
| 122 | void __iomem *devm_platform_ioremap_resource(struct platform_device *pdev, |
| 123 | unsigned int index) |
| 124 | { |
Dejin Zheng | fd78901 | 2020-03-24 00:06:12 +0800 | [diff] [blame] | 125 | return devm_platform_get_and_ioremap_resource(pdev, index, NULL); |
Bartosz Golaszewski | 7945f92 | 2019-02-20 11:12:39 +0000 | [diff] [blame] | 126 | } |
| 127 | EXPORT_SYMBOL_GPL(devm_platform_ioremap_resource); |
Bartosz Golaszewski | bb6243b | 2019-10-22 10:43:14 +0200 | [diff] [blame] | 128 | |
| 129 | /** |
Bartosz Golaszewski | c9c8641 | 2019-10-22 10:43:16 +0200 | [diff] [blame] | 130 | * 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 Boyd | 0c7a6b9 | 2020-09-09 23:04:40 -0700 | [diff] [blame] | 137 | * |
| 138 | * Return: a pointer to the remapped memory or an ERR_PTR() encoded error code |
| 139 | * on failure. |
Bartosz Golaszewski | c9c8641 | 2019-10-22 10:43:16 +0200 | [diff] [blame] | 140 | */ |
| 141 | void __iomem * |
| 142 | devm_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 | } |
| 150 | EXPORT_SYMBOL_GPL(devm_platform_ioremap_resource_byname); |
Bartosz Golaszewski | 837ccda | 2019-02-21 17:26:27 +0100 | [diff] [blame] | 151 | #endif /* CONFIG_HAS_IOMEM */ |
Bartosz Golaszewski | 7945f92 | 2019-02-20 11:12:39 +0000 | [diff] [blame] | 152 | |
Greg Kroah-Hartman | c2f3f75 | 2021-04-07 11:47:56 +0200 | [diff] [blame] | 153 | /** |
| 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 | */ |
| 171 | int platform_get_irq_optional(struct platform_device *dev, unsigned int num) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | { |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 173 | int ret; |
Andreas Larsson | 5cf8f7d | 2012-10-29 23:26:56 +0000 | [diff] [blame] | 174 | #ifdef CONFIG_SPARC |
| 175 | /* sparc does not have irqs represented as IORESOURCE_IRQ resources */ |
| 176 | if (!dev || num >= dev->archdata.num_irqs) |
Andy Shevchenko | c99f4eb | 2021-03-31 17:59:36 +0300 | [diff] [blame] | 177 | goto out_not_found; |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 178 | ret = dev->archdata.irqs[num]; |
| 179 | goto out; |
Andreas Larsson | 5cf8f7d | 2012-10-29 23:26:56 +0000 | [diff] [blame] | 180 | #else |
Andy Shevchenko | 243e1b7 | 2023-10-03 17:21:22 +0300 | [diff] [blame] | 181 | struct fwnode_handle *fwnode = dev_fwnode(&dev->dev); |
Rob Herring | 9ec36ca | 2014-04-23 17:57:41 -0500 | [diff] [blame] | 182 | struct resource *r; |
Guenter Roeck | aff008a | 2014-06-17 15:51:02 -0700 | [diff] [blame] | 183 | |
Andy Shevchenko | 243e1b7 | 2023-10-03 17:21:22 +0300 | [diff] [blame] | 184 | if (is_of_node(fwnode)) { |
| 185 | ret = of_irq_get(to_of_node(fwnode), num); |
Sergei Shtylyov | e330b9a | 2016-07-04 01:04:24 +0300 | [diff] [blame] | 186 | if (ret > 0 || ret == -EPROBE_DEFER) |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 187 | goto out; |
Guenter Roeck | aff008a | 2014-06-17 15:51:02 -0700 | [diff] [blame] | 188 | } |
Rob Herring | 9ec36ca | 2014-04-23 17:57:41 -0500 | [diff] [blame] | 189 | |
| 190 | r = platform_get_resource(dev, IORESOURCE_IRQ, num); |
Andy Shevchenko | 243e1b7 | 2023-10-03 17:21:22 +0300 | [diff] [blame] | 191 | if (is_acpi_device_node(fwnode)) { |
Agustin Vega-Frias | d44fa3d | 2017-02-02 18:23:58 -0500 | [diff] [blame] | 192 | if (r && r->flags & IORESOURCE_DISABLED) { |
Andy Shevchenko | 243e1b7 | 2023-10-03 17:21:22 +0300 | [diff] [blame] | 193 | ret = acpi_irq_get(ACPI_HANDLE_FWNODE(fwnode), num, r); |
Agustin Vega-Frias | d44fa3d | 2017-02-02 18:23:58 -0500 | [diff] [blame] | 194 | if (ret) |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 195 | goto out; |
Agustin Vega-Frias | d44fa3d | 2017-02-02 18:23:58 -0500 | [diff] [blame] | 196 | } |
| 197 | } |
| 198 | |
Linus Walleij | 7085a74 | 2015-02-18 17:12:18 +0100 | [diff] [blame] | 199 | /* |
| 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 Roeck | 60ca5e0 | 2016-09-13 20:32:44 -0700 | [diff] [blame] | 205 | if (r && r->flags & IORESOURCE_BITS) { |
| 206 | struct irq_data *irqd; |
| 207 | |
| 208 | irqd = irq_get_irq_data(r->start); |
Andy Shevchenko | c99f4eb | 2021-03-31 17:59:36 +0300 | [diff] [blame] | 209 | if (!irqd) |
| 210 | goto out_not_found; |
Guenter Roeck | 60ca5e0 | 2016-09-13 20:32:44 -0700 | [diff] [blame] | 211 | irqd_set_trigger_type(irqd, r->flags & IORESOURCE_BITS); |
| 212 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 214 | if (r) { |
| 215 | ret = r->start; |
| 216 | goto out; |
| 217 | } |
Enrico Granata | daaef25 | 2019-02-11 11:01:12 -0800 | [diff] [blame] | 218 | |
| 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 Shevchenko | 243e1b7 | 2023-10-03 17:21:22 +0300 | [diff] [blame] | 226 | if (num == 0 && is_acpi_device_node(fwnode)) { |
| 227 | ret = acpi_dev_gpio_irq_get(to_acpi_device_node(fwnode), num); |
Brian Norris | 46c42d8 | 2019-07-29 13:49:54 -0700 | [diff] [blame] | 228 | /* Our callers expect -ENXIO for missing IRQs. */ |
| 229 | if (ret >= 0 || ret == -EPROBE_DEFER) |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 230 | goto out; |
Brian Norris | 46c42d8 | 2019-07-29 13:49:54 -0700 | [diff] [blame] | 231 | } |
Enrico Granata | daaef25 | 2019-02-11 11:01:12 -0800 | [diff] [blame] | 232 | |
Andreas Larsson | 5cf8f7d | 2012-10-29 23:26:56 +0000 | [diff] [blame] | 233 | #endif |
Andy Shevchenko | c99f4eb | 2021-03-31 17:59:36 +0300 | [diff] [blame] | 234 | out_not_found: |
| 235 | ret = -ENXIO; |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 236 | out: |
Sergey Shtylyov | ce753ad | 2022-03-11 22:35:29 +0300 | [diff] [blame] | 237 | if (WARN(!ret, "0 is an invalid IRQ number\n")) |
| 238 | return -EINVAL; |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 239 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | } |
Uwe Kleine-König | ec4e290 | 2019-10-09 11:37:46 +0200 | [diff] [blame] | 241 | EXPORT_SYMBOL_GPL(platform_get_irq_optional); |
Stephen Boyd | 7723f4c | 2019-07-29 22:38:43 -0700 | [diff] [blame] | 242 | |
| 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 Chehab | f082524 | 2020-04-14 18:48:45 +0200 | [diff] [blame] | 252 | * For example:: |
| 253 | * |
Stephen Boyd | 7723f4c | 2019-07-29 22:38:43 -0700 | [diff] [blame] | 254 | * int irq = platform_get_irq(pdev, 0); |
| 255 | * if (irq < 0) |
| 256 | * return irq; |
| 257 | * |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 258 | * Return: non-zero IRQ number on success, negative error number on failure. |
Stephen Boyd | 7723f4c | 2019-07-29 22:38:43 -0700 | [diff] [blame] | 259 | */ |
| 260 | int platform_get_irq(struct platform_device *dev, unsigned int num) |
| 261 | { |
| 262 | int ret; |
| 263 | |
Greg Kroah-Hartman | c2f3f75 | 2021-04-07 11:47:56 +0200 | [diff] [blame] | 264 | ret = platform_get_irq_optional(dev, num); |
Cai Huoqing | 2043727 | 2021-11-05 15:15:09 +0800 | [diff] [blame] | 265 | if (ret < 0) |
| 266 | return dev_err_probe(&dev->dev, ret, |
| 267 | "IRQ index %u not found\n", num); |
Stephen Boyd | 7723f4c | 2019-07-29 22:38:43 -0700 | [diff] [blame] | 268 | |
| 269 | return ret; |
| 270 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 271 | EXPORT_SYMBOL_GPL(platform_get_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | /** |
Stephen Boyd | 4b83555 | 2016-01-06 17:12:47 -0800 | [diff] [blame] | 274 | * 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 | */ |
| 279 | int platform_irq_count(struct platform_device *dev) |
| 280 | { |
| 281 | int ret, nr = 0; |
| 282 | |
Greg Kroah-Hartman | c2f3f75 | 2021-04-07 11:47:56 +0200 | [diff] [blame] | 283 | while ((ret = platform_get_irq_optional(dev, nr)) >= 0) |
Stephen Boyd | 4b83555 | 2016-01-06 17:12:47 -0800 | [diff] [blame] | 284 | nr++; |
| 285 | |
| 286 | if (ret == -EPROBE_DEFER) |
| 287 | return ret; |
| 288 | |
| 289 | return nr; |
| 290 | } |
| 291 | EXPORT_SYMBOL_GPL(platform_irq_count); |
| 292 | |
John Garry | e15f2fa | 2020-12-02 18:36:56 +0800 | [diff] [blame] | 293 | struct irq_affinity_devres { |
| 294 | unsigned int count; |
Kees Cook | 36b2d7d | 2023-10-06 13:17:49 -0700 | [diff] [blame] | 295 | unsigned int irq[] __counted_by(count); |
John Garry | e15f2fa | 2020-12-02 18:36:56 +0800 | [diff] [blame] | 296 | }; |
| 297 | |
| 298 | static 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 | |
| 307 | static 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 Shevchenko | 243e1b7 | 2023-10-03 17:21:22 +0300 | [diff] [blame] | 316 | if (is_acpi_device_node(dev_fwnode(dev))) |
John Garry | e15f2fa | 2020-12-02 18:36:56 +0800 | [diff] [blame] | 317 | 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 | */ |
| 335 | int 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 Garry | e1dc209 | 2020-12-21 22:30:55 +0800 | [diff] [blame] | 353 | if (nvec < 0) |
| 354 | return nvec; |
John Garry | e15f2fa | 2020-12-02 18:36:56 +0800 | [diff] [blame] | 355 | |
| 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 | |
| 406 | err_free_desc: |
| 407 | kfree(desc); |
| 408 | err_free_devres: |
| 409 | devres_free(ptr); |
| 410 | return ret; |
| 411 | } |
| 412 | EXPORT_SYMBOL_GPL(devm_platform_get_irqs_affinity); |
| 413 | |
Stephen Boyd | 4b83555 | 2016-01-06 17:12:47 -0800 | [diff] [blame] | 414 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 415 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 420 | struct resource *platform_get_resource_byname(struct platform_device *dev, |
Linus Walleij | c0afe7b | 2009-04-27 02:38:16 +0200 | [diff] [blame] | 421 | unsigned int type, |
| 422 | const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | { |
Simon Schwartz | 39cc539 | 2019-12-10 17:41:37 -0500 | [diff] [blame] | 424 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
| 426 | for (i = 0; i < dev->num_resources; i++) { |
| 427 | struct resource *r = &dev->resource[i]; |
| 428 | |
Peter Ujfalusi | 1b8cb92 | 2012-08-23 17:10:00 +0300 | [diff] [blame] | 429 | if (unlikely(!r->name)) |
| 430 | continue; |
| 431 | |
Magnus Damm | c9f6616 | 2008-10-15 22:05:15 -0700 | [diff] [blame] | 432 | if (type == resource_type(r) && !strcmp(r->name, name)) |
| 433 | return r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | } |
| 435 | return NULL; |
| 436 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 437 | EXPORT_SYMBOL_GPL(platform_get_resource_byname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
Hans de Goede | f1da567 | 2019-10-05 23:04:47 +0200 | [diff] [blame] | 439 | static int __platform_get_irq_byname(struct platform_device *dev, |
| 440 | const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | { |
Grygorii Strashko | ad69674 | 2014-05-20 13:42:02 +0300 | [diff] [blame] | 442 | struct resource *r; |
Andy Shevchenko | 71564a2 | 2019-10-23 15:25:05 +0300 | [diff] [blame] | 443 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | |
Soha Jin | 9dd4541 | 2022-11-11 17:45:42 +0800 | [diff] [blame] | 445 | ret = fwnode_irq_get_byname(dev_fwnode(&dev->dev), name); |
| 446 | if (ret > 0 || ret == -EPROBE_DEFER) |
| 447 | return ret; |
Grygorii Strashko | ad69674 | 2014-05-20 13:42:02 +0300 | [diff] [blame] | 448 | |
| 449 | r = platform_get_resource_byname(dev, IORESOURCE_IRQ, name); |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 450 | if (r) { |
Sergey Shtylyov | ce753ad | 2022-03-11 22:35:29 +0300 | [diff] [blame] | 451 | if (WARN(!r->start, "0 is an invalid IRQ number\n")) |
| 452 | return -EINVAL; |
Stephen Boyd | 7723f4c | 2019-07-29 22:38:43 -0700 | [diff] [blame] | 453 | return r->start; |
Bjorn Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 454 | } |
Stephen Boyd | 7723f4c | 2019-07-29 22:38:43 -0700 | [diff] [blame] | 455 | |
Stephen Boyd | 7723f4c | 2019-07-29 22:38:43 -0700 | [diff] [blame] | 456 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | } |
Hans de Goede | f1da567 | 2019-10-05 23:04:47 +0200 | [diff] [blame] | 458 | |
| 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 Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 466 | * Return: non-zero IRQ number on success, negative error number on failure. |
Hans de Goede | f1da567 | 2019-10-05 23:04:47 +0200 | [diff] [blame] | 467 | */ |
| 468 | int 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 Shtylyov | 2744656 | 2022-02-04 23:25:23 +0300 | [diff] [blame] | 473 | if (ret < 0) |
| 474 | return dev_err_probe(&dev->dev, ret, "IRQ %s not found\n", |
| 475 | name); |
Hans de Goede | f1da567 | 2019-10-05 23:04:47 +0200 | [diff] [blame] | 476 | return ret; |
| 477 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 478 | EXPORT_SYMBOL_GPL(platform_get_irq_byname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
| 480 | /** |
Hans de Goede | f1da567 | 2019-10-05 23:04:47 +0200 | [diff] [blame] | 481 | * 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 Helgaas | a85a6c8 | 2020-03-16 16:43:38 -0500 | [diff] [blame] | 488 | * Return: non-zero IRQ number on success, negative error number on failure. |
Hans de Goede | f1da567 | 2019-10-05 23:04:47 +0200 | [diff] [blame] | 489 | */ |
| 490 | int platform_get_irq_byname_optional(struct platform_device *dev, |
| 491 | const char *name) |
| 492 | { |
| 493 | return __platform_get_irq_byname(dev, name); |
| 494 | } |
| 495 | EXPORT_SYMBOL_GPL(platform_get_irq_byname_optional); |
| 496 | |
| 497 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 498 | * 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 Jain | 64f7974 | 2022-12-20 14:21:16 +0530 | [diff] [blame] | 501 | * |
| 502 | * Return: 0 on success, negative error number on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | */ |
| 504 | int 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 Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 519 | EXPORT_SYMBOL_GPL(platform_add_devices); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 521 | struct platform_object { |
| 522 | struct platform_device pdev; |
Yann Droneaud | 1cec24c | 2014-05-30 22:02:47 +0200 | [diff] [blame] | 523 | char name[]; |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 524 | }; |
| 525 | |
Christoph Hellwig | cdfee56 | 2019-08-16 08:24:35 +0200 | [diff] [blame] | 526 | /* |
| 527 | * Set up default DMA mask for platform devices if the they weren't |
| 528 | * previously set by the architecture / DT. |
| 529 | */ |
| 530 | static void setup_pdev_dma_masks(struct platform_device *pdev) |
| 531 | { |
Ulf Hansson | 9495b7e | 2020-04-22 12:09:54 +0200 | [diff] [blame] | 532 | pdev->dev.dma_parms = &pdev->dma_parms; |
| 533 | |
Christoph Hellwig | cdfee56 | 2019-08-16 08:24:35 +0200 | [diff] [blame] | 534 | if (!pdev->dev.coherent_dma_mask) |
| 535 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); |
Christoph Hellwig | e3a36eb | 2020-03-11 17:07:10 +0100 | [diff] [blame] | 536 | 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 Hellwig | cdfee56 | 2019-08-16 08:24:35 +0200 | [diff] [blame] | 540 | }; |
| 541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | /** |
Ben Hutchings | 3c31f07 | 2010-02-14 14:18:53 +0000 | [diff] [blame] | 543 | * platform_device_put - destroy a platform device |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 544 | * @pdev: platform device to free |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 545 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 546 | * 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 King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 548 | */ |
| 549 | void platform_device_put(struct platform_device *pdev) |
| 550 | { |
Andy Shevchenko | 99fef58 | 2018-12-03 20:21:41 +0200 | [diff] [blame] | 551 | if (!IS_ERR_OR_NULL(pdev)) |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 552 | put_device(&pdev->dev); |
| 553 | } |
| 554 | EXPORT_SYMBOL_GPL(platform_device_put); |
| 555 | |
| 556 | static void platform_device_release(struct device *dev) |
| 557 | { |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 558 | struct platform_object *pa = container_of(dev, struct platform_object, |
| 559 | pdev.dev); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 560 | |
Rob Herring | cb8be8b | 2021-02-11 17:27:45 -0600 | [diff] [blame] | 561 | of_node_put(pa->pdev.dev.of_node); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 562 | kfree(pa->pdev.dev.platform_data); |
Samuel Ortiz | e710d7d | 2011-04-08 00:43:01 +0200 | [diff] [blame] | 563 | kfree(pa->pdev.mfd_cell); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 564 | kfree(pa->pdev.resource); |
Kim Phillips | 3d713e0 | 2014-06-02 19:42:58 -0500 | [diff] [blame] | 565 | kfree(pa->pdev.driver_override); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 566 | kfree(pa); |
| 567 | } |
| 568 | |
| 569 | /** |
Ben Hutchings | 3c31f07 | 2010-02-14 14:18:53 +0000 | [diff] [blame] | 570 | * platform_device_alloc - create a platform device |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 571 | * @name: base name of the device we're adding |
| 572 | * @id: instance id |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 573 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 574 | * 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 King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 576 | */ |
Jean Delvare | 1359555e | 2007-09-09 12:54:16 +0200 | [diff] [blame] | 577 | struct platform_device *platform_device_alloc(const char *name, int id) |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 578 | { |
| 579 | struct platform_object *pa; |
| 580 | |
Yann Droneaud | 1cec24c | 2014-05-30 22:02:47 +0200 | [diff] [blame] | 581 | pa = kzalloc(sizeof(*pa) + strlen(name) + 1, GFP_KERNEL); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 582 | 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 Hellwig | cdfee56 | 2019-08-16 08:24:35 +0200 | [diff] [blame] | 588 | setup_pdev_dma_masks(&pa->pdev); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 589 | } |
| 590 | |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 591 | return pa ? &pa->pdev : NULL; |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 592 | } |
| 593 | EXPORT_SYMBOL_GPL(platform_device_alloc); |
| 594 | |
| 595 | /** |
Ben Hutchings | 3c31f07 | 2010-02-14 14:18:53 +0000 | [diff] [blame] | 596 | * platform_device_add_resources - add resources to a platform device |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 597 | * @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 King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 600 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 601 | * 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 King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 604 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 605 | int platform_device_add_resources(struct platform_device *pdev, |
Geert Uytterhoeven | 0b7f1a7 | 2009-01-28 21:01:02 +0100 | [diff] [blame] | 606 | const struct resource *res, unsigned int num) |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 607 | { |
Uwe Kleine-König | cea8962 | 2011-04-20 09:44:44 +0200 | [diff] [blame] | 608 | struct resource *r = NULL; |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 609 | |
Uwe Kleine-König | cea8962 | 2011-04-20 09:44:44 +0200 | [diff] [blame] | 610 | if (res) { |
| 611 | r = kmemdup(res, sizeof(struct resource) * num, GFP_KERNEL); |
| 612 | if (!r) |
| 613 | return -ENOMEM; |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 614 | } |
Uwe Kleine-König | cea8962 | 2011-04-20 09:44:44 +0200 | [diff] [blame] | 615 | |
Uwe Kleine-König | 4a03d6f | 2011-04-20 09:44:45 +0200 | [diff] [blame] | 616 | kfree(pdev->resource); |
Uwe Kleine-König | cea8962 | 2011-04-20 09:44:44 +0200 | [diff] [blame] | 617 | pdev->resource = r; |
| 618 | pdev->num_resources = num; |
| 619 | return 0; |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 620 | } |
| 621 | EXPORT_SYMBOL_GPL(platform_device_add_resources); |
| 622 | |
| 623 | /** |
Ben Hutchings | 3c31f07 | 2010-02-14 14:18:53 +0000 | [diff] [blame] | 624 | * platform_device_add_data - add platform-specific data to a platform device |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 625 | * @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 King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 628 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 629 | * 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 King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 632 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 633 | int platform_device_add_data(struct platform_device *pdev, const void *data, |
| 634 | size_t size) |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 635 | { |
Uwe Kleine-König | 27a33f9 | 2011-04-20 09:44:42 +0200 | [diff] [blame] | 636 | void *d = NULL; |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 637 | |
Uwe Kleine-König | 27a33f9 | 2011-04-20 09:44:42 +0200 | [diff] [blame] | 638 | if (data) { |
| 639 | d = kmemdup(data, size, GFP_KERNEL); |
| 640 | if (!d) |
| 641 | return -ENOMEM; |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 642 | } |
Uwe Kleine-König | 27a33f9 | 2011-04-20 09:44:42 +0200 | [diff] [blame] | 643 | |
Uwe Kleine-König | 251e031 | 2011-04-20 09:44:43 +0200 | [diff] [blame] | 644 | kfree(pdev->dev.platform_data); |
Uwe Kleine-König | 27a33f9 | 2011-04-20 09:44:42 +0200 | [diff] [blame] | 645 | pdev->dev.platform_data = d; |
| 646 | return 0; |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 647 | } |
| 648 | EXPORT_SYMBOL_GPL(platform_device_add_data); |
| 649 | |
| 650 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 651 | * platform_device_add - add a platform device to device hierarchy |
| 652 | * @pdev: platform device we're adding |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 654 | * This is part 2 of platform_device_register(), though may be called |
| 655 | * separately _iff_ pdev was allocated by platform_device_alloc(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | */ |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 657 | int platform_device_add(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | { |
Andy Shevchenko | 6136597 | 2023-10-03 17:21:21 +0300 | [diff] [blame] | 659 | struct device *dev = &pdev->dev; |
Simon Schwartz | 39cc539 | 2019-12-10 17:41:37 -0500 | [diff] [blame] | 660 | u32 i; |
| 661 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | |
Andy Shevchenko | 6136597 | 2023-10-03 17:21:21 +0300 | [diff] [blame] | 663 | if (!dev->parent) |
| 664 | dev->parent = &platform_bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
Andy Shevchenko | 6136597 | 2023-10-03 17:21:21 +0300 | [diff] [blame] | 666 | dev->bus = &platform_bus_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | |
Jean Delvare | 689ae23 | 2012-07-27 22:14:59 +0200 | [diff] [blame] | 668 | switch (pdev->id) { |
| 669 | default: |
Andy Shevchenko | 6136597 | 2023-10-03 17:21:21 +0300 | [diff] [blame] | 670 | dev_set_name(dev, "%s.%d", pdev->name, pdev->id); |
Jean Delvare | 689ae23 | 2012-07-27 22:14:59 +0200 | [diff] [blame] | 671 | break; |
| 672 | case PLATFORM_DEVID_NONE: |
Andy Shevchenko | 6136597 | 2023-10-03 17:21:21 +0300 | [diff] [blame] | 673 | dev_set_name(dev, "%s", pdev->name); |
Jean Delvare | 689ae23 | 2012-07-27 22:14:59 +0200 | [diff] [blame] | 674 | 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 Golaszewski | 0de7511 | 2020-09-09 20:02:48 +0200 | [diff] [blame] | 681 | ret = ida_alloc(&platform_devid_ida, GFP_KERNEL); |
Jean Delvare | 689ae23 | 2012-07-27 22:14:59 +0200 | [diff] [blame] | 682 | if (ret < 0) |
Andy Shevchenko | a549e3a | 2023-10-03 17:21:20 +0300 | [diff] [blame] | 683 | return ret; |
Jean Delvare | 689ae23 | 2012-07-27 22:14:59 +0200 | [diff] [blame] | 684 | pdev->id = ret; |
| 685 | pdev->id_auto = true; |
Andy Shevchenko | 6136597 | 2023-10-03 17:21:21 +0300 | [diff] [blame] | 686 | dev_set_name(dev, "%s.%d.auto", pdev->name, pdev->id); |
Jean Delvare | 689ae23 | 2012-07-27 22:14:59 +0200 | [diff] [blame] | 687 | break; |
| 688 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | |
| 690 | for (i = 0; i < pdev->num_resources; i++) { |
Greg Kroah-Hartman | 5da7f70 | 2015-06-10 08:38:02 -0700 | [diff] [blame] | 691 | struct resource *p, *r = &pdev->resource[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | |
| 693 | if (r->name == NULL) |
Andy Shevchenko | 6136597 | 2023-10-03 17:21:21 +0300 | [diff] [blame] | 694 | r->name = dev_name(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
| 696 | p = r->parent; |
| 697 | if (!p) { |
Greg Kroah-Hartman | 0e6c861 | 2015-06-10 08:38:29 -0700 | [diff] [blame] | 698 | if (resource_type(r) == IORESOURCE_MEM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | p = &iomem_resource; |
Greg Kroah-Hartman | 0e6c861 | 2015-06-10 08:38:29 -0700 | [diff] [blame] | 700 | else if (resource_type(r) == IORESOURCE_IO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | p = &ioport_resource; |
| 702 | } |
| 703 | |
Andy Shevchenko | 25ebcb7 | 2019-04-04 11:11:58 +0300 | [diff] [blame] | 704 | if (p) { |
| 705 | ret = insert_resource(p, r); |
| 706 | if (ret) { |
Andy Shevchenko | 6136597 | 2023-10-03 17:21:21 +0300 | [diff] [blame] | 707 | dev_err(dev, "failed to claim resource %d: %pR\n", i, r); |
Andy Shevchenko | 25ebcb7 | 2019-04-04 11:11:58 +0300 | [diff] [blame] | 708 | goto failed; |
| 709 | } |
Greg Kroah-Hartman | 5da7f70 | 2015-06-10 08:38:02 -0700 | [diff] [blame] | 710 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | } |
| 712 | |
Andy Shevchenko | 6136597 | 2023-10-03 17:21:21 +0300 | [diff] [blame] | 713 | pr_debug("Registering platform device '%s'. Parent at %s\n", dev_name(dev), |
| 714 | dev_name(dev->parent)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | |
Andy Shevchenko | 6136597 | 2023-10-03 17:21:21 +0300 | [diff] [blame] | 716 | ret = device_add(dev); |
Andy Shevchenko | a549e3a | 2023-10-03 17:21:20 +0300 | [diff] [blame] | 717 | if (ret) |
| 718 | goto failed; |
| 719 | |
| 720 | return 0; |
Greg Kroah-Hartman | 8b2dceb | 2015-06-10 08:36:50 -0700 | [diff] [blame] | 721 | |
Greg Kroah-Hartman | 5da7f70 | 2015-06-10 08:38:02 -0700 | [diff] [blame] | 722 | failed: |
Greg Kroah-Hartman | 8b2dceb | 2015-06-10 08:36:50 -0700 | [diff] [blame] | 723 | if (pdev->id_auto) { |
Bartosz Golaszewski | 0de7511 | 2020-09-09 20:02:48 +0200 | [diff] [blame] | 724 | ida_free(&platform_devid_ida, pdev->id); |
Greg Kroah-Hartman | 8b2dceb | 2015-06-10 08:36:50 -0700 | [diff] [blame] | 725 | pdev->id = PLATFORM_DEVID_AUTO; |
| 726 | } |
| 727 | |
Colin Ian King | 0707cfa | 2020-01-16 17:57:58 +0000 | [diff] [blame] | 728 | while (i--) { |
Greg Kroah-Hartman | 8b2dceb | 2015-06-10 08:36:50 -0700 | [diff] [blame] | 729 | struct resource *r = &pdev->resource[i]; |
Grant Likely | 7f5dcaf | 2015-06-07 15:20:11 +0100 | [diff] [blame] | 730 | if (r->parent) |
Greg Kroah-Hartman | 8b2dceb | 2015-06-10 08:36:50 -0700 | [diff] [blame] | 731 | release_resource(r); |
| 732 | } |
Magnus Damm | c9f6616 | 2008-10-15 22:05:15 -0700 | [diff] [blame] | 733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | return ret; |
| 735 | } |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 736 | EXPORT_SYMBOL_GPL(platform_device_add); |
| 737 | |
| 738 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 739 | * platform_device_del - remove a platform-level device |
| 740 | * @pdev: platform device we're removing |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 741 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 742 | * 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 Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 745 | */ |
| 746 | void platform_device_del(struct platform_device *pdev) |
| 747 | { |
Simon Schwartz | 39cc539 | 2019-12-10 17:41:37 -0500 | [diff] [blame] | 748 | u32 i; |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 749 | |
Andy Shevchenko | 99fef58 | 2018-12-03 20:21:41 +0200 | [diff] [blame] | 750 | if (!IS_ERR_OR_NULL(pdev)) { |
Greg Kroah-Hartman | 8b2dceb | 2015-06-10 08:36:50 -0700 | [diff] [blame] | 751 | device_del(&pdev->dev); |
| 752 | |
| 753 | if (pdev->id_auto) { |
Bartosz Golaszewski | 0de7511 | 2020-09-09 20:02:48 +0200 | [diff] [blame] | 754 | ida_free(&platform_devid_ida, pdev->id); |
Greg Kroah-Hartman | 8b2dceb | 2015-06-10 08:36:50 -0700 | [diff] [blame] | 755 | pdev->id = PLATFORM_DEVID_AUTO; |
| 756 | } |
| 757 | |
| 758 | for (i = 0; i < pdev->num_resources; i++) { |
| 759 | struct resource *r = &pdev->resource[i]; |
Grant Likely | 7f5dcaf | 2015-06-07 15:20:11 +0100 | [diff] [blame] | 760 | if (r->parent) |
Greg Kroah-Hartman | 8b2dceb | 2015-06-10 08:36:50 -0700 | [diff] [blame] | 761 | release_resource(r); |
| 762 | } |
| 763 | } |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 764 | } |
| 765 | EXPORT_SYMBOL_GPL(platform_device_del); |
| 766 | |
| 767 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 768 | * platform_device_register - add a platform-level device |
| 769 | * @pdev: platform device we're adding |
Johan Hovold | 67e532a | 2021-12-22 11:42:13 +0100 | [diff] [blame] | 770 | * |
| 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 King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 774 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 775 | int platform_device_register(struct platform_device *pdev) |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 776 | { |
| 777 | device_initialize(&pdev->dev); |
Christoph Hellwig | cdfee56 | 2019-08-16 08:24:35 +0200 | [diff] [blame] | 778 | setup_pdev_dma_masks(pdev); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 779 | return platform_device_add(pdev); |
| 780 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 781 | EXPORT_SYMBOL_GPL(platform_device_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
| 783 | /** |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 784 | * platform_device_unregister - unregister a platform-level device |
| 785 | * @pdev: platform device we're unregistering |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | * |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 787 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | */ |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 791 | void platform_device_unregister(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | { |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 793 | platform_device_del(pdev); |
| 794 | platform_device_put(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | } |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 796 | EXPORT_SYMBOL_GPL(platform_device_unregister); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | /** |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 799 | * platform_device_register_full - add a platform-level device with |
Uwe Kleine-König | 44f28bd | 2010-06-21 16:11:44 +0200 | [diff] [blame] | 800 | * resources and platform-specific data |
| 801 | * |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 802 | * @pdevinfo: data used to create device |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 803 | * |
Jani Nikula | f0eae0e | 2010-03-11 18:11:45 +0200 | [diff] [blame] | 804 | * Returns &struct platform_device pointer on success, or ERR_PTR() on error. |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 805 | */ |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 806 | struct platform_device *platform_device_register_full( |
Uwe Kleine-König | 5a3072b | 2011-12-08 22:53:29 +0100 | [diff] [blame] | 807 | const struct platform_device_info *pdevinfo) |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 808 | { |
Colin Ian King | 45bb08d | 2020-04-02 12:13:41 +0100 | [diff] [blame] | 809 | int ret; |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 810 | struct platform_device *pdev; |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 811 | |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 812 | pdev = platform_device_alloc(pdevinfo->name, pdevinfo->id); |
Uwe Kleine-König | 44f28bd | 2010-06-21 16:11:44 +0200 | [diff] [blame] | 813 | if (!pdev) |
Johannes Berg | 36cf3b1 | 2019-03-01 13:24:47 +0100 | [diff] [blame] | 814 | return ERR_PTR(-ENOMEM); |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 815 | |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 816 | pdev->dev.parent = pdevinfo->parent; |
Rafael J. Wysocki | ce79348 | 2015-03-16 23:49:03 +0100 | [diff] [blame] | 817 | pdev->dev.fwnode = pdevinfo->fwnode; |
Mans Rullgard | 2c1ea6a | 2019-02-21 11:29:35 +0000 | [diff] [blame] | 818 | pdev->dev.of_node = of_node_get(to_of_node(pdev->dev.fwnode)); |
| 819 | pdev->dev.of_node_reused = pdevinfo->of_node_reused; |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 820 | |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 821 | if (pdevinfo->dma_mask) { |
Christoph Hellwig | e3a36eb | 2020-03-11 17:07:10 +0100 | [diff] [blame] | 822 | pdev->platform_dma_mask = pdevinfo->dma_mask; |
| 823 | pdev->dev.dma_mask = &pdev->platform_dma_mask; |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 824 | pdev->dev.coherent_dma_mask = pdevinfo->dma_mask; |
| 825 | } |
| 826 | |
| 827 | ret = platform_device_add_resources(pdev, |
| 828 | pdevinfo->res, pdevinfo->num_res); |
Anton Vorontsov | 807508c | 2010-09-07 17:31:54 +0400 | [diff] [blame] | 829 | if (ret) |
| 830 | goto err; |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 831 | |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 832 | ret = platform_device_add_data(pdev, |
| 833 | pdevinfo->data, pdevinfo->size_data); |
Anton Vorontsov | 807508c | 2010-09-07 17:31:54 +0400 | [diff] [blame] | 834 | if (ret) |
| 835 | goto err; |
Uwe Kleine-König | 44f28bd | 2010-06-21 16:11:44 +0200 | [diff] [blame] | 836 | |
Heikki Krogerus | f4d0526 | 2016-03-29 14:52:23 +0300 | [diff] [blame] | 837 | if (pdevinfo->properties) { |
Heikki Krogerus | bd1e336 | 2021-08-17 13:24:49 +0300 | [diff] [blame] | 838 | ret = device_create_managed_software_node(&pdev->dev, |
| 839 | pdevinfo->properties, NULL); |
Mika Westerberg | 00bbc1d | 2015-11-30 17:11:38 +0200 | [diff] [blame] | 840 | if (ret) |
| 841 | goto err; |
| 842 | } |
| 843 | |
Uwe Kleine-König | 44f28bd | 2010-06-21 16:11:44 +0200 | [diff] [blame] | 844 | ret = platform_device_add(pdev); |
| 845 | if (ret) { |
| 846 | err: |
Rafael J. Wysocki | 7b19981 | 2013-11-11 22:41:56 +0100 | [diff] [blame] | 847 | ACPI_COMPANION_SET(&pdev->dev, NULL); |
Uwe Kleine-König | 44f28bd | 2010-06-21 16:11:44 +0200 | [diff] [blame] | 848 | platform_device_put(pdev); |
| 849 | return ERR_PTR(ret); |
| 850 | } |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 851 | |
| 852 | return pdev; |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 853 | } |
Uwe Kleine-König | 01dcc60 | 2011-08-25 11:16:00 +0200 | [diff] [blame] | 854 | EXPORT_SYMBOL_GPL(platform_device_register_full); |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 855 | |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 856 | /** |
Libo Chen | 9447057 | 2013-05-25 12:40:50 +0800 | [diff] [blame] | 857 | * __platform_driver_register - register a driver for platform-level devices |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 858 | * @drv: platform driver structure |
Randy Dunlap | 08801f9 | 2013-07-14 17:43:06 -0700 | [diff] [blame] | 859 | * @owner: owning module/driver |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 860 | */ |
Libo Chen | 9447057 | 2013-05-25 12:40:50 +0800 | [diff] [blame] | 861 | int __platform_driver_register(struct platform_driver *drv, |
| 862 | struct module *owner) |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 863 | { |
Libo Chen | 9447057 | 2013-05-25 12:40:50 +0800 | [diff] [blame] | 864 | drv->driver.owner = owner; |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 865 | drv->driver.bus = &platform_bus_type; |
Magnus Damm | 783ea7d | 2009-06-04 22:13:33 +0200 | [diff] [blame] | 866 | |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 867 | return driver_register(&drv->driver); |
| 868 | } |
Libo Chen | 9447057 | 2013-05-25 12:40:50 +0800 | [diff] [blame] | 869 | EXPORT_SYMBOL_GPL(__platform_driver_register); |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 870 | |
| 871 | /** |
Ben Hutchings | 3c31f07 | 2010-02-14 14:18:53 +0000 | [diff] [blame] | 872 | * platform_driver_unregister - unregister a driver for platform-level devices |
Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 873 | * @drv: platform driver structure |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 874 | */ |
| 875 | void platform_driver_unregister(struct platform_driver *drv) |
| 876 | { |
| 877 | driver_unregister(&drv->driver); |
| 878 | } |
| 879 | EXPORT_SYMBOL_GPL(platform_driver_unregister); |
| 880 | |
Uwe Kleine-König | 1608566 | 2020-11-19 13:46:10 +0100 | [diff] [blame] | 881 | static int platform_probe_fail(struct platform_device *pdev) |
Uwe Kleine-König | e21d740a | 2020-11-19 13:46:09 +0100 | [diff] [blame] | 882 | { |
| 883 | return -ENXIO; |
| 884 | } |
| 885 | |
Greg Kroah-Hartman | 40b3880 | 2023-01-31 09:24:59 +0100 | [diff] [blame] | 886 | static 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 Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 893 | /** |
Wolfram Sang | c3b50dc | 2014-10-28 17:40:41 +0100 | [diff] [blame] | 894 | * __platform_driver_probe - register driver for non-hotpluggable device |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 895 | * @drv: platform driver structure |
Johan Hovold | 3f9120b | 2013-09-23 16:27:26 +0200 | [diff] [blame] | 896 | * @probe: the driver probe routine, probably from an __init section |
Wolfram Sang | c3b50dc | 2014-10-28 17:40:41 +0100 | [diff] [blame] | 897 | * @module: module which will be the owner of the driver |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 898 | * |
| 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 Hovold | 3f9120b | 2013-09-23 16:27:26 +0200 | [diff] [blame] | 908 | * Note that this is incompatible with deferred probing. |
Fabio Porcedda | 647c86d | 2013-03-26 10:35:15 +0100 | [diff] [blame] | 909 | * |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 910 | * 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 Sang | c3b50dc | 2014-10-28 17:40:41 +0100 | [diff] [blame] | 913 | int __init_or_module __platform_driver_probe(struct platform_driver *drv, |
| 914 | int (*probe)(struct platform_device *), struct module *module) |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 915 | { |
Greg Kroah-Hartman | b4ce0bf | 2023-01-31 09:24:58 +0100 | [diff] [blame] | 916 | int retval; |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 917 | |
Dmitry Torokhov | 5c36eb2 | 2015-03-30 16:20:07 -0700 | [diff] [blame] | 918 | 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 Hovold | 3f9120b | 2013-09-23 16:27:26 +0200 | [diff] [blame] | 931 | /* |
| 932 | * Prevent driver from requesting probe deferral to avoid further |
| 933 | * futile probe attempts. |
| 934 | */ |
| 935 | drv->prevent_deferred_probe = true; |
| 936 | |
Dmitry Torokhov | 1a6f2a7 | 2009-10-12 20:17:41 -0700 | [diff] [blame] | 937 | /* make sure driver won't have bind/unbind attributes */ |
| 938 | drv->driver.suppress_bind_attrs = true; |
| 939 | |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 940 | /* temporary section violation during probe() */ |
| 941 | drv->probe = probe; |
Greg Kroah-Hartman | b4ce0bf | 2023-01-31 09:24:58 +0100 | [diff] [blame] | 942 | retval = __platform_driver_register(drv, module); |
Kuppuswamy Sathyanarayanan | 388bcc6 | 2020-04-08 14:40:03 -0700 | [diff] [blame] | 943 | if (retval) |
| 944 | return retval; |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 945 | |
Greg Kroah-Hartman | 40b3880 | 2023-01-31 09:24:59 +0100 | [diff] [blame] | 946 | /* Force all new probes of this driver to fail */ |
Uwe Kleine-König | 1608566 | 2020-11-19 13:46:10 +0100 | [diff] [blame] | 947 | drv->probe = platform_probe_fail; |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 948 | |
Greg Kroah-Hartman | 40b3880 | 2023-01-31 09:24:59 +0100 | [diff] [blame] | 949 | /* 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 Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 954 | platform_driver_unregister(drv); |
Greg Kroah-Hartman | 40b3880 | 2023-01-31 09:24:59 +0100 | [diff] [blame] | 955 | } |
| 956 | |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 957 | return retval; |
| 958 | } |
Wolfram Sang | c3b50dc | 2014-10-28 17:40:41 +0100 | [diff] [blame] | 959 | EXPORT_SYMBOL_GPL(__platform_driver_probe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 961 | /** |
Wolfram Sang | 291f653 | 2014-10-28 17:40:42 +0100 | [diff] [blame] | 962 | * __platform_create_bundle - register driver and create corresponding device |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 963 | * @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 Sang | 291f653 | 2014-10-28 17:40:42 +0100 | [diff] [blame] | 969 | * @module: module which will be the owner of the driver |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 970 | * |
| 971 | * Use this in legacy-style modules that probe hardware directly and |
| 972 | * register a single platform device and corresponding platform driver. |
Jani Nikula | f0eae0e | 2010-03-11 18:11:45 +0200 | [diff] [blame] | 973 | * |
| 974 | * Returns &struct platform_device pointer on success, or ERR_PTR() on error. |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 975 | */ |
Wolfram Sang | 291f653 | 2014-10-28 17:40:42 +0100 | [diff] [blame] | 976 | struct platform_device * __init_or_module __platform_create_bundle( |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 977 | struct platform_driver *driver, |
| 978 | int (*probe)(struct platform_device *), |
| 979 | struct resource *res, unsigned int n_res, |
Wolfram Sang | 291f653 | 2014-10-28 17:40:42 +0100 | [diff] [blame] | 980 | const void *data, size_t size, struct module *module) |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 981 | { |
| 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 Vorontsov | 807508c | 2010-09-07 17:31:54 +0400 | [diff] [blame] | 991 | error = platform_device_add_resources(pdev, res, n_res); |
| 992 | if (error) |
| 993 | goto err_pdev_put; |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 994 | |
Anton Vorontsov | 807508c | 2010-09-07 17:31:54 +0400 | [diff] [blame] | 995 | error = platform_device_add_data(pdev, data, size); |
| 996 | if (error) |
| 997 | goto err_pdev_put; |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 998 | |
| 999 | error = platform_device_add(pdev); |
| 1000 | if (error) |
| 1001 | goto err_pdev_put; |
| 1002 | |
Wolfram Sang | 291f653 | 2014-10-28 17:40:42 +0100 | [diff] [blame] | 1003 | error = __platform_driver_probe(driver, probe, module); |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 1004 | if (error) |
| 1005 | goto err_pdev_del; |
| 1006 | |
| 1007 | return pdev; |
| 1008 | |
| 1009 | err_pdev_del: |
| 1010 | platform_device_del(pdev); |
| 1011 | err_pdev_put: |
| 1012 | platform_device_put(pdev); |
| 1013 | err_out: |
| 1014 | return ERR_PTR(error); |
| 1015 | } |
Wolfram Sang | 291f653 | 2014-10-28 17:40:42 +0100 | [diff] [blame] | 1016 | EXPORT_SYMBOL_GPL(__platform_create_bundle); |
Dmitry Torokhov | ecdf6ce | 2009-12-29 20:11:20 -0800 | [diff] [blame] | 1017 | |
Thierry Reding | dbe2256 | 2015-09-25 17:29:04 +0200 | [diff] [blame] | 1018 | /** |
| 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 | */ |
| 1031 | int __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 | |
| 1050 | error: |
| 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 | } |
| 1058 | EXPORT_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 Bin | c82c83c | 2020-05-20 22:12:02 +0800 | [diff] [blame] | 1065 | * Unregisters platform drivers specified by an array. This is typically used |
Thierry Reding | dbe2256 | 2015-09-25 17:29:04 +0200 | [diff] [blame] | 1066 | * to complement an earlier call to platform_register_drivers(). Drivers are |
| 1067 | * unregistered in the reverse order in which they were registered. |
| 1068 | */ |
| 1069 | void 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 | } |
| 1077 | EXPORT_SYMBOL_GPL(platform_unregister_drivers); |
| 1078 | |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 1079 | static const struct platform_device_id *platform_match_id( |
Uwe Kleine-König | 831fad2 | 2010-01-26 09:35:00 +0100 | [diff] [blame] | 1080 | const struct platform_device_id *id, |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 1081 | struct platform_device *pdev) |
| 1082 | { |
| 1083 | while (id->name[0]) { |
Greg Kroah-Hartman | 391c032 | 2019-04-29 19:49:21 +0200 | [diff] [blame] | 1084 | if (strcmp(pdev->name, id->name) == 0) { |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 1085 | pdev->id_entry = id; |
| 1086 | return id; |
| 1087 | } |
| 1088 | id++; |
| 1089 | } |
| 1090 | return NULL; |
| 1091 | } |
| 1092 | |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1093 | #ifdef CONFIG_PM_SLEEP |
| 1094 | |
| 1095 | static int platform_legacy_suspend(struct device *dev, pm_message_t mesg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | { |
Magnus Damm | 783ea7d | 2009-06-04 22:13:33 +0200 | [diff] [blame] | 1097 | struct platform_driver *pdrv = to_platform_driver(dev->driver); |
| 1098 | struct platform_device *pdev = to_platform_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | int ret = 0; |
| 1100 | |
Magnus Damm | 783ea7d | 2009-06-04 22:13:33 +0200 | [diff] [blame] | 1101 | if (dev->driver && pdrv->suspend) |
| 1102 | ret = pdrv->suspend(pdev, mesg); |
David Brownell | 386415d8 | 2006-09-03 13:16:45 -0700 | [diff] [blame] | 1103 | |
| 1104 | return ret; |
| 1105 | } |
| 1106 | |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1107 | static int platform_legacy_resume(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | { |
Magnus Damm | 783ea7d | 2009-06-04 22:13:33 +0200 | [diff] [blame] | 1109 | struct platform_driver *pdrv = to_platform_driver(dev->driver); |
| 1110 | struct platform_device *pdev = to_platform_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | int ret = 0; |
| 1112 | |
Magnus Damm | 783ea7d | 2009-06-04 22:13:33 +0200 | [diff] [blame] | 1113 | if (dev->driver && pdrv->resume) |
| 1114 | ret = pdrv->resume(pdev); |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 1115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | return ret; |
| 1117 | } |
| 1118 | |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 1119 | #endif /* CONFIG_PM_SLEEP */ |
Magnus Damm | 9d73022 | 2009-08-20 20:25:32 +0200 | [diff] [blame] | 1120 | |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1121 | #ifdef CONFIG_SUSPEND |
| 1122 | |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 1123 | int platform_pm_suspend(struct device *dev) |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1124 | { |
| 1125 | struct device_driver *drv = dev->driver; |
| 1126 | int ret = 0; |
| 1127 | |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 1128 | if (!drv) |
| 1129 | return 0; |
| 1130 | |
| 1131 | if (drv->pm) { |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1132 | 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. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 1141 | int platform_pm_resume(struct device *dev) |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1142 | { |
| 1143 | struct device_driver *drv = dev->driver; |
| 1144 | int ret = 0; |
| 1145 | |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 1146 | if (!drv) |
| 1147 | return 0; |
| 1148 | |
| 1149 | if (drv->pm) { |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1150 | 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. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 1159 | #endif /* CONFIG_SUSPEND */ |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1160 | |
Rafael J. Wysocki | 1f112ce | 2011-04-11 22:54:42 +0200 | [diff] [blame] | 1161 | #ifdef CONFIG_HIBERNATE_CALLBACKS |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1162 | |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 1163 | int platform_pm_freeze(struct device *dev) |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1164 | { |
| 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. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 1181 | int platform_pm_thaw(struct device *dev) |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1182 | { |
| 1183 | struct device_driver *drv = dev->driver; |
| 1184 | int ret = 0; |
| 1185 | |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 1186 | if (!drv) |
| 1187 | return 0; |
| 1188 | |
| 1189 | if (drv->pm) { |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1190 | 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. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 1199 | int platform_pm_poweroff(struct device *dev) |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1200 | { |
| 1201 | struct device_driver *drv = dev->driver; |
| 1202 | int ret = 0; |
| 1203 | |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 1204 | if (!drv) |
| 1205 | return 0; |
| 1206 | |
| 1207 | if (drv->pm) { |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1208 | 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. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 1217 | int platform_pm_restore(struct device *dev) |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1218 | { |
| 1219 | struct device_driver *drv = dev->driver; |
| 1220 | int ret = 0; |
| 1221 | |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 1222 | if (!drv) |
| 1223 | return 0; |
| 1224 | |
| 1225 | if (drv->pm) { |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1226 | 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. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 1235 | #endif /* CONFIG_HIBERNATE_CALLBACKS */ |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1236 | |
Uwe Kleine-König | e21d740a | 2020-11-19 13:46:09 +0100 | [diff] [blame] | 1237 | /* 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 | */ |
| 1243 | static 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 | } |
| 1259 | static DEVICE_ATTR_RO(modalias); |
| 1260 | |
| 1261 | static 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 | } |
| 1266 | static DEVICE_ATTR_RO(numa_node); |
| 1267 | |
| 1268 | static 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 | |
| 1281 | static 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 Kozlowski | 6c2f4211 | 2022-04-19 13:34:24 +0200 | [diff] [blame] | 1286 | int ret; |
Uwe Kleine-König | e21d740a | 2020-11-19 13:46:09 +0100 | [diff] [blame] | 1287 | |
Krzysztof Kozlowski | 6c2f4211 | 2022-04-19 13:34:24 +0200 | [diff] [blame] | 1288 | ret = driver_set_override(dev, &pdev->driver_override, buf, count); |
| 1289 | if (ret) |
| 1290 | return ret; |
Uwe Kleine-König | e21d740a | 2020-11-19 13:46:09 +0100 | [diff] [blame] | 1291 | |
| 1292 | return count; |
| 1293 | } |
| 1294 | static DEVICE_ATTR_RW(driver_override); |
| 1295 | |
| 1296 | static 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 | |
| 1303 | static 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 Falkeborn | 5a57676 | 2021-05-28 23:34:08 +0200 | [diff] [blame] | 1315 | static const struct attribute_group platform_dev_group = { |
Uwe Kleine-König | e21d740a | 2020-11-19 13:46:09 +0100 | [diff] [blame] | 1316 | .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 | */ |
| 1335 | static 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-Hartman | 2a81ada | 2023-01-11 12:30:17 +0100 | [diff] [blame] | 1360 | static int platform_uevent(const struct device *dev, struct kobj_uevent_env *env) |
Uwe Kleine-König | e21d740a | 2020-11-19 13:46:09 +0100 | [diff] [blame] | 1361 | { |
Greg Kroah-Hartman | 2a81ada | 2023-01-11 12:30:17 +0100 | [diff] [blame] | 1362 | const struct platform_device *pdev = to_platform_device(dev); |
Uwe Kleine-König | e21d740a | 2020-11-19 13:46:09 +0100 | [diff] [blame] | 1363 | 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önig | 9c30921 | 2020-11-19 13:46:11 +0100 | [diff] [blame] | 1379 | static 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 | |
| 1409 | out: |
| 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önig | fc7a620 | 2021-07-13 21:35:22 +0200 | [diff] [blame] | 1418 | static void platform_remove(struct device *_dev) |
Uwe Kleine-König | 9c30921 | 2020-11-19 13:46:11 +0100 | [diff] [blame] | 1419 | { |
| 1420 | struct platform_driver *drv = to_platform_driver(_dev->driver); |
| 1421 | struct platform_device *dev = to_platform_device(_dev); |
Uwe Kleine-König | 9c30921 | 2020-11-19 13:46:11 +0100 | [diff] [blame] | 1422 | |
Uwe Kleine-König | 5c5a768 | 2022-12-09 16:09:14 +0100 | [diff] [blame] | 1423 | if (drv->remove_new) { |
| 1424 | drv->remove_new(dev); |
| 1425 | } else if (drv->remove) { |
Uwe Kleine-König | e5e1c20 | 2021-02-07 22:15:37 +0100 | [diff] [blame] | 1426 | 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önig | 9c30921 | 2020-11-19 13:46:11 +0100 | [diff] [blame] | 1431 | dev_pm_domain_detach(_dev, true); |
Uwe Kleine-König | 9c30921 | 2020-11-19 13:46:11 +0100 | [diff] [blame] | 1432 | } |
| 1433 | |
| 1434 | static void platform_shutdown(struct device *_dev) |
| 1435 | { |
Uwe Kleine-König | 9c30921 | 2020-11-19 13:46:11 +0100 | [diff] [blame] | 1436 | struct platform_device *dev = to_platform_device(_dev); |
Dmitry Baryshkov | 46e85af | 2020-12-13 02:55:33 +0300 | [diff] [blame] | 1437 | struct platform_driver *drv; |
Uwe Kleine-König | 9c30921 | 2020-11-19 13:46:11 +0100 | [diff] [blame] | 1438 | |
Dmitry Baryshkov | 46e85af | 2020-12-13 02:55:33 +0300 | [diff] [blame] | 1439 | if (!_dev->driver) |
| 1440 | return; |
| 1441 | |
| 1442 | drv = to_platform_driver(_dev->driver); |
Uwe Kleine-König | 9c30921 | 2020-11-19 13:46:11 +0100 | [diff] [blame] | 1443 | if (drv->shutdown) |
| 1444 | drv->shutdown(dev); |
| 1445 | } |
| 1446 | |
Lu Baolu | 4a6d9dd | 2022-04-18 08:49:52 +0800 | [diff] [blame] | 1447 | static int platform_dma_configure(struct device *dev) |
Nipun Gupta | 07397df | 2018-04-28 08:21:58 +0530 | [diff] [blame] | 1448 | { |
Lu Baolu | 512881e | 2022-04-18 08:49:53 +0800 | [diff] [blame] | 1449 | struct platform_driver *drv = to_platform_driver(dev->driver); |
Andy Shevchenko | 243e1b7 | 2023-10-03 17:21:22 +0300 | [diff] [blame] | 1450 | struct fwnode_handle *fwnode = dev_fwnode(dev); |
Nipun Gupta | 07397df | 2018-04-28 08:21:58 +0530 | [diff] [blame] | 1451 | enum dev_dma_attr attr; |
| 1452 | int ret = 0; |
| 1453 | |
Andy Shevchenko | 243e1b7 | 2023-10-03 17:21:22 +0300 | [diff] [blame] | 1454 | 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 Murphy | e5361ca | 2018-12-06 13:20:49 -0800 | [diff] [blame] | 1458 | ret = acpi_dma_configure(dev, attr); |
Nipun Gupta | 07397df | 2018-04-28 08:21:58 +0530 | [diff] [blame] | 1459 | } |
Andy Shevchenko | a549e3a | 2023-10-03 17:21:20 +0300 | [diff] [blame] | 1460 | if (ret || drv->driver_managed_dma) |
| 1461 | return ret; |
Nipun Gupta | 07397df | 2018-04-28 08:21:58 +0530 | [diff] [blame] | 1462 | |
Andy Shevchenko | a549e3a | 2023-10-03 17:21:20 +0300 | [diff] [blame] | 1463 | ret = iommu_device_use_default_domain(dev); |
| 1464 | if (ret) |
| 1465 | arch_teardown_dma_ops(dev); |
Lu Baolu | 512881e | 2022-04-18 08:49:53 +0800 | [diff] [blame] | 1466 | |
Nipun Gupta | 07397df | 2018-04-28 08:21:58 +0530 | [diff] [blame] | 1467 | return ret; |
| 1468 | } |
| 1469 | |
Lu Baolu | 512881e | 2022-04-18 08:49:53 +0800 | [diff] [blame] | 1470 | static 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 Torokhov | d9ab771 | 2009-07-22 00:37:25 +0200 | [diff] [blame] | 1478 | static const struct dev_pm_ops platform_dev_pm_ops = { |
Cai Huoqing | 86854b4 | 2021-08-28 17:02:19 +0800 | [diff] [blame] | 1479 | SET_RUNTIME_PM_OPS(pm_generic_runtime_suspend, pm_generic_runtime_resume, NULL) |
Rafael J. Wysocki | 69c9dd1 | 2011-04-29 00:36:05 +0200 | [diff] [blame] | 1480 | USE_PLATFORM_PM_SLEEP_OPS |
Rafael J. Wysocki | 25e1849 | 2008-05-21 01:40:43 +0200 | [diff] [blame] | 1481 | }; |
| 1482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | struct bus_type platform_bus_type = { |
| 1484 | .name = "platform", |
Greg Kroah-Hartman | d06262e | 2013-08-23 14:24:37 -0700 | [diff] [blame] | 1485 | .dev_groups = platform_dev_groups, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | .match = platform_match, |
David Brownell | a0245f7 | 2006-05-29 10:37:33 -0700 | [diff] [blame] | 1487 | .uevent = platform_uevent, |
Uwe Kleine-König | 9c30921 | 2020-11-19 13:46:11 +0100 | [diff] [blame] | 1488 | .probe = platform_probe, |
| 1489 | .remove = platform_remove, |
| 1490 | .shutdown = platform_shutdown, |
Nipun Gupta | 07397df | 2018-04-28 08:21:58 +0530 | [diff] [blame] | 1491 | .dma_configure = platform_dma_configure, |
Lu Baolu | 512881e | 2022-04-18 08:49:53 +0800 | [diff] [blame] | 1492 | .dma_cleanup = platform_dma_cleanup, |
Magnus Damm | 9d73022 | 2009-08-20 20:25:32 +0200 | [diff] [blame] | 1493 | .pm = &platform_dev_pm_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | }; |
Dmitry Torokhov | a96b204 | 2005-12-10 01:36:28 -0500 | [diff] [blame] | 1495 | EXPORT_SYMBOL_GPL(platform_bus_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | |
Sami Tolvanen | 492c887 | 2019-11-12 13:41:56 -0800 | [diff] [blame] | 1497 | static inline int __platform_match(struct device *dev, const void *drv) |
| 1498 | { |
| 1499 | return platform_match(dev, (struct device_driver *)drv); |
| 1500 | } |
| 1501 | |
Suzuki K Poulose | 36f3313 | 2019-07-23 23:18:38 +0100 | [diff] [blame] | 1502 | /** |
| 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 | */ |
| 1508 | struct 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 Tolvanen | 492c887 | 2019-11-12 13:41:56 -0800 | [diff] [blame] | 1512 | __platform_match); |
Suzuki K Poulose | 36f3313 | 2019-07-23 23:18:38 +0100 | [diff] [blame] | 1513 | } |
| 1514 | EXPORT_SYMBOL_GPL(platform_find_device_by_driver); |
| 1515 | |
Guenter Roeck | eecd37e | 2019-12-03 12:58:52 -0800 | [diff] [blame] | 1516 | void __weak __init early_platform_cleanup(void) { } |
| 1517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | int __init platform_bus_init(void) |
| 1519 | { |
Cornelia Huck | fbfb144 | 2006-11-27 10:35:08 +0100 | [diff] [blame] | 1520 | int error; |
| 1521 | |
Guenter Roeck | eecd37e | 2019-12-03 12:58:52 -0800 | [diff] [blame] | 1522 | early_platform_cleanup(); |
| 1523 | |
Cornelia Huck | fbfb144 | 2006-11-27 10:35:08 +0100 | [diff] [blame] | 1524 | error = device_register(&platform_bus); |
Arvind Yadav | c8ae167 | 2018-03-11 11:25:49 +0530 | [diff] [blame] | 1525 | if (error) { |
| 1526 | put_device(&platform_bus); |
Cornelia Huck | fbfb144 | 2006-11-27 10:35:08 +0100 | [diff] [blame] | 1527 | return error; |
Arvind Yadav | c8ae167 | 2018-03-11 11:25:49 +0530 | [diff] [blame] | 1528 | } |
Cornelia Huck | fbfb144 | 2006-11-27 10:35:08 +0100 | [diff] [blame] | 1529 | error = bus_register(&platform_bus_type); |
| 1530 | if (error) |
| 1531 | device_unregister(&platform_bus); |
Rob Herring | 73aca58 | 2023-07-17 08:37:16 -0600 | [diff] [blame] | 1532 | |
Cornelia Huck | fbfb144 | 2006-11-27 10:35:08 +0100 | [diff] [blame] | 1533 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | } |