• Home
  • Raw
  • Download

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);
20 int (*map_service_to_pipe)(struct ath11k_base *sc, u16 service_id,
29 static inline int ath11k_hif_start(struct ath11k_base *sc) in ath11k_hif_start() argument
31 return sc->hif.ops->start(sc); in ath11k_hif_start()
34 static inline void ath11k_hif_stop(struct ath11k_base *sc) in ath11k_hif_stop() argument
36 sc->hif.ops->stop(sc); in ath11k_hif_stop()
39 static inline void ath11k_hif_irq_enable(struct ath11k_base *sc) in ath11k_hif_irq_enable() argument
41 sc->hif.ops->irq_enable(sc); in ath11k_hif_irq_enable()
44 static inline void ath11k_hif_irq_disable(struct ath11k_base *sc) in ath11k_hif_irq_disable() argument
46 sc->hif.ops->irq_disable(sc); in ath11k_hif_irq_disable()
49 static inline int ath11k_hif_power_up(struct ath11k_base *sc) in ath11k_hif_power_up() argument
51 return sc->hif.ops->power_up(sc); in ath11k_hif_power_up()
54 static inline void ath11k_hif_power_down(struct ath11k_base *sc) in ath11k_hif_power_down() argument
56 sc->hif.ops->power_down(sc); in ath11k_hif_power_down()
59 static inline u32 ath11k_hif_read32(struct ath11k_base *sc, u32 address) in ath11k_hif_read32() argument
61 return sc->hif.ops->read32(sc, address); in ath11k_hif_read32()
64 static inline void ath11k_hif_write32(struct ath11k_base *sc, u32 address, u32 data) in ath11k_hif_write32() argument
66 sc->hif.ops->write32(sc, address, data); in ath11k_hif_write32()
69 static inline int ath11k_hif_map_service_to_pipe(struct ath11k_base *sc, u16 service_id, in ath11k_hif_map_service_to_pipe() argument
72 return sc->hif.ops->map_service_to_pipe(sc, service_id, ul_pipe, dl_pipe); in ath11k_hif_map_service_to_pipe()