1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2021 Google LLC
7 #define LOG_CATEGORY UCLASS_BOOTSTD
16 #include <dm/device-internal.h>
17 #include <dm/uclass-internal.h>
19 /* error codes used to signal running out of things */
21 BF_NO_MORE_PARTS = -ESHUTDOWN,
22 BF_NO_MORE_DEVICES = -ENODEV,
26 * bootflow_state - name for each state
28 * See enum bootflow_state_t for what each of these means
30 static const char *const bootflow_state[BOOTFLOWST_COUNT] = {
39 const char *bootflow_state_get_name(enum bootflow_state_t state)
41 /* This doesn't need to be a useful name, since it will never occur */
42 if (state < 0 || state >= BOOTFLOWST_COUNT)
45 return bootflow_state[state];
48 int bootflow_first_glob(struct bootflow **bflowp)
50 struct bootstd_priv *std;
53 ret = bootstd_get_priv(&std);
57 if (list_empty(&std->glob_head))
60 *bflowp = list_first_entry(&std->glob_head, struct bootflow,
66 int bootflow_next_glob(struct bootflow **bflowp)
68 struct bootstd_priv *std;
69 struct bootflow *bflow = *bflowp;
72 ret = bootstd_get_priv(&std);
78 if (list_is_last(&bflow->glob_node, &std->glob_head))
81 *bflowp = list_entry(bflow->glob_node.next, struct bootflow, glob_node);
86 void bootflow_iter_init(struct bootflow_iter *iter, int flags)
88 memset(iter, '\0', sizeof(*iter));
89 iter->first_glob_method = -1;
92 /* remember the first bootdevs we see */
93 iter->max_devs = BOOTFLOW_MAX_USED_DEVS;
96 void bootflow_iter_uninit(struct bootflow_iter *iter)
98 free(iter->method_order);
101 int bootflow_iter_drop_bootmeth(struct bootflow_iter *iter,
102 const struct udevice *bmeth)
104 /* We only support disabling the current bootmeth */
105 if (bmeth != iter->method || iter->cur_method >= iter->num_methods ||
106 iter->method_order[iter->cur_method] != bmeth)
109 memmove(&iter->method_order[iter->cur_method],
110 &iter->method_order[iter->cur_method + 1],
111 (iter->num_methods - iter->cur_method - 1) * sizeof(void *));
119 * bootflow_iter_set_dev() - switch to the next bootdev when iterating
121 * This sets iter->dev, records the device in the dev_used[] list and shows a
122 * message if required
124 * @iter: Iterator to update
125 * @dev: Bootdev to use, or NULL if there are no more
127 static void bootflow_iter_set_dev(struct bootflow_iter *iter,
128 struct udevice *dev, int method_flags)
130 struct bootmeth_uc_plat *ucp = dev_get_uclass_plat(iter->method);
132 log_debug("iter: Setting dev to %s, flags %x\n",
133 dev ? dev->name : "(none)", method_flags);
135 iter->method_flags = method_flags;
137 if (IS_ENABLED(CONFIG_BOOTSTD_FULL)) {
138 /* record the device for later */
139 if (dev && iter->num_devs < iter->max_devs)
140 iter->dev_used[iter->num_devs++] = dev;
142 if ((iter->flags & (BOOTFLOWF_SHOW | BOOTFLOWF_SINGLE_DEV)) ==
145 printf("Scanning bootdev '%s':\n", dev->name);
146 else if (IS_ENABLED(CONFIG_BOOTMETH_GLOBAL) &&
147 ucp->flags & BOOTMETHF_GLOBAL)
148 printf("Scanning global bootmeth '%s':\n",
151 printf("No more bootdevs\n");
157 * iter_incr() - Move to the next item (method, part, bootdev)
159 * Return: 0 if OK, BF_NO_MORE_DEVICES if there are no more bootdevs
161 static int iter_incr(struct bootflow_iter *iter)
168 log_debug("entry: err=%d\n", iter->err);
169 global = iter->doing_global;
171 if (iter->err == BF_NO_MORE_DEVICES)
172 return BF_NO_MORE_DEVICES;
174 if (iter->err != BF_NO_MORE_PARTS) {
175 /* Get the next boothmethod */
176 if (++iter->cur_method < iter->num_methods) {
177 iter->method = iter->method_order[iter->cur_method];
182 * If we have finished scanning the global bootmeths, start the
183 * normal bootdev scan
185 if (IS_ENABLED(CONFIG_BOOTMETH_GLOBAL) && global) {
186 iter->num_methods = iter->first_glob_method;
187 iter->doing_global = false;
190 * Don't move to the next dev as we haven't tried this
197 /* No more bootmeths; start at the first one, and... */
198 iter->cur_method = 0;
199 iter->method = iter->method_order[iter->cur_method];
201 if (iter->err != BF_NO_MORE_PARTS) {
202 /* ...select next partition */
203 if (++iter->part <= iter->max_part)
207 /* No more partitions; start at the first one and... */
211 * Note: as far as we know, there is no partition table on the next
212 * bootdev, so set max_part to 0 until we discover otherwise. See
213 * bootdev_find_in_blk() for where this is set.
217 /* ...select next bootdev */
218 if (iter->flags & BOOTFLOWF_SINGLE_DEV) {
225 log_debug("inc_dev=%d\n", inc_dev);
227 ret = bootdev_setup_iter(iter, NULL, &dev,
229 } else if (IS_ENABLED(CONFIG_BOOTSTD_FULL) &&
230 (iter->flags & BOOTFLOWF_SINGLE_UCLASS)) {
231 /* Move to the next bootdev in this uclass */
232 uclass_find_next_device(&dev);
234 log_debug("finished uclass %s\n",
235 dev_get_uclass_name(dev));
238 } else if (IS_ENABLED(CONFIG_BOOTSTD_FULL) &&
239 iter->flags & BOOTFLOWF_SINGLE_MEDIA) {
240 log_debug("next in single\n");
244 * Move to the next bootdev child of this media
245 * device. This ensures that we cover all the
246 * available SCSI IDs and LUNs.
248 device_find_next_child(&dev);
249 log_debug("- next %s\n",
250 dev ? dev->name : "(none)");
251 } while (dev && device_get_uclass_id(dev) !=
254 log_debug("finished uclass %s\n",
255 dev_get_uclass_name(dev));
259 log_debug("labels %p\n", iter->labels);
261 ret = bootdev_next_label(iter, &dev,
264 ret = bootdev_next_prio(iter, &dev);
268 log_debug("ret=%d, dev=%p %s\n", ret, dev,
269 dev ? dev->name : "none");
271 bootflow_iter_set_dev(iter, NULL, 0);
274 * Probe the bootdev. This does not probe any attached
275 * block device, since they are siblings
277 ret = device_probe(dev);
278 log_debug("probe %s %d\n", dev->name, ret);
279 if (!log_msg_ret("probe", ret))
280 bootflow_iter_set_dev(iter, dev, method_flags);
284 /* if there are no more bootdevs, give up */
286 return log_msg_ret("incr", BF_NO_MORE_DEVICES);
292 * bootflow_check() - Check if a bootflow can be obtained
294 * @iter: Provides part, bootmeth to use
295 * @bflow: Bootflow to update on success
296 * Return: 0 if OK, -ENOSYS if there is no bootflow support on this device,
297 * BF_NO_MORE_PARTS if there are no more partitions on bootdev
299 static int bootflow_check(struct bootflow_iter *iter, struct bootflow *bflow)
304 if (IS_ENABLED(CONFIG_BOOTMETH_GLOBAL) && iter->doing_global) {
305 bootflow_iter_set_dev(iter, NULL, 0);
306 ret = bootmeth_get_bootflow(iter->method, bflow);
308 return log_msg_ret("glob", ret);
314 ret = bootdev_get_bootflow(dev, iter, bflow);
316 /* If we got a valid bootflow, return it */
318 log_debug("Bootdevice '%s' part %d method '%s': Found bootflow\n",
319 dev->name, iter->part, iter->method->name);
323 /* Unless there is nothing more to try, move to the next device */
324 else if (ret != BF_NO_MORE_PARTS && ret != -ENOSYS) {
325 log_debug("Bootdevice '%s' part %d method '%s': Error %d\n",
326 dev->name, iter->part, iter->method->name, ret);
328 * For 'all' we return all bootflows, even
331 if (iter->flags & BOOTFLOWF_ALL)
332 return log_msg_ret("all", ret);
335 return log_msg_ret("check", ret);
340 int bootflow_scan_first(struct udevice *dev, const char *label,
341 struct bootflow_iter *iter, int flags,
342 struct bootflow *bflow)
347 flags |= BOOTFLOWF_SKIP_GLOBAL;
348 bootflow_iter_init(iter, flags);
351 * Set up the ordering of bootmeths. This sets iter->doing_global and
352 * iter->first_glob_method if we are starting with the global bootmeths
354 ret = bootmeth_setup_iter_order(iter, !(flags & BOOTFLOWF_SKIP_GLOBAL));
356 return log_msg_ret("obmeth", -ENODEV);
358 /* Find the first bootmeth (there must be at least one!) */
359 iter->method = iter->method_order[iter->cur_method];
361 if (!IS_ENABLED(CONFIG_BOOTMETH_GLOBAL) || !iter->doing_global) {
362 struct udevice *dev = NULL;
365 ret = bootdev_setup_iter(iter, label, &dev, &method_flags);
367 return log_msg_ret("obdev", -ENODEV);
369 bootflow_iter_set_dev(iter, dev, method_flags);
372 ret = bootflow_check(iter, bflow);
374 log_debug("check - ret=%d\n", ret);
375 if (ret != BF_NO_MORE_PARTS && ret != -ENOSYS) {
376 if (iter->flags & BOOTFLOWF_ALL)
377 return log_msg_ret("all", ret);
380 ret = bootflow_scan_next(iter, bflow);
382 return log_msg_ret("get", ret);
388 int bootflow_scan_next(struct bootflow_iter *iter, struct bootflow *bflow)
393 ret = iter_incr(iter);
394 log_debug("iter_incr: ret=%d\n", ret);
395 if (ret == BF_NO_MORE_DEVICES)
396 return log_msg_ret("done", ret);
399 ret = bootflow_check(iter, bflow);
400 log_debug("check - ret=%d\n", ret);
404 if (ret != BF_NO_MORE_PARTS && ret != -ENOSYS) {
405 if (iter->flags & BOOTFLOWF_ALL)
406 return log_msg_ret("all", ret);
409 log_debug("incr failed, err=%d\n", ret);
416 void bootflow_init(struct bootflow *bflow, struct udevice *bootdev,
417 struct udevice *meth)
419 memset(bflow, '\0', sizeof(*bflow));
420 bflow->dev = bootdev;
421 bflow->method = meth;
422 bflow->state = BOOTFLOWST_BASE;
425 void bootflow_free(struct bootflow *bflow)
431 free(bflow->os_name);
432 free(bflow->fdt_fname);
435 void bootflow_remove(struct bootflow *bflow)
438 list_del(&bflow->bm_node);
439 list_del(&bflow->glob_node);
441 bootflow_free(bflow);
445 int bootflow_boot(struct bootflow *bflow)
449 if (bflow->state != BOOTFLOWST_READY)
450 return log_msg_ret("load", -EPROTO);
452 ret = bootmeth_boot(bflow->method, bflow);
454 return log_msg_ret("boot", ret);
457 * internal error, should not get here since we should have booted
458 * something or returned an error
461 return log_msg_ret("end", -EFAULT);
464 int bootflow_run_boot(struct bootflow_iter *iter, struct bootflow *bflow)
468 printf("** Booting bootflow '%s' with %s\n", bflow->name,
469 bflow->method->name);
470 ret = bootflow_boot(bflow);
471 if (!IS_ENABLED(CONFIG_BOOTSTD_FULL)) {
472 printf("Boot failed (err=%d)\n", ret);
478 printf("Bootflow not loaded (state '%s')\n",
479 bootflow_state_get_name(bflow->state));
482 printf("Boot method '%s' not supported\n", bflow->method->name);
485 /* Disable this bootflow for this iteration */
489 ret2 = bootflow_iter_drop_bootmeth(iter, bflow->method);
491 printf("Boot method '%s' failed and will not be retried\n",
492 bflow->method->name);
498 printf("Boot failed (err=%d)\n", ret);
505 int bootflow_iter_check_blk(const struct bootflow_iter *iter)
507 const struct udevice *media = dev_get_parent(iter->dev);
508 enum uclass_id id = device_get_uclass_id(media);
510 log_debug("uclass %d: %s\n", id, uclass_get_name(id));
511 if (id != UCLASS_ETH && id != UCLASS_BOOTSTD && id != UCLASS_QFW)
517 int bootflow_iter_check_sf(const struct bootflow_iter *iter)
519 const struct udevice *media = dev_get_parent(iter->dev);
520 enum uclass_id id = device_get_uclass_id(media);
522 log_debug("uclass %d: %s\n", id, uclass_get_name(id));
523 if (id == UCLASS_SPI_FLASH)
529 int bootflow_iter_check_net(const struct bootflow_iter *iter)
531 const struct udevice *media = dev_get_parent(iter->dev);
532 enum uclass_id id = device_get_uclass_id(media);
534 log_debug("uclass %d: %s\n", id, uclass_get_name(id));
535 if (id == UCLASS_ETH)
541 int bootflow_iter_check_system(const struct bootflow_iter *iter)
543 const struct udevice *media = dev_get_parent(iter->dev);
544 enum uclass_id id = device_get_uclass_id(media);
546 log_debug("uclass %d: %s\n", id, uclass_get_name(id));
547 if (id == UCLASS_BOOTSTD)