Lines Matching refs:EGU_regs
99 NRF_EGU_Type *EGU_regs = this->NRF_EGU_regs; in nhw_egu_eval_interrupt() local
103 int int_mask = (EGU_regs->INTEN >> i) & 1; in nhw_egu_eval_interrupt()
104 if (int_mask && EGU_regs->EVENTS_TRIGGERED[i]) { in nhw_egu_eval_interrupt()
125 NRF_EGU_Type *EGU_regs = this->NRF_EGU_regs; in nhw_egu_signal_EVENTS_TRIGGERED() local
127 EGU_regs->EVENTS_TRIGGERED[event_nbr] = 1; in nhw_egu_signal_EVENTS_TRIGGERED()
145 EGU_regs->PUBLISH_TRIGGERED[event_nbr]); in nhw_egu_signal_EVENTS_TRIGGERED()
179 NRF_EGU_Type *EGU_regs = &NRF_EGU_regs[inst]; in nhw_egu_regw_sideeffect_INTENSET() local
180 if ( EGU_regs->INTENSET ) { in nhw_egu_regw_sideeffect_INTENSET()
181 EGU_regs->INTEN |= EGU_regs->INTENSET; in nhw_egu_regw_sideeffect_INTENSET()
182 EGU_regs->INTENSET = EGU_regs->INTEN; in nhw_egu_regw_sideeffect_INTENSET()
189 NRF_EGU_Type *EGU_regs = &NRF_EGU_regs[inst]; in nhw_egu_regw_sideeffect_INTENCLR() local
190 if ( EGU_regs->INTENCLR ) { in nhw_egu_regw_sideeffect_INTENCLR()
191 EGU_regs->INTEN &= ~EGU_regs->INTENCLR; in nhw_egu_regw_sideeffect_INTENCLR()
192 EGU_regs->INTENSET = EGU_regs->INTEN; in nhw_egu_regw_sideeffect_INTENCLR()
193 EGU_regs->INTENCLR = 0; //We do not model reading the INTEN register thru the INTENCLR one in nhw_egu_regw_sideeffect_INTENCLR()
200 NRF_EGU_Type *EGU_regs = &NRF_EGU_regs[inst]; in nhw_egu_regw_sideeffect_INTEN() local
201 EGU_regs->INTENSET = EGU_regs->INTEN; in nhw_egu_regw_sideeffect_INTEN()