blob: 99ee08e33530e36365682169643d9083388cea0e [file] [log] [blame]
Simon Glass017656e2022-04-24 23:31:07 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2021 Google LLC
4 * Written by Simon Glass <sjg@chromium.org>
5 */
6
7#define LOG_CATEGORY UCLASS_BOOTSTD
8
9#include <common.h>
10#include <dm.h>
11#include <bootdev.h>
12#include <bootflow.h>
Simon Glass03fcbf92022-04-24 23:31:09 -060013#include <bootmeth.h>
Simon Glass017656e2022-04-24 23:31:07 -060014#include <bootstd.h>
Simon Glass017656e2022-04-24 23:31:07 -060015#include <fs.h>
16#include <log.h>
17#include <malloc.h>
18#include <part.h>
19#include <sort.h>
20#include <dm/device-internal.h>
21#include <dm/lists.h>
22#include <dm/uclass-internal.h>
23
24enum {
25 /*
26 * Set some sort of limit on the number of partitions a bootdev can
27 * have. Note that for disks this limits the partitions numbers that
28 * are scanned to 1..MAX_BOOTFLOWS_PER_BOOTDEV
29 */
30 MAX_PART_PER_BOOTDEV = 30,
31
32 /* Maximum supported length of the "boot_targets" env string */
33 BOOT_TARGETS_MAX_LEN = 100,
34};
35
36int bootdev_add_bootflow(struct bootflow *bflow)
37{
Simon Glass017656e2022-04-24 23:31:07 -060038 struct bootstd_priv *std;
39 struct bootflow *new;
40 int ret;
41
42 assert(bflow->dev);
43 ret = bootstd_get_priv(&std);
44 if (ret)
45 return ret;
46
47 new = malloc(sizeof(*bflow));
48 if (!new)
49 return log_msg_ret("bflow", -ENOMEM);
50 memcpy(new, bflow, sizeof(*bflow));
51
52 list_add_tail(&new->glob_node, &std->glob_head);
Simon Glassdee4d642022-07-30 15:52:23 -060053 if (bflow->dev) {
54 struct bootdev_uc_plat *ucp = dev_get_uclass_plat(bflow->dev);
55
56 list_add_tail(&new->bm_node, &ucp->bootflow_head);
57 }
Simon Glass017656e2022-04-24 23:31:07 -060058
59 return 0;
60}
61
62int bootdev_first_bootflow(struct udevice *dev, struct bootflow **bflowp)
63{
64 struct bootdev_uc_plat *ucp = dev_get_uclass_plat(dev);
65
66 if (list_empty(&ucp->bootflow_head))
67 return -ENOENT;
68
69 *bflowp = list_first_entry(&ucp->bootflow_head, struct bootflow,
70 bm_node);
71
72 return 0;
73}
74
75int bootdev_next_bootflow(struct bootflow **bflowp)
76{
77 struct bootflow *bflow = *bflowp;
78 struct bootdev_uc_plat *ucp = dev_get_uclass_plat(bflow->dev);
79
80 *bflowp = NULL;
81
82 if (list_is_last(&bflow->bm_node, &ucp->bootflow_head))
83 return -ENOENT;
84
85 *bflowp = list_entry(bflow->bm_node.next, struct bootflow, bm_node);
86
87 return 0;
88}
89
90int bootdev_bind(struct udevice *parent, const char *drv_name, const char *name,
91 struct udevice **devp)
92{
93 struct udevice *dev;
94 char dev_name[30];
95 char *str;
96 int ret;
97
98 snprintf(dev_name, sizeof(dev_name), "%s.%s", parent->name, name);
99 str = strdup(dev_name);
100 if (!str)
101 return -ENOMEM;
102 ret = device_bind_driver(parent, drv_name, str, &dev);
103 if (ret)
104 return ret;
105 device_set_name_alloced(dev);
106 *devp = dev;
107
108 return 0;
109}
110
111int bootdev_find_in_blk(struct udevice *dev, struct udevice *blk,
112 struct bootflow_iter *iter, struct bootflow *bflow)
113{
114 struct blk_desc *desc = dev_get_uclass_plat(blk);
115 struct disk_partition info;
116 char partstr[20];
117 char name[60];
118 int ret;
119
120 /* Sanity check */
121 if (iter->part >= MAX_PART_PER_BOOTDEV)
122 return log_msg_ret("max", -ESHUTDOWN);
123
124 bflow->blk = blk;
125 if (iter->part)
126 snprintf(partstr, sizeof(partstr), "part_%x", iter->part);
127 else
128 strcpy(partstr, "whole");
129 snprintf(name, sizeof(name), "%s.%s", dev->name, partstr);
130 bflow->name = strdup(name);
131 if (!bflow->name)
132 return log_msg_ret("name", -ENOMEM);
133
134 bflow->part = iter->part;
135
Simon Glass03fcbf92022-04-24 23:31:09 -0600136 ret = bootmeth_check(bflow->method, iter);
137 if (ret)
138 return log_msg_ret("check", ret);
139
Simon Glass017656e2022-04-24 23:31:07 -0600140 /*
141 * partition numbers start at 0 so this cannot succeed, but it can tell
142 * us whether there is valid media there
143 */
144 ret = part_get_info(desc, iter->part, &info);
145 if (!iter->part && ret == -ENOENT)
146 ret = 0;
147
148 /*
149 * This error indicates the media is not present. Otherwise we just
150 * blindly scan the next partition. We could be more intelligent here
151 * and check which partition numbers actually exist.
152 */
153 if (ret == -EOPNOTSUPP)
154 ret = -ESHUTDOWN;
155 else
156 bflow->state = BOOTFLOWST_MEDIA;
157 if (ret)
158 return log_msg_ret("part", ret);
159
160 /*
161 * Currently we don't get the number of partitions, so just
162 * assume a large number
163 */
164 iter->max_part = MAX_PART_PER_BOOTDEV;
165
Simon Glass64cbc5c2023-01-17 10:47:42 -0700166 /* If this is the whole disk, check if we have bootable partitions */
167 if (!iter->part) {
168 iter->first_bootable = part_get_bootable(desc);
169 log_debug("checking bootable=%d\n", iter->first_bootable);
170
171 /* if there are bootable partitions, scan only those */
172 } else if (iter->first_bootable ? !info.bootable : iter->part != 1) {
173 return log_msg_ret("boot", -EINVAL);
174 } else {
Simon Glass017656e2022-04-24 23:31:07 -0600175 ret = fs_set_blk_dev_with_part(desc, bflow->part);
176 bflow->state = BOOTFLOWST_PART;
177
178 /* Use an #ifdef due to info.sys_ind */
179#ifdef CONFIG_DOS_PARTITION
180 log_debug("%s: Found partition %x type %x fstype %d\n",
181 blk->name, bflow->part, info.sys_ind,
182 ret ? -1 : fs_get_type());
183#endif
184 if (ret)
185 return log_msg_ret("fs", ret);
186 bflow->state = BOOTFLOWST_FS;
187 }
188
Simon Glass03fcbf92022-04-24 23:31:09 -0600189 ret = bootmeth_read_bootflow(bflow->method, bflow);
190 if (ret)
191 return log_msg_ret("method", ret);
192
Simon Glass017656e2022-04-24 23:31:07 -0600193 return 0;
194}
195
196void bootdev_list(bool probe)
197{
198 struct udevice *dev;
199 int ret;
200 int i;
201
202 printf("Seq Probed Status Uclass Name\n");
203 printf("--- ------ ------ -------- ------------------\n");
204 if (probe)
Michal Suchanek675e9082022-10-12 21:57:53 +0200205 ret = uclass_first_device_check(UCLASS_BOOTDEV, &dev);
Simon Glass017656e2022-04-24 23:31:07 -0600206 else
207 ret = uclass_find_first_device(UCLASS_BOOTDEV, &dev);
208 for (i = 0; dev; i++) {
209 printf("%3x [ %c ] %6s %-9.9s %s\n", dev_seq(dev),
210 device_active(dev) ? '+' : ' ',
211 ret ? simple_itoa(ret) : "OK",
212 dev_get_uclass_name(dev_get_parent(dev)), dev->name);
213 if (probe)
Michal Suchanek675e9082022-10-12 21:57:53 +0200214 ret = uclass_next_device_check(&dev);
Simon Glass017656e2022-04-24 23:31:07 -0600215 else
216 ret = uclass_find_next_device(&dev);
217 }
218 printf("--- ------ ------ -------- ------------------\n");
219 printf("(%d bootdev%s)\n", i, i != 1 ? "s" : "");
220}
221
222int bootdev_setup_for_dev(struct udevice *parent, const char *drv_name)
223{
224 struct udevice *bdev;
225 int ret;
226
227 ret = device_find_first_child_by_uclass(parent, UCLASS_BOOTDEV,
228 &bdev);
229 if (ret) {
230 if (ret != -ENODEV) {
231 log_debug("Cannot access bootdev device\n");
232 return ret;
233 }
234
235 ret = bootdev_bind(parent, drv_name, "bootdev", &bdev);
236 if (ret) {
237 log_debug("Cannot create bootdev device\n");
238 return ret;
239 }
240 }
241
242 return 0;
243}
244
Simon Glassb1dc36a2023-01-17 10:47:25 -0700245static int bootdev_get_suffix_start(struct udevice *dev, const char *suffix)
246{
247 int len, slen;
248
249 len = strlen(dev->name);
250 slen = strlen(suffix);
251 if (len > slen && !strcmp(suffix, dev->name + len - slen))
252 return len - slen;
253
254 return len;
255}
256
Simon Glass017656e2022-04-24 23:31:07 -0600257int bootdev_setup_sibling_blk(struct udevice *blk, const char *drv_name)
258{
259 struct udevice *parent, *dev;
260 char dev_name[50];
Simon Glassb1dc36a2023-01-17 10:47:25 -0700261 int ret, len;
Simon Glass017656e2022-04-24 23:31:07 -0600262
Simon Glassb1dc36a2023-01-17 10:47:25 -0700263 len = bootdev_get_suffix_start(blk, ".blk");
264 snprintf(dev_name, sizeof(dev_name), "%.*s.%s", len, blk->name,
265 "bootdev");
Simon Glass017656e2022-04-24 23:31:07 -0600266
267 parent = dev_get_parent(blk);
268 ret = device_find_child_by_name(parent, dev_name, &dev);
269 if (ret) {
270 char *str;
271
272 if (ret != -ENODEV) {
273 log_debug("Cannot access bootdev device\n");
274 return ret;
275 }
276 str = strdup(dev_name);
277 if (!str)
278 return -ENOMEM;
279
280 ret = device_bind_driver(parent, drv_name, str, &dev);
281 if (ret) {
282 log_debug("Cannot create bootdev device\n");
283 return ret;
284 }
285 device_set_name_alloced(dev);
286 }
287
288 return 0;
289}
290
291int bootdev_get_sibling_blk(struct udevice *dev, struct udevice **blkp)
292{
293 struct udevice *parent = dev_get_parent(dev);
294 struct udevice *blk;
295 int ret, len;
Simon Glass017656e2022-04-24 23:31:07 -0600296
297 if (device_get_uclass_id(dev) != UCLASS_BOOTDEV)
298 return -EINVAL;
299
300 /* This should always work if bootdev_setup_sibling_blk() was used */
Simon Glassb1dc36a2023-01-17 10:47:25 -0700301 len = bootdev_get_suffix_start(dev, ".bootdev");
Simon Glass017656e2022-04-24 23:31:07 -0600302 ret = device_find_child_by_namelen(parent, dev->name, len, &blk);
Simon Glassb1dc36a2023-01-17 10:47:25 -0700303 if (ret) {
304 char dev_name[50];
305
306 snprintf(dev_name, sizeof(dev_name), "%.*s.blk", len,
307 dev->name);
308 ret = device_find_child_by_name(parent, dev_name, &blk);
309 if (ret)
310 return log_msg_ret("find", ret);
311 }
Simon Glass017656e2022-04-24 23:31:07 -0600312 *blkp = blk;
313
314 return 0;
315}
316
317static int bootdev_get_from_blk(struct udevice *blk, struct udevice **bootdevp)
318{
319 struct udevice *parent = dev_get_parent(blk);
320 struct udevice *bootdev;
321 char dev_name[50];
Simon Glassb1dc36a2023-01-17 10:47:25 -0700322 int ret, len;
Simon Glass017656e2022-04-24 23:31:07 -0600323
324 if (device_get_uclass_id(blk) != UCLASS_BLK)
325 return -EINVAL;
326
327 /* This should always work if bootdev_setup_sibling_blk() was used */
Simon Glassb1dc36a2023-01-17 10:47:25 -0700328 len = bootdev_get_suffix_start(blk, ".blk");
329 snprintf(dev_name, sizeof(dev_name), "%.*s.%s", len, blk->name,
330 "bootdev");
Simon Glass017656e2022-04-24 23:31:07 -0600331 ret = device_find_child_by_name(parent, dev_name, &bootdev);
332 if (ret)
333 return log_msg_ret("find", ret);
334 *bootdevp = bootdev;
335
336 return 0;
337}
338
339int bootdev_unbind_dev(struct udevice *parent)
340{
341 struct udevice *dev;
342 int ret;
343
344 ret = device_find_first_child_by_uclass(parent, UCLASS_BOOTDEV, &dev);
345 if (!ret) {
346 ret = device_remove(dev, DM_REMOVE_NORMAL);
347 if (ret)
348 return log_msg_ret("rem", ret);
349 ret = device_unbind(dev);
350 if (ret)
351 return log_msg_ret("unb", ret);
352 }
353
354 return 0;
355}
356
357/**
Simon Glass73708252023-01-17 10:48:00 -0700358 * label_to_uclass() - Convert a label to a uclass and sequence number
359 *
360 * @label: Label to look up (e.g. "mmc1" or "mmc0")
361 * @seqp: Returns the sequence number, or -1 if none
Simon Glasse22fe922023-01-17 10:48:05 -0700362 * @method_flagsp: If non-NULL, returns any flags implied by the label
363 * (enum bootflow_meth_flags_t), 0 if none
Simon Glass73708252023-01-17 10:48:00 -0700364 * Returns: sequence number on success, else -ve error code
365 */
Simon Glasse22fe922023-01-17 10:48:05 -0700366static int label_to_uclass(const char *label, int *seqp, int *method_flagsp)
Simon Glass73708252023-01-17 10:48:00 -0700367{
Simon Glasse22fe922023-01-17 10:48:05 -0700368 int seq, len, method_flags;
Simon Glass73708252023-01-17 10:48:00 -0700369 enum uclass_id id;
370 const char *end;
Simon Glass73708252023-01-17 10:48:00 -0700371
Simon Glasse22fe922023-01-17 10:48:05 -0700372 method_flags = 0;
Simon Glass73708252023-01-17 10:48:00 -0700373 seq = trailing_strtoln_end(label, NULL, &end);
374 len = end - label;
375 if (!len)
376 return -EINVAL;
377 id = uclass_get_by_namelen(label, len);
378 log_debug("find %s: seq=%d, id=%d/%s\n", label, seq, id,
379 uclass_get_name(id));
380 if (id == UCLASS_INVALID) {
Simon Glass215be682023-01-17 10:48:03 -0700381 /* try some special cases */
382 if (IS_ENABLED(CONFIG_BOOTDEV_SPI_FLASH) &&
383 !strncmp("spi", label, len)) {
384 id = UCLASS_SPI_FLASH;
Simon Glasse22fe922023-01-17 10:48:05 -0700385 } else if (IS_ENABLED(CONFIG_BOOTDEV_ETH) &&
386 !strncmp("pxe", label, len)) {
387 id = UCLASS_ETH;
388 method_flags |= BOOTFLOW_METHF_PXE_ONLY;
389 } else if (IS_ENABLED(CONFIG_BOOTDEV_ETH) &&
390 !strncmp("dhcp", label, len)) {
391 id = UCLASS_ETH;
392 method_flags |= BOOTFLOW_METHF_DHCP_ONLY;
Simon Glass215be682023-01-17 10:48:03 -0700393 } else {
394 log_warning("Unknown uclass '%s' in label\n", label);
395 return -EINVAL;
396 }
Simon Glass73708252023-01-17 10:48:00 -0700397 }
398 if (id == UCLASS_USB)
399 id = UCLASS_MASS_STORAGE;
400 *seqp = seq;
Simon Glasse22fe922023-01-17 10:48:05 -0700401 if (method_flagsp)
402 *method_flagsp = method_flags;
Simon Glass73708252023-01-17 10:48:00 -0700403
404 return id;
405}
406
Simon Glasse22fe922023-01-17 10:48:05 -0700407int bootdev_find_by_label(const char *label, struct udevice **devp,
408 int *method_flagsp)
Simon Glass017656e2022-04-24 23:31:07 -0600409{
Simon Glasse22fe922023-01-17 10:48:05 -0700410 int seq, ret, method_flags = 0;
Simon Glass017656e2022-04-24 23:31:07 -0600411 struct udevice *media;
412 struct uclass *uc;
413 enum uclass_id id;
Simon Glass017656e2022-04-24 23:31:07 -0600414
Simon Glasse22fe922023-01-17 10:48:05 -0700415 ret = label_to_uclass(label, &seq, &method_flags);
Simon Glass73708252023-01-17 10:48:00 -0700416 if (ret < 0)
417 return log_msg_ret("uc", ret);
418 id = ret;
Simon Glass017656e2022-04-24 23:31:07 -0600419
420 /* Iterate through devices in the media uclass (e.g. UCLASS_MMC) */
421 uclass_id_foreach_dev(id, media, uc) {
422 struct udevice *bdev, *blk;
423 int ret;
424
425 /* if there is no seq, match anything */
426 if (seq != -1 && dev_seq(media) != seq) {
427 log_debug("- skip, media seq=%d\n", dev_seq(media));
428 continue;
429 }
430
431 ret = device_find_first_child_by_uclass(media, UCLASS_BOOTDEV,
432 &bdev);
433 if (ret) {
434 log_debug("- looking via blk, seq=%d, id=%d\n", seq,
435 id);
436 ret = blk_find_device(id, seq, &blk);
437 if (!ret) {
438 log_debug("- get from blk %s\n", blk->name);
439 ret = bootdev_get_from_blk(blk, &bdev);
440 }
441 }
442 if (!ret) {
443 log_debug("- found %s\n", bdev->name);
444 *devp = bdev;
Simon Glassde567b12023-01-17 10:48:09 -0700445
446 /*
447 * if no sequence number was provided, we must scan all
448 * bootdevs for this media uclass
449 */
450 if (IS_ENABLED(CONFIG_BOOTSTD_FULL) && seq == -1)
451 method_flags |= BOOTFLOW_METHF_SINGLE_UCLASS;
Simon Glasse22fe922023-01-17 10:48:05 -0700452 if (method_flagsp)
453 *method_flagsp = method_flags;
Simon Glass017656e2022-04-24 23:31:07 -0600454 return 0;
455 }
456 log_debug("- no device in %s\n", media->name);
457 }
458 log_warning("Unknown seq %d for label '%s'\n", seq, label);
459
460 return -ENOENT;
461}
462
Simon Glasse22fe922023-01-17 10:48:05 -0700463int bootdev_find_by_any(const char *name, struct udevice **devp,
464 int *method_flagsp)
Simon Glass017656e2022-04-24 23:31:07 -0600465{
466 struct udevice *dev;
Simon Glasse22fe922023-01-17 10:48:05 -0700467 int method_flags = 0;
Simon Glassde567b12023-01-17 10:48:09 -0700468 int ret = -ENODEV, seq;
Simon Glass017656e2022-04-24 23:31:07 -0600469 char *endp;
470
471 seq = simple_strtol(name, &endp, 16);
472
473 /* Select by name, label or number */
474 if (*endp) {
475 ret = uclass_get_device_by_name(UCLASS_BOOTDEV, name, &dev);
476 if (ret == -ENODEV) {
Simon Glasse22fe922023-01-17 10:48:05 -0700477 ret = bootdev_find_by_label(name, &dev, &method_flags);
Simon Glass017656e2022-04-24 23:31:07 -0600478 if (ret) {
479 printf("Cannot find bootdev '%s' (err=%d)\n",
480 name, ret);
Simon Glasse22fe922023-01-17 10:48:05 -0700481 return log_msg_ret("lab", ret);
Simon Glass017656e2022-04-24 23:31:07 -0600482 }
483 ret = device_probe(dev);
484 }
485 if (ret) {
486 printf("Cannot probe bootdev '%s' (err=%d)\n", name,
487 ret);
Simon Glasse22fe922023-01-17 10:48:05 -0700488 return log_msg_ret("pro", ret);
Simon Glass017656e2022-04-24 23:31:07 -0600489 }
Simon Glassde567b12023-01-17 10:48:09 -0700490 } else if (IS_ENABLED(CONFIG_BOOTSTD_FULL)) {
Simon Glass017656e2022-04-24 23:31:07 -0600491 ret = uclass_get_device_by_seq(UCLASS_BOOTDEV, seq, &dev);
Simon Glassde567b12023-01-17 10:48:09 -0700492 method_flags |= BOOTFLOW_METHF_SINGLE_DEV;
Simon Glass017656e2022-04-24 23:31:07 -0600493 }
494 if (ret) {
495 printf("Cannot find '%s' (err=%d)\n", name, ret);
496 return ret;
497 }
498
499 *devp = dev;
Simon Glasse22fe922023-01-17 10:48:05 -0700500 if (method_flagsp)
501 *method_flagsp = method_flags;
Simon Glass017656e2022-04-24 23:31:07 -0600502
503 return 0;
504}
505
Simon Glassde567b12023-01-17 10:48:09 -0700506int bootdev_hunt_and_find_by_label(const char *label, struct udevice **devp,
507 int *method_flagsp)
508{
509 int ret;
510
511 ret = bootdev_hunt(label, false);
512 if (ret)
513 return log_msg_ret("scn", ret);
514 ret = bootdev_find_by_label(label, devp, method_flagsp);
515 if (ret)
516 return log_msg_ret("fnd", ret);
517
518 return 0;
519}
520
Simon Glassd6e39d12023-01-17 10:47:26 -0700521static int default_get_bootflow(struct udevice *dev, struct bootflow_iter *iter,
522 struct bootflow *bflow)
523{
524 struct udevice *blk;
525 int ret;
526
527 ret = bootdev_get_sibling_blk(dev, &blk);
528 /*
529 * If there is no media, indicate that no more partitions should be
530 * checked
531 */
532 if (ret == -EOPNOTSUPP)
533 ret = -ESHUTDOWN;
534 if (ret)
535 return log_msg_ret("blk", ret);
536 assert(blk);
537 ret = bootdev_find_in_blk(dev, blk, iter, bflow);
538 if (ret)
539 return log_msg_ret("find", ret);
540
541 return 0;
542}
543
Simon Glass017656e2022-04-24 23:31:07 -0600544int bootdev_get_bootflow(struct udevice *dev, struct bootflow_iter *iter,
545 struct bootflow *bflow)
546{
547 const struct bootdev_ops *ops = bootdev_get_ops(dev);
548
Simon Glass33063462023-01-17 10:48:18 -0700549 log_debug("->get_bootflow %s=%p\n", dev->name, ops->get_bootflow);
Simon Glass00501fc2022-10-20 18:22:51 -0600550 bootflow_init(bflow, dev, iter->method);
Simon Glassd6e39d12023-01-17 10:47:26 -0700551 if (!ops->get_bootflow)
552 return default_get_bootflow(dev, iter, bflow);
Simon Glass017656e2022-04-24 23:31:07 -0600553
554 return ops->get_bootflow(dev, iter, bflow);
555}
556
557void bootdev_clear_bootflows(struct udevice *dev)
558{
559 struct bootdev_uc_plat *ucp = dev_get_uclass_plat(dev);
560
561 while (!list_empty(&ucp->bootflow_head)) {
562 struct bootflow *bflow;
563
564 bflow = list_first_entry(&ucp->bootflow_head, struct bootflow,
565 bm_node);
Simon Glass03fcbf92022-04-24 23:31:09 -0600566 bootflow_remove(bflow);
Simon Glass017656e2022-04-24 23:31:07 -0600567 }
568}
569
Simon Glassac06b26a2023-01-17 10:48:10 -0700570int bootdev_next_label(struct bootflow_iter *iter, struct udevice **devp,
571 int *method_flagsp)
572{
573 struct udevice *dev;
574
575 log_debug("next\n");
576 for (dev = NULL; !dev && iter->labels[++iter->cur_label];) {
577 log_debug("Scanning: %s\n", iter->labels[iter->cur_label]);
578 bootdev_hunt_and_find_by_label(iter->labels[iter->cur_label],
579 &dev, method_flagsp);
580 }
581
582 if (!dev)
583 return log_msg_ret("fin", -ENODEV);
584 *devp = dev;
585
586 return 0;
587}
588
Simon Glass660a9952023-01-17 10:48:11 -0700589int bootdev_next_prio(struct bootflow_iter *iter, struct udevice **devp)
590{
591 struct udevice *dev = *devp;
592 bool found;
593 int ret;
594
595 /* find the next device with this priority */
596 *devp = NULL;
597 log_debug("next prio %d: dev=%p/%s\n", iter->cur_prio, dev,
598 dev ? dev->name : "none");
599 do {
600 /*
601 * Don't probe devices here since they may not be of the
602 * required priority
603 */
604 if (!dev)
605 uclass_find_first_device(UCLASS_BOOTDEV, &dev);
606 else
607 uclass_find_next_device(&dev);
608 found = false;
609
610 /* scan for the next device with the correct priority */
611 while (dev) {
612 struct bootdev_uc_plat *plat;
613
614 plat = dev_get_uclass_plat(dev);
615 log_debug("- %s: %d, want %d\n", dev->name, plat->prio,
616 iter->cur_prio);
617 if (plat->prio == iter->cur_prio)
618 break;
619 uclass_find_next_device(&dev);
620 }
621
622 /* none found for this priority, so move to the next */
623 if (!dev) {
624 log_debug("None found at prio %d, moving to %d\n",
625 iter->cur_prio, iter->cur_prio + 1);
626 if (++iter->cur_prio == BOOTDEVP_COUNT)
627 return log_msg_ret("fin", -ENODEV);
628
629 if (iter->flags & BOOTFLOWF_HUNT) {
630 /* hunt to find new bootdevs */
631 ret = bootdev_hunt_prio(iter->cur_prio,
632 iter->flags &
633 BOOTFLOWF_SHOW);
634 log_debug("- hunt ret %d\n", ret);
635 if (ret)
636 return log_msg_ret("hun", ret);
637 }
638 } else {
639 ret = device_probe(dev);
640 if (ret) {
641 log_debug("Device '%s' failed to probe\n",
642 dev->name);
643 dev = NULL;
644 }
645 }
646 } while (!dev);
647
648 *devp = dev;
649
650 return 0;
651}
652
Simon Glassba3d5372023-01-17 10:48:15 -0700653int bootdev_setup_iter(struct bootflow_iter *iter, const char *label,
654 struct udevice **devp, int *method_flagsp)
Simon Glass017656e2022-04-24 23:31:07 -0600655{
Simon Glassba3d5372023-01-17 10:48:15 -0700656 struct udevice *bootstd, *dev = NULL;
Simon Glass7e1f6a42023-01-17 10:48:08 -0700657 bool show = iter->flags & BOOTFLOWF_SHOW;
Simon Glass484e4072023-01-17 10:48:14 -0700658 int method_flags;
Simon Glass017656e2022-04-24 23:31:07 -0600659 int ret;
660
661 ret = uclass_first_device_err(UCLASS_BOOTSTD, &bootstd);
662 if (ret) {
663 log_err("Missing bootstd device\n");
664 return log_msg_ret("std", ret);
665 }
666
Simon Glass7e1f6a42023-01-17 10:48:08 -0700667 /* hunt for any pre-scan devices */
668 if (iter->flags & BOOTFLOWF_HUNT) {
669 ret = bootdev_hunt_prio(BOOTDEVP_1_PRE_SCAN, show);
670 if (ret)
671 return log_msg_ret("pre", ret);
672 }
673
Simon Glass017656e2022-04-24 23:31:07 -0600674 /* Handle scanning a single device */
Simon Glassba3d5372023-01-17 10:48:15 -0700675 if (IS_ENABLED(CONFIG_BOOTSTD_FULL) && label) {
676 if (iter->flags & BOOTFLOWF_HUNT) {
677 ret = bootdev_hunt(label, show);
678 if (ret)
679 return log_msg_ret("hun", ret);
680 }
681 ret = bootdev_find_by_any(label, &dev, &method_flags);
682 if (ret)
683 return log_msg_ret("lab", ret);
684
685 log_debug("method_flags: %x\n", method_flags);
686 if (method_flags & BOOTFLOW_METHF_SINGLE_UCLASS)
687 iter->flags |= BOOTFLOWF_SINGLE_UCLASS;
688 else if (method_flags & BOOTFLOW_METHF_SINGLE_DEV)
689 iter->flags |= BOOTFLOWF_SINGLE_DEV;
690 else
691 iter->flags |= BOOTFLOWF_SINGLE_MEDIA;
692 log_debug("Selected label: %s, flags %x\n", label, iter->flags);
Simon Glass484e4072023-01-17 10:48:14 -0700693 } else {
694 bool ok;
Simon Glass017656e2022-04-24 23:31:07 -0600695
Simon Glass484e4072023-01-17 10:48:14 -0700696 /* This either returns a non-empty list or NULL */
697 iter->labels = bootstd_get_bootdev_order(bootstd, &ok);
698 if (!ok)
699 return log_msg_ret("ord", -ENOMEM);
700 log_debug("setup labels %p\n", iter->labels);
701 if (iter->labels) {
702 iter->cur_label = -1;
703 ret = bootdev_next_label(iter, &dev, &method_flags);
704 } else {
705 ret = bootdev_next_prio(iter, &dev);
706 method_flags = 0;
707 }
708 if (!dev)
709 return log_msg_ret("fin", -ENOENT);
710 log_debug("Selected bootdev: %s\n", dev->name);
Simon Glass017656e2022-04-24 23:31:07 -0600711 }
712
Simon Glass017656e2022-04-24 23:31:07 -0600713 ret = device_probe(dev);
714 if (ret)
715 return log_msg_ret("probe", ret);
Simon Glass484e4072023-01-17 10:48:14 -0700716 if (method_flagsp)
717 *method_flagsp = method_flags;
Simon Glass017656e2022-04-24 23:31:07 -0600718 *devp = dev;
719
720 return 0;
721}
722
Simon Glass1248d2b2023-01-17 10:47:34 -0700723static int bootdev_hunt_drv(struct bootdev_hunter *info, uint seq, bool show)
724{
725 const char *name = uclass_get_name(info->uclass);
726 struct bootstd_priv *std;
727 int ret;
728
729 ret = bootstd_get_priv(&std);
730 if (ret)
731 return log_msg_ret("std", ret);
732
733 if (!(std->hunters_used & BIT(seq))) {
734 if (show)
735 printf("Hunting with: %s\n",
736 uclass_get_name(info->uclass));
737 log_debug("Hunting with: %s\n", name);
738 if (info->hunt) {
739 ret = info->hunt(info, show);
740 if (ret)
741 return ret;
742 }
743 std->hunters_used |= BIT(seq);
744 }
745
746 return 0;
747}
748
749int bootdev_hunt(const char *spec, bool show)
750{
751 struct bootdev_hunter *start;
752 const char *end;
753 int n_ent, i;
754 int result;
755 size_t len;
756
757 start = ll_entry_start(struct bootdev_hunter, bootdev_hunter);
758 n_ent = ll_entry_count(struct bootdev_hunter, bootdev_hunter);
759 result = 0;
760
761 len = SIZE_MAX;
762 if (spec) {
763 trailing_strtoln_end(spec, NULL, &end);
764 len = end - spec;
765 }
766
767 for (i = 0; i < n_ent; i++) {
768 struct bootdev_hunter *info = start + i;
769 const char *name = uclass_get_name(info->uclass);
770 int ret;
771
772 log_debug("looking at %.*s for %s\n",
773 (int)max(strlen(name), len), spec, name);
Simon Glassac06b26a2023-01-17 10:48:10 -0700774 if (spec && strncmp(spec, name, max(strlen(name), len))) {
775 if (info->uclass != UCLASS_ETH ||
776 (strcmp("dhcp", spec) && strcmp("pxe", spec)))
777 continue;
778 }
Simon Glass1248d2b2023-01-17 10:47:34 -0700779 ret = bootdev_hunt_drv(info, i, show);
780 if (ret)
781 result = ret;
782 }
783
784 return result;
785}
786
Simon Glass3e9f6be2023-01-17 10:48:07 -0700787int bootdev_hunt_prio(enum bootdev_prio_t prio, bool show)
788{
789 struct bootdev_hunter *start;
790 int n_ent, i;
791 int result;
792
793 start = ll_entry_start(struct bootdev_hunter, bootdev_hunter);
794 n_ent = ll_entry_count(struct bootdev_hunter, bootdev_hunter);
795 result = 0;
796
797 log_debug("Hunting for priority %d\n", prio);
798 for (i = 0; i < n_ent; i++) {
799 struct bootdev_hunter *info = start + i;
800 int ret;
801
802 if (prio != info->prio)
803 continue;
804 ret = bootdev_hunt_drv(info, i, show);
805 if (ret && ret != -ENOENT)
806 result = ret;
807 }
808
809 return result;
810}
811
Simon Glass5acb97a2023-01-17 10:47:33 -0700812void bootdev_list_hunters(struct bootstd_priv *std)
813{
814 struct bootdev_hunter *orig, *start;
815 int n_ent, i;
816
817 orig = ll_entry_start(struct bootdev_hunter, bootdev_hunter);
818 n_ent = ll_entry_count(struct bootdev_hunter, bootdev_hunter);
819
820 /*
821 * workaround for strange bug in clang-12 which sees all the below data
822 * as zeroes. Any access of start seems to fix it, such as
823 *
824 * printf("%p", start);
825 *
826 * Use memcpy() to force the correct behaviour.
827 */
828 memcpy(&start, &orig, sizeof(orig));
829 printf("%4s %4s %-15s %s\n", "Prio", "Used", "Uclass", "Hunter");
830 printf("%4s %4s %-15s %s\n", "----", "----", "---------------", "---------------");
831 for (i = 0; i < n_ent; i++) {
832 struct bootdev_hunter *info = start + i;
833
834 printf("%4d %4s %-15s %s\n", info->prio,
835 std->hunters_used & BIT(i) ? "*" : "",
836 uclass_get_name(info->uclass),
837 info->drv ? info->drv->name : "(none)");
838 }
839
840 printf("(total hunters: %d)\n", n_ent);
841}
842
Simon Glass017656e2022-04-24 23:31:07 -0600843static int bootdev_post_bind(struct udevice *dev)
844{
845 struct bootdev_uc_plat *ucp = dev_get_uclass_plat(dev);
846
847 INIT_LIST_HEAD(&ucp->bootflow_head);
848
849 return 0;
850}
851
852static int bootdev_pre_unbind(struct udevice *dev)
853{
854 bootdev_clear_bootflows(dev);
855
856 return 0;
857}
858
859UCLASS_DRIVER(bootdev) = {
860 .id = UCLASS_BOOTDEV,
861 .name = "bootdev",
862 .flags = DM_UC_FLAG_SEQ_ALIAS,
863 .per_device_plat_auto = sizeof(struct bootdev_uc_plat),
864 .post_bind = bootdev_post_bind,
865 .pre_unbind = bootdev_pre_unbind,
866};