Lines Matching refs:bus_shift
142 unsigned int bus_shift;
224 return ioread16(host->ctl + (addr << host->bus_shift));
230 ioread16_rep(host->ctl + (addr << host->bus_shift), buf, count);
236 return ioread16(host->ctl + (addr << host->bus_shift)) |
237 ioread16(host->ctl + ((addr + 2) << host->bus_shift)) << 16;
243 ioread32_rep(host->ctl + (addr << host->bus_shift), buf, count);
254 iowrite16(val, host->ctl + (addr << host->bus_shift));
260 iowrite16_rep(host->ctl + (addr << host->bus_shift), buf, count);
269 iowrite16(val & 0xffff, host->ctl + (addr << host->bus_shift));
270 iowrite16(val >> 16, host->ctl + ((addr + 2) << host->bus_shift));
275 iowrite32(val, host->ctl + (addr << host->bus_shift));
281 iowrite32_rep(host->ctl + (addr << host->bus_shift), buf, count);