diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-06-23 14:26:45 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-08-27 16:04:10 +0000 |
commit | 2bc7a6b3d2c68fd820a9390efedc44a3d632ab26 (patch) | |
tree | df92db6b5f1009a906ac20a31f3619e435eb77cf /src/soc/intel/broadwell/include | |
parent | 887b779c11363b5e9b9be0d2260598fa12a92c43 (diff) |
soc/intel/broadwell: Move `mainboard_fill_spd_data`
Move the `mainboard_fill_spd_data` function out of romstage, in
preparation to confine `pei_data` usage to as few files as possible.
Change-Id: I6447da4d135d920f9145e817bfb7f9056e09df84
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55805
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/broadwell/include')
-rw-r--r-- | src/soc/intel/broadwell/include/soc/pei_wrapper.h | 1 | ||||
-rw-r--r-- | src/soc/intel/broadwell/include/soc/romstage.h | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/soc/intel/broadwell/include/soc/pei_wrapper.h b/src/soc/intel/broadwell/include/soc/pei_wrapper.h index 81e1bd50fb..4a38a2afa6 100644 --- a/src/soc/intel/broadwell/include/soc/pei_wrapper.h +++ b/src/soc/intel/broadwell/include/soc/pei_wrapper.h @@ -28,5 +28,6 @@ static inline void pei_data_usb3_port(struct pei_data *pei_data, int port, void broadwell_fill_pei_data(struct pei_data *pei_data); void mainboard_fill_pei_data(struct pei_data *pei_data); +void mainboard_fill_spd_data(struct pei_data *pei_data); #endif diff --git a/src/soc/intel/broadwell/include/soc/romstage.h b/src/soc/intel/broadwell/include/soc/romstage.h index 95af4d98a2..d878e7a9c2 100644 --- a/src/soc/intel/broadwell/include/soc/romstage.h +++ b/src/soc/intel/broadwell/include/soc/romstage.h @@ -3,9 +3,6 @@ #ifndef _BROADWELL_ROMSTAGE_H_ #define _BROADWELL_ROMSTAGE_H_ -#include <soc/pei_data.h> - -void mainboard_fill_spd_data(struct pei_data *pei_data); void mainboard_post_raminit(const int s3resume); struct chipset_power_state; |