Lines Matching refs:bus_shift
150 unsigned int bus_shift;
215 return ioread16(host->ctl + (addr << host->bus_shift));
221 ioread16_rep(host->ctl + (addr << host->bus_shift), buf, count);
227 return ioread16(host->ctl + (addr << host->bus_shift)) |
228 ioread16(host->ctl + ((addr + 2) << host->bus_shift)) << 16;
234 ioread32_rep(host->ctl + (addr << host->bus_shift), buf, count);
245 iowrite16(val, host->ctl + (addr << host->bus_shift));
251 iowrite16_rep(host->ctl + (addr << host->bus_shift), buf, count);
260 iowrite16(val & 0xffff, host->ctl + (addr << host->bus_shift));
261 iowrite16(val >> 16, host->ctl + ((addr + 2) << host->bus_shift));
266 iowrite32(val, host->ctl + (addr << host->bus_shift));
272 iowrite32_rep(host->ctl + (addr << host->bus_shift), buf, count);