Skip to content

Commit d6b82da

Browse files
AngeloGioacchino Del Regnogregkh
AngeloGioacchino Del Regno
authored andcommitted
usb: typec: tcpci_rt1711h: Unmask alert interrupts to fix functionality
During probe, the TCPC alert interrupts are getting masked to avoid unwanted interrupts during chip setup: this is ok to do but there is no unmasking happening at any later time, which means that the chip will not raise any interrupt, essentially making it not functional as, while internally it does perform all of the intended functions, it won't signal anything to the outside. Unmask the alert interrupts to fix functionality. Fixes: ce08eae ("staging: typec: rt1711h typec chip driver") Cc: stable <stable@kernel.org> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Link: https://lore.kernel.org/r/20250219114700.41700-1-angelogioacchino.delregno@collabora.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 40e89ff commit d6b82da

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

drivers/usb/typec/tcpm/tcpci_rt1711h.c

+11
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,11 @@ static int rt1711h_probe(struct i2c_client *client)
334334
{
335335
int ret;
336336
struct rt1711h_chip *chip;
337+
const u16 alert_mask = TCPC_ALERT_TX_SUCCESS | TCPC_ALERT_TX_DISCARDED |
338+
TCPC_ALERT_TX_FAILED | TCPC_ALERT_RX_HARD_RST |
339+
TCPC_ALERT_RX_STATUS | TCPC_ALERT_POWER_STATUS |
340+
TCPC_ALERT_CC_STATUS | TCPC_ALERT_RX_BUF_OVF |
341+
TCPC_ALERT_FAULT;
337342

338343
chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
339344
if (!chip)
@@ -382,6 +387,12 @@ static int rt1711h_probe(struct i2c_client *client)
382387
dev_name(chip->dev), chip);
383388
if (ret < 0)
384389
return ret;
390+
391+
/* Enable alert interrupts */
392+
ret = rt1711h_write16(chip, TCPC_ALERT_MASK, alert_mask);
393+
if (ret < 0)
394+
return ret;
395+
385396
enable_irq_wake(client->irq);
386397

387398
return 0;

0 commit comments

Comments
 (0)