Lines Matching full:core
13 static u8 bcma_host_soc_read8(struct bcma_device *core, u16 offset) in bcma_host_soc_read8() argument
15 return readb(core->io_addr + offset); in bcma_host_soc_read8()
18 static u16 bcma_host_soc_read16(struct bcma_device *core, u16 offset) in bcma_host_soc_read16() argument
20 return readw(core->io_addr + offset); in bcma_host_soc_read16()
23 static u32 bcma_host_soc_read32(struct bcma_device *core, u16 offset) in bcma_host_soc_read32() argument
25 return readl(core->io_addr + offset); in bcma_host_soc_read32()
28 static void bcma_host_soc_write8(struct bcma_device *core, u16 offset, in bcma_host_soc_write8() argument
31 writeb(value, core->io_addr + offset); in bcma_host_soc_write8()
34 static void bcma_host_soc_write16(struct bcma_device *core, u16 offset, in bcma_host_soc_write16() argument
37 writew(value, core->io_addr + offset); in bcma_host_soc_write16()
40 static void bcma_host_soc_write32(struct bcma_device *core, u16 offset, in bcma_host_soc_write32() argument
43 writel(value, core->io_addr + offset); in bcma_host_soc_write32()
47 static void bcma_host_soc_block_read(struct bcma_device *core, void *buffer, in bcma_host_soc_block_read() argument
50 void __iomem *addr = core->io_addr + offset; in bcma_host_soc_block_read()
90 static void bcma_host_soc_block_write(struct bcma_device *core, in bcma_host_soc_block_write() argument
94 void __iomem *addr = core->io_addr + offset; in bcma_host_soc_block_write()
135 static u32 bcma_host_soc_aread32(struct bcma_device *core, u16 offset) in bcma_host_soc_aread32() argument
137 return readl(core->io_wrap + offset); in bcma_host_soc_aread32()
140 static void bcma_host_soc_awrite32(struct bcma_device *core, u16 offset, in bcma_host_soc_awrite32() argument
143 writel(value, core->io_wrap + offset); in bcma_host_soc_awrite32()
166 /* iomap only first core. We have to read some register on this core in bcma_host_soc_register()