| /hal_ti-latest/simplelink/kernel/zephyr/dpl/ |
| D | HwiP_zephyr.c | 59 uint32_t priority = ~0; in HwiP_create() local 63 priority = params->priority; in HwiP_create() 82 __ASSERT((INT_PRIORITY_LVL_1 == priority) || in HwiP_create() 83 (0xff == (priority & 0xff)), in HwiP_create() 85 INT_PRIORITY_LVL_1, 0xff, (unsigned int)priority); in HwiP_create() 156 uint8_t priority = INT_PRI_LEVEL7; /* default to lowest priority */ in HwiP_construct() local 164 priority = params->priority; in HwiP_construct() 190 __ASSERT((INT_PRI_LEVEL7 == priority) || in HwiP_construct() 191 (INT_PRI_LEVEL6 == priority) || in HwiP_construct() 192 (INT_PRI_LEVEL5 == priority) || in HwiP_construct() [all …]
|
| D | SwiP_zephyr.c | 47 .priority = ~0, /* max priority */ 94 uint32_t priority; in SwiP_construct() local 110 hwiParams.priority = INT_PRI_LEVEL7; // use the lowest priority in SwiP_construct() 123 if (params->priority == (~0)) { in SwiP_construct() 124 priority = NUMPRI - 1; in SwiP_construct() 127 priority = params->priority; in SwiP_construct() 130 if (priority >= NUMPRI) { in SwiP_construct() 136 swi->params.priority = priority; in SwiP_construct() 140 swi->readyList = &SwiP_readyList[priority]; in SwiP_construct() 158 SwiP_readyMask &= ~(1 << swi->params.priority); in SwiP_destruct() [all …]
|
| /hal_ti-latest/simplelink_lpf3/kernel/zephyr/dpl/ |
| D | HwiP_zephyr.c | 63 uint8_t priority = INT_PRI_LEVEL3; /* default to lowest priority */ in HwiP_construct() local 72 priority = params->priority & 0xFF; in HwiP_construct() 92 …__ASSERT((INT_PRI_LEVEL0 == priority) || (INT_PRI_LEVEL3 == priority) || (INT_PRI_LEVEL2 == priori… in HwiP_construct() 93 (INT_PRI_LEVEL1 == priority) || (0xFF == priority), in HwiP_construct() 95 (unsigned int)priority); in HwiP_construct() 97 if (0xFF == priority) in HwiP_construct() 99 priority = INT_PRI_LEVEL3; in HwiP_construct() 103 priority = (priority >> 6); in HwiP_construct() 111 irq_connect_dynamic(INT_CPUIRQ1 - 16, priority, sl_isr, &sl_IRQ01_cb, 0); in HwiP_construct() 117 irq_connect_dynamic(INT_CPUIRQ3 - 16, priority, sl_isr, &sl_IRQ03_cb, 0); in HwiP_construct() [all …]
|
| D | SwiP_zephyr.c | 52 .priority = ~0, /* max priority */ 100 uint32_t priority; in SwiP_construct() local 119 hwiParams.priority = INT_PRI_LEVEL7; // use the lowest priority in SwiP_construct() 132 if (params->priority == (~0)) in SwiP_construct() 134 priority = NUMPRI - 1; in SwiP_construct() 138 priority = params->priority; in SwiP_construct() 141 if (priority >= NUMPRI) in SwiP_construct() 149 swi->params.priority = priority; in SwiP_construct() 153 swi->readyList = &SwiP_readyList[priority]; in SwiP_construct() 172 SwiP_readyMask &= ~(1 << swi->params.priority); in SwiP_destruct() [all …]
|
| D | TaskP_zephyr.c | 67 .priority = 1, 100 (0 - params->priority), 0, K_NO_WAIT); in TaskP_create() 148 (0 - params->priority), 0, K_NO_WAIT); in TaskP_construct()
|
| /hal_ti-latest/simplelink/source/ti/net/ |
| D | slnetif.c | 75 #define SET_IF_PRIORITY(netIf, priority) ((netIf).flags |= ((int32_t)priority)) argument 168 int32_t SlNetIf_add(uint16_t ifID, char *ifName, const SlNetIf_Config_t *ifConf, uint8_t priority) in SlNetIf_add() argument 178 if ( (false == ONLY_ONE_BIT_IS_SET(ifID)) || (priority > SLNETIF_MAX_PRIORITY) ) in SlNetIf_add() 194 if ((GET_IF_PRIORITY(ifNode->netIf)) > priority) in SlNetIf_add() 261 SET_IF_PRIORITY(ifNode->netIf, priority); in SlNetIf_add() 508 int32_t SlNetIf_setPriority(uint16_t ifID, uint8_t priority) in SlNetIf_setPriority() argument 515 if (priority > SLNETIF_MAX_PRIORITY) in SlNetIf_setPriority() 534 if (GET_IF_PRIORITY(prvIfListNode->netIf) >= priority) in SlNetIf_setPriority() 561 … if ( (NULL == ifListNode->next) || ((GET_IF_PRIORITY(ifListNode->next->netIf)) <= priority) ) in SlNetIf_setPriority() 580 …(GET_IF_PRIORITY(prvIfListNode->netIf) >= priority) && ((GET_IF_PRIORITY(ifListNode->next->netIf))… in SlNetIf_setPriority() [all …]
|
| D | slnetif.h | 255 int32_t SlNetIf_add(uint16_t ifID, char *ifName, const SlNetIf_Config_t *ifConf, uint8_t priority); 416 int32_t SlNetIf_setPriority(uint16_t ifID, uint8_t priority);
|
| /hal_ti-latest/simplelink/source/ti/drivers/dpl/ |
| D | HwiP.h | 115 uint32_t priority; /*!< Device specific priority. */ member 288 extern void HwiP_setPriority(int interruptNum, uint32_t priority);
|
| D | SwiP.h | 113 uint32_t priority; /*!< priority, 0 is min, 1, 2, ..., ~0 for max */ member 256 extern void SwiP_setPriority(SwiP_Handle handle, uint32_t priority);
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/dpl/ |
| D | HwiP.h | 115 uint32_t priority; /*!< Device specific priority. */ member 288 extern void HwiP_setPriority(int interruptNum, uint32_t priority);
|
| D | SwiP.h | 113 uint32_t priority; /*!< priority, 0 is min, 1, 2, ..., ~0 for max */ member 256 extern void SwiP_setPriority(SwiP_Handle handle, uint32_t priority);
|
| D | TaskP.h | 124 int priority; member
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/hal/cc23x0/ |
| D | hal_cc23x0.c | 137 hp.priority = INT_PRI_LEVEL4; in hal_init_fsm() 139 hp.priority = INT_PRI_LEVEL2; in hal_init_fsm() 143 hp.priority = INT_PRI_LEVEL2; in hal_init_fsm() 145 hp.priority = INT_PRI_LEVEL1; in hal_init_fsm() 149 hp.priority = INT_PRI_LEVEL1; in hal_init_fsm() 151 hp.priority = INT_PRI_LEVEL0; in hal_init_fsm()
|
| /hal_ti-latest/simplelink_lpf3/source/ti/devices/cc23x0r5/driverlib/ |
| D | interrupt.c | 137 void IntSetPriority(uint32_t intNum, uint8_t priority) in IntSetPriority() argument 142 ASSERT(priority <= INT_PRI_LEVEL3); in IntSetPriority() 178 ipr |= (priority & INT_PRIORITY_MASK) << shift; in IntSetPriority()
|
| D | interrupt.h | 212 extern void IntSetPriority(uint32_t intNum, uint8_t priority);
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/cryptoutils/sharedresources/ |
| D | CryptoResourceLPF3.c | 71 hwiParams.priority = (uint32_t)~0U; in CryptoResourceLPF3_constructRTOSObjects()
|
| /hal_ti-latest/simplelink/source/ti/devices/msp432p4xx/driverlib/ |
| D | interrupt.c | 263 void Interrupt_setPriority(uint32_t interruptNumber, uint8_t priority) in Interrupt_setPriority() argument 277 ulTemp |= priority << (8 * (interruptNumber & 3)); in Interrupt_setPriority()
|
| D | interrupt.h | 306 extern void Interrupt_setPriority(uint32_t interruptNumber, uint8_t priority);
|
| /hal_ti-latest/simplelink/source/ti/drivers/dma/ |
| D | UDMACC32XX.c | 95 hwiParams.priority = hwAttrs->intPriority; in UDMACC32XX_init()
|
| /hal_ti-latest/simplelink_lpf3/source/ti/drivers/batterymonitor/ |
| D | BatMonSupportLPF3.c | 113 hwiParams.priority = BatMonSupportLPF3_config.intPriority; in BatMonSupportLPF3_init()
|
| /hal_ti-latest/simplelink/source/ti/drivers/rf/ |
| D | RFCC26X2.h | 1161 RF_PriorityCoex priority; ///< Priority level for coexistence priority signal. member 1486 RF_Priority priority; ///< Priority of the command or access request member 1771 RF_Priority priority; ///< Access priority member
|
| /hal_ti-latest/simplelink_lpf3/source/ti/devices/cc23x0r5/cmsis/core/ |
| D | core_cm0plus.h | 850 __STATIC_INLINE void __NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) in __NVIC_SetPriority() argument 855 (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn))); in __NVIC_SetPriority() 860 (((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL) << _BIT_SHIFT(IRQn))); in __NVIC_SetPriority()
|
| /hal_ti-latest/simplelink/source/ti/drivers/watchdog/ |
| D | WatchdogCC32XX.c | 210 hwiParams.priority = hwAttrs->intPriority; in WatchdogCC32XX_open()
|
| /hal_ti-latest/simplelink/source/ti/drivers/net/wifi/porting/ |
| D | cc_pal.c | 303 nwp_iParams.priority = INT_PRIORITY_LVL_1 ; in NwpRegisterInterruptHandler()
|
| /hal_ti-latest/simplelink/source/ti/drivers/temperature/ |
| D | TemperatureCC26X2.c | 401 hwiParams.priority = TemperatureCC26X2_config.intPriority; in Temperature_init()
|