* [RFC] Fix stuck UCSI controller on DELL
@ 2024-01-03 10:06 Christian A. Ehrhardt
2024-01-04 11:59 ` Heikki Krogerus
0 siblings, 1 reply; 6+ messages in thread
From: Christian A. Ehrhardt @ 2024-01-03 10:06 UTC (permalink / raw)
To: linux-usb
Cc: Christian A. Ehrhardt, Heikki Krogerus, Greg Kroah-Hartman,
Neil Armstrong, Hans de Goede, Mario Limonciello, Saranya Gopal,
linux-kernel
I have a DELL Latitude 5431 where typec only works somewhat.
After the first plug/unplug event the PPM seems to be stuck and
commands end with a timeout (GET_CONNECTOR_STATUS failed (-110)).
This patch fixes it for me but according to my reading it is in
violation of the UCSI spec. On the other hand searching through
the net it appears that many DELL models seem to have timeout problems
with UCSI.
Do we want some kind of quirk here? There does not seem to be a quirk
framework for this part of the code, yet. Or is it ok to just send the
additional ACK in all cases and hope that the PPM will do the right
thing?
regards Christian
diff --git a/drivers/usb/typec/ucsi/ucsi.c b/drivers/usb/typec/ucsi/ucsi.c
index 61b64558f96c..65098a454f63 100644
--- a/drivers/usb/typec/ucsi/ucsi.c
+++ b/drivers/usb/typec/ucsi/ucsi.c
@@ -53,7 +53,10 @@ static int ucsi_acknowledge_connector_change(struct ucsi *ucsi)
ctrl = UCSI_ACK_CC_CI;
ctrl |= UCSI_ACK_CONNECTOR_CHANGE;
- return ucsi->ops->sync_write(ucsi, UCSI_CONTROL, &ctrl, sizeof(ctrl));
+ if (ucsi->ops->sync_write(ucsi, UCSI_CONTROL, &ctrl, sizeof(ctrl)))
+ pr_err("ACK FAILED\n");
+
+ return ucsi_acknowledge_command(ucsi);
}
static int ucsi_exec_command(struct ucsi *ucsi, u64 command);
--
2.40.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [RFC] Fix stuck UCSI controller on DELL 2024-01-03 10:06 [RFC] Fix stuck UCSI controller on DELL Christian A. Ehrhardt @ 2024-01-04 11:59 ` Heikki Krogerus 2024-01-15 18:55 ` Christian A. Ehrhardt 0 siblings, 1 reply; 6+ messages in thread From: Heikki Krogerus @ 2024-01-04 11:59 UTC (permalink / raw) To: Christian A. Ehrhardt Cc: linux-usb, Greg Kroah-Hartman, Neil Armstrong, Hans de Goede, Mario Limonciello, Saranya Gopal, linux-kernel [-- Attachment #1: Type: text/plain, Size: 823 bytes --] Hi Christian, On Wed, Jan 03, 2024 at 11:06:35AM +0100, Christian A. Ehrhardt wrote: > I have a DELL Latitude 5431 where typec only works somewhat. > After the first plug/unplug event the PPM seems to be stuck and > commands end with a timeout (GET_CONNECTOR_STATUS failed (-110)). > > This patch fixes it for me but according to my reading it is in > violation of the UCSI spec. On the other hand searching through > the net it appears that many DELL models seem to have timeout problems > with UCSI. > > Do we want some kind of quirk here? There does not seem to be a quirk > framework for this part of the code, yet. Or is it ok to just send the > additional ACK in all cases and hope that the PPM will do the right > thing? We can use DMI quirks. Something like the attached diff (not tested). thanks, -- heikki [-- Attachment #2: dell_ucsi_quirk.diff --] [-- Type: text/plain, Size: 2307 bytes --] diff --git a/drivers/usb/typec/ucsi/ucsi_acpi.c b/drivers/usb/typec/ucsi/ucsi_acpi.c index 6bbf490ac401..7e8b1fcfa024 100644 --- a/drivers/usb/typec/ucsi/ucsi_acpi.c +++ b/drivers/usb/typec/ucsi/ucsi_acpi.c @@ -113,18 +113,44 @@ ucsi_zenbook_read(struct ucsi *ucsi, unsigned int offset, void *val, size_t val_ return 0; } -static const struct ucsi_operations ucsi_zenbook_ops = { - .read = ucsi_zenbook_read, - .sync_write = ucsi_acpi_sync_write, - .async_write = ucsi_acpi_async_write -}; +static int ucsi_dell_sync_write(struct ucsi *ucsi, unsigned int offset, + const void *val, size_t val_len) +{ + u64 ctrl = *(u64 *)val; + int ret; + + ret = ucsi_acpi_sync_write(ucsi, offset, val, val_len); + if (ret && (ctrl & (UCSI_ACK_CC_CI | UCSI_ACK_CONNECTOR_CHANGE))) { + ctrl= UCSI_ACK_CC_CI | UCSI_ACK_COMMAND_COMPLETE; + + dev_dbg(ucsi->dev->parent, "%s: ACK failed\n", __func__); + ret = ucsi_acpi_sync_write(ucsi, UCSI_CONTROL, &ctrl, sizeof(ctrl)); + } -static const struct dmi_system_id zenbook_dmi_id[] = { + return ret; +} + +static const struct dmi_system_id ucsi_acpi_quirks[] = { { .matches = { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX325UA_UM325UA"), }, + .driver_data = &(struct ucsi_operations) { + .read = ucsi_zenbook_read, + .sync_write = ucsi_acpi_sync_write, + .async_write = ucsi_acpi_async_write + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + }, + .driver_data = &(struct ucsi_operations) { + .read = ucsi_acpi_read, + .sync_write = ucsi_dell_sync_write, + .async_write = ucsi_acpi_async_write + }, }, { } }; @@ -151,6 +177,7 @@ static int ucsi_acpi_probe(struct platform_device *pdev) { struct acpi_device *adev = ACPI_COMPANION(&pdev->dev); const struct ucsi_operations *ops = &ucsi_acpi_ops; + const struct dmi_system_id *id; struct ucsi_acpi *ua; struct resource *res; acpi_status status; @@ -180,8 +207,9 @@ static int ucsi_acpi_probe(struct platform_device *pdev) init_completion(&ua->complete); ua->dev = &pdev->dev; - if (dmi_check_system(zenbook_dmi_id)) - ops = &ucsi_zenbook_ops; + id = dmi_first_match(ucsi_acpi_quirks); + if (id) + ops = id->driver_data; ua->ucsi = ucsi_create(&pdev->dev, ops); if (IS_ERR(ua->ucsi)) ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [RFC] Fix stuck UCSI controller on DELL 2024-01-04 11:59 ` Heikki Krogerus @ 2024-01-15 18:55 ` Christian A. Ehrhardt 2024-01-17 3:00 ` Mario Limonciello 0 siblings, 1 reply; 6+ messages in thread From: Christian A. Ehrhardt @ 2024-01-15 18:55 UTC (permalink / raw) To: Heikki Krogerus Cc: linux-usb, Greg Kroah-Hartman, Neil Armstrong, Hans de Goede, Mario Limonciello, Saranya Gopal, linux-kernel Hi Heikki, sorry to bother you again with this but I'm afraid there's a misunderstanding wrt. the nature of the quirk. See below: On Thu, Jan 04, 2024 at 01:59:02PM +0200, Heikki Krogerus wrote: > Hi Christian, > > On Wed, Jan 03, 2024 at 11:06:35AM +0100, Christian A. Ehrhardt wrote: > > I have a DELL Latitude 5431 where typec only works somewhat. > > After the first plug/unplug event the PPM seems to be stuck and > > commands end with a timeout (GET_CONNECTOR_STATUS failed (-110)). > > > > This patch fixes it for me but according to my reading it is in > > violation of the UCSI spec. On the other hand searching through > > the net it appears that many DELL models seem to have timeout problems > > with UCSI. > > > > Do we want some kind of quirk here? There does not seem to be a quirk > > framework for this part of the code, yet. Or is it ok to just send the > > additional ACK in all cases and hope that the PPM will do the right > > thing? > > We can use DMI quirks. Something like the attached diff (not tested). > > thanks, > > -- > heikki > diff --git a/drivers/usb/typec/ucsi/ucsi_acpi.c b/drivers/usb/typec/ucsi/ucsi_acpi.c > index 6bbf490ac401..7e8b1fcfa024 100644 > --- a/drivers/usb/typec/ucsi/ucsi_acpi.c > +++ b/drivers/usb/typec/ucsi/ucsi_acpi.c > @@ -113,18 +113,44 @@ ucsi_zenbook_read(struct ucsi *ucsi, unsigned int offset, void *val, size_t val_ > return 0; > } > > -static const struct ucsi_operations ucsi_zenbook_ops = { > - .read = ucsi_zenbook_read, > - .sync_write = ucsi_acpi_sync_write, > - .async_write = ucsi_acpi_async_write > -}; > +static int ucsi_dell_sync_write(struct ucsi *ucsi, unsigned int offset, > + const void *val, size_t val_len) > +{ > + u64 ctrl = *(u64 *)val; > + int ret; > + > + ret = ucsi_acpi_sync_write(ucsi, offset, val, val_len); > + if (ret && (ctrl & (UCSI_ACK_CC_CI | UCSI_ACK_CONNECTOR_CHANGE))) { > + ctrl= UCSI_ACK_CC_CI | UCSI_ACK_COMMAND_COMPLETE; > + > + dev_dbg(ucsi->dev->parent, "%s: ACK failed\n", __func__); > + ret = ucsi_acpi_sync_write(ucsi, UCSI_CONTROL, &ctrl, sizeof(ctrl)); > + } Unfortunately, this has the logic reversed. The quirk (i.e. the additional UCSI_ACK_COMMAND_COMPLETE) is required after a _successful_ UCSI_ACK_CONNECTOR_CHANGE. Otherwise, _subsequent_ commands will timeout (usually the next GET_CONNECTOR_CHANGE). This means the quirk must be applied _before_ we detect any failure. Consequently, the quirk has the potential to break working systems. Sorry, if that wasn't clear from my original mail. Please let me know if this changes how you want the quirks handled. Thanks Christian ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC] Fix stuck UCSI controller on DELL 2024-01-15 18:55 ` Christian A. Ehrhardt @ 2024-01-17 3:00 ` Mario Limonciello 2024-01-17 6:35 ` Christian A. Ehrhardt 0 siblings, 1 reply; 6+ messages in thread From: Mario Limonciello @ 2024-01-17 3:00 UTC (permalink / raw) To: Christian A. Ehrhardt, Heikki Krogerus Cc: linux-usb, Greg Kroah-Hartman, Neil Armstrong, Hans de Goede, Saranya Gopal, linux-kernel On 1/15/2024 12:55, Christian A. Ehrhardt wrote: > > Hi Heikki, > > sorry to bother you again with this but I'm afraid there's > a misunderstanding wrt. the nature of the quirk. See below: > > On Thu, Jan 04, 2024 at 01:59:02PM +0200, Heikki Krogerus wrote: >> Hi Christian, >> >> On Wed, Jan 03, 2024 at 11:06:35AM +0100, Christian A. Ehrhardt wrote: >>> I have a DELL Latitude 5431 where typec only works somewhat. >>> After the first plug/unplug event the PPM seems to be stuck and >>> commands end with a timeout (GET_CONNECTOR_STATUS failed (-110)). >>> >>> This patch fixes it for me but according to my reading it is in >>> violation of the UCSI spec. On the other hand searching through >>> the net it appears that many DELL models seem to have timeout problems >>> with UCSI. >>> >>> Do we want some kind of quirk here? There does not seem to be a quirk >>> framework for this part of the code, yet. Or is it ok to just send the >>> additional ACK in all cases and hope that the PPM will do the right >>> thing? >> >> We can use DMI quirks. Something like the attached diff (not tested). >> >> thanks, >> >> -- >> heikki > >> diff --git a/drivers/usb/typec/ucsi/ucsi_acpi.c b/drivers/usb/typec/ucsi/ucsi_acpi.c >> index 6bbf490ac401..7e8b1fcfa024 100644 >> --- a/drivers/usb/typec/ucsi/ucsi_acpi.c >> +++ b/drivers/usb/typec/ucsi/ucsi_acpi.c >> @@ -113,18 +113,44 @@ ucsi_zenbook_read(struct ucsi *ucsi, unsigned int offset, void *val, size_t val_ >> return 0; >> } >> >> -static const struct ucsi_operations ucsi_zenbook_ops = { >> - .read = ucsi_zenbook_read, >> - .sync_write = ucsi_acpi_sync_write, >> - .async_write = ucsi_acpi_async_write >> -}; >> +static int ucsi_dell_sync_write(struct ucsi *ucsi, unsigned int offset, >> + const void *val, size_t val_len) >> +{ >> + u64 ctrl = *(u64 *)val; >> + int ret; >> + >> + ret = ucsi_acpi_sync_write(ucsi, offset, val, val_len); >> + if (ret && (ctrl & (UCSI_ACK_CC_CI | UCSI_ACK_CONNECTOR_CHANGE))) { >> + ctrl= UCSI_ACK_CC_CI | UCSI_ACK_COMMAND_COMPLETE; >> + >> + dev_dbg(ucsi->dev->parent, "%s: ACK failed\n", __func__); >> + ret = ucsi_acpi_sync_write(ucsi, UCSI_CONTROL, &ctrl, sizeof(ctrl)); >> + } > > Unfortunately, this has the logic reversed. The quirk (i.e. the > additional UCSI_ACK_COMMAND_COMPLETE) is required after a _successful_ > UCSI_ACK_CONNECTOR_CHANGE. Otherwise, _subsequent_ commands will timeout > (usually the next GET_CONNECTOR_CHANGE). > > This means the quirk must be applied _before_ we detect any failure. > Consequently, the quirk has the potential to break working systems. > > Sorry, if that wasn't clear from my original mail. Please let me know > if this changes how you want the quirks handled. > > Thanks Christian > For the problematic scenario have you tried to play with it a bit to see if it's too short of a timeout (raise timeout) or to output the response bits to see if anything else surprising is sent? Does it always fail on the same command, or does it happen to a bunch of them? ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC] Fix stuck UCSI controller on DELL 2024-01-17 3:00 ` Mario Limonciello @ 2024-01-17 6:35 ` Christian A. Ehrhardt 2024-01-17 17:34 ` Mario Limonciello 0 siblings, 1 reply; 6+ messages in thread From: Christian A. Ehrhardt @ 2024-01-17 6:35 UTC (permalink / raw) To: Mario Limonciello Cc: Heikki Krogerus, linux-usb, Greg Kroah-Hartman, Neil Armstrong, Hans de Goede, Saranya Gopal, linux-kernel Hi Mario, On Tue, Jan 16, 2024 at 09:00:03PM -0600, Mario Limonciello wrote: > On 1/15/2024 12:55, Christian A. Ehrhardt wrote: > > > > Hi Heikki, > > > > sorry to bother you again with this but I'm afraid there's > > a misunderstanding wrt. the nature of the quirk. See below: > > > > On Thu, Jan 04, 2024 at 01:59:02PM +0200, Heikki Krogerus wrote: > > > Hi Christian, > > > > > > On Wed, Jan 03, 2024 at 11:06:35AM +0100, Christian A. Ehrhardt wrote: > > > > I have a DELL Latitude 5431 where typec only works somewhat. > > > > After the first plug/unplug event the PPM seems to be stuck and > > > > commands end with a timeout (GET_CONNECTOR_STATUS failed (-110)). > > > > > > > > This patch fixes it for me but according to my reading it is in > > > > violation of the UCSI spec. On the other hand searching through > > > > the net it appears that many DELL models seem to have timeout problems > > > > with UCSI. > > > > > > > > Do we want some kind of quirk here? There does not seem to be a quirk > > > > framework for this part of the code, yet. Or is it ok to just send the > > > > additional ACK in all cases and hope that the PPM will do the right > > > > thing? > > > > > > We can use DMI quirks. Something like the attached diff (not tested). > > > > > > thanks, > > > > > > -- > > > heikki > > > > > diff --git a/drivers/usb/typec/ucsi/ucsi_acpi.c b/drivers/usb/typec/ucsi/ucsi_acpi.c > > > index 6bbf490ac401..7e8b1fcfa024 100644 > > > --- a/drivers/usb/typec/ucsi/ucsi_acpi.c > > > +++ b/drivers/usb/typec/ucsi/ucsi_acpi.c > > > @@ -113,18 +113,44 @@ ucsi_zenbook_read(struct ucsi *ucsi, unsigned int offset, void *val, size_t val_ > > > return 0; > > > } > > > -static const struct ucsi_operations ucsi_zenbook_ops = { > > > - .read = ucsi_zenbook_read, > > > - .sync_write = ucsi_acpi_sync_write, > > > - .async_write = ucsi_acpi_async_write > > > -}; > > > +static int ucsi_dell_sync_write(struct ucsi *ucsi, unsigned int offset, > > > + const void *val, size_t val_len) > > > +{ > > > + u64 ctrl = *(u64 *)val; > > > + int ret; > > > + > > > + ret = ucsi_acpi_sync_write(ucsi, offset, val, val_len); > > > + if (ret && (ctrl & (UCSI_ACK_CC_CI | UCSI_ACK_CONNECTOR_CHANGE))) { > > > + ctrl= UCSI_ACK_CC_CI | UCSI_ACK_COMMAND_COMPLETE; > > > + > > > + dev_dbg(ucsi->dev->parent, "%s: ACK failed\n", __func__); > > > + ret = ucsi_acpi_sync_write(ucsi, UCSI_CONTROL, &ctrl, sizeof(ctrl)); > > > + } > > > > Unfortunately, this has the logic reversed. The quirk (i.e. the > > additional UCSI_ACK_COMMAND_COMPLETE) is required after a _successful_ > > UCSI_ACK_CONNECTOR_CHANGE. Otherwise, _subsequent_ commands will timeout > > (usually the next GET_CONNECTOR_CHANGE). > > > > This means the quirk must be applied _before_ we detect any failure. > > Consequently, the quirk has the potential to break working systems. > > > > Sorry, if that wasn't clear from my original mail. Please let me know > > if this changes how you want the quirks handled. > > > > Thanks Christian > > > > For the problematic scenario have you tried to play with it a bit to see if > it's too short of a timeout (raise timeout) or to output the response bits > to see if anything else surprising is sent? It is not a problem with the timeout. Waiting forever in this case doesn't help. IMHO this is actually a bug in the PPM, i.e. in Dell's bios. Sending an ack after the timeout fixes things, though. > Does it always fail on the same command, or does it happen to a bunch of > them? It always fails on the first command after UCSI_ACK_CC_CI for a connector change. However, there might be no such command if the next event is a notification. I did play around with it a bit more and came up with a way to probe for the issue: https://lore.kernel.orgorg/all/20240116224041.220740-1-lk@c--e.de/ regards Christian ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC] Fix stuck UCSI controller on DELL 2024-01-17 6:35 ` Christian A. Ehrhardt @ 2024-01-17 17:34 ` Mario Limonciello 0 siblings, 0 replies; 6+ messages in thread From: Mario Limonciello @ 2024-01-17 17:34 UTC (permalink / raw) To: Christian A. Ehrhardt, Dell.Client.Kernel, Wang, Crag Cc: Heikki Krogerus, linux-usb, Greg Kroah-Hartman, Neil Armstrong, Hans de Goede, Saranya Gopal, linux-kernel On 1/17/2024 00:35, Christian A. Ehrhardt wrote: > > Hi Mario, > > On Tue, Jan 16, 2024 at 09:00:03PM -0600, Mario Limonciello wrote: >> On 1/15/2024 12:55, Christian A. Ehrhardt wrote: >>> >>> Hi Heikki, >>> >>> sorry to bother you again with this but I'm afraid there's >>> a misunderstanding wrt. the nature of the quirk. See below: >>> >>> On Thu, Jan 04, 2024 at 01:59:02PM +0200, Heikki Krogerus wrote: >>>> Hi Christian, >>>> >>>> On Wed, Jan 03, 2024 at 11:06:35AM +0100, Christian A. Ehrhardt wrote: >>>>> I have a DELL Latitude 5431 where typec only works somewhat. >>>>> After the first plug/unplug event the PPM seems to be stuck and >>>>> commands end with a timeout (GET_CONNECTOR_STATUS failed (-110)). >>>>> >>>>> This patch fixes it for me but according to my reading it is in >>>>> violation of the UCSI spec. On the other hand searching through >>>>> the net it appears that many DELL models seem to have timeout problems >>>>> with UCSI. >>>>> >>>>> Do we want some kind of quirk here? There does not seem to be a quirk >>>>> framework for this part of the code, yet. Or is it ok to just send the >>>>> additional ACK in all cases and hope that the PPM will do the right >>>>> thing? >>>> >>>> We can use DMI quirks. Something like the attached diff (not tested). >>>> >>>> thanks, >>>> >>>> -- >>>> heikki >>> >>>> diff --git a/drivers/usb/typec/ucsi/ucsi_acpi.c b/drivers/usb/typec/ucsi/ucsi_acpi.c >>>> index 6bbf490ac401..7e8b1fcfa024 100644 >>>> --- a/drivers/usb/typec/ucsi/ucsi_acpi.c >>>> +++ b/drivers/usb/typec/ucsi/ucsi_acpi.c >>>> @@ -113,18 +113,44 @@ ucsi_zenbook_read(struct ucsi *ucsi, unsigned int offset, void *val, size_t val_ >>>> return 0; >>>> } >>>> -static const struct ucsi_operations ucsi_zenbook_ops = { >>>> - .read = ucsi_zenbook_read, >>>> - .sync_write = ucsi_acpi_sync_write, >>>> - .async_write = ucsi_acpi_async_write >>>> -}; >>>> +static int ucsi_dell_sync_write(struct ucsi *ucsi, unsigned int offset, >>>> + const void *val, size_t val_len) >>>> +{ >>>> + u64 ctrl = *(u64 *)val; >>>> + int ret; >>>> + >>>> + ret = ucsi_acpi_sync_write(ucsi, offset, val, val_len); >>>> + if (ret && (ctrl & (UCSI_ACK_CC_CI | UCSI_ACK_CONNECTOR_CHANGE))) { >>>> + ctrl= UCSI_ACK_CC_CI | UCSI_ACK_COMMAND_COMPLETE; >>>> + >>>> + dev_dbg(ucsi->dev->parent, "%s: ACK failed\n", __func__); >>>> + ret = ucsi_acpi_sync_write(ucsi, UCSI_CONTROL, &ctrl, sizeof(ctrl)); >>>> + } >>> >>> Unfortunately, this has the logic reversed. The quirk (i.e. the >>> additional UCSI_ACK_COMMAND_COMPLETE) is required after a _successful_ >>> UCSI_ACK_CONNECTOR_CHANGE. Otherwise, _subsequent_ commands will timeout >>> (usually the next GET_CONNECTOR_CHANGE). >>> >>> This means the quirk must be applied _before_ we detect any failure. >>> Consequently, the quirk has the potential to break working systems. >>> >>> Sorry, if that wasn't clear from my original mail. Please let me know >>> if this changes how you want the quirks handled. >>> >>> Thanks Christian >>> >> >> For the problematic scenario have you tried to play with it a bit to see if >> it's too short of a timeout (raise timeout) or to output the response bits >> to see if anything else surprising is sent? > > It is not a problem with the timeout. Waiting forever in this case > doesn't help. IMHO this is actually a bug in the PPM, i.e. in Dell's > bios. "Usually" the PD controller F/W is distributed with the EC, but yes Dell nominally puts everything in a monolithic BIOS package. > > Sending an ack after the timeout fixes things, though. > >> Does it always fail on the same command, or does it happen to a bunch of >> them? > > It always fails on the first command after UCSI_ACK_CC_CI for a > connector change. However, there might be no such command if the > next event is a notification. > > I did play around with it a bit more and came up with a way to > probe for the issue: > > https://lore.kernel.orgorg/all/20240116224041.220740-1-lk@c--e.de/ If some variation of your prob-able workaround is picked up I think it's worth making noise when probed (dev_warn or dev_notice) about this situation that it is being used to workaround a PPM bug. > > regards Christian > > + Dell Client Kernel mailbox Dell team, Can you look into this? It sounds like it should be investigated more closely to see where the impedance mismatch against the spec and real behavior actually lies. ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-01-17 17:34 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-01-03 10:06 [RFC] Fix stuck UCSI controller on DELL Christian A. Ehrhardt 2024-01-04 11:59 ` Heikki Krogerus 2024-01-15 18:55 ` Christian A. Ehrhardt 2024-01-17 3:00 ` Mario Limonciello 2024-01-17 6:35 ` Christian A. Ehrhardt 2024-01-17 17:34 ` Mario Limonciello
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox