Karthik Ramasubramanian has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47175 )
Change subject: ec/google/chromeec: Lower the severity of the debug statement ......................................................................
ec/google/chromeec: Lower the severity of the debug statement
Integrated TypeC MUX is used only in certain SoCs and hence the missing devicetree configuration is not an error. Lower the severity of the debug statement.
BUG=b:172186858 TEST=Build and boot to OS in Drawlat.
Change-Id: Ieb76e1ccfd04f1628617b2665b05be6718a25f81 Signed-off-by: Karthikeyan Ramasubramanian kramasub@google.com --- M src/ec/google/chromeec/ec_acpi.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/75/47175/1
diff --git a/src/ec/google/chromeec/ec_acpi.c b/src/ec/google/chromeec/ec_acpi.c index 344f5f4..3d1e5a9 100644 --- a/src/ec/google/chromeec/ec_acpi.c +++ b/src/ec/google/chromeec/ec_acpi.c @@ -141,7 +141,7 @@ continue;
if (!config->mux_conn[i]) - printk(BIOS_ERR, "ERROR: Mux connector info missing for Type-C port " + printk(BIOS_INFO, "Mux connector info missing for Type-C port " "#%d\n", i);
usb2_port = NULL;
Tim Wawrzynczak has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47175 )
Change subject: ec/google/chromeec: Lower the severity of the debug statement ......................................................................
Patch Set 1: Code-Review+2
Furquan Shaikh has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47175 )
Change subject: ec/google/chromeec: Lower the severity of the debug statement ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/47175/1/src/ec/google/chromeec/ec_a... File src/ec/google/chromeec/ec_acpi.c:
https://review.coreboot.org/c/coreboot/+/47175/1/src/ec/google/chromeec/ec_a... PS1, Line 143: if (!config->mux_conn[i]) : printk(BIOS_INFO, "Mux connector info missing for Type-C port " : "#%d\n", i); This was actually my fault. I had asked Tim to print an error here in case mux_conn is not found. But, as you stated, this is not really true for all platforms. We can have designs with Type-C connectors but without internal mux in the SoC. I think we should just drop this print and check and trust that the mainboard will provide the right configuration.
Hello build bot (Jenkins), Furquan Shaikh, Tim Wawrzynczak,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/47175
to look at the new patch set (#2).
Change subject: ec/google/chromeec: Remove the check for Internal TypeC MUX ......................................................................
ec/google/chromeec: Remove the check for Internal TypeC MUX
Integrated TypeC MUX is used only in certain SoCs and hence the missing devicetree configuration is not an error. Remove the check for internal TypeC MUX device and the associated debug statement.
BUG=b:172186858 TEST=Build and boot to OS in Drawlat.
Change-Id: Ieb76e1ccfd04f1628617b2665b05be6718a25f81 Signed-off-by: Karthikeyan Ramasubramanian kramasub@google.com --- M src/ec/google/chromeec/ec_acpi.c 1 file changed, 0 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/75/47175/2
Karthik Ramasubramanian has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47175 )
Change subject: ec/google/chromeec: Remove the check for Internal TypeC MUX ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/47175/1/src/ec/google/chromeec/ec_a... File src/ec/google/chromeec/ec_acpi.c:
https://review.coreboot.org/c/coreboot/+/47175/1/src/ec/google/chromeec/ec_a... PS1, Line 143: if (!config->mux_conn[i]) : printk(BIOS_INFO, "Mux connector info missing for Type-C port " : "#%d\n", i);
This was actually my fault. I had asked Tim to print an error here in case mux_conn is not found. […]
Done
Furquan Shaikh has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/47175 )
Change subject: ec/google/chromeec: Remove the check for Internal TypeC MUX ......................................................................
Patch Set 2: Code-Review+2
Karthik Ramasubramanian has submitted this change. ( https://review.coreboot.org/c/coreboot/+/47175 )
Change subject: ec/google/chromeec: Remove the check for Internal TypeC MUX ......................................................................
ec/google/chromeec: Remove the check for Internal TypeC MUX
Integrated TypeC MUX is used only in certain SoCs and hence the missing devicetree configuration is not an error. Remove the check for internal TypeC MUX device and the associated debug statement.
BUG=b:172186858 TEST=Build and boot to OS in Drawlat.
Change-Id: Ieb76e1ccfd04f1628617b2665b05be6718a25f81 Signed-off-by: Karthikeyan Ramasubramanian kramasub@google.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/47175 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Furquan Shaikh furquan@google.com --- M src/ec/google/chromeec/ec_acpi.c 1 file changed, 0 insertions(+), 4 deletions(-)
Approvals: build bot (Jenkins): Verified Furquan Shaikh: Looks good to me, approved
diff --git a/src/ec/google/chromeec/ec_acpi.c b/src/ec/google/chromeec/ec_acpi.c index 344f5f4..448ea4d 100644 --- a/src/ec/google/chromeec/ec_acpi.c +++ b/src/ec/google/chromeec/ec_acpi.c @@ -140,10 +140,6 @@ if (rv) continue;
- if (!config->mux_conn[i]) - printk(BIOS_ERR, "ERROR: Mux connector info missing for Type-C port " - "#%d\n", i); - usb2_port = NULL; usb3_port = NULL; usb4_port = NULL;