1 /* SPDX-License-Identifier: Intel */ 2 /* 3 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> 4 */ 5 6 #ifndef __FSP_CONFIGS_H__ 7 #define __FSP_CONFIGS_H__ 8 9 struct fsp_config_data { 10 struct fsp_cfg_common common; 11 struct upd_region fsp_upd; 12 }; 13 14 struct fspinit_rtbuf { 15 struct common_buf common; /* FSP common runtime data structure */ 16 }; 17 18 #endif /* __FSP_CONFIGS_H__ */ 19