Home
last modified time | relevance | path

Searched refs:core (Results 1 – 25 of 94) sorted by relevance

1234

/hal_nxp-3.7.0/mcux/mcux-sdk/components/srtm/srtm/
Dsrtm_peercore.c36 srtm_peercore_t core = (srtm_peercore_t)SRTM_Heap_Malloc(sizeof(struct _srtm_peercore)); in SRTM_PeerCore_Create() local
38 srtm_mutex_t mutex = SRTM_Mutex_Create(&core->mutexStatic); in SRTM_PeerCore_Create()
43 assert((core != NULL) && (mutex != NULL)); in SRTM_PeerCore_Create()
46 SRTM_List_Init(&core->node); in SRTM_PeerCore_Create()
47 SRTM_List_Init(&core->channels); in SRTM_PeerCore_Create()
48 SRTM_List_Init(&core->pendingQ); in SRTM_PeerCore_Create()
50 core->id = id; in SRTM_PeerCore_Create()
51 core->dispatcher = NULL; in SRTM_PeerCore_Create()
52 core->mutex = mutex; in SRTM_PeerCore_Create()
53 core->started = false; in SRTM_PeerCore_Create()
[all …]
Dsrtm_dispatcher.c249 srtm_peercore_t core; in SRTM_Dispatcher_Destroy() local
267 core = SRTM_LIST_OBJ(srtm_peercore_t, node, list); in SRTM_Dispatcher_Destroy()
268 SRTM_PeerCore_Destroy(core); in SRTM_Dispatcher_Destroy()
336 srtm_peercore_t core; in SRTM_Dispatcher_Run() local
351 core = SRTM_LIST_OBJ(srtm_peercore_t, node, list); in SRTM_Dispatcher_Run()
352 (void)SRTM_PeerCore_Start(core); in SRTM_Dispatcher_Run()
377 core = SRTM_LIST_OBJ(srtm_peercore_t, node, list); in SRTM_Dispatcher_Run()
378 (void)SRTM_PeerCore_Stop(core); in SRTM_Dispatcher_Run()
386 srtm_status_t SRTM_Dispatcher_AddPeerCore(srtm_dispatcher_t disp, srtm_peercore_t core) in SRTM_Dispatcher_AddPeerCore() argument
389 assert(core); in SRTM_Dispatcher_AddPeerCore()
[all …]
Dsrtm_channel_struct.h24 srtm_peercore_t core; /*!< SRTM peer core channel belongs to */ member
/hal_nxp-3.7.0/mcux/mcux-sdk/components/srtm/include/
Dsrtm_peercore.h37 typedef srtm_status_t (*srtm_peercore_wakeup_cb_t)(srtm_peercore_t core, void *param);
59 void SRTM_PeerCore_Destroy(srtm_peercore_t core);
67 uint32_t SRTM_PeerCore_GetID(srtm_peercore_t core);
75 srtm_status_t SRTM_PeerCore_Start(srtm_peercore_t core);
83 srtm_status_t SRTM_PeerCore_Stop(srtm_peercore_t core);
91 srtm_status_t SRTM_PeerCore_Activate(srtm_peercore_t core);
101 srtm_status_t SRTM_PeerCore_Deactivate(srtm_peercore_t core, srtm_peercore_wakeup_cb_t wakeup, void…
110 srtm_status_t SRTM_PeerCore_AddChannel(srtm_peercore_t core, srtm_channel_t channel);
119 srtm_status_t SRTM_PeerCore_RemoveChannel(srtm_peercore_t core, srtm_channel_t channel);
127 srtm_peercore_state_t SRTM_PeerCore_GetState(srtm_peercore_t core);
[all …]
Dsrtm_dispatcher.h78 srtm_status_t SRTM_Dispatcher_AddPeerCore(srtm_dispatcher_t disp, srtm_peercore_t core);
87 srtm_status_t SRTM_Dispatcher_RemovePeerCore(srtm_dispatcher_t disp, srtm_peercore_t core);
/hal_nxp-3.7.0/mcux/mcux-sdk/cmake/
Dmcux.cmake3 set(PROJECT_ROOT ${SdkRootDirPath}/core)
4 #set(KCONFIG_ROOT ${SdkRootDirPath}/core/Kconfig)
7 set(BOARD_DIR ${SdkRootDirPath}/core/boards/${BOARD})
8 set(KCONFIG_ROOT ${SdkRootDirPath}/core/Kconfig)
68 include(${SdkRootDirPath}/core/cmake/python.cmake)
69 include(${SdkRootDirPath}/core/cmake/kconfig.cmake)
Dpython.cmake22 include(${SdkRootDirPath}/core/cmake/backports/FindPythonInterp.cmake)
/hal_nxp-3.7.0/mcux/mcux-sdk/scripts/kconfig/
Dmisc.py29 core = ""
36 core = val
39 if core:
40 board_name = "%s_%s"%(board_name,core.upper())
/hal_nxp-3.7.0/mcux/
DCMakeLists.txt5 # MCUX_DEVICE: SOC name, suffixed by core name when using a dual core part.
7 # MCUX_CPU: "CPU"+ SOC part number, followed by core name when using a dual core part.
9 # MCU_DEVICE_PATH: SOC name without core suffix. Must match the name of the
/hal_nxp-3.7.0/mcux/mcux-sdk/components/srtm/channels/
Dsrtm_rpmsg_endpoint.c77 assert(handle->channel.core != NULL); in SRTM_RPMsgEndpoint_RxHandler()
78 assert(handle->channel.core->dispatcher != NULL); in SRTM_RPMsgEndpoint_RxHandler()
80 …(void)SRTM_Dispatcher_PostRecvData(handle->channel.core->dispatcher, &handle->channel, payload, pa… in SRTM_RPMsgEndpoint_RxHandler()
207 handle->channel.core = NULL; in SRTM_RPMsgEndpoint_Create()
232 … assert(channel->core == NULL); /* Channel must be removed from core before destroy */ in SRTM_RPMsgEndpoint_Destroy()
/hal_nxp-3.7.0/mcux/mcux-sdk/
DREADME_CN.md52 …假定你曾经执行上面的命令获取了一份新的SDK所有项目并放在west工作区mcuxsdk目录下, 这时中央存储库是被放到mcuxsdk/core目录。如果想要更新本地的SDK所有项目到另外一个指定的…
56 cd mcuxsdk/core
63 cd mcuxsdk/core
DREADME.md29 … workspace mcuxsdk, then the main repository of SDK is located in mcuxsdk/core. If you would like …
34 cd mcuxsdk/core
42 cd mcuxsdk/core
/hal_nxp-3.7.0/mcux/mcux-sdk/utilities/misc_utilities/
DKconfig24 Used to include slave core binary into master core binary.
/hal_nxp-3.7.0/imx/
DREADME20 processors, exclusively on Cortex M4 core, and to speed up the development
38 …sors-heterogeneous-processing-with-dual-arm-cortex-a7-cores-and-cortex-m4-core:i.MX7D?tab=Design_T…
/hal_nxp-3.7.0/mcux/mcux-sdk/components/power_manager/core/
Dcomponent_power_manager_core.cmake1 #Description: Component power manager core; user_visible: False
/hal_nxp-3.7.0/mcux/mcux-sdk/drivers/common/
Ddriver_common.cmake9 #Include core specific common file
/hal_nxp-3.7.0/mcux/mcux-sdk/components/srtm/services/
Dsrtm_audio_service.c852 void SRTM_AudioService_Reset(srtm_service_t service, srtm_peercore_t core) in SRTM_AudioService_Reset() argument
865 if ((iface->sai != NULL) && (iface->useCount > 0U) && (iface->channel->core == core)) in SRTM_AudioService_Reset()
Dsrtm_i2c_service.h166 void SRTM_I2CService_Reset(srtm_service_t service, srtm_peercore_t core);
Dsrtm_audio_service.h192 void SRTM_AudioService_Reset(srtm_service_t service, srtm_peercore_t core);
/hal_nxp-3.7.0/s32/drivers/s32k3/Icu/include/
DWkpu_Ip_Types.h143 Wkpu_Ip_CoreType core; /**< @brief WKPU core source */ member
/hal_nxp-3.7.0/mcux/mcux-sdk/boards/evkmimxrt1170/
Devkmimxrt1170_connect_cm4_cm4side.jlinkscript44 // Disable system reset caused by sysrstreq from each core
/hal_nxp-3.7.0/mcux/mcux-sdk/boards/evkbmimxrt1170/
Devkbmimxrt1170_connect_cm4_cm4side.jlinkscript44 // Disable system reset caused by sysrstreq from each core
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/K32L3A60/mcuxpresso/
Dboot_multicore_slave.c107 #error Cannot resolve slave core image address in boot_multicore_slave()
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MIMXRT1176/
Dall_lib_device.cmake26 # # description: Used to include slave core binary into master core binary.
185 # # description: Component power manager core level
939 # # description: MMCAU library for ARM Cortex M4/M7 core
1311 # # description: TensorFlow Lite Micro library binary with core specific kernel implementations
/hal_nxp-3.7.0/mcux/mcux-sdk/devices/MIMXRT1166/
Dall_lib_device.cmake16 # # description: Used to include slave core binary into master core binary.
881 # # description: MMCAU library for ARM Cortex M4/M7 core
1241 # # description: TensorFlow Lite Micro library binary with core specific kernel implementations

1234