blob: f263173c4da5c867f570c056e8393f24b5963e38 [file] [log] [blame]
Simon Glass9d260252022-04-24 23:31:05 -06001/* 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 Glass43e89a32023-01-17 10:48:11 -070010#include <bootdev.h>
Simon Glasse64c2952023-01-06 08:52:42 -060011#include <dm/ofnode_decl.h>
Simon Glass9d260252022-04-24 23:31:05 -060012#include <linux/list.h>
13
Simon Glass02d929b2023-01-06 08:52:40 -060014struct bootstd_priv;
15struct expo;
16
Simon Glassa950f282023-01-17 10:48:17 -070017enum {
18 BOOTFLOW_MAX_USED_DEVS = 16,
19};
20
Simon Glass9d260252022-04-24 23:31:05 -060021/**
22 * enum bootflow_state_t - states that a particular bootflow can be in
23 *
24 * Only bootflows in state BOOTFLOWST_READY can be used to boot.
25 *
26 * See bootflow_state[] for the names for each of these
27 */
28enum bootflow_state_t {
29 BOOTFLOWST_BASE, /**< Nothing known yet */
30 BOOTFLOWST_MEDIA, /**< Media exists */
31 BOOTFLOWST_PART, /**< Partition exists */
32 BOOTFLOWST_FS, /**< Filesystem exists */
33 BOOTFLOWST_FILE, /**< Bootflow file exists */
34 BOOTFLOWST_READY, /**< Bootflow file loaded */
35
36 BOOTFLOWST_COUNT
37};
38
39/**
Simon Glass47dd6b42023-02-22 12:17:04 -070040 * enum bootflow_flags_t - flags for bootflows
41 *
42 * @BOOTFLOWF_USE_PRIOR_FDT: Indicates that an FDT was not found by the bootmeth
43 * and it is using the prior-stage FDT, which is the U-Boot control FDT.
44 * This is only possible with the EFI bootmeth (distro-efi) and only when
45 * CONFIG_OF_HAS_PRIOR_STAGE is enabled
46 */
47enum bootflow_flags_t {
48 BOOTFLOWF_USE_PRIOR_FDT = 1 << 0,
49};
50
51/**
Simon Glass9d260252022-04-24 23:31:05 -060052 * struct bootflow - information about a bootflow
53 *
54 * This is connected into two separate linked lists:
55 *
56 * bm_sibling - links all bootflows in the same bootdev
57 * glob_sibling - links all bootflows in all bootdevs
58 *
59 * @bm_node: Points to siblings in the same bootdev
60 * @glob_node: Points to siblings in the global list (all bootdev)
Simon Glass4de979f2023-07-12 09:04:32 -060061 * @dev: Bootdev device which produced this bootflow
Simon Glass9d260252022-04-24 23:31:05 -060062 * @blk: Block device which contains this bootflow, NULL if this is a network
Simon Glassa58e7bb2023-01-17 10:47:59 -070063 * device or sandbox 'host' device
Simon Glass9d260252022-04-24 23:31:05 -060064 * @part: Partition number (0 for whole device)
65 * @fs_type: Filesystem type (FS_TYPE...) if this is fixed by the media, else 0.
66 * For example, the sandbox host-filesystem bootdev sets this to
67 * FS_TYPE_SANDBOX
68 * @method: Bootmethod device used to perform the boot and read files
69 * @name: Name of bootflow (allocated)
70 * @state: Current state (enum bootflow_state_t)
71 * @subdir: Subdirectory to fetch files from (with trailing /), or NULL if none
72 * @fname: Filename of bootflow file (allocated)
Simon Glass24d8e1b2023-01-06 08:52:34 -060073 * @logo: Logo to display for this bootflow (BMP format)
74 * @logo_size: Size of the logo in bytes
Simon Glass9d260252022-04-24 23:31:05 -060075 * @buf: Bootflow file contents (allocated)
76 * @size: Size of bootflow file in bytes
77 * @err: Error number received (0 if OK)
Simon Glass2175e762023-01-06 08:52:33 -060078 * @os_name: Name of the OS / distro being booted, or NULL if not known
79 * (allocated)
Simon Glass7638c852023-01-17 10:47:56 -070080 * @fdt_fname: Filename of FDT file
81 * @fdt_size: Size of FDT file
82 * @fdt_addr: Address of loaded fdt
Simon Glass47dd6b42023-02-22 12:17:04 -070083 * @flags: Flags for the bootflow (see enum bootflow_flags_t)
Simon Glassf4a91652023-07-12 09:04:34 -060084 * @cmdline: OS command line, or NULL if not known (allocated)
Simon Glass43b6fa92023-07-12 09:04:36 -060085 * @x86_setup: Pointer to x86 setup block inside @buf, NULL if not present
Simon Glass9d260252022-04-24 23:31:05 -060086 */
87struct bootflow {
88 struct list_head bm_node;
89 struct list_head glob_node;
90 struct udevice *dev;
91 struct udevice *blk;
92 int part;
93 int fs_type;
94 struct udevice *method;
95 char *name;
96 enum bootflow_state_t state;
97 char *subdir;
98 char *fname;
Simon Glass24d8e1b2023-01-06 08:52:34 -060099 void *logo;
100 uint logo_size;
Simon Glass9d260252022-04-24 23:31:05 -0600101 char *buf;
102 int size;
103 int err;
Simon Glass2175e762023-01-06 08:52:33 -0600104 char *os_name;
Simon Glass7638c852023-01-17 10:47:56 -0700105 char *fdt_fname;
106 int fdt_size;
107 ulong fdt_addr;
Simon Glass47dd6b42023-02-22 12:17:04 -0700108 int flags;
Simon Glassf4a91652023-07-12 09:04:34 -0600109 char *cmdline;
Simon Glass43b6fa92023-07-12 09:04:36 -0600110 char *x86_setup;
Simon Glass9d260252022-04-24 23:31:05 -0600111};
112
113/**
Simon Glass4f806f32023-02-22 12:17:03 -0700114 * enum bootflow_iter_flags_t - flags for the bootflow iterator
Simon Glass9d260252022-04-24 23:31:05 -0600115 *
Simon Glass4f806f32023-02-22 12:17:03 -0700116 * @BOOTFLOWIF_FIXED: Only used fixed/internal media
117 * @BOOTFLOWIF_SHOW: Show each bootdev before scanning it; show each hunter
Simon Glassd73420e2023-01-17 10:48:06 -0700118 * before using it
Simon Glass4f806f32023-02-22 12:17:03 -0700119 * @BOOTFLOWIF_ALL: Return bootflows with errors as well
120 * @BOOTFLOWIF_HUNT: Hunt for new bootdevs using the bootdrv hunters
Simon Glassd73420e2023-01-17 10:48:06 -0700121 *
122 * Internal flags:
Simon Glass4f806f32023-02-22 12:17:03 -0700123 * @BOOTFLOWIF_SINGLE_DEV: (internal) Just scan one bootdev
124 * @BOOTFLOWIF_SKIP_GLOBAL: (internal) Don't scan global bootmeths
125 * @BOOTFLOWIF_SINGLE_UCLASS: (internal) Keep scanning through all devices in
Simon Glass66e3dce2023-01-17 10:48:09 -0700126 * this uclass (used with things like "mmc")
Simon Glass4f806f32023-02-22 12:17:03 -0700127 * @BOOTFLOWIF_SINGLE_MEDIA: (internal) Scan one media device in the uclass (used
Simon Glass66e3dce2023-01-17 10:48:09 -0700128 * with things like "mmc1")
Simon Glass9d260252022-04-24 23:31:05 -0600129 */
Simon Glass4f806f32023-02-22 12:17:03 -0700130enum bootflow_iter_flags_t {
131 BOOTFLOWIF_FIXED = 1 << 0,
132 BOOTFLOWIF_SHOW = 1 << 1,
133 BOOTFLOWIF_ALL = 1 << 2,
134 BOOTFLOWIF_HUNT = 1 << 3,
Simon Glassd73420e2023-01-17 10:48:06 -0700135
136 /*
137 * flags used internally by standard boot - do not set these when
138 * calling bootflow_scan_bootdev() etc.
139 */
Simon Glass4f806f32023-02-22 12:17:03 -0700140 BOOTFLOWIF_SINGLE_DEV = 1 << 16,
141 BOOTFLOWIF_SKIP_GLOBAL = 1 << 17,
142 BOOTFLOWIF_SINGLE_UCLASS = 1 << 18,
143 BOOTFLOWIF_SINGLE_MEDIA = 1 << 19,
Simon Glass9d260252022-04-24 23:31:05 -0600144};
145
146/**
Simon Glassd9f48572023-01-17 10:48:05 -0700147 * enum bootflow_meth_flags_t - flags controlling which bootmeths are used
148 *
149 * Used during iteration, e.g. by bootdev_find_by_label(), to determine which
150 * bootmeths are used for the current bootdev. The flags reset when the bootdev
151 * changes
152 *
153 * @BOOTFLOW_METHF_DHCP_ONLY: Only use dhcp (scripts and EFI)
154 * @BOOTFLOW_METHF_PXE_ONLY: Only use pxe (PXE boot)
Simon Glass66e3dce2023-01-17 10:48:09 -0700155 * @BOOTFLOW_METHF_SINGLE_DEV: Scan only a single bootdev (used for labels like
156 * "3"). This is used if a sequence number is provided instead of a label
157 * @BOOTFLOW_METHF_SINGLE_UCLASS: Scan all bootdevs in this one uclass (used
158 * with things like "mmc"). If this is not set, then the bootdev has an integer
159 * value in the label (like "mmc2")
Simon Glassd9f48572023-01-17 10:48:05 -0700160 */
161enum bootflow_meth_flags_t {
162 BOOTFLOW_METHF_DHCP_ONLY = 1 << 0,
163 BOOTFLOW_METHF_PXE_ONLY = 1 << 1,
Simon Glass66e3dce2023-01-17 10:48:09 -0700164 BOOTFLOW_METHF_SINGLE_DEV = 1 << 2,
165 BOOTFLOW_METHF_SINGLE_UCLASS = 1 << 3,
Simon Glassd9f48572023-01-17 10:48:05 -0700166};
167
168/**
Simon Glass9d260252022-04-24 23:31:05 -0600169 * struct bootflow_iter - state for iterating through bootflows
170 *
171 * This starts at with the first bootdev/partition/bootmeth and can be used to
172 * iterate through all of them.
173 *
174 * Iteration starts with the bootdev. The first partition (0, i.e. whole device)
175 * is scanned first. For partition 0, it iterates through all the available
176 * bootmeths to see which one(s) can provide a bootflow. Then it moves to
177 * parition 1 (if there is one) and the process continues. Once all partitions
178 * are examined, it moves to the next bootdev.
179 *
180 * Initially @max_part is 0, meaning that only the whole device (@part=0) can be
181 * used. During scanning, if a partition table is found, then @max_part is
182 * updated to a larger value, no less than the number of available partitions.
183 * This ensures that iteration works through all partitions on the bootdev.
184 *
Simon Glass4f806f32023-02-22 12:17:03 -0700185 * @flags: Flags to use (see enum bootflow_iter_flags_t). If
186 * BOOTFLOWIF_GLOBAL_FIRST is enabled then the global bootmeths are being
187 * scanned, otherwise we have moved onto the bootdevs
Simon Glass47aedc22023-01-17 10:48:14 -0700188 * @dev: Current bootdev, NULL if none. This is only ever updated in
189 * bootflow_iter_set_dev()
Simon Glass9d260252022-04-24 23:31:05 -0600190 * @part: Current partition number (0 for whole device)
191 * @method: Current bootmeth
192 * @max_part: Maximum hardware partition number in @dev, 0 if there is no
193 * partition table
Simon Glassf0e358f2023-01-17 10:47:42 -0700194 * @first_bootable: First bootable partition, or 0 if none
Simon Glass9d260252022-04-24 23:31:05 -0600195 * @err: Error obtained from checking the last iteration. This is used to skip
196 * forward (e.g. to skip the current partition because it is not valid)
197 * -ESHUTDOWN: try next bootdev
Simon Glassa950f282023-01-17 10:48:17 -0700198 * @num_devs: Number of bootdevs in @dev_used
199 * @max_devs: Maximum number of entries in @dev_used
200 * @dev_used: List of bootdevs used during iteration
Simon Glasse4b69482023-01-17 10:48:10 -0700201 * @labels: List of labels to scan for bootdevs
202 * @cur_label: Current label being processed
Simon Glass9d260252022-04-24 23:31:05 -0600203 * @num_methods: Number of bootmeth devices in @method_order
204 * @cur_method: Current method number, an index into @method_order
Simon Glass2b80bc12022-07-30 15:52:25 -0600205 * @first_glob_method: First global method, if any, else -1
Simon Glass43e89a32023-01-17 10:48:11 -0700206 * @cur_prio: Current priority being scanned
Simon Glass2b80bc12022-07-30 15:52:25 -0600207 * @method_order: List of bootmeth devices to use, in order. The normal methods
208 * appear first, then the global ones, if any
209 * @doing_global: true if we are iterating through the global bootmeths (which
210 * happens before the normal ones)
Simon Glass25365872023-01-17 10:47:58 -0700211 * @method_flags: flags controlling which methods should be used for this @dev
212 * (enum bootflow_meth_flags_t)
Simon Glass9d260252022-04-24 23:31:05 -0600213 */
214struct bootflow_iter {
215 int flags;
216 struct udevice *dev;
217 int part;
218 struct udevice *method;
219 int max_part;
Simon Glassf0e358f2023-01-17 10:47:42 -0700220 int first_bootable;
Simon Glass9d260252022-04-24 23:31:05 -0600221 int err;
222 int num_devs;
Simon Glassa950f282023-01-17 10:48:17 -0700223 int max_devs;
224 struct udevice *dev_used[BOOTFLOW_MAX_USED_DEVS];
Simon Glasse4b69482023-01-17 10:48:10 -0700225 const char *const *labels;
226 int cur_label;
Simon Glass9d260252022-04-24 23:31:05 -0600227 int num_methods;
228 int cur_method;
Simon Glass2b80bc12022-07-30 15:52:25 -0600229 int first_glob_method;
Simon Glass43e89a32023-01-17 10:48:11 -0700230 enum bootdev_prio_t cur_prio;
Simon Glass9d260252022-04-24 23:31:05 -0600231 struct udevice **method_order;
Simon Glass2b80bc12022-07-30 15:52:25 -0600232 bool doing_global;
Simon Glass25365872023-01-17 10:47:58 -0700233 int method_flags;
Simon Glass9d260252022-04-24 23:31:05 -0600234};
235
236/**
Simon Glassb190deb2022-10-20 18:22:51 -0600237 * bootflow_init() - Set up a bootflow struct
238 *
239 * The bootflow is zeroed and set to state BOOTFLOWST_BASE
240 *
241 * @bflow: Struct to set up
242 * @bootdev: Bootdev to use
243 * @meth: Bootmeth to use
244 */
245void bootflow_init(struct bootflow *bflow, struct udevice *bootdev,
246 struct udevice *meth);
247
248/**
Simon Glass9d260252022-04-24 23:31:05 -0600249 * bootflow_iter_init() - Reset a bootflow iterator
250 *
251 * This sets everything to the starting point, ready for use.
252 *
253 * @iter: Place to store private info (inited by this call)
Simon Glass4f806f32023-02-22 12:17:03 -0700254 * @flags: Flags to use (see enum bootflow_iter_flags_t)
Simon Glass9d260252022-04-24 23:31:05 -0600255 */
256void bootflow_iter_init(struct bootflow_iter *iter, int flags);
257
258/**
259 * bootflow_iter_uninit() - Free memory used by an interator
260 *
261 * @iter: Iterator to free
262 */
263void bootflow_iter_uninit(struct bootflow_iter *iter);
264
265/**
Simon Glassa8f5be12022-04-24 23:31:09 -0600266 * bootflow_iter_drop_bootmeth() - Remove a bootmeth from an iterator
267 *
268 * Update the iterator so that the bootmeth will not be used again while this
269 * iterator is in use
270 *
271 * @iter: Iterator to update
272 * @bmeth: Boot method to remove
273 */
274int bootflow_iter_drop_bootmeth(struct bootflow_iter *iter,
275 const struct udevice *bmeth);
276
277/**
Simon Glass4b7cb052023-01-17 10:48:16 -0700278 * bootflow_scan_first() - find the first bootflow for a device or label
Simon Glass9d260252022-04-24 23:31:05 -0600279 *
Simon Glass4f806f32023-02-22 12:17:03 -0700280 * If @flags includes BOOTFLOWIF_ALL then bootflows with errors are returned too
Simon Glass9d260252022-04-24 23:31:05 -0600281 *
282 * @dev: Boot device to scan, NULL to work through all of them until it
Simon Glassee47d4a2022-07-30 15:52:24 -0600283 * finds one that can supply a bootflow
Simon Glass91943ff2023-01-17 10:48:15 -0700284 * @label: Label to control the scan, NULL to work through all devices
285 * until it finds one that can supply a bootflow
Simon Glass9d260252022-04-24 23:31:05 -0600286 * @iter: Place to store private info (inited by this call)
Simon Glass4f806f32023-02-22 12:17:03 -0700287 * @flags: Flags for iterator (enum bootflow_iter_flags_t). Note that if
288 * @dev is NULL, then BOOTFLOWIF_SKIP_GLOBAL is set automatically by this
289 * function
Simon Glass9d260252022-04-24 23:31:05 -0600290 * @bflow: Place to put the bootflow if found
291 * Return: 0 if found, -ENODEV if no device, other -ve on other error
292 * (iteration can continue)
293 */
Simon Glass4b7cb052023-01-17 10:48:16 -0700294int bootflow_scan_first(struct udevice *dev, const char *label,
295 struct bootflow_iter *iter, int flags,
Simon Glass9d260252022-04-24 23:31:05 -0600296 struct bootflow *bflow);
297
298/**
299 * bootflow_scan_next() - find the next bootflow
300 *
301 * This works through the available bootdev devices until it finds one that
302 * can supply a bootflow. It then returns that bootflow
303 *
304 * @iter: Private info (as set up by bootflow_scan_first())
305 * @bflow: Place to put the bootflow if found
306 * Return: 0 if found, -ENODEV if no device, -ESHUTDOWN if no more bootflows,
307 * other -ve on other error (iteration can continue)
308 */
309int bootflow_scan_next(struct bootflow_iter *iter, struct bootflow *bflow);
310
311/**
312 * bootflow_first_glob() - Get the first bootflow from the global list
313 *
314 * Returns the first bootflow in the global list, no matter what bootflow it is
315 * attached to
316 *
317 * @bflowp: Returns a pointer to the bootflow
318 * Return: 0 if found, -ENOENT if there are no bootflows
319 */
320int bootflow_first_glob(struct bootflow **bflowp);
321
322/**
323 * bootflow_next_glob() - Get the next bootflow from the global list
324 *
325 * Returns the next bootflow in the global list, no matter what bootflow it is
326 * attached to
327 *
328 * @bflowp: On entry, the last bootflow returned , e.g. from
329 * bootflow_first_glob()
330 * Return: 0 if found, -ENOENT if there are no more bootflows
331 */
332int bootflow_next_glob(struct bootflow **bflowp);
333
334/**
335 * bootflow_free() - Free memory used by a bootflow
336 *
337 * This frees fields within @bflow, but not the @bflow pointer itself
338 */
339void bootflow_free(struct bootflow *bflow);
340
341/**
342 * bootflow_boot() - boot a bootflow
343 *
344 * @bflow: Bootflow to boot
345 * Return: -EPROTO if bootflow has not been loaded, -ENOSYS if the bootflow
346 * type is not supported, -EFAULT if the boot returned without an error
347 * when we are expecting it to boot, -ENOTSUPP if trying method resulted in
348 * finding out that is not actually supported for this boot and should not
349 * be tried again unless something changes
350 */
351int bootflow_boot(struct bootflow *bflow);
352
353/**
354 * bootflow_run_boot() - Try to boot a bootflow
355 *
356 * @iter: Current iteration (or NULL if none). Used to disable a bootmeth if the
357 * boot returns -ENOTSUPP
358 * @bflow: Bootflow to boot
359 * Return: result of trying to boot
360 */
361int bootflow_run_boot(struct bootflow_iter *iter, struct bootflow *bflow);
362
363/**
364 * bootflow_state_get_name() - Get the name of a bootflow state
365 *
366 * @state: State to check
367 * Return: name, or "?" if invalid
368 */
369const char *bootflow_state_get_name(enum bootflow_state_t state);
370
Simon Glassa8f5be12022-04-24 23:31:09 -0600371/**
372 * bootflow_remove() - Remove a bootflow and free its memory
373 *
374 * This updates the linked lists containing the bootflow then frees it.
375 *
376 * @bflow: Bootflow to remove
377 */
378void bootflow_remove(struct bootflow *bflow);
379
380/**
Simon Glass865328c2023-01-17 10:47:54 -0700381 * bootflow_iter_check_blk() - Check that a bootflow uses a block device
Simon Glassa8f5be12022-04-24 23:31:09 -0600382 *
383 * This checks the bootdev in the bootflow to make sure it uses a block device
384 *
385 * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. ethernet)
386 */
Simon Glass865328c2023-01-17 10:47:54 -0700387int bootflow_iter_check_blk(const struct bootflow_iter *iter);
Simon Glassa8f5be12022-04-24 23:31:09 -0600388
389/**
Simon Glass0c1f4a92023-01-17 10:48:03 -0700390 * bootflow_iter_check_sf() - Check that a bootflow uses SPI FLASH
391 *
392 * This checks the bootdev in the bootflow to make sure it uses SPI flash
393 *
394 * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. ethernet)
395 */
396int bootflow_iter_check_sf(const struct bootflow_iter *iter);
397
398/**
Simon Glass865328c2023-01-17 10:47:54 -0700399 * bootflow_iter_check_net() - Check that a bootflow uses a network device
Simon Glassa8f5be12022-04-24 23:31:09 -0600400 *
401 * This checks the bootdev in the bootflow to make sure it uses a network
402 * device
403 *
404 * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. MMC)
405 */
Simon Glass865328c2023-01-17 10:47:54 -0700406int bootflow_iter_check_net(const struct bootflow_iter *iter);
Simon Glassa8f5be12022-04-24 23:31:09 -0600407
408/**
Simon Glass865328c2023-01-17 10:47:54 -0700409 * bootflow_iter_check_system() - Check that a bootflow uses the bootstd device
Simon Glassa8f5be12022-04-24 23:31:09 -0600410 *
411 * This checks the bootdev in the bootflow to make sure it uses the bootstd
412 * device
413 *
414 * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. MMC)
415 */
Simon Glass865328c2023-01-17 10:47:54 -0700416int bootflow_iter_check_system(const struct bootflow_iter *iter);
Simon Glassa8f5be12022-04-24 23:31:09 -0600417
Simon Glass02d929b2023-01-06 08:52:40 -0600418/**
419 * bootflow_menu_new() - Create a new bootflow menu
420 *
421 * @expp: Returns the expo created
422 * Returns 0 on success, -ve on error
423 */
424int bootflow_menu_new(struct expo **expp);
425
426/**
Simon Glasse64c2952023-01-06 08:52:42 -0600427 * bootflow_menu_apply_theme() - Apply a theme to a bootmenu
428 *
429 * @exp: Expo to update
430 * @node: Node containing the theme information
431 * Returns 0 on success, -ve on error
432 */
433int bootflow_menu_apply_theme(struct expo *exp, ofnode node);
434
435/**
Simon Glass02d929b2023-01-06 08:52:40 -0600436 * bootflow_menu_run() - Create and run a menu of available bootflows
437 *
438 * @std: Bootstd information
439 * @text_mode: Uses a text-based menu suitable for a serial port
440 * @bflowp: Returns chosen bootflow (set to NULL if nothing is chosen)
441 * @return 0 if an option was chosen, -EAGAIN if nothing was chosen, -ve on
442 * error
443 */
444int bootflow_menu_run(struct bootstd_priv *std, bool text_mode,
445 struct bootflow **bflowp);
446
Simon Glass9d260252022-04-24 23:31:05 -0600447#endif