1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef __MANIFEST_H__ 4 #define __MANIFEST_H__ 5 6 /** 7 * Make sure the index matches the actual order in the manifest generated 8 * using the HashCb.cmd file 9 */ 10 #define HASH_IDX_ROM_STAGE 0 11 #define HASH_IDX_RAM_STAGE 1 12 #define HASH_IDX_PAYLOAD 2 13 #define HASH_IDX_OPROM 3 14 #define HASH_IDX_FSP 4 15 #define HASH_IDX_MICROCODE 5 16 #define HASH_IDX_SPD0 6 17 #define HASH_IDX_LOGO 7 18 #define HASH_IDX_DSDT 8 19 #define HASH_IDX_POSTCAR_STAGE 9 20 #define HASH_IDX_PUBLICKEY 10 21 #define HASH_IDX_CONFIG 11 22 #define HASH_IDX_BOOTBLOCK 12 /* Should always be the last one */ 23 #endif 24