blob: 10caaa242263af2f899c4d21058b1f547e4e2b33 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Simon Glassf226c412014-11-12 22:42:19 -07002/*
3 * From Coreboot file of the same name
4 *
5 * Copyright (C) 2011 The ChromiumOS Authors.
Simon Glassf226c412014-11-12 22:42:19 -07006 */
7
8#ifndef _ASM_ARCH_MODEL_206AX_H
9#define _ASM_ARCH_MODEL_206AX_H
10
Simon Glassf226c412014-11-12 22:42:19 -070011#define CPUID_VMX (1 << 5)
12#define CPUID_SMX (1 << 6)
13#define MSR_FEATURE_CONFIG 0x13c
Simon Glassf226c412014-11-12 22:42:19 -070014#define IA32_PLATFORM_DCA_CAP 0x1f8
15#define IA32_MISC_ENABLE 0x1a0
16#define MSR_TEMPERATURE_TARGET 0x1a2
Simon Glassf226c412014-11-12 22:42:19 -070017#define IA32_THERM_INTERRUPT 0x19b
18#define IA32_ENERGY_PERFORMANCE_BIAS 0x1b0
19#define ENERGY_POLICY_PERFORMANCE 0
20#define ENERGY_POLICY_NORMAL 6
21#define ENERGY_POLICY_POWERSAVE 15
22#define IA32_PACKAGE_THERM_INTERRUPT 0x1b2
23#define MSR_LT_LOCK_MEMORY 0x2e7
24#define IA32_MC0_STATUS 0x401
25
Simon Glassf226c412014-11-12 22:42:19 -070026#define MSR_MISC_PWR_MGMT 0x1aa
27#define MISC_PWR_MGMT_EIST_HW_DIS (1 << 0)
Simon Glassf226c412014-11-12 22:42:19 -070028
29#define MSR_PKGC3_IRTL 0x60a
30#define MSR_PKGC6_IRTL 0x60b
31#define MSR_PKGC7_IRTL 0x60c
32#define IRTL_VALID (1 << 15)
33#define IRTL_1_NS (0 << 10)
34#define IRTL_32_NS (1 << 10)
35#define IRTL_1024_NS (2 << 10)
36#define IRTL_32768_NS (3 << 10)
37#define IRTL_1048576_NS (4 << 10)
38#define IRTL_33554432_NS (5 << 10)
39#define IRTL_RESPONSE_MASK (0x3ff)
40
Simon Glassf226c412014-11-12 22:42:19 -070041#define MSR_PP0_CURRENT_CONFIG 0x601
42#define PP0_CURRENT_LIMIT (112 << 3) /* 112 A */
43#define MSR_PP1_CURRENT_CONFIG 0x602
44#define PP1_CURRENT_LIMIT_SNB (35 << 3) /* 35 A */
45#define PP1_CURRENT_LIMIT_IVB (50 << 3) /* 50 A */
Simon Glassf226c412014-11-12 22:42:19 -070046#define MSR_PKG_POWER_SKU 0x614
47
48#define IVB_CONFIG_TDP_MIN_CPUID 0x306a2
Simon Glassf226c412014-11-12 22:42:19 -070049#define MSR_CONFIG_TDP_LEVEL1 0x649
50#define MSR_CONFIG_TDP_LEVEL2 0x64a
51#define MSR_CONFIG_TDP_CONTROL 0x64b
Simon Glassf226c412014-11-12 22:42:19 -070052
53/* P-state configuration */
54#define PSS_MAX_ENTRIES 8
55#define PSS_RATIO_STEP 2
56#define PSS_LATENCY_TRANSITION 10
57#define PSS_LATENCY_BUSMASTER 10
58
Simon Glass61612ed2014-11-24 21:18:18 -070059/* Configure power limits for turbo mode */
60void set_power_limits(u8 power_limit_1_time);
61int cpu_config_tdp_levels(void);
62
Simon Glassf226c412014-11-12 22:42:19 -070063#endif