Attention is currently required from: Derek Huang, Dinesh Gehlot, Eran Mitrani, Intel coreboot Reviewers, Jakub "Kuba" Czapiga, Kapil Porwal, Tarun.
Subrata Banik has posted comments on this change by Derek Huang. ( https://review.coreboot.org/c/coreboot/+/86673?usp=email )
Change subject: drivers/intel/usb4: Add mainboard function to get EC port
......................................................................
Patch Set 3:
(1 comment)
File src/soc/intel/meteorlake/retimer.c:
https://review.coreboot.org/c/coreboot/+/86673/comment/c23d24bd_bc9cf16b?usp... :
PS3, Line 16: int ec_port = 0;
:
: ec_port = mainboard_retimer_get_index_for_typec(typec_port);
: if (ec_port >= 0) {
: printk(BIOS_INFO, "USB Type-C %d mapped to EC port %d\n", typec_port,
: ec_port);
: return ec_port;
: } else {
: ec_port = 0;
: }
```
int ec_port = mainboard_retimer_get_index_for_typec(typec_port);
if (ec_port >= 0) {
printk(BIOS_INFO, "USB Type-C %d mapped to EC port %d\n", typec_port, ec_port);
return ec_port;
} else {
printk(BIOS_WARN, "USB Type-C %d not mapped to any EC port\n", typec_port);
return 0; // Default to 0 when no mapping is found.
}
```
--
To view, visit
https://review.coreboot.org/c/coreboot/+/86673?usp=email
To unsubscribe, or for help writing mail filters, visit
https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ibaad2a95d8624564ae012d23e8a7f19f6701db2c
Gerrit-Change-Number: 86673
Gerrit-PatchSet: 3
Gerrit-Owner: Derek Huang
derekhuang@google.com
Gerrit-Reviewer: Dinesh Gehlot
digehlot@google.com
Gerrit-Reviewer: Eran Mitrani
mitrani@google.com
Gerrit-Reviewer: Intel coreboot Reviewers
intel_coreboot_reviewers@intel.com
Gerrit-Reviewer: Jakub "Kuba" Czapiga
czapiga@google.com
Gerrit-Reviewer: Kapil Porwal
kapilporwal@google.com
Gerrit-Reviewer: Subrata Banik
subratabanik@google.com
Gerrit-Reviewer: Tarun
tstuli@gmail.com
Gerrit-Reviewer: build bot (Jenkins)
no-reply@coreboot.org
Gerrit-Attention: Intel coreboot Reviewers
intel_coreboot_reviewers@intel.com
Gerrit-Attention: Eran Mitrani
mitrani@google.com
Gerrit-Attention: Jakub "Kuba" Czapiga
czapiga@google.com
Gerrit-Attention: Derek Huang
derekhuang@google.com
Gerrit-Attention: Dinesh Gehlot
digehlot@google.com
Gerrit-Attention: Kapil Porwal
kapilporwal@google.com
Gerrit-Attention: Tarun
tstuli@gmail.com
Gerrit-Comment-Date: Mon, 03 Mar 2025 01:53:31 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No