Home
last modified time | relevance | path

Searched refs:outputIndex (Results 1 – 5 of 5) sorted by relevance

/hal_nxp-latest/mcux/mcux-sdk/drivers/xbar_1/
Dfsl_xbar.c52 uint16_t outputIndex = XBAR_EXTRACT_OUTPUT(output); in XBAR_GetCtrlReg() local
54 if ((inst > ARRAY_SIZE(s_xbarInfo)) || (outputIndex > (s_xbarInfo[inst - 1U].regCtrlNum))) in XBAR_GetCtrlReg()
60 …ctrlRegAddr = s_xbarInfo[inst - 1U].baseAddr + (s_xbarInfo[inst - 1U].regCtrlOffset + outputIndex); in XBAR_GetCtrlReg()
85 uint16_t outputIndex = XBAR_EXTRACT_OUTPUT(output); in XBAR_GetCtrlRegAndShift() local
87 if ((inst > ARRAY_SIZE(s_xbarInfo)) || (outputIndex > (s_xbarInfo[inst - 1U].regCtrlNum * 2U))) in XBAR_GetCtrlRegAndShift()
93 …Addr = s_xbarInfo[inst - 1U].baseAddr + ((s_xbarInfo[inst - 1U].regCtrlOffset + outputIndex) / 2U); in XBAR_GetCtrlRegAndShift()
94 *shift = (uint8_t)(uint16_t)(8U * (outputIndex % 2U)); in XBAR_GetCtrlRegAndShift()
153 uint16_t outputIndex = XBAR_EXTRACT_OUTPUT(output); in XBAR_SetSignalsConnection() local
158 if ((inst > ARRAY_SIZE(s_xbarInfo)) || (outputIndex > (s_xbarInfo[inst - 1U].regSelNum))) in XBAR_SetSignalsConnection()
164 …elRegAddr = s_xbarInfo[inst - 1U].baseAddr + ((s_xbarInfo[inst - 1U].regSelOffset + outputIndex)); in XBAR_SetSignalsConnection()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/drivers/xbar/
Dfsl_xbar.c128 uint8_t outputIndex = (uint8_t)output; in XBAR_SetSignalsConnection() local
130 byteInReg = outputIndex % 2U; in XBAR_SetSignalsConnection()
132 regVal._u16 = XBAR_SELx(base, outputIndex); in XBAR_SetSignalsConnection()
136 XBAR_SELx(base, outputIndex) = regVal._u16; in XBAR_SetSignalsConnection()
226 uint8_t outputIndex = (uint8_t)output; in XBAR_SetOutputSignalConfig() local
231 assert(outputIndex < (uint8_t)FSL_FEATURE_XBAR_INTERRUPT_COUNT); in XBAR_SetOutputSignalConfig()
233 regIndex = outputIndex / 2U; in XBAR_SetOutputSignalConfig()
234 byteInReg = outputIndex % 2U; in XBAR_SetOutputSignalConfig()
/hal_nxp-latest/mcux/mcux-sdk/drivers/xbara/
Dfsl_xbara.c125 uint8_t outputIndex = (uint8_t)output; in XBARA_SetSignalsConnection() local
127 byteInReg = outputIndex % 2U; in XBARA_SetSignalsConnection()
129 regVal._u16 = XBARA_SELx(base, outputIndex); in XBARA_SetSignalsConnection()
133 XBARA_SELx(base, outputIndex) = regVal._u16; in XBARA_SetSignalsConnection()
210 uint8_t outputIndex = (uint8_t)output; in XBARA_SetOutputSignalConfig() local
215 assert(outputIndex < (uint32_t)FSL_FEATURE_XBARA_INTERRUPT_COUNT); in XBARA_SetOutputSignalConfig()
217 regIndex = outputIndex / 2U; in XBARA_SetOutputSignalConfig()
218 byteInReg = outputIndex % 2U; in XBARA_SetOutputSignalConfig()
/hal_nxp-latest/mcux/mcux-sdk/drivers/xbarb/
Dfsl_xbarb.c117 uint8_t outputIndex = (uint8_t)output; in XBARB_SetSignalsConnection() local
119 byteInReg = outputIndex % 2U; in XBARB_SetSignalsConnection()
121 regVal._u16 = XBARB_SELx(base, outputIndex); in XBARB_SetSignalsConnection()
125 XBARB_SELx(base, outputIndex) = regVal._u16; in XBARB_SetSignalsConnection()
/hal_nxp-latest/mcux/mcux-sdk/drivers/plu/
Dfsl_plu.h260 static inline void PLU_SetOutputSource(PLU_Type *base, plu_output_index_t outputIndex, plu_output_s… in PLU_SetOutputSource() argument
262 base->OUTPUT_MUX[outputIndex] = (uint32_t)outputSrc; in PLU_SetOutputSource()