[PATCH] drm/amdgpu: fix pm_load_smu_firmware for SR-IOV
Huang, Ray
Ray.Huang at amd.com
Tue Jun 11 10:28:45 UTC 2019
> -----Original Message-----
> From: amd-gfx <amd-gfx-bounces at lists.freedesktop.org> On Behalf Of
> Trigger Huang
> Sent: Tuesday, June 11, 2019 12:09 PM
> To: amd-gfx at lists.freedesktop.org
> Cc: Liang, Prike <Prike.Liang at amd.com>; Huang, Trigger
> <Trigger.Huang at amd.com>
> Subject: [PATCH] drm/amdgpu: fix pm_load_smu_firmware for SR-IOV
>
> For SR-IOV VF, powerplay may not be supported, in this case, error '-EINVAL'
> should not be returned.
>
> Signed-off-by: Trigger Huang <Trigger.Huang at amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c
> b/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c
> index 21b5be1..4276d63 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c
> @@ -2709,7 +2709,10 @@ int amdgpu_pm_load_smu_firmware(struct
> amdgpu_device *adev, uint32_t *smu_versio
> return r;
> }
> *smu_version = adev->pm.fw_version;
> + } else if (amdgpu_sriov_vf(adev)) {
> + r = 0;
Could you please add the checking at the start of this function:
if (amdgpu_sriov_vf(adev))
return 0;
The code looks better than adding a "else" here.
With that fixed, please add
Reviewed-by: Huang Rui <ray.huang at amd.com>
> }
> +
> return r;
> }
>
> --
> 2.7.4
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
More information about the amd-gfx
mailing list