fsp_configs.h 364 B

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