We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9db5424 commit 0470d83Copy full SHA for 0470d83
drivers/thunderbolt/acpi.c
@@ -9,6 +9,8 @@
9
#include <linux/acpi.h>
10
#include <linux/pm_runtime.h>
11
12
+#include <linux/dmi.h>
13
+
14
#include "tb.h"
15
16
static acpi_status tb_acpi_add_link(acpi_handle handle, u32 level, void *data,
@@ -139,6 +141,11 @@ bool tb_acpi_add_links(struct tb_nhi *nhi)
139
141
*/
140
142
bool tb_acpi_is_native(void)
143
{
144
+ // System76 devices using coreboot only support firmware based connection manager
145
+ if (dmi_match(DMI_SYS_VENDOR, "System76") &&
146
+ dmi_match(DMI_BIOS_VENDOR, "coreboot"))
147
+ return false;
148
149
return osc_sb_native_usb4_support_confirmed &&
150
osc_sb_native_usb4_control;
151
}
0 commit comments