[fsbl] add fsbl for cv181x/cv180x

Change-Id: I6809bc5016d4bc148f62be2ed3f8e928ec111f19
This commit is contained in:
sam.xiang
2023-02-23 00:14:25 +08:00
parent 5c7dd7acc3
commit 4bc998a131
1392 changed files with 335829 additions and 0 deletions

33
fsbl/include/bl_common.h Normal file
View File

@ -0,0 +1,33 @@
/*
* Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef __BL_COMMON_H__
#define __BL_COMMON_H__
/*******************************************************************************
* Constants to indicate type of exception to the common exception handler.
******************************************************************************/
#ifndef __ASSEMBLY__
#include <stddef.h>
#include <stdint.h>
#include <types.h>
#include <utils_def.h> /* To retain compatibility */
extern const char build_message[];
extern const char version_string[];
extern unsigned char __XLAT_VARS_START__[];
extern unsigned char __BSS_START__[];
extern unsigned char __BSS_END__[];
extern unsigned char __DATA_RAM_START__[];
extern unsigned char __DATA_RAM_END__[];
extern unsigned char __DATA_ROM_START__[];
void bl1_early_platform_setup(void);
#endif /*__ASSEMBLY__*/
#endif /* __BL_COMMON_H__ */