blob: 393dd98b9db248c2c5d8ef89d280d1568cb3d759 [file] [log] [blame]
Simon Glass6494d702014-02-26 15:59:18 -07001/*
2 * Copyright (c) 2013 Google, Inc
3 *
4 * (C) Copyright 2012
5 * Pavel Herrmann <morpheus.ibis@gmail.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#include <common.h>
11#include <errno.h>
12#include <malloc.h>
Simon Glass6a6d8fb2014-06-11 23:29:48 -060013#include <libfdt.h>
Simon Glass6494d702014-02-26 15:59:18 -070014#include <dm/device.h>
15#include <dm/device-internal.h>
16#include <dm/lists.h>
17#include <dm/platdata.h>
Jeroen Hofsteefd536d82014-06-25 21:57:45 +020018#include <dm/root.h>
Simon Glass6494d702014-02-26 15:59:18 -070019#include <dm/uclass.h>
20#include <dm/util.h>
21#include <linux/list.h>
22
23DECLARE_GLOBAL_DATA_PTR;
24
25static const struct driver_info root_info = {
26 .name = "root_driver",
27};
28
Heiko Schocher54c5d082014-05-22 12:43:05 +020029struct udevice *dm_root(void)
Simon Glass6494d702014-02-26 15:59:18 -070030{
31 if (!gd->dm_root) {
32 dm_warn("Virtual root driver does not exist!\n");
33 return NULL;
34 }
35
36 return gd->dm_root;
37}
38
39int dm_init(void)
40{
41 int ret;
42
43 if (gd->dm_root) {
44 dm_warn("Virtual root driver already exists!\n");
45 return -EINVAL;
46 }
Simon Glass89876a52014-06-11 23:29:49 -060047 INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST);
Simon Glass6494d702014-02-26 15:59:18 -070048
Simon Glass00606d72014-07-23 06:55:03 -060049 ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);
Simon Glass6494d702014-02-26 15:59:18 -070050 if (ret)
51 return ret;
Simon Glass74978122014-07-23 06:55:00 -060052 ret = device_probe(DM_ROOT_NON_CONST);
53 if (ret)
54 return ret;
Simon Glass6494d702014-02-26 15:59:18 -070055
56 return 0;
57}
58
Simon Glass9adbd7a2014-07-23 06:55:01 -060059int dm_uninit(void)
60{
61 device_remove(dm_root());
62 device_unbind(dm_root());
63
64 return 0;
65}
66
Simon Glass00606d72014-07-23 06:55:03 -060067int dm_scan_platdata(bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -070068{
69 int ret;
70
Simon Glass00606d72014-07-23 06:55:03 -060071 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -070072 if (ret == -ENOENT) {
73 dm_warn("Some drivers were not found\n");
74 ret = 0;
75 }
76 if (ret)
77 return ret;
78
79 return 0;
80}
81
82#ifdef CONFIG_OF_CONTROL
Simon Glass1ca7e202014-07-23 06:55:18 -060083int dm_scan_fdt_node(struct udevice *parent, const void *blob, int offset,
84 bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -070085{
Simon Glass6494d702014-02-26 15:59:18 -070086 int ret = 0, err;
Simon Glass6494d702014-02-26 15:59:18 -070087
Simon Glass1ca7e202014-07-23 06:55:18 -060088 for (offset = fdt_first_subnode(blob, offset);
89 offset > 0;
90 offset = fdt_next_subnode(blob, offset)) {
91 if (pre_reloc_only &&
92 !fdt_getprop(blob, offset, "u-boot,dm-pre-reloc", NULL))
93 continue;
94 err = lists_bind_fdt(parent, blob, offset);
95 if (err && !ret)
96 ret = err;
97 }
Simon Glass6494d702014-02-26 15:59:18 -070098
99 if (ret)
100 dm_warn("Some drivers failed to bind\n");
101
102 return ret;
103}
Simon Glass1ca7e202014-07-23 06:55:18 -0600104
105int dm_scan_fdt(const void *blob, bool pre_reloc_only)
106{
107 return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only);
108}
Simon Glass6494d702014-02-26 15:59:18 -0700109#endif
110
Simon Glassbb585032014-07-23 06:55:23 -0600111__weak int dm_scan_other(bool pre_reloc_only)
112{
113 return 0;
114}
115
Simon Glassab7cd622014-07-23 06:55:04 -0600116int dm_init_and_scan(bool pre_reloc_only)
117{
118 int ret;
119
120 ret = dm_init();
121 if (ret) {
122 debug("dm_init() failed: %d\n", ret);
123 return ret;
124 }
125 ret = dm_scan_platdata(pre_reloc_only);
126 if (ret) {
127 debug("dm_scan_platdata() failed: %d\n", ret);
128 return ret;
129 }
130#ifdef CONFIG_OF_CONTROL
131 ret = dm_scan_fdt(gd->fdt_blob, pre_reloc_only);
132 if (ret) {
133 debug("dm_scan_fdt() failed: %d\n", ret);
134 return ret;
135 }
136#endif
Simon Glassbb585032014-07-23 06:55:23 -0600137 ret = dm_scan_other(pre_reloc_only);
138 if (ret)
139 return ret;
Simon Glassab7cd622014-07-23 06:55:04 -0600140
141 return 0;
142}
143
Simon Glass6494d702014-02-26 15:59:18 -0700144/* This is the root driver - all drivers are children of this */
145U_BOOT_DRIVER(root_driver) = {
146 .name = "root_driver",
147 .id = UCLASS_ROOT,
148};
149
150/* This is the root uclass */
151UCLASS_DRIVER(root) = {
152 .name = "root",
153 .id = UCLASS_ROOT,
154};