Lines Matching +full:7 +full:v
47 #define ACC_OV_REG_MODE_MASK_TS_SRC GENMASK(8, 7)
76 #define ACC_REG_CTRL_MASK_SCHEDULE BIT(7)
94 #define ACC_REG_BRP_FD_MASK_BRP GENMASK(7, 0)
95 #define ACC_REG_BTR_FD_MASK_TSEG1 GENMASK(7, 0)
214 u32 reserved2[7];
234 * the bm_fifo head index in coherent DMA memory. Only bits 7..0
274 unsigned short offs, u32 v) in acc_write32() argument
276 iowrite32be(v, core->addr + offs); in acc_write32()
280 unsigned short offs, u32 v) in acc_write32_noswap() argument
282 iowrite32(v, core->addr + offs); in acc_write32_noswap()
288 u32 v = acc_read32(core, offs); in acc_set_bits() local
290 v |= mask; in acc_set_bits()
291 acc_write32(core, offs, v); in acc_set_bits()
297 u32 v = acc_read32(core, offs); in acc_clear_bits() local
299 v &= ~mask; in acc_clear_bits()
300 acc_write32(core, offs, v); in acc_clear_bits()
316 unsigned short offs, u32 v) in acc_ov_write32() argument
318 iowrite32be(v, ov->addr + offs); in acc_ov_write32()
324 u32 v = acc_ov_read32(ov, offs); in acc_ov_set_bits() local
326 v |= b; in acc_ov_set_bits()
327 acc_ov_write32(ov, offs, v); in acc_ov_set_bits()
333 u32 v = acc_ov_read32(ov, offs); in acc_ov_clear_bits() local
335 v &= ~b; in acc_ov_clear_bits()
336 acc_ov_write32(ov, offs, v); in acc_ov_clear_bits()