Simon Glass | ef5e389 | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Standard U-Boot boot framework |
| 4 | * |
| 5 | * Copyright 2021 Google LLC |
| 6 | * Written by Simon Glass <sjg@chromium.org> |
| 7 | */ |
| 8 | |
| 9 | #ifndef __bootstd_h |
| 10 | #define __bootstd_h |
| 11 | |
Simon Glass | e64c295 | 2023-01-06 08:52:42 -0600 | [diff] [blame] | 12 | #include <dm/ofnode_decl.h> |
| 13 | |
Simon Glass | ef5e389 | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 14 | struct udevice; |
| 15 | |
| 16 | /** |
| 17 | * struct bootstd_priv - priv data for the bootstd driver |
| 18 | * |
| 19 | * This is attached to the (only) bootstd device, so there is only one instance |
| 20 | * of this struct. It provides overall information about bootdevs and bootflows. |
| 21 | * |
| 22 | * @prefixes: NULL-terminated list of prefixes to use for bootflow filenames, |
| 23 | * e.g. "/", "/boot/"; NULL if none |
| 24 | * @bootdev_order: Order to use for bootdevs (or NULL if none), with each item |
Simon Glass | 6a6638f | 2023-01-17 10:47:15 -0700 | [diff] [blame] | 25 | * being a bootdev label, e.g. "mmc2", "mmc1" (NULL terminated) |
| 26 | * @env_order: Order as specified by the boot_targets env var (or NULL if none), |
| 27 | * with each item being a bootdev label, e.g. "mmc2", "mmc1" (NULL |
| 28 | * terminated) |
Simon Glass | ef5e389 | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 29 | * @cur_bootdev: Currently selected bootdev (for commands) |
| 30 | * @cur_bootflow: Currently selected bootflow (for commands) |
| 31 | * @glob_head: Head for the global list of all bootflows across all bootdevs |
| 32 | * @bootmeth_count: Number of bootmeth devices in @bootmeth_order |
| 33 | * @bootmeth_order: List of bootmeth devices to use, in order, NULL-terminated |
Simon Glass | 4c7418f | 2022-07-30 15:52:32 -0600 | [diff] [blame] | 34 | * @vbe_bootmeth: Currently selected VBE bootmeth, NULL if none |
Simon Glass | e64c295 | 2023-01-06 08:52:42 -0600 | [diff] [blame] | 35 | * @theme: Node containing the theme information |
Simon Glass | bd90b09 | 2023-01-17 10:47:33 -0700 | [diff] [blame] | 36 | * @hunters_used: Bitmask of used hunters, indexed by their position in the |
| 37 | * linker list. The bit is set if the hunter has been used already |
Simon Glass | ef5e389 | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 38 | */ |
| 39 | struct bootstd_priv { |
| 40 | const char **prefixes; |
| 41 | const char **bootdev_order; |
Simon Glass | 6a6638f | 2023-01-17 10:47:15 -0700 | [diff] [blame] | 42 | const char **env_order; |
Simon Glass | ef5e389 | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 43 | struct udevice *cur_bootdev; |
| 44 | struct bootflow *cur_bootflow; |
| 45 | struct list_head glob_head; |
| 46 | int bootmeth_count; |
| 47 | struct udevice **bootmeth_order; |
Simon Glass | 4c7418f | 2022-07-30 15:52:32 -0600 | [diff] [blame] | 48 | struct udevice *vbe_bootmeth; |
Simon Glass | e64c295 | 2023-01-06 08:52:42 -0600 | [diff] [blame] | 49 | ofnode theme; |
Simon Glass | bd90b09 | 2023-01-17 10:47:33 -0700 | [diff] [blame] | 50 | uint hunters_used; |
Simon Glass | ef5e389 | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | /** |
| 54 | * bootstd_get_bootdev_order() - Get the boot-order list |
| 55 | * |
| 56 | * This reads the boot order, e.g. {"mmc0", "mmc2", NULL} |
| 57 | * |
| 58 | * The list is alloced by the bootstd driver so should not be freed. That is the |
| 59 | * reason for all the const stuff in the function signature |
| 60 | * |
Simon Glass | 6a6638f | 2023-01-17 10:47:15 -0700 | [diff] [blame] | 61 | * @dev: bootstd device |
| 62 | * @okp: returns true if OK, false if out of memory |
| 63 | * Return: list of string pointers, terminated by NULL; or NULL if no boot |
| 64 | * order. Note that this returns NULL in the case of an empty list |
Simon Glass | ef5e389 | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 65 | */ |
Simon Glass | 6a6638f | 2023-01-17 10:47:15 -0700 | [diff] [blame] | 66 | const char *const *const bootstd_get_bootdev_order(struct udevice *dev, |
| 67 | bool *okp); |
Simon Glass | ef5e389 | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 68 | |
| 69 | /** |
| 70 | * bootstd_get_prefixes() - Get the filename-prefixes list |
| 71 | * |
Julien Delbergue | 2c12067 | 2023-07-13 11:53:09 +0200 | [diff] [blame] | 72 | * This reads the prefixes, e.g. {"/", "/boot", NULL} |
Simon Glass | ef5e389 | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 73 | * |
| 74 | * The list is alloced by the bootstd driver so should not be freed. That is the |
| 75 | * reason for all the const stuff in the function signature |
| 76 | * |
| 77 | * Return: list of string points, terminated by NULL; or NULL if no boot order |
| 78 | */ |
| 79 | const char *const *const bootstd_get_prefixes(struct udevice *dev); |
| 80 | |
| 81 | /** |
| 82 | * bootstd_get_priv() - Get the (single) state for the bootstd system |
| 83 | * |
| 84 | * The state holds a global list of all bootflows that have been found. |
| 85 | * |
| 86 | * Return: 0 if OK, -ve if the uclass does not exist |
| 87 | */ |
| 88 | int bootstd_get_priv(struct bootstd_priv **stdp); |
| 89 | |
| 90 | /** |
| 91 | * bootstd_clear_glob() - Clear the global list of bootflows |
| 92 | * |
| 93 | * This removes all bootflows globally and across all bootdevs. |
| 94 | */ |
| 95 | void bootstd_clear_glob(void); |
| 96 | |
| 97 | #endif |