blob: 3de8ffaf439c6f74cdafcb2b20a6981337fe0d11 [file] [log] [blame]
Angel Pons16f6aa82020-04-05 15:47:21 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Subrata Banik91e89c52019-11-01 18:30:01 +05302
3#ifndef _SOC_CHIP_H_
4#define _SOC_CHIP_H_
5
Subrata Banik91e89c52019-11-01 18:30:01 +05306#include <drivers/i2c/designware/dw_i2c.h>
Tim Crawford1724b572021-09-21 21:50:49 -06007#include <drivers/intel/gma/gma.h>
Dinesh Gehlot3e866812023-01-17 05:57:56 +00008#include <gpio.h>
Ronak Kanabar1c2313d2019-12-16 18:43:52 +05309#include <intelblocks/cfg.h>
Subrata Banik91e89c52019-11-01 18:30:01 +053010#include <intelblocks/gspi.h>
Sean Rhodesf71d8c92021-08-25 12:30:55 +010011#include <intelblocks/lpc_lib.h>
Eric Laide2ab412021-01-11 16:14:14 +080012#include <intelblocks/pcie_rp.h>
Sumeet R Pawnikard2132462020-05-15 15:55:37 +053013#include <intelblocks/power_limit.h>
Tim Wawrzynczak59a621a2021-03-22 10:43:42 -060014#include <intelblocks/tcss.h>
Subrata Banik91e89c52019-11-01 18:30:01 +053015#include <soc/gpe.h>
Ronak Kanabar1c2313d2019-12-16 18:43:52 +053016#include <soc/pch.h>
Subrata Banik91e89c52019-11-01 18:30:01 +053017#include <soc/pci_devs.h>
18#include <soc/pmc.h>
19#include <soc/serialio.h>
20#include <soc/usb.h>
Elyes HAOUAS23a60fa2020-07-22 11:44:29 +020021#include <types.h>
Subrata Banik91e89c52019-11-01 18:30:01 +053022
Srinidhi N Kaushik2f2c7eb2020-01-02 16:11:27 -080023#define MAX_HD_AUDIO_DMIC_LINKS 2
24#define MAX_HD_AUDIO_SNDW_LINKS 4
25#define MAX_HD_AUDIO_SSP_LINKS 6
26
Frans Hendriksfd1a53f2022-08-03 09:43:17 +020027/* Define config parameters for In-Band ECC (IBECC). */
28#define MAX_IBECC_REGIONS 8
29
30enum ibecc_mode {
31 IBECC_PER_REGION,
32 IBECC_NONE,
33 IBECC_ALL
34};
35
36struct ibecc_config {
37 bool enable;
38 bool parity_en;
39 enum ibecc_mode mode;
40 bool region_enable[MAX_IBECC_REGIONS];
41 uint16_t region_base[MAX_IBECC_REGIONS];
42 uint16_t region_mask[MAX_IBECC_REGIONS];
43};
44
Tim Wawrzynczak2dcca0f2020-06-16 10:50:47 -060045/* The first two are for TGL-U */
Jeremy Soller301b09b2021-08-12 10:49:58 -060046enum soc_intel_tigerlake_power_limits {
47 POWER_LIMITS_U_2_CORE,
48 POWER_LIMITS_U_4_CORE,
49 POWER_LIMITS_Y_2_CORE,
50 POWER_LIMITS_Y_4_CORE,
51 POWER_LIMITS_H_6_CORE,
52 POWER_LIMITS_H_8_CORE,
53 POWER_LIMITS_MAX
54};
Tim Wawrzynczak2dcca0f2020-06-16 10:50:47 -060055
Venkata Krishna Nimmagaddae18f7192020-05-15 00:13:40 -070056/*
57 * Enable External V1P05 Rail in: BIT0:S0i1/S0i2,
58 * BIT1:S0i3, BIT2:S3, BIT3:S4, BIT4:S5
59 */
60enum fivr_enable_states {
61 FIVR_ENABLE_S0i1_S0i2 = BIT(0),
62 FIVR_ENABLE_S0i3 = BIT(1),
63 FIVR_ENABLE_S3 = BIT(2),
64 FIVR_ENABLE_S4 = BIT(3),
65 FIVR_ENABLE_S5 = BIT(4),
66};
67
68/*
69 * Enable the following for External V1p05 rail
70 * BIT1: Normal Active voltage supported
71 * BIT2: Minimum active voltage supported
72 * BIT3: Minimum Retention voltage supported
73 */
74enum fivr_voltage_supported {
75 FIVR_VOLTAGE_NORMAL = BIT(1),
76 FIVR_VOLTAGE_MIN_ACTIVE = BIT(2),
77 FIVR_VOLTAGE_MIN_RETENTION = BIT(3),
78};
79
80#define FIVR_ENABLE_ALL_SX (FIVR_ENABLE_S0i1_S0i2 | FIVR_ENABLE_S0i3 | \
81 FIVR_ENABLE_S3 | FIVR_ENABLE_S4 | FIVR_ENABLE_S5)
82
Jes Klinke6fd87ff2020-08-10 13:30:40 -070083/* Bit values for use in LpmStateEnableMask. */
84enum lpm_state_mask {
85 LPM_S0i2_0 = BIT(0),
86 LPM_S0i2_1 = BIT(1),
87 LPM_S0i2_2 = BIT(2),
88 LPM_S0i3_0 = BIT(3),
89 LPM_S0i3_1 = BIT(4),
90 LPM_S0i3_2 = BIT(5),
91 LPM_S0i3_3 = BIT(6),
92 LPM_S0i3_4 = BIT(7),
93 LPM_S0iX_ALL = LPM_S0i2_0 | LPM_S0i2_1 | LPM_S0i2_2
94 | LPM_S0i3_0 | LPM_S0i3_1 | LPM_S0i3_2 | LPM_S0i3_3 | LPM_S0i3_4,
95};
96
Shaunak Saha0d0f43f2020-09-02 15:37:00 -070097/*
Shaunak Saha0d0f43f2020-09-02 15:37:00 -070098 * Slew Rate configuration for Deep Package C States for VR domain.
99 * They are fast time divided by 2.
100 * 0 - Fast/2
101 * 1 - Fast/4
102 * 2 - Fast/8
103 * 3 - Fast/16
104 */
105enum slew_rate {
106 SLEW_FAST_2,
107 SLEW_FAST_4,
108 SLEW_FAST_8,
109 SLEW_FAST_16
110};
111
Angel Ponsda4e1d72022-05-04 17:08:11 +0200112enum ddi_port_config {
113 DDI_PORT_CFG_NO_LFP = 0,
114 DDI_PORT_CFG_EDP = 1,
115 DDI_PORT_CFG_MIPI_DSI = 2,
116};
117
Subrata Banik91e89c52019-11-01 18:30:01 +0530118struct soc_intel_tigerlake_config {
119
120 /* Common struct containing soc config data required by common code */
121 struct soc_intel_common_config common_soc_config;
122
Sumeet R Pawnikard2132462020-05-15 15:55:37 +0530123 /* Common struct containing power limits configuration information */
Tim Wawrzynczak2dcca0f2020-06-16 10:50:47 -0600124 struct soc_power_limits_config power_limits_config[POWER_LIMITS_MAX];
Sumeet R Pawnikard2132462020-05-15 15:55:37 +0530125
Derek Huanged6bda22021-01-27 17:01:00 +0800126 /* Configuration for boot TDP selection; */
127 uint8_t ConfigTdpLevel;
128
Subrata Banik91e89c52019-11-01 18:30:01 +0530129 /* Gpio group routed to each dword of the GPE0 block. Values are
Ravi Sarawadi2fd49722019-12-16 23:41:36 -0800130 * of the form PMC_GPP_[A:U] or GPD. */
131 uint8_t pmc_gpe0_dw0; /* GPE0_31_0 STS/EN */
132 uint8_t pmc_gpe0_dw1; /* GPE0_63_32 STS/EN */
133 uint8_t pmc_gpe0_dw2; /* GPE0_95_64 STS/EN */
Subrata Banik91e89c52019-11-01 18:30:01 +0530134
Sean Rhodesf71d8c92021-08-25 12:30:55 +0100135 /* LPC fixed enables and ranges */
136 uint32_t lpc_ioe;
137
Subrata Banik91e89c52019-11-01 18:30:01 +0530138 /* Generic IO decode ranges */
139 uint32_t gen1_dec;
140 uint32_t gen2_dec;
141 uint32_t gen3_dec;
142 uint32_t gen4_dec;
143
144 /* Enable S0iX support */
145 int s0ix_enable;
Jes Klinke6fd87ff2020-08-10 13:30:40 -0700146 /* S0iX: Selectively disable individual sub-states, by default all are enabled. */
147 enum lpm_state_mask LpmStateDisableMask;
148
John Zhao8aac8812020-05-16 13:06:25 -0700149 /* Support for TCSS xhci, xdci, TBT PCIe root ports and DMA controllers */
John Zhaobd615d62020-07-27 13:22:11 -0700150 uint8_t TcssD3HotDisable;
John Zhao8aac8812020-05-16 13:06:25 -0700151
Subrata Banik91e89c52019-11-01 18:30:01 +0530152 /* Enable DPTF support */
153 int dptf_enable;
154
155 /* Deep SX enable for both AC and DC */
156 int deep_s3_enable_ac;
157 int deep_s3_enable_dc;
158 int deep_s5_enable_ac;
159 int deep_s5_enable_dc;
160
161 /* Deep Sx Configuration
162 * DSX_EN_WAKE_PIN - Enable WAKE# pin
163 * DSX_EN_LAN_WAKE_PIN - Enable LAN_WAKE# pin
164 * DSX_DIS_AC_PRESENT_PD - Disable pull-down on AC_PRESENT pin */
165 uint32_t deep_sx_config;
166
167 /* TCC activation offset */
168 uint32_t tcc_offset;
169
Frans Hendriksfd1a53f2022-08-03 09:43:17 +0200170 /* In-Band ECC (IBECC) configuration */
171 struct ibecc_config ibecc;
172
Subrata Banik91e89c52019-11-01 18:30:01 +0530173 /* System Agent dynamic frequency support. Only effects ULX/ULT CPUs.
174 * When enabled memory will be training at two different frequencies.
Ravi Sarawadi2fd49722019-12-16 23:41:36 -0800175 * 0:Disabled, 1:FixedPoint0, 2:FixedPoint1, 3:FixedPoint2,
176 * 4:FixedPoint3, 5:Enabled */
Subrata Banik91e89c52019-11-01 18:30:01 +0530177 enum {
178 SaGv_Disabled,
Ravi Sarawadi2fd49722019-12-16 23:41:36 -0800179 SaGv_FixedPoint0,
180 SaGv_FixedPoint1,
181 SaGv_FixedPoint2,
182 SaGv_FixedPoint3,
Subrata Banik91e89c52019-11-01 18:30:01 +0530183 SaGv_Enabled,
184 } SaGv;
185
Subrata Banik91e89c52019-11-01 18:30:01 +0530186 /* Rank Margin Tool. 1:Enable, 0:Disable */
187 uint8_t RMT;
188
David Wu63ce2602020-06-11 14:46:24 +0800189 /* Command Pins Mirrored */
190 uint32_t CmdMirror;
191
Subrata Banik91e89c52019-11-01 18:30:01 +0530192 /* USB related */
193 struct usb2_port_config usb2_ports[16];
194 struct usb3_port_config usb3_ports[10];
Subrata Banik91e89c52019-11-01 18:30:01 +0530195 /* Wake Enable Bitmap for USB2 ports */
196 uint16_t usb2_wake_enable_bitmap;
197 /* Wake Enable Bitmap for USB3 ports */
198 uint16_t usb3_wake_enable_bitmap;
Derek Huang80561872021-03-15 12:11:19 +0800199 /* PCH USB2 PHY Power Gating disable */
200 uint8_t usb2_phy_sus_pg_disable;
Nick Vaccaro4b3e06e2021-05-11 16:39:32 -0700201 /* Program OC pins for TCSS */
202 struct tcss_port_config tcss_ports[MAX_TYPE_C_PORTS];
Subrata Banik91e89c52019-11-01 18:30:01 +0530203
Shaunak Saha0d0f43f2020-09-02 15:37:00 -0700204 /*
205 * Acoustic Noise Mitigation
206 * 0 - Disable
207 * 1 - Enable noise mitigation
208 */
209 uint8_t AcousticNoiseMitigation;
210
211 /*
212 * Offset 0x054B - Disable Fast Slew Rate for Deep Package
Shaunak Saha82d51232021-02-17 23:26:43 -0800213 * C States for VCCin in VR domain. Disable Fast Slew Rate
214 * for Deep Package C States based on Acoustic Noise
215 * Mitigation feature enabled.
Shaunak Saha0d0f43f2020-09-02 15:37:00 -0700216 * 0 - False
217 * 1 - True
218 */
Shaunak Saha82d51232021-02-17 23:26:43 -0800219 uint8_t FastPkgCRampDisable;
Shaunak Saha0d0f43f2020-09-02 15:37:00 -0700220
221 /*
222 * Offset 0x0550 - Slew Rate configuration for Deep Package
Shaunak Saha82d51232021-02-17 23:26:43 -0800223 * C States for VCCin in VR domain. Slew Rate configuration
224 * for Deep Package C States for VR domain based on Acoustic
225 * Noise Mitigation feature enabled.
Shaunak Saha0d0f43f2020-09-02 15:37:00 -0700226 */
Shaunak Saha82d51232021-02-17 23:26:43 -0800227 uint8_t SlowSlewRate;
Shaunak Saha0d0f43f2020-09-02 15:37:00 -0700228
Subrata Banik91e89c52019-11-01 18:30:01 +0530229 /* SATA related */
Subrata Banik91e89c52019-11-01 18:30:01 +0530230 uint8_t SataMode;
231 uint8_t SataSalpSupport;
232 uint8_t SataPortsEnable[8];
233 uint8_t SataPortsDevSlp[8];
234
Shaunak Saha1a8949c2020-06-08 18:59:47 -0700235 /*
236 * Enable(0)/Disable(1) SATA Power Optimizer on PCH side.
237 * Default 0. Setting this to 1 disables the SATA Power Optimizer.
238 */
239 uint8_t SataPwrOptimizeDisable;
240
241 /*
242 * SATA Port Enable Dito Config.
243 * Enable DEVSLP Idle Timeout settings (DmVal, DitoVal).
244 */
245 uint8_t SataPortsEnableDitoConfig[8];
246
247 /* SataPortsDmVal is the DITO multiplier. Default is 15. */
248 uint8_t SataPortsDmVal[8];
249 /* SataPortsDitoVal is the DEVSLP Idle Timeout, default is 625ms */
250 uint16_t SataPortsDitoVal[8];
251
Subrata Banik91e89c52019-11-01 18:30:01 +0530252 /* Audio related */
Subrata Banik91e89c52019-11-01 18:30:01 +0530253 uint8_t PchHdaDspEnable;
Srinidhi N Kaushik2f2c7eb2020-01-02 16:11:27 -0800254 uint8_t PchHdaAudioLinkHdaEnable;
255 uint8_t PchHdaAudioLinkDmicEnable[MAX_HD_AUDIO_DMIC_LINKS];
256 uint8_t PchHdaAudioLinkSspEnable[MAX_HD_AUDIO_SSP_LINKS];
257 uint8_t PchHdaAudioLinkSndwEnable[MAX_HD_AUDIO_SNDW_LINKS];
Eric Lai54b706e2020-05-14 13:58:01 +0800258 uint8_t PchHdaIDispCodecDisconnect;
Subrata Banik91e89c52019-11-01 18:30:01 +0530259
260 /* PCIe Root Ports */
261 uint8_t PcieRpEnable[CONFIG_MAX_ROOT_PORTS];
Wonkyu Kimc66c1532020-05-27 13:34:04 -0700262 uint8_t PcieRpHotPlug[CONFIG_MAX_ROOT_PORTS];
Michael Niewöhner45b60802022-01-08 20:47:11 +0100263 /* Implemented as slot or built-in? */
264 uint8_t PcieRpSlotImplemented[CONFIG_MAX_ROOT_PORTS];
Elyes HAOUAS79ccc692020-02-24 13:43:39 +0100265 /* PCIe output clocks type to PCIe devices.
Subrata Banik91e89c52019-11-01 18:30:01 +0530266 * 0-23: PCH rootport, 0x70: LAN, 0x80: unspecified but in use,
267 * 0xFF: not used */
Rizwan Qureshia9794602021-04-08 20:31:47 +0530268 uint8_t PcieClkSrcUsage[CONFIG_MAX_PCIE_CLOCK_SRC];
Subrata Banik91e89c52019-11-01 18:30:01 +0530269 /* PCIe ClkReq-to-ClkSrc mapping, number of clkreq signal assigned to
270 * clksrc. */
Rizwan Qureshia9794602021-04-08 20:31:47 +0530271 uint8_t PcieClkSrcClkReq[CONFIG_MAX_PCIE_CLOCK_SRC];
Subrata Banik91e89c52019-11-01 18:30:01 +0530272
Meera Ravindranath0d6cc222020-04-29 12:19:33 +0530273 /* Probe CLKREQ# signal before enabling CLKREQ# based power management.*/
274 uint8_t PcieRpClkReqDetect[CONFIG_MAX_ROOT_PORTS];
275
Duncan Laurie17e905ac2020-10-27 17:57:13 -0700276 /* Enable PCIe Precision Time Measurement for Root Ports (disabled by default) */
277 uint8_t PciePtm[CONFIG_MAX_ROOT_PORTS];
278
Wonkyu Kim84b48822020-03-09 13:34:38 -0700279 /* PCIe RP L1 substate */
Eric Laide2ab412021-01-11 16:14:14 +0800280 enum L1_substates_control PcieRpL1Substates[CONFIG_MAX_ROOT_PORTS];
Wonkyu Kim84b48822020-03-09 13:34:38 -0700281
Wonkyu Kim59431172020-04-07 20:45:28 -0700282 /* PCIe LTR: Enable (1) / Disable (0) */
283 uint8_t PcieRpLtrEnable[CONFIG_MAX_ROOT_PORTS];
284
285 /* PCIE RP Advanced Error Report: Enable (1) / Disable (0) */
286 uint8_t PcieRpAdvancedErrorReporting[CONFIG_MAX_ROOT_PORTS];
287
Subrata Banik91e89c52019-11-01 18:30:01 +0530288 /* Gfx related */
Subrata Banik91e89c52019-11-01 18:30:01 +0530289 uint8_t SkipExtGfxScan;
290
Subrata Banik91e89c52019-11-01 18:30:01 +0530291 /* Enable/Disable EIST. 1b:Enabled, 0b:Disabled */
292 uint8_t eist_enable;
293
294 /* Enable C6 DRAM */
295 uint8_t enable_c6dram;
Michael Niewöhnerd2fadda2021-09-27 19:26:20 +0200296
Subrata Banik91e89c52019-11-01 18:30:01 +0530297 /*
298 * SerialIO device mode selection:
299 * PchSerialIoDisabled,
300 * PchSerialIoPci,
301 * PchSerialIoHidden,
302 * PchSerialIoLegacyUart,
303 * PchSerialIoSkipInit
304 */
305 uint8_t SerialIoI2cMode[CONFIG_SOC_INTEL_I2C_DEV_MAX];
306 uint8_t SerialIoGSpiMode[CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX];
307 uint8_t SerialIoUartMode[CONFIG_SOC_INTEL_UART_DEV_MAX];
308 /*
309 * GSPIn Default Chip Select Mode:
310 * 0:Hardware Mode,
311 * 1:Software Mode
312 */
313 uint8_t SerialIoGSpiCsMode[CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX];
314 /*
315 * GSPIn Default Chip Select State:
316 * 0: Low,
317 * 1: High
318 */
319 uint8_t SerialIoGSpiCsState[CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX];
320
Ronak Kanabar35d78432020-03-04 19:03:47 +0530321 /*
322 * TraceHubMode config
323 * 0: Disable, 1: Target Debugger Mode, 2: Host Debugger Mode
324 */
325 uint8_t TraceHubMode;
326
Maulik V Vagheladba6c4c2020-01-17 18:56:58 +0530327 /* Debug interface selection */
328 enum {
329 DEBUG_INTERFACE_RAM = (1 << 0),
Subrata Banik7be0df82020-04-30 12:23:16 +0530330 DEBUG_INTERFACE_UART_8250IO = (1 << 1),
Maulik V Vagheladba6c4c2020-01-17 18:56:58 +0530331 DEBUG_INTERFACE_USB3 = (1 << 3),
Subrata Banik7be0df82020-04-30 12:23:16 +0530332 DEBUG_INTERFACE_LPSS_SERIAL_IO = (1 << 4),
Maulik V Vagheladba6c4c2020-01-17 18:56:58 +0530333 DEBUG_INTERFACE_TRACEHUB = (1 << 5),
334 } debug_interface_flag;
335
Cliff Huangb34be4d2021-02-04 15:37:24 -0800336 /* CNVi BT Core Enable/Disable */
337 bool CnviBtCore;
338
Subrata Banik91e89c52019-11-01 18:30:01 +0530339 /* CNVi BT Audio Offload: Enable/Disable BT Audio Offload. */
Angel Pons98521c52021-03-01 21:16:49 +0100340 bool CnviBtAudioOffload;
Subrata Banik91e89c52019-11-01 18:30:01 +0530341
John Zhao8aac8812020-05-16 13:06:25 -0700342 /* TCSS USB */
Wonkyu Kim1ab6f0c2020-01-28 22:06:37 -0800343 uint8_t TcssXhciEn;
344 uint8_t TcssXdciEn;
345
Subrata Banik91e89c52019-11-01 18:30:01 +0530346 /*
Brandon Breitensteinbf50c312020-12-21 14:55:38 -0800347 * Specifies which Type-C Ports are enabled on the system
348 * each bit represents a port starting at 0
349 * Example: set value to 0x3 for ports 0 and 1 to be enabled
350 */
351 uint8_t UsbTcPortEn;
352
353 /*
Tim Wawrzynczak59a621a2021-03-22 10:43:42 -0600354 * These GPIOs will be programmed by the IOM to handle biasing of the
355 * Type-C aux (SBU) signals when certain alternate modes are used.
356 * `pad_auxn_dc` should be assigned to the GPIO pad providing negative
357 * bias (name usually contains `AUXN_DC` or `AUX_N`); similarly,
358 * `pad_auxp_dc` should be assigned to the GPIO providing positive bias
359 * (name often contains `AUXP_DC` or `_AUX_P`).
Brandon Breitenstein71d365d2020-04-06 15:31:34 -0700360 */
Tim Wawrzynczak59a621a2021-03-22 10:43:42 -0600361 struct typec_aux_bias_pads typec_aux_bias_pads[MAX_TYPE_C_PORTS];
Brandon Breitenstein71d365d2020-04-06 15:31:34 -0700362
363 /*
Brandon Breitensteinfc932372020-03-11 14:07:23 -0700364 * SOC Aux orientation override:
365 * This is a bitfield that corresponds to up to 4 TCSS ports on TGL.
366 * Even numbered bits (0, 2, 4, 6) control the retimer being handled by SOC.
367 * Odd numbered bits (1, 3, 5, 7) control the orientation of the physical aux lines
368 * on the motherboard.
369 */
370 uint16_t TcssAuxOri;
371
John Zhao92a3a302020-06-03 13:06:24 -0700372 /* Connect Topology Command timeout value */
373 uint16_t ITbtConnectTopologyTimeoutInMs;
374
Brandon Breitensteinfc932372020-03-11 14:07:23 -0700375 /*
Subrata Banik91e89c52019-11-01 18:30:01 +0530376 * Override GPIO PM configuration:
377 * 0: Use FSP default GPIO PM program,
378 * 1: coreboot to override GPIO PM program
379 */
380 uint8_t gpio_override_pm;
381
382 /*
383 * GPIO PM configuration: 0 to disable, 1 to enable power gating
384 * Bit 6-7: Reserved
385 * Bit 5: MISCCFG_GPSIDEDPCGEN
386 * Bit 4: MISCCFG_GPRCOMPCDLCGEN
387 * Bit 3: MISCCFG_GPRTCDLCGEN
388 * Bit 2: MISCCFG_GSXLCGEN
389 * Bit 1: MISCCFG_GPDPCGEN
390 * Bit 0: MISCCFG_GPDLCGEN
391 */
392 uint8_t gpio_pm[TOTAL_GPIO_COMM];
Wonkyu Kim9f2e3ad2020-01-23 00:06:07 -0800393
Angel Ponsda4e1d72022-05-04 17:08:11 +0200394 /* DDI port config */
395 enum ddi_port_config DdiPortAConfig;
396 enum ddi_port_config DdiPortBConfig;
Wonkyu Kim9f2e3ad2020-01-23 00:06:07 -0800397
398 /* Enable(1)/Disable(0) HPD */
399 uint8_t DdiPortAHpd;
400 uint8_t DdiPortBHpd;
401 uint8_t DdiPortCHpd;
402 uint8_t DdiPort1Hpd;
403 uint8_t DdiPort2Hpd;
404 uint8_t DdiPort3Hpd;
405 uint8_t DdiPort4Hpd;
406
407 /* Enable(1)/Disable(0) DDC */
408 uint8_t DdiPortADdc;
409 uint8_t DdiPortBDdc;
410 uint8_t DdiPortCDdc;
411 uint8_t DdiPort1Ddc;
412 uint8_t DdiPort2Ddc;
413 uint8_t DdiPort3Ddc;
414 uint8_t DdiPort4Ddc;
Wonkyu Kim2b4ded02020-03-03 01:43:45 -0800415
416 /* Hybrid storage mode enable (1) / disable (0)
417 * This mode makes FSP detect Optane and NVME and set PCIe lane mode
418 * accordingly */
419 uint8_t HybridStorageMode;
Srinidhi N Kaushik4b9fa2d2020-03-13 00:54:30 -0700420
421 /*
422 * Override CPU flex ratio value:
423 * CPU ratio value controls the maximum processor non-turbo ratio.
424 * Valid Range 0 to 63.
425 * In general descriptor provides option to set default cpu flex ratio.
426 * Default cpu flex ratio 0 ensures booting with non-turbo max frequency.
427 * That's the reason FSP skips cpu_ratio override if cpu_ratio is 0.
428 * Only override CPU flex ratio to not boot with non-turbo max.
429 */
430 uint8_t cpu_ratio_override;
431
Shaunak Saha32b8a512020-03-31 22:56:13 -0700432 /*
433 * Enable(0)/Disable(1) DMI Power Optimizer on PCH side.
434 * Default 0. Setting this to 1 disables the DMI Power Optimizer.
435 */
436 uint8_t DmiPwrOptimizeDisable;
437
Venkata Krishna Nimmagaddae18f7192020-05-15 00:13:40 -0700438 /* structure containing various settings for PCH FIVRs */
439 struct {
440 bool configure_ext_fivr;
441 enum fivr_enable_states v1p05_enable_bitmap;
442 enum fivr_enable_states vnn_enable_bitmap;
443 enum fivr_voltage_supported v1p05_supported_voltage_bitmap;
444 enum fivr_voltage_supported vnn_supported_voltage_bitmap;
445 /* External Icc Max for V1p05 rail in mA */
446 int v1p05_icc_max_ma;
447 /* External Vnn Voltage in mV */
448 int vnn_sx_voltage_mv;
449 } ext_fivr_settings;
Jamie Ryuf8668e92020-06-24 14:45:13 -0700450
451 /*
452 * Enable(1)/Disable(0) CPU Replacement check.
453 * Default 0. Setting this to 1 to check CPU replacement.
454 */
455 uint8_t CpuReplacementCheck;
Jamie Ryu5b7daa22020-08-18 18:54:49 -0700456
457 /*
458 * SLP_S3 Minimum Assertion Width Policy
459 * 1 = 60us
460 * 2 = 1ms
461 * 3 = 50ms (default)
462 * 4 = 2s
463 */
464 uint8_t PchPmSlpS3MinAssert;
465
466 /*
467 * SLP_S4 Minimum Assertion Width Policy
468 * 1 = 1s (default)
469 * 2 = 2s
470 * 3 = 3s
471 * 4 = 4s
472 */
473 uint8_t PchPmSlpS4MinAssert;
474
475 /*
476 * SLP_SUS Minimum Assertion Width Policy
477 * 1 = 0ms
478 * 2 = 500ms
479 * 3 = 1s
480 * 4 = 4s (default)
481 */
482 uint8_t PchPmSlpSusMinAssert;
483
484 /*
485 * SLP_A Minimum Assertion Width Policy
486 * 1 = 0ms
487 * 2 = 4s
488 * 3 = 98ms
489 * 4 = 2s (default)
490 */
491 uint8_t PchPmSlpAMinAssert;
492
493 /*
494 * PCH PM Reset Power Cycle Duration
495 * 0 = 4s (default)
496 * 1 = 1s
497 * 2 = 2s
498 * 3 = 3s
499 * 4 = 4s
500 *
501 * NOTE: Duration programmed in the PchPmPwrCycDur should never be smaller than the
502 * stretch duration programmed in the following registers:
503 * - GEN_PMCON_A.SLP_S3_MIN_ASST_WDTH (PchPmSlpS3MinAssert)
504 * - GEN_PMCON_A.S4MAW (PchPmSlpS4MinAssert)
505 * - PM_CFG.SLP_A_MIN_ASST_WDTH (PchPmSlpAMinAssert)
506 * - PM_CFG.SLP_LAN_MIN_ASST_WDTH
507 */
508 uint8_t PchPmPwrCycDur;
Shreesh Chhabbifbad99f2021-01-20 09:07:25 -0800509
510 /*
511 * External Clock Gate
512 * true = Mainboard design uses external clock gating
513 * false = Mainboard design does not use external clock gating
514 *
515 */
516 bool external_clk_gated;
517
518 /*
519 * External PHY Gate
520 * true = Mainboard design uses external phy gating
521 * false = Mainboard design does not use external phy gating
522 *
523 */
524 bool external_phy_gated;
525
526 /*
527 * External Bypass Enable
528 * true = Mainboard design uses external bypass rail
529 * false = Mainboard design does not use external bypass rail
530 *
531 */
532 bool external_bypass;
Tim Crawford1724b572021-09-21 21:50:49 -0600533
534 /* i915 struct for GMA backlight control */
535 struct i915_gpu_controller_info gfx;
Subrata Banik91e89c52019-11-01 18:30:01 +0530536};
537
538typedef struct soc_intel_tigerlake_config config_t;
539
540#endif