haswell: lapic timer support

Haswell's BCLK is fised at 100MHz like Sandy/Ivy. Add Haswell's model
to the switch statement.

Change-Id: Ib9e2afc04eba940bfcee92a6ee5402759b21cc45
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/2747
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Aaron Durbin 2013-01-15 15:34:08 -06:00 committed by Stefan Reinauer
parent 18af4d23f6
commit 8e345d4ca2
1 changed files with 2 additions and 0 deletions

View File

@ -62,6 +62,8 @@ static int set_timer_fsb(void)
break; break;
case 0x2a: /* SandyBridge BCLK fixed at 100MHz*/ case 0x2a: /* SandyBridge BCLK fixed at 100MHz*/
case 0x3a: /* IvyBridge BCLK fixed at 100MHz*/ case 0x3a: /* IvyBridge BCLK fixed at 100MHz*/
case 0x3c: /* Haswell BCLK fixed at 100MHz */
case 0x45: /* Haswell-ULT BCLK fixed at 100MHz */
timer_fsb = 100; timer_fsb = 100;
break; break;
default: default: