* [PATCH 1/5] dt-bindings: usb: parade,ps8830: Add parade,disable-usb4 property
2026-07-18 17:06 [PATCH 0/5] usb: typec: ps883x: fixes for older Thunderbolt 4 / USB4 docks Jens Glathe via B4 Relay
@ 2026-07-18 17:06 ` Jens Glathe via B4 Relay
2026-07-18 17:06 ` [PATCH 2/5] usb: typec: ps883x: Return -EOPNOTSUPP for USB4 when parade,disable-usb4 is set Jens Glathe via B4 Relay
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Jens Glathe via B4 Relay @ 2026-07-18 17:06 UTC (permalink / raw)
To: Greg Kroah-Hartman, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Abel Vesa, Heikki Krogerus, Bjorn Andersson,
Konrad Dybcio
Cc: linux-usb, devicetree, linux-kernel, linux-arm-msm, stable,
Dr. David Alan Gilbert, Jens Glathe
From: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
Document a new optional boolean property "parade,disable-usb4".
When present, the retimer rejects USB4 mode by returning -EOPNOTSUPP,
forcing a fallback to USB3 + DP Alternate Mode.
Assisted-by: Grok(xAI):4.3
Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
---
Documentation/devicetree/bindings/usb/parade,ps8830.yaml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/Documentation/devicetree/bindings/usb/parade,ps8830.yaml b/Documentation/devicetree/bindings/usb/parade,ps8830.yaml
index eaeab1c01a594..44242907461eb 100644
--- a/Documentation/devicetree/bindings/usb/parade,ps8830.yaml
+++ b/Documentation/devicetree/bindings/usb/parade,ps8830.yaml
@@ -66,6 +66,12 @@ properties:
Sideband Use (SBU) AUX lines endpoint to the Type-C connector for the purpose of
handling altmode muxing and orientation switching.
+ parade,disable-usb4:
+ type: boolean
+ description:
+ When present, the retimer rejects USB4 mode (returns -EOPNOTSUPP).
+ This forces the Type-C stack to fall back to USB3 + DP Alternate Mode.
+
required:
- compatible
- reg
--
2.53.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* [PATCH 2/5] usb: typec: ps883x: Return -EOPNOTSUPP for USB4 when parade,disable-usb4 is set
2026-07-18 17:06 [PATCH 0/5] usb: typec: ps883x: fixes for older Thunderbolt 4 / USB4 docks Jens Glathe via B4 Relay
2026-07-18 17:06 ` [PATCH 1/5] dt-bindings: usb: parade,ps8830: Add parade,disable-usb4 property Jens Glathe via B4 Relay
@ 2026-07-18 17:06 ` Jens Glathe via B4 Relay
2026-07-19 1:14 ` Dr. David Alan Gilbert
2026-07-18 17:06 ` [PATCH 3/5] usb: typec: mux: ps883x: refactor DP altmode handling and support TYPEC_DP_STATE_F Jens Glathe via B4 Relay
` (2 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Jens Glathe via B4 Relay @ 2026-07-18 17:06 UTC (permalink / raw)
To: Greg Kroah-Hartman, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Abel Vesa, Heikki Krogerus, Bjorn Andersson,
Konrad Dybcio
Cc: linux-usb, devicetree, linux-kernel, linux-arm-msm, stable,
Dr. David Alan Gilbert, Jens Glathe
From: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
On Qualcomm X1E80100 platforms using the Parade PS883x retimer (like
Lenovo ThinkPad T14s Gen6), hotplugging USB4-capable docks such as the
Lenovo 40B0 results in working USB but no DisplayPort output on the
dock's HDMI/DP ports.
When the dock negotiates USB4, the retimer receives TYPEC_MODE_USB4
and forwards it via typec_mux_set(). The qmp_combo PHY then selects
QMPPHY_MODE_USB3_ONLY because no classic DP altmode SVID is present in
the state, leaving the DP transmitter and AUX channel disabled.
Add a DT property "parade,disable-usb4" that, when present, makes the
PS883x driver reject USB4 modes as not supported. DP altmode
configuration is still applied if negotiated, so both USB and
DisplayPort continue to work.
This is a temporary workaround until proper USB4 DP tunneling support
is available in the X1E USB4 controller and qmp_combo PHY stack.
Link: https://patch.msgid.link/20260312101431.2375709-1-krishna.kurapati@oss.qualcomm.com
Assisted-by: Grok(xAI):4.3
Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
---
drivers/usb/typec/mux/ps883x.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/usb/typec/mux/ps883x.c b/drivers/usb/typec/mux/ps883x.c
index 64e0a61b776a1..3fa26ce01a9c9 100644
--- a/drivers/usb/typec/mux/ps883x.c
+++ b/drivers/usb/typec/mux/ps883x.c
@@ -62,6 +62,7 @@ struct ps883x_retimer {
enum typec_orientation orientation;
bool in_reset;
+ bool disable_usb4;
};
static int ps883x_enable_vregs(struct ps883x_retimer *retimer)
@@ -249,6 +250,13 @@ static int ps883x_set(struct ps883x_retimer *retimer, struct typec_retimer_state
cfg0 |= CONN_STATUS_0_USB_3_1_CONNECTED;
break;
case TYPEC_MODE_USB4:
+ if (retimer->disable_usb4) {
+ dev_info(&retimer->client->dev,
+ "USB4 disabled via DT property, rejecting USB4 mode\n");
+ return -EOPNOTSUPP;
+ }
+
+ /* Normal USB4 handling */
eudo_data = state->data;
cfg2 |= CONN_STATUS_2_USB4_CONNECTED;
@@ -378,6 +386,8 @@ static int ps883x_retimer_probe(struct i2c_client *client)
retimer->client = client;
+ retimer->disable_usb4 = device_property_read_bool(dev, "parade,disable-usb4");
+
mutex_init(&retimer->lock);
retimer->regmap = devm_regmap_init_i2c(client, &ps883x_retimer_regmap);
--
2.53.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH 2/5] usb: typec: ps883x: Return -EOPNOTSUPP for USB4 when parade,disable-usb4 is set
2026-07-18 17:06 ` [PATCH 2/5] usb: typec: ps883x: Return -EOPNOTSUPP for USB4 when parade,disable-usb4 is set Jens Glathe via B4 Relay
@ 2026-07-19 1:14 ` Dr. David Alan Gilbert
0 siblings, 0 replies; 8+ messages in thread
From: Dr. David Alan Gilbert @ 2026-07-19 1:14 UTC (permalink / raw)
To: jens.glathe
Cc: Greg Kroah-Hartman, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Abel Vesa, Heikki Krogerus, Bjorn Andersson,
Konrad Dybcio, linux-usb, devicetree, linux-kernel, linux-arm-msm,
stable
* Jens Glathe via B4 Relay (devnull+jens.glathe.oldschoolsolutions.biz@kernel.org) wrote:
> From: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
>
> On Qualcomm X1E80100 platforms using the Parade PS883x retimer (like
> Lenovo ThinkPad T14s Gen6), hotplugging USB4-capable docks such as the
> Lenovo 40B0 results in working USB but no DisplayPort output on the
> dock's HDMI/DP ports.
>
> When the dock negotiates USB4, the retimer receives TYPEC_MODE_USB4
> and forwards it via typec_mux_set(). The qmp_combo PHY then selects
> QMPPHY_MODE_USB3_ONLY because no classic DP altmode SVID is present in
> the state, leaving the DP transmitter and AUX channel disabled.
>
> Add a DT property "parade,disable-usb4" that, when present, makes the
> PS883x driver reject USB4 modes as not supported. DP altmode
> configuration is still applied if negotiated, so both USB and
> DisplayPort continue to work.
>
> This is a temporary workaround until proper USB4 DP tunneling support
> is available in the X1E USB4 controller and qmp_combo PHY stack.
>
> Link: https://patch.msgid.link/20260312101431.2375709-1-krishna.kurapati@oss.qualcomm.com
> Assisted-by: Grok(xAI):4.3
> Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
Tested-by: Dr. David Alan Gilbert <dave@treblig.org>
On zenbook a14 with the following patches and a TB cable
> ---
> drivers/usb/typec/mux/ps883x.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/drivers/usb/typec/mux/ps883x.c b/drivers/usb/typec/mux/ps883x.c
> index 64e0a61b776a1..3fa26ce01a9c9 100644
> --- a/drivers/usb/typec/mux/ps883x.c
> +++ b/drivers/usb/typec/mux/ps883x.c
> @@ -62,6 +62,7 @@ struct ps883x_retimer {
>
> enum typec_orientation orientation;
> bool in_reset;
> + bool disable_usb4;
> };
>
> static int ps883x_enable_vregs(struct ps883x_retimer *retimer)
> @@ -249,6 +250,13 @@ static int ps883x_set(struct ps883x_retimer *retimer, struct typec_retimer_state
> cfg0 |= CONN_STATUS_0_USB_3_1_CONNECTED;
> break;
> case TYPEC_MODE_USB4:
> + if (retimer->disable_usb4) {
> + dev_info(&retimer->client->dev,
> + "USB4 disabled via DT property, rejecting USB4 mode\n");
> + return -EOPNOTSUPP;
> + }
> +
> + /* Normal USB4 handling */
> eudo_data = state->data;
>
> cfg2 |= CONN_STATUS_2_USB4_CONNECTED;
> @@ -378,6 +386,8 @@ static int ps883x_retimer_probe(struct i2c_client *client)
>
> retimer->client = client;
>
> + retimer->disable_usb4 = device_property_read_bool(dev, "parade,disable-usb4");
> +
> mutex_init(&retimer->lock);
>
> retimer->regmap = devm_regmap_init_i2c(client, &ps883x_retimer_regmap);
>
> --
> 2.53.0
>
>
--
-----Open up your eyes, open up your mind, open up your code -------
/ Dr. David Alan Gilbert | Running GNU/Linux | Happy \
\ dave @ treblig.org | | In Hex /
\ _________________________|_____ http://www.treblig.org |_______/
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 3/5] usb: typec: mux: ps883x: refactor DP altmode handling and support TYPEC_DP_STATE_F
2026-07-18 17:06 [PATCH 0/5] usb: typec: ps883x: fixes for older Thunderbolt 4 / USB4 docks Jens Glathe via B4 Relay
2026-07-18 17:06 ` [PATCH 1/5] dt-bindings: usb: parade,ps8830: Add parade,disable-usb4 property Jens Glathe via B4 Relay
2026-07-18 17:06 ` [PATCH 2/5] usb: typec: ps883x: Return -EOPNOTSUPP for USB4 when parade,disable-usb4 is set Jens Glathe via B4 Relay
@ 2026-07-18 17:06 ` Jens Glathe via B4 Relay
2026-07-18 17:06 ` [PATCH 4/5] usb: typec: mux: ps883x: add a delay after writing config regs Jens Glathe via B4 Relay
2026-07-18 17:06 ` [PATCH 5/5] arm64: dts: qcom: x1: disable ps883x USB4 capability Jens Glathe via B4 Relay
4 siblings, 0 replies; 8+ messages in thread
From: Jens Glathe via B4 Relay @ 2026-07-18 17:06 UTC (permalink / raw)
To: Greg Kroah-Hartman, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Abel Vesa, Heikki Krogerus, Bjorn Andersson,
Konrad Dybcio
Cc: linux-usb, devicetree, linux-kernel, linux-arm-msm, stable,
Dr. David Alan Gilbert, Jens Glathe
From: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
Several docks, including the Lenovo 40B0 and SSK SC220, still send the
legacy TYPEC_DP_STATE_F mode request (deprecated since DisplayPort Alt
Mode spec version 1.0b). Treat it as USB3 + DP altmode (same as
TYPEC_DP_STATE_D) so that DP altmode works correctly, especially on
the 40B0 in Type-C fallback mode.
Extract the state handling into ps883x_apply_dp_altmode() (modelled
after qmp-combo-phy) for consistency.
Assisted-by: Grok(xAI):4.3
Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
---
drivers/usb/typec/mux/ps883x.c | 35 ++++++++++++++++++++---------------
1 file changed, 20 insertions(+), 15 deletions(-)
diff --git a/drivers/usb/typec/mux/ps883x.c b/drivers/usb/typec/mux/ps883x.c
index 3fa26ce01a9c9..3533d4f363286 100644
--- a/drivers/usb/typec/mux/ps883x.c
+++ b/drivers/usb/typec/mux/ps883x.c
@@ -188,6 +188,25 @@ static int ps883x_configure(struct ps883x_retimer *retimer, int cfg0,
return 0;
}
+static void ps883x_apply_dp_altmode(int *cfg0, int *cfg1, int dp_state)
+{
+ *cfg1 |= CONN_STATUS_1_DP_CONNECTED | CONN_STATUS_1_DP_HPD_LEVEL;
+
+ switch (dp_state) {
+ case TYPEC_DP_STATE_D:
+ case TYPEC_DP_STATE_F:
+ *cfg0 |= CONN_STATUS_0_USB_3_1_CONNECTED;
+ fallthrough;
+ case TYPEC_DP_STATE_C:
+ case TYPEC_DP_STATE_E:
+ *cfg1 |= CONN_STATUS_1_DP_SINK_REQUESTED |
+ CONN_STATUS_1_DP_PIN_ASSIGNMENT_C_D;
+ break;
+ default:
+ break;
+ }
+}
+
static int ps883x_set(struct ps883x_retimer *retimer, struct typec_retimer_state *state)
{
struct typec_thunderbolt_data *tb_data;
@@ -203,24 +222,10 @@ static int ps883x_set(struct ps883x_retimer *retimer, struct typec_retimer_state
if (state->alt) {
switch (state->alt->svid) {
case USB_TYPEC_DP_SID:
- cfg1 |= CONN_STATUS_1_DP_CONNECTED |
- CONN_STATUS_1_DP_HPD_LEVEL;
-
- switch (state->mode) {
- case TYPEC_DP_STATE_D:
- cfg0 |= CONN_STATUS_0_USB_3_1_CONNECTED;
- fallthrough;
- case TYPEC_DP_STATE_C:
- cfg1 |= CONN_STATUS_1_DP_SINK_REQUESTED |
- CONN_STATUS_1_DP_PIN_ASSIGNMENT_C_D;
- break;
- default: /* MODE_E */
- break;
- }
+ ps883x_apply_dp_altmode(&cfg0, &cfg1, state->mode);
break;
case USB_TYPEC_TBT_SID:
tb_data = state->data;
-
/* Unconditional */
cfg2 |= CONN_STATUS_2_TBT_CONNECTED;
--
2.53.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* [PATCH 4/5] usb: typec: mux: ps883x: add a delay after writing config regs
2026-07-18 17:06 [PATCH 0/5] usb: typec: ps883x: fixes for older Thunderbolt 4 / USB4 docks Jens Glathe via B4 Relay
` (2 preceding siblings ...)
2026-07-18 17:06 ` [PATCH 3/5] usb: typec: mux: ps883x: refactor DP altmode handling and support TYPEC_DP_STATE_F Jens Glathe via B4 Relay
@ 2026-07-18 17:06 ` Jens Glathe via B4 Relay
2026-07-18 17:06 ` [PATCH 5/5] arm64: dts: qcom: x1: disable ps883x USB4 capability Jens Glathe via B4 Relay
4 siblings, 0 replies; 8+ messages in thread
From: Jens Glathe via B4 Relay @ 2026-07-18 17:06 UTC (permalink / raw)
To: Greg Kroah-Hartman, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Abel Vesa, Heikki Krogerus, Bjorn Andersson,
Konrad Dybcio
Cc: linux-usb, devicetree, linux-kernel, linux-arm-msm, stable,
Dr. David Alan Gilbert, Jens Glathe
From: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
The config regs seem to need a few ms to propagate the changes through the
system (like, PLLs). This improves the hotplug dp altmode success rate
on the Lenovo 40B0 dock to 100%.
Tested with T14s G6 and 40B0 dock on the HDMI port with a type-c host cable.
Assisted-by: Gemini:3
Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
---
drivers/usb/typec/mux/ps883x.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/usb/typec/mux/ps883x.c b/drivers/usb/typec/mux/ps883x.c
index 3533d4f363286..3ca2952e6a0a3 100644
--- a/drivers/usb/typec/mux/ps883x.c
+++ b/drivers/usb/typec/mux/ps883x.c
@@ -185,6 +185,8 @@ static int ps883x_configure(struct ps883x_retimer *retimer, int cfg0,
return ret;
}
+ usleep_range(20000, 30000);
+
return 0;
}
--
2.53.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* [PATCH 5/5] arm64: dts: qcom: x1: disable ps883x USB4 capability
2026-07-18 17:06 [PATCH 0/5] usb: typec: ps883x: fixes for older Thunderbolt 4 / USB4 docks Jens Glathe via B4 Relay
` (3 preceding siblings ...)
2026-07-18 17:06 ` [PATCH 4/5] usb: typec: mux: ps883x: add a delay after writing config regs Jens Glathe via B4 Relay
@ 2026-07-18 17:06 ` Jens Glathe via B4 Relay
2026-07-19 1:15 ` Dr. David Alan Gilbert
4 siblings, 1 reply; 8+ messages in thread
From: Jens Glathe via B4 Relay @ 2026-07-18 17:06 UTC (permalink / raw)
To: Greg Kroah-Hartman, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Abel Vesa, Heikki Krogerus, Bjorn Andersson,
Konrad Dybcio
Cc: linux-usb, devicetree, linux-kernel, linux-arm-msm, stable,
Dr. David Alan Gilbert, Jens Glathe
From: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
Add the "parade,disable-usb4" property to the PS883x node so that the
retimer driver treats USB4 as USB3. This allows the combo PHY to remain
in a DP-capable mode, restoring working DisplayPort output over the
dock while keeping USB functional.
This is a temporary platform workaround until proper USB4 DP tunneling
support is available.
Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
---
arch/arm64/boot/dts/qcom/hamoa-iot-evk.dts | 4 ++++
arch/arm64/boot/dts/qcom/hamoa-lenovo-ideacentre-mini-01q8x10.dts | 2 ++
arch/arm64/boot/dts/qcom/purwa-iot-evk.dts | 6 ++++++
arch/arm64/boot/dts/qcom/x1-asus-vivobook-s15.dtsi | 4 ++++
arch/arm64/boot/dts/qcom/x1-asus-zenbook-a14.dtsi | 4 ++++
arch/arm64/boot/dts/qcom/x1-crd.dtsi | 6 ++++++
arch/arm64/boot/dts/qcom/x1-dell-thena.dtsi | 4 ++++
arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi | 2 ++
arch/arm64/boot/dts/qcom/x1-microsoft-denali.dtsi | 4 ++++
arch/arm64/boot/dts/qcom/x1e001de-devkit.dts | 6 ++++++
arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtsi | 4 ++++
arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dts | 4 ++++
arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts | 6 ++++++
arch/arm64/boot/dts/qcom/x1e80100-medion-sprchrgd-14-s1.dts | 2 ++
arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus.dtsi | 4 ++++
15 files changed, 62 insertions(+)
diff --git a/arch/arm64/boot/dts/qcom/hamoa-iot-evk.dts b/arch/arm64/boot/dts/qcom/hamoa-iot-evk.dts
index 9fa86bb6438ec..5ec77c5912f8e 100644
--- a/arch/arm64/boot/dts/qcom/hamoa-iot-evk.dts
+++ b/arch/arm64/boot/dts/qcom/hamoa-iot-evk.dts
@@ -762,6 +762,8 @@ typec-mux@8 {
orientation-switch;
retimer-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -877,6 +879,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/hamoa-lenovo-ideacentre-mini-01q8x10.dts b/arch/arm64/boot/dts/qcom/hamoa-lenovo-ideacentre-mini-01q8x10.dts
index bfb7cea56df96..328a360843f4c 100644
--- a/arch/arm64/boot/dts/qcom/hamoa-lenovo-ideacentre-mini-01q8x10.dts
+++ b/arch/arm64/boot/dts/qcom/hamoa-lenovo-ideacentre-mini-01q8x10.dts
@@ -601,6 +601,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/purwa-iot-evk.dts b/arch/arm64/boot/dts/qcom/purwa-iot-evk.dts
index ad503beec1d3d..9ce080b9ae896 100644
--- a/arch/arm64/boot/dts/qcom/purwa-iot-evk.dts
+++ b/arch/arm64/boot/dts/qcom/purwa-iot-evk.dts
@@ -703,6 +703,8 @@ typec-mux@8 {
orientation-switch;
retimer-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -760,6 +762,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -865,6 +869,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1-asus-vivobook-s15.dtsi b/arch/arm64/boot/dts/qcom/x1-asus-vivobook-s15.dtsi
index 48c4ad648354e..d67ded1da5875 100644
--- a/arch/arm64/boot/dts/qcom/x1-asus-vivobook-s15.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1-asus-vivobook-s15.dtsi
@@ -678,6 +678,8 @@ typec-mux@8 {
orientation-switch;
retimer-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -798,6 +800,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1-asus-zenbook-a14.dtsi b/arch/arm64/boot/dts/qcom/x1-asus-zenbook-a14.dtsi
index 66d566808f583..e1033d3bef359 100644
--- a/arch/arm64/boot/dts/qcom/x1-asus-zenbook-a14.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1-asus-zenbook-a14.dtsi
@@ -845,6 +845,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -945,6 +947,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1-crd.dtsi b/arch/arm64/boot/dts/qcom/x1-crd.dtsi
index 9602d65c8b3db..002a974c88751 100644
--- a/arch/arm64/boot/dts/qcom/x1-crd.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1-crd.dtsi
@@ -967,6 +967,8 @@ typec-mux@8 {
orientation-switch;
retimer-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -1024,6 +1026,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -1112,6 +1116,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1-dell-thena.dtsi b/arch/arm64/boot/dts/qcom/x1-dell-thena.dtsi
index d6de4da02dcd3..fa17cdafc07b4 100644
--- a/arch/arm64/boot/dts/qcom/x1-dell-thena.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1-dell-thena.dtsi
@@ -852,6 +852,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -947,6 +949,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi b/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi
index 02708f23a8657..4dd62092b8809 100644
--- a/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi
@@ -917,6 +917,8 @@ typec-mux@8 {
orientation-switch;
retimer-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1-microsoft-denali.dtsi b/arch/arm64/boot/dts/qcom/x1-microsoft-denali.dtsi
index 7559557610ed4..1aa075d6eeda5 100644
--- a/arch/arm64/boot/dts/qcom/x1-microsoft-denali.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1-microsoft-denali.dtsi
@@ -759,6 +759,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -822,6 +824,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts b/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts
index 2e38402e2c140..ada5da526634a 100644
--- a/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts
+++ b/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts
@@ -795,6 +795,8 @@ typec-mux@8 {
orientation-switch;
retimer-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -852,6 +854,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -943,6 +947,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtsi b/arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtsi
index 5d49df41be02a..c8bfb38c64ad5 100644
--- a/arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtsi
@@ -895,6 +895,8 @@ typec-mux@8 {
orientation-switch;
retimer-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -1018,6 +1020,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dts b/arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dts
index ce7b10ea89b6d..11412099eaec1 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dts
+++ b/arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dts
@@ -726,6 +726,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -789,6 +791,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts b/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts
index beb1475d7fa0c..d16d3627796b8 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts
+++ b/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts
@@ -863,6 +863,8 @@ typec-mux@8 {
orientation-switch;
retimer-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -920,6 +922,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -977,6 +981,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1e80100-medion-sprchrgd-14-s1.dts b/arch/arm64/boot/dts/qcom/x1e80100-medion-sprchrgd-14-s1.dts
index f95b1f9f439d3..55f9df8e5f403 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100-medion-sprchrgd-14-s1.dts
+++ b/arch/arm64/boot/dts/qcom/x1e80100-medion-sprchrgd-14-s1.dts
@@ -857,6 +857,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
diff --git a/arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus.dtsi b/arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus.dtsi
index 28342cb84ded7..4ccfbe7e14eb8 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus.dtsi
@@ -902,6 +902,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
@@ -984,6 +986,8 @@ typec-mux@8 {
retimer-switch;
orientation-switch;
+ parade,disable-usb4;
+
ports {
#address-cells = <1>;
#size-cells = <0>;
--
2.53.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH 5/5] arm64: dts: qcom: x1: disable ps883x USB4 capability
2026-07-18 17:06 ` [PATCH 5/5] arm64: dts: qcom: x1: disable ps883x USB4 capability Jens Glathe via B4 Relay
@ 2026-07-19 1:15 ` Dr. David Alan Gilbert
0 siblings, 0 replies; 8+ messages in thread
From: Dr. David Alan Gilbert @ 2026-07-19 1:15 UTC (permalink / raw)
To: jens.glathe
Cc: Greg Kroah-Hartman, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Abel Vesa, Heikki Krogerus, Bjorn Andersson,
Konrad Dybcio, linux-usb, devicetree, linux-kernel, linux-arm-msm,
stable
* Jens Glathe via B4 Relay (devnull+jens.glathe.oldschoolsolutions.biz@kernel.org) wrote:
> From: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
>
> Add the "parade,disable-usb4" property to the PS883x node so that the
> retimer driver treats USB4 as USB3. This allows the combo PHY to remain
> in a DP-capable mode, restoring working DisplayPort output over the
> dock while keeping USB functional.
>
> This is a temporary platform workaround until proper USB4 DP tunneling
> support is available.
>
> Signed-off-by: Jens Glathe <jens.glathe@oldschoolsolutions.biz>
Tested-by: Dr. David Alan Gilbert <dave@treblig.org>
on zenbook a14 with tb cable
> ---
> arch/arm64/boot/dts/qcom/hamoa-iot-evk.dts | 4 ++++
> arch/arm64/boot/dts/qcom/hamoa-lenovo-ideacentre-mini-01q8x10.dts | 2 ++
> arch/arm64/boot/dts/qcom/purwa-iot-evk.dts | 6 ++++++
> arch/arm64/boot/dts/qcom/x1-asus-vivobook-s15.dtsi | 4 ++++
> arch/arm64/boot/dts/qcom/x1-asus-zenbook-a14.dtsi | 4 ++++
> arch/arm64/boot/dts/qcom/x1-crd.dtsi | 6 ++++++
> arch/arm64/boot/dts/qcom/x1-dell-thena.dtsi | 4 ++++
> arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi | 2 ++
> arch/arm64/boot/dts/qcom/x1-microsoft-denali.dtsi | 4 ++++
> arch/arm64/boot/dts/qcom/x1e001de-devkit.dts | 6 ++++++
> arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtsi | 4 ++++
> arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dts | 4 ++++
> arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts | 6 ++++++
> arch/arm64/boot/dts/qcom/x1e80100-medion-sprchrgd-14-s1.dts | 2 ++
> arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus.dtsi | 4 ++++
> 15 files changed, 62 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/qcom/hamoa-iot-evk.dts b/arch/arm64/boot/dts/qcom/hamoa-iot-evk.dts
> index 9fa86bb6438ec..5ec77c5912f8e 100644
> --- a/arch/arm64/boot/dts/qcom/hamoa-iot-evk.dts
> +++ b/arch/arm64/boot/dts/qcom/hamoa-iot-evk.dts
> @@ -762,6 +762,8 @@ typec-mux@8 {
> orientation-switch;
> retimer-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -877,6 +879,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/hamoa-lenovo-ideacentre-mini-01q8x10.dts b/arch/arm64/boot/dts/qcom/hamoa-lenovo-ideacentre-mini-01q8x10.dts
> index bfb7cea56df96..328a360843f4c 100644
> --- a/arch/arm64/boot/dts/qcom/hamoa-lenovo-ideacentre-mini-01q8x10.dts
> +++ b/arch/arm64/boot/dts/qcom/hamoa-lenovo-ideacentre-mini-01q8x10.dts
> @@ -601,6 +601,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/purwa-iot-evk.dts b/arch/arm64/boot/dts/qcom/purwa-iot-evk.dts
> index ad503beec1d3d..9ce080b9ae896 100644
> --- a/arch/arm64/boot/dts/qcom/purwa-iot-evk.dts
> +++ b/arch/arm64/boot/dts/qcom/purwa-iot-evk.dts
> @@ -703,6 +703,8 @@ typec-mux@8 {
> orientation-switch;
> retimer-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -760,6 +762,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -865,6 +869,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1-asus-vivobook-s15.dtsi b/arch/arm64/boot/dts/qcom/x1-asus-vivobook-s15.dtsi
> index 48c4ad648354e..d67ded1da5875 100644
> --- a/arch/arm64/boot/dts/qcom/x1-asus-vivobook-s15.dtsi
> +++ b/arch/arm64/boot/dts/qcom/x1-asus-vivobook-s15.dtsi
> @@ -678,6 +678,8 @@ typec-mux@8 {
> orientation-switch;
> retimer-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -798,6 +800,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1-asus-zenbook-a14.dtsi b/arch/arm64/boot/dts/qcom/x1-asus-zenbook-a14.dtsi
> index 66d566808f583..e1033d3bef359 100644
> --- a/arch/arm64/boot/dts/qcom/x1-asus-zenbook-a14.dtsi
> +++ b/arch/arm64/boot/dts/qcom/x1-asus-zenbook-a14.dtsi
> @@ -845,6 +845,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -945,6 +947,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1-crd.dtsi b/arch/arm64/boot/dts/qcom/x1-crd.dtsi
> index 9602d65c8b3db..002a974c88751 100644
> --- a/arch/arm64/boot/dts/qcom/x1-crd.dtsi
> +++ b/arch/arm64/boot/dts/qcom/x1-crd.dtsi
> @@ -967,6 +967,8 @@ typec-mux@8 {
> orientation-switch;
> retimer-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -1024,6 +1026,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -1112,6 +1116,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1-dell-thena.dtsi b/arch/arm64/boot/dts/qcom/x1-dell-thena.dtsi
> index d6de4da02dcd3..fa17cdafc07b4 100644
> --- a/arch/arm64/boot/dts/qcom/x1-dell-thena.dtsi
> +++ b/arch/arm64/boot/dts/qcom/x1-dell-thena.dtsi
> @@ -852,6 +852,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -947,6 +949,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi b/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi
> index 02708f23a8657..4dd62092b8809 100644
> --- a/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi
> +++ b/arch/arm64/boot/dts/qcom/x1-hp-omnibook-x14.dtsi
> @@ -917,6 +917,8 @@ typec-mux@8 {
> orientation-switch;
> retimer-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1-microsoft-denali.dtsi b/arch/arm64/boot/dts/qcom/x1-microsoft-denali.dtsi
> index 7559557610ed4..1aa075d6eeda5 100644
> --- a/arch/arm64/boot/dts/qcom/x1-microsoft-denali.dtsi
> +++ b/arch/arm64/boot/dts/qcom/x1-microsoft-denali.dtsi
> @@ -759,6 +759,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -822,6 +824,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts b/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts
> index 2e38402e2c140..ada5da526634a 100644
> --- a/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts
> +++ b/arch/arm64/boot/dts/qcom/x1e001de-devkit.dts
> @@ -795,6 +795,8 @@ typec-mux@8 {
> orientation-switch;
> retimer-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -852,6 +854,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -943,6 +947,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtsi b/arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtsi
> index 5d49df41be02a..c8bfb38c64ad5 100644
> --- a/arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtsi
> +++ b/arch/arm64/boot/dts/qcom/x1e78100-lenovo-thinkpad-t14s.dtsi
> @@ -895,6 +895,8 @@ typec-mux@8 {
> orientation-switch;
> retimer-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -1018,6 +1020,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dts b/arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dts
> index ce7b10ea89b6d..11412099eaec1 100644
> --- a/arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dts
> +++ b/arch/arm64/boot/dts/qcom/x1e80100-dell-xps13-9345.dts
> @@ -726,6 +726,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -789,6 +791,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts b/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts
> index beb1475d7fa0c..d16d3627796b8 100644
> --- a/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts
> +++ b/arch/arm64/boot/dts/qcom/x1e80100-lenovo-yoga-slim7x.dts
> @@ -863,6 +863,8 @@ typec-mux@8 {
> orientation-switch;
> retimer-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -920,6 +922,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -977,6 +981,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1e80100-medion-sprchrgd-14-s1.dts b/arch/arm64/boot/dts/qcom/x1e80100-medion-sprchrgd-14-s1.dts
> index f95b1f9f439d3..55f9df8e5f403 100644
> --- a/arch/arm64/boot/dts/qcom/x1e80100-medion-sprchrgd-14-s1.dts
> +++ b/arch/arm64/boot/dts/qcom/x1e80100-medion-sprchrgd-14-s1.dts
> @@ -857,6 +857,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> diff --git a/arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus.dtsi b/arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus.dtsi
> index 28342cb84ded7..4ccfbe7e14eb8 100644
> --- a/arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus.dtsi
> +++ b/arch/arm64/boot/dts/qcom/x1e80100-microsoft-romulus.dtsi
> @@ -902,6 +902,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
> @@ -984,6 +986,8 @@ typec-mux@8 {
> retimer-switch;
> orientation-switch;
>
> + parade,disable-usb4;
> +
> ports {
> #address-cells = <1>;
> #size-cells = <0>;
>
> --
> 2.53.0
>
>
--
-----Open up your eyes, open up your mind, open up your code -------
/ Dr. David Alan Gilbert | Running GNU/Linux | Happy \
\ dave @ treblig.org | | In Hex /
\ _________________________|_____ http://www.treblig.org |_______/
^ permalink raw reply [flat|nested] 8+ messages in thread