blob: ff1f4e9afccb10d68d32fe2b04b5a31d4bb858e0 [file] [log] [blame]
Stephen Rothwell3f23de12007-05-03 02:38:57 +10001/*
2 * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp.
3 * <benh@kernel.crashing.org>
4 * and Arnd Bergmann, IBM Corp.
5 * Merged from powerpc/kernel/of_platform.c and
6 * sparc{,64}/kernel/of_device.c by Stephen Rothwell
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 *
13 */
14#include <linux/errno.h>
Stephen Rothwell5c457082007-10-17 21:17:42 -070015#include <linux/module.h>
Grant Likely5de15402011-06-21 10:59:34 -060016#include <linux/amba/bus.h>
Stephen Rothwell3f23de12007-05-03 02:38:57 +100017#include <linux/device.h>
Grant Likely5fd200f2010-06-08 07:48:13 -060018#include <linux/dma-mapping.h>
Grant Likely50ef5282010-06-08 07:48:20 -060019#include <linux/slab.h>
Grant Likely9e3288d2010-06-08 07:48:26 -060020#include <linux/of_address.h>
Stephen Rothwell3f23de12007-05-03 02:38:57 +100021#include <linux/of_device.h>
Grant Likely9e3288d2010-06-08 07:48:26 -060022#include <linux/of_irq.h>
Stephen Rothwell3f23de12007-05-03 02:38:57 +100023#include <linux/of_platform.h>
Grant Likelyeca39302010-06-08 07:48:21 -060024#include <linux/platform_device.h>
25
Grant Likelycbb49c22011-06-21 10:59:34 -060026const struct of_device_id of_default_bus_match_table[] = {
27 { .compatible = "simple-bus", },
28#ifdef CONFIG_ARM_AMBA
29 { .compatible = "arm,amba-bus", },
30#endif /* CONFIG_ARM_AMBA */
31 {} /* Empty terminated list */
32};
33
Jonas Bonnc6085582010-07-23 19:19:35 +020034static int of_dev_node_match(struct device *dev, void *data)
35{
36 return dev->of_node == data;
37}
38
39/**
40 * of_find_device_by_node - Find the platform_device associated with a node
41 * @np: Pointer to device tree node
42 *
43 * Returns platform_device pointer, or NULL if not found
44 */
45struct platform_device *of_find_device_by_node(struct device_node *np)
46{
47 struct device *dev;
48
49 dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match);
50 return dev ? to_platform_device(dev) : NULL;
51}
52EXPORT_SYMBOL(of_find_device_by_node);
53
Grant Likely964dba22012-02-24 14:58:34 -070054#ifdef CONFIG_OF_ADDRESS
Grant Likely5fd200f2010-06-08 07:48:13 -060055/*
56 * The following routines scan a subtree and registers a device for
57 * each applicable node.
58 *
59 * Note: sparc doesn't use these routines because it has a different
60 * mechanism for creating devices from device tree nodes.
61 */
62
63/**
Grant Likely94c09312010-06-08 07:48:14 -060064 * of_device_make_bus_id - Use the device node data to assign a unique name
65 * @dev: pointer to device structure that is linked to a device tree node
66 *
Grant Likely07e461c2014-05-21 15:40:31 +090067 * This routine will first try using the translated bus address to
68 * derive a unique name. If it cannot, then it will prepend names from
69 * parent nodes until a unique name can be derived.
Grant Likely94c09312010-06-08 07:48:14 -060070 */
Grant Likelyc6601222010-07-23 15:04:01 -060071void of_device_make_bus_id(struct device *dev)
Grant Likely94c09312010-06-08 07:48:14 -060072{
Grant Likely94c09312010-06-08 07:48:14 -060073 struct device_node *node = dev->of_node;
Kim Phillips24fb5302012-10-08 19:42:11 -050074 const __be32 *reg;
Grant Likely94c09312010-06-08 07:48:14 -060075 u64 addr;
Grant Likely94c09312010-06-08 07:48:14 -060076
Grant Likely07e461c2014-05-21 15:40:31 +090077 /* Construct the name, using parent nodes if necessary to ensure uniqueness */
78 while (node->parent) {
79 /*
80 * If the address can be translated, then that is as much
81 * uniqueness as we need. Make it the first component and return
82 */
83 reg = of_get_property(node, "reg", NULL);
84 if (reg && (addr = of_translate_address(node, reg)) != OF_BAD_ADDR) {
85 dev_set_name(dev, dev_name(dev) ? "%llx.%s:%s" : "%llx.%s",
86 (unsigned long long)addr, node->name,
87 dev_name(dev));
Grant Likely94c09312010-06-08 07:48:14 -060088 return;
89 }
Grant Likely94c09312010-06-08 07:48:14 -060090
Grant Likely07e461c2014-05-21 15:40:31 +090091 /* format arguments only used if dev_name() resolves to NULL */
92 dev_set_name(dev, dev_name(dev) ? "%s:%s" : "%s",
93 strrchr(node->full_name, '/') + 1, dev_name(dev));
94 node = node->parent;
Grant Likely94c09312010-06-08 07:48:14 -060095 }
Grant Likely94c09312010-06-08 07:48:14 -060096}
97
98/**
99 * of_device_alloc - Allocate and initialize an of_device
100 * @np: device node to assign to device
101 * @bus_id: Name to assign to the device. May be null to use default name.
102 * @parent: Parent device.
103 */
Grant Likely94a0cb12010-07-22 13:59:23 -0600104struct platform_device *of_device_alloc(struct device_node *np,
Grant Likely94c09312010-06-08 07:48:14 -0600105 const char *bus_id,
106 struct device *parent)
107{
Grant Likely94a0cb12010-07-22 13:59:23 -0600108 struct platform_device *dev;
Andres Salomon52f65372010-10-10 21:35:05 -0600109 int rc, i, num_reg = 0, num_irq;
Grant Likelyac80a512010-06-08 07:48:15 -0600110 struct resource *res, temp_res;
Grant Likely94c09312010-06-08 07:48:14 -0600111
Grant Likely7096d042010-10-20 11:45:13 -0600112 dev = platform_device_alloc("", -1);
113 if (!dev)
114 return NULL;
115
116 /* count the io and irq resources */
Rob Herringd9c68662014-05-07 15:23:56 -0500117 while (of_address_to_resource(np, num_reg, &temp_res) == 0)
118 num_reg++;
Andres Salomon52f65372010-10-10 21:35:05 -0600119 num_irq = of_irq_count(np);
Grant Likelyac80a512010-06-08 07:48:15 -0600120
Grant Likelyac80a512010-06-08 07:48:15 -0600121 /* Populate the resource table */
122 if (num_irq || num_reg) {
Grant Likely7096d042010-10-20 11:45:13 -0600123 res = kzalloc(sizeof(*res) * (num_irq + num_reg), GFP_KERNEL);
124 if (!res) {
125 platform_device_put(dev);
126 return NULL;
127 }
128
Grant Likelyac80a512010-06-08 07:48:15 -0600129 dev->num_resources = num_reg + num_irq;
130 dev->resource = res;
131 for (i = 0; i < num_reg; i++, res++) {
132 rc = of_address_to_resource(np, i, res);
133 WARN_ON(rc);
134 }
Rob Herring9ec36ca2014-04-23 17:57:41 -0500135 if (of_irq_to_resource_table(np, res, num_irq) != num_irq)
136 pr_debug("not all legacy IRQ resources mapped for %s\n",
137 np->name);
Grant Likelyac80a512010-06-08 07:48:15 -0600138 }
Grant Likely94c09312010-06-08 07:48:14 -0600139
140 dev->dev.of_node = of_node_get(np);
Grant Likely94c09312010-06-08 07:48:14 -0600141 dev->dev.parent = parent;
Grant Likely94c09312010-06-08 07:48:14 -0600142
143 if (bus_id)
144 dev_set_name(&dev->dev, "%s", bus_id);
145 else
146 of_device_make_bus_id(&dev->dev);
147
148 return dev;
149}
150EXPORT_SYMBOL(of_device_alloc);
151
152/**
Santosh Shilimkar591c1ee2014-04-24 11:30:04 -0400153 * of_dma_configure - Setup DMA configuration
154 * @dev: Device to apply DMA configuration
155 *
156 * Try to get devices's DMA configuration from DT and update it
157 * accordingly.
158 *
159 * In case if platform code need to use own special DMA configuration,it
160 * can use Platform bus notifier and handle BUS_NOTIFY_ADD_DEVICE event
161 * to fix up DMA configuration.
162 */
Robin Murphyc9d571b2014-09-17 12:56:07 +0100163static void of_dma_configure(struct device *dev)
Santosh Shilimkar591c1ee2014-04-24 11:30:04 -0400164{
165 u64 dma_addr, paddr, size;
166 int ret;
Will Deacona3a60f82014-08-27 15:49:10 +0100167 bool coherent;
168 unsigned long offset;
Santosh Shilimkar591c1ee2014-04-24 11:30:04 -0400169
Santosh Shilimkar591c1ee2014-04-24 11:30:04 -0400170 /*
171 * Set default dma-mask to 32 bit. Drivers are expected to setup
172 * the correct supported dma_mask.
173 */
174 dev->coherent_dma_mask = DMA_BIT_MASK(32);
175
176 /*
177 * Set it to coherent_dma_mask by default if the architecture
178 * code has not set it.
179 */
180 if (!dev->dma_mask)
181 dev->dma_mask = &dev->coherent_dma_mask;
182
Santosh Shilimkar591c1ee2014-04-24 11:30:04 -0400183 ret = of_dma_get_range(dev->of_node, &dma_addr, &paddr, &size);
184 if (ret < 0) {
Will Deacona3a60f82014-08-27 15:49:10 +0100185 dma_addr = offset = 0;
186 size = dev->coherent_dma_mask;
187 } else {
188 offset = PFN_DOWN(paddr - dma_addr);
189 dev_dbg(dev, "dma_pfn_offset(%#08lx)\n", dev->dma_pfn_offset);
Santosh Shilimkar591c1ee2014-04-24 11:30:04 -0400190 }
Will Deacona3a60f82014-08-27 15:49:10 +0100191 dev->dma_pfn_offset = offset;
Santosh Shilimkar591c1ee2014-04-24 11:30:04 -0400192
Will Deacona3a60f82014-08-27 15:49:10 +0100193 coherent = of_dma_is_coherent(dev->of_node);
194 dev_dbg(dev, "device is%sdma coherent\n",
195 coherent ? " " : " not ");
196
197 arch_setup_dma_ops(dev, coherent);
Santosh Shilimkar591c1ee2014-04-24 11:30:04 -0400198}
199
200/**
Grant Likely15c35972011-06-21 10:59:35 -0600201 * of_platform_device_create_pdata - Alloc, initialize and register an of_device
Grant Likely5fd200f2010-06-08 07:48:13 -0600202 * @np: pointer to node to create device for
203 * @bus_id: name to assign device
Grant Likely15c35972011-06-21 10:59:35 -0600204 * @platform_data: pointer to populate platform_data pointer with
Grant Likely5fd200f2010-06-08 07:48:13 -0600205 * @parent: Linux device model parent device.
Grant Likelycd1e6502011-01-03 15:51:11 -0700206 *
207 * Returns pointer to created platform device, or NULL if a device was not
208 * registered. Unavailable devices will not get registered.
Grant Likely5fd200f2010-06-08 07:48:13 -0600209 */
Mark Brown245d9642013-07-01 20:26:52 +0100210static struct platform_device *of_platform_device_create_pdata(
Grant Likely15c35972011-06-21 10:59:35 -0600211 struct device_node *np,
212 const char *bus_id,
213 void *platform_data,
214 struct device *parent)
Grant Likely5fd200f2010-06-08 07:48:13 -0600215{
Grant Likely94a0cb12010-07-22 13:59:23 -0600216 struct platform_device *dev;
Grant Likely5fd200f2010-06-08 07:48:13 -0600217
Pawel Mollc6e126d2014-05-15 16:55:24 +0100218 if (!of_device_is_available(np) ||
219 of_node_test_and_set_flag(np, OF_POPULATED))
Grant Likelycd1e6502011-01-03 15:51:11 -0700220 return NULL;
221
Grant Likely5fd200f2010-06-08 07:48:13 -0600222 dev = of_device_alloc(np, bus_id, parent);
223 if (!dev)
Pawel Mollc6e126d2014-05-15 16:55:24 +0100224 goto err_clear_flag;
Grant Likely5fd200f2010-06-08 07:48:13 -0600225
Robin Murphyc9d571b2014-09-17 12:56:07 +0100226 of_dma_configure(&dev->dev);
Grant Likelyeca39302010-06-08 07:48:21 -0600227 dev->dev.bus = &platform_bus_type;
Grant Likely15c35972011-06-21 10:59:35 -0600228 dev->dev.platform_data = platform_data;
Grant Likely5fd200f2010-06-08 07:48:13 -0600229
230 /* We do not fill the DMA ops for platform devices by default.
231 * This is currently the responsibility of the platform code
232 * to do such, possibly using a device notifier
233 */
234
Grant Likely7096d042010-10-20 11:45:13 -0600235 if (of_device_add(dev) != 0) {
236 platform_device_put(dev);
Pawel Mollc6e126d2014-05-15 16:55:24 +0100237 goto err_clear_flag;
Grant Likely5fd200f2010-06-08 07:48:13 -0600238 }
239
240 return dev;
Pawel Mollc6e126d2014-05-15 16:55:24 +0100241
242err_clear_flag:
243 of_node_clear_flag(np, OF_POPULATED);
244 return NULL;
Grant Likely5fd200f2010-06-08 07:48:13 -0600245}
Grant Likely15c35972011-06-21 10:59:35 -0600246
247/**
248 * of_platform_device_create - Alloc, initialize and register an of_device
249 * @np: pointer to node to create device for
250 * @bus_id: name to assign device
251 * @parent: Linux device model parent device.
252 *
253 * Returns pointer to created platform device, or NULL if a device was not
254 * registered. Unavailable devices will not get registered.
255 */
256struct platform_device *of_platform_device_create(struct device_node *np,
257 const char *bus_id,
258 struct device *parent)
259{
260 return of_platform_device_create_pdata(np, bus_id, NULL, parent);
261}
Grant Likely5fd200f2010-06-08 07:48:13 -0600262EXPORT_SYMBOL(of_platform_device_create);
263
Grant Likely5de15402011-06-21 10:59:34 -0600264#ifdef CONFIG_ARM_AMBA
265static struct amba_device *of_amba_device_create(struct device_node *node,
266 const char *bus_id,
267 void *platform_data,
268 struct device *parent)
269{
270 struct amba_device *dev;
271 const void *prop;
272 int i, ret;
273
274 pr_debug("Creating amba device %s\n", node->full_name);
275
Pawel Mollc6e126d2014-05-15 16:55:24 +0100276 if (!of_device_is_available(node) ||
277 of_node_test_and_set_flag(node, OF_POPULATED))
Grant Likely5de15402011-06-21 10:59:34 -0600278 return NULL;
279
Russell Kingc0f72f82011-12-18 11:45:17 +0000280 dev = amba_device_alloc(NULL, 0, 0);
Bartlomiej Zolnierkiewicz2bc552d2013-08-30 13:17:29 +0200281 if (!dev) {
282 pr_err("%s(): amba_device_alloc() failed for %s\n",
283 __func__, node->full_name);
Pawel Mollc6e126d2014-05-15 16:55:24 +0100284 goto err_clear_flag;
Bartlomiej Zolnierkiewicz2bc552d2013-08-30 13:17:29 +0200285 }
Grant Likely5de15402011-06-21 10:59:34 -0600286
287 /* setup generic device info */
Grant Likely5de15402011-06-21 10:59:34 -0600288 dev->dev.of_node = of_node_get(node);
289 dev->dev.parent = parent;
290 dev->dev.platform_data = platform_data;
291 if (bus_id)
292 dev_set_name(&dev->dev, "%s", bus_id);
293 else
294 of_device_make_bus_id(&dev->dev);
Robin Murphyc9d571b2014-09-17 12:56:07 +0100295 of_dma_configure(&dev->dev);
Grant Likely5de15402011-06-21 10:59:34 -0600296
Grant Likely5de15402011-06-21 10:59:34 -0600297 /* Allow the HW Peripheral ID to be overridden */
298 prop = of_get_property(node, "arm,primecell-periphid", NULL);
299 if (prop)
300 dev->periphid = of_read_ulong(prop, 1);
301
302 /* Decode the IRQs and address ranges */
303 for (i = 0; i < AMBA_NR_IRQS; i++)
304 dev->irq[i] = irq_of_parse_and_map(node, i);
305
306 ret = of_address_to_resource(node, 0, &dev->res);
Bartlomiej Zolnierkiewicz2bc552d2013-08-30 13:17:29 +0200307 if (ret) {
308 pr_err("%s(): of_address_to_resource() failed (%d) for %s\n",
309 __func__, ret, node->full_name);
Grant Likely5de15402011-06-21 10:59:34 -0600310 goto err_free;
Bartlomiej Zolnierkiewicz2bc552d2013-08-30 13:17:29 +0200311 }
Grant Likely5de15402011-06-21 10:59:34 -0600312
Russell Kingc0f72f82011-12-18 11:45:17 +0000313 ret = amba_device_add(dev, &iomem_resource);
Bartlomiej Zolnierkiewicz2bc552d2013-08-30 13:17:29 +0200314 if (ret) {
315 pr_err("%s(): amba_device_add() failed (%d) for %s\n",
316 __func__, ret, node->full_name);
Grant Likely5de15402011-06-21 10:59:34 -0600317 goto err_free;
Bartlomiej Zolnierkiewicz2bc552d2013-08-30 13:17:29 +0200318 }
Grant Likely5de15402011-06-21 10:59:34 -0600319
320 return dev;
321
322err_free:
Russell Kingc0f72f82011-12-18 11:45:17 +0000323 amba_device_put(dev);
Pawel Mollc6e126d2014-05-15 16:55:24 +0100324err_clear_flag:
325 of_node_clear_flag(node, OF_POPULATED);
Grant Likely5de15402011-06-21 10:59:34 -0600326 return NULL;
327}
328#else /* CONFIG_ARM_AMBA */
329static struct amba_device *of_amba_device_create(struct device_node *node,
330 const char *bus_id,
331 void *platform_data,
332 struct device *parent)
333{
334 return NULL;
335}
336#endif /* CONFIG_ARM_AMBA */
337
Grant Likely5fd200f2010-06-08 07:48:13 -0600338/**
Grant Likely15c35972011-06-21 10:59:35 -0600339 * of_devname_lookup() - Given a device node, lookup the preferred Linux name
340 */
341static const struct of_dev_auxdata *of_dev_lookup(const struct of_dev_auxdata *lookup,
342 struct device_node *np)
343{
344 struct resource res;
Olof Johansson303f59d2011-11-02 22:07:29 -0700345
346 if (!lookup)
347 return NULL;
348
Grant Likelyf88e1ae2011-12-12 09:26:00 -0700349 for(; lookup->compatible != NULL; lookup++) {
Olof Johansson303f59d2011-11-02 22:07:29 -0700350 if (!of_device_is_compatible(np, lookup->compatible))
351 continue;
Lee Jones84774e62012-07-05 15:15:36 +0100352 if (!of_address_to_resource(np, 0, &res))
353 if (res.start != lookup->phys_addr)
354 continue;
Olof Johansson303f59d2011-11-02 22:07:29 -0700355 pr_debug("%s: devname=%s\n", np->full_name, lookup->name);
356 return lookup;
Grant Likely15c35972011-06-21 10:59:35 -0600357 }
Olof Johansson303f59d2011-11-02 22:07:29 -0700358
Grant Likely15c35972011-06-21 10:59:35 -0600359 return NULL;
360}
361
362/**
Grant Likely38e9e212011-03-18 10:21:28 -0600363 * of_platform_bus_create() - Create a device for a node and its children.
Grant Likely5fd200f2010-06-08 07:48:13 -0600364 * @bus: device node of the bus to instantiate
Grant Likely1eed4c02011-03-18 10:21:29 -0600365 * @matches: match table for bus nodes
Olof Johansson303f59d2011-11-02 22:07:29 -0700366 * @lookup: auxdata table for matching id and platform_data with device nodes
Grant Likely38e9e212011-03-18 10:21:28 -0600367 * @parent: parent for new device, or NULL for top level.
Olof Johansson303f59d2011-11-02 22:07:29 -0700368 * @strict: require compatible property
Grant Likely38e9e212011-03-18 10:21:28 -0600369 *
370 * Creates a platform_device for the provided device_node, and optionally
371 * recursively create devices for all the child nodes.
Grant Likely5fd200f2010-06-08 07:48:13 -0600372 */
Grant Likely38e9e212011-03-18 10:21:28 -0600373static int of_platform_bus_create(struct device_node *bus,
Grant Likely5fd200f2010-06-08 07:48:13 -0600374 const struct of_device_id *matches,
Grant Likely15c35972011-06-21 10:59:35 -0600375 const struct of_dev_auxdata *lookup,
Grant Likely29d4f8a2011-06-21 10:59:34 -0600376 struct device *parent, bool strict)
Grant Likely5fd200f2010-06-08 07:48:13 -0600377{
Grant Likely15c35972011-06-21 10:59:35 -0600378 const struct of_dev_auxdata *auxdata;
Grant Likely5fd200f2010-06-08 07:48:13 -0600379 struct device_node *child;
Grant Likely94a0cb12010-07-22 13:59:23 -0600380 struct platform_device *dev;
Grant Likely15c35972011-06-21 10:59:35 -0600381 const char *bus_id = NULL;
382 void *platform_data = NULL;
Grant Likely5fd200f2010-06-08 07:48:13 -0600383 int rc = 0;
384
Grant Likely29d4f8a2011-06-21 10:59:34 -0600385 /* Make sure it has a compatible property */
386 if (strict && (!of_get_property(bus, "compatible", NULL))) {
387 pr_debug("%s() - skipping %s, no compatible prop\n",
388 __func__, bus->full_name);
389 return 0;
390 }
391
Grant Likely15c35972011-06-21 10:59:35 -0600392 auxdata = of_dev_lookup(lookup, bus);
393 if (auxdata) {
394 bus_id = auxdata->name;
395 platform_data = auxdata->platform_data;
396 }
397
Grant Likely5de15402011-06-21 10:59:34 -0600398 if (of_device_is_compatible(bus, "arm,primecell")) {
Bartlomiej Zolnierkiewicz2bc552d2013-08-30 13:17:29 +0200399 /*
400 * Don't return an error here to keep compatibility with older
401 * device tree files.
402 */
Grant Likely15c35972011-06-21 10:59:35 -0600403 of_amba_device_create(bus, bus_id, platform_data, parent);
Grant Likely5de15402011-06-21 10:59:34 -0600404 return 0;
405 }
406
Grant Likely15c35972011-06-21 10:59:35 -0600407 dev = of_platform_device_create_pdata(bus, bus_id, platform_data, parent);
Grant Likely38e9e212011-03-18 10:21:28 -0600408 if (!dev || !of_match_node(matches, bus))
409 return 0;
410
Grant Likely5fd200f2010-06-08 07:48:13 -0600411 for_each_child_of_node(bus, child) {
412 pr_debug(" create child: %s\n", child->full_name);
Grant Likely15c35972011-06-21 10:59:35 -0600413 rc = of_platform_bus_create(child, matches, lookup, &dev->dev, strict);
Grant Likely5fd200f2010-06-08 07:48:13 -0600414 if (rc) {
415 of_node_put(child);
416 break;
417 }
418 }
Grant Likely75f353b2014-06-24 16:13:47 +0100419 of_node_set_flag(bus, OF_POPULATED_BUS);
Grant Likely5fd200f2010-06-08 07:48:13 -0600420 return rc;
421}
422
423/**
Grant Likely38e9e212011-03-18 10:21:28 -0600424 * of_platform_bus_probe() - Probe the device-tree for platform buses
Grant Likely5fd200f2010-06-08 07:48:13 -0600425 * @root: parent of the first level to probe or NULL for the root of the tree
Grant Likely1eed4c02011-03-18 10:21:29 -0600426 * @matches: match table for bus nodes
Grant Likely5fd200f2010-06-08 07:48:13 -0600427 * @parent: parent to hook devices from, NULL for toplevel
428 *
429 * Note that children of the provided root are not instantiated as devices
430 * unless the specified root itself matches the bus list and is not NULL.
431 */
432int of_platform_bus_probe(struct device_node *root,
433 const struct of_device_id *matches,
434 struct device *parent)
435{
436 struct device_node *child;
Grant Likely5fd200f2010-06-08 07:48:13 -0600437 int rc = 0;
438
Grant Likely1eed4c02011-03-18 10:21:29 -0600439 root = root ? of_node_get(root) : of_find_node_by_path("/");
440 if (!root)
Grant Likely60d59912010-06-08 07:48:25 -0600441 return -EINVAL;
Grant Likely5fd200f2010-06-08 07:48:13 -0600442
443 pr_debug("of_platform_bus_probe()\n");
444 pr_debug(" starting at: %s\n", root->full_name);
445
Grant Likely1eed4c02011-03-18 10:21:29 -0600446 /* Do a self check of bus type, if there's a match, create children */
Grant Likely5fd200f2010-06-08 07:48:13 -0600447 if (of_match_node(matches, root)) {
Grant Likely15c35972011-06-21 10:59:35 -0600448 rc = of_platform_bus_create(root, matches, NULL, parent, false);
Grant Likely38e9e212011-03-18 10:21:28 -0600449 } else for_each_child_of_node(root, child) {
Grant Likely5fd200f2010-06-08 07:48:13 -0600450 if (!of_match_node(matches, child))
451 continue;
Grant Likely15c35972011-06-21 10:59:35 -0600452 rc = of_platform_bus_create(child, matches, NULL, parent, false);
Grant Likely38e9e212011-03-18 10:21:28 -0600453 if (rc)
Grant Likely5fd200f2010-06-08 07:48:13 -0600454 break;
Grant Likely5fd200f2010-06-08 07:48:13 -0600455 }
Grant Likely38e9e212011-03-18 10:21:28 -0600456
Grant Likely5fd200f2010-06-08 07:48:13 -0600457 of_node_put(root);
458 return rc;
459}
460EXPORT_SYMBOL(of_platform_bus_probe);
Grant Likely29d4f8a2011-06-21 10:59:34 -0600461
462/**
463 * of_platform_populate() - Populate platform_devices from device tree data
464 * @root: parent of the first level to probe or NULL for the root of the tree
465 * @matches: match table, NULL to use the default
Javi Merino92039ed2012-11-23 16:25:08 +0000466 * @lookup: auxdata table for matching id and platform_data with device nodes
Grant Likely29d4f8a2011-06-21 10:59:34 -0600467 * @parent: parent to hook devices from, NULL for toplevel
468 *
469 * Similar to of_platform_bus_probe(), this function walks the device tree
470 * and creates devices from nodes. It differs in that it follows the modern
471 * convention of requiring all device nodes to have a 'compatible' property,
472 * and it is suitable for creating devices which are children of the root
473 * node (of_platform_bus_probe will only create children of the root which
474 * are selected by the @matches argument).
475 *
476 * New board support should be using this function instead of
477 * of_platform_bus_probe().
478 *
479 * Returns 0 on success, < 0 on failure.
480 */
481int of_platform_populate(struct device_node *root,
482 const struct of_device_id *matches,
Grant Likely15c35972011-06-21 10:59:35 -0600483 const struct of_dev_auxdata *lookup,
Grant Likely29d4f8a2011-06-21 10:59:34 -0600484 struct device *parent)
485{
486 struct device_node *child;
487 int rc = 0;
488
489 root = root ? of_node_get(root) : of_find_node_by_path("/");
490 if (!root)
491 return -EINVAL;
492
493 for_each_child_of_node(root, child) {
Grant Likely15c35972011-06-21 10:59:35 -0600494 rc = of_platform_bus_create(child, matches, lookup, parent, true);
Grant Likely29d4f8a2011-06-21 10:59:34 -0600495 if (rc)
496 break;
497 }
498
499 of_node_put(root);
500 return rc;
501}
Stephen Warrene001f1c2012-06-07 17:57:36 -0600502EXPORT_SYMBOL_GPL(of_platform_populate);
Pawel Mollc6e126d2014-05-15 16:55:24 +0100503
504static int of_platform_device_destroy(struct device *dev, void *data)
505{
Pawel Mollc6e126d2014-05-15 16:55:24 +0100506 /* Do not touch devices not populated from the device tree */
Grant Likely75f353b2014-06-24 16:13:47 +0100507 if (!dev->of_node || !of_node_check_flag(dev->of_node, OF_POPULATED))
Pawel Mollc6e126d2014-05-15 16:55:24 +0100508 return 0;
Pawel Mollc6e126d2014-05-15 16:55:24 +0100509
Grant Likely75f353b2014-06-24 16:13:47 +0100510 /* Recurse for any nodes that were treated as busses */
511 if (of_node_check_flag(dev->of_node, OF_POPULATED_BUS))
512 device_for_each_child(dev, NULL, of_platform_device_destroy);
Pawel Mollc6e126d2014-05-15 16:55:24 +0100513
514 if (dev->bus == &platform_bus_type)
515 platform_device_unregister(to_platform_device(dev));
516#ifdef CONFIG_ARM_AMBA
517 else if (dev->bus == &amba_bustype)
518 amba_device_unregister(to_amba_device(dev));
519#endif
Pawel Mollc6e126d2014-05-15 16:55:24 +0100520
521 of_node_clear_flag(dev->of_node, OF_POPULATED);
Grant Likely75f353b2014-06-24 16:13:47 +0100522 of_node_clear_flag(dev->of_node, OF_POPULATED_BUS);
Pawel Mollc6e126d2014-05-15 16:55:24 +0100523 return 0;
524}
525
526/**
527 * of_platform_depopulate() - Remove devices populated from device tree
Grant Likely75f353b2014-06-24 16:13:47 +0100528 * @parent: device which children will be removed
Pawel Mollc6e126d2014-05-15 16:55:24 +0100529 *
530 * Complementary to of_platform_populate(), this function removes children
531 * of the given device (and, recurrently, their children) that have been
532 * created from their respective device tree nodes (and only those,
533 * leaving others - eg. manually created - unharmed).
534 *
535 * Returns 0 when all children devices have been removed or
536 * -EBUSY when some children remained.
537 */
Grant Likely75f353b2014-06-24 16:13:47 +0100538void of_platform_depopulate(struct device *parent)
Pawel Mollc6e126d2014-05-15 16:55:24 +0100539{
Grant Likely75f353b2014-06-24 16:13:47 +0100540 device_for_each_child(parent, NULL, of_platform_device_destroy);
Pawel Mollc6e126d2014-05-15 16:55:24 +0100541}
542EXPORT_SYMBOL_GPL(of_platform_depopulate);
543
Grant Likely964dba22012-02-24 14:58:34 -0700544#endif /* CONFIG_OF_ADDRESS */