blob: bf71b09edad2d3f54d07a701cda0aa7666f169a3 [file] [log] [blame]
Simon Glassa16d87d2022-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 Glassd92bcc42023-01-06 08:52:42 -060010#include <dm/ofnode_decl.h>
Simon Glassa16d87d2022-04-24 23:31:05 -060011#include <linux/list.h>
12
Simon Glass0a2f6a32023-01-06 08:52:40 -060013struct bootstd_priv;
14struct expo;
15
Simon Glassa16d87d2022-04-24 23:31:05 -060016/**
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 */
23enum 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 Glass612b9cc2023-01-06 08:52:34 -060056 * @logo: Logo to display for this bootflow (BMP format)
57 * @logo_size: Size of the logo in bytes
Simon Glassa16d87d2022-04-24 23:31:05 -060058 * @buf: Bootflow file contents (allocated)
59 * @size: Size of bootflow file in bytes
60 * @err: Error number received (0 if OK)
Simon Glass72b7b192023-01-06 08:52:33 -060061 * @os_name: Name of the OS / distro being booted, or NULL if not known
62 * (allocated)
Simon Glass7b8c6342023-01-17 10:47:56 -070063 * @fdt_fname: Filename of FDT file
64 * @fdt_size: Size of FDT file
65 * @fdt_addr: Address of loaded fdt
Simon Glassa16d87d2022-04-24 23:31:05 -060066 */
67struct bootflow {
68 struct list_head bm_node;
69 struct list_head glob_node;
70 struct udevice *dev;
71 struct udevice *blk;
72 int part;
73 int fs_type;
74 struct udevice *method;
75 char *name;
76 enum bootflow_state_t state;
77 char *subdir;
78 char *fname;
Simon Glass612b9cc2023-01-06 08:52:34 -060079 void *logo;
80 uint logo_size;
Simon Glassa16d87d2022-04-24 23:31:05 -060081 char *buf;
82 int size;
83 int err;
Simon Glass72b7b192023-01-06 08:52:33 -060084 char *os_name;
Simon Glass7b8c6342023-01-17 10:47:56 -070085 char *fdt_fname;
86 int fdt_size;
87 ulong fdt_addr;
Simon Glassa16d87d2022-04-24 23:31:05 -060088};
89
90/**
91 * enum bootflow_flags_t - flags for the bootflow iterator
92 *
93 * @BOOTFLOWF_FIXED: Only used fixed/internal media
94 * @BOOTFLOWF_SHOW: Show each bootdev before scanning it
95 * @BOOTFLOWF_ALL: Return bootflows with errors as well
96 * @BOOTFLOWF_SINGLE_DEV: Just scan one bootmeth
Simon Glass73fcf512022-07-30 15:52:25 -060097 * @BOOTFLOWF_SKIP_GLOBAL: Don't scan global bootmeths
Simon Glassa16d87d2022-04-24 23:31:05 -060098 */
99enum bootflow_flags_t {
100 BOOTFLOWF_FIXED = 1 << 0,
101 BOOTFLOWF_SHOW = 1 << 1,
102 BOOTFLOWF_ALL = 1 << 2,
103 BOOTFLOWF_SINGLE_DEV = 1 << 3,
Simon Glass73fcf512022-07-30 15:52:25 -0600104 BOOTFLOWF_SKIP_GLOBAL = 1 << 4,
Simon Glassa16d87d2022-04-24 23:31:05 -0600105};
106
107/**
108 * struct bootflow_iter - state for iterating through bootflows
109 *
110 * This starts at with the first bootdev/partition/bootmeth and can be used to
111 * iterate through all of them.
112 *
113 * Iteration starts with the bootdev. The first partition (0, i.e. whole device)
114 * is scanned first. For partition 0, it iterates through all the available
115 * bootmeths to see which one(s) can provide a bootflow. Then it moves to
116 * parition 1 (if there is one) and the process continues. Once all partitions
117 * are examined, it moves to the next bootdev.
118 *
119 * Initially @max_part is 0, meaning that only the whole device (@part=0) can be
120 * used. During scanning, if a partition table is found, then @max_part is
121 * updated to a larger value, no less than the number of available partitions.
122 * This ensures that iteration works through all partitions on the bootdev.
123 *
Simon Glass73fcf512022-07-30 15:52:25 -0600124 * @flags: Flags to use (see enum bootflow_flags_t). If BOOTFLOWF_GLOBAL_FIRST is
125 * enabled then the global bootmeths are being scanned, otherwise we have
126 * moved onto the bootdevs
127 * @dev: Current bootdev, NULL if none
Simon Glassa16d87d2022-04-24 23:31:05 -0600128 * @part: Current partition number (0 for whole device)
129 * @method: Current bootmeth
130 * @max_part: Maximum hardware partition number in @dev, 0 if there is no
131 * partition table
Simon Glass64cbc5c2023-01-17 10:47:42 -0700132 * @first_bootable: First bootable partition, or 0 if none
Simon Glassa16d87d2022-04-24 23:31:05 -0600133 * @err: Error obtained from checking the last iteration. This is used to skip
134 * forward (e.g. to skip the current partition because it is not valid)
135 * -ESHUTDOWN: try next bootdev
136 * @num_devs: Number of bootdevs in @dev_order
137 * @cur_dev: Current bootdev number, an index into @dev_order[]
138 * @dev_order: List of bootdevs to scan, in order of priority. The scan starts
139 * with the first one on the list
140 * @num_methods: Number of bootmeth devices in @method_order
141 * @cur_method: Current method number, an index into @method_order
Simon Glass73fcf512022-07-30 15:52:25 -0600142 * @first_glob_method: First global method, if any, else -1
143 * @method_order: List of bootmeth devices to use, in order. The normal methods
144 * appear first, then the global ones, if any
145 * @doing_global: true if we are iterating through the global bootmeths (which
146 * happens before the normal ones)
Simon Glassa16d87d2022-04-24 23:31:05 -0600147 */
148struct bootflow_iter {
149 int flags;
150 struct udevice *dev;
151 int part;
152 struct udevice *method;
153 int max_part;
Simon Glass64cbc5c2023-01-17 10:47:42 -0700154 int first_bootable;
Simon Glassa16d87d2022-04-24 23:31:05 -0600155 int err;
156 int num_devs;
157 int cur_dev;
158 struct udevice **dev_order;
159 int num_methods;
160 int cur_method;
Simon Glass73fcf512022-07-30 15:52:25 -0600161 int first_glob_method;
Simon Glassa16d87d2022-04-24 23:31:05 -0600162 struct udevice **method_order;
Simon Glass73fcf512022-07-30 15:52:25 -0600163 bool doing_global;
Simon Glassa16d87d2022-04-24 23:31:05 -0600164};
165
166/**
Simon Glass00501fc2022-10-20 18:22:51 -0600167 * bootflow_init() - Set up a bootflow struct
168 *
169 * The bootflow is zeroed and set to state BOOTFLOWST_BASE
170 *
171 * @bflow: Struct to set up
172 * @bootdev: Bootdev to use
173 * @meth: Bootmeth to use
174 */
175void bootflow_init(struct bootflow *bflow, struct udevice *bootdev,
176 struct udevice *meth);
177
178/**
Simon Glassa16d87d2022-04-24 23:31:05 -0600179 * bootflow_iter_init() - Reset a bootflow iterator
180 *
181 * This sets everything to the starting point, ready for use.
182 *
183 * @iter: Place to store private info (inited by this call)
184 * @flags: Flags to use (see enum bootflow_flags_t)
185 */
186void bootflow_iter_init(struct bootflow_iter *iter, int flags);
187
188/**
189 * bootflow_iter_uninit() - Free memory used by an interator
190 *
191 * @iter: Iterator to free
192 */
193void bootflow_iter_uninit(struct bootflow_iter *iter);
194
195/**
Simon Glass03fcbf92022-04-24 23:31:09 -0600196 * bootflow_iter_drop_bootmeth() - Remove a bootmeth from an iterator
197 *
198 * Update the iterator so that the bootmeth will not be used again while this
199 * iterator is in use
200 *
201 * @iter: Iterator to update
202 * @bmeth: Boot method to remove
203 */
204int bootflow_iter_drop_bootmeth(struct bootflow_iter *iter,
205 const struct udevice *bmeth);
206
207/**
Simon Glassa16d87d2022-04-24 23:31:05 -0600208 * bootflow_scan_bootdev() - find the first bootflow in a bootdev
209 *
210 * If @flags includes BOOTFLOWF_ALL then bootflows with errors are returned too
211 *
212 * @dev: Boot device to scan, NULL to work through all of them until it
Simon Glass943d38c2022-07-30 15:52:24 -0600213 * finds one that can supply a bootflow
Simon Glassa16d87d2022-04-24 23:31:05 -0600214 * @iter: Place to store private info (inited by this call)
Simon Glass943d38c2022-07-30 15:52:24 -0600215 * @flags: Flags for iterator (enum bootflow_flags_t)
Simon Glassa16d87d2022-04-24 23:31:05 -0600216 * @bflow: Place to put the bootflow if found
217 * Return: 0 if found, -ENODEV if no device, other -ve on other error
218 * (iteration can continue)
219 */
220int bootflow_scan_bootdev(struct udevice *dev, struct bootflow_iter *iter,
221 int flags, struct bootflow *bflow);
222
223/**
224 * bootflow_scan_first() - find the first bootflow
225 *
226 * This works through the available bootdev devices until it finds one that
227 * can supply a bootflow. It then returns that
228 *
229 * If @flags includes BOOTFLOWF_ALL then bootflows with errors are returned too
230 *
231 * @iter: Place to store private info (inited by this call), with
232 * @flags: Flags for bootdev (enum bootflow_flags_t)
233 * @bflow: Place to put the bootflow if found
234 * Return: 0 if found, -ENODEV if no device, other -ve on other error (iteration
235 * can continue)
236 */
237int bootflow_scan_first(struct bootflow_iter *iter, int flags,
238 struct bootflow *bflow);
239
240/**
241 * bootflow_scan_next() - find the next bootflow
242 *
243 * This works through the available bootdev devices until it finds one that
244 * can supply a bootflow. It then returns that bootflow
245 *
246 * @iter: Private info (as set up by bootflow_scan_first())
247 * @bflow: Place to put the bootflow if found
248 * Return: 0 if found, -ENODEV if no device, -ESHUTDOWN if no more bootflows,
249 * other -ve on other error (iteration can continue)
250 */
251int bootflow_scan_next(struct bootflow_iter *iter, struct bootflow *bflow);
252
253/**
254 * bootflow_first_glob() - Get the first bootflow from the global list
255 *
256 * Returns the first bootflow in the global list, no matter what bootflow it is
257 * attached to
258 *
259 * @bflowp: Returns a pointer to the bootflow
260 * Return: 0 if found, -ENOENT if there are no bootflows
261 */
262int bootflow_first_glob(struct bootflow **bflowp);
263
264/**
265 * bootflow_next_glob() - Get the next bootflow from the global list
266 *
267 * Returns the next bootflow in the global list, no matter what bootflow it is
268 * attached to
269 *
270 * @bflowp: On entry, the last bootflow returned , e.g. from
271 * bootflow_first_glob()
272 * Return: 0 if found, -ENOENT if there are no more bootflows
273 */
274int bootflow_next_glob(struct bootflow **bflowp);
275
276/**
277 * bootflow_free() - Free memory used by a bootflow
278 *
279 * This frees fields within @bflow, but not the @bflow pointer itself
280 */
281void bootflow_free(struct bootflow *bflow);
282
283/**
284 * bootflow_boot() - boot a bootflow
285 *
286 * @bflow: Bootflow to boot
287 * Return: -EPROTO if bootflow has not been loaded, -ENOSYS if the bootflow
288 * type is not supported, -EFAULT if the boot returned without an error
289 * when we are expecting it to boot, -ENOTSUPP if trying method resulted in
290 * finding out that is not actually supported for this boot and should not
291 * be tried again unless something changes
292 */
293int bootflow_boot(struct bootflow *bflow);
294
295/**
296 * bootflow_run_boot() - Try to boot a bootflow
297 *
298 * @iter: Current iteration (or NULL if none). Used to disable a bootmeth if the
299 * boot returns -ENOTSUPP
300 * @bflow: Bootflow to boot
301 * Return: result of trying to boot
302 */
303int bootflow_run_boot(struct bootflow_iter *iter, struct bootflow *bflow);
304
305/**
306 * bootflow_state_get_name() - Get the name of a bootflow state
307 *
308 * @state: State to check
309 * Return: name, or "?" if invalid
310 */
311const char *bootflow_state_get_name(enum bootflow_state_t state);
312
Simon Glass03fcbf92022-04-24 23:31:09 -0600313/**
314 * bootflow_remove() - Remove a bootflow and free its memory
315 *
316 * This updates the linked lists containing the bootflow then frees it.
317 *
318 * @bflow: Bootflow to remove
319 */
320void bootflow_remove(struct bootflow *bflow);
321
322/**
Simon Glass18c50402023-01-17 10:47:54 -0700323 * bootflow_iter_check_blk() - Check that a bootflow uses a block device
Simon Glass03fcbf92022-04-24 23:31:09 -0600324 *
325 * This checks the bootdev in the bootflow to make sure it uses a block device
326 *
327 * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. ethernet)
328 */
Simon Glass18c50402023-01-17 10:47:54 -0700329int bootflow_iter_check_blk(const struct bootflow_iter *iter);
Simon Glass03fcbf92022-04-24 23:31:09 -0600330
331/**
Simon Glass18c50402023-01-17 10:47:54 -0700332 * bootflow_iter_check_net() - Check that a bootflow uses a network device
Simon Glass03fcbf92022-04-24 23:31:09 -0600333 *
334 * This checks the bootdev in the bootflow to make sure it uses a network
335 * device
336 *
337 * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. MMC)
338 */
Simon Glass18c50402023-01-17 10:47:54 -0700339int bootflow_iter_check_net(const struct bootflow_iter *iter);
Simon Glass03fcbf92022-04-24 23:31:09 -0600340
341/**
Simon Glass18c50402023-01-17 10:47:54 -0700342 * bootflow_iter_check_system() - Check that a bootflow uses the bootstd device
Simon Glass03fcbf92022-04-24 23:31:09 -0600343 *
344 * This checks the bootdev in the bootflow to make sure it uses the bootstd
345 * device
346 *
347 * Return: 0 if OK, -ENOTSUPP if some other device is used (e.g. MMC)
348 */
Simon Glass18c50402023-01-17 10:47:54 -0700349int bootflow_iter_check_system(const struct bootflow_iter *iter);
Simon Glass03fcbf92022-04-24 23:31:09 -0600350
Simon Glass0a2f6a32023-01-06 08:52:40 -0600351/**
352 * bootflow_menu_new() - Create a new bootflow menu
353 *
354 * @expp: Returns the expo created
355 * Returns 0 on success, -ve on error
356 */
357int bootflow_menu_new(struct expo **expp);
358
359/**
Simon Glassd92bcc42023-01-06 08:52:42 -0600360 * bootflow_menu_apply_theme() - Apply a theme to a bootmenu
361 *
362 * @exp: Expo to update
363 * @node: Node containing the theme information
364 * Returns 0 on success, -ve on error
365 */
366int bootflow_menu_apply_theme(struct expo *exp, ofnode node);
367
368/**
Simon Glass0a2f6a32023-01-06 08:52:40 -0600369 * bootflow_menu_run() - Create and run a menu of available bootflows
370 *
371 * @std: Bootstd information
372 * @text_mode: Uses a text-based menu suitable for a serial port
373 * @bflowp: Returns chosen bootflow (set to NULL if nothing is chosen)
374 * @return 0 if an option was chosen, -EAGAIN if nothing was chosen, -ve on
375 * error
376 */
377int bootflow_menu_run(struct bootstd_priv *std, bool text_mode,
378 struct bootflow **bflowp);
379
Simon Glassa16d87d2022-04-24 23:31:05 -0600380#endif