/hal_nxp-3.6.0/s32/drivers/s32ze/Wdg/src/ |
D | Swt_Ip.c | 187 static inline boolean Swt_Ip_IsEnable(const Swt_Ip_Type * const Base) in Swt_Ip_IsEnable() argument 190 return ((Base->CR & SWT_CR_WEN_MASK) != 0U); in Swt_Ip_IsEnable() 193 static inline void Swt_Ip_Enable(Swt_Ip_Type * const Base) in Swt_Ip_Enable() argument 196 Base->CR |= SWT_CR_WEN_MASK; in Swt_Ip_Enable() 199 static inline void Swt_Ip_Disable(Swt_Ip_Type * const Base) in Swt_Ip_Disable() argument 202 Base->CR &= ~SWT_CR_WEN_MASK; in Swt_Ip_Disable() 205 static Swt_Ip_ServiceModeType Swt_Ip_GetServiceMode(const Swt_Ip_Type * const Base) in Swt_Ip_GetServiceMode() argument 210 switch ((Base->CR & SWT_CR_SMD_MASK) >> SWT_CR_SMD_SHIFT) in Swt_Ip_GetServiceMode() 229 static Swt_Ip_LockType Swt_Ip_GetLock(const Swt_Ip_Type * const Base) in Swt_Ip_GetLock() argument 234 switch ((Base->CR & (SWT_CR_SLK_MASK | SWT_CR_HLK_MASK)) >> SWT_CR_SLK_SHIFT) in Swt_Ip_GetLock() [all …]
|
/hal_nxp-3.6.0/s32/drivers/s32k3/Pwm/include/ |
D | Emios_Pwm_Ip_HwAccess.h | 139 static inline boolean Emios_Pwm_Ip_GetDebugMode(const Emios_Pwm_Ip_HwAddrType *const Base) in Emios_Pwm_Ip_GetDebugMode() argument 141 return (((Base->MCR & eMIOS_MCR_FRZ_MASK) >> eMIOS_MCR_FRZ_SHIFT) == 0U)? FALSE : TRUE; in Emios_Pwm_Ip_GetDebugMode() 151 static inline void Emios_Pwm_Ip_SetOutputUpdate(Emios_Pwm_Ip_HwAddrType *const Base, in Emios_Pwm_Ip_SetOutputUpdate() argument 155 Base->OUDIS = Base->OUDIS | (eMIOS_OUDIS_OU0((Value == TRUE) ? 0x00U : 0x01U) << Channel); in Emios_Pwm_Ip_SetOutputUpdate() 163 static inline boolean Emios_Pwm_Ip_GetOutputUpdate(const Emios_Pwm_Ip_HwAddrType *const Base, in Emios_Pwm_Ip_GetOutputUpdate() argument 166 …return (((Base->OUDIS & (uint32)((uint32)eMIOS_OUDIS_OU0_MASK << (uint32)Channel)) >> Channel) == … in Emios_Pwm_Ip_GetOutputUpdate() 173 static inline uint32 Emios_Pwm_Ip_GetOutputUpdateInstance(const Emios_Pwm_Ip_HwAddrType *const Base) in Emios_Pwm_Ip_GetOutputUpdateInstance() argument 175 return (Base->OUDIS); in Emios_Pwm_Ip_GetOutputUpdateInstance() 185 static inline void Emios_Pwm_Ip_SetChannelEnable(Emios_Pwm_Ip_HwAddrType *const Base, in Emios_Pwm_Ip_SetChannelEnable() argument 189 Base->UCDIS = Base->UCDIS | (eMIOS_UCDIS_UCDIS0((Value == TRUE) ? 0x00U : 0x01U) << Channel); in Emios_Pwm_Ip_SetChannelEnable() [all …]
|
/hal_nxp-3.6.0/s32/drivers/s32ze/Uart/include/ |
D | Linflexd_Uart_Ip_HwAccess.h | 246 static inline void Linflexd_Uart_Ip_EnterInitMode(LINFLEXD_Type *Base) in Linflexd_Uart_Ip_EnterInitMode() argument 250 RegValTemp = Base->LINCR1; in Linflexd_Uart_Ip_EnterInitMode() 253 Base->LINCR1 = RegValTemp; in Linflexd_Uart_Ip_EnterInitMode() 264 static inline void Linflexd_Uart_Ip_EnterNormalMode(LINFLEXD_Type *Base) in Linflexd_Uart_Ip_EnterNormalMode() argument 268 RegValTemp = Base->LINCR1; in Linflexd_Uart_Ip_EnterNormalMode() 271 Base->LINCR1 = RegValTemp; in Linflexd_Uart_Ip_EnterNormalMode() 283 static inline void Linflexd_Uart_Ip_SetMode(LINFLEXD_Type *Base, Linflexd_Uart_Ip_ModeType Mode) in Linflexd_Uart_Ip_SetMode() argument 287 RegValTemp = Base->UARTCR; in Linflexd_Uart_Ip_SetMode() 290 Base->UARTCR = RegValTemp; in Linflexd_Uart_Ip_SetMode() 303 static inline void Linflexd_Uart_Ip_EnableMonitorIdleState(LINFLEXD_Type *Base, boolean Enable) in Linflexd_Uart_Ip_EnableMonitorIdleState() argument [all …]
|
/hal_nxp-3.6.0/s32/drivers/s32ze/Uart/src/ |
D | Linflexd_Uart_Ip.c | 220 static void Linflexd_Uart_Ip_FlushRxFifo(const LINFLEXD_Type *Base,const Linflexd_Uart_Ip_WordLengt… 237 static void Linflexd_Uart_Ip_SetTransmitterState(LINFLEXD_Type *Base, boolean Enable); 238 static void Linflexd_Uart_Ip_SetReceiverState(LINFLEXD_Type *Base, boolean Enable); 239 static void Linflexd_Uart_Ip_SetInterruptMode(LINFLEXD_Type * Base, Linflexd_Uart_Ip_InterruptType … 254 LINFLEXD_Type * Base; in Linflexd_Uart_Ip_SetBaudrate() local 269 Base = Linflexd_Uart_Ip_apBases[Instance]; in Linflexd_Uart_Ip_SetBaudrate() 281 Base->UARTCR &= ~LINFLEXD_UARTCR_ROSE(1); in Linflexd_Uart_Ip_SetBaudrate() 297 if (Linflexd_Uart_Ip_GetLinState(Base) != LINFLEXD_STATE_INIT_MODE) in Linflexd_Uart_Ip_SetBaudrate() 300 Linflexd_Uart_Ip_EnterInitMode(Base); in Linflexd_Uart_Ip_SetBaudrate() 305 (Linflexd_Uart_Ip_GetLinState(Base) != LINFLEXD_STATE_INIT_MODE) in Linflexd_Uart_Ip_SetBaudrate() [all …]
|
/hal_nxp-3.6.0/s32/drivers/s32k3/Pwm/src/ |
D | Emios_Pwm_Ip.c | 297 const Emios_Pwm_Ip_HwAddrType *const Base = Emios_Pwm_Ip_aBasePtr[Instance]; in Emios_Pwm_Ip_GetCounterBusMode() local 302 …CounterBusMode = (Emios_Pwm_Ip_MasterBusModeType)Emios_Pwm_Ip_GetChannelPwmMode(Base, EMIOS_PWM_IP… in Emios_Pwm_Ip_GetCounterBusMode() 305 …CounterBusMode = (Emios_Pwm_Ip_MasterBusModeType)Emios_Pwm_Ip_GetChannelPwmMode(Base, (Channel & (… in Emios_Pwm_Ip_GetCounterBusMode() 308 …CounterBusMode = (Emios_Pwm_Ip_MasterBusModeType)Emios_Pwm_Ip_GetChannelPwmMode(Base, EMIOS_PWM_IP… in Emios_Pwm_Ip_GetCounterBusMode() 343 Emios_Pwm_Ip_HwAddrType *const Base = Emios_Pwm_Ip_aBasePtr[Instance]; in Emios_Pwm_Ip_InitPeriodDutyCycleOpwfmbMode() local 347 Emios_Pwm_Ip_SetCounterBus(Base, UserChCfg->ChannelId, UserChCfg->Timebase); in Emios_Pwm_Ip_InitPeriodDutyCycleOpwfmbMode() 349 Emios_Pwm_Ip_SetUCRegA(Base, UserChCfg->ChannelId, UserChCfg->DutyCycle); in Emios_Pwm_Ip_InitPeriodDutyCycleOpwfmbMode() 351 Emios_Pwm_Ip_SetUCRegB(Base, UserChCfg->ChannelId, UserChCfg->PeriodCount); in Emios_Pwm_Ip_InitPeriodDutyCycleOpwfmbMode() 361 Emios_Pwm_Ip_SetEdgePolarity(Base, UserChCfg->ChannelId, UserChCfg->OutputPolarity); in Emios_Pwm_Ip_InitPeriodDutyCycleOpwfmbMode() 368 …Emios_Pwm_Ip_SetEdgePolarity(Base, UserChCfg->ChannelId,(UserChCfg->OutputPolarity == EMIOS_PWM_IP… in Emios_Pwm_Ip_InitPeriodDutyCycleOpwfmbMode() [all …]
|
/hal_nxp-3.6.0/s32/drivers/s32k3/Eth_GMAC/src/ |
D | Gmac_Ip_Hw_Access.c | 211 const GMAC_Type *Base = Gmac_apxBases[Instance]; in GMAC_IrqFSMDPPHandler() local 225 GMAC_IrqFSMHandler(Instance, ErrorStatusFlags, Base->MAC_FSM_CONTROL); in GMAC_IrqFSMDPPHandler() 255 const GMAC_Type *Base = Gmac_apxBases[Instance]; in GMAC_MACIRQHandler() local 258 if ((Base->DMA_INTERRUPT_STATUS & GMAC_DMA_INTERRUPT_STATUS_MACIS_MASK) != 0U) in GMAC_MACIRQHandler() 261 Flags = Base->MAC_INTERRUPT_STATUS; in GMAC_MACIRQHandler() 272 (void)Base->MAC_PHYIF_CONTROL_STATUS; in GMAC_MACIRQHandler() 277 (void)Base->MAC_FPE_CTRL_STS; in GMAC_MACIRQHandler() 282 (void)Base->MAC_RX_TX_STATUS; in GMAC_MACIRQHandler() 333 Gmac_Ip_StatusType GMAC_WriteManagementFrame(GMAC_Type * Base, in GMAC_WriteManagementFrame() argument 342 Base->MAC_MDIO_ADDRESS &= ~(GMAC_MAC_MDIO_ADDRESS_PA_MASK | in GMAC_WriteManagementFrame() [all …]
|
D | Gmac_Ip.c | 284 static void Gmac_Ip_InitSafetyEvents(GMAC_Type *Base, 297 static void Gmac_Ip_InitMAC(GMAC_Type *Base, 300 static void Gmac_Ip_GetTimestamp(const GMAC_Type *Base, 368 const GMAC_Type *Base; in Gmac_Ip_ReadTimeStampInfo() local 374 Base = Gmac_apxBases[Instance]; in Gmac_Ip_ReadTimeStampInfo() 382 CurrTimeSec = (uint32)(Base->MAC_SYSTEM_TIME_SECONDS); in Gmac_Ip_ReadTimeStampInfo() 383 CurrTimeSecHi = (uint16)(Base->MAC_SYSTEM_TIME_HIGHER_WORD_SECONDS); in Gmac_Ip_ReadTimeStampInfo() 419 GMAC_Type *Base; in Gmac_Ip_InitDMA() local 425 Base = Gmac_apxBases[Instance]; in Gmac_Ip_InitDMA() 428 Base->DMA_MODE |= GMAC_DMA_MODE_SWR_MASK; in Gmac_Ip_InitDMA() [all …]
|
/hal_nxp-3.6.0/s32/drivers/s32ze/Platform/src/ |
D | Mru_Ip_Irq.c | 370 SMU_MRU_Type* Base = Mru_Ip_apxSMU_Bases[MRU_IP_SMU_MRU_INSTANCE]; in ISR() local 386 Base->CHXCONFIG[ChannelIdx].CH_MBSTAT &= (uint32)0xFFFFFFFFu; in ISR() 394 SMU_MRU_Type* Base = Mru_Ip_apxSMU_Bases[MRU_IP_SMU_MRU_INSTANCE]; in ISR() local 410 Base->CHXCONFIG[ChannelIdx].CH_MBSTAT &= (uint32)0xFFFFFFFFu; in ISR() 421 RTU_MRU_Type* Base = Mru_Ip_apxRTU_Bases[MRU_IP_RTU0_MRU0_INSTANCE]; in ISR() local 437 Base->CHXCONFIG[ChannelIdx].CH_MBSTAT &= (uint32)0xFFFFFFFFu; in ISR() 445 RTU_MRU_Type* Base = Mru_Ip_apxRTU_Bases[MRU_IP_RTU0_MRU0_INSTANCE]; in ISR() local 461 Base->CHXCONFIG[ChannelIdx].CH_MBSTAT &= (uint32)0xFFFFFFFFu; in ISR() 472 RTU_MRU_Type* Base = Mru_Ip_apxRTU_Bases[MRU_IP_RTU0_MRU1_INSTANCE]; in ISR() local 488 Base->CHXCONFIG[ChannelIdx].CH_MBSTAT &= (uint32)0xFFFFFFFFu; in ISR() [all …]
|
/hal_nxp-3.6.0/s32/drivers/s32k3/Mcl/src/ |
D | Emios_Mcl_Ip.c | 169 eMIOS_Type* Base = Emios_Ip_paxBase[Instance]; in Emios_Mcl_Ip_Init() local 185 Base->MCR &= ~eMIOS_MCR_GPREN_MASK; in Emios_Mcl_Ip_Init() 186 …Base->MCR = eMIOS_MCR_GPRE(ConfigPtr->emiosGlobalConfig->clkDivVal) | eMIOS_MCR_FRZ(((uint32)Confi… in Emios_Mcl_Ip_Init() 194 … Base->CH.UC[(*ConfigPtr->masterBusConfig)[CurrentChannel].hwChannel].C |= eMIOS_C_FREN_MASK; in Emios_Mcl_Ip_Init() 198 …Base->CH.UC[(*ConfigPtr->masterBusConfig)[CurrentChannel].hwChannel].C2 |= eMIOS_C2_UCEXTPRE((*Con… in Emios_Mcl_Ip_Init() 203 …Base->CH.UC[(*ConfigPtr->masterBusConfig)[CurrentChannel].hwChannel].A = (*ConfigPtr->masterBusCon… in Emios_Mcl_Ip_Init() 206 …Base->CH.UC[(*ConfigPtr->masterBusConfig)[CurrentChannel].hwChannel].A = (*ConfigPtr->masterBusCon… in Emios_Mcl_Ip_Init() 209 Base->CH.UC[(*ConfigPtr->masterBusConfig)[CurrentChannel].hwChannel].B = 0; in Emios_Mcl_Ip_Init() 210 …Base->CH.UC[(*ConfigPtr->masterBusConfig)[CurrentChannel].hwChannel].A = (*ConfigPtr->masterBusCon… in Emios_Mcl_Ip_Init() 213 …Base->CH.UC[(*ConfigPtr->masterBusConfig)[CurrentChannel].hwChannel].A = (*ConfigPtr->masterBusCon… in Emios_Mcl_Ip_Init() [all …]
|
/hal_nxp-3.6.0/s32/drivers/s32ze/Spi/src/ |
D | Spi_Ip.c | 283 SPI_Type* Base = Spi_Ip_apxBases[Instance]; in Spi_Ip_TransferProcess() local 293 SrStatusRegister = Base->SR; in Spi_Ip_TransferProcess() 294 Base->SR &= 0xFFFF0000u; in Spi_Ip_TransferProcess() 304 … NumberOfReads = (uint16)(((Base->SR) & SPI_SR_RXCTR_MASK) >> SPI_SR_RXCTR_SHIFT); in Spi_Ip_TransferProcess() 316 … NumberOfWrites = (uint16)((Base->SREX) & SPI_SREX_CMDCTR_MASK) >> SPI_SREX_CMDCTR_SHIFT; in Spi_Ip_TransferProcess() 350 Base->MCR |= SPI_MCR_HALT_MASK; in Spi_Ip_TransferProcess() 354 Base->RSER = 0U; in Spi_Ip_TransferProcess() 371 SPI_Type* Base = Spi_Ip_apxBases[Instance]; in Spi_Ip_CmdDmaTcdSGInit() local 388 DmaTcdList[1u].Value = (uint32)&Base->PUSHR.FIFO.CMD; /* dest address write*/ in Spi_Ip_CmdDmaTcdSGInit() 410 SPI_Type* Base = Spi_Ip_apxBases[Instance]; in Spi_Ip_TxDmaTcdSGInit() local [all …]
|
/hal_nxp-3.6.0/s32/drivers/s32k3/Eth_GMAC/include/ |
D | Gmac_Ip_Hw_Access.h | 160 void GMAC_AddToHashTable(const GMAC_Type * Base, 169 void GMAC_RemoveFromHashTable(const GMAC_Type * Base, 178 void GMAC_AddVlanToHashTable(GMAC_Type * Base, 187 void GMAC_RemoveVlanFromHashTable(GMAC_Type * Base, 205 Gmac_Ip_StatusType GMAC_WriteManagementFrame(GMAC_Type * Base, 215 static inline uint16 GMAC_ReadManagementFrameData(const GMAC_Type * Base) in GMAC_ReadManagementFrameData() argument 217 return (uint16)(Base->MAC_MDIO_DATA & GMAC_MAC_MDIO_DATA_GD_MASK); in GMAC_ReadManagementFrameData() 272 Gmac_Ip_PowerStateType GMAC_GetPowerState(const GMAC_Type * Base); 280 void GMAC_SetPowerState(GMAC_Type * Base, Gmac_Ip_PowerStateType PowerState); 288 void GMAC_SetSpeed(GMAC_Type * Base, Gmac_Ip_SpeedType Speed); [all …]
|
/hal_nxp-3.6.0/mcux/mcux-sdk/components/rtt/RTT/ |
D | SEGGER_RTT_printf.c | 137 static void _PrintUnsigned(SEGGER_RTT_PRINTF_DESC * pBufferDesc, unsigned v, unsigned Base, unsigne… in _PrintUnsigned() argument 151 while (Number >= Base) { in _PrintUnsigned() 152 Number = (Number / Base); in _PrintUnsigned() 188 …if (Div < Base) { // Is our divider big enough to extract the highest digit from value? => … in _PrintUnsigned() 192 Digit *= Base; in _PrintUnsigned() 204 Digit /= Base; in _PrintUnsigned() 227 static void _PrintInt(SEGGER_RTT_PRINTF_DESC * pBufferDesc, int v, unsigned Base, unsigned NumDigit… in _PrintInt() argument 237 while (Number >= (int)Base) { in _PrintInt() 238 Number = (Number / (int)Base); in _PrintInt() 293 _PrintUnsigned(pBufferDesc, (unsigned)v, Base, NumDigits, FieldWidth, FormatFlags); in _PrintInt()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/drivers/common/ |
D | fsl_common_arm.c | 26 extern uint32_t Image$$VECTOR_ROM$$Base[]; in InstallIRQHandler() 27 extern uint32_t Image$$VECTOR_RAM$$Base[]; in InstallIRQHandler() 28 extern uint32_t Image$$RW_m_data$$Base[]; in InstallIRQHandler() 30 #define __VECTOR_TABLE Image$$VECTOR_ROM$$Base in InstallIRQHandler() 31 #define __VECTOR_RAM Image$$VECTOR_RAM$$Base in InstallIRQHandler() 32 …ne __RAM_VECTOR_TABLE_SIZE (((uint32_t)Image$$RW_m_data$$Base - (uint32_t)Image$$VECTOR_RAM$$Base)) in InstallIRQHandler()
|
/hal_nxp-3.6.0/s32/drivers/s32ze/Can_CANEXCEL/src/ |
D | CanEXCEL_Ip.c | 1361 CANXL_SIC_Type * Base = CANEXCEL.EXL_SIC[Instance]; in Canexcel_Ip_SetFDBaudRate() local 1368 if (TRUE == CanXL_IsFreezeMode(Base)) in Canexcel_Ip_SetFDBaudRate() 1370 if (TRUE == CanXL_IsFDModeEnabled(Base)) in Canexcel_Ip_SetFDBaudRate() 1372 CanXL_SetFDEnabled(Base, TRUE, BitRateSwitch); in Canexcel_Ip_SetFDBaudRate() 1373 CanXL_SetFDBaudRate(Base, TimeSeg); in Canexcel_Ip_SetFDBaudRate() 1391 CANXL_SIC_Type * Base = CANEXCEL.EXL_SIC[Instance]; in Canexcel_Ip_SetXLBaudRate() local 1398 if (TRUE == CanXL_IsFreezeMode(Base)) in Canexcel_Ip_SetXLBaudRate() 1400 if (TRUE == CanXL_IsXLModeEnabled(Base)) in Canexcel_Ip_SetXLBaudRate() 1402 CanXL_SetXLBaudRate(Base, TimeSeg); in Canexcel_Ip_SetXLBaudRate() 1420 CANXL_SIC_Type * Base = CANEXCEL.EXL_SIC[Instance]; in Canexcel_Ip_SetBaudRate() local [all …]
|
/hal_nxp-3.6.0/s32/drivers/s32ze/Can_CANEXCEL/include/ |
D | CanEXCEL_Ip_HwAccess.h | 653 static inline void CanXL_SetXLErrorResponse(CANXL_SIC_Type * Base, boolean Enable) in CanXL_SetXLErrorResponse() argument 655 …Base->BCFG2 = (Base->BCFG2 & ~CANXL_SIC_BCFG2_XLER_MASK) | CANXL_SIC_BCFG2_XLER(Enable ? 1UL : 0UL… in CanXL_SetXLErrorResponse() 663 static inline void CanXL_SetPwmModeEnable(CANXL_SIC_Type * Base, boolean Enable) in CanXL_SetPwmModeEnable() argument 665 …Base->BCFG2 = (Base->BCFG2 & ~CANXL_SIC_BCFG2_TMSE_MASK) | CANXL_SIC_BCFG2_TMSE(Enable ? 1UL : 0UL… in CanXL_SetPwmModeEnable() 674 static inline boolean CanXL_IsPwmModeEnable(const CANXL_SIC_Type * Base) in CanXL_IsPwmModeEnable() argument 676 return (((Base->BCFG2 & (CANXL_SIC_BCFG2_TMSE_MASK)) != 0U) ? TRUE : FALSE); in CanXL_IsPwmModeEnable() 683 static inline void CanXL_SetPWMPhases(CANXL_SIC_Type * Base, uint8 PWMS, uint8 PWML, uint8 PWMO) in CanXL_SetPWMPhases() argument 685 …Base->BMICI &= ~(CANXL_SIC_BMICI_PWMS_MASK | CANXL_SIC_BMICI_PWML_MASK | CANXL_SIC_BMICI_PWMO_MASK… in CanXL_SetPWMPhases() 686 …Base->BMICI |= (CANXL_SIC_BMICI_PWMS(PWMS) | CANXL_SIC_BMICI_PWML(PWML) | CANXL_SIC_BMICI_PWMO(PWM… in CanXL_SetPWMPhases()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/boards/evkmimxrt1170/ |
D | board.c | 265 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 267 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 269 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 270 uint32_t size = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 466 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 468 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 470 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 471 uint32_t nonCacheSize = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 487 extern uint32_t Image$$RPMSG_SH_MEM$$Base[]; in BOARD_ConfigMPU() 489 extern uint32_t Image$$RPMSG_SH_MEM_unused$$Base[]; in BOARD_ConfigMPU() [all …]
|
/hal_nxp-3.6.0/mcux/mcux-sdk/boards/evkmimxrt1170/project_template/ |
D | board.c | 265 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 267 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 269 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 270 uint32_t size = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 466 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 468 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 470 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 471 uint32_t nonCacheSize = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 487 extern uint32_t Image$$RPMSG_SH_MEM$$Base[]; in BOARD_ConfigMPU() 489 extern uint32_t Image$$RPMSG_SH_MEM_unused$$Base[]; in BOARD_ConfigMPU() [all …]
|
/hal_nxp-3.6.0/mcux/mcux-sdk/boards/evkbmimxrt1170/ |
D | board.c | 265 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 267 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 269 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 270 uint32_t size = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 466 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 468 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 470 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 471 uint32_t nonCacheSize = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 487 extern uint32_t Image$$RPMSG_SH_MEM$$Base[]; in BOARD_ConfigMPU() 489 extern uint32_t Image$$RPMSG_SH_MEM_unused$$Base[]; in BOARD_ConfigMPU() [all …]
|
/hal_nxp-3.6.0/mcux/mcux-sdk/boards/evkbmimxrt1170/project_template/ |
D | board.c | 265 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 267 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 269 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 270 uint32_t size = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 466 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 468 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 470 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 471 uint32_t nonCacheSize = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 487 extern uint32_t Image$$RPMSG_SH_MEM$$Base[]; in BOARD_ConfigMPU() 489 extern uint32_t Image$$RPMSG_SH_MEM_unused$$Base[]; in BOARD_ConfigMPU() [all …]
|
/hal_nxp-3.6.0/mcux/mcux-sdk/boards/evkmimxrt1160/ |
D | board.c | 265 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 267 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 269 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 270 uint32_t size = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 466 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 468 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 470 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 471 uint32_t nonCacheSize = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 487 extern uint32_t Image$$RPMSG_SH_MEM$$Base[]; in BOARD_ConfigMPU() 489 extern uint32_t Image$$RPMSG_SH_MEM_unused$$Base[]; in BOARD_ConfigMPU() [all …]
|
/hal_nxp-3.6.0/mcux/mcux-sdk/boards/evkmimxrt1160/project_template/ |
D | board.c | 265 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 267 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 269 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 270 uint32_t size = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 466 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 468 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 470 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 471 uint32_t nonCacheSize = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU() 487 extern uint32_t Image$$RPMSG_SH_MEM$$Base[]; in BOARD_ConfigMPU() 489 extern uint32_t Image$$RPMSG_SH_MEM_unused$$Base[]; in BOARD_ConfigMPU() [all …]
|
/hal_nxp-3.6.0/mcux/mcux-sdk/boards/evkmimxrt1024/ |
D | board.c | 55 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 57 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 59 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 60 uint32_t size = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/boards/evkmimxrt1024/project_template/ |
D | board.c | 55 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 57 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 59 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 60 uint32_t size = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/boards/evkmimxrt1020/project_template/ |
D | board.c | 55 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 57 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 59 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 60 uint32_t size = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU()
|
/hal_nxp-3.6.0/mcux/mcux-sdk/boards/evkmimxrt1010/ |
D | board.c | 55 extern uint32_t Image$$RW_m_ncache$$Base[]; in BOARD_ConfigMPU() 57 extern uint32_t Image$$RW_m_ncache_unused$$Base[]; in BOARD_ConfigMPU() 59 uint32_t nonCacheStart = (uint32_t)Image$$RW_m_ncache$$Base; in BOARD_ConfigMPU() 60 uint32_t size = ((uint32_t)Image$$RW_m_ncache_unused$$Base == nonCacheStart) ? in BOARD_ConfigMPU()
|