1 // SPDX-License-Identifier: GPL-2.0
3 * Thunderbolt driver - quirks
5 * Copyright (c) 2020 Mario Limonciello <mario.limonciello@dell.com>
10 static void quirk_force_power_link(struct tb_switch *sw)
12 sw->quirks |= QUIRK_FORCE_POWER_LINK_CONTROLLER;
13 tb_sw_dbg(sw, "forcing power to link controller\n");
16 static void quirk_dp_credit_allocation(struct tb_switch *sw)
18 if (sw->credit_allocation && sw->min_dp_main_credits == 56) {
19 sw->min_dp_main_credits = 18;
20 tb_sw_dbg(sw, "quirked DP main: %u\n", sw->min_dp_main_credits);
24 static void quirk_clx_disable(struct tb_switch *sw)
26 sw->quirks |= QUIRK_NO_CLX;
27 tb_sw_dbg(sw, "disabling CL states\n");
30 static void quirk_usb3_maximum_bandwidth(struct tb_switch *sw)
34 tb_switch_for_each_port(sw, port) {
35 if (!tb_port_is_usb3_down(port))
38 tb_port_dbg(port, "USB3 maximum bandwidth limited to %u Mb/s\n",
48 void (*hook)(struct tb_switch *sw);
51 static const struct tb_quirk tb_quirks[] = {
52 /* Dell WD19TB supports self-authentication on unplug */
53 { 0x0000, 0x0000, 0x00d4, 0xb070, quirk_force_power_link },
54 { 0x0000, 0x0000, 0x00d4, 0xb071, quirk_force_power_link },
56 * Intel Goshen Ridge NVM 27 and before report wrong number of
59 { 0x8087, 0x0b26, 0x0000, 0x0000, quirk_dp_credit_allocation },
61 * Limit the maximum USB3 bandwidth for the following Intel USB4
62 * host routers due to a hardware issue.
64 { 0x8087, PCI_DEVICE_ID_INTEL_ADL_NHI0, 0x0000, 0x0000,
65 quirk_usb3_maximum_bandwidth },
66 { 0x8087, PCI_DEVICE_ID_INTEL_ADL_NHI1, 0x0000, 0x0000,
67 quirk_usb3_maximum_bandwidth },
68 { 0x8087, PCI_DEVICE_ID_INTEL_RPL_NHI0, 0x0000, 0x0000,
69 quirk_usb3_maximum_bandwidth },
70 { 0x8087, PCI_DEVICE_ID_INTEL_RPL_NHI1, 0x0000, 0x0000,
71 quirk_usb3_maximum_bandwidth },
72 { 0x8087, PCI_DEVICE_ID_INTEL_MTL_M_NHI0, 0x0000, 0x0000,
73 quirk_usb3_maximum_bandwidth },
74 { 0x8087, PCI_DEVICE_ID_INTEL_MTL_P_NHI0, 0x0000, 0x0000,
75 quirk_usb3_maximum_bandwidth },
76 { 0x8087, PCI_DEVICE_ID_INTEL_MTL_P_NHI1, 0x0000, 0x0000,
77 quirk_usb3_maximum_bandwidth },
78 { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_80G_NHI, 0x0000, 0x0000,
79 quirk_usb3_maximum_bandwidth },
80 { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_40G_NHI, 0x0000, 0x0000,
81 quirk_usb3_maximum_bandwidth },
82 { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HUB_80G_BRIDGE, 0x0000, 0x0000,
83 quirk_usb3_maximum_bandwidth },
84 { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HUB_40G_BRIDGE, 0x0000, 0x0000,
85 quirk_usb3_maximum_bandwidth },
87 * CLx is not supported on AMD USB4 Yellow Carp and Pink Sardine platforms.
89 { 0x0438, 0x0208, 0x0000, 0x0000, quirk_clx_disable },
90 { 0x0438, 0x0209, 0x0000, 0x0000, quirk_clx_disable },
91 { 0x0438, 0x020a, 0x0000, 0x0000, quirk_clx_disable },
92 { 0x0438, 0x020b, 0x0000, 0x0000, quirk_clx_disable },
96 * tb_check_quirks() - Check for quirks to apply
97 * @sw: Thunderbolt switch
99 * Apply any quirks for the Thunderbolt controller.
101 void tb_check_quirks(struct tb_switch *sw)
105 for (i = 0; i < ARRAY_SIZE(tb_quirks); i++) {
106 const struct tb_quirk *q = &tb_quirks[i];
108 if (q->hw_vendor_id && q->hw_vendor_id != sw->config.vendor_id)
110 if (q->hw_device_id && q->hw_device_id != sw->config.device_id)
112 if (q->vendor && q->vendor != sw->vendor)
114 if (q->device && q->device != sw->device)
117 tb_sw_dbg(sw, "running %ps\n", q->hook);