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 2edb79a commit 7c6fb61Copy full SHA for 7c6fb61
drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
@@ -368,6 +368,17 @@ static void sienna_cichlid_check_bxco_support(struct smu_context *smu)
368
smu_baco->platform_support =
369
(val & RCC_BIF_STRAP0__STRAP_PX_CAPABLE_MASK) ? true :
370
false;
371
+
372
+ /*
373
+ * Disable BACO entry/exit completely on below SKUs to
374
+ * avoid hardware intermittent failures.
375
+ */
376
+ if (((adev->pdev->device == 0x73A1) &&
377
+ (adev->pdev->revision == 0x00)) ||
378
+ ((adev->pdev->device == 0x73BF) &&
379
+ (adev->pdev->revision == 0xCF)))
380
+ smu_baco->platform_support = false;
381
382
}
383
384
0 commit comments