blob: 346d462470e34716f2b3c8f930cce4d938c3f19d [file] [log] [blame]
Simon Glassdd6ab882014-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 Glassdf6bd7d2014-06-11 23:29:48 -060013#include <libfdt.h>
Simon Glassdd6ab882014-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 Hofsteecf0cf822014-06-25 21:57:45 +020018#include <dm/root.h>
Simon Glassdd6ab882014-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 Schocherb74fcb42014-05-22 12:43:05 +020029struct udevice *dm_root(void)
Simon Glassdd6ab882014-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 Glass34a1d352014-06-11 23:29:49 -060047 INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST);
Simon Glassdd6ab882014-02-26 15:59:18 -070048
Simon Glass34a1d352014-06-11 23:29:49 -060049 ret = device_bind_by_name(NULL, &root_info, &DM_ROOT_NON_CONST);
Simon Glassdd6ab882014-02-26 15:59:18 -070050 if (ret)
51 return ret;
Simon Glass6d3b3e22014-07-23 06:55:00 -060052 ret = device_probe(DM_ROOT_NON_CONST);
53 if (ret)
54 return ret;
Simon Glassdd6ab882014-02-26 15:59:18 -070055
56 return 0;
57}
58
Simon Glass00197582014-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 Glassdd6ab882014-02-26 15:59:18 -070067int dm_scan_platdata(void)
68{
69 int ret;
70
Simon Glass34a1d352014-06-11 23:29:49 -060071 ret = lists_bind_drivers(DM_ROOT_NON_CONST);
Simon Glassdd6ab882014-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
83int dm_scan_fdt(const void *blob)
84{
85 int offset = 0;
86 int ret = 0, err;
87 int depth = 0;
88
89 do {
90 offset = fdt_next_node(blob, offset, &depth);
91 if (offset > 0 && depth == 1) {
92 err = lists_bind_fdt(gd->dm_root, blob, offset);
93 if (err && !ret)
94 ret = err;
95 }
96 } while (offset > 0);
97
98 if (ret)
99 dm_warn("Some drivers failed to bind\n");
100
101 return ret;
102}
103#endif
104
105/* This is the root driver - all drivers are children of this */
106U_BOOT_DRIVER(root_driver) = {
107 .name = "root_driver",
108 .id = UCLASS_ROOT,
109};
110
111/* This is the root uclass */
112UCLASS_DRIVER(root) = {
113 .name = "root",
114 .id = UCLASS_ROOT,
115};