Lines Matching defs:offset
143 static void __ath11k_pcic_write32(struct ath11k_base *ab, u32 offset, u32 value)
145 if (offset < ATH11K_PCI_WINDOW_START)
146 iowrite32(value, ab->mem + offset);
148 ab->pci.ops->window_write32(ab, offset, value);
151 void ath11k_pcic_write32(struct ath11k_base *ab, u32 offset, u32 value)
156 /* for offset beyond BAR + 4K - 32, may
160 offset >= ATH11K_PCI_ACCESS_ALWAYS_OFF;
164 __ath11k_pcic_write32(ab, offset, value);
171 static u32 __ath11k_pcic_read32(struct ath11k_base *ab, u32 offset)
175 if (offset < ATH11K_PCI_WINDOW_START)
176 val = ioread32(ab->mem + offset);
178 val = ab->pci.ops->window_read32(ab, offset);
183 u32 ath11k_pcic_read32(struct ath11k_base *ab, u32 offset)
189 /* for offset beyond BAR + 4K - 32, may
193 offset >= ATH11K_PCI_ACCESS_ALWAYS_OFF;
197 val = __ath11k_pcic_read32(ab, offset);
213 /* for offset beyond BAR + 4K - 32, may