]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
thunderbolt: Keep the domain powered when USB4 port is in redrive mode
authorMika Westerberg <mika.westerberg@linux.intel.com>
Fri, 26 Jan 2024 13:55:55 +0000 (15:55 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 13 Apr 2024 11:07:38 +0000 (13:07 +0200)
[ Upstream commit a75e0684efe567ae5f6a8e91a8360c4c1773cf3a ]

If a DiplayPort cable is directly connected to the host routers USB4
port, there is no tunnel involved but the port is in "redrive" mode
meaning that it is re-driving the DisplayPort signals from its
DisplayPort source. In this case we need to keep the domain powered on
otherwise once the domain enters D3cold the connected monitor blanks
too.

Since this happens only on Intel Barlow Ridge add a quirk that takes
runtime PM reference if we detect that the USB4 port entered redrive
mode (and release it once it exits the mode).

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/thunderbolt/quirks.c
drivers/thunderbolt/tb.c
drivers/thunderbolt/tb.h

index e6bfa63b40aee4675293620c5326cdb160af9a19..e81de9c30eac9acc8f9a41941cbeacb82bbebd66 100644 (file)
@@ -43,6 +43,12 @@ static void quirk_usb3_maximum_bandwidth(struct tb_switch *sw)
        }
 }
 
+static void quirk_block_rpm_in_redrive(struct tb_switch *sw)
+{
+       sw->quirks |= QUIRK_KEEP_POWER_IN_DP_REDRIVE;
+       tb_sw_dbg(sw, "preventing runtime PM in DP redrive mode\n");
+}
+
 struct tb_quirk {
        u16 hw_vendor_id;
        u16 hw_device_id;
@@ -86,6 +92,14 @@ static const struct tb_quirk tb_quirks[] = {
                  quirk_usb3_maximum_bandwidth },
        { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HUB_40G_BRIDGE, 0x0000, 0x0000,
                  quirk_usb3_maximum_bandwidth },
+       /*
+        * Block Runtime PM in DP redrive mode for Intel Barlow Ridge host
+        * controllers.
+        */
+       { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_80G_NHI, 0x0000, 0x0000,
+                 quirk_block_rpm_in_redrive },
+       { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_40G_NHI, 0x0000, 0x0000,
+                 quirk_block_rpm_in_redrive },
        /*
         * CLx is not supported on AMD USB4 Yellow Carp and Pink Sardine platforms.
         */
index 27bd6ca6f99e4101b8b4d8c9eab8c58cfd034726..ecfb5714e822d483d404c6d5e9fbd23e9ad39b9c 100644 (file)
@@ -1416,6 +1416,49 @@ err_rpm_put:
        pm_runtime_put_autosuspend(&in->sw->dev);
 }
 
+static void tb_enter_redrive(struct tb_port *port)
+{
+       struct tb_switch *sw = port->sw;
+
+       if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
+               return;
+
+       /*
+        * If we get hot-unplug for the DP IN port of the host router
+        * and the DP resource is not available anymore it means there
+        * is a monitor connected directly to the Type-C port and we are
+        * in "redrive" mode. For this to work we cannot enter RTD3 so
+        * we bump up the runtime PM reference count here.
+        */
+       if (!tb_port_is_dpin(port))
+               return;
+       if (tb_route(sw))
+               return;
+       if (!tb_switch_query_dp_resource(sw, port)) {
+               port->redrive = true;
+               pm_runtime_get(&sw->dev);
+               tb_port_dbg(port, "enter redrive mode, keeping powered\n");
+       }
+}
+
+static void tb_exit_redrive(struct tb_port *port)
+{
+       struct tb_switch *sw = port->sw;
+
+       if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
+               return;
+
+       if (!tb_port_is_dpin(port))
+               return;
+       if (tb_route(sw))
+               return;
+       if (port->redrive && tb_switch_query_dp_resource(sw, port)) {
+               port->redrive = false;
+               pm_runtime_put(&sw->dev);
+               tb_port_dbg(port, "exit redrive mode\n");
+       }
+}
+
 static void tb_dp_resource_unavailable(struct tb *tb, struct tb_port *port)
 {
        struct tb_port *in, *out;
@@ -1432,7 +1475,10 @@ static void tb_dp_resource_unavailable(struct tb *tb, struct tb_port *port)
        }
 
        tunnel = tb_find_tunnel(tb, TB_TUNNEL_DP, in, out);
-       tb_deactivate_and_free_tunnel(tunnel);
+       if (tunnel)
+               tb_deactivate_and_free_tunnel(tunnel);
+       else
+               tb_enter_redrive(port);
        list_del_init(&port->list);
 
        /*
@@ -1459,6 +1505,7 @@ static void tb_dp_resource_available(struct tb *tb, struct tb_port *port)
        tb_port_dbg(port, "DP %s resource available\n",
                    tb_port_is_dpin(port) ? "IN" : "OUT");
        list_add_tail(&port->list, &tcm->dp_resources);
+       tb_exit_redrive(port);
 
        /* Look for suitable DP IN <-> DP OUT pairs now */
        tb_tunnel_dp(tb);
index d2a55ad2fd3e698045db391c14ae79d8a8d3f71e..4893d2c7ac96864a09995298caa889a36493585b 100644 (file)
@@ -23,6 +23,8 @@
 #define QUIRK_FORCE_POWER_LINK_CONTROLLER              BIT(0)
 /* Disable CLx if not supported */
 #define QUIRK_NO_CLX                                   BIT(1)
+/* Need to keep power on while USB4 port is in redrive mode */
+#define QUIRK_KEEP_POWER_IN_DP_REDRIVE                 BIT(2)
 
 /**
  * struct tb_nvm - Structure holding NVM information
@@ -261,6 +263,7 @@ struct tb_bandwidth_group {
  * @group_list: The adapter is linked to the group's list of ports through this
  * @max_bw: Maximum possible bandwidth through this adapter if set to
  *         non-zero.
+ * @redrive: For DP IN, if true the adapter is in redrive mode.
  *
  * In USB4 terminology this structure represents an adapter (protocol or
  * lane adapter).
@@ -289,6 +292,7 @@ struct tb_port {
        struct tb_bandwidth_group *group;
        struct list_head group_list;
        unsigned int max_bw;
+       bool redrive;
 };
 
 /**