blob: 874f031442dc7bf1a631315591f7917deb3222f0 [file] [log] [blame]
Rob Herringaf6074f2017-12-27 12:55:14 -06001// SPDX-License-Identifier: GPL-2.0
Stephen Rothwellf85ff302007-05-01 16:40:36 +10002#include <linux/string.h>
3#include <linux/kernel.h>
4#include <linux/of.h>
Stephen Rothwellf898f8d2007-05-01 16:49:51 +10005#include <linux/of_device.h>
Murali Karicheri1f5c69a2015-03-03 12:52:09 -05006#include <linux/of_address.h>
7#include <linux/of_iommu.h>
Will Deaconce5cb672021-08-16 14:26:16 +01008#include <linux/of_reserved_mem.h>
Jim Quinlane0d07272020-09-17 18:43:40 +02009#include <linux/dma-direct.h> /* for bus_dma_region */
Christoph Hellwig0a0f0d82020-09-22 15:31:03 +020010#include <linux/dma-map-ops.h>
Stephen Rothwellf85ff302007-05-01 16:40:36 +100011#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/mod_devicetable.h>
14#include <linux/slab.h>
Robin Murphy72328882017-08-31 11:32:54 +010015#include <linux/platform_device.h>
Stephen Rothwellf85ff302007-05-01 16:40:36 +100016
17#include <asm/errno.h>
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -080018#include "of_private.h"
Stephen Rothwellf85ff302007-05-01 16:40:36 +100019
20/**
Grant Likely44504b22010-04-13 16:13:22 -070021 * of_match_device - Tell if a struct device matches an of_device_id list
Jojo Zeng8e94fd32019-04-25 09:45:54 +080022 * @matches: array of of device match structures to search in
Stephen Rothwellf85ff302007-05-01 16:40:36 +100023 * @dev: the of device structure to match against
24 *
Grant Likely2dc11582010-08-06 09:25:50 -060025 * Used by a driver to check whether an platform_device present in the
Stephen Rothwellf85ff302007-05-01 16:40:36 +100026 * system is in its list of supported devices.
27 */
28const struct of_device_id *of_match_device(const struct of_device_id *matches,
Grant Likely44504b22010-04-13 16:13:22 -070029 const struct device *dev)
Stephen Rothwellf85ff302007-05-01 16:40:36 +100030{
Rob Herring9b22c172022-01-18 11:34:04 -060031 if (!matches || !dev->of_node || dev->of_node_reused)
Stephen Rothwellf85ff302007-05-01 16:40:36 +100032 return NULL;
Grant Likely44504b22010-04-13 16:13:22 -070033 return of_match_node(matches, dev->of_node);
Stephen Rothwellf85ff302007-05-01 16:40:36 +100034}
35EXPORT_SYMBOL(of_match_device);
36
Grant Likely7096d042010-10-20 11:45:13 -060037int of_device_add(struct platform_device *ofdev)
Stephen Rothwellf85ff302007-05-01 16:40:36 +100038{
Grant Likely61c7a082010-04-13 16:12:29 -070039 BUG_ON(ofdev->dev.of_node == NULL);
Jeremy Kerr6098e2e2008-10-26 21:51:25 +000040
Grant Likelyeca39302010-06-08 07:48:21 -060041 /* name and id have to be set so that the platform bus doesn't get
42 * confused on matching */
43 ofdev->name = dev_name(&ofdev->dev);
Andy Shevchenko6d7e3bf82017-08-25 18:33:13 +030044 ofdev->id = PLATFORM_DEVID_NONE;
Grant Likelyeca39302010-06-08 07:48:21 -060045
Zhen Lei56f2de82015-08-25 12:08:22 +080046 /*
47 * If this device has not binding numa node in devicetree, that is
48 * of_node_to_nid returns NUMA_NO_NODE. device_add will assume that this
49 * device is on the same node as the parent.
50 */
51 set_dev_node(&ofdev->dev, of_node_to_nid(ofdev->dev.of_node));
Jeremy Kerr6098e2e2008-10-26 21:51:25 +000052
53 return device_add(&ofdev->dev);
Stephen Rothwellf85ff302007-05-01 16:40:36 +100054}
Grant Likely7096d042010-10-20 11:45:13 -060055
Will Deaconf3cfd132021-08-16 14:26:17 +010056static void
Will Deaconce5cb672021-08-16 14:26:16 +010057of_dma_set_restricted_buffer(struct device *dev, struct device_node *np)
58{
59 struct device_node *node, *of_node = dev->of_node;
60 int count, i;
61
Will Deaconf3cfd132021-08-16 14:26:17 +010062 if (!IS_ENABLED(CONFIG_DMA_RESTRICTED_POOL))
63 return;
64
Will Deaconce5cb672021-08-16 14:26:16 +010065 count = of_property_count_elems_of_size(of_node, "memory-region",
66 sizeof(u32));
67 /*
68 * If dev->of_node doesn't exist or doesn't contain memory-region, try
69 * the OF node having DMA configuration.
70 */
71 if (count <= 0) {
72 of_node = np;
73 count = of_property_count_elems_of_size(
74 of_node, "memory-region", sizeof(u32));
75 }
76
77 for (i = 0; i < count; i++) {
78 node = of_parse_phandle(of_node, "memory-region", i);
79 /*
80 * There might be multiple memory regions, but only one
81 * restricted-dma-pool region is allowed.
82 */
83 if (of_device_is_compatible(node, "restricted-dma-pool") &&
84 of_device_is_available(node))
Will Deaconf3cfd132021-08-16 14:26:17 +010085 break;
Will Deaconce5cb672021-08-16 14:26:16 +010086 }
87
David Brazdil31c80252021-09-17 14:14:23 +010088 /*
89 * Attempt to initialize a restricted-dma-pool region if one was found.
90 * Note that count can hold a negative error code.
91 */
92 if (i < count && of_reserved_mem_device_init_by_idx(dev, of_node, i))
Will Deaconf3cfd132021-08-16 14:26:17 +010093 dev_warn(dev, "failed to initialise \"restricted-dma-pool\" memory node\n");
Will Deaconce5cb672021-08-16 14:26:16 +010094}
95
Murali Karicheri1f5c69a2015-03-03 12:52:09 -050096/**
Lee Jonescb61e9d2021-03-18 10:40:27 +000097 * of_dma_configure_id - Setup DMA configuration
Murali Karicheri1f5c69a2015-03-03 12:52:09 -050098 * @dev: Device to apply DMA configuration
99 * @np: Pointer to OF node having DMA configuration
Christoph Hellwig3d6ce862018-05-03 16:25:08 +0200100 * @force_dma: Whether device is to be set up by of_dma_configure() even if
101 * DMA capability is not explicitly described by firmware.
Lorenzo Pieralisia081bd42020-06-19 09:20:08 +0100102 * @id: Optional const pointer value input id
Murali Karicheri1f5c69a2015-03-03 12:52:09 -0500103 *
104 * Try to get devices's DMA configuration from DT and update it
105 * accordingly.
106 *
107 * If platform code needs to use its own special DMA configuration, it
108 * can use a platform bus notifier and handle BUS_NOTIFY_ADD_DEVICE events
109 * to fix up DMA configuration.
110 */
Lorenzo Pieralisia081bd42020-06-19 09:20:08 +0100111int of_dma_configure_id(struct device *dev, struct device_node *np,
112 bool force_dma, const u32 *id)
Murali Karicheri1f5c69a2015-03-03 12:52:09 -0500113{
Robin Murphy53c92d72016-04-07 18:42:05 +0100114 const struct iommu_ops *iommu;
Jim Quinlane0d07272020-09-17 18:43:40 +0200115 const struct bus_dma_region *map = NULL;
Geert Uytterhoeven48ab6d52020-10-26 16:27:55 +0100116 u64 dma_start = 0;
Jim Quinlane0d07272020-09-17 18:43:40 +0200117 u64 mask, end, size = 0;
118 bool coherent;
119 int ret;
Murali Karicheri1f5c69a2015-03-03 12:52:09 -0500120
Jim Quinlane0d07272020-09-17 18:43:40 +0200121 ret = of_dma_get_range(np, &map);
Murali Karicheri1f5c69a2015-03-03 12:52:09 -0500122 if (ret < 0) {
Robin Murphy72328882017-08-31 11:32:54 +0100123 /*
124 * For legacy reasons, we have to assume some devices need
125 * DMA configuration regardless of whether "dma-ranges" is
126 * correctly specified or not.
127 */
Christoph Hellwig3d6ce862018-05-03 16:25:08 +0200128 if (!force_dma)
Robin Murphy72328882017-08-31 11:32:54 +0100129 return ret == -ENODEV ? 0 : ret;
Murali Karicheri1f5c69a2015-03-03 12:52:09 -0500130 } else {
Jim Quinlane0d07272020-09-17 18:43:40 +0200131 const struct bus_dma_region *r = map;
Geert Uytterhoeven48ab6d52020-10-26 16:27:55 +0100132 u64 dma_end = 0;
Jim Quinlane0d07272020-09-17 18:43:40 +0200133
134 /* Determine the overall bounds of all DMA regions */
Geert Uytterhoeven495023e2020-11-02 11:54:22 +0100135 for (dma_start = ~0; r->size; r++) {
Jim Quinlane0d07272020-09-17 18:43:40 +0200136 /* Take lower and upper limits */
137 if (r->dma_start < dma_start)
138 dma_start = r->dma_start;
139 if (r->dma_start + r->size > dma_end)
140 dma_end = r->dma_start + r->size;
141 }
142 size = dma_end - dma_start;
Murali Karicheri0c79c812015-03-03 12:52:10 -0500143
144 /*
145 * Add a work around to treat the size as mask + 1 in case
146 * it is defined in DT as a mask.
147 */
148 if (size & 1) {
Jim Quinlane0d07272020-09-17 18:43:40 +0200149 dev_warn(dev, "Invalid size 0x%llx for dma-range(s)\n",
Murali Karicheri0c79c812015-03-03 12:52:10 -0500150 size);
151 size = size + 1;
152 }
153
154 if (!size) {
155 dev_err(dev, "Adjusted size 0x%llx invalid\n", size);
Jim Quinlane0d07272020-09-17 18:43:40 +0200156 kfree(map);
Laurent Pinchart7b07cbe2017-04-10 16:51:02 +0530157 return -EINVAL;
Murali Karicheri0c79c812015-03-03 12:52:10 -0500158 }
Murali Karicheri1f5c69a2015-03-03 12:52:09 -0500159 }
160
Robin Murphy72328882017-08-31 11:32:54 +0100161 /*
Robin Murphy4d8bde82018-07-23 23:16:12 +0100162 * If @dev is expected to be DMA-capable then the bus code that created
163 * it should have initialised its dma_mask pointer by this point. For
164 * now, we'll continue the legacy behaviour of coercing it to the
165 * coherent mask if not, but we'll no longer do so quietly.
Robin Murphy72328882017-08-31 11:32:54 +0100166 */
Robin Murphy4d8bde82018-07-23 23:16:12 +0100167 if (!dev->dma_mask) {
168 dev_warn(dev, "DMA mask not set\n");
Robin Murphy72328882017-08-31 11:32:54 +0100169 dev->dma_mask = &dev->coherent_dma_mask;
Robin Murphy4d8bde82018-07-23 23:16:12 +0100170 }
Robin Murphy72328882017-08-31 11:32:54 +0100171
Robin Murphy4d8bde82018-07-23 23:16:12 +0100172 if (!size && dev->coherent_dma_mask)
Robin Murphy72328882017-08-31 11:32:54 +0100173 size = max(dev->coherent_dma_mask, dev->coherent_dma_mask + 1);
Robin Murphy4d8bde82018-07-23 23:16:12 +0100174 else if (!size)
175 size = 1ULL << 32;
Robin Murphy72328882017-08-31 11:32:54 +0100176
Murali Karicheri9a6d7292015-03-03 14:44:57 -0600177 /*
178 * Limit coherent and dma mask based on size and default mask
179 * set by the driver.
180 */
Jim Quinlane0d07272020-09-17 18:43:40 +0200181 end = dma_start + size - 1;
Nicolas Saenz Juliennea7ba70f2019-11-21 10:26:44 +0100182 mask = DMA_BIT_MASK(ilog2(end) + 1);
Robin Murphyee7b1f32017-08-11 17:29:56 +0100183 dev->coherent_dma_mask &= mask;
184 *dev->dma_mask &= mask;
Yong Wu89c7cb12021-01-19 18:52:03 +0800185 /* ...but only set bus limit and range map if we found valid dma-ranges earlier */
186 if (!ret) {
Nicolas Saenz Juliennea7ba70f2019-11-21 10:26:44 +0100187 dev->bus_dma_limit = end;
Yong Wu89c7cb12021-01-19 18:52:03 +0800188 dev->dma_range_map = map;
189 }
Murali Karicheri9a6d7292015-03-03 14:44:57 -0600190
Murali Karicheri1f5c69a2015-03-03 12:52:09 -0500191 coherent = of_dma_is_coherent(np);
192 dev_dbg(dev, "device is%sdma coherent\n",
193 coherent ? " " : " not ");
194
Lorenzo Pieralisia081bd42020-06-19 09:20:08 +0100195 iommu = of_iommu_configure(dev, np, id);
Jim Quinlane0d07272020-09-17 18:43:40 +0200196 if (PTR_ERR(iommu) == -EPROBE_DEFER) {
Yong Wu89c7cb12021-01-19 18:52:03 +0800197 /* Don't touch range map if it wasn't set from a valid dma-ranges */
198 if (!ret)
199 dev->dma_range_map = NULL;
Jim Quinlane0d07272020-09-17 18:43:40 +0200200 kfree(map);
Sricharan Ra37b19a2017-05-27 19:17:41 +0530201 return -EPROBE_DEFER;
Jim Quinlane0d07272020-09-17 18:43:40 +0200202 }
Laurent Pinchart7b07cbe2017-04-10 16:51:02 +0530203
Murali Karicheri1f5c69a2015-03-03 12:52:09 -0500204 dev_dbg(dev, "device is%sbehind an iommu\n",
205 iommu ? " " : " not ");
206
Jim Quinlane0d07272020-09-17 18:43:40 +0200207 arch_setup_dma_ops(dev, dma_start, size, iommu, coherent);
Laurent Pinchart7b07cbe2017-04-10 16:51:02 +0530208
Claire Changfec9b622021-06-19 11:40:43 +0800209 if (!iommu)
Will Deaconf3cfd132021-08-16 14:26:17 +0100210 of_dma_set_restricted_buffer(dev, np);
Claire Changfec9b622021-06-19 11:40:43 +0800211
Laurent Pinchart7b07cbe2017-04-10 16:51:02 +0530212 return 0;
Murali Karicheri1f5c69a2015-03-03 12:52:09 -0500213}
Lorenzo Pieralisia081bd42020-06-19 09:20:08 +0100214EXPORT_SYMBOL_GPL(of_dma_configure_id);
Murali Karicheri1f5c69a2015-03-03 12:52:09 -0500215
Grant Likely7096d042010-10-20 11:45:13 -0600216int of_device_register(struct platform_device *pdev)
217{
218 device_initialize(&pdev->dev);
219 return of_device_add(pdev);
220}
Stephen Rothwellf85ff302007-05-01 16:40:36 +1000221EXPORT_SYMBOL(of_device_register);
222
Grant Likely94a0cb12010-07-22 13:59:23 -0600223void of_device_unregister(struct platform_device *ofdev)
Stephen Rothwellf85ff302007-05-01 16:40:36 +1000224{
Stephen Rothwellf85ff302007-05-01 16:40:36 +1000225 device_unregister(&ofdev->dev);
226}
227EXPORT_SYMBOL(of_device_unregister);
Stephen Rothwell09e67ca2008-05-16 11:57:45 +1000228
Joachim Eastwood3386e0f2015-05-06 20:09:09 +0200229const void *of_device_get_match_data(const struct device *dev)
230{
231 const struct of_device_id *match;
232
233 match = of_match_device(dev->driver->of_match_table, dev);
234 if (!match)
235 return NULL;
236
237 return match->data;
238}
239EXPORT_SYMBOL(of_device_get_match_data);
240
Rob Herring0634c292017-03-22 09:16:27 -0500241static ssize_t of_device_get_modalias(struct device *dev, char *str, ssize_t len)
Stephen Rothwell09e67ca2008-05-16 11:57:45 +1000242{
243 const char *compat;
Rob Herringbc575062017-07-21 15:45:32 -0500244 char *c;
245 struct property *p;
246 ssize_t csize;
Bjorn Andersson8c2a75e2017-08-23 18:03:52 -0700247 ssize_t tsize;
Stephen Rothwell09e67ca2008-05-16 11:57:45 +1000248
Zhang Ruib9f73062014-01-14 16:46:38 +0800249 if ((!dev) || (!dev->of_node))
250 return -ENODEV;
251
Stephen Rothwell09e67ca2008-05-16 11:57:45 +1000252 /* Name & Type */
Rob Herringa613b262018-08-27 20:00:19 -0500253 /* %p eats all alphanum characters, so %c must be used here */
254 csize = snprintf(str, len, "of:N%pOFn%c%s", dev->of_node, 'T',
Rob Herringe8b1dee22018-08-29 08:36:12 -0500255 of_node_get_device_type(dev->of_node));
Bjorn Andersson8c2a75e2017-08-23 18:03:52 -0700256 tsize = csize;
Rob Herringbc575062017-07-21 15:45:32 -0500257 len -= csize;
Bjorn Andersson8c2a75e2017-08-23 18:03:52 -0700258 if (str)
259 str += csize;
Stephen Rothwell09e67ca2008-05-16 11:57:45 +1000260
Rob Herringbc575062017-07-21 15:45:32 -0500261 of_property_for_each_string(dev->of_node, "compatible", p, compat) {
Bjorn Andersson8c2a75e2017-08-23 18:03:52 -0700262 csize = strlen(compat) + 1;
263 tsize += csize;
264 if (csize > len)
265 continue;
Stephen Rothwell09e67ca2008-05-16 11:57:45 +1000266
Rob Herringbc575062017-07-21 15:45:32 -0500267 csize = snprintf(str, len, "C%s", compat);
268 for (c = str; c; ) {
269 c = strchr(c, ' ');
270 if (c)
271 *c++ = '_';
272 }
273 len -= csize;
274 str += csize;
Stephen Rothwell09e67ca2008-05-16 11:57:45 +1000275 }
276
Bjorn Andersson8c2a75e2017-08-23 18:03:52 -0700277 return tsize;
Stephen Rothwell09e67ca2008-05-16 11:57:45 +1000278}
Grant Likelydd27dcd2010-06-08 07:48:12 -0600279
Stephen Boyd9c829c02016-12-28 14:56:47 -0800280int of_device_request_module(struct device *dev)
281{
282 char *str;
283 ssize_t size;
284 int ret;
285
286 size = of_device_get_modalias(dev, NULL, 0);
287 if (size < 0)
288 return size;
289
290 str = kmalloc(size + 1, GFP_KERNEL);
291 if (!str)
292 return -ENOMEM;
293
294 of_device_get_modalias(dev, str, size);
295 str[size] = '\0';
296 ret = request_module(str);
297 kfree(str);
298
299 return ret;
300}
301EXPORT_SYMBOL_GPL(of_device_request_module);
302
Grant Likelydd27dcd2010-06-08 07:48:12 -0600303/**
Rob Herring0634c292017-03-22 09:16:27 -0500304 * of_device_modalias - Fill buffer with newline terminated modalias string
Lee Jonescb61e9d2021-03-18 10:40:27 +0000305 * @dev: Calling device
306 * @str: Modalias string
307 * @len: Size of @str
Rob Herring0634c292017-03-22 09:16:27 -0500308 */
309ssize_t of_device_modalias(struct device *dev, char *str, ssize_t len)
310{
311 ssize_t sl = of_device_get_modalias(dev, str, len - 2);
312 if (sl < 0)
313 return sl;
Bjorn Andersson08ab58d2017-08-23 18:04:04 -0700314 if (sl > len - 2)
315 return -ENOMEM;
Rob Herring0634c292017-03-22 09:16:27 -0500316
317 str[sl++] = '\n';
318 str[sl] = 0;
319 return sl;
320}
321EXPORT_SYMBOL_GPL(of_device_modalias);
322
323/**
Grant Likelydd27dcd2010-06-08 07:48:12 -0600324 * of_device_uevent - Display OF related uevent information
Lee Jonescb61e9d2021-03-18 10:40:27 +0000325 * @dev: Device to apply DMA configuration
326 * @env: Kernel object's userspace event reference
Grant Likelydd27dcd2010-06-08 07:48:12 -0600327 */
Grant Likely07d57a32012-02-01 11:22:22 -0700328void of_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Grant Likelydd27dcd2010-06-08 07:48:12 -0600329{
Rob Herringe8b1dee22018-08-29 08:36:12 -0500330 const char *compat, *type;
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -0800331 struct alias_prop *app;
Rob Herringbc575062017-07-21 15:45:32 -0500332 struct property *p;
333 int seen = 0;
Grant Likelydd27dcd2010-06-08 07:48:12 -0600334
335 if ((!dev) || (!dev->of_node))
Grant Likely07d57a32012-02-01 11:22:22 -0700336 return;
Grant Likelydd27dcd2010-06-08 07:48:12 -0600337
Rob Herringa613b262018-08-27 20:00:19 -0500338 add_uevent_var(env, "OF_NAME=%pOFn", dev->of_node);
Rob Herring0d638a02017-06-01 15:50:55 -0500339 add_uevent_var(env, "OF_FULLNAME=%pOF", dev->of_node);
Rob Herringe8b1dee22018-08-29 08:36:12 -0500340 type = of_node_get_device_type(dev->of_node);
341 if (type)
342 add_uevent_var(env, "OF_TYPE=%s", type);
Grant Likelydd27dcd2010-06-08 07:48:12 -0600343
344 /* Since the compatible field can contain pretty much anything
345 * it's not really legal to split it out with commas. We split it
346 * up using a number of environment variables instead. */
Rob Herringbc575062017-07-21 15:45:32 -0500347 of_property_for_each_string(dev->of_node, "compatible", p, compat) {
Grant Likely07d57a32012-02-01 11:22:22 -0700348 add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat);
Grant Likelydd27dcd2010-06-08 07:48:12 -0600349 seen++;
350 }
Grant Likely07d57a32012-02-01 11:22:22 -0700351 add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen);
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -0800352
353 seen = 0;
Pantelis Antoniouc05aba22014-07-04 19:58:03 +0300354 mutex_lock(&of_mutex);
Stepan Moskovchenkoced4eec2012-12-06 14:55:41 -0800355 list_for_each_entry(app, &aliases_lookup, link) {
356 if (dev->of_node == app->np) {
357 add_uevent_var(env, "OF_ALIAS_%d=%s", seen,
358 app->alias);
359 seen++;
360 }
361 }
Pantelis Antoniouc05aba22014-07-04 19:58:03 +0300362 mutex_unlock(&of_mutex);
Grant Likely07d57a32012-02-01 11:22:22 -0700363}
Grant Likelydd27dcd2010-06-08 07:48:12 -0600364
Grant Likely07d57a32012-02-01 11:22:22 -0700365int of_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env)
366{
367 int sl;
Grant Likelydd27dcd2010-06-08 07:48:12 -0600368
Grant Likely07d57a32012-02-01 11:22:22 -0700369 if ((!dev) || (!dev->of_node))
370 return -ENODEV;
371
372 /* Devicetree modalias is tricky, we add it in 2 steps */
Grant Likelydd27dcd2010-06-08 07:48:12 -0600373 if (add_uevent_var(env, "MODALIAS="))
374 return -ENOMEM;
375
Grant Likely34a1c1e2010-06-08 07:48:13 -0600376 sl = of_device_get_modalias(dev, &env->buf[env->buflen-1],
Grant Likelydd27dcd2010-06-08 07:48:12 -0600377 sizeof(env->buf) - env->buflen);
378 if (sl >= (sizeof(env->buf) - env->buflen))
379 return -ENOMEM;
380 env->buflen += sl;
381
382 return 0;
383}
Stephen Boyd7a3b7cd2016-12-28 14:56:48 -0800384EXPORT_SYMBOL_GPL(of_device_uevent_modalias);