blob: a812a6bf24fc46e3baa151ed13b07044acf105c4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass3b5866d2014-06-12 07:24:46 -06002/*
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glass3b5866d2014-06-12 07:24:46 -06005 */
6
7#ifndef _BOOTM_H
8#define _BOOTM_H
9
Simon Glass3b5866d2014-06-12 07:24:46 -060010#include <image.h>
11
Simon Glassed38aef2020-05-10 11:40:03 -060012struct cmd_tbl;
13
Simon Glass3b5866d2014-06-12 07:24:46 -060014#define BOOTM_ERR_RESET (-1)
15#define BOOTM_ERR_OVERLAP (-2)
16#define BOOTM_ERR_UNIMPLEMENTED (-3)
17
18/*
19 * Continue booting an OS image; caller already has:
20 * - copied image header to global variable `header'
21 * - checked header magic number, checksums (both header & image),
22 * - verified image architecture (PPC) and type (KERNEL or MULTI),
23 * - loaded (first part of) image to header load address,
24 * - disabled interrupts.
25 *
26 * @flag: Flags indicating what to do (BOOTM_STATE_...)
27 * @argc: Number of arguments. Note that the arguments are shifted down
28 * so that 0 is the first argument not processed by U-Boot, and
29 * argc is adjusted accordingly. This avoids confusion as to how
30 * many arguments are available for the OS.
31 * @images: Pointers to os/initrd/fdt
32 * @return 1 on error. On success the OS boots so this function does
33 * not return.
34 */
Simon Glassed38aef2020-05-10 11:40:03 -060035typedef int boot_os_fn(int flag, int argc, char *const argv[],
Simon Glass3b5866d2014-06-12 07:24:46 -060036 bootm_headers_t *images);
37
38extern boot_os_fn do_bootm_linux;
Bin Meng54a735a2018-12-21 07:13:40 -080039extern boot_os_fn do_bootm_vxworks;
40
Simon Glassed38aef2020-05-10 11:40:03 -060041int do_bootelf(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
Simon Glass3b5866d2014-06-12 07:24:46 -060042void lynxkdi_boot(image_header_t *hdr);
43
44boot_os_fn *bootm_os_get_boot_func(int os);
45
Fabrice Fontained00d6b52019-05-03 22:37:05 +020046#if defined(CONFIG_FIT_SIGNATURE)
Simon Glassa51991d2014-06-12 07:24:53 -060047int bootm_host_load_images(const void *fit, int cfg_noffset);
Fabrice Fontained00d6b52019-05-03 22:37:05 +020048#endif
Simon Glassa51991d2014-06-12 07:24:53 -060049
Simon Glassed38aef2020-05-10 11:40:03 -060050int boot_selected_os(int argc, char *const argv[], int state,
Simon Glass3b5866d2014-06-12 07:24:46 -060051 bootm_headers_t *images, boot_os_fn *boot_fn);
52
53ulong bootm_disable_interrupts(void);
54
Tom Rini5ce62cd2014-08-14 06:42:36 -040055/* This is a special function used by booti/bootz */
Tero Kristo06086942020-06-12 15:41:20 +030056int bootm_find_images(int flag, int argc, char *const argv[], ulong start,
57 ulong size);
Simon Glass3b5866d2014-06-12 07:24:46 -060058
Simon Glassed38aef2020-05-10 11:40:03 -060059int do_bootm_states(struct cmd_tbl *cmdtp, int flag, int argc,
60 char *const argv[], int states, bootm_headers_t *images,
61 int boot_progress);
Simon Glass3b5866d2014-06-12 07:24:46 -060062
Jeroen Hofstee7ade3de2014-10-08 22:58:00 +020063void arch_preboot_os(void);
64
Simon Glassc9b2e232018-05-16 09:42:26 -060065/*
66 * boards should define this to disable devices when EFI exits from boot
67 * services.
68 *
69 * TODO(sjg@chromium.org>): Update this to use driver model's device_remove().
70 */
Simon Glassf55305a2018-05-16 09:42:25 -060071void board_quiesce_devices(void);
72
Heinrich Schuchardtaa0b11b2019-01-08 18:13:06 +010073/**
74 * switch_to_non_secure_mode() - switch to non-secure mode
75 */
76void switch_to_non_secure_mode(void);
77
Heinrich Schuchardt25828e92020-09-15 01:58:11 +020078/**
79 * arch_preboot_os() - arch specific configuration before booting
80 */
81void arch_preboot_os(void);
82
83/**
84 * board_preboot_os() - board specific configuration before booting
85 */
86void board_preboot_os(void);
87
Simon Glass3b5866d2014-06-12 07:24:46 -060088#endif