2009-07-21 23:19:06 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Advanced Micro Devices, Inc.
|
|
|
|
* Copyright (C) 2009 coresystems GmbH
|
|
|
|
*
|
|
|
|
* 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 <delay.h>
|
2012-04-04 01:11:02 +02:00
|
|
|
#include <arch/cpu.h>
|
2009-07-21 23:19:06 +02:00
|
|
|
#include <cpu/x86/msr.h>
|
|
|
|
#include <cpu/x86/lapic.h>
|
|
|
|
|
|
|
|
/* NOTE: This code uses global variables, so it can not be used during
|
|
|
|
* memory init.
|
|
|
|
*/
|
|
|
|
|
2012-04-04 01:11:02 +02:00
|
|
|
static u32 timer_fsb = 0;
|
2009-07-21 23:19:06 +02:00
|
|
|
|
2012-04-04 01:11:02 +02:00
|
|
|
static int set_timer_fsb(void)
|
|
|
|
{
|
|
|
|
struct cpuinfo_x86 c;
|
|
|
|
int core_fsb[8] = { -1, 133, -1, 166, -1, 100, -1, -1 };
|
2012-06-10 19:03:36 +02:00
|
|
|
int core2_fsb[8] = { 266, 133, 200, 166, 333, 100, -1, -1 };
|
2012-04-04 01:11:02 +02:00
|
|
|
|
|
|
|
get_fms(&c, cpuid_eax(1));
|
|
|
|
if (c.x86 != 6)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
switch (c.x86_model) {
|
|
|
|
case 0xe: /* Core Solo/Duo */
|
|
|
|
case 0x1c: /* Atom */
|
|
|
|
timer_fsb = core_fsb[rdmsr(0xcd).lo & 7];
|
|
|
|
break;
|
2012-06-10 19:03:36 +02:00
|
|
|
case 0xf: /* Core 2 or Xeon */
|
2012-04-04 01:11:02 +02:00
|
|
|
case 0x17: /* Enhanced Core */
|
|
|
|
timer_fsb = core2_fsb[rdmsr(0xcd).lo & 7];
|
|
|
|
break;
|
|
|
|
case 0x2a: /* SandyBridge BCLK fixed at 100MHz*/
|
|
|
|
timer_fsb = 100;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
timer_fsb = 200;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2009-07-21 23:19:06 +02:00
|
|
|
|
|
|
|
void init_timer(void)
|
|
|
|
{
|
|
|
|
/* Set the apic timer to no interrupts and periodic mode */
|
2011-05-10 23:47:57 +02:00
|
|
|
lapic_write(LAPIC_LVTT, (LAPIC_LVT_TIMER_PERIODIC | LAPIC_LVT_MASKED));
|
2009-07-21 23:19:06 +02:00
|
|
|
|
|
|
|
/* Set the divider to 1, no divider */
|
|
|
|
lapic_write(LAPIC_TDCR, LAPIC_TDR_DIV_1);
|
|
|
|
|
|
|
|
/* Set the initial counter to 0xffffffff */
|
|
|
|
lapic_write(LAPIC_TMICT, 0xffffffff);
|
|
|
|
|
|
|
|
/* Set FSB frequency to a reasonable value */
|
2012-04-04 01:11:02 +02:00
|
|
|
set_timer_fsb();
|
2009-07-21 23:19:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void udelay(u32 usecs)
|
|
|
|
{
|
|
|
|
u32 start, value, ticks;
|
2012-04-04 01:11:02 +02:00
|
|
|
|
|
|
|
if (!timer_fsb)
|
|
|
|
init_timer();
|
|
|
|
|
2009-07-21 23:19:06 +02:00
|
|
|
/* Calculate the number of ticks to run, our FSB runs at timer_fsb Mhz */
|
|
|
|
ticks = usecs * timer_fsb;
|
|
|
|
start = lapic_read(LAPIC_TMCCT);
|
|
|
|
do {
|
|
|
|
value = lapic_read(LAPIC_TMCCT);
|
|
|
|
} while((start - value) < ticks);
|
|
|
|
}
|