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 95a2687 commit f2e2573Copy full SHA for f2e2573
drivers/gpu/drm/amd/amdgpu/nv.c
@@ -362,10 +362,15 @@ nv_asic_reset_method(struct amdgpu_device *adev)
362
dev_warn(adev->dev, "Specified reset method:%d isn't supported, using AUTO instead.\n",
363
amdgpu_reset_method);
364
365
- if (smu_baco_is_support(smu))
366
- return AMD_RESET_METHOD_BACO;
367
- else
+ switch (adev->asic_type) {
+ case CHIP_SIENNA_CICHLID:
368
return AMD_RESET_METHOD_MODE1;
+ default:
369
+ if (smu_baco_is_support(smu))
370
+ return AMD_RESET_METHOD_BACO;
371
+ else
372
+ return AMD_RESET_METHOD_MODE1;
373
+ }
374
}
375
376
static int nv_asic_reset(struct amdgpu_device *adev)
0 commit comments