Add support for Intel Sandybridge CPU (northbridge part)
[coreboot.git] / src / northbridge / intel / sandybridge / udelay.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2008 coresystems GmbH
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <delay.h>
21 #include <stdint.h>
22 #include <cpu/x86/tsc.h>
23 #include <cpu/x86/msr.h>
24
25 /**
26  * Intel Core(tm) cpus always run the TSC at the maximum possible CPU clock
27  */
28
29 void udelay(u32 us)
30 {
31         u32 dword;
32         tsc_t tsc, tsc1, tscd;
33         msr_t msr;
34         u32 fsb = 100, divisor;
35         u32 d;                  /* ticks per us */
36         u32 dn = 0x1000000 / 2; /* how many us before we need to use hi */
37
38         msr = rdmsr(0xce);
39         divisor = (msr.lo >> 8) & 0xff;
40
41         d = fsb * divisor;
42
43         tscd.hi = us / dn;
44         tscd.lo = (us - tscd.hi * dn) * d;
45
46         tsc1 = rdtsc();
47         dword = tsc1.lo + tscd.lo;
48         if ((dword < tsc1.lo) || (dword < tscd.lo)) {
49                 tsc1.hi++;
50         }
51         tsc1.lo = dword;
52         tsc1.hi += tscd.hi;
53
54         do {
55                 tsc = rdtsc();
56         } while ((tsc.hi < tsc1.hi)
57                  || ((tsc.hi == tsc1.hi) && (tsc.lo <= tsc1.lo)));
58 }