cpu/amd: Use common AMD's MSR
[coreboot.git] / src / cpu / amd / family_10h-family_15h / tsc_freq.c
blob63b4ac0e8ada5f1181472b1016a9fa937680be8e
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2016 Raptor Engineering
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.
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.
16 #include <stdint.h>
17 #include <cpu/x86/msr.h>
18 #include <cpu/amd/msr.h>
19 #include <cpu/x86/tsc.h>
21 unsigned long tsc_freq_mhz(void)
23 msr_t msr;
24 uint8_t cpufid;
25 uint8_t cpudid;
27 /* On Family 10h/15h CPUs the TSC increments
28 * at the P0 clock rate. Read the P0 clock
29 * frequency from the P0 MSR and convert
30 * to MHz. See also the Family 15h BKDG
31 * Rev. 3.14 page 569.
33 msr = rdmsr(PSTATE_0_MSR);
34 cpufid = (msr.lo & 0x3f);
35 cpudid = (msr.lo & 0x1c0) >> 6;
37 return (100 * (cpufid + 0x10)) / (0x01 << cpudid);