diff options
author | Shuo Liu <shuo.liu@intel.com> | 2024-03-14 19:49:01 +0800 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2024-03-22 14:35:29 +0000 |
commit | 6bfe01e507e1f9184297b7efdafb72308d8fa88f (patch) | |
tree | 37fabb499835480ca1ebfab4aebed7f9d4f5980c /src/soc | |
parent | 14ea5c858a0c045d961394c7a0d2a46d9b0a2963 (diff) |
soc/intel/xeon_sp: Include soc_util.h in Xeon-SP common codes
Different SoC generations might have different FSP header files. It is
recommended to put these uncommon header files in soc_util.h so that
Xeon-SP codes refer to soc_util.h to include them in a clean way.
TEST=intel/archercity CRB
Change-Id: Icfc20921efe00bc69b0c16c665f65f5baae4c309
Signed-off-by: Shuo Liu <shuo.liu@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81229
Reviewed-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/xeon_sp/include/soc/chip_common.h | 2 | ||||
-rw-r--r-- | src/soc/intel/xeon_sp/include/soc/util.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/xeon_sp/include/soc/chip_common.h b/src/soc/intel/xeon_sp/include/soc/chip_common.h index 2b2d5de4be..68dc4f980c 100644 --- a/src/soc/intel/xeon_sp/include/soc/chip_common.h +++ b/src/soc/intel/xeon_sp/include/soc/chip_common.h @@ -5,7 +5,7 @@ #include <device/device.h> #include <device/path.h> -#include <hob_iiouds.h> +#include <soc/soc_util.h> union xeon_domain_path { unsigned int domain_path; diff --git a/src/soc/intel/xeon_sp/include/soc/util.h b/src/soc/intel/xeon_sp/include/soc/util.h index db66fcb07f..eff8c081fc 100644 --- a/src/soc/intel/xeon_sp/include/soc/util.h +++ b/src/soc/intel/xeon_sp/include/soc/util.h @@ -4,7 +4,7 @@ #define _XEON_SP_SOC_UTIL_H_ #include <cpu/x86/msr.h> -#include <hob_iiouds.h> +#include <soc/soc_util.h> #define MEM_ADDR_64MB_SHIFT_BITS 26 |