1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright 2019 Google LLC 4 * Written by Simon Glass <sjg@chromium.org> 5 * 6 * Architecture-specific definitions (FSP config and VPD/UPD) 7 */ 8 9 #ifndef __FSP_ARCH_H__ 10 #define __FSP_ARCH_H__ 11 12 /* 13 * Note: use #ifndef __ASSEMBLY__ around any struct definitions or other C code 14 * since this file can be included from assembly. 15 */ 16 17 #include <asm/fsp1/fsp_api.h> 18 #include <asm/fsp1/fsp_ffs.h> 19 #include <asm/arch/fsp/fsp_vpd.h> 20 #include <asm/arch/fsp/fsp_configs.h> 21 22 #endif 23