Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright 2021 Google LLC |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
| 5 | */ |
| 6 | |
| 7 | #ifndef __bootflow_h |
| 8 | #define __bootflow_h |
| 9 | |
Simon Glass | d92bcc4 | 2023-01-06 08:52:42 -0600 | [diff] [blame] | 10 | #include <dm/ofnode_decl.h> |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 11 | #include <linux/list.h> |
| 12 | |
Simon Glass | 0a2f6a3 | 2023-01-06 08:52:40 -0600 | [diff] [blame] | 13 | struct bootstd_priv; |
| 14 | struct expo; |
| 15 | |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 16 | /** |
| 17 | * enum bootflow_state_t - states that a particular bootflow can be in |
| 18 | * |
| 19 | * Only bootflows in state BOOTFLOWST_READY can be used to boot. |
| 20 | * |
| 21 | * See bootflow_state[] for the names for each of these |
| 22 | */ |
| 23 | enum bootflow_state_t { |
| 24 | BOOTFLOWST_BASE, /**< Nothing known yet */ |
| 25 | BOOTFLOWST_MEDIA, /**< Media exists */ |
| 26 | BOOTFLOWST_PART, /**< Partition exists */ |
| 27 | BOOTFLOWST_FS, /**< Filesystem exists */ |
| 28 | BOOTFLOWST_FILE, /**< Bootflow file exists */ |
| 29 | BOOTFLOWST_READY, /**< Bootflow file loaded */ |
| 30 | |
| 31 | BOOTFLOWST_COUNT |
| 32 | }; |
| 33 | |
| 34 | /** |
| 35 | * struct bootflow - information about a bootflow |
| 36 | * |
| 37 | * This is connected into two separate linked lists: |
| 38 | * |
| 39 | * bm_sibling - links all bootflows in the same bootdev |
| 40 | * glob_sibling - links all bootflows in all bootdevs |
| 41 | * |
| 42 | * @bm_node: Points to siblings in the same bootdev |
| 43 | * @glob_node: Points to siblings in the global list (all bootdev) |
| 44 | * @dev: Bootdevice device which produced this bootflow |
| 45 | * @blk: Block device which contains this bootflow, NULL if this is a network |
| 46 | * device |
| 47 | * @part: Partition number (0 for whole device) |
| 48 | * @fs_type: Filesystem type (FS_TYPE...) if this is fixed by the media, else 0. |
| 49 | * For example, the sandbox host-filesystem bootdev sets this to |
| 50 | * FS_TYPE_SANDBOX |
| 51 | * @method: Bootmethod device used to perform the boot and read files |
| 52 | * @name: Name of bootflow (allocated) |
| 53 | * @state: Current state (enum bootflow_state_t) |
| 54 | * @subdir: Subdirectory to fetch files from (with trailing /), or NULL if none |
| 55 | * @fname: Filename of bootflow file (allocated) |
Simon Glass | 612b9cc | 2023-01-06 08:52:34 -0600 | [diff] [blame] | 56 | * @logo: Logo to display for this bootflow (BMP format) |
| 57 | * @logo_size: Size of the logo in bytes |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 58 | * @buf: Bootflow file contents (allocated) |
| 59 | * @size: Size of bootflow file in bytes |
| 60 | * @err: Error number received (0 if OK) |
Simon Glass | 72b7b19 | 2023-01-06 08:52:33 -0600 | [diff] [blame] | 61 | * @os_name: Name of the OS / distro being booted, or NULL if not known |
| 62 | * (allocated) |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 63 | */ |
| 64 | struct bootflow { |
| 65 | struct list_head bm_node; |
| 66 | struct list_head glob_node; |
| 67 | struct udevice *dev; |
| 68 | struct udevice *blk; |
| 69 | int part; |
| 70 | int fs_type; |
| 71 | struct udevice *method; |
| 72 | char *name; |
| 73 | enum bootflow_state_t state; |
| 74 | char *subdir; |
| 75 | char *fname; |
Simon Glass | 612b9cc | 2023-01-06 08:52:34 -0600 | [diff] [blame] | 76 | void *logo; |
| 77 | uint logo_size; |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 78 | char *buf; |
| 79 | int size; |
| 80 | int err; |
Simon Glass | 72b7b19 | 2023-01-06 08:52:33 -0600 | [diff] [blame] | 81 | char *os_name; |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | /** |
| 85 | * enum bootflow_flags_t - flags for the bootflow iterator |
| 86 | * |
| 87 | * @BOOTFLOWF_FIXED: Only used fixed/internal media |
| 88 | * @BOOTFLOWF_SHOW: Show each bootdev before scanning it |
| 89 | * @BOOTFLOWF_ALL: Return bootflows with errors as well |
| 90 | * @BOOTFLOWF_SINGLE_DEV: Just scan one bootmeth |
Simon Glass | 73fcf51 | 2022-07-30 15:52:25 -0600 | [diff] [blame] | 91 | * @BOOTFLOWF_SKIP_GLOBAL: Don't scan global bootmeths |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 92 | */ |
| 93 | enum bootflow_flags_t { |
| 94 | BOOTFLOWF_FIXED = 1 << 0, |
| 95 | BOOTFLOWF_SHOW = 1 << 1, |
| 96 | BOOTFLOWF_ALL = 1 << 2, |
| 97 | BOOTFLOWF_SINGLE_DEV = 1 << 3, |
Simon Glass | 73fcf51 | 2022-07-30 15:52:25 -0600 | [diff] [blame] | 98 | BOOTFLOWF_SKIP_GLOBAL = 1 << 4, |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 99 | }; |
| 100 | |
| 101 | /** |
| 102 | * struct bootflow_iter - state for iterating through bootflows |
| 103 | * |
| 104 | * This starts at with the first bootdev/partition/bootmeth and can be used to |
| 105 | * iterate through all of them. |
| 106 | * |
| 107 | * Iteration starts with the bootdev. The first partition (0, i.e. whole device) |
| 108 | * is scanned first. For partition 0, it iterates through all the available |
| 109 | * bootmeths to see which one(s) can provide a bootflow. Then it moves to |
| 110 | * parition 1 (if there is one) and the process continues. Once all partitions |
| 111 | * are examined, it moves to the next bootdev. |
| 112 | * |
| 113 | * Initially @max_part is 0, meaning that only the whole device (@part=0) can be |
| 114 | * used. During scanning, if a partition table is found, then @max_part is |
| 115 | * updated to a larger value, no less than the number of available partitions. |
| 116 | * This ensures that iteration works through all partitions on the bootdev. |
| 117 | * |
Simon Glass | 73fcf51 | 2022-07-30 15:52:25 -0600 | [diff] [blame] | 118 | * @flags: Flags to use (see enum bootflow_flags_t). If BOOTFLOWF_GLOBAL_FIRST is |
| 119 | * enabled then the global bootmeths are being scanned, otherwise we have |
| 120 | * moved onto the bootdevs |
| 121 | * @dev: Current bootdev, NULL if none |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 122 | * @part: Current partition number (0 for whole device) |
| 123 | * @method: Current bootmeth |
| 124 | * @max_part: Maximum hardware partition number in @dev, 0 if there is no |
| 125 | * partition table |
Simon Glass | 64cbc5c | 2023-01-17 10:47:42 -0700 | [diff] [blame] | 126 | * @first_bootable: First bootable partition, or 0 if none |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 127 | * @err: Error obtained from checking the last iteration. This is used to skip |
| 128 | * forward (e.g. to skip the current partition because it is not valid) |
| 129 | * -ESHUTDOWN: try next bootdev |
| 130 | * @num_devs: Number of bootdevs in @dev_order |
| 131 | * @cur_dev: Current bootdev number, an index into @dev_order[] |
| 132 | * @dev_order: List of bootdevs to scan, in order of priority. The scan starts |
| 133 | * with the first one on the list |
| 134 | * @num_methods: Number of bootmeth devices in @method_order |
| 135 | * @cur_method: Current method number, an index into @method_order |
Simon Glass | 73fcf51 | 2022-07-30 15:52:25 -0600 | [diff] [blame] | 136 | * @first_glob_method: First global method, if any, else -1 |
| 137 | * @method_order: List of bootmeth devices to use, in order. The normal methods |
| 138 | * appear first, then the global ones, if any |
| 139 | * @doing_global: true if we are iterating through the global bootmeths (which |
| 140 | * happens before the normal ones) |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 141 | */ |
| 142 | struct bootflow_iter { |
| 143 | int flags; |
| 144 | struct udevice *dev; |
| 145 | int part; |
| 146 | struct udevice *method; |
| 147 | int max_part; |
Simon Glass | 64cbc5c | 2023-01-17 10:47:42 -0700 | [diff] [blame] | 148 | int first_bootable; |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 149 | int err; |
| 150 | int num_devs; |
| 151 | int cur_dev; |
| 152 | struct udevice **dev_order; |
| 153 | int num_methods; |
| 154 | int cur_method; |
Simon Glass | 73fcf51 | 2022-07-30 15:52:25 -0600 | [diff] [blame] | 155 | int first_glob_method; |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 156 | struct udevice **method_order; |
Simon Glass | 73fcf51 | 2022-07-30 15:52:25 -0600 | [diff] [blame] | 157 | bool doing_global; |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 158 | }; |
| 159 | |
| 160 | /** |
Simon Glass | 00501fc | 2022-10-20 18:22:51 -0600 | [diff] [blame] | 161 | * bootflow_init() - Set up a bootflow struct |
| 162 | * |
| 163 | * The bootflow is zeroed and set to state BOOTFLOWST_BASE |
| 164 | * |
| 165 | * @bflow: Struct to set up |
| 166 | * @bootdev: Bootdev to use |
| 167 | * @meth: Bootmeth to use |
| 168 | */ |
| 169 | void bootflow_init(struct bootflow *bflow, struct udevice *bootdev, |
| 170 | struct udevice *meth); |
| 171 | |
| 172 | /** |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 173 | * bootflow_iter_init() - Reset a bootflow iterator |
| 174 | * |
| 175 | * This sets everything to the starting point, ready for use. |
| 176 | * |
| 177 | * @iter: Place to store private info (inited by this call) |
| 178 | * @flags: Flags to use (see enum bootflow_flags_t) |
| 179 | */ |
| 180 | void bootflow_iter_init(struct bootflow_iter *iter, int flags); |
| 181 | |
| 182 | /** |
| 183 | * bootflow_iter_uninit() - Free memory used by an interator |
| 184 | * |
| 185 | * @iter: Iterator to free |
| 186 | */ |
| 187 | void bootflow_iter_uninit(struct bootflow_iter *iter); |
| 188 | |
| 189 | /** |
Simon Glass | 03fcbf9 | 2022-04-24 23:31:09 -0600 | [diff] [blame] | 190 | * bootflow_iter_drop_bootmeth() - Remove a bootmeth from an iterator |
| 191 | * |
| 192 | * Update the iterator so that the bootmeth will not be used again while this |
| 193 | * iterator is in use |
| 194 | * |
| 195 | * @iter: Iterator to update |
| 196 | * @bmeth: Boot method to remove |
| 197 | */ |
| 198 | int bootflow_iter_drop_bootmeth(struct bootflow_iter *iter, |
| 199 | const struct udevice *bmeth); |
| 200 | |
| 201 | /** |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 202 | * bootflow_scan_bootdev() - find the first bootflow in a bootdev |
| 203 | * |
| 204 | * If @flags includes BOOTFLOWF_ALL then bootflows with errors are returned too |
| 205 | * |
| 206 | * @dev: Boot device to scan, NULL to work through all of them until it |
Simon Glass | 943d38c | 2022-07-30 15:52:24 -0600 | [diff] [blame] | 207 | * finds one that can supply a bootflow |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 208 | * @iter: Place to store private info (inited by this call) |
Simon Glass | 943d38c | 2022-07-30 15:52:24 -0600 | [diff] [blame] | 209 | * @flags: Flags for iterator (enum bootflow_flags_t) |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 210 | * @bflow: Place to put the bootflow if found |
| 211 | * Return: 0 if found, -ENODEV if no device, other -ve on other error |
| 212 | * (iteration can continue) |
| 213 | */ |
| 214 | int bootflow_scan_bootdev(struct udevice *dev, struct bootflow_iter *iter, |
| 215 | int flags, struct bootflow *bflow); |
| 216 | |
| 217 | /** |
| 218 | * bootflow_scan_first() - find the first bootflow |
| 219 | * |
| 220 | * This works through the available bootdev devices until it finds one that |
| 221 | * can supply a bootflow. It then returns that |
| 222 | * |
| 223 | * If @flags includes BOOTFLOWF_ALL then bootflows with errors are returned too |
| 224 | * |
| 225 | * @iter: Place to store private info (inited by this call), with |
| 226 | * @flags: Flags for bootdev (enum bootflow_flags_t) |
| 227 | * @bflow: Place to put the bootflow if found |
| 228 | * Return: 0 if found, -ENODEV if no device, other -ve on other error (iteration |
| 229 | * can continue) |
| 230 | */ |
| 231 | int bootflow_scan_first(struct bootflow_iter *iter, int flags, |
| 232 | struct bootflow *bflow); |
| 233 | |
| 234 | /** |
| 235 | * bootflow_scan_next() - find the next bootflow |
| 236 | * |
| 237 | * This works through the available bootdev devices until it finds one that |
| 238 | * can supply a bootflow. It then returns that bootflow |
| 239 | * |
| 240 | * @iter: Private info (as set up by bootflow_scan_first()) |
| 241 | * @bflow: Place to put the bootflow if found |
| 242 | * Return: 0 if found, -ENODEV if no device, -ESHUTDOWN if no more bootflows, |
| 243 | * other -ve on other error (iteration can continue) |
| 244 | */ |
| 245 | int bootflow_scan_next(struct bootflow_iter *iter, struct bootflow *bflow); |
| 246 | |
| 247 | /** |
| 248 | * bootflow_first_glob() - Get the first bootflow from the global list |
| 249 | * |
| 250 | * Returns the first bootflow in the global list, no matter what bootflow it is |
| 251 | * attached to |
| 252 | * |
| 253 | * @bflowp: Returns a pointer to the bootflow |
| 254 | * Return: 0 if found, -ENOENT if there are no bootflows |
| 255 | */ |
| 256 | int bootflow_first_glob(struct bootflow **bflowp); |
| 257 | |
| 258 | /** |
| 259 | * bootflow_next_glob() - Get the next bootflow from the global list |
| 260 | * |
| 261 | * Returns the next bootflow in the global list, no matter what bootflow it is |
| 262 | * attached to |
| 263 | * |
| 264 | * @bflowp: On entry, the last bootflow returned , e.g. from |
| 265 | * bootflow_first_glob() |
| 266 | * Return: 0 if found, -ENOENT if there are no more bootflows |
| 267 | */ |
| 268 | int bootflow_next_glob(struct bootflow **bflowp); |
| 269 | |
| 270 | /** |
| 271 | * bootflow_free() - Free memory used by a bootflow |
| 272 | * |
| 273 | * This frees fields within @bflow, but not the @bflow pointer itself |
| 274 | */ |
| 275 | void bootflow_free(struct bootflow *bflow); |
| 276 | |
| 277 | /** |
| 278 | * bootflow_boot() - boot a bootflow |
| 279 | * |
| 280 | * @bflow: Bootflow to boot |
| 281 | * Return: -EPROTO if bootflow has not been loaded, -ENOSYS if the bootflow |
| 282 | * type is not supported, -EFAULT if the boot returned without an error |
| 283 | * when we are expecting it to boot, -ENOTSUPP if trying method resulted in |
| 284 | * finding out that is not actually supported for this boot and should not |
| 285 | * be tried again unless something changes |
| 286 | */ |
| 287 | int bootflow_boot(struct bootflow *bflow); |
| 288 | |
| 289 | /** |
| 290 | * bootflow_run_boot() - Try to boot a bootflow |
| 291 | * |
| 292 | * @iter: Current iteration (or NULL if none). Used to disable a bootmeth if the |
| 293 | * boot returns -ENOTSUPP |
| 294 | * @bflow: Bootflow to boot |
| 295 | * Return: result of trying to boot |
| 296 | */ |
| 297 | int bootflow_run_boot(struct bootflow_iter *iter, struct bootflow *bflow); |
| 298 | |
| 299 | /** |
| 300 | * bootflow_state_get_name() - Get the name of a bootflow state |
| 301 | * |
| 302 | * @state: State to check |
| 303 | * Return: name, or "?" if invalid |
| 304 | */ |
| 305 | const char *bootflow_state_get_name(enum bootflow_state_t state); |
| 306 | |
Simon Glass | 03fcbf9 | 2022-04-24 23:31:09 -0600 | [diff] [blame] | 307 | /** |
| 308 | * bootflow_remove() - Remove a bootflow and free its memory |
| 309 | * |
| 310 | * This updates the linked lists containing the bootflow then frees it. |
| 311 | * |
| 312 | * @bflow: Bootflow to remove |
| 313 | */ |
| 314 | void bootflow_remove(struct bootflow *bflow); |
| 315 | |
| 316 | /** |
Simon Glass | 18c5040 | 2023-01-17 10:47:54 -0700 | [diff] [blame^] | 317 | * bootflow_iter_check_blk() - Check that a bootflow uses a block device |
Simon Glass | 03fcbf9 | 2022-04-24 23:31:09 -0600 | [diff] [blame] | 318 | * |
| 319 | * This checks the bootdev in the bootflow to make sure it uses a block device |
| 320 | * |
| 321 | * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. ethernet) |
| 322 | */ |
Simon Glass | 18c5040 | 2023-01-17 10:47:54 -0700 | [diff] [blame^] | 323 | int bootflow_iter_check_blk(const struct bootflow_iter *iter); |
Simon Glass | 03fcbf9 | 2022-04-24 23:31:09 -0600 | [diff] [blame] | 324 | |
| 325 | /** |
Simon Glass | 18c5040 | 2023-01-17 10:47:54 -0700 | [diff] [blame^] | 326 | * bootflow_iter_check_net() - Check that a bootflow uses a network device |
Simon Glass | 03fcbf9 | 2022-04-24 23:31:09 -0600 | [diff] [blame] | 327 | * |
| 328 | * This checks the bootdev in the bootflow to make sure it uses a network |
| 329 | * device |
| 330 | * |
| 331 | * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. MMC) |
| 332 | */ |
Simon Glass | 18c5040 | 2023-01-17 10:47:54 -0700 | [diff] [blame^] | 333 | int bootflow_iter_check_net(const struct bootflow_iter *iter); |
Simon Glass | 03fcbf9 | 2022-04-24 23:31:09 -0600 | [diff] [blame] | 334 | |
| 335 | /** |
Simon Glass | 18c5040 | 2023-01-17 10:47:54 -0700 | [diff] [blame^] | 336 | * bootflow_iter_check_system() - Check that a bootflow uses the bootstd device |
Simon Glass | 03fcbf9 | 2022-04-24 23:31:09 -0600 | [diff] [blame] | 337 | * |
| 338 | * This checks the bootdev in the bootflow to make sure it uses the bootstd |
| 339 | * device |
| 340 | * |
| 341 | * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. MMC) |
| 342 | */ |
Simon Glass | 18c5040 | 2023-01-17 10:47:54 -0700 | [diff] [blame^] | 343 | int bootflow_iter_check_system(const struct bootflow_iter *iter); |
Simon Glass | 03fcbf9 | 2022-04-24 23:31:09 -0600 | [diff] [blame] | 344 | |
Simon Glass | 0a2f6a3 | 2023-01-06 08:52:40 -0600 | [diff] [blame] | 345 | /** |
| 346 | * bootflow_menu_new() - Create a new bootflow menu |
| 347 | * |
| 348 | * @expp: Returns the expo created |
| 349 | * Returns 0 on success, -ve on error |
| 350 | */ |
| 351 | int bootflow_menu_new(struct expo **expp); |
| 352 | |
| 353 | /** |
Simon Glass | d92bcc4 | 2023-01-06 08:52:42 -0600 | [diff] [blame] | 354 | * bootflow_menu_apply_theme() - Apply a theme to a bootmenu |
| 355 | * |
| 356 | * @exp: Expo to update |
| 357 | * @node: Node containing the theme information |
| 358 | * Returns 0 on success, -ve on error |
| 359 | */ |
| 360 | int bootflow_menu_apply_theme(struct expo *exp, ofnode node); |
| 361 | |
| 362 | /** |
Simon Glass | 0a2f6a3 | 2023-01-06 08:52:40 -0600 | [diff] [blame] | 363 | * bootflow_menu_run() - Create and run a menu of available bootflows |
| 364 | * |
| 365 | * @std: Bootstd information |
| 366 | * @text_mode: Uses a text-based menu suitable for a serial port |
| 367 | * @bflowp: Returns chosen bootflow (set to NULL if nothing is chosen) |
| 368 | * @return 0 if an option was chosen, -EAGAIN if nothing was chosen, -ve on |
| 369 | * error |
| 370 | */ |
| 371 | int bootflow_menu_run(struct bootstd_priv *std, bool text_mode, |
| 372 | struct bootflow **bflowp); |
| 373 | |
Simon Glass | a16d87d | 2022-04-24 23:31:05 -0600 | [diff] [blame] | 374 | #endif |