Lines Matching refs:bus
17 struct ssb_bus *bus = dev->bus; in ssb_host_soc_read8() local
20 return readb(bus->mmio + offset); in ssb_host_soc_read8()
25 struct ssb_bus *bus = dev->bus; in ssb_host_soc_read16() local
28 return readw(bus->mmio + offset); in ssb_host_soc_read16()
33 struct ssb_bus *bus = dev->bus; in ssb_host_soc_read32() local
36 return readl(bus->mmio + offset); in ssb_host_soc_read32()
43 struct ssb_bus *bus = dev->bus; in ssb_host_soc_block_read() local
47 addr = bus->mmio + offset; in ssb_host_soc_block_read()
90 struct ssb_bus *bus = dev->bus; in ssb_host_soc_write8() local
93 writeb(value, bus->mmio + offset); in ssb_host_soc_write8()
98 struct ssb_bus *bus = dev->bus; in ssb_host_soc_write16() local
101 writew(value, bus->mmio + offset); in ssb_host_soc_write16()
106 struct ssb_bus *bus = dev->bus; in ssb_host_soc_write32() local
109 writel(value, bus->mmio + offset); in ssb_host_soc_write32()
116 struct ssb_bus *bus = dev->bus; in ssb_host_soc_block_write() local
120 addr = bus->mmio + offset; in ssb_host_soc_block_write()