blob: 92cc55cd3948a3c4cc897f693c9272144721eb27 [file] [log] [blame]
Angel Ponsf23ae0b2020-04-02 23:48:12 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Vladimir Serbinenko22dcdd92013-06-06 22:10:45 +02002
3#ifndef _CPU_INTEL_MODEL_2065X_H
4#define _CPU_INTEL_MODEL_2065X_H
5
Angel Pons31b7ee42020-02-17 14:04:28 +01006/* Arrandale bus clock is fixed at 133MHz */
Angel Pons95de2312020-02-17 13:08:53 +01007#define IRONLAKE_BCLK 133
Vladimir Serbinenko22dcdd92013-06-06 22:10:45 +02008
Elyes HAOUASa6a396d2019-05-26 13:25:30 +02009#define MSR_CORE_THREAD_COUNT 0x35
Vladimir Serbinenko22dcdd92013-06-06 22:10:45 +020010#define MSR_FEATURE_CONFIG 0x13c
11#define MSR_FLEX_RATIO 0x194
12#define FLEX_RATIO_LOCK (1 << 20)
13#define FLEX_RATIO_EN (1 << 16)
Vladimir Serbinenko22dcdd92013-06-06 22:10:45 +020014#define MSR_TEMPERATURE_TARGET 0x1a2
Alexander Couzensed48dfd2015-02-24 03:07:02 +010015#define IA32_FERR_CAPABILITY 0x1f1
16#define FERR_ENABLE (1 << 0)
Vladimir Serbinenko22dcdd92013-06-06 22:10:45 +020017
Vladimir Serbinenko22dcdd92013-06-06 22:10:45 +020018#define MSR_PLATFORM_INFO 0xce
19#define PLATFORM_INFO_SET_TDP (1 << 29)
20
21#define MSR_MISC_PWR_MGMT 0x1aa
22#define MISC_PWR_MGMT_EIST_HW_DIS (1 << 0)
Angel Ponsfa5ed052021-12-18 22:25:07 +010023#define MSR_TURBO_POWER_CURRENT_LIMIT 0x1ac
Vladimir Serbinenko22dcdd92013-06-06 22:10:45 +020024#define MSR_TURBO_RATIO_LIMIT 0x1ad
25#define MSR_POWER_CTL 0x1fc
26
27#define MSR_PKGC3_IRTL 0x60a
28#define MSR_PKGC6_IRTL 0x60b
29#define MSR_PKGC7_IRTL 0x60c
30#define IRTL_VALID (1 << 15)
31#define IRTL_1_NS (0 << 10)
32#define IRTL_32_NS (1 << 10)
33#define IRTL_1024_NS (2 << 10)
34#define IRTL_32768_NS (3 << 10)
35#define IRTL_1048576_NS (4 << 10)
36#define IRTL_33554432_NS (5 << 10)
37#define IRTL_RESPONSE_MASK (0x3ff)
38
39/* long duration in low dword, short duration in high dword */
40#define MSR_PKG_POWER_LIMIT 0x610
41#define PKG_POWER_LIMIT_MASK 0x7fff
42#define PKG_POWER_LIMIT_EN (1 << 15)
43#define PKG_POWER_LIMIT_CLAMP (1 << 16)
44#define PKG_POWER_LIMIT_TIME_SHIFT 17
45#define PKG_POWER_LIMIT_TIME_MASK 0x7f
46
Vladimir Serbinenko22dcdd92013-06-06 22:10:45 +020047/* P-state configuration */
48#define PSS_MAX_ENTRIES 16
49#define PSS_RATIO_STEP 1
50#define PSS_LATENCY_TRANSITION 10
51#define PSS_LATENCY_BUSMASTER 10
52
Vladimir Serbinenko22dcdd92013-06-06 22:10:45 +020053/* Lock MSRs */
54void intel_model_2065x_finalize_smm(void);
Kyösti Mälkki82c0e7e2019-11-05 19:06:56 +020055
Arthur Heymans97c7c6b2018-05-15 16:45:21 +020056/* Sanity check config options. */
Kyösti Mälkkif6c20682019-08-02 06:14:50 +030057#if (CONFIG_SMM_TSEG_SIZE <= CONFIG_SMM_RESERVED_SIZE)
58# error "CONFIG_SMM_TSEG_SIZE <= CONFIG_SMM_RESERVED_SIZE"
Arthur Heymans97c7c6b2018-05-15 16:45:21 +020059#endif
60#if (CONFIG_SMM_TSEG_SIZE < 0x800000)
61# error "CONFIG_SMM_TSEG_SIZE must at least be 8MiB"
62#endif
63#if ((CONFIG_SMM_TSEG_SIZE & (CONFIG_SMM_TSEG_SIZE - 1)) != 0)
64# error "CONFIG_SMM_TSEG_SIZE is not a power of 2"
65#endif
66
Vladimir Serbinenko22dcdd92013-06-06 22:10:45 +020067#endif