1 /*
2  * Copyright (C) 2018-2022 Intel Corporation.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef SEED_SBL_H_
8 #define SEED_SBL_H_
9 
10 struct image_boot_params {
11 	uint32_t size_of_this_struct;
12 	uint32_t version;
13 	uint64_t p_seed_list;
14 	uint64_t p_platform_info;
15 	uint64_t reserved;
16 };
17 
18 bool parse_seed_sbl(uint64_t addr, struct physical_seed *phy_seed);
19 
20 #endif /* SEED_SBL_H_ */
21