]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
6494d708 SG |
2 | /* |
3 | * Device manager | |
4 | * | |
5 | * Copyright (c) 2013 Google, Inc | |
6 | * | |
7 | * (C) Copyright 2012 | |
8 | * Pavel Herrmann <[email protected]> | |
6494d708 SG |
9 | */ |
10 | ||
11 | #include <common.h> | |
7c616862 | 12 | #include <asm/io.h> |
f4fcba5c | 13 | #include <clk.h> |
5a66a8ff | 14 | #include <fdtdec.h> |
ef5cd330 | 15 | #include <fdt_support.h> |
6494d708 SG |
16 | #include <malloc.h> |
17 | #include <dm/device.h> | |
18 | #include <dm/device-internal.h> | |
19 | #include <dm/lists.h> | |
29d11b88 | 20 | #include <dm/of_access.h> |
d90a5a30 | 21 | #include <dm/pinctrl.h> |
6494d708 | 22 | #include <dm/platdata.h> |
396e343b | 23 | #include <dm/read.h> |
6494d708 SG |
24 | #include <dm/uclass.h> |
25 | #include <dm/uclass-internal.h> | |
26 | #include <dm/util.h> | |
27 | #include <linux/err.h> | |
28 | #include <linux/list.h> | |
3ad30778 | 29 | #include <power-domain.h> |
6494d708 | 30 | |
5a66a8ff SG |
31 | DECLARE_GLOBAL_DATA_PTR; |
32 | ||
daac3bfe SW |
33 | static int device_bind_common(struct udevice *parent, const struct driver *drv, |
34 | const char *name, void *platdata, | |
7a61b0b5 | 35 | ulong driver_data, ofnode node, |
9fa28190 | 36 | uint of_platdata_size, struct udevice **devp) |
6494d708 | 37 | { |
54c5d08a | 38 | struct udevice *dev; |
6494d708 | 39 | struct uclass *uc; |
5eaed880 | 40 | int size, ret = 0; |
6494d708 | 41 | |
e6cabe4a MY |
42 | if (devp) |
43 | *devp = NULL; | |
6494d708 SG |
44 | if (!name) |
45 | return -EINVAL; | |
46 | ||
47 | ret = uclass_get(drv->id, &uc); | |
3346c876 SG |
48 | if (ret) { |
49 | debug("Missing uclass for driver %s\n", drv->name); | |
6494d708 | 50 | return ret; |
3346c876 | 51 | } |
6494d708 | 52 | |
54c5d08a | 53 | dev = calloc(1, sizeof(struct udevice)); |
6494d708 SG |
54 | if (!dev) |
55 | return -ENOMEM; | |
56 | ||
57 | INIT_LIST_HEAD(&dev->sibling_node); | |
58 | INIT_LIST_HEAD(&dev->child_head); | |
59 | INIT_LIST_HEAD(&dev->uclass_node); | |
e2282d70 | 60 | #ifdef CONFIG_DEVRES |
608f26c5 | 61 | INIT_LIST_HEAD(&dev->devres_head); |
e2282d70 | 62 | #endif |
6494d708 | 63 | dev->platdata = platdata; |
daac3bfe | 64 | dev->driver_data = driver_data; |
6494d708 | 65 | dev->name = name; |
7a61b0b5 | 66 | dev->node = node; |
6494d708 SG |
67 | dev->parent = parent; |
68 | dev->driver = drv; | |
69 | dev->uclass = uc; | |
5a66a8ff | 70 | |
5a66a8ff | 71 | dev->seq = -1; |
9cc36a2b | 72 | dev->req_seq = -1; |
4f627c5a | 73 | if (CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(DM_SEQ_ALIAS)) { |
36fa61dc | 74 | /* |
770eb30e SR |
75 | * Some devices, such as a SPI bus, I2C bus and serial ports |
76 | * are numbered using aliases. | |
77 | * | |
78 | * This is just a 'requested' sequence, and will be | |
79 | * resolved (and ->seq updated) when the device is probed. | |
80 | */ | |
36fa61dc | 81 | if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) { |
7a61b0b5 | 82 | if (uc->uc_drv->name && ofnode_valid(node)) { |
396e343b | 83 | dev_read_alias_seq(dev, &dev->req_seq); |
36fa61dc | 84 | } |
9cc36a2b | 85 | } |
5a66a8ff | 86 | } |
36fa61dc | 87 | |
9fa28190 SG |
88 | if (drv->platdata_auto_alloc_size) { |
89 | bool alloc = !platdata; | |
90 | ||
91 | if (CONFIG_IS_ENABLED(OF_PLATDATA)) { | |
92 | if (of_platdata_size) { | |
93 | dev->flags |= DM_FLAG_OF_PLATDATA; | |
94 | if (of_platdata_size < | |
95 | drv->platdata_auto_alloc_size) | |
96 | alloc = true; | |
97 | } | |
98 | } | |
99 | if (alloc) { | |
100 | dev->flags |= DM_FLAG_ALLOC_PDATA; | |
101 | dev->platdata = calloc(1, | |
102 | drv->platdata_auto_alloc_size); | |
103 | if (!dev->platdata) { | |
104 | ret = -ENOMEM; | |
105 | goto fail_alloc1; | |
106 | } | |
107 | if (CONFIG_IS_ENABLED(OF_PLATDATA) && platdata) { | |
108 | memcpy(dev->platdata, platdata, | |
109 | of_platdata_size); | |
110 | } | |
f8a85449 SG |
111 | } |
112 | } | |
cdc133bd | 113 | |
5eaed880 PM |
114 | size = uc->uc_drv->per_device_platdata_auto_alloc_size; |
115 | if (size) { | |
116 | dev->flags |= DM_FLAG_ALLOC_UCLASS_PDATA; | |
117 | dev->uclass_platdata = calloc(1, size); | |
118 | if (!dev->uclass_platdata) { | |
119 | ret = -ENOMEM; | |
120 | goto fail_alloc2; | |
121 | } | |
122 | } | |
123 | ||
124 | if (parent) { | |
125 | size = parent->driver->per_child_platdata_auto_alloc_size; | |
ba8da9dc SG |
126 | if (!size) { |
127 | size = parent->uclass->uc_drv-> | |
128 | per_child_platdata_auto_alloc_size; | |
129 | } | |
cdc133bd SG |
130 | if (size) { |
131 | dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA; | |
132 | dev->parent_platdata = calloc(1, size); | |
133 | if (!dev->parent_platdata) { | |
134 | ret = -ENOMEM; | |
5eaed880 | 135 | goto fail_alloc3; |
cdc133bd SG |
136 | } |
137 | } | |
138 | } | |
6494d708 SG |
139 | |
140 | /* put dev into parent's successor list */ | |
141 | if (parent) | |
142 | list_add_tail(&dev->sibling_node, &parent->child_head); | |
143 | ||
144 | ret = uclass_bind_device(dev); | |
145 | if (ret) | |
72ebfe86 | 146 | goto fail_uclass_bind; |
6494d708 SG |
147 | |
148 | /* if we fail to bind we remove device from successors and free it */ | |
149 | if (drv->bind) { | |
150 | ret = drv->bind(dev); | |
72ebfe86 | 151 | if (ret) |
6494d708 | 152 | goto fail_bind; |
6494d708 | 153 | } |
0118ce79 SG |
154 | if (parent && parent->driver->child_post_bind) { |
155 | ret = parent->driver->child_post_bind(dev); | |
156 | if (ret) | |
157 | goto fail_child_post_bind; | |
158 | } | |
20af3c0a SG |
159 | if (uc->uc_drv->post_bind) { |
160 | ret = uc->uc_drv->post_bind(dev); | |
161 | if (ret) | |
162 | goto fail_uclass_post_bind; | |
163 | } | |
0118ce79 | 164 | |
6494d708 | 165 | if (parent) |
ceb91909 | 166 | pr_debug("Bound device %s to %s\n", dev->name, parent->name); |
e6cabe4a MY |
167 | if (devp) |
168 | *devp = dev; | |
6494d708 | 169 | |
aed1a4dd MY |
170 | dev->flags |= DM_FLAG_BOUND; |
171 | ||
6494d708 SG |
172 | return 0; |
173 | ||
20af3c0a SG |
174 | fail_uclass_post_bind: |
175 | /* There is no child unbind() method, so no clean-up required */ | |
0118ce79 | 176 | fail_child_post_bind: |
0a5804b5 | 177 | if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) { |
5a87c417 SG |
178 | if (drv->unbind && drv->unbind(dev)) { |
179 | dm_warn("unbind() method failed on dev '%s' on error path\n", | |
180 | dev->name); | |
181 | } | |
0118ce79 SG |
182 | } |
183 | ||
6494d708 | 184 | fail_bind: |
0a5804b5 | 185 | if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) { |
5a87c417 SG |
186 | if (uclass_unbind_device(dev)) { |
187 | dm_warn("Failed to unbind dev '%s' on error path\n", | |
188 | dev->name); | |
189 | } | |
72ebfe86 SG |
190 | } |
191 | fail_uclass_bind: | |
0a5804b5 | 192 | if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) { |
5a87c417 SG |
193 | list_del(&dev->sibling_node); |
194 | if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) { | |
195 | free(dev->parent_platdata); | |
196 | dev->parent_platdata = NULL; | |
197 | } | |
cdc133bd | 198 | } |
5eaed880 PM |
199 | fail_alloc3: |
200 | if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) { | |
201 | free(dev->uclass_platdata); | |
202 | dev->uclass_platdata = NULL; | |
203 | } | |
cdc133bd | 204 | fail_alloc2: |
f8a85449 SG |
205 | if (dev->flags & DM_FLAG_ALLOC_PDATA) { |
206 | free(dev->platdata); | |
207 | dev->platdata = NULL; | |
208 | } | |
209 | fail_alloc1: | |
608f26c5 MY |
210 | devres_release_all(dev); |
211 | ||
6494d708 | 212 | free(dev); |
72ebfe86 | 213 | |
6494d708 SG |
214 | return ret; |
215 | } | |
216 | ||
daac3bfe SW |
217 | int device_bind_with_driver_data(struct udevice *parent, |
218 | const struct driver *drv, const char *name, | |
396e343b | 219 | ulong driver_data, ofnode node, |
daac3bfe SW |
220 | struct udevice **devp) |
221 | { | |
396e343b SG |
222 | return device_bind_common(parent, drv, name, NULL, driver_data, node, |
223 | 0, devp); | |
daac3bfe SW |
224 | } |
225 | ||
226 | int device_bind(struct udevice *parent, const struct driver *drv, | |
227 | const char *name, void *platdata, int of_offset, | |
228 | struct udevice **devp) | |
229 | { | |
7a61b0b5 SG |
230 | return device_bind_common(parent, drv, name, platdata, 0, |
231 | offset_to_ofnode(of_offset), 0, devp); | |
daac3bfe SW |
232 | } |
233 | ||
d677b00c SG |
234 | int device_bind_ofnode(struct udevice *parent, const struct driver *drv, |
235 | const char *name, void *platdata, ofnode node, | |
236 | struct udevice **devp) | |
237 | { | |
238 | return device_bind_common(parent, drv, name, platdata, 0, node, 0, | |
239 | devp); | |
240 | } | |
241 | ||
00606d7e SG |
242 | int device_bind_by_name(struct udevice *parent, bool pre_reloc_only, |
243 | const struct driver_info *info, struct udevice **devp) | |
6494d708 SG |
244 | { |
245 | struct driver *drv; | |
9fa28190 | 246 | uint platdata_size = 0; |
6494d708 SG |
247 | |
248 | drv = lists_driver_lookup_name(info->name); | |
249 | if (!drv) | |
250 | return -ENOENT; | |
00606d7e SG |
251 | if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC)) |
252 | return -EPERM; | |
6494d708 | 253 | |
9fa28190 SG |
254 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
255 | platdata_size = info->platdata_size; | |
256 | #endif | |
257 | return device_bind_common(parent, drv, info->name, | |
396e343b SG |
258 | (void *)info->platdata, 0, ofnode_null(), platdata_size, |
259 | devp); | |
6494d708 SG |
260 | } |
261 | ||
2c03c463 SG |
262 | static void *alloc_priv(int size, uint flags) |
263 | { | |
264 | void *priv; | |
265 | ||
266 | if (flags & DM_FLAG_ALLOC_PRIV_DMA) { | |
5924da1d | 267 | size = ROUND(size, ARCH_DMA_MINALIGN); |
2c03c463 | 268 | priv = memalign(ARCH_DMA_MINALIGN, size); |
5a8a8045 | 269 | if (priv) { |
2c03c463 | 270 | memset(priv, '\0', size); |
5a8a8045 SG |
271 | |
272 | /* | |
273 | * Ensure that the zero bytes are flushed to memory. | |
274 | * This prevents problems if the driver uses this as | |
275 | * both an input and an output buffer: | |
276 | * | |
277 | * 1. Zeroes written to buffer (here) and sit in the | |
278 | * cache | |
279 | * 2. Driver issues a read command to DMA | |
280 | * 3. CPU runs out of cache space and evicts some cache | |
281 | * data in the buffer, writing zeroes to RAM from | |
282 | * the memset() above | |
283 | * 4. DMA completes | |
284 | * 5. Buffer now has some DMA data and some zeroes | |
285 | * 6. Data being read is now incorrect | |
286 | * | |
287 | * To prevent this, ensure that the cache is clean | |
288 | * within this range at the start. The driver can then | |
289 | * use normal flush-after-write, invalidate-before-read | |
290 | * procedures. | |
291 | * | |
292 | * TODO([email protected]): Drop this microblaze | |
293 | * exception. | |
294 | */ | |
295 | #ifndef CONFIG_MICROBLAZE | |
296 | flush_dcache_range((ulong)priv, (ulong)priv + size); | |
297 | #endif | |
298 | } | |
2c03c463 SG |
299 | } else { |
300 | priv = calloc(1, size); | |
301 | } | |
302 | ||
303 | return priv; | |
304 | } | |
305 | ||
c6db965f | 306 | int device_probe(struct udevice *dev) |
6494d708 | 307 | { |
3ad30778 | 308 | struct power_domain pd; |
3479253d | 309 | const struct driver *drv; |
6494d708 SG |
310 | int size = 0; |
311 | int ret; | |
5a66a8ff | 312 | int seq; |
6494d708 SG |
313 | |
314 | if (!dev) | |
315 | return -EINVAL; | |
316 | ||
317 | if (dev->flags & DM_FLAG_ACTIVATED) | |
318 | return 0; | |
319 | ||
320 | drv = dev->driver; | |
321 | assert(drv); | |
322 | ||
cdeb2ba9 BM |
323 | /* Allocate private data if requested and not reentered */ |
324 | if (drv->priv_auto_alloc_size && !dev->priv) { | |
2c03c463 | 325 | dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags); |
6494d708 SG |
326 | if (!dev->priv) { |
327 | ret = -ENOMEM; | |
328 | goto fail; | |
329 | } | |
330 | } | |
cdeb2ba9 | 331 | /* Allocate private data if requested and not reentered */ |
6494d708 | 332 | size = dev->uclass->uc_drv->per_device_auto_alloc_size; |
cdeb2ba9 | 333 | if (size && !dev->uclass_priv) { |
6494d708 SG |
334 | dev->uclass_priv = calloc(1, size); |
335 | if (!dev->uclass_priv) { | |
336 | ret = -ENOMEM; | |
337 | goto fail; | |
338 | } | |
339 | } | |
340 | ||
341 | /* Ensure all parents are probed */ | |
342 | if (dev->parent) { | |
e59f458d | 343 | size = dev->parent->driver->per_child_auto_alloc_size; |
dac8db2c SG |
344 | if (!size) { |
345 | size = dev->parent->uclass->uc_drv-> | |
346 | per_child_auto_alloc_size; | |
347 | } | |
cdeb2ba9 | 348 | if (size && !dev->parent_priv) { |
2c03c463 | 349 | dev->parent_priv = alloc_priv(size, drv->flags); |
e59f458d SG |
350 | if (!dev->parent_priv) { |
351 | ret = -ENOMEM; | |
352 | goto fail; | |
353 | } | |
354 | } | |
355 | ||
6494d708 SG |
356 | ret = device_probe(dev->parent); |
357 | if (ret) | |
358 | goto fail; | |
cdeb2ba9 BM |
359 | |
360 | /* | |
361 | * The device might have already been probed during | |
362 | * the call to device_probe() on its parent device | |
363 | * (e.g. PCI bridge devices). Test the flags again | |
364 | * so that we don't mess up the device. | |
365 | */ | |
366 | if (dev->flags & DM_FLAG_ACTIVATED) | |
367 | return 0; | |
6494d708 SG |
368 | } |
369 | ||
5a66a8ff SG |
370 | seq = uclass_resolve_seq(dev); |
371 | if (seq < 0) { | |
372 | ret = seq; | |
373 | goto fail; | |
374 | } | |
375 | dev->seq = seq; | |
376 | ||
206d4d2b SG |
377 | dev->flags |= DM_FLAG_ACTIVATED; |
378 | ||
84d26e29 SG |
379 | /* |
380 | * Process pinctrl for everything except the root device, and | |
0379597e SG |
381 | * continue regardless of the result of pinctrl. Don't process pinctrl |
382 | * settings for pinctrl devices since the device may not yet be | |
383 | * probed. | |
84d26e29 | 384 | */ |
0379597e | 385 | if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL) |
84d26e29 | 386 | pinctrl_select_state(dev, "default"); |
d90a5a30 | 387 | |
3ad30778 PF |
388 | if (dev->parent && device_get_uclass_id(dev) != UCLASS_POWER_DOMAIN) { |
389 | if (!power_domain_get(dev, &pd)) | |
390 | power_domain_on(&pd); | |
391 | } | |
392 | ||
02c07b37 | 393 | ret = uclass_pre_probe_device(dev); |
83c7e434 SG |
394 | if (ret) |
395 | goto fail; | |
396 | ||
a327dee0 SG |
397 | if (dev->parent && dev->parent->driver->child_pre_probe) { |
398 | ret = dev->parent->driver->child_pre_probe(dev); | |
399 | if (ret) | |
400 | goto fail; | |
401 | } | |
402 | ||
396e343b | 403 | if (drv->ofdata_to_platdata && dev_has_of_node(dev)) { |
6494d708 SG |
404 | ret = drv->ofdata_to_platdata(dev); |
405 | if (ret) | |
406 | goto fail; | |
407 | } | |
408 | ||
f4fcba5c PT |
409 | /* Process 'assigned-{clocks/clock-parents/clock-rates}' properties */ |
410 | ret = clk_set_defaults(dev); | |
411 | if (ret) | |
412 | goto fail; | |
413 | ||
6494d708 SG |
414 | if (drv->probe) { |
415 | ret = drv->probe(dev); | |
02eeb1bb SG |
416 | if (ret) { |
417 | dev->flags &= ~DM_FLAG_ACTIVATED; | |
6494d708 | 418 | goto fail; |
02eeb1bb | 419 | } |
6494d708 SG |
420 | } |
421 | ||
6494d708 | 422 | ret = uclass_post_probe_device(dev); |
206d4d2b | 423 | if (ret) |
6494d708 | 424 | goto fail_uclass; |
6494d708 | 425 | |
c3ab9853 PF |
426 | if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL) |
427 | pinctrl_select_state(dev, "default"); | |
428 | ||
6494d708 SG |
429 | return 0; |
430 | fail_uclass: | |
706865af | 431 | if (device_remove(dev, DM_REMOVE_NORMAL)) { |
6494d708 SG |
432 | dm_warn("%s: Device '%s' failed to remove on error path\n", |
433 | __func__, dev->name); | |
434 | } | |
435 | fail: | |
206d4d2b SG |
436 | dev->flags &= ~DM_FLAG_ACTIVATED; |
437 | ||
5a66a8ff | 438 | dev->seq = -1; |
6494d708 SG |
439 | device_free(dev); |
440 | ||
441 | return ret; | |
442 | } | |
443 | ||
54c5d08a | 444 | void *dev_get_platdata(struct udevice *dev) |
6494d708 SG |
445 | { |
446 | if (!dev) { | |
964d153c | 447 | dm_warn("%s: null device\n", __func__); |
6494d708 SG |
448 | return NULL; |
449 | } | |
450 | ||
451 | return dev->platdata; | |
452 | } | |
453 | ||
cdc133bd SG |
454 | void *dev_get_parent_platdata(struct udevice *dev) |
455 | { | |
456 | if (!dev) { | |
36d7cc17 | 457 | dm_warn("%s: null device\n", __func__); |
cdc133bd SG |
458 | return NULL; |
459 | } | |
460 | ||
461 | return dev->parent_platdata; | |
462 | } | |
463 | ||
5eaed880 PM |
464 | void *dev_get_uclass_platdata(struct udevice *dev) |
465 | { | |
466 | if (!dev) { | |
36d7cc17 | 467 | dm_warn("%s: null device\n", __func__); |
5eaed880 PM |
468 | return NULL; |
469 | } | |
470 | ||
471 | return dev->uclass_platdata; | |
472 | } | |
473 | ||
54c5d08a | 474 | void *dev_get_priv(struct udevice *dev) |
6494d708 SG |
475 | { |
476 | if (!dev) { | |
964d153c | 477 | dm_warn("%s: null device\n", __func__); |
6494d708 SG |
478 | return NULL; |
479 | } | |
480 | ||
481 | return dev->priv; | |
482 | } | |
997c87bb | 483 | |
e564f054 SG |
484 | void *dev_get_uclass_priv(struct udevice *dev) |
485 | { | |
486 | if (!dev) { | |
487 | dm_warn("%s: null device\n", __func__); | |
488 | return NULL; | |
489 | } | |
490 | ||
491 | return dev->uclass_priv; | |
492 | } | |
493 | ||
bcbe3d15 | 494 | void *dev_get_parent_priv(struct udevice *dev) |
e59f458d SG |
495 | { |
496 | if (!dev) { | |
964d153c | 497 | dm_warn("%s: null device\n", __func__); |
e59f458d SG |
498 | return NULL; |
499 | } | |
500 | ||
501 | return dev->parent_priv; | |
502 | } | |
503 | ||
997c87bb SG |
504 | static int device_get_device_tail(struct udevice *dev, int ret, |
505 | struct udevice **devp) | |
506 | { | |
507 | if (ret) | |
508 | return ret; | |
509 | ||
510 | ret = device_probe(dev); | |
511 | if (ret) | |
512 | return ret; | |
513 | ||
514 | *devp = dev; | |
515 | ||
516 | return 0; | |
517 | } | |
518 | ||
e4c98a59 MS |
519 | /** |
520 | * device_find_by_ofnode() - Return device associated with given ofnode | |
521 | * | |
522 | * The returned device is *not* activated. | |
523 | * | |
524 | * @node: The ofnode for which a associated device should be looked up | |
525 | * @devp: Pointer to structure to hold the found device | |
526 | * Return: 0 if OK, -ve on error | |
527 | */ | |
528 | static int device_find_by_ofnode(ofnode node, struct udevice **devp) | |
529 | { | |
530 | struct uclass *uc; | |
531 | struct udevice *dev; | |
532 | int ret; | |
533 | ||
534 | list_for_each_entry(uc, &gd->uclass_root, sibling_node) { | |
535 | ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node, | |
536 | &dev); | |
537 | if (!ret || dev) { | |
538 | *devp = dev; | |
539 | return 0; | |
540 | } | |
541 | } | |
542 | ||
543 | return -ENODEV; | |
544 | } | |
545 | ||
997c87bb SG |
546 | int device_get_child(struct udevice *parent, int index, struct udevice **devp) |
547 | { | |
548 | struct udevice *dev; | |
549 | ||
550 | list_for_each_entry(dev, &parent->child_head, sibling_node) { | |
551 | if (!index--) | |
552 | return device_get_device_tail(dev, 0, devp); | |
553 | } | |
554 | ||
555 | return -ENODEV; | |
556 | } | |
557 | ||
558 | int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq, | |
559 | bool find_req_seq, struct udevice **devp) | |
560 | { | |
561 | struct udevice *dev; | |
562 | ||
563 | *devp = NULL; | |
564 | if (seq_or_req_seq == -1) | |
565 | return -ENODEV; | |
566 | ||
567 | list_for_each_entry(dev, &parent->child_head, sibling_node) { | |
568 | if ((find_req_seq ? dev->req_seq : dev->seq) == | |
569 | seq_or_req_seq) { | |
570 | *devp = dev; | |
571 | return 0; | |
572 | } | |
573 | } | |
574 | ||
575 | return -ENODEV; | |
576 | } | |
577 | ||
578 | int device_get_child_by_seq(struct udevice *parent, int seq, | |
579 | struct udevice **devp) | |
580 | { | |
581 | struct udevice *dev; | |
582 | int ret; | |
583 | ||
584 | *devp = NULL; | |
585 | ret = device_find_child_by_seq(parent, seq, false, &dev); | |
586 | if (ret == -ENODEV) { | |
587 | /* | |
588 | * We didn't find it in probed devices. See if there is one | |
589 | * that will request this seq if probed. | |
590 | */ | |
591 | ret = device_find_child_by_seq(parent, seq, true, &dev); | |
592 | } | |
593 | return device_get_device_tail(dev, ret, devp); | |
594 | } | |
595 | ||
596 | int device_find_child_by_of_offset(struct udevice *parent, int of_offset, | |
597 | struct udevice **devp) | |
598 | { | |
599 | struct udevice *dev; | |
600 | ||
601 | *devp = NULL; | |
602 | ||
603 | list_for_each_entry(dev, &parent->child_head, sibling_node) { | |
e160f7d4 | 604 | if (dev_of_offset(dev) == of_offset) { |
997c87bb SG |
605 | *devp = dev; |
606 | return 0; | |
607 | } | |
608 | } | |
609 | ||
610 | return -ENODEV; | |
611 | } | |
612 | ||
132f9bfc | 613 | int device_get_child_by_of_offset(struct udevice *parent, int node, |
997c87bb SG |
614 | struct udevice **devp) |
615 | { | |
616 | struct udevice *dev; | |
617 | int ret; | |
618 | ||
619 | *devp = NULL; | |
132f9bfc | 620 | ret = device_find_child_by_of_offset(parent, node, &dev); |
997c87bb SG |
621 | return device_get_device_tail(dev, ret, devp); |
622 | } | |
a8981d4f | 623 | |
7ec9181d JJH |
624 | static struct udevice *_device_find_global_by_ofnode(struct udevice *parent, |
625 | ofnode ofnode) | |
2693047a SG |
626 | { |
627 | struct udevice *dev, *found; | |
628 | ||
7ec9181d | 629 | if (ofnode_equal(dev_ofnode(parent), ofnode)) |
2693047a SG |
630 | return parent; |
631 | ||
632 | list_for_each_entry(dev, &parent->child_head, sibling_node) { | |
7ec9181d | 633 | found = _device_find_global_by_ofnode(dev, ofnode); |
2693047a SG |
634 | if (found) |
635 | return found; | |
636 | } | |
637 | ||
638 | return NULL; | |
639 | } | |
640 | ||
7ec9181d JJH |
641 | int device_find_global_by_ofnode(ofnode ofnode, struct udevice **devp) |
642 | { | |
643 | *devp = _device_find_global_by_ofnode(gd->dm_root, ofnode); | |
644 | ||
645 | return *devp ? 0 : -ENOENT; | |
646 | } | |
647 | ||
648 | int device_get_global_by_ofnode(ofnode ofnode, struct udevice **devp) | |
2693047a SG |
649 | { |
650 | struct udevice *dev; | |
651 | ||
7ec9181d | 652 | dev = _device_find_global_by_ofnode(gd->dm_root, ofnode); |
2693047a SG |
653 | return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp); |
654 | } | |
655 | ||
a8981d4f SG |
656 | int device_find_first_child(struct udevice *parent, struct udevice **devp) |
657 | { | |
658 | if (list_empty(&parent->child_head)) { | |
659 | *devp = NULL; | |
660 | } else { | |
661 | *devp = list_first_entry(&parent->child_head, struct udevice, | |
662 | sibling_node); | |
663 | } | |
664 | ||
665 | return 0; | |
666 | } | |
667 | ||
668 | int device_find_next_child(struct udevice **devp) | |
669 | { | |
670 | struct udevice *dev = *devp; | |
671 | struct udevice *parent = dev->parent; | |
672 | ||
673 | if (list_is_last(&dev->sibling_node, &parent->child_head)) { | |
674 | *devp = NULL; | |
675 | } else { | |
676 | *devp = list_entry(dev->sibling_node.next, struct udevice, | |
677 | sibling_node); | |
678 | } | |
679 | ||
680 | return 0; | |
681 | } | |
2ef249b4 | 682 | |
479728cb SG |
683 | struct udevice *dev_get_parent(struct udevice *child) |
684 | { | |
685 | return child->parent; | |
686 | } | |
687 | ||
39de8433 | 688 | ulong dev_get_driver_data(struct udevice *dev) |
2ef249b4 | 689 | { |
39de8433 | 690 | return dev->driver_data; |
2ef249b4 | 691 | } |
b3670531 | 692 | |
cc73d37b PM |
693 | const void *dev_get_driver_ops(struct udevice *dev) |
694 | { | |
695 | if (!dev || !dev->driver->ops) | |
696 | return NULL; | |
697 | ||
698 | return dev->driver->ops; | |
699 | } | |
700 | ||
b3670531 SG |
701 | enum uclass_id device_get_uclass_id(struct udevice *dev) |
702 | { | |
703 | return dev->uclass->uc_drv->id; | |
704 | } | |
c9cac3f8 | 705 | |
f9c370dc PM |
706 | const char *dev_get_uclass_name(struct udevice *dev) |
707 | { | |
708 | if (!dev) | |
709 | return NULL; | |
710 | ||
711 | return dev->uclass->uc_drv->name; | |
712 | } | |
713 | ||
c5785673 SG |
714 | bool device_has_children(struct udevice *dev) |
715 | { | |
716 | return !list_empty(&dev->child_head); | |
717 | } | |
718 | ||
719 | bool device_has_active_children(struct udevice *dev) | |
720 | { | |
721 | struct udevice *child; | |
722 | ||
723 | for (device_find_first_child(dev, &child); | |
724 | child; | |
725 | device_find_next_child(&child)) { | |
726 | if (device_active(child)) | |
727 | return true; | |
728 | } | |
729 | ||
730 | return false; | |
731 | } | |
732 | ||
733 | bool device_is_last_sibling(struct udevice *dev) | |
734 | { | |
735 | struct udevice *parent = dev->parent; | |
736 | ||
737 | if (!parent) | |
738 | return false; | |
739 | return list_is_last(&dev->sibling_node, &parent->child_head); | |
740 | } | |
f5c67ea0 | 741 | |
a2040fac SG |
742 | void device_set_name_alloced(struct udevice *dev) |
743 | { | |
fd1c2d9b | 744 | dev->flags |= DM_FLAG_NAME_ALLOCED; |
a2040fac SG |
745 | } |
746 | ||
f5c67ea0 SG |
747 | int device_set_name(struct udevice *dev, const char *name) |
748 | { | |
749 | name = strdup(name); | |
750 | if (!name) | |
751 | return -ENOMEM; | |
752 | dev->name = name; | |
a2040fac | 753 | device_set_name_alloced(dev); |
f5c67ea0 SG |
754 | |
755 | return 0; | |
756 | } | |
73443b9e | 757 | |
911f3aef | 758 | bool device_is_compatible(struct udevice *dev, const char *compat) |
73443b9e | 759 | { |
5ccc2c21 | 760 | return ofnode_device_is_compatible(dev_ofnode(dev), compat); |
73443b9e M |
761 | } |
762 | ||
763 | bool of_machine_is_compatible(const char *compat) | |
764 | { | |
765 | const void *fdt = gd->fdt_blob; | |
766 | ||
767 | return !fdt_node_check_compatible(fdt, 0, compat); | |
768 | } | |
e4c98a59 MS |
769 | |
770 | int dev_disable_by_path(const char *path) | |
771 | { | |
772 | struct uclass *uc; | |
773 | ofnode node = ofnode_path(path); | |
774 | struct udevice *dev; | |
775 | int ret = 1; | |
776 | ||
777 | if (!of_live_active()) | |
778 | return -ENOSYS; | |
779 | ||
780 | list_for_each_entry(uc, &gd->uclass_root, sibling_node) { | |
781 | ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node, &dev); | |
782 | if (!ret) | |
783 | break; | |
784 | } | |
785 | ||
786 | if (ret) | |
787 | return ret; | |
788 | ||
789 | ret = device_remove(dev, DM_REMOVE_NORMAL); | |
790 | if (ret) | |
791 | return ret; | |
792 | ||
793 | ret = device_unbind(dev); | |
794 | if (ret) | |
795 | return ret; | |
796 | ||
797 | return ofnode_set_enabled(node, false); | |
798 | } | |
799 | ||
800 | int dev_enable_by_path(const char *path) | |
801 | { | |
802 | ofnode node = ofnode_path(path); | |
803 | ofnode pnode = ofnode_get_parent(node); | |
804 | struct udevice *parent; | |
805 | int ret = 1; | |
806 | ||
807 | if (!of_live_active()) | |
808 | return -ENOSYS; | |
809 | ||
810 | ret = device_find_by_ofnode(pnode, &parent); | |
811 | if (ret) | |
812 | return ret; | |
813 | ||
814 | ret = ofnode_set_enabled(node, true); | |
815 | if (ret) | |
816 | return ret; | |
817 | ||
818 | return lists_bind_fdt(parent, node, NULL); | |
819 | } |