mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-20 03:24:25 +00:00

This patch is to implement Vendor Authorize Bootloader support for Intel Agilex, Agilex5 and N5X. Change-Id: I23bdbbe15b3732775cea028665e2efcbd04b3aff Signed-off-by: Jit Loon Lim <jit.loon.lim@intel.com> Signed-off-by: Sieu Mun Tang <sieu.mun.tang@intel.com>
54 lines
1.9 KiB
C
54 lines
1.9 KiB
C
/*
|
|
* Copyright (c) 2020-2023, Intel Corporation. All rights reserved.
|
|
* Copyright (c) 2024, Altera Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SOCFPGA_VAB_H
|
|
#define SOCFPGA_VAB_H
|
|
|
|
#include <stdlib.h>
|
|
#include "socfpga_fcs.h"
|
|
|
|
/* Macros */
|
|
#define IS_BYTE_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
|
|
#define BYTE_ALIGN(x, a) __ALIGN_MASK((x), (typeof(x))(a)-1)
|
|
#define __ALIGN_MASK(x, mask) (((x)+(mask))&~(mask))
|
|
#define VAB_CERT_HEADER_SIZE sizeof(struct fcs_hps_vab_certificate_header)
|
|
#define VAB_CERT_MAGIC_OFFSET offsetof(struct fcs_hps_vab_certificate_header, d)
|
|
#define VAB_CERT_FIT_SHA384_OFFSET offsetof(struct fcs_hps_vab_certificate_data, fcs_sha384[0])
|
|
#define SDM_CERT_MAGIC_NUM 0x25D04E7F
|
|
#define CHUNKSZ_PER_WD_RESET (256 * 1024)
|
|
#define CCERT_CMD_TEST_PGM_MASK 0x80000000 //TODO: ATF FDT location
|
|
|
|
/* SHA related return Macro */
|
|
#define ENOVABCERT 1 /* VAB certificate not available */
|
|
#define EIMGERR 2 /* Image format/size not valid */
|
|
#define ETIMEOUT 3 /* Execution timeout */
|
|
#define EPROCESS 4 /* Process error */
|
|
#define EKEYREJECTED 5 /* Key was rejected by service */
|
|
#define EINITREJECTED 6 /* VAB init was rejected */
|
|
|
|
struct fcs_hps_vab_certificate_data {
|
|
uint32_t vab_cert_magic_num; /* offset 0x10 */
|
|
uint32_t flags;
|
|
uint8_t rsvd0_1[8];
|
|
uint8_t fcs_sha384[FCS_SHA384_WORD_SIZE]; /* offset 0x20 */
|
|
};
|
|
|
|
struct fcs_hps_vab_certificate_header {
|
|
uint32_t cert_magic_num; /* offset 0 */
|
|
uint32_t cert_data_sz;
|
|
uint32_t cert_ver;
|
|
uint32_t cert_type;
|
|
struct fcs_hps_vab_certificate_data d; /* offset 0x10 */
|
|
/* keychain starts at offset 0x50 */
|
|
};
|
|
|
|
/* Function Definitions */
|
|
size_t get_img_size(uint8_t *img_buf, size_t img_buf_sz);
|
|
uint32_t get_unaligned_le32(const void *p);
|
|
int socfpga_vab_authentication(void **p_image, size_t *p_size);
|
|
int socfpga_vab_init(unsigned int image_id);
|
|
#endif
|