Kyösti Mälkki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/43870 )
Change subject: [TESTONLY] build with TRACE=y
......................................................................
[TESTONLY] build with TRACE=y
Change-Id: Iee20e3c1fc31aba704d813f909c39986df3e2c29
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
---
M src/Kconfig
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/70/43870/1
diff --git a/src/Kconfig b/src/Kconfig
index a4c2fa6..fb7cd2d 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -1055,7 +1055,7 @@
config TRACE
bool "Trace function calls"
- default n
+ default y
help
If enabled, every function will print information to console once
the function is entered. The syntax is ~0xaaaabbbb(0xccccdddd)
--
To view, visit https://review.coreboot.org/c/coreboot/+/43870
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Iee20e3c1fc31aba704d813f909c39986df3e2c29
Gerrit-Change-Number: 43870
Gerrit-PatchSet: 1
Gerrit-Owner: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-MessageType: newchange
Meera Ravindranath has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38682 )
Change subject: src/soc/tigerlake: Define and use a Kconfig for no of USB ports.
......................................................................
src/soc/tigerlake: Define and use a Kconfig for no of USB ports.
BUG=None
BRANCH=None
TEST=Compilation for jasper lake board is working
Change-Id: Ia8e88e92989fe40d7bd1c28942e005cb0d862fcb
Signed-off-by: Meera Ravindranath <meera.ravindranath(a)intel.com>
---
M src/soc/intel/tigerlake/Kconfig
M src/soc/intel/tigerlake/fsp_params_jsl.c
M src/soc/intel/tigerlake/fsp_params_tgl.c
3 files changed, 14 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/82/38682/1
diff --git a/src/soc/intel/tigerlake/Kconfig b/src/soc/intel/tigerlake/Kconfig
index cef1fd0..f50e40e 100644
--- a/src/soc/intel/tigerlake/Kconfig
+++ b/src/soc/intel/tigerlake/Kconfig
@@ -156,6 +156,16 @@
default 3 if SOC_INTEL_JASPERLAKE
default 4 if SOC_INTEL_TIGERLAKE
+config SOC_INTEL_USB2_DEV_MAX
+ int
+ default 8 if SOC_INTEL_JASPERLAKE
+ default 10 if SOC_INTEL_TIGERLAKE
+
+config SOC_INTEL_USB3_DEV_MAX
+ int
+ default 6 if SOC_INTEL_JASPERLAKE
+ default 4 if SOC_INTEL_TIGERLAKE
+
config SOC_INTEL_I2C_DEV_MAX
int
default 6
diff --git a/src/soc/intel/tigerlake/fsp_params_jsl.c b/src/soc/intel/tigerlake/fsp_params_jsl.c
index 8046b2e..d5d623b 100644
--- a/src/soc/intel/tigerlake/fsp_params_jsl.c
+++ b/src/soc/intel/tigerlake/fsp_params_jsl.c
@@ -106,7 +106,7 @@
memset(params->PcieRpPmSci, 0, sizeof(params->PcieRpPmSci));
/* USB configuration */
- for (i = 0; i < ARRAY_SIZE(config->usb2_ports); i++) {
+ for (i = 0; i < CONFIG_SOC_INTEL_USB2_DEV_MAX; i++) {
params->PortUsb20Enable[i] = config->usb2_ports[i].enable;
params->Usb2OverCurrentPin[i] = config->usb2_ports[i].ocpin;
@@ -116,7 +116,7 @@
params->Usb2PhyPehalfbit[i] = config->usb2_ports[i].pre_emp_bit;
}
- for (i = 0; i < ARRAY_SIZE(config->usb3_ports); i++) {
+ for (i = 0; i < CONFIG_SOC_INTEL_USB3_DEV_MAX; i++) {
params->PortUsb30Enable[i] = config->usb3_ports[i].enable;
params->Usb3OverCurrentPin[i] = config->usb3_ports[i].ocpin;
diff --git a/src/soc/intel/tigerlake/fsp_params_tgl.c b/src/soc/intel/tigerlake/fsp_params_tgl.c
index 305748e..f027ee0 100644
--- a/src/soc/intel/tigerlake/fsp_params_tgl.c
+++ b/src/soc/intel/tigerlake/fsp_params_tgl.c
@@ -89,7 +89,7 @@
params->IomTypeCPortPadCfg[i] = 0x09000000;
/* USB */
- for (i = 0; i < ARRAY_SIZE(config->usb2_ports); i++) {
+ for (i = 0; i < CONFIG_SOC_INTEL_USB2_DEV_MAX; i++) {
params->PortUsb20Enable[i] = config->usb2_ports[i].enable;
params->Usb2OverCurrentPin[i] = config->usb2_ports[i].ocpin;
params->Usb2PhyPetxiset[i] = config->usb2_ports[i].pre_emp_bias;
@@ -98,7 +98,7 @@
params->Usb2PhyPehalfbit[i] = config->usb2_ports[i].pre_emp_bit;
}
- for (i = 0; i < ARRAY_SIZE(config->usb3_ports); i++) {
+ for (i = 0; i < CONFIG_SOC_INTEL_USB3_DEV_MAX; i++) {
params->PortUsb30Enable[i] = config->usb3_ports[i].enable;
params->Usb3OverCurrentPin[i] = config->usb3_ports[i].ocpin;
if (config->usb3_ports[i].tx_de_emp) {
--
To view, visit https://review.coreboot.org/c/coreboot/+/38682
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ia8e88e92989fe40d7bd1c28942e005cb0d862fcb
Gerrit-Change-Number: 38682
Gerrit-PatchSet: 1
Gerrit-Owner: Meera Ravindranath <meera.ravindranath(a)intel.com>
Gerrit-MessageType: newchange
Zhuohao Lee has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/48136 )
Change subject: mb/google/volteer: Create copano variant
......................................................................
Patch Set 2: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/48136
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib06625f492f68a6a6f5c6b382772b68f1eb681ef
Gerrit-Change-Number: 48136
Gerrit-PatchSet: 2
Gerrit-Owner: Frank Chu <frank_chu(a)pegatron.corp-partner.google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Zhuohao Lee <zhuohao(a)chromium.org>
Gerrit-Reviewer: Zhuohao Lee <zhuohao(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Daniel Peng <daniel_peng(a)pegatron.corp-partner.google.com>
Gerrit-CC: Hank Lin <hank2_lin(a)pegatron.corp-partner.google.com>
Gerrit-CC: Kane Chen <kane_chen(a)pegatron.corp-partner.google.com>
Gerrit-CC: Ken Lu <ken_lu(a)pegatron.corp-partner.google.com>
Gerrit-Comment-Date: Thu, 03 Dec 2020 10:30:26 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Johnny Lin has uploaded a new patch set (#10) to the change originally created by Jingle Hsu. ( https://review.coreboot.org/c/coreboot/+/47229 )
Change subject: mb/ocp/deltalake: Update GPIO configurations according to schematics
......................................................................
mb/ocp/deltalake: Update GPIO configurations according to schematics
On Delta Lake DVT, dump GPIO settings from UEFI firmware for new PCH
(C621A) by util/inteltool and generate the header file by util/intelp2m.
The DVT and EVT GPIO configurations are the same.
The initial value of GPP_B20 (POST complete) should be high, otherwise
BIC would get incorrect sensor readings and see events like PCH prochot.
Tested=On OCP Delta Lake DVT, dump GPIO configurations
by Intel ITP and verify the results match with the header file.
Change-Id: Ic9837a22bc231a4cb919de316ff6f6ee88411ab8
Signed-off-by: Jingle Hsu <jingle_hsu(a)wiwynn.com>
---
M src/mainboard/ocp/deltalake/include/cpxsp_dl_gpio.h
1 file changed, 23 insertions(+), 23 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/47229/10
--
To view, visit https://review.coreboot.org/c/coreboot/+/47229
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ic9837a22bc231a4cb919de316ff6f6ee88411ab8
Gerrit-Change-Number: 47229
Gerrit-PatchSet: 10
Gerrit-Owner: Jingle Hsu <jingle_hsu(a)wiwynn.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Bryant Ou <bryant.ou.q(a)gmail.com>
Gerrit-Reviewer: Johnny Lin <Johnny_Lin(a)wiwynn.com>
Gerrit-Reviewer: Jonathan Zhang <jonzhang(a)fb.com>
Gerrit-Reviewer: Marc Jones <marc(a)marcjonesconsulting.com>
Gerrit-Reviewer: Maxim Polyakov <max.senia.poliak(a)gmail.com>
Gerrit-Reviewer: Morgan Jang <Morgan_Jang(a)wiwynn.com>
Gerrit-Reviewer: Tim Chu <Tim.Chu(a)quantatw.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-CC: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-MessageType: newpatchset
Sathya Prakash M R has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/48000 )
Change subject: mb/intel/adlrvp: Enable I2S Audio for ADLRVP
......................................................................
Patch Set 5: Code-Review+1
> Patch Set 5:
>
> on ERB we had HS INT working which is not on RVP. Will wait for verification on that before giving a +1.
Now we have HS INT working. I'm good with changes, Note that playback on HS doesnt work - same as ERB.
--
To view, visit https://review.coreboot.org/c/coreboot/+/48000
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I948b4528ea5c4c378a2e8ff7bb88546da1413df2
Gerrit-Change-Number: 48000
Gerrit-PatchSet: 5
Gerrit-Owner: Meera Ravindranath <meera.ravindranath(a)intel.com>
Gerrit-Reviewer: Sathya Prakash M R <sathya.prakash.m.r(a)intel.com>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: Sugnan Prabhu S <sugnan.prabhu.s(a)intel.com>
Gerrit-Reviewer: Vamshi Krishna Gopal <vamshi.krishna.gopal(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Thu, 03 Dec 2020 07:33:02 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment