提交 89a7a870 编写于 作者: A Andrey Grodzovsky

drm/amdgpu: Move in_gpu_reset into reset_domain

We should have a single instance per entrire reset domain.
Signed-off-by: NAndrey Grodzovsky <andrey.grodzovsky@amd.com>
Suggested-by: NLijo Lazar <lijo.lazar@amd.com>
Reviewed-by: NChristian König <christian.koenig@amd.com>
Link: https://www.spinics.net/lists/amd-gfx/msg74116.html
上级 d0fb18b5
...@@ -1056,7 +1056,6 @@ struct amdgpu_device { ...@@ -1056,7 +1056,6 @@ struct amdgpu_device {
bool in_s4; bool in_s4;
bool in_s0ix; bool in_s0ix;
atomic_t in_gpu_reset;
enum pp_mp1_state mp1_state; enum pp_mp1_state mp1_state;
struct amdgpu_doorbell_index doorbell_index; struct amdgpu_doorbell_index doorbell_index;
...@@ -1463,8 +1462,6 @@ static inline bool amdgpu_is_tmz(struct amdgpu_device *adev) ...@@ -1463,8 +1462,6 @@ static inline bool amdgpu_is_tmz(struct amdgpu_device *adev)
return adev->gmc.tmz_enabled; return adev->gmc.tmz_enabled;
} }
static inline int amdgpu_in_reset(struct amdgpu_device *adev) int amdgpu_in_reset(struct amdgpu_device *adev);
{
return atomic_read(&adev->in_gpu_reset);
}
#endif #endif
...@@ -3554,7 +3554,6 @@ int amdgpu_device_init(struct amdgpu_device *adev, ...@@ -3554,7 +3554,6 @@ int amdgpu_device_init(struct amdgpu_device *adev,
mutex_init(&adev->mn_lock); mutex_init(&adev->mn_lock);
mutex_init(&adev->virt.vf_errors.lock); mutex_init(&adev->virt.vf_errors.lock);
hash_init(adev->mn_hash); hash_init(adev->mn_hash);
atomic_set(&adev->in_gpu_reset, 0);
mutex_init(&adev->psp.mutex); mutex_init(&adev->psp.mutex);
mutex_init(&adev->notifier_lock); mutex_init(&adev->notifier_lock);
...@@ -4829,7 +4828,7 @@ int amdgpu_do_asic_reset(struct list_head *device_list_handle, ...@@ -4829,7 +4828,7 @@ int amdgpu_do_asic_reset(struct list_head *device_list_handle,
static void amdgpu_device_lock_adev(struct amdgpu_device *adev, static void amdgpu_device_lock_adev(struct amdgpu_device *adev,
struct amdgpu_hive_info *hive) struct amdgpu_hive_info *hive)
{ {
atomic_set(&adev->in_gpu_reset, 1); atomic_set(&adev->reset_domain->in_gpu_reset, 1);
if (hive) { if (hive) {
down_write_nest_lock(&adev->reset_domain->sem, &hive->hive_lock); down_write_nest_lock(&adev->reset_domain->sem, &hive->hive_lock);
...@@ -4854,7 +4853,7 @@ static void amdgpu_device_unlock_adev(struct amdgpu_device *adev) ...@@ -4854,7 +4853,7 @@ static void amdgpu_device_unlock_adev(struct amdgpu_device *adev)
{ {
amdgpu_vf_error_trans_all(adev); amdgpu_vf_error_trans_all(adev);
adev->mp1_state = PP_MP1_STATE_NONE; adev->mp1_state = PP_MP1_STATE_NONE;
atomic_set(&adev->in_gpu_reset, 0); atomic_set(&adev->reset_domain->in_gpu_reset, 0);
up_write(&adev->reset_domain->sem); up_write(&adev->reset_domain->sem);
} }
...@@ -5699,6 +5698,11 @@ void amdgpu_device_invalidate_hdp(struct amdgpu_device *adev, ...@@ -5699,6 +5698,11 @@ void amdgpu_device_invalidate_hdp(struct amdgpu_device *adev,
amdgpu_asic_invalidate_hdp(adev, ring); amdgpu_asic_invalidate_hdp(adev, ring);
} }
int amdgpu_in_reset(struct amdgpu_device *adev)
{
return atomic_read(&adev->reset_domain->in_gpu_reset);
}
/** /**
* amdgpu_device_halt() - bring hardware to some kind of halt state * amdgpu_device_halt() - bring hardware to some kind of halt state
* *
......
...@@ -131,6 +131,7 @@ struct amdgpu_reset_domain *amdgpu_reset_create_reset_domain(enum amdgpu_reset_d ...@@ -131,6 +131,7 @@ struct amdgpu_reset_domain *amdgpu_reset_create_reset_domain(enum amdgpu_reset_d
} }
atomic_set(&reset_domain->in_gpu_reset, 0);
init_rwsem(&reset_domain->sem); init_rwsem(&reset_domain->sem);
return reset_domain; return reset_domain;
......
...@@ -81,6 +81,7 @@ struct amdgpu_reset_domain { ...@@ -81,6 +81,7 @@ struct amdgpu_reset_domain {
struct workqueue_struct *wq; struct workqueue_struct *wq;
enum amdgpu_reset_domain_type type; enum amdgpu_reset_domain_type type;
struct rw_semaphore sem; struct rw_semaphore sem;
atomic_t in_gpu_reset;
}; };
......
...@@ -259,7 +259,7 @@ static void xgpu_ai_mailbox_flr_work(struct work_struct *work) ...@@ -259,7 +259,7 @@ static void xgpu_ai_mailbox_flr_work(struct work_struct *work)
* otherwise the mailbox msg will be ruined/reseted by * otherwise the mailbox msg will be ruined/reseted by
* the VF FLR. * the VF FLR.
*/ */
if (atomic_cmpxchg(&adev->in_gpu_reset, 0, 1) != 0) if (atomic_cmpxchg(&adev->reset_domain->in_gpu_reset, 0, 1) != 0)
return; return;
down_write(&adev->reset_domain->sem); down_write(&adev->reset_domain->sem);
...@@ -277,7 +277,7 @@ static void xgpu_ai_mailbox_flr_work(struct work_struct *work) ...@@ -277,7 +277,7 @@ static void xgpu_ai_mailbox_flr_work(struct work_struct *work)
} while (timeout > 1); } while (timeout > 1);
flr_done: flr_done:
atomic_set(&adev->in_gpu_reset, 0); atomic_set(&adev->reset_domain->in_gpu_reset, 0);
up_write(&adev->reset_domain->sem); up_write(&adev->reset_domain->sem);
/* Trigger recovery for world switch failure if no TDR */ /* Trigger recovery for world switch failure if no TDR */
......
...@@ -283,7 +283,7 @@ static void xgpu_nv_mailbox_flr_work(struct work_struct *work) ...@@ -283,7 +283,7 @@ static void xgpu_nv_mailbox_flr_work(struct work_struct *work)
* otherwise the mailbox msg will be ruined/reseted by * otherwise the mailbox msg will be ruined/reseted by
* the VF FLR. * the VF FLR.
*/ */
if (atomic_cmpxchg(&adev->in_gpu_reset, 0, 1) != 0) if (atomic_cmpxchg(&adev->reset_domain->in_gpu_reset, 0, 1) != 0)
return; return;
down_write(&adev->reset_domain->sem); down_write(&adev->reset_domain->sem);
...@@ -301,7 +301,7 @@ static void xgpu_nv_mailbox_flr_work(struct work_struct *work) ...@@ -301,7 +301,7 @@ static void xgpu_nv_mailbox_flr_work(struct work_struct *work)
} while (timeout > 1); } while (timeout > 1);
flr_done: flr_done:
atomic_set(&adev->in_gpu_reset, 0); atomic_set(&adev->reset_domain->in_gpu_reset, 0);
up_write(&adev->reset_domain->sem); up_write(&adev->reset_domain->sem);
/* Trigger recovery for world switch failure if no TDR */ /* Trigger recovery for world switch failure if no TDR */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册