Lines Matching defs:reg_width
1037 unsigned int reg_width;
1059 reg_width = convert_buswidth(sconfig->dst_addr_width);
1060 ctrla |= ATC_DST_WIDTH(reg_width);
1099 reg_width = convert_buswidth(sconfig->src_addr_width);
1100 ctrla |= ATC_SRC_WIDTH(reg_width);
1131 | len >> reg_width;
1167 atc_dma_cyclic_check_values(unsigned int reg_width, dma_addr_t buf_addr,
1170 if (period_len > (ATC_BTSIZE_MAX << reg_width))
1172 if (unlikely(period_len & ((1 << reg_width) - 1)))
1174 if (unlikely(buf_addr & ((1 << reg_width) - 1)))
1189 unsigned int reg_width, size_t period_len,
1199 | ATC_DST_WIDTH(reg_width)
1200 | ATC_SRC_WIDTH(reg_width)
1201 | period_len >> reg_width;
1255 unsigned int reg_width;
1279 reg_width = convert_buswidth(sconfig->dst_addr_width);
1281 reg_width = convert_buswidth(sconfig->src_addr_width);
1284 if (atc_dma_cyclic_check_values(reg_width, buf_addr, period_len))
1296 reg_width, period_len, direction))