9 #ifndef _TEE_INTERRUPT_H_ 10 #define _TEE_INTERRUPT_H_ 13 #include <tee_internal_api.h> 14 #include <driver/interrupt/interrupt.h> Definition: tee_interrupt.h:22
TEE_Result TEES_AllocateInterrupt(int nr, intruhandler handler, TEES_InterruptHandle *handle)
This function is used to allocate interrupt and register user handler.
TEE_Result TEES_GenerateInterrupt(TEES_InterruptHandle handle)
This function is used to generate interrupt.
struct __TEES_InterruptHandle * TEES_InterruptHandle
Definition: tee_interrupt.h:18
TEE_Result TEES_CompleteInterrupt(TEES_InterruptHandle handle)
This function is used to notify about interrupt arrival.
TEE_Result TEES_WaitForInterrupt(TEES_InterruptHandle handle, uint32_t timeout)
This function is used to wait for interrupt.
TEE_Result TEES_ReleaseInterrupt(TEES_InterruptHandle handle)
This function is used to release interrupt.
void(* intruhandler)(struct intrinfo *)
Definition: tee_interrupt.h:29