diff options
| author | Jason-JH.Lin <[email protected]> | 2024-03-07 09:34:58 +0800 | 
|---|---|---|
| committer | AngeloGioacchino Del Regno <[email protected]> | 2024-04-23 12:16:55 +0200 | 
| commit | 69ff68332dc5005539ac37c5c85444aaaec7c914 (patch) | |
| tree | 0e3fd0078084c76c90ed4e5f1f7b443b327e17d3 /include/linux/fpga/altera-pr-ip-core.h | |
| parent | 400e2fa8058e7032974a892c7336b3ea20e24cfd (diff) | |
soc: mediatek: mtk-cmdq: Add cmdq_pkt_acquire_event() function
Add cmdq_pkt_acquire_event() function to support CMDQ user making
an instruction for acquiring event.
CMDQ users can use cmdq_pkt_acquire_event() as `mutex_lock`
and cmdq_pkt_clear_event() as `mutex_unlock` to protect the global
resource modified instructions between them.
cmdq_pkt_acquire_event() would wait for event to be cleared.
After event is cleared by cmdq_pkt_clear_event() in other GCE threads,
cmdq_pkt_acquire_event() would set event and keep executing next
instruction. So the mutex would work like this:
    cmdq_pkt_acquire_event() /* mutex lock */
    /* critical secton instructions that modified global resource */
    cmdq_pkt_clear_event() /* mutex unlock */
Prevent the critical section instructions from being affected by other
GCE threads.
Signed-off-by: Jason-JH.Lin <[email protected]>
Reviewed-by: AngeloGioacchino Del Regno <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: AngeloGioacchino Del Regno <[email protected]>
Diffstat (limited to 'include/linux/fpga/altera-pr-ip-core.h')
0 files changed, 0 insertions, 0 deletions