summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/tigerlake/chip.h
diff options
context:
space:
mode:
authorVenkata Krishna Nimmagadda <venkata.krishna.nimmagadda@intel.com>2020-05-15 00:13:40 -0700
committerTim Wawrzynczak <twawrzynczak@chromium.org>2020-06-12 18:40:11 +0000
commite18f71964da7f2eb688c58f8de9d56097ced1cbb (patch)
tree20044b2b948a66d19f337c6ac4b040d6274a8a69 /src/soc/intel/tigerlake/chip.h
parentb75d5743af4c56fca60fc15f830b03ce03e2187d (diff)
downloadcoreboot-e18f71964da7f2eb688c58f8de9d56097ced1cbb.tar.gz
coreboot-e18f71964da7f2eb688c58f8de9d56097ced1cbb.tar.bz2
coreboot-e18f71964da7f2eb688c58f8de9d56097ced1cbb.zip
soc/intel/tigerlake: Add devicetree support to change PCH VR settings
For Tiger Lake platforms, this patch set provides a way to override PCH external VR settings and ext rail voltage/current through devicetree. This enables setting of optimal settings for FIVRs for a particular PCH type. BUG=None BRANCH=None TEST=Build and boot volteer. Signed-off-by: Venkata Krishna Nimmagadda <venkata.krishna.nimmagadda@intel.com> Change-Id: Ic55472d392f27d153656afbe8692be7e243bb374 Reviewed-on: https://review.coreboot.org/c/coreboot/+/41424 Reviewed-by: Venkata Krishna Nimmagadda <Venkata.krishna.nimmagadda@intel.com> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Nick Vaccaro <nvaccaro@google.com> Reviewed-by: Sukumar Ghorai <sukumar.ghorai@intel.com> Reviewed-by: Wonkyu Kim <wonkyu.kim@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/tigerlake/chip.h')
-rw-r--r--src/soc/intel/tigerlake/chip.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/soc/intel/tigerlake/chip.h b/src/soc/intel/tigerlake/chip.h
index e69369981d38..9c179693ed31 100644
--- a/src/soc/intel/tigerlake/chip.h
+++ b/src/soc/intel/tigerlake/chip.h
@@ -22,6 +22,33 @@
#define MAX_HD_AUDIO_SNDW_LINKS 4
#define MAX_HD_AUDIO_SSP_LINKS 6
+/*
+ * Enable External V1P05 Rail in: BIT0:S0i1/S0i2,
+ * BIT1:S0i3, BIT2:S3, BIT3:S4, BIT4:S5
+ */
+enum fivr_enable_states {
+ FIVR_ENABLE_S0i1_S0i2 = BIT(0),
+ FIVR_ENABLE_S0i3 = BIT(1),
+ FIVR_ENABLE_S3 = BIT(2),
+ FIVR_ENABLE_S4 = BIT(3),
+ FIVR_ENABLE_S5 = BIT(4),
+};
+
+/*
+ * Enable the following for External V1p05 rail
+ * BIT1: Normal Active voltage supported
+ * BIT2: Minimum active voltage supported
+ * BIT3: Minimum Retention voltage supported
+ */
+enum fivr_voltage_supported {
+ FIVR_VOLTAGE_NORMAL = BIT(1),
+ FIVR_VOLTAGE_MIN_ACTIVE = BIT(2),
+ FIVR_VOLTAGE_MIN_RETENTION = BIT(3),
+};
+
+#define FIVR_ENABLE_ALL_SX (FIVR_ENABLE_S0i1_S0i2 | FIVR_ENABLE_S0i3 | \
+ FIVR_ENABLE_S3 | FIVR_ENABLE_S4 | FIVR_ENABLE_S5)
+
struct soc_intel_tigerlake_config {
/* Common struct containing soc config data required by common code */
@@ -316,6 +343,19 @@ struct soc_intel_tigerlake_config {
* Default 0. Setting this to 1 disables the SATA Power Optimizer.
*/
uint8_t SataPwrOptimizeDisable;
+
+ /* structure containing various settings for PCH FIVRs */
+ struct {
+ bool configure_ext_fivr;
+ enum fivr_enable_states v1p05_enable_bitmap;
+ enum fivr_enable_states vnn_enable_bitmap;
+ enum fivr_voltage_supported v1p05_supported_voltage_bitmap;
+ enum fivr_voltage_supported vnn_supported_voltage_bitmap;
+ /* External Icc Max for V1p05 rail in mA */
+ int v1p05_icc_max_ma;
+ /* External Vnn Voltage in mV */
+ int vnn_sx_voltage_mv;
+ } ext_fivr_settings;
};
typedef struct soc_intel_tigerlake_config config_t;