Skip to content

Commit 139e99d

Browse files
superm1alexdeucher
authored andcommitted
drm/amd/display: Add HP Probook 445 and 465 to the quirk list for eDP on DP1
[Why] HP Probook 445 and 465 has DP0 and DP1 swapped. [How] Add HP Probook 445 and 465 to DP0/DP1 swap quirk list. Cc: [email protected] Link: https://gitlab.freedesktop.org/drm/amd/-/issues/3995 Reviewed-by: Alex Hung <[email protected]> Signed-off-by: Mario Limonciello <[email protected]> Signed-off-by: Roman Li <[email protected]> Tested-by: Anson Tsao <[email protected]> Tested-by: Daniel Wheeler <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent 366e77c commit 139e99d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1729,6 +1729,20 @@ static const struct dmi_system_id dmi_quirk_table[] = {
17291729
DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook 665 16 inch G11 Notebook PC"),
17301730
},
17311731
},
1732+
{
1733+
.callback = edp0_on_dp1_callback,
1734+
.matches = {
1735+
DMI_MATCH(DMI_SYS_VENDOR, "HP"),
1736+
DMI_MATCH(DMI_PRODUCT_NAME, "HP ProBook 445 14 inch G11 Notebook PC"),
1737+
},
1738+
},
1739+
{
1740+
.callback = edp0_on_dp1_callback,
1741+
.matches = {
1742+
DMI_MATCH(DMI_SYS_VENDOR, "HP"),
1743+
DMI_MATCH(DMI_PRODUCT_NAME, "HP ProBook 465 16 inch G11 Notebook PC"),
1744+
},
1745+
},
17321746
{}
17331747
/* TODO: refactor this from a fixed table to a dynamic option */
17341748
};

0 commit comments

Comments
 (0)