]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
usb: typec: ucsi: Handle incorrect num_connectors capability
authorMark Pearson <mpearson-lenovo@squebb.ca>
Thu, 21 Aug 2025 18:53:07 +0000 (14:53 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 19 Jan 2026 12:11:46 +0000 (13:11 +0100)
[ Upstream commit 30cd2cb1abf4c4acdb1ddb468c946f68939819fb ]

The UCSI spec states that the num_connectors field is 7 bits, and the
8th bit is reserved and should be set to zero.
Some buggy FW has been known to set this bit, and it can lead to a
system not booting.
Flag that the FW is not behaving correctly, and auto-fix the value
so that the system boots correctly.

Found on Lenovo P1 G8 during Linux enablement program. The FW will
be fixed, but seemed worth addressing in case it hit platforms that
aren't officially Linux supported.

Signed-off-by: Mark Pearson <mpearson-lenovo@squebb.ca>
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Link: https://lore.kernel.org/r/20250821185319.2585023-1-mpearson-lenovo@squebb.ca
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/usb/typec/ucsi/ucsi.c

index 0851d93d5909613d60e0f6dfd7245b5cad47cf42..60339c74669417cd63893a21603fbc8ad7962108 100644 (file)
@@ -1220,6 +1220,12 @@ static int ucsi_init(struct ucsi *ucsi)
                ret = -ENODEV;
                goto err_reset;
        }
+       /* Check if reserved bit set. This is out of spec but happens in buggy FW */
+       if (ucsi->cap.num_connectors & 0x80) {
+               dev_warn(ucsi->dev, "UCSI: Invalid num_connectors %d. Likely buggy FW\n",
+                        ucsi->cap.num_connectors);
+               ucsi->cap.num_connectors &= 0x7f; // clear bit and carry on
+       }
 
        /* Allocate the connectors. Released in ucsi_unregister_ppm() */
        ucsi->connector = kcalloc(ucsi->cap.num_connectors + 1,