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 0baf2d8 commit 52fa2bbCopy full SHA for 52fa2bb
drivers/gpu/drm/radeon/radeon_combios.c
@@ -3050,6 +3050,14 @@ void radeon_combios_asic_init(struct drm_device *dev)
3050
rdev->pdev->subsystem_device == 0x308b)
3051
return;
3052
3053
+ /* quirk for rs4xx HP dv5000 laptop to make it resume
3054
+ * - it hangs on resume inside the dynclk 1 table.
3055
+ */
3056
+ if (rdev->family == CHIP_RS480 &&
3057
+ rdev->pdev->subsystem_vendor == 0x103c &&
3058
+ rdev->pdev->subsystem_device == 0x30a4)
3059
+ return;
3060
+
3061
/* DYN CLK 1 */
3062
table = combios_get_table_offset(dev, COMBIOS_DYN_CLK_1_TABLE);
3063
if (table)
0 commit comments