blob: f43307d006dbad2716d1857c2d8eabea94805517 [file] [log] [blame]
Simon Glass201417d2022-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 Glassa8f5be12022-04-24 23:31:09 -060013#include <bootmeth.h>
Simon Glass201417d2022-04-24 23:31:07 -060014#include <bootstd.h>
Simon Glass201417d2022-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 Glass201417d2022-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 Glasseccb25c2022-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 Glass201417d2022-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 Glassa8f5be12022-04-24 23:31:09 -0600136 ret = bootmeth_check(bflow->method, iter);
137 if (ret)
138 return log_msg_ret("check", ret);
139
Simon Glass201417d2022-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 Glassf0e358f2023-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 Glass201417d2022-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 Glassa8f5be12022-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 Glass201417d2022-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 Suchanek28a22cd2022-10-12 21:57:53 +0200205 ret = uclass_first_device_check(UCLASS_BOOTDEV, &dev);
Simon Glass201417d2022-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 Suchanek28a22cd2022-10-12 21:57:53 +0200214 ret = uclass_next_device_check(&dev);
Simon Glass201417d2022-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 Glass3a2cb96e52023-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 Glass201417d2022-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 Glass3a2cb96e52023-01-17 10:47:25 -0700261 int ret, len;
Simon Glass201417d2022-04-24 23:31:07 -0600262
Simon Glass3a2cb96e52023-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 Glass201417d2022-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 Glass201417d2022-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 Glass3a2cb96e52023-01-17 10:47:25 -0700301 len = bootdev_get_suffix_start(dev, ".bootdev");
Simon Glass201417d2022-04-24 23:31:07 -0600302 ret = device_find_child_by_namelen(parent, dev->name, len, &blk);
Simon Glass3a2cb96e52023-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 Glass201417d2022-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 Glass3a2cb96e52023-01-17 10:47:25 -0700322 int ret, len;
Simon Glass201417d2022-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 Glass3a2cb96e52023-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 Glass201417d2022-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 Glass74ebfb62023-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
362 * Returns: sequence number on success, else -ve error code
363 */
364static int label_to_uclass(const char *label, int *seqp)
365{
366 enum uclass_id id;
367 const char *end;
368 int seq, len;
369
370 seq = trailing_strtoln_end(label, NULL, &end);
371 len = end - label;
372 if (!len)
373 return -EINVAL;
374 id = uclass_get_by_namelen(label, len);
375 log_debug("find %s: seq=%d, id=%d/%s\n", label, seq, id,
376 uclass_get_name(id));
377 if (id == UCLASS_INVALID) {
378 log_warning("Unknown uclass '%s' in label\n", label);
379 return -EINVAL;
380 }
381 if (id == UCLASS_USB)
382 id = UCLASS_MASS_STORAGE;
383 *seqp = seq;
384
385 return id;
386}
387
388/**
Simon Glass201417d2022-04-24 23:31:07 -0600389 * bootdev_find_by_label() - Convert a label string to a bootdev device
390 *
391 * Looks up a label name to find the associated bootdev. For example, if the
392 * label name is "mmc2", this will find a bootdev for an mmc device whose
393 * sequence number is 2.
394 *
395 * @label: Label string to convert, e.g. "mmc2"
396 * @devp: Returns bootdev device corresponding to that boot label
397 * Return: 0 if OK, -EINVAL if the label name (e.g. "mmc") does not refer to a
398 * uclass, -ENOENT if no bootdev for that media has the sequence number
399 * (e.g. 2)
400 */
401int bootdev_find_by_label(const char *label, struct udevice **devp)
402{
403 struct udevice *media;
404 struct uclass *uc;
405 enum uclass_id id;
Simon Glass74ebfb62023-01-17 10:48:00 -0700406 int seq, ret;
Simon Glass201417d2022-04-24 23:31:07 -0600407
Simon Glass74ebfb62023-01-17 10:48:00 -0700408 ret = label_to_uclass(label, &seq);
409 if (ret < 0)
410 return log_msg_ret("uc", ret);
411 id = ret;
Simon Glass201417d2022-04-24 23:31:07 -0600412
413 /* Iterate through devices in the media uclass (e.g. UCLASS_MMC) */
414 uclass_id_foreach_dev(id, media, uc) {
415 struct udevice *bdev, *blk;
416 int ret;
417
418 /* if there is no seq, match anything */
419 if (seq != -1 && dev_seq(media) != seq) {
420 log_debug("- skip, media seq=%d\n", dev_seq(media));
421 continue;
422 }
423
424 ret = device_find_first_child_by_uclass(media, UCLASS_BOOTDEV,
425 &bdev);
426 if (ret) {
427 log_debug("- looking via blk, seq=%d, id=%d\n", seq,
428 id);
429 ret = blk_find_device(id, seq, &blk);
430 if (!ret) {
431 log_debug("- get from blk %s\n", blk->name);
432 ret = bootdev_get_from_blk(blk, &bdev);
433 }
434 }
435 if (!ret) {
436 log_debug("- found %s\n", bdev->name);
437 *devp = bdev;
438 return 0;
439 }
440 log_debug("- no device in %s\n", media->name);
441 }
442 log_warning("Unknown seq %d for label '%s'\n", seq, label);
443
444 return -ENOENT;
445}
446
447int bootdev_find_by_any(const char *name, struct udevice **devp)
448{
449 struct udevice *dev;
450 int ret, seq;
451 char *endp;
452
453 seq = simple_strtol(name, &endp, 16);
454
455 /* Select by name, label or number */
456 if (*endp) {
457 ret = uclass_get_device_by_name(UCLASS_BOOTDEV, name, &dev);
458 if (ret == -ENODEV) {
459 ret = bootdev_find_by_label(name, &dev);
460 if (ret) {
461 printf("Cannot find bootdev '%s' (err=%d)\n",
462 name, ret);
463 return ret;
464 }
465 ret = device_probe(dev);
466 }
467 if (ret) {
468 printf("Cannot probe bootdev '%s' (err=%d)\n", name,
469 ret);
470 return ret;
471 }
472 } else {
473 ret = uclass_get_device_by_seq(UCLASS_BOOTDEV, seq, &dev);
474 }
475 if (ret) {
476 printf("Cannot find '%s' (err=%d)\n", name, ret);
477 return ret;
478 }
479
480 *devp = dev;
481
482 return 0;
483}
484
Simon Glassb85fc8d2023-01-17 10:47:26 -0700485static int default_get_bootflow(struct udevice *dev, struct bootflow_iter *iter,
486 struct bootflow *bflow)
487{
488 struct udevice *blk;
489 int ret;
490
491 ret = bootdev_get_sibling_blk(dev, &blk);
492 /*
493 * If there is no media, indicate that no more partitions should be
494 * checked
495 */
496 if (ret == -EOPNOTSUPP)
497 ret = -ESHUTDOWN;
498 if (ret)
499 return log_msg_ret("blk", ret);
500 assert(blk);
501 ret = bootdev_find_in_blk(dev, blk, iter, bflow);
502 if (ret)
503 return log_msg_ret("find", ret);
504
505 return 0;
506}
507
Simon Glass201417d2022-04-24 23:31:07 -0600508int bootdev_get_bootflow(struct udevice *dev, struct bootflow_iter *iter,
509 struct bootflow *bflow)
510{
511 const struct bootdev_ops *ops = bootdev_get_ops(dev);
512
Simon Glassb190deb2022-10-20 18:22:51 -0600513 bootflow_init(bflow, dev, iter->method);
Simon Glassb85fc8d2023-01-17 10:47:26 -0700514 if (!ops->get_bootflow)
515 return default_get_bootflow(dev, iter, bflow);
Simon Glass201417d2022-04-24 23:31:07 -0600516
517 return ops->get_bootflow(dev, iter, bflow);
518}
519
520void bootdev_clear_bootflows(struct udevice *dev)
521{
522 struct bootdev_uc_plat *ucp = dev_get_uclass_plat(dev);
523
524 while (!list_empty(&ucp->bootflow_head)) {
525 struct bootflow *bflow;
526
527 bflow = list_first_entry(&ucp->bootflow_head, struct bootflow,
528 bm_node);
Simon Glassa8f5be12022-04-24 23:31:09 -0600529 bootflow_remove(bflow);
Simon Glass201417d2022-04-24 23:31:07 -0600530 }
531}
532
533/**
534 * h_cmp_bootdev() - Compare two bootdevs to find out which should go first
535 *
536 * @v1: struct udevice * of first bootdev device
537 * @v2: struct udevice * of second bootdev device
538 * Return: sort order (<0 if dev1 < dev2, ==0 if equal, >0 if dev1 > dev2)
539 */
540static int h_cmp_bootdev(const void *v1, const void *v2)
541{
542 const struct udevice *dev1 = *(struct udevice **)v1;
543 const struct udevice *dev2 = *(struct udevice **)v2;
544 const struct bootdev_uc_plat *ucp1 = dev_get_uclass_plat(dev1);
545 const struct bootdev_uc_plat *ucp2 = dev_get_uclass_plat(dev2);
546 int diff;
547
548 /* Use priority first */
549 diff = ucp1->prio - ucp2->prio;
550 if (diff)
551 return diff;
552
553 /* Fall back to seq for devices of the same priority */
554 diff = dev_seq(dev1) - dev_seq(dev2);
555
556 return diff;
557}
558
559/**
560 * build_order() - Build the ordered list of bootdevs to use
561 *
562 * This builds an ordered list of devices by one of three methods:
563 * - using the boot_targets environment variable, if non-empty
564 * - using the bootdev-order devicetree property, if present
565 * - sorted by priority and sequence number
566 *
567 * @bootstd: BOOTSTD device to use
568 * @order: Bootdevs listed in default order
569 * @max_count: Number of entries in @order
570 * Return: number of bootdevs found in the ordering, or -E2BIG if the
571 * boot_targets string is too long, or -EXDEV if the ordering produced 0 results
572 */
573static int build_order(struct udevice *bootstd, struct udevice **order,
574 int max_count)
575{
576 const char *overflow_target = NULL;
577 const char *const *labels;
578 struct udevice *dev;
Simon Glass201417d2022-04-24 23:31:07 -0600579 int i, ret, count;
Simon Glass6a6638f2023-01-17 10:47:15 -0700580 bool ok;
Simon Glass201417d2022-04-24 23:31:07 -0600581
Simon Glass6a6638f2023-01-17 10:47:15 -0700582 labels = bootstd_get_bootdev_order(bootstd, &ok);
583 if (!ok)
584 return log_msg_ret("ord", -ENOMEM);
585 if (labels) {
Simon Glass201417d2022-04-24 23:31:07 -0600586 int upto;
587
588 upto = 0;
589 for (i = 0; labels[i]; i++) {
590 ret = bootdev_find_by_label(labels[i], &dev);
591 if (!ret) {
592 if (upto == max_count) {
593 overflow_target = labels[i];
594 break;
595 }
596 order[upto++] = dev;
597 }
598 }
599 count = upto;
600 } else {
601 /* sort them into priority order */
602 count = max_count;
603 qsort(order, count, sizeof(struct udevice *), h_cmp_bootdev);
604 }
605
606 if (overflow_target) {
607 log_warning("Expected at most %d bootdevs, but overflowed with boot_target '%s'\n",
608 max_count, overflow_target);
609 }
610
611 if (!count)
612 return log_msg_ret("targ", -EXDEV);
613
614 return count;
615}
616
617int bootdev_setup_iter_order(struct bootflow_iter *iter, struct udevice **devp)
618{
619 struct udevice *bootstd, *dev = *devp, **order;
Simon Glasscb698b02023-01-17 10:47:16 -0700620 struct uclass *uc;
621 int count, upto;
Simon Glass201417d2022-04-24 23:31:07 -0600622 int ret;
623
624 ret = uclass_first_device_err(UCLASS_BOOTSTD, &bootstd);
625 if (ret) {
626 log_err("Missing bootstd device\n");
627 return log_msg_ret("std", ret);
628 }
629
630 /* Handle scanning a single device */
631 if (dev) {
632 iter->flags |= BOOTFLOWF_SINGLE_DEV;
633 return 0;
634 }
635
636 count = uclass_id_count(UCLASS_BOOTDEV);
637 if (!count)
638 return log_msg_ret("count", -ENOENT);
639
640 order = calloc(count, sizeof(struct udevice *));
641 if (!order)
642 return log_msg_ret("order", -ENOMEM);
643
Simon Glasscb698b02023-01-17 10:47:16 -0700644 /* Get the list of bootdevs */
645 uclass_id_foreach_dev(UCLASS_BOOTDEV, dev, uc)
646 order[upto++] = dev;
Simon Glass201417d2022-04-24 23:31:07 -0600647 log_debug("Found %d bootdevs\n", count);
648 if (upto != count)
649 log_debug("Expected %d bootdevs, found %d using aliases\n",
650 count, upto);
651
Simon Glassa18686c2022-07-30 15:52:20 -0600652 ret = build_order(bootstd, order, upto);
653 if (ret < 0) {
Simon Glass201417d2022-04-24 23:31:07 -0600654 free(order);
Simon Glassa18686c2022-07-30 15:52:20 -0600655 return log_msg_ret("build", ret);
Simon Glass201417d2022-04-24 23:31:07 -0600656 }
657
Simon Glassa18686c2022-07-30 15:52:20 -0600658 iter->num_devs = ret;
Simon Glass201417d2022-04-24 23:31:07 -0600659 iter->dev_order = order;
Simon Glass201417d2022-04-24 23:31:07 -0600660 iter->cur_dev = 0;
661
662 dev = *order;
663 ret = device_probe(dev);
664 if (ret)
665 return log_msg_ret("probe", ret);
666 *devp = dev;
667
668 return 0;
669}
670
Simon Glassc7b63d52023-01-17 10:47:34 -0700671static int bootdev_hunt_drv(struct bootdev_hunter *info, uint seq, bool show)
672{
673 const char *name = uclass_get_name(info->uclass);
674 struct bootstd_priv *std;
675 int ret;
676
677 ret = bootstd_get_priv(&std);
678 if (ret)
679 return log_msg_ret("std", ret);
680
681 if (!(std->hunters_used & BIT(seq))) {
682 if (show)
683 printf("Hunting with: %s\n",
684 uclass_get_name(info->uclass));
685 log_debug("Hunting with: %s\n", name);
686 if (info->hunt) {
687 ret = info->hunt(info, show);
688 if (ret)
689 return ret;
690 }
691 std->hunters_used |= BIT(seq);
692 }
693
694 return 0;
695}
696
697int bootdev_hunt(const char *spec, bool show)
698{
699 struct bootdev_hunter *start;
700 const char *end;
701 int n_ent, i;
702 int result;
703 size_t len;
704
705 start = ll_entry_start(struct bootdev_hunter, bootdev_hunter);
706 n_ent = ll_entry_count(struct bootdev_hunter, bootdev_hunter);
707 result = 0;
708
709 len = SIZE_MAX;
710 if (spec) {
711 trailing_strtoln_end(spec, NULL, &end);
712 len = end - spec;
713 }
714
715 for (i = 0; i < n_ent; i++) {
716 struct bootdev_hunter *info = start + i;
717 const char *name = uclass_get_name(info->uclass);
718 int ret;
719
720 log_debug("looking at %.*s for %s\n",
721 (int)max(strlen(name), len), spec, name);
722 if (spec && strncmp(spec, name, max(strlen(name), len)))
723 continue;
724 ret = bootdev_hunt_drv(info, i, show);
725 if (ret)
726 result = ret;
727 }
728
729 return result;
730}
731
Simon Glassbd90b092023-01-17 10:47:33 -0700732void bootdev_list_hunters(struct bootstd_priv *std)
733{
734 struct bootdev_hunter *orig, *start;
735 int n_ent, i;
736
737 orig = ll_entry_start(struct bootdev_hunter, bootdev_hunter);
738 n_ent = ll_entry_count(struct bootdev_hunter, bootdev_hunter);
739
740 /*
741 * workaround for strange bug in clang-12 which sees all the below data
742 * as zeroes. Any access of start seems to fix it, such as
743 *
744 * printf("%p", start);
745 *
746 * Use memcpy() to force the correct behaviour.
747 */
748 memcpy(&start, &orig, sizeof(orig));
749 printf("%4s %4s %-15s %s\n", "Prio", "Used", "Uclass", "Hunter");
750 printf("%4s %4s %-15s %s\n", "----", "----", "---------------", "---------------");
751 for (i = 0; i < n_ent; i++) {
752 struct bootdev_hunter *info = start + i;
753
754 printf("%4d %4s %-15s %s\n", info->prio,
755 std->hunters_used & BIT(i) ? "*" : "",
756 uclass_get_name(info->uclass),
757 info->drv ? info->drv->name : "(none)");
758 }
759
760 printf("(total hunters: %d)\n", n_ent);
761}
762
Simon Glass201417d2022-04-24 23:31:07 -0600763static int bootdev_post_bind(struct udevice *dev)
764{
765 struct bootdev_uc_plat *ucp = dev_get_uclass_plat(dev);
766
767 INIT_LIST_HEAD(&ucp->bootflow_head);
768
769 return 0;
770}
771
772static int bootdev_pre_unbind(struct udevice *dev)
773{
774 bootdev_clear_bootflows(dev);
775
776 return 0;
777}
778
779UCLASS_DRIVER(bootdev) = {
780 .id = UCLASS_BOOTDEV,
781 .name = "bootdev",
782 .flags = DM_UC_FLAG_SEQ_ALIAS,
783 .per_device_plat_auto = sizeof(struct bootdev_uc_plat),
784 .post_bind = bootdev_post_bind,
785 .pre_unbind = bootdev_pre_unbind,
786};