blob: 1b08ccdbd647041cbfc9705a39195c93459cd669 [file] [log] [blame]
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -07001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#ifndef _SOC_CHIP_H_
4#define _SOC_CHIP_H_
5
6#include <drivers/i2c/designware/dw_i2c.h>
Sumeet R Pawnikardbf132c2023-04-13 22:02:01 +05307#include <device/pci_ids.h>
Dinesh Gehlot166c75c72023-01-03 05:26:19 +00008#include <gpio.h>
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -07009#include <intelblocks/cfg.h>
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -070010#include <intelblocks/gspi.h>
11#include <intelblocks/power_limit.h>
12#include <intelblocks/pcie_rp.h>
13#include <intelblocks/tcss.h>
14#include <soc/gpe.h>
15#include <soc/pci_devs.h>
16#include <soc/pmc.h>
17#include <soc/serialio.h>
18#include <soc/usb.h>
19#include <stdint.h>
20
Marx Wangbe0e6942023-10-19 15:15:22 +080021/* Define config parameters for In-Band ECC (IBECC). */
22#define MAX_IBECC_REGIONS 8
23
Bora Guvendik9f15dee2023-05-15 14:28:44 -070024#define MAX_SAGV_POINTS 4
Ronak Kanabarb807a1d2023-05-31 10:28:51 +053025#define MAX_HD_AUDIO_SDI_LINKS 2
Bora Guvendik9f15dee2023-05-15 14:28:44 -070026
Marx Wangbe0e6942023-10-19 15:15:22 +080027/* In-Band ECC Operation Mode */
28enum ibecc_mode {
29 IBECC_MODE_PER_REGION,
30 IBECC_MODE_NONE,
31 IBECC_MODE_ALL
32};
33
34struct ibecc_config {
35 bool enable;
36 bool parity_en;
37 enum ibecc_mode mode;
38 bool region_enable[MAX_IBECC_REGIONS];
39 uint16_t region_base[MAX_IBECC_REGIONS];
40 uint16_t region_mask[MAX_IBECC_REGIONS];
41};
42
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -070043/* Types of different SKUs */
44enum soc_intel_meteorlake_power_limits {
Kane Chen6feb1de2023-10-20 22:09:57 +080045 MTL_P_282_242_CORE,
Curtis Chen08db7cd2023-10-31 16:18:35 +080046 MTL_P_682_482_CORE,
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -070047 MTL_POWER_LIMITS_COUNT
48};
49
Sumeet R Pawnikardbf132c2023-04-13 22:02:01 +053050/* TDP values for different SKUs */
51enum soc_intel_meteorlake_cpu_tdps {
Sumeet Pawnikar33c61712023-07-04 14:34:36 +053052 TDP_15W = 15,
53 TDP_28W = 28
Sumeet R Pawnikardbf132c2023-04-13 22:02:01 +053054};
55
56/* Mapping of different SKUs based on CPU ID and TDP values */
57static const struct {
58 unsigned int cpu_id;
59 enum soc_intel_meteorlake_power_limits limits;
60 enum soc_intel_meteorlake_cpu_tdps cpu_tdp;
61} cpuid_to_mtl[] = {
Kane Chen6feb1de2023-10-20 22:09:57 +080062 { PCI_DID_INTEL_MTL_P_ID_5, MTL_P_282_242_CORE, TDP_15W },
63 { PCI_DID_INTEL_MTL_P_ID_2, MTL_P_282_242_CORE, TDP_15W },
Curtis Chen08db7cd2023-10-31 16:18:35 +080064 { PCI_DID_INTEL_MTL_P_ID_3, MTL_P_682_482_CORE, TDP_28W },
65 { PCI_DID_INTEL_MTL_P_ID_1, MTL_P_682_482_CORE, TDP_28W },
Sumeet R Pawnikardbf132c2023-04-13 22:02:01 +053066};
67
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -070068/* Types of display ports */
69enum ddi_ports {
70 DDI_PORT_A,
71 DDI_PORT_B,
72 DDI_PORT_C,
73 DDI_PORT_1,
74 DDI_PORT_2,
75 DDI_PORT_3,
76 DDI_PORT_4,
77 DDI_PORT_COUNT,
78};
79
80enum ddi_port_flags {
Maximilian Brune27900ea2023-01-04 19:22:35 +010081 DDI_ENABLE_DDC = 1 << 0, // Display Data Channel
82 DDI_ENABLE_HPD = 1 << 1, // Hot Plug Detect
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -070083};
84
Kapil Porwalae5ba372023-01-04 21:49:36 +053085/*
86 * The Max Pkg Cstate
87 * Values 0 - C0/C1, 1 - C2, 2 - C3, 3 - C6, 4 - C7, 5 - C7S, 6 - C8, 7 - C9, 8 - C10,
88 * 254 - CPU Default , 255 - Auto.
89 */
90enum pkgcstate_limit {
91 LIMIT_C0_C1 = 0,
92 LIMIT_C2 = 1,
93 LIMIT_C3 = 2,
94 LIMIT_C6 = 3,
95 LIMIT_C7 = 4,
96 LIMIT_C7S = 5,
97 LIMIT_C8 = 6,
98 LIMIT_C9 = 7,
99 LIMIT_C10 = 8,
100 LIMIT_CPUDEFAULT = 254,
101 LIMIT_AUTO = 255,
102};
103
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700104/* Bit values for use in LpmStateEnableMask. */
105enum lpm_state_mask {
106 LPM_S0i2_0 = BIT(0),
107 LPM_S0i2_1 = BIT(1),
108 LPM_S0i2_2 = BIT(2),
109 LPM_S0i3_0 = BIT(3),
110 LPM_S0i3_1 = BIT(4),
111 LPM_S0i3_2 = BIT(5),
112 LPM_S0i3_3 = BIT(6),
113 LPM_S0i3_4 = BIT(7),
114 LPM_S0iX_ALL = LPM_S0i2_0 | LPM_S0i2_1 | LPM_S0i2_2
115 | LPM_S0i3_0 | LPM_S0i3_1 | LPM_S0i3_2 | LPM_S0i3_3 | LPM_S0i3_4,
116};
117
Jay Patel310698c2023-06-01 14:01:43 -0700118/*
119 * As per definition from FSP header:
120 * - [0] for IA
121 * - [1] for GT
122 * - [2] for SA
123 * - [3] through [5] are reserved
124 */
125enum vr_domain {
126 VR_DOMAIN_IA,
127 VR_DOMAIN_GT,
128 VR_DOMAIN_SA,
129 NUM_VR_DOMAINS
130};
131
Subrata Banik26fdb062023-11-28 20:36:45 +0530132/*
133 * Slew Rate configuration for Deep Package C States for VR domain.
134 * They are fast time divided by 2.
135 * 0 - Fast/2
136 * 1 - Fast/4
137 * 2 - Fast/8
138 * 3 - Fast/16
139 */
140enum slew_rate {
141 SLEW_FAST_2,
142 SLEW_FAST_4,
143 SLEW_FAST_8,
144 SLEW_FAST_16,
145 SLEW_IGNORE = 0xff,
146};
147
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700148struct soc_intel_meteorlake_config {
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700149 /* Common struct containing soc config data required by common code */
150 struct soc_intel_common_config common_soc_config;
151
152 /* Common struct containing power limits configuration information */
153 struct soc_power_limits_config power_limits_config[MTL_POWER_LIMITS_COUNT];
154
155 /* Gpio group routed to each dword of the GPE0 block. Values are
156 * of the form PMC_GPP_[A:U] or GPD. */
157 uint8_t pmc_gpe0_dw0; /* GPE0_31_0 STS/EN */
158 uint8_t pmc_gpe0_dw1; /* GPE0_63_32 STS/EN */
159 uint8_t pmc_gpe0_dw2; /* GPE0_95_64 STS/EN */
160
161 /* Generic IO decode ranges */
162 uint32_t gen1_dec;
163 uint32_t gen2_dec;
164 uint32_t gen3_dec;
165 uint32_t gen4_dec;
166
167 /* Enable S0iX support */
168 int s0ix_enable;
169 /* Support for TCSS xhci, xdci, TBT PCIe root ports and DMA controllers */
170 uint8_t tcss_d3_hot_disable;
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700171 /* Enable DPTF support */
172 int dptf_enable;
173
174 /* Deep SX enable for both AC and DC */
175 int deep_s3_enable_ac;
176 int deep_s3_enable_dc;
177 int deep_s5_enable_ac;
178 int deep_s5_enable_dc;
179
180 /* Deep Sx Configuration
181 * DSX_EN_WAKE_PIN - Enable WAKE# pin
182 * DSX_EN_LAN_WAKE_PIN - Enable LAN_WAKE# pin
183 * DSX_DIS_AC_PRESENT_PD - Disable pull-down on AC_PRESENT pin */
184 uint32_t deep_sx_config;
185
186 /* TCC activation offset */
187 uint32_t tcc_offset;
188
Marx Wangbe0e6942023-10-19 15:15:22 +0800189 /* In-Band ECC (IBECC) configuration */
190 struct ibecc_config ibecc;
191
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700192 /* System Agent dynamic frequency support. Only effects ULX/ULT CPUs.
193 * When enabled memory will be training at two different frequencies.
Subrata Banik289f9a52023-01-20 21:38:05 +0530194 * 0:Disabled, 1:Enabled
195 */
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700196 enum {
Subrata Banik289f9a52023-01-20 21:38:05 +0530197 SAGV_DISABLED,
198 SAGV_ENABLED,
199 } sagv;
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700200
Subrata Banika1933082023-05-22 14:22:37 +0530201 /* System Agent dynamic frequency work points that memory will be training
202 * at the enabled frequencies. Possible work points are:
203 * 0x3:Points0_1, 0x7:Points0_1_2, 0xF:AllPoints0_1_2_3
204 */
205 enum {
206 SAGV_POINTS_0_1 = 0x03,
207 SAGV_POINTS_0_1_2 = 0x07,
208 SAGV_POINTS_0_1_2_3 = 0x0f,
209 } sagv_wp_bitmap;
210
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700211 /* Rank Margin Tool. 1:Enable, 0:Disable */
Subrata Banik289f9a52023-01-20 21:38:05 +0530212 uint8_t rmt;
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700213
214 /* USB related */
215 struct usb2_port_config usb2_ports[CONFIG_SOC_INTEL_USB2_DEV_MAX];
216 struct usb3_port_config usb3_ports[CONFIG_SOC_INTEL_USB3_DEV_MAX];
217 /* Wake Enable Bitmap for USB2 ports */
218 uint16_t usb2_wake_enable_bitmap;
219 /* Wake Enable Bitmap for USB3 ports */
220 uint16_t usb3_wake_enable_bitmap;
221 /* Program OC pins for TCSS */
222 struct tcss_port_config tcss_ports[MAX_TYPE_C_PORTS];
John Zhao54a03e42022-08-03 20:07:03 -0700223 /* Validate TBT firmware authenticated and loaded into IMR */
224 bool tbt_authentication;
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700225
226 /* SATA related */
227 uint8_t sata_mode;
228 uint8_t sata_salp_support;
229 uint8_t sata_ports_enable[8];
230 uint8_t sata_ports_dev_slp[8];
231
232 /*
233 * Enable(0)/Disable(1) SATA Power Optimizer on PCH side.
234 * Default 0. Setting this to 1 disables the SATA Power Optimizer.
235 */
236 uint8_t sata_pwr_optimize_disable;
237
238 /*
239 * SATA Port Enable Dito Config.
240 * Enable DEVSLP Idle Timeout settings (DmVal, DitoVal).
241 */
242 uint8_t sata_ports_enable_dito_config[8];
243
244 /* SataPortsDmVal is the DITO multiplier. Default is 15. */
245 uint8_t sata_ports_dm_val[8];
246 /* SataPortsDitoVal is the DEVSLP Idle Timeout, default is 625ms */
247 uint16_t sata_ports_dito_val[8];
248
249 /* Audio related */
250 uint8_t pch_hda_dsp_enable;
251
Ronak Kanabarb807a1d2023-05-31 10:28:51 +0530252 bool pch_hda_sdi_enable[MAX_HD_AUDIO_SDI_LINKS];
253
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700254 /* iDisp-Link T-Mode 0: 2T, 2: 4T, 3: 8T, 4: 16T */
255 enum {
256 HDA_TMODE_2T = 0,
257 HDA_TMODE_4T = 2,
258 HDA_TMODE_8T = 3,
259 HDA_TMODE_16T = 4,
260 } pch_hda_idisp_link_tmode;
261
262 /* iDisp-Link Freq 4: 96MHz, 3: 48MHz. */
263 enum {
264 HDA_LINKFREQ_48MHZ = 3,
265 HDA_LINKFREQ_96MHZ = 4,
266 } pch_hda_idisp_link_frequency;
267
268 bool pch_hda_idisp_codec_enable;
269
270 struct pcie_rp_config pcie_rp[CONFIG_MAX_ROOT_PORTS];
271 uint8_t pcie_clk_config_flag[CONFIG_MAX_PCIE_CLOCK_SRC];
272
273 /* Gfx related */
274 enum {
275 IGD_SM_0MB = 0x00,
276 IGD_SM_32MB = 0x01,
277 IGD_SM_64MB = 0x02,
278 IGD_SM_96MB = 0x03,
279 IGD_SM_128MB = 0x04,
280 IGD_SM_160MB = 0x05,
281 IGD_SM_4MB = 0xF0,
282 IGD_SM_8MB = 0xF1,
283 IGD_SM_12MB = 0xF2,
284 IGD_SM_16MB = 0xF3,
285 IGD_SM_20MB = 0xF4,
286 IGD_SM_24MB = 0xF5,
287 IGD_SM_28MB = 0xF6,
288 IGD_SM_36MB = 0xF8,
289 IGD_SM_40MB = 0xF9,
290 IGD_SM_44MB = 0xFA,
291 IGD_SM_48MB = 0xFB,
292 IGD_SM_52MB = 0xFC,
293 IGD_SM_56MB = 0xFD,
294 IGD_SM_60MB = 0xFE,
295 } igd_dvmt50_pre_alloc;
296 uint8_t skip_ext_gfx_scan;
297
298 /* Enable/Disable EIST. 1b:Enabled, 0b:Disabled */
299 uint8_t eist_enable;
300
Jay Patel310698c2023-06-01 14:01:43 -0700301 /*
302 * When enabled, this feature makes the SoC throttle when the power
303 * consumption exceeds the I_TRIP threshold.
304 *
305 * FSPs sets a by default I_TRIP threshold adapted to the current SoC
306 * and assuming a Voltage Regulator error accuracy of 6.5%.
307 */
308 bool enable_fast_vmode[NUM_VR_DOMAINS];
309
310 /*
311 * Current Excursion Protection needs to be set for each VR domain
312 * in order to be able to enable fast Vmode.
313 */
314 bool cep_enable[NUM_VR_DOMAINS];
315
316 /*
317 * VR Fast Vmode I_TRIP threshold.
318 * 0-255A in 1/4 A units. Example: 400 = 100A
319 * This setting overrides the default value set by FSPs when Fast VMode
320 * is enabled.
321 */
322 uint16_t fast_vmode_i_trip[NUM_VR_DOMAINS];
323
Jeremy Compostellaa7a65222023-10-16 16:08:55 -0700324 /*
325 * Power state current threshold 1.
326 * Defined in 1/4 A increments. A value of 400 = 100A. Range 0-512,
327 * which translates to 0-128A. 0 = AUTO. [0] for IA, [1] for GT, [2] for
328 * SA, [3] through [5] are Reserved.
329 */
330 uint16_t ps_cur_1_threshold[NUM_VR_DOMAINS];
331
332 /*
333 * Power state current threshold 2.
334 * Defined in 1/4 A increments. A value of 400 = 100A. Range 0-512,
335 * which translates to 0-128A. 0 = AUTO. [0] for IA, [1] for GT, [2] for
336 * SA, [3] through [5] are Reserved.
337 */
338 uint16_t ps_cur_2_threshold[NUM_VR_DOMAINS];
339
340 /*
341 * Power state current threshold 3.
342 * Defined in 1/4 A increments. A value of 400 = 100A. Range 0-512,
343 * which translates to 0-128A. 0 = AUTO. [0] for IA, [1] for GT, [2] for
344 * SA, [3] through [5] are Reserved.
345 */
346 uint16_t ps_cur_3_threshold[NUM_VR_DOMAINS];
347
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700348 uint8_t PmTimerDisabled;
349 /*
350 * SerialIO device mode selection:
351 * PchSerialIoDisabled,
352 * PchSerialIoPci,
353 * PchSerialIoHidden,
354 * PchSerialIoLegacyUart,
355 * PchSerialIoSkipInit
356 */
357 uint8_t serial_io_i2c_mode[CONFIG_SOC_INTEL_I2C_DEV_MAX];
358 uint8_t serial_io_gspi_mode[CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX];
359 uint8_t serial_io_uart_mode[CONFIG_SOC_INTEL_UART_DEV_MAX];
360 /*
361 * GSPIn Default Chip Select Mode:
362 * 0:Hardware Mode,
363 * 1:Software Mode
364 */
365 uint8_t serial_io_gspi_cs_mode[CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX];
366 /*
367 * GSPIn Default Chip Select State:
368 * 0: Low,
369 * 1: High
370 */
371 uint8_t serial_io_gspi_cs_state[CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX];
372
Kapil Porwal78cc76d2023-04-12 10:30:48 +0530373 /* CNVi WiFi Core Enable/Disable */
374 bool cnvi_wifi_core;
375
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700376 /* CNVi BT Core Enable/Disable */
377 bool cnvi_bt_core;
378
379 /* CNVi BT Audio Offload: Enable/Disable BT Audio Offload. */
380 bool cnvi_bt_audio_offload;
381
382 /*
383 * These GPIOs will be programmed by the IOM to handle biasing of the
384 * Type-C aux (SBU) signals when certain alternate modes are used.
385 * `pad_auxn_dc` should be assigned to the GPIO pad providing negative
386 * bias (name usually contains `AUXN_DC` or `AUX_N`); similarly,
387 * `pad_auxp_dc` should be assigned to the GPIO providing positive bias
388 * (name often contains `AUXP_DC` or `_AUX_P`).
389 */
390 struct typec_aux_bias_pads typec_aux_bias_pads[MAX_TYPE_C_PORTS];
391
392 /*
393 * SOC Aux orientation override:
394 * This is a bitfield that corresponds to up to 4 TCSS ports on MTL.
395 * Even numbered bits (0, 2, 4, 6) control the retimer being handled by SOC.
396 * Odd numbered bits (1, 3, 5, 7) control the orientation of the physical aux lines
397 * on the motherboard.
398 */
399 uint16_t tcss_aux_ori;
400
401 /* Connect Topology Command timeout value */
402 uint16_t itbt_connect_topology_timeout_in_ms;
403
404 /*
405 * Override GPIO PM configuration:
406 * 0: Use FSP default GPIO PM program,
407 * 1: coreboot to override GPIO PM program
408 */
409 uint8_t gpio_override_pm;
410
411 /*
412 * GPIO PM configuration: 0 to disable, 1 to enable power gating
413 * Bit 6-7: Reserved
414 * Bit 5: MISCCFG_GPSIDEDPCGEN
415 * Bit 4: MISCCFG_GPRCOMPCDLCGEN
416 * Bit 3: MISCCFG_GPRTCDLCGEN
417 * Bit 2: MISCCFG_GSXLCGEN
418 * Bit 1: MISCCFG_GPDPCGEN
419 * Bit 0: MISCCFG_GPDLCGEN
420 */
421 uint8_t gpio_pm[TOTAL_GPIO_COMM];
422
423 /* DP config */
424 /*
425 * Port config
426 * 0:Disabled, 1:eDP, 2:MIPI DSI
427 */
428 uint8_t ddi_port_A_config;
429 uint8_t ddi_port_B_config;
430
431 /* Enable(1)/Disable(0) HPD/DDC */
432 uint8_t ddi_ports_config[DDI_PORT_COUNT];
433
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700434 /*
435 * Override CPU flex ratio value:
436 * CPU ratio value controls the maximum processor non-turbo ratio.
437 * Valid Range 0 to 63.
438 *
439 * In general descriptor provides option to set default cpu flex ratio.
440 * Default cpu flex ratio is 0 ensures booting with non-turbo max frequency.
441 * That's the reason FSP skips cpu_ratio override if cpu_ratio is 0.
442 *
443 * Only override CPU flex ratio if don't want to boot with non-turbo max.
444 */
445 uint8_t cpu_ratio_override;
446
447 /*
448 * Enable(0)/Disable(1) DMI Power Optimizer on PCH side.
449 * Default 0. Setting this to 1 disables the DMI Power Optimizer.
450 */
451 uint8_t dmi_pwr_optimize_disable;
452
453 /*
454 * Enable(1)/Disable(0) CPU Replacement check.
455 * Default 0. Setting this to 1 to check CPU replacement.
456 */
457 uint8_t cpu_replacement_check;
458
459 /* ISA Serial Base selection. */
460 enum {
461 ISA_SERIAL_BASE_ADDR_3F8,
462 ISA_SERIAL_BASE_ADDR_2F8,
463 } isa_serial_uart_base;
464
465 /*
466 * Assign clock source port for GbE. 0: Disable, N-1: port number
467 * Default 0.
468 */
469 uint8_t lan_clk;
Wonkyu Kime5f6ff82022-10-13 13:34:27 -0700470
471 /*
Sukumar Ghoraibab976b2023-07-31 03:09:40 -0700472 * Enable or Disable C1 C-state Auto Demotion & un-demotion
473 * The algorithm looks at the behavior of the wake up tracker, how
474 * often it is waking up, and based on that it demote the c-state.
475 * Default 0. Set this to 1 in order to disable C1-state auto demotion.
476 * NOTE: Un-Demotion from Demoted C1 needs to be disabled when
477 * C1 C-state Auto Demotion is disabled.
478 */
479 bool disable_c1_state_auto_demotion;
480
481 /*
Kapil Porwalae5bc432023-01-04 22:03:02 +0530482 * Enable or Disable Package C-state Demotion.
483 * Default is set to 0.
484 * Set this to 1 in order to disable Package C-state demotion.
Sukumar Ghoraib7f602a2023-10-04 23:37:12 -0700485 * NOTE: Un-Demotion from demoted Package C-state needs to be disabled
486 * when auto demotion is disabled.
Kapil Porwalae5bc432023-01-04 22:03:02 +0530487 */
488 bool disable_package_c_state_demotion;
Yong Zhi309d5a52023-02-14 17:25:17 -0600489
490 /* Enable PCH to CPU energy report feature. */
491 bool pch_pm_energy_report_enable;
Subrata Banikd0d7f472023-04-01 14:48:15 +0530492
493 /* Energy-Performance Preference (HWP feature) */
494 bool enable_energy_perf_pref;
495 uint8_t energy_perf_pref_value;
Subrata Banikad6073c2023-04-01 20:37:12 +0530496
497 bool disable_vmx;
Bora Guvendik9f15dee2023-05-15 14:28:44 -0700498
499 /*
500 * SAGV Frequency per point in Mhz. 0 is Auto, otherwise holds the
501 * frequency value expressed as an integer. For example: 1867
502 */
503 uint16_t sagv_freq_mhz[MAX_SAGV_POINTS];
504
505 /* Gear Selection for SAGV points. 0: Auto, 1: Gear 1, 2: Gear 2, 4: Gear 4 */
506 uint8_t sagv_gear[MAX_SAGV_POINTS];
Subrata Banik9c588302023-09-22 12:45:45 +0530507
508 /*
509 * Enable or Disable Reduced BasicMemoryTest size.
510 * Default is set to 0.
511 * Set this to 1 in order to reduce BasicMemoryTest size
512 */
513 bool lower_basic_mem_test_size;
Jakub Czapigabfadc782023-07-28 14:28:50 +0000514
515 /* Platform Power Pmax in Watts. Zero means automatic. */
516 uint16_t psys_pmax_watts;
Subrata Banik26fdb062023-11-28 20:36:45 +0530517
518 /* Enable or Disable Acoustic Noise Mitigation feature */
519 uint8_t enable_acoustic_noise_mitigation;
520 /* Disable Fast Slew Rate for Deep Package C States for VR domains */
521 uint8_t disable_fast_pkgc_ramp[NUM_VR_DOMAINS];
522 /*
523 * Slew Rate configuration for Deep Package C States for VR domains
524 * as per `enum slew_rate` data type.
525 */
526 uint8_t slow_slew_rate_config[NUM_VR_DOMAINS];
Ravi Sarawadi8069b5d2022-04-10 23:36:52 -0700527};
528
529typedef struct soc_intel_meteorlake_config config_t;
530
531#endif