Lines Matching refs:sc
12 u32 (*read32)(struct ath11k_base *sc, u32 address);
13 void (*write32)(struct ath11k_base *sc, u32 address, u32 data);
14 void (*irq_enable)(struct ath11k_base *sc);
15 void (*irq_disable)(struct ath11k_base *sc);
16 int (*start)(struct ath11k_base *sc);
17 void (*stop)(struct ath11k_base *sc);
18 int (*power_up)(struct ath11k_base *sc);
19 void (*power_down)(struct ath11k_base *sc);
22 int (*map_service_to_pipe)(struct ath11k_base *sc, u16 service_id,
46 static inline int ath11k_hif_start(struct ath11k_base *sc) in ath11k_hif_start() argument
48 return sc->hif.ops->start(sc); in ath11k_hif_start()
51 static inline void ath11k_hif_stop(struct ath11k_base *sc) in ath11k_hif_stop() argument
53 sc->hif.ops->stop(sc); in ath11k_hif_stop()
56 static inline void ath11k_hif_irq_enable(struct ath11k_base *sc) in ath11k_hif_irq_enable() argument
58 sc->hif.ops->irq_enable(sc); in ath11k_hif_irq_enable()
61 static inline void ath11k_hif_irq_disable(struct ath11k_base *sc) in ath11k_hif_irq_disable() argument
63 sc->hif.ops->irq_disable(sc); in ath11k_hif_irq_disable()
66 static inline int ath11k_hif_power_up(struct ath11k_base *sc) in ath11k_hif_power_up() argument
68 return sc->hif.ops->power_up(sc); in ath11k_hif_power_up()
71 static inline void ath11k_hif_power_down(struct ath11k_base *sc) in ath11k_hif_power_down() argument
73 sc->hif.ops->power_down(sc); in ath11k_hif_power_down()
92 static inline u32 ath11k_hif_read32(struct ath11k_base *sc, u32 address) in ath11k_hif_read32() argument
94 return sc->hif.ops->read32(sc, address); in ath11k_hif_read32()
97 static inline void ath11k_hif_write32(struct ath11k_base *sc, u32 address, u32 data) in ath11k_hif_write32() argument
99 sc->hif.ops->write32(sc, address, data); in ath11k_hif_write32()
102 static inline int ath11k_hif_map_service_to_pipe(struct ath11k_base *sc, u16 service_id, in ath11k_hif_map_service_to_pipe() argument
105 return sc->hif.ops->map_service_to_pipe(sc, service_id, ul_pipe, dl_pipe); in ath11k_hif_map_service_to_pipe()