forked from Minki/linux
drm/amdkfd: Add SDMA trap src id to the KFD isr wanted list
This enables SDMA signalling with event interrupt. Signed-off-by: Besar Wicaksono <Besar.Wicaksono@amd.com> Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com> Reviewed-by: Oded Gabbay <oded.gabbay@gmail.com> Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
This commit is contained in:
parent
7a88cbd8d6
commit
66b783b446
@ -36,6 +36,7 @@ static bool cik_event_interrupt_isr(struct kfd_dev *dev,
|
||||
/* Do not process in ISR, just request it to be forwarded to WQ. */
|
||||
return (pasid != 0) &&
|
||||
(ihre->source_id == CIK_INTSRC_CP_END_OF_PIPE ||
|
||||
ihre->source_id == CIK_INTSRC_SDMA_TRAP ||
|
||||
ihre->source_id == CIK_INTSRC_SQ_INTERRUPT_MSG ||
|
||||
ihre->source_id == CIK_INTSRC_CP_BAD_OPCODE);
|
||||
}
|
||||
@ -54,6 +55,8 @@ static void cik_event_interrupt_wq(struct kfd_dev *dev,
|
||||
|
||||
if (ihre->source_id == CIK_INTSRC_CP_END_OF_PIPE)
|
||||
kfd_signal_event_interrupt(pasid, 0, 0);
|
||||
else if (ihre->source_id == CIK_INTSRC_SDMA_TRAP)
|
||||
kfd_signal_event_interrupt(pasid, 0, 0);
|
||||
else if (ihre->source_id == CIK_INTSRC_SQ_INTERRUPT_MSG)
|
||||
kfd_signal_event_interrupt(pasid, ihre->data & 0xFF, 8);
|
||||
else if (ihre->source_id == CIK_INTSRC_CP_BAD_OPCODE)
|
||||
|
@ -32,9 +32,10 @@ struct cik_ih_ring_entry {
|
||||
uint32_t reserved;
|
||||
};
|
||||
|
||||
#define CIK_INTSRC_DEQUEUE_COMPLETE 0xC6
|
||||
#define CIK_INTSRC_CP_END_OF_PIPE 0xB5
|
||||
#define CIK_INTSRC_CP_BAD_OPCODE 0xB7
|
||||
#define CIK_INTSRC_DEQUEUE_COMPLETE 0xC6
|
||||
#define CIK_INTSRC_SDMA_TRAP 0xE0
|
||||
#define CIK_INTSRC_SQ_INTERRUPT_MSG 0xEF
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user