Maulik V Vaghela has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47879 )
Change subject: soc/intel/jasperlake: Fill software noise mitigation related UPDs
......................................................................
soc/intel/jasperlake: Fill software noise mitigation related UPDs
Purpose of this patch is to expose and fill software noise
mitigation related parameters from coreboot so that
we can fine tune noise mitigation
This is work in progress patch and final patchset will allow
values to be filled from devietree once values are finalized
BUG=NONE
BRANCH=NONE
TEST=code compiles and UPDs are updated
Change-Id: Id022f32acc3fd3fe62f78e3053bacdeb33727c02
Signed-off-by: Maulik V Vaghela <maulik.v.vaghela(a)intel.com>
---
M src/soc/intel/jasperlake/fsp_params.c
1 file changed, 19 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/79/47879/1
diff --git a/src/soc/intel/jasperlake/fsp_params.c b/src/soc/intel/jasperlake/fsp_params.c
index 92c35c6..a76bea3 100644
--- a/src/soc/intel/jasperlake/fsp_params.c
+++ b/src/soc/intel/jasperlake/fsp_params.c
@@ -236,6 +236,25 @@
config->PchPmSlpS3MinAssert, config->PchPmSlpAMinAssert,
config->PchPmPwrCycDur);
+ /* Disable Fast slew rate for Deeper C states */
+ /* Note that each index is for specific VR */
+ params->FastPkgCRampDisable[0] = 0x00;
+ params->FastPkgCRampDisable[1] = 0x00;
+ params->FastPkgCRampDisable[2] = 0x00;
+ params->FastPkgCRampDisable[3] = 0x00;
+ params->FastPkgCRampDisable[4] = 0x00;
+
+ params->SlowSlewRate[0] = 0x00;
+ params->SlowSlewRate[1] = 0x00;
+ params->SlowSlewRate[2] = 0x00;
+ params->SlowSlewRate[3] = 0x00;
+ params->SlowSlewRate[4] = 0x00;
+
+ params->AcousticNoiseMitigation = 0x00;
+ params->PreWake = 0x00;
+ params->RampUp = 0x00;
+ params->RampDown = 0x00;
+
/* Override/Fill FSP Silicon Param for mainboard */
mainboard_silicon_init_params(params);
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/47879
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Id022f32acc3fd3fe62f78e3053bacdeb33727c02
Gerrit-Change-Number: 47879
Gerrit-PatchSet: 1
Gerrit-Owner: Maulik V Vaghela <maulik.v.vaghela(a)intel.com>
Gerrit-MessageType: newchange
EricR Lai has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/48139 )
Change subject: mb/google/brya: Initiate device tree
......................................................................
mb/google/brya: Initiate device tree
Initiate device tree based on latest schematic.
BUG=b:174266035
TEST=Build Test
Signed-off-by: Eric Lai <ericr_lai(a)compal.corp-partner.google.com>
Change-Id: Ia94119cb6d7eff6ea13c7d6a7dfd6ce891f706fd
---
M src/mainboard/google/brya/variants/baseboard/devicetree.cb
1 file changed, 38 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/39/48139/1
diff --git a/src/mainboard/google/brya/variants/baseboard/devicetree.cb b/src/mainboard/google/brya/variants/baseboard/devicetree.cb
index fbd7d72..e01c4ff 100644
--- a/src/mainboard/google/brya/variants/baseboard/devicetree.cb
+++ b/src/mainboard/google/brya/variants/baseboard/devicetree.cb
@@ -2,4 +2,42 @@
device cpu_cluster 0 on
device lapic 0 on end
end
+
+ device domain 0 on
+ device ref igpu on end
+ device ref dptf on end
+ device ref tbt_pcie_rp0 on end
+ device ref tbt_pcie_rp1 on end
+ device ref tbt_pcie_rp2 on end
+ device ref tbt_dma0 on end
+ device ref tbt_dma1 on end
+ device ref gna on end
+ device ref north_xhci on end
+ device ref cnvi_bt on end
+ device ref south_xhci on end
+ device ref shared_ram on end
+ device ref cnvi_wifi on
+ chip drivers/wifi/generic
+ register "wake" = "GPE0_PME_B0"
+ device generic 0 on end
+ end
+ end
+ device ref heci1 on end
+ device ref sata on end
+ device ref pcie_rp1 on end #USB3-1 Type A
+ device ref pcie_rp4 on end #USB3-4 WWAN
+ device ref pcie_rp5 on end #PCIE5 WLAN
+ device ref pcie_rp6 on end #PCIE6 WWAN
+ device ref pcie_rp8 on end #PCIE8 SD card
+ device ref pcie_rp9 on end #PCIE9-12 SSD
+ device ref uart0 on end
+ device ref gspi0 on end
+ device ref gspi1 on end
+ device ref pch_espi on
+ chip ec/google/chromeec
+ device pnp 0c09.0 on end
+ end
+ end
+ device ref hda on end
+ end
end
--
To view, visit https://review.coreboot.org/c/coreboot/+/48139
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia94119cb6d7eff6ea13c7d6a7dfd6ce891f706fd
Gerrit-Change-Number: 48139
Gerrit-PatchSet: 1
Gerrit-Owner: EricR Lai <ericr_lai(a)compal.corp-partner.google.com>
Gerrit-MessageType: newchange
EricR Lai has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/48153 )
Change subject: soc/intel/alderlake: Align chipset.cb with pci_devs.h
......................................................................
soc/intel/alderlake: Align chipset.cb with pci_devs.h
Refer pci_devs.h naming to align chipset.cb.
Correct thc0, thc1 and add cnvi_bt.
Signed-off-by: Eric Lai <ericr_lai(a)compal.corp-partner.google.com>
Change-Id: Iac33983dc12ed4e5b9257c50d82adc8e4e728ad6
---
M src/soc/intel/alderlake/chipset.cb
1 file changed, 9 insertions(+), 8 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/53/48153/1
diff --git a/src/soc/intel/alderlake/chipset.cb b/src/soc/intel/alderlake/chipset.cb
index ff81560..de880e3 100644
--- a/src/soc/intel/alderlake/chipset.cb
+++ b/src/soc/intel/alderlake/chipset.cb
@@ -13,18 +13,19 @@
device pci 08.0 alias gna off end
device pci 09.0 alias north_tracehub off end
device pci 0a.0 alias crashlog off end
- device pci 0d.0 alias north_xhci off end
- device pci 0d.1 alias north_xdci off end
- device pci 0d.2 alias tbt_dma0 off end
- device pci 0d.3 alias tbt_dma1 off end
+ device pci 0d.0 alias tcss_xhci off end
+ device pci 0d.1 alias tcss_xdci off end
+ device pci 0d.2 alias tcss_dma0 off end
+ device pci 0d.3 alias tcss_dma1 off end
device pci 0e.0 alias vmd off end
- device pci 10.6 alias thc0 off end
- device pci 10.7 alias thc1 off end
+ device pci 10.0 alias thc0 off end
+ device pci 10.1 alias thc1 off end
+ device pci 10.2 alias cnvi_bt off end
device pci 12.0 alias ish off end
device pci 12.6 alias gspi2 off end
device pci 13.0 alias gspi3 off end
- device pci 14.0 alias south_xhci off end
- device pci 14.1 alias south_xdci off end
+ device pci 14.0 alias xhci off end
+ device pci 14.1 alias usb_otg off end
device pci 14.2 alias shared_sram off end
device pci 14.3 alias cnvi_wifi off end
device pci 15.0 alias i2c0 off end
--
To view, visit https://review.coreboot.org/c/coreboot/+/48153
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Iac33983dc12ed4e5b9257c50d82adc8e4e728ad6
Gerrit-Change-Number: 48153
Gerrit-PatchSet: 1
Gerrit-Owner: EricR Lai <ericr_lai(a)compal.corp-partner.google.com>
Gerrit-MessageType: newchange