adds ipi functionality
This commit is contained in:
12
port/moonlight/aclint_ipi.h
Normal file
12
port/moonlight/aclint_ipi.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#ifndef _DEVICES_ACLINT_IPI
|
||||
#define _DEVICES_ACLINT_IPI
|
||||
|
||||
#include "gen/aclint.h"
|
||||
#include "platform.h"
|
||||
#include <stdint.h>
|
||||
|
||||
static void send_ipi(uint32_t target_core)
|
||||
{
|
||||
set_aclint_msip(aclint, target_core, 1);
|
||||
}
|
||||
#endif /* _DEVICES_ACLINT_IPI */
|
||||
6
port/threadx_smp/src/tx_thread_smp_core_preempt.c
Normal file
6
port/threadx_smp/src/tx_thread_smp_core_preempt.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <aclint_ipi.h>
|
||||
#include <tx_port.h>
|
||||
void _tx_thread_smp_core_preempt(UINT target_core)
|
||||
{
|
||||
send_ipi(target_core);
|
||||
}
|
||||
Reference in New Issue
Block a user