mfld.c 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * mfld.c: Intel Medfield platform setup code
 *
 * (C) Copyright 2013 Intel Corporation
 *
 * 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.
 */

#include <linux/init.h>

#include <asm/apic.h>
#include <asm/intel-mid.h>
#include <asm/intel_mid_vrtc.h>

18 19 20
#include "intel_mid_weak_decls.h"

static unsigned long __init mfld_calibrate_tsc(void)
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
{
	unsigned long fast_calibrate;
	u32 lo, hi, ratio, fsb;

	rdmsr(MSR_IA32_PERF_STATUS, lo, hi);
	pr_debug("IA32 perf status is 0x%x, 0x%0x\n", lo, hi);
	ratio = (hi >> 8) & 0x1f;
	pr_debug("ratio is %d\n", ratio);
	if (!ratio) {
		pr_err("read a zero ratio, should be incorrect!\n");
		pr_err("force tsc ratio to 16 ...\n");
		ratio = 16;
	}
	rdmsr(MSR_FSB_FREQ, lo, hi);
	if ((lo & 0x7) == 0x7)
36
		fsb = FSB_FREQ_83SKU;
37
	else
38
		fsb = FSB_FREQ_100SKU;
39 40 41
	fast_calibrate = ratio * fsb;
	pr_debug("read penwell tsc %lu khz\n", fast_calibrate);
	lapic_timer_frequency = fsb * 1000 / HZ;
42 43 44 45 46 47 48

	/*
	 * TSC on Intel Atom SoCs is reliable and of known frequency.
	 * See tsc_msr.c for details.
	 */
	setup_force_cpu_cap(X86_FEATURE_TSC_KNOWN_FREQ);
	setup_force_cpu_cap(X86_FEATURE_TSC_RELIABLE);
49

A
Alan 已提交
50
	return fast_calibrate;
51
}
52

53
static void __init penwell_arch_setup(void)
54 55 56 57
{
	x86_platform.calibrate_tsc = mfld_calibrate_tsc;
}

58 59 60 61
static struct intel_mid_ops penwell_ops = {
	.arch_setup = penwell_arch_setup,
};

62
void *get_penwell_ops(void)
63 64 65 66
{
	return &penwell_ops;
}

67
void *get_cloverview_ops(void)
68 69 70
{
	return &penwell_ops;
}