Lines Matching refs:ctrl
23 uint32_t ctrl = 0; in mec_hal_rtimer_init() local
36 ctrl |= MEC_BIT(MEC_RTMR_CTRL_ENABLE_Pos); in mec_hal_rtimer_init()
40 ctrl |= MEC_BIT(MEC_RTMR_CTRL_AUTO_RELOAD_Pos); in mec_hal_rtimer_init()
44 ctrl |= MEC_BIT(MEC_RTMR_CTRL_START_Pos); in mec_hal_rtimer_init()
48 ctrl |= MEC_BIT(MEC_RTMR_CTRL_EXT_HALT_Pos); in mec_hal_rtimer_init()
58 regs->CTRL = ctrl; in mec_hal_rtimer_init()
110 uint32_t ctrl = regs->CTRL; in mec_hal_rtimer_restart() local
113 ctrl &= (uint32_t)~MEC_BIT(MEC_RTMR_CTRL_FW_HALT_Pos); in mec_hal_rtimer_restart()
114 ctrl |= MEC_BIT(MEC_RTMR_CTRL_ENABLE_Pos); in mec_hal_rtimer_restart()
116 ctrl |= MEC_BIT(MEC_RTMR_CTRL_START_Pos); in mec_hal_rtimer_restart()
120 regs->CTRL = ctrl; in mec_hal_rtimer_restart()