blob: e9fbbfb9cc98226e0dc5c9702b752650fdf40389 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/*
2 * Copyright (c) 2018 MediaTek Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files
6 * (the "Software"), to deal in the Software without restriction,
7 * including without limitation the rights to use, copy, modify, merge,
8 * publish, distribute, sublicense, and/or sell copies of the Software,
9 * and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23
24#pragma once
25
26#include <stdbool.h>
27#include <sys/types.h>
28
29#define ERR_ADDR (0xffffffff)
30
31enum {
32 IMGTYPE_NONE,
33 IMGTYPE_TZ,
34 IMGTYPE_BL33,
35 IMGTYPE_BUILTIN_BL33,
36 IMGTYPE_KERNEL,
37 IMGTYPE_CM4,
38 IMGTYPE_SLAVE_CPU,
39 IMGTYPE_SPM,
40 IMGTYPE_HYPERVISOR,
41 IMGTYPE_DTBO,
42 IMGTYPE_VPD,
43 IMGTYPE_SCPSYS,
44 IMGTYPE_SCPDATA,
45 IMGTYPE_SCPCFG,
46 IMGTYPE_MODEM,
47 IMGTYPE_HSM_OS,
48};
49
50struct image_load_data {
51 const char *part_name;
52 const char *recovery_part_name;
53 const char *membdev_name; /* for fastboot flash download:xx command */
54 void *buf;
55 bool has_slot;
56
57 ulong kernel_entry;
58 ulong dtb_load;
59 ulong trustedos_entry;
60};
61
62struct imageinfo_t {
63 uint32_t type;
64 struct image_load_data *imgdata;
65 int (*load)(const char *part_name, struct imageinfo_t *img);
66};