diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/cpu/intel/romstage.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/cpu/intel/romstage.h b/src/include/cpu/intel/romstage.h index 47cd169e6a..328f464ec4 100644 --- a/src/include/cpu/intel/romstage.h +++ b/src/include/cpu/intel/romstage.h @@ -5,6 +5,10 @@ void mainboard_romstage_entry(unsigned long bist); -void platform_enter_postcar(void); +/* fill_postcar_frame() is called after raminit completes and right before + * calling run_postcar_phase(). Implementation should call postcar_frame_add_mtrr() + * to tag memory ranges as cacheable to speed up execution of postcar and + * early ramstage. */ +void fill_postcar_frame(struct postcar_frame *pcf); #endif /* _CPU_INTEL_ROMSTAGE_H */ |