Lines Matching defs:offset
238 uint16_t offset;
248 uint16_t offset;
270 .offset = (off), \
282 .offset = (off), \
294 .offset = (off), \
306 .offset = (off), \
317 .offset = _rcc_selr, \
771 p_sel = (mmio_read_32(rcc_base + sel->offset) &
1059 mmio_write_32(rcc_base + gate->offset, BIT(gate->bit));
1061 mmio_setbits_32(rcc_base + gate->offset, BIT(gate->bit));
1072 mmio_write_32(rcc_base + gate->offset + RCC_MP_ENCLRR_OFFSET,
1075 mmio_clrbits_32(rcc_base + gate->offset, BIT(gate->bit));
1083 return mmio_read_32(rcc_base + gate->offset) & BIT(gate->bit);
1282 static void stm32mp1_ls_osc_set(bool enable, uint32_t offset, uint32_t mask_on)
1284 uintptr_t address = stm32mp_rcc_base() + offset;
1295 uint32_t offset = enable ? RCC_OCENSETR : RCC_OCENCLRR;
1296 uintptr_t address = stm32mp_rcc_base() + offset;
1301 static int stm32mp1_osc_wait(bool enable, uint32_t offset, uint32_t mask_rdy)
1305 uintptr_t address = stm32mp_rcc_base() + offset;
1731 * bit15-4 offset
2226 p_sel = (mmio_read_32(rcc_base + sel->offset) >> sel->src) &