]> www.infradead.org Git - users/hch/misc.git/commitdiff
drm/amd/display: Add HP Probook 445 and 465 to the quirk list for eDP on DP1
authorMario Limonciello <mario.limonciello@amd.com>
Thu, 6 Mar 2025 17:29:20 +0000 (11:29 -0600)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 7 Apr 2025 18:37:09 +0000 (14:37 -0400)
[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: stable@vger.kernel.org
Link: https://gitlab.freedesktop.org/drm/amd/-/issues/3995
Reviewed-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Roman Li <roman.li@amd.com>
Tested-by: Anson Tsao <anson.tsao@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c

index d0d8ad5368c3f3de4d2d7e2d015c46b2b923ea27..11dde6f297c7449b85292474ccd722888a538cbd 100644 (file)
@@ -1729,6 +1729,20 @@ static const struct dmi_system_id dmi_quirk_table[] = {
                        DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook 665 16 inch G11 Notebook PC"),
                },
        },
+       {
+               .callback = edp0_on_dp1_callback,
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "HP"),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "HP ProBook 445 14 inch G11 Notebook PC"),
+               },
+       },
+       {
+               .callback = edp0_on_dp1_callback,
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "HP"),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "HP ProBook 465 16 inch G11 Notebook PC"),
+               },
+       },
        {}
        /* TODO: refactor this from a fixed table to a dynamic option */
 };