intel/2065x: Use TSC for udelay()
For the ram init of Intel Nehalem ram init we need a udelay implementation. Use common TSC framework for it as Intel Haswell already does. Change-Id: I360a6db1ec1ba32c92698a7d6f6968c93ead5c52 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/4043 Reviewed-by: Aaron Durbin <adurbin@google.com> Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marc.jones@se-eng.com>
This commit is contained in:
parent
c5e947ef17
commit
d8cfd23f6a
|
@ -8,7 +8,8 @@ config CPU_SPECIFIC_OPTIONS
|
||||||
select SMP
|
select SMP
|
||||||
select SSE
|
select SSE
|
||||||
select SSE2
|
select SSE2
|
||||||
select UDELAY_LAPIC
|
select UDELAY_TSC
|
||||||
|
select TSC_CONSTANT_RATE
|
||||||
select SMM_TSEG
|
select SMM_TSEG
|
||||||
select HAVE_INIT_TIMER
|
select HAVE_INIT_TIMER
|
||||||
select CPU_MICROCODE_IN_CBFS
|
select CPU_MICROCODE_IN_CBFS
|
||||||
|
|
|
@ -3,10 +3,16 @@ subdirs-y += ../../x86/name
|
||||||
subdirs-y += ../../x86/cache
|
subdirs-y += ../../x86/cache
|
||||||
subdirs-y += ../../x86/mtrr
|
subdirs-y += ../../x86/mtrr
|
||||||
subdirs-y += ../../x86/lapic
|
subdirs-y += ../../x86/lapic
|
||||||
|
subdirs-y += ../../x86/tsc
|
||||||
subdirs-y += ../../intel/turbo
|
subdirs-y += ../../intel/turbo
|
||||||
subdirs-y += ../../intel/microcode
|
subdirs-y += ../../intel/microcode
|
||||||
subdirs-y += ../../x86/smm
|
subdirs-y += ../../x86/smm
|
||||||
|
|
||||||
|
|
||||||
|
ramstage-y += tsc_freq.c
|
||||||
|
romstage-y += tsc_freq.c
|
||||||
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += tsc_freq.c
|
||||||
|
|
||||||
ramstage-$(CONFIG_GENERATE_ACPI_TABLES) += acpi.c
|
ramstage-$(CONFIG_GENERATE_ACPI_TABLES) += acpi.c
|
||||||
|
|
||||||
smm-$(CONFIG_HAVE_SMI_HANDLER) += finalize.c
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += finalize.c
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2013 Google, Inc.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; version 2 of the License.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <cpu/x86/msr.h>
|
||||||
|
#include <cpu/x86/tsc.h>
|
||||||
|
#include "model_2065x.h"
|
||||||
|
|
||||||
|
unsigned long tsc_freq_mhz(void)
|
||||||
|
{
|
||||||
|
msr_t platform_info;
|
||||||
|
|
||||||
|
platform_info = rdmsr(MSR_PLATFORM_INFO);
|
||||||
|
return SANDYBRIDGE_BCLK * ((platform_info.lo >> 8) & 0xff);
|
||||||
|
}
|
Loading…
Reference in New Issue