drm/amdgpu: always sending PSP messages LOAD_ASD and UNLOAD_TA
authorVitaly Prosyak <vitaly.prosyak@amd.com>
Fri, 20 Jan 2023 19:03:45 +0000 (14:03 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 3 Feb 2023 20:41:27 +0000 (15:41 -0500)
commit11cc4652e99f5529a9785b64f78fe005d8782b47
tree46ccc043cbf869890c0cdd34e8b8057e5f7cb90b
parentfebb414745d98f0a6f14d7fd53f1965a455e19d5
drm/amdgpu: always sending PSP messages LOAD_ASD and UNLOAD_TA

We allow sending PSP messages LOAD_ASD and UNLOAD_TA without
acquiring a lock in drm_dev_enter during driver unload
because we must call drm_dev_unplug as the beginning
of unload driver sequence.
Added WARNING if other PSP messages are sent without a lock.
After this commit, the following commands would work
 -sudo modprobe -r amdgpu
 -sudo modprobe amdgpu

Signed-off-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
Reviewed-by Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c