blob: 73c3e07c28b32c19fd01b76435172ab7419c8fa0 [file] [log] [blame]
Simon Glass6494d702014-02-26 15:59:18 -07001/*
2 * Device manager
3 *
4 * Copyright (c) 2013 Google, Inc
5 *
6 * (C) Copyright 2012
7 * Pavel Herrmann <morpheus.ibis@gmail.com>
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12#include <common.h>
Simon Glass5a66a8f2014-07-23 06:55:12 -060013#include <fdtdec.h>
Simon Glass6494d702014-02-26 15:59:18 -070014#include <malloc.h>
15#include <dm/device.h>
16#include <dm/device-internal.h>
17#include <dm/lists.h>
18#include <dm/platdata.h>
19#include <dm/uclass.h>
20#include <dm/uclass-internal.h>
21#include <dm/util.h>
22#include <linux/err.h>
23#include <linux/list.h>
24
Simon Glass5a66a8f2014-07-23 06:55:12 -060025DECLARE_GLOBAL_DATA_PTR;
26
Heiko Schocher54c5d082014-05-22 12:43:05 +020027int device_bind(struct udevice *parent, struct driver *drv, const char *name,
28 void *platdata, int of_offset, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -070029{
Heiko Schocher54c5d082014-05-22 12:43:05 +020030 struct udevice *dev;
Simon Glass6494d702014-02-26 15:59:18 -070031 struct uclass *uc;
32 int ret = 0;
33
34 *devp = NULL;
35 if (!name)
36 return -EINVAL;
37
38 ret = uclass_get(drv->id, &uc);
39 if (ret)
40 return ret;
41
Heiko Schocher54c5d082014-05-22 12:43:05 +020042 dev = calloc(1, sizeof(struct udevice));
Simon Glass6494d702014-02-26 15:59:18 -070043 if (!dev)
44 return -ENOMEM;
45
46 INIT_LIST_HEAD(&dev->sibling_node);
47 INIT_LIST_HEAD(&dev->child_head);
48 INIT_LIST_HEAD(&dev->uclass_node);
49 dev->platdata = platdata;
50 dev->name = name;
51 dev->of_offset = of_offset;
52 dev->parent = parent;
53 dev->driver = drv;
54 dev->uclass = uc;
Simon Glass5a66a8f2014-07-23 06:55:12 -060055
Simon Glass5a66a8f2014-07-23 06:55:12 -060056 dev->seq = -1;
Simon Glass91cbd792014-09-17 09:02:38 -060057 dev->req_seq = -1;
Simon Glass9cc36a22015-01-25 08:27:05 -070058#ifdef CONFIG_OF_CONTROL
59 /*
60 * Some devices, such as a SPI bus, I2C bus and serial ports are
61 * numbered using aliases.
62 *
63 * This is just a 'requested' sequence, and will be
64 * resolved (and ->seq updated) when the device is probed.
65 */
66 if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) {
67 if (uc->uc_drv->name && of_offset != -1) {
68 fdtdec_get_alias_seq(gd->fdt_blob, uc->uc_drv->name,
69 of_offset, &dev->req_seq);
70 }
71 }
Simon Glass91cbd792014-09-17 09:02:38 -060072#endif
Simon Glassf8a85442015-01-25 08:27:00 -070073 if (!dev->platdata && drv->platdata_auto_alloc_size) {
Simon Glass6494d702014-02-26 15:59:18 -070074 dev->flags |= DM_FLAG_ALLOC_PDATA;
Simon Glassf8a85442015-01-25 08:27:00 -070075 dev->platdata = calloc(1, drv->platdata_auto_alloc_size);
76 if (!dev->platdata) {
77 ret = -ENOMEM;
78 goto fail_alloc1;
79 }
80 }
Simon Glasscdc133b2015-01-25 08:27:01 -070081 if (parent) {
82 int size = parent->driver->per_child_platdata_auto_alloc_size;
83
Simon Glassba8da9d2015-01-25 08:27:02 -070084 if (!size) {
85 size = parent->uclass->uc_drv->
86 per_child_platdata_auto_alloc_size;
87 }
Simon Glasscdc133b2015-01-25 08:27:01 -070088 if (size) {
89 dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA;
90 dev->parent_platdata = calloc(1, size);
91 if (!dev->parent_platdata) {
92 ret = -ENOMEM;
93 goto fail_alloc2;
94 }
95 }
96 }
Simon Glass6494d702014-02-26 15:59:18 -070097
98 /* put dev into parent's successor list */
99 if (parent)
100 list_add_tail(&dev->sibling_node, &parent->child_head);
101
102 ret = uclass_bind_device(dev);
103 if (ret)
Simon Glass72ebfe82015-01-25 08:26:59 -0700104 goto fail_uclass_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700105
106 /* if we fail to bind we remove device from successors and free it */
107 if (drv->bind) {
108 ret = drv->bind(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700109 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700110 goto fail_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700111 }
Simon Glass0118ce72015-01-25 08:27:03 -0700112 if (parent && parent->driver->child_post_bind) {
113 ret = parent->driver->child_post_bind(dev);
114 if (ret)
115 goto fail_child_post_bind;
116 }
117
Simon Glass6494d702014-02-26 15:59:18 -0700118 if (parent)
119 dm_dbg("Bound device %s to %s\n", dev->name, parent->name);
120 *devp = dev;
121
122 return 0;
123
Simon Glass0118ce72015-01-25 08:27:03 -0700124fail_child_post_bind:
125 if (drv->unbind && drv->unbind(dev)) {
126 dm_warn("unbind() method failed on dev '%s' on error path\n",
127 dev->name);
128 }
129
Simon Glass6494d702014-02-26 15:59:18 -0700130fail_bind:
Simon Glass72ebfe82015-01-25 08:26:59 -0700131 if (uclass_unbind_device(dev)) {
132 dm_warn("Failed to unbind dev '%s' on error path\n",
133 dev->name);
134 }
135fail_uclass_bind:
Simon Glasscdc133b2015-01-25 08:27:01 -0700136 list_del(&dev->sibling_node);
137 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
138 free(dev->parent_platdata);
139 dev->parent_platdata = NULL;
140 }
141fail_alloc2:
Simon Glassf8a85442015-01-25 08:27:00 -0700142 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
143 free(dev->platdata);
144 dev->platdata = NULL;
145 }
146fail_alloc1:
Simon Glass6494d702014-02-26 15:59:18 -0700147 free(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700148
Simon Glass6494d702014-02-26 15:59:18 -0700149 return ret;
150}
151
Simon Glass00606d72014-07-23 06:55:03 -0600152int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
153 const struct driver_info *info, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -0700154{
155 struct driver *drv;
156
157 drv = lists_driver_lookup_name(info->name);
158 if (!drv)
159 return -ENOENT;
Simon Glass00606d72014-07-23 06:55:03 -0600160 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
161 return -EPERM;
Simon Glass6494d702014-02-26 15:59:18 -0700162
163 return device_bind(parent, drv, info->name, (void *)info->platdata,
164 -1, devp);
165}
166
Simon Glassaccd4b12014-10-13 23:41:50 -0600167int device_probe_child(struct udevice *dev, void *parent_priv)
Simon Glass6494d702014-02-26 15:59:18 -0700168{
169 struct driver *drv;
170 int size = 0;
171 int ret;
Simon Glass5a66a8f2014-07-23 06:55:12 -0600172 int seq;
Simon Glass6494d702014-02-26 15:59:18 -0700173
174 if (!dev)
175 return -EINVAL;
176
177 if (dev->flags & DM_FLAG_ACTIVATED)
178 return 0;
179
180 drv = dev->driver;
181 assert(drv);
182
Simon Glassf8a85442015-01-25 08:27:00 -0700183 /* Allocate private data if requested */
Simon Glass6494d702014-02-26 15:59:18 -0700184 if (drv->priv_auto_alloc_size) {
185 dev->priv = calloc(1, drv->priv_auto_alloc_size);
186 if (!dev->priv) {
187 ret = -ENOMEM;
188 goto fail;
189 }
190 }
191 /* Allocate private data if requested */
Simon Glass6494d702014-02-26 15:59:18 -0700192 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
193 if (size) {
194 dev->uclass_priv = calloc(1, size);
195 if (!dev->uclass_priv) {
196 ret = -ENOMEM;
197 goto fail;
198 }
199 }
200
201 /* Ensure all parents are probed */
202 if (dev->parent) {
Simon Glasse59f4582014-07-23 06:55:20 -0600203 size = dev->parent->driver->per_child_auto_alloc_size;
Simon Glassdac8db22015-01-25 08:27:06 -0700204 if (!size) {
205 size = dev->parent->uclass->uc_drv->
206 per_child_auto_alloc_size;
207 }
Simon Glasse59f4582014-07-23 06:55:20 -0600208 if (size) {
209 dev->parent_priv = calloc(1, size);
210 if (!dev->parent_priv) {
211 ret = -ENOMEM;
212 goto fail;
213 }
Simon Glassaccd4b12014-10-13 23:41:50 -0600214 if (parent_priv)
215 memcpy(dev->parent_priv, parent_priv, size);
Simon Glasse59f4582014-07-23 06:55:20 -0600216 }
217
Simon Glass6494d702014-02-26 15:59:18 -0700218 ret = device_probe(dev->parent);
219 if (ret)
220 goto fail;
221 }
222
Simon Glass5a66a8f2014-07-23 06:55:12 -0600223 seq = uclass_resolve_seq(dev);
224 if (seq < 0) {
225 ret = seq;
226 goto fail;
227 }
228 dev->seq = seq;
229
Simon Glass83c7e432015-01-25 08:27:10 -0700230 ret = uclass_pre_probe_child(dev);
231 if (ret)
232 goto fail;
233
Simon Glassa327dee2014-07-23 06:55:21 -0600234 if (dev->parent && dev->parent->driver->child_pre_probe) {
235 ret = dev->parent->driver->child_pre_probe(dev);
236 if (ret)
237 goto fail;
238 }
239
Simon Glass6494d702014-02-26 15:59:18 -0700240 if (drv->ofdata_to_platdata && dev->of_offset >= 0) {
241 ret = drv->ofdata_to_platdata(dev);
242 if (ret)
243 goto fail;
244 }
245
246 if (drv->probe) {
247 ret = drv->probe(dev);
248 if (ret)
249 goto fail;
250 }
251
252 dev->flags |= DM_FLAG_ACTIVATED;
253
254 ret = uclass_post_probe_device(dev);
255 if (ret) {
256 dev->flags &= ~DM_FLAG_ACTIVATED;
257 goto fail_uclass;
258 }
259
260 return 0;
261fail_uclass:
262 if (device_remove(dev)) {
263 dm_warn("%s: Device '%s' failed to remove on error path\n",
264 __func__, dev->name);
265 }
266fail:
Simon Glass5a66a8f2014-07-23 06:55:12 -0600267 dev->seq = -1;
Simon Glass6494d702014-02-26 15:59:18 -0700268 device_free(dev);
269
270 return ret;
271}
272
Simon Glassaccd4b12014-10-13 23:41:50 -0600273int device_probe(struct udevice *dev)
274{
275 return device_probe_child(dev, NULL);
276}
277
Heiko Schocher54c5d082014-05-22 12:43:05 +0200278void *dev_get_platdata(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700279{
280 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700281 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700282 return NULL;
283 }
284
285 return dev->platdata;
286}
287
Simon Glasscdc133b2015-01-25 08:27:01 -0700288void *dev_get_parent_platdata(struct udevice *dev)
289{
290 if (!dev) {
291 dm_warn("%s: null device", __func__);
292 return NULL;
293 }
294
295 return dev->parent_platdata;
296}
297
Heiko Schocher54c5d082014-05-22 12:43:05 +0200298void *dev_get_priv(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700299{
300 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700301 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700302 return NULL;
303 }
304
305 return dev->priv;
306}
Simon Glass997c87b2014-07-23 06:55:19 -0600307
Simon Glasse59f4582014-07-23 06:55:20 -0600308void *dev_get_parentdata(struct udevice *dev)
309{
310 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700311 dm_warn("%s: null device\n", __func__);
Simon Glasse59f4582014-07-23 06:55:20 -0600312 return NULL;
313 }
314
315 return dev->parent_priv;
316}
317
Simon Glass997c87b2014-07-23 06:55:19 -0600318static int device_get_device_tail(struct udevice *dev, int ret,
319 struct udevice **devp)
320{
321 if (ret)
322 return ret;
323
324 ret = device_probe(dev);
325 if (ret)
326 return ret;
327
328 *devp = dev;
329
330 return 0;
331}
332
333int device_get_child(struct udevice *parent, int index, struct udevice **devp)
334{
335 struct udevice *dev;
336
337 list_for_each_entry(dev, &parent->child_head, sibling_node) {
338 if (!index--)
339 return device_get_device_tail(dev, 0, devp);
340 }
341
342 return -ENODEV;
343}
344
345int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
346 bool find_req_seq, struct udevice **devp)
347{
348 struct udevice *dev;
349
350 *devp = NULL;
351 if (seq_or_req_seq == -1)
352 return -ENODEV;
353
354 list_for_each_entry(dev, &parent->child_head, sibling_node) {
355 if ((find_req_seq ? dev->req_seq : dev->seq) ==
356 seq_or_req_seq) {
357 *devp = dev;
358 return 0;
359 }
360 }
361
362 return -ENODEV;
363}
364
365int device_get_child_by_seq(struct udevice *parent, int seq,
366 struct udevice **devp)
367{
368 struct udevice *dev;
369 int ret;
370
371 *devp = NULL;
372 ret = device_find_child_by_seq(parent, seq, false, &dev);
373 if (ret == -ENODEV) {
374 /*
375 * We didn't find it in probed devices. See if there is one
376 * that will request this seq if probed.
377 */
378 ret = device_find_child_by_seq(parent, seq, true, &dev);
379 }
380 return device_get_device_tail(dev, ret, devp);
381}
382
383int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
384 struct udevice **devp)
385{
386 struct udevice *dev;
387
388 *devp = NULL;
389
390 list_for_each_entry(dev, &parent->child_head, sibling_node) {
391 if (dev->of_offset == of_offset) {
392 *devp = dev;
393 return 0;
394 }
395 }
396
397 return -ENODEV;
398}
399
400int device_get_child_by_of_offset(struct udevice *parent, int seq,
401 struct udevice **devp)
402{
403 struct udevice *dev;
404 int ret;
405
406 *devp = NULL;
407 ret = device_find_child_by_of_offset(parent, seq, &dev);
408 return device_get_device_tail(dev, ret, devp);
409}
Simon Glassa8981d42014-10-13 23:41:49 -0600410
411int device_find_first_child(struct udevice *parent, struct udevice **devp)
412{
413 if (list_empty(&parent->child_head)) {
414 *devp = NULL;
415 } else {
416 *devp = list_first_entry(&parent->child_head, struct udevice,
417 sibling_node);
418 }
419
420 return 0;
421}
422
423int device_find_next_child(struct udevice **devp)
424{
425 struct udevice *dev = *devp;
426 struct udevice *parent = dev->parent;
427
428 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
429 *devp = NULL;
430 } else {
431 *devp = list_entry(dev->sibling_node.next, struct udevice,
432 sibling_node);
433 }
434
435 return 0;
436}
Simon Glass2ef249b2014-11-11 10:46:18 -0700437
Simon Glass479728c2014-11-11 10:46:19 -0700438struct udevice *dev_get_parent(struct udevice *child)
439{
440 return child->parent;
441}
442
Simon Glass2ef249b2014-11-11 10:46:18 -0700443ulong dev_get_of_data(struct udevice *dev)
444{
445 return dev->of_id->data;
446}
Simon Glassb3670532015-01-25 08:27:04 -0700447
448enum uclass_id device_get_uclass_id(struct udevice *dev)
449{
450 return dev->uclass->uc_drv->id;
451}
Peng Fanc9cac3f2015-02-10 14:46:32 +0800452
453#ifdef CONFIG_OF_CONTROL
454fdt_addr_t dev_get_addr(struct udevice *dev)
455{
456 return fdtdec_get_addr(gd->fdt_blob, dev->of_offset, "reg");
457}
458#else
459fdt_addr_t dev_get_addr(struct udevice *dev)
460{
461 return FDT_ADDR_T_NONE;
462}
463#endif