blob: 9a2fefbb59b142a848076b70408e9f7695ecc884 [file] [log] [blame]
Angel Ponsf23ae0b2020-04-02 23:48:12 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer5c554632012-04-04 00:09:50 +02002
3#ifndef _CPU_INTEL_MODEL_206AX_H
4#define _CPU_INTEL_MODEL_206AX_H
5
Elyes Haouasad65e8c2022-10-31 14:02:13 +01006#include <cpu/cpu.h>
Elyes HAOUASdfbe6bd2018-10-29 06:56:52 +01007#include <stdint.h>
8
Angel Pons47a80a02020-12-07 13:15:23 +01009/* SandyBridge CPU stepping */
Angel Pons7e3126d2020-12-07 13:17:18 +010010#define SNB_STEP_B2 2
11#define SNB_STEP_C0 3
Angel Pons47a80a02020-12-07 13:15:23 +010012#define SNB_STEP_D0 5 /* Also J0 */
13#define SNB_STEP_D1 6
14#define SNB_STEP_D2 7 /* Also J1/Q0 */
15
16/* IvyBridge CPU stepping */
17#define IVB_STEP_A0 0
18#define IVB_STEP_B0 2
19#define IVB_STEP_C0 4
20#define IVB_STEP_K0 5
21#define IVB_STEP_D0 6
Angel Pons7e3126d2020-12-07 13:17:18 +010022#define IVB_STEP_E0 8
23#define IVB_STEP_E1 9
Angel Pons47a80a02020-12-07 13:15:23 +010024
25#define IS_SANDY_CPU(x) ((x & 0xffff0) == 0x206a0)
26#define IS_SANDY_CPU_C(x) ((x & 0xf) == 4)
27#define IS_SANDY_CPU_D0(x) ((x & 0xf) == 5)
28#define IS_SANDY_CPU_D1(x) ((x & 0xf) == 6)
29#define IS_SANDY_CPU_D2(x) ((x & 0xf) == 7)
30
31#define IS_IVY_CPU(x) ((x & 0xffff0) == 0x306a0)
32#define IS_IVY_CPU_C(x) ((x & 0xf) == 4)
33#define IS_IVY_CPU_K(x) ((x & 0xf) == 5)
34#define IS_IVY_CPU_D(x) ((x & 0xf) == 6)
35#define IS_IVY_CPU_E(x) ((x & 0xf) >= 8)
36
Stefan Reinauerc0f2cfb2012-07-10 17:16:10 -070037/* SandyBridge/IvyBridge bus clock is fixed at 100MHz */
Stefan Reinauer5c554632012-04-04 00:09:50 +020038#define SANDYBRIDGE_BCLK 100
39
Elyes HAOUASa6a396d2019-05-26 13:25:30 +020040#define MSR_CORE_THREAD_COUNT 0x35
Stefan Reinauer5c554632012-04-04 00:09:50 +020041#define MSR_FEATURE_CONFIG 0x13c
Duncan Laurie22935e12012-07-09 09:58:35 -070042#define MSR_FLEX_RATIO 0x194
43#define FLEX_RATIO_LOCK (1 << 20)
44#define FLEX_RATIO_EN (1 << 16)
Duncan Laurie55632112012-07-16 12:19:00 -070045#define MSR_TEMPERATURE_TARGET 0x1a2
Stefan Reinauer5c554632012-04-04 00:09:50 +020046#define MSR_LT_LOCK_MEMORY 0x2e7
Stefan Reinauer5c554632012-04-04 00:09:50 +020047#define MSR_PLATFORM_INFO 0xce
48#define PLATFORM_INFO_SET_TDP (1 << 29)
Stefan Reinauer5c554632012-04-04 00:09:50 +020049
50#define MSR_MISC_PWR_MGMT 0x1aa
51#define MISC_PWR_MGMT_EIST_HW_DIS (1 << 0)
52#define MSR_TURBO_RATIO_LIMIT 0x1ad
53#define MSR_POWER_CTL 0x1fc
54
55#define MSR_PKGC3_IRTL 0x60a
56#define MSR_PKGC6_IRTL 0x60b
57#define MSR_PKGC7_IRTL 0x60c
58#define IRTL_VALID (1 << 15)
59#define IRTL_1_NS (0 << 10)
60#define IRTL_32_NS (1 << 10)
61#define IRTL_1024_NS (2 << 10)
62#define IRTL_32768_NS (3 << 10)
63#define IRTL_1048576_NS (4 << 10)
64#define IRTL_33554432_NS (5 << 10)
65#define IRTL_RESPONSE_MASK (0x3ff)
66
67/* long duration in low dword, short duration in high dword */
68#define MSR_PKG_POWER_LIMIT 0x610
69#define PKG_POWER_LIMIT_MASK 0x7fff
70#define PKG_POWER_LIMIT_EN (1 << 15)
71#define PKG_POWER_LIMIT_CLAMP (1 << 16)
72#define PKG_POWER_LIMIT_TIME_SHIFT 17
73#define PKG_POWER_LIMIT_TIME_MASK 0x7f
74
75#define MSR_PP0_CURRENT_CONFIG 0x601
Patrick Rudolph86852052023-10-20 14:37:07 +020076#define PP0_CURRENT_LIMIT_LOCK (1U << 31)
Stefan Reinauer5c554632012-04-04 00:09:50 +020077#define PP0_CURRENT_LIMIT (112 << 3) /* 112 A */
78#define MSR_PP1_CURRENT_CONFIG 0x602
Patrick Rudolph86852052023-10-20 14:37:07 +020079#define PP1_CURRENT_LIMIT_LOCK (1U << 31)
Duncan Laurie4e4320f2012-06-25 09:53:58 -070080#define PP1_CURRENT_LIMIT_SNB (35 << 3) /* 35 A */
81#define PP1_CURRENT_LIMIT_IVB (50 << 3) /* 50 A */
Stefan Reinauer5c554632012-04-04 00:09:50 +020082#define MSR_PKG_POWER_SKU_UNIT 0x606
83#define MSR_PKG_POWER_SKU 0x614
84#define MSR_PP0_POWER_LIMIT 0x638
85#define MSR_PP1_POWER_LIMIT 0x640
86
Duncan Laurie77dbbac2012-06-25 09:51:59 -070087#define IVB_CONFIG_TDP_MIN_CPUID 0x306a2
88#define MSR_CONFIG_TDP_NOMINAL 0x648
89#define MSR_CONFIG_TDP_LEVEL1 0x649
90#define MSR_CONFIG_TDP_LEVEL2 0x64a
91#define MSR_CONFIG_TDP_CONTROL 0x64b
92#define MSR_TURBO_ACTIVATION_RATIO 0x64c
93
Stefan Reinauer5c554632012-04-04 00:09:50 +020094/* P-state configuration */
95#define PSS_MAX_ENTRIES 8
96#define PSS_RATIO_STEP 2
97#define PSS_LATENCY_TRANSITION 10
98#define PSS_LATENCY_BUSMASTER 10
99
Arthur Heymans67031a52018-02-05 19:08:03 +0100100/* Sanity check config options. */
Kyösti Mälkkif6c20682019-08-02 06:14:50 +0300101#if (CONFIG_SMM_TSEG_SIZE <= (CONFIG_IED_REGION_SIZE + CONFIG_SMM_RESERVED_SIZE))
102# error "CONFIG_SMM_TSEG_SIZE <= (CONFIG_IED_REGION_SIZE + CONFIG_SMM_RESERVED_SIZE)"
Arthur Heymans67031a52018-02-05 19:08:03 +0100103#endif
104#if (CONFIG_SMM_TSEG_SIZE < 0x800000)
105# error "CONFIG_SMM_TSEG_SIZE must at least be 8MiB"
106#endif
107#if ((CONFIG_SMM_TSEG_SIZE & (CONFIG_SMM_TSEG_SIZE - 1)) != 0)
108# error "CONFIG_SMM_TSEG_SIZE is not a power of 2"
109#endif
110#if ((CONFIG_IED_REGION_SIZE & (CONFIG_IED_REGION_SIZE - 1)) != 0)
111# error "CONFIG_IED_REGION_SIZE is not a power of 2"
112#endif
113
Patrick Rudolph588c6f02023-09-30 10:45:33 +0200114/*
115 * List of supported C-states for Sandy Bridge/Ivy Bridge.
116 */
117enum {
118 C_STATE_C0 = 0,
119 C_STATE_C1 = 1,
120 C_STATE_C1E = 2,
121 C_STATE_C3 = 3,
122 C_STATE_C6 = 4,
123 C_STATE_C7 = 5,
124 C_STATE_C7S = 6,
125 NUM_C_STATES,
126};
127
Stefan Reinauer5c554632012-04-04 00:09:50 +0200128/* Lock MSRs */
129void intel_model_206ax_finalize_smm(void);
Kyösti Mälkki82c0e7e2019-11-05 19:06:56 +0200130
Stefan Reinauer5c554632012-04-04 00:09:50 +0200131/* Configure power limits for turbo mode */
132void set_power_limits(u8 power_limit_1_time);
Duncan Laurie77dbbac2012-06-25 09:51:59 -0700133int cpu_config_tdp_levels(void);
Stefan Reinauer5c554632012-04-04 00:09:50 +0200134
Angel Pons964d91f2020-12-07 13:11:17 +0100135static inline u8 cpu_stepping(void)
136{
137 return cpuid_eax(1) & 0xf;
138}
139
Stefan Reinauer5c554632012-04-04 00:09:50 +0200140#endif