haswell: keep ROM cache enabled
The MP code on haswell was mirroring the BSPs MTRRs. In addition it was cleaning up the ROM cache so that the MTRR register values were the same once the OS was booted. Since the hyperthread sibling of the BSP was going through this path the ROM cache was getting torn down once the hyperthread was brought up. That said, there was no differnce in observed boot time keeping the ROM cache enabled. Change-Id: I2a59988fcfeea9291202c961636ea761c2538837 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/3008 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
0f0fe100cb
commit
13cc952a13
|
@ -181,8 +181,12 @@ ap_init(unsigned int cpu, void *microcode_ptr)
|
||||||
/* After SMM relocation a 2nd microcode load is required. */
|
/* After SMM relocation a 2nd microcode load is required. */
|
||||||
intel_microcode_load_unlocked(microcode_ptr);
|
intel_microcode_load_unlocked(microcode_ptr);
|
||||||
|
|
||||||
/* Cleanup ROM caching. */
|
/* The MTRR resources are core scoped. Therefore, there is no need
|
||||||
cleanup_rom_caching();
|
* to do the same work twice. Additionally, this check keeps the
|
||||||
|
* ROM cache enabled on the BSP since its hyperthread sibling won't
|
||||||
|
* call cleanup_rom_caching(). */
|
||||||
|
if ((lapicid() & 1) == 0)
|
||||||
|
cleanup_rom_caching();
|
||||||
|
|
||||||
/* FIXME(adurbin): park CPUs properly -- preferably somewhere in a
|
/* FIXME(adurbin): park CPUs properly -- preferably somewhere in a
|
||||||
* reserved part of memory that the OS cannot get to. */
|
* reserved part of memory that the OS cannot get to. */
|
||||||
|
|
Loading…
Reference in New Issue