blob: 94673f34c9b8e72fe79abd67e7ca71c3628dedf3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Philipp Tomsich9b0bc592017-07-19 22:04:32 +02002/*
3 * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
Philipp Tomsich9b0bc592017-07-19 22:04:32 +02004 */
5
6#include <common.h>
7#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06008#include <log.h>
Philipp Tomsich9b0bc592017-07-19 22:04:32 +02009#include <mmc.h>
10#include <spl.h>
11
Kever Yang032906a2019-07-17 18:12:20 +080012#if CONFIG_IS_ENABLED(OF_LIBFDT)
Philipp Tomsichdbad01c2017-09-29 19:27:56 +020013/**
14 * spl_node_to_boot_device() - maps from a DT-node to a SPL boot device
15 * @node: of_offset of the node
16 *
17 * The SPL framework uses BOOT_DEVICE_... constants to identify its boot
18 * sources. These may take on a device-specific meaning, depending on
19 * what nodes are enabled in a DTS (e.g. BOOT_DEVICE_MMC1 may refer to
20 * different controllers/block-devices, depending on which SD/MMC controllers
21 * are enabled in any given DTS). This function maps from a DT-node back
22 * onto a BOOT_DEVICE_... constant, considering the currently active devices.
23 *
24 * Returns
25 * -ENOENT, if no device matching the node could be found
26 * -ENOSYS, if the device matching the node can not be mapped onto a
27 * SPL boot device (e.g. the third MMC device)
28 * -1, for unspecified failures
29 * a positive integer (from the BOOT_DEVICE_... family) on succes.
30 */
31
Philipp Tomsich9b0bc592017-07-19 22:04:32 +020032static int spl_node_to_boot_device(int node)
33{
34 struct udevice *parent;
35
36 /*
37 * This should eventually move into the SPL code, once SPL becomes
38 * aware of the block-device layer. Until then (and to avoid unneeded
Thomas Hebb32f2ca22019-11-13 18:18:03 -080039 * delays in getting this feature out), it lives at the board-level.
Philipp Tomsich9b0bc592017-07-19 22:04:32 +020040 */
41 if (!uclass_get_device_by_of_offset(UCLASS_MMC, node, &parent)) {
42 struct udevice *dev;
43 struct blk_desc *desc = NULL;
44
45 for (device_find_first_child(parent, &dev);
46 dev;
47 device_find_next_child(&dev)) {
48 if (device_get_uclass_id(dev) == UCLASS_BLK) {
49 desc = dev_get_uclass_platdata(dev);
50 break;
51 }
52 }
53
54 if (!desc)
55 return -ENOENT;
56
57 switch (desc->devnum) {
58 case 0:
59 return BOOT_DEVICE_MMC1;
60 case 1:
61 return BOOT_DEVICE_MMC2;
62 default:
63 return -ENOSYS;
64 }
Simon Glass3523c072019-01-21 14:53:28 -070065 } else if (!uclass_get_device_by_of_offset(UCLASS_SPI_FLASH, node,
66 &parent)) {
67 return BOOT_DEVICE_SPI;
Philipp Tomsich9b0bc592017-07-19 22:04:32 +020068 }
69
70 /*
71 * SPL doesn't differentiate SPI flashes, so we keep the detection
72 * brief and inaccurate... hopefully, the common SPL layer can be
73 * extended with awareness of the BLK layer (and matching OF_CONTROL)
74 * soon.
75 */
76 if (!uclass_get_device_by_of_offset(UCLASS_SPI_FLASH, node, &parent))
77 return BOOT_DEVICE_SPI;
78
79 return -1;
80}
81
Philipp Tomsich80e9f882017-09-29 19:27:57 +020082/**
83 * board_spl_was_booted_from() - retrieves the of-path the SPL was loaded from
84 *
85 * To support a 'same-as-spl' specification in the search-order for the next
86 * stage, we need a SoC- or board-specific way to handshake with what 'came
87 * before us' (either a BROM or TPL stage) and map the info retrieved onto
88 * a OF path.
89 *
90 * Returns
91 * NULL, on failure or if the device could not be identified
92 * a of_path (a string), on success
93 */
94__weak const char *board_spl_was_booted_from(void)
95{
96 debug("%s: no support for 'same-as-spl' for this board\n", __func__);
97 return NULL;
98}
99
Philipp Tomsich9b0bc592017-07-19 22:04:32 +0200100void board_boot_order(u32 *spl_boot_list)
101{
Urja Rannikkoe68a8432020-05-13 19:15:22 +0000102 /* In case of no fdt (or only platdata), use spl_boot_device() */
103 if (!CONFIG_IS_ENABLED(OF_CONTROL) || CONFIG_IS_ENABLED(OF_PLATDATA)) {
104 spl_boot_list[0] = spl_boot_device();
105 return;
106 }
107
Philipp Tomsich9b0bc592017-07-19 22:04:32 +0200108 const void *blob = gd->fdt_blob;
109 int chosen_node = fdt_path_offset(blob, "/chosen");
110 int idx = 0;
111 int elem;
112 int boot_device;
113 int node;
114 const char *conf;
115
116 if (chosen_node < 0) {
117 debug("%s: /chosen not found, using spl_boot_device()\n",
118 __func__);
119 spl_boot_list[0] = spl_boot_device();
120 return;
121 }
122
123 for (elem = 0;
124 (conf = fdt_stringlist_get(blob, chosen_node,
125 "u-boot,spl-boot-order", elem, NULL));
126 elem++) {
Philipp Tomsich80e9f882017-09-29 19:27:57 +0200127 const char *alias;
128
129 /* Handle the case of 'same device the SPL was loaded from' */
130 if (strncmp(conf, "same-as-spl", 11) == 0) {
131 conf = board_spl_was_booted_from();
132 if (!conf)
133 continue;
134 }
135
Philipp Tomsich9b0bc592017-07-19 22:04:32 +0200136 /* First check if the list element is an alias */
Philipp Tomsich80e9f882017-09-29 19:27:57 +0200137 alias = fdt_get_alias(blob, conf);
Philipp Tomsich9b0bc592017-07-19 22:04:32 +0200138 if (alias)
139 conf = alias;
140
141 /* Try to resolve the config item (or alias) as a path */
142 node = fdt_path_offset(blob, conf);
143 if (node < 0) {
Jagan Teki891d4d12019-09-17 11:40:39 +0530144 debug("%s: could not find %s in FDT\n", __func__, conf);
Philipp Tomsich9b0bc592017-07-19 22:04:32 +0200145 continue;
146 }
147
148 /* Try to map this back onto SPL boot devices */
149 boot_device = spl_node_to_boot_device(node);
150 if (boot_device < 0) {
151 debug("%s: could not map node @%x to a boot-device\n",
152 __func__, node);
153 continue;
154 }
155
156 spl_boot_list[idx++] = boot_device;
157 }
158
159 /* If we had no matches, fall back to spl_boot_device */
160 if (idx == 0)
161 spl_boot_list[0] = spl_boot_device();
162}
163#endif