/linux-6.1.9/drivers/net/wireless/ath/ath11k/ |
D | hif.h | 12 u32 (*read32)(struct ath11k_base *sc, u32 address); 13 void (*write32)(struct ath11k_base *sc, u32 address, u32 data); 14 int (*read)(struct ath11k_base *ab, void *buf, u32 start, u32 end); 15 void (*irq_enable)(struct ath11k_base *sc); 16 void (*irq_disable)(struct ath11k_base *sc); 17 int (*start)(struct ath11k_base *sc); 18 void (*stop)(struct ath11k_base *sc); 19 int (*power_up)(struct ath11k_base *sc); 20 void (*power_down)(struct ath11k_base *sc); 21 int (*suspend)(struct ath11k_base *ab); [all …]
|
D | pcic.h | 29 int ath11k_pcic_get_user_msi_assignment(struct ath11k_base *ab, char *user_name, 32 void ath11k_pcic_write32(struct ath11k_base *ab, u32 offset, u32 value); 33 u32 ath11k_pcic_read32(struct ath11k_base *ab, u32 offset); 34 void ath11k_pcic_get_msi_address(struct ath11k_base *ab, u32 *msi_addr_lo, 36 void ath11k_pcic_get_ce_msi_idx(struct ath11k_base *ab, u32 ce_id, u32 *msi_idx); 37 void ath11k_pcic_free_irq(struct ath11k_base *ab); 38 int ath11k_pcic_config_irq(struct ath11k_base *ab); 39 void ath11k_pcic_ext_irq_enable(struct ath11k_base *ab); 40 void ath11k_pcic_ext_irq_disable(struct ath11k_base *ab); 41 void ath11k_pcic_stop(struct ath11k_base *ab); [all …]
|
D | ce.h | 58 struct ath11k_base; 103 void (*recv_cb)(struct ath11k_base *, struct sk_buff *); 104 void (*send_cb)(struct ath11k_base *, struct sk_buff *); 152 struct ath11k_base *ab; 158 void (*send_cb)(struct ath11k_base *, struct sk_buff *); 159 void (*recv_cb)(struct ath11k_base *, struct sk_buff *); 179 void ath11k_ce_cleanup_pipes(struct ath11k_base *ab); 181 void ath11k_ce_per_engine_service(struct ath11k_base *ab, u16 ce_id); 182 int ath11k_ce_send(struct ath11k_base *ab, struct sk_buff *skb, u8 pipe_id, 184 void ath11k_ce_rx_post_buf(struct ath11k_base *ab); [all …]
|
D | dp_rx.h | 59 void ath11k_dp_htt_htc_t2h_msg_handler(struct ath11k_base *ab, 61 int ath11k_dp_pdev_reo_setup(struct ath11k_base *ab); 62 void ath11k_dp_pdev_reo_cleanup(struct ath11k_base *ab); 63 int ath11k_dp_rx_pdev_alloc(struct ath11k_base *ab, int pdev_idx); 64 void ath11k_dp_rx_pdev_free(struct ath11k_base *ab, int pdev_idx); 65 void ath11k_dp_reo_cmd_list_cleanup(struct ath11k_base *ab); 66 void ath11k_dp_process_reo_status(struct ath11k_base *ab); 67 int ath11k_dp_process_rxdma_err(struct ath11k_base *ab, int mac_id, int budget); 68 int ath11k_dp_rx_process_wbm_err(struct ath11k_base *ab, 70 int ath11k_dp_process_rx_err(struct ath11k_base *ab, struct napi_struct *napi, [all …]
|
D | peer.h | 40 void ath11k_peer_unmap_event(struct ath11k_base *ab, u16 peer_id); 41 void ath11k_peer_map_event(struct ath11k_base *ab, u8 vdev_id, u16 peer_id, 43 struct ath11k_peer *ath11k_peer_find(struct ath11k_base *ab, int vdev_id, 45 struct ath11k_peer *ath11k_peer_find_by_addr(struct ath11k_base *ab, 47 struct ath11k_peer *ath11k_peer_find_by_id(struct ath11k_base *ab, int peer_id); 54 struct ath11k_peer *ath11k_peer_find_by_vdev_id(struct ath11k_base *ab, 56 int ath11k_peer_rhash_tbl_init(struct ath11k_base *ab); 57 void ath11k_peer_rhash_tbl_destroy(struct ath11k_base *ab); 58 int ath11k_peer_rhash_delete(struct ath11k_base *ab, struct ath11k_peer *peer);
|
D | pcic.c | 120 int ath11k_pcic_init_msi_config(struct ath11k_base *ab) in ath11k_pcic_init_msi_config() 143 static void __ath11k_pcic_write32(struct ath11k_base *ab, u32 offset, u32 value) in __ath11k_pcic_write32() 151 void ath11k_pcic_write32(struct ath11k_base *ab, u32 offset, u32 value) in ath11k_pcic_write32() 171 static u32 __ath11k_pcic_read32(struct ath11k_base *ab, u32 offset) in __ath11k_pcic_read32() 183 u32 ath11k_pcic_read32(struct ath11k_base *ab, u32 offset) in ath11k_pcic_read32() 206 int ath11k_pcic_read(struct ath11k_base *ab, void *buf, u32 start, u32 end) in ath11k_pcic_read() 237 void ath11k_pcic_get_msi_address(struct ath11k_base *ab, u32 *msi_addr_lo, in ath11k_pcic_get_msi_address() 245 int ath11k_pcic_get_user_msi_assignment(struct ath11k_base *ab, char *user_name, in ath11k_pcic_get_user_msi_assignment() 273 void ath11k_pcic_get_ce_msi_idx(struct ath11k_base *ab, u32 ce_id, u32 *msi_idx) in ath11k_pcic_get_ce_msi_idx() 290 static void ath11k_pcic_free_ext_irq(struct ath11k_base *ab) in ath11k_pcic_free_ext_irq() [all …]
|
D | debug.h | 31 __printf(2, 3) void ath11k_info(struct ath11k_base *ab, const char *fmt, ...); 32 __printf(2, 3) void ath11k_err(struct ath11k_base *ab, const char *fmt, ...); 33 __printf(2, 3) void ath11k_warn(struct ath11k_base *ab, const char *fmt, ...); 38 __printf(3, 4) void __ath11k_dbg(struct ath11k_base *ab, 41 void ath11k_dbg_dump(struct ath11k_base *ab, 46 static inline int __ath11k_dbg(struct ath11k_base *ab, in __ath11k_dbg() 53 static inline void ath11k_dbg_dump(struct ath11k_base *ab, in ath11k_dbg_dump()
|
D | mac.h | 14 struct ath11k_base; 136 void ath11k_mac_11d_scan_stop_all(struct ath11k_base *ab); 138 void ath11k_mac_destroy(struct ath11k_base *ab); 139 void ath11k_mac_unregister(struct ath11k_base *ab); 140 int ath11k_mac_register(struct ath11k_base *ab); 141 int ath11k_mac_allocate(struct ath11k_base *ab); 153 struct ath11k_vif *ath11k_mac_get_arvif_by_vdev_id(struct ath11k_base *ab, 157 struct ath11k_vif *ath11k_mac_get_vif_up(struct ath11k_base *ab); 159 struct ath11k *ath11k_mac_get_ar_by_vdev_id(struct ath11k_base *ab, u32 vdev_id); 160 struct ath11k *ath11k_mac_get_ar_by_pdev_id(struct ath11k_base *ab, u32 pdev_id);
|
D | ahb.c | 140 ath11k_ahb_get_msi_irq_wcn6750(struct ath11k_base *ab, unsigned int vector) in ath11k_ahb_get_msi_irq_wcn6750() 146 ath11k_ahb_get_window_start_wcn6750(struct ath11k_base *ab, u32 offset) in ath11k_ahb_get_window_start_wcn6750() 162 ath11k_ahb_window_write32_wcn6750(struct ath11k_base *ab, u32 offset, u32 value) in ath11k_ahb_window_write32_wcn6750() 173 static u32 ath11k_ahb_window_read32_wcn6750(struct ath11k_base *ab, u32 offset) in ath11k_ahb_window_read32_wcn6750() 194 static inline u32 ath11k_ahb_read32(struct ath11k_base *ab, u32 offset) in ath11k_ahb_read32() 199 static inline void ath11k_ahb_write32(struct ath11k_base *ab, u32 offset, u32 value) in ath11k_ahb_write32() 204 static void ath11k_ahb_kill_tasklets(struct ath11k_base *ab) in ath11k_ahb_kill_tasklets() 226 static void __ath11k_ahb_ext_irq_disable(struct ath11k_base *ab) in __ath11k_ahb_ext_irq_disable() 251 static void ath11k_ahb_setbit32(struct ath11k_base *ab, u8 bit, u32 offset) in ath11k_ahb_setbit32() 259 static void ath11k_ahb_clearbit32(struct ath11k_base *ab, u8 bit, u32 offset) in ath11k_ahb_clearbit32() [all …]
|
D | pci.c | 39 static int ath11k_pci_bus_wake_up(struct ath11k_base *ab) in ath11k_pci_bus_wake_up() 46 static void ath11k_pci_bus_release(struct ath11k_base *ab) in ath11k_pci_bus_release() 53 static u32 ath11k_pci_get_window_start(struct ath11k_base *ab, u32 offset) in ath11k_pci_get_window_start() 71 struct ath11k_base *ab = ab_pci->ab; in ath11k_pci_select_window() 86 ath11k_pci_window_write32(struct ath11k_base *ab, u32 offset, u32 value) in ath11k_pci_window_write32() 105 static u32 ath11k_pci_window_read32(struct ath11k_base *ab, u32 offset) in ath11k_pci_window_read32() 126 int ath11k_pci_get_msi_irq(struct ath11k_base *ab, unsigned int vector) in ath11k_pci_get_msi_irq() 174 static void ath11k_pci_soc_global_reset(struct ath11k_base *ab) in ath11k_pci_soc_global_reset() 200 static void ath11k_pci_clear_dbg_registers(struct ath11k_base *ab) in ath11k_pci_clear_dbg_registers() 230 static int ath11k_pci_set_link_reg(struct ath11k_base *ab, in ath11k_pci_set_link_reg() [all …]
|
D | hal.h | 13 struct ath11k_base; 916 void ath11k_hal_reo_init_cmd_ring(struct ath11k_base *ab, 918 void ath11k_hal_setup_link_idle_list(struct ath11k_base *ab, 923 dma_addr_t ath11k_hal_srng_get_tp_addr(struct ath11k_base *ab, 925 dma_addr_t ath11k_hal_srng_get_hp_addr(struct ath11k_base *ab, 934 int ath11k_hal_srng_get_entrysize(struct ath11k_base *ab, u32 ring_type); 935 int ath11k_hal_srng_get_max_entries(struct ath11k_base *ab, u32 ring_type); 936 void ath11k_hal_srng_get_params(struct ath11k_base *ab, struct hal_srng *srng, 938 u32 *ath11k_hal_srng_dst_get_next_entry(struct ath11k_base *ab, 940 u32 *ath11k_hal_srng_dst_peek(struct ath11k_base *ab, struct hal_srng *srng); [all …]
|
D | dp_tx.h | 19 int ath11k_dp_tx_htt_h2t_ver_req_msg(struct ath11k_base *ab); 22 void ath11k_dp_tx_completion_handler(struct ath11k_base *ab, int ring_id); 23 int ath11k_dp_tx_send_reo_cmd(struct ath11k_base *ab, struct dp_rx_tid *rx_tid, 36 int ath11k_dp_tx_htt_rx_filter_setup(struct ath11k_base *ab, u32 ring_id, 41 int ath11k_dp_tx_htt_rx_full_mon_setup(struct ath11k_base *ab, int mac_id,
|
D | htc.h | 15 struct ath11k_base; 229 void (*ep_tx_complete)(struct ath11k_base *, struct sk_buff *); 230 void (*ep_rx_complete)(struct ath11k_base *, struct sk_buff *); 231 void (*ep_tx_credits)(struct ath11k_base *); 281 struct ath11k_base *ab; 299 int ath11k_htc_init(struct ath11k_base *ar); 307 struct sk_buff *ath11k_htc_alloc_skb(struct ath11k_base *ar, int size); 308 void ath11k_htc_rx_completion_handler(struct ath11k_base *ar, 310 void ath11k_htc_tx_completion_handler(struct ath11k_base *ab,
|
D | peer.c | 11 static struct ath11k_peer *ath11k_peer_find_list_by_id(struct ath11k_base *ab, in ath11k_peer_find_list_by_id() 28 struct ath11k_peer *ath11k_peer_find(struct ath11k_base *ab, int vdev_id, in ath11k_peer_find() 47 struct ath11k_peer *ath11k_peer_find_by_addr(struct ath11k_base *ab, in ath11k_peer_find_by_addr() 63 struct ath11k_peer *ath11k_peer_find_by_id(struct ath11k_base *ab, in ath11k_peer_find_by_id() 79 struct ath11k_peer *ath11k_peer_find_by_vdev_id(struct ath11k_base *ab, in ath11k_peer_find_by_vdev_id() 96 void ath11k_peer_unmap_event(struct ath11k_base *ab, u16 peer_id) in ath11k_peer_unmap_event() 120 void ath11k_peer_map_event(struct ath11k_base *ab, u8 vdev_id, u16 peer_id, in ath11k_peer_map_event() 148 static int ath11k_wait_for_peer_common(struct ath11k_base *ab, int vdev_id, in ath11k_wait_for_peer_common() 170 static inline int ath11k_peer_rhash_insert(struct ath11k_base *ab, in ath11k_peer_rhash_insert() 190 static inline int ath11k_peer_rhash_remove(struct ath11k_base *ab, in ath11k_peer_rhash_remove() [all …]
|
D | core.h | 164 struct ath11k_base *ab; 584 struct ath11k_base *ab; 768 int (*wakeup)(struct ath11k_base *ab); 769 void (*release)(struct ath11k_base *ab); 770 int (*get_msi_irq)(struct ath11k_base *ab, unsigned int vector); 771 void (*window_write32)(struct ath11k_base *ab, u32 offset, u32 value); 772 u32 (*window_read32)(struct ath11k_base *ab, u32 offset); 830 struct ath11k_base { struct 1143 int ath11k_core_qmi_firmware_ready(struct ath11k_base *ab); 1144 int ath11k_core_pre_init(struct ath11k_base *ab); [all …]
|
D | thermal.h | 29 int ath11k_thermal_register(struct ath11k_base *sc); 30 void ath11k_thermal_unregister(struct ath11k_base *sc); 34 static inline int ath11k_thermal_register(struct ath11k_base *sc) in ath11k_thermal_register() 39 static inline void ath11k_thermal_unregister(struct ath11k_base *sc) in ath11k_thermal_unregister()
|
D | core.c | 603 static inline struct ath11k_pdev *ath11k_core_get_single_pdev(struct ath11k_base *ab) in ath11k_core_get_single_pdev() 656 int ath11k_core_suspend(struct ath11k_base *ab) in ath11k_core_suspend() 715 int ath11k_core_resume(struct ath11k_base *ab) in ath11k_core_resume() 760 struct ath11k_base *ab = data; in ath11k_core_check_cc_code_bdfext() 838 int ath11k_core_check_smbios(struct ath11k_base *ab) in ath11k_core_check_smbios() 849 int ath11k_core_check_dt(struct ath11k_base *ab) in ath11k_core_check_dt() 872 static int __ath11k_core_create_board_name(struct ath11k_base *ab, char *name, in __ath11k_core_create_board_name() 908 static int ath11k_core_create_board_name(struct ath11k_base *ab, char *name, in ath11k_core_create_board_name() 914 static int ath11k_core_create_fallback_board_name(struct ath11k_base *ab, char *name, in ath11k_core_create_fallback_board_name() 920 const struct firmware *ath11k_core_firmware_request(struct ath11k_base *ab, in ath11k_core_firmware_request() [all …]
|
D | mhi.c | 208 void ath11k_mhi_set_mhictrl_reset(struct ath11k_base *ab) in ath11k_mhi_set_mhictrl_reset() 225 static void ath11k_mhi_reset_txvecdb(struct ath11k_base *ab) in ath11k_mhi_reset_txvecdb() 230 static void ath11k_mhi_reset_txvecstatus(struct ath11k_base *ab) in ath11k_mhi_reset_txvecstatus() 235 static void ath11k_mhi_reset_rxvecdb(struct ath11k_base *ab) in ath11k_mhi_reset_rxvecdb() 240 static void ath11k_mhi_reset_rxvecstatus(struct ath11k_base *ab) in ath11k_mhi_reset_rxvecstatus() 245 void ath11k_mhi_clear_vector(struct ath11k_base *ab) in ath11k_mhi_clear_vector() 255 struct ath11k_base *ab = ab_pci->ab; in ath11k_mhi_get_msi() 326 struct ath11k_base *ab = dev_get_drvdata(mhi_cntrl->cntrl_dev); in ath11k_mhi_op_status_cb() 383 struct ath11k_base *ab = ab_pci->ab; in ath11k_mhi_register() 471 struct ath11k_base *ab = ab_pci->ab; in ath11k_mhi_start() [all …]
|
D | wow.h | 34 int ath11k_wow_enable(struct ath11k_base *ab); 35 int ath11k_wow_wakeup(struct ath11k_base *ab); 44 static inline int ath11k_wow_enable(struct ath11k_base *ab) in ath11k_wow_enable() 49 static inline int ath11k_wow_wakeup(struct ath11k_base *ab) in ath11k_wow_wakeup()
|
D | spectral.h | 43 int ath11k_spectral_init(struct ath11k_base *ab); 44 void ath11k_spectral_deinit(struct ath11k_base *ab); 52 static inline int ath11k_spectral_init(struct ath11k_base *ab) in ath11k_spectral_init() 57 static inline void ath11k_spectral_deinit(struct ath11k_base *ab) in ath11k_spectral_deinit()
|
D | hal_rx.h | 445 void ath11k_hal_reo_status_queue_stats(struct ath11k_base *ab, u32 *reo_desc, 447 void ath11k_hal_reo_flush_queue_status(struct ath11k_base *ab, u32 *reo_desc, 449 void ath11k_hal_reo_flush_cache_status(struct ath11k_base *ab, u32 *reo_desc, 451 void ath11k_hal_reo_flush_cache_status(struct ath11k_base *ab, u32 *reo_desc, 453 void ath11k_hal_reo_unblk_cache_status(struct ath11k_base *ab, u32 *reo_desc, 455 void ath11k_hal_reo_flush_timeout_list_status(struct ath11k_base *ab, 458 void ath11k_hal_reo_desc_thresh_reached_status(struct ath11k_base *ab, 461 void ath11k_hal_reo_update_rx_reo_queue_status(struct ath11k_base *ab, 468 void ath11k_hal_rx_msdu_link_desc_set(struct ath11k_base *ab, void *desc, 475 int ath11k_hal_desc_reo_parse_err(struct ath11k_base *ab, u32 *rx_desc, [all …]
|
D | hal.c | 193 static int ath11k_hal_alloc_cont_rdp(struct ath11k_base *ab) in ath11k_hal_alloc_cont_rdp() 207 static void ath11k_hal_free_cont_rdp(struct ath11k_base *ab) in ath11k_hal_free_cont_rdp() 221 static int ath11k_hal_alloc_cont_wrp(struct ath11k_base *ab) in ath11k_hal_alloc_cont_wrp() 235 static void ath11k_hal_free_cont_wrp(struct ath11k_base *ab) in ath11k_hal_free_cont_wrp() 249 static void ath11k_hal_ce_dst_setup(struct ath11k_base *ab, in ath11k_hal_ce_dst_setup() 267 static void ath11k_hal_srng_dst_hw_init(struct ath11k_base *ab, in ath11k_hal_srng_dst_hw_init() 346 static void ath11k_hal_srng_src_hw_init(struct ath11k_base *ab, in ath11k_hal_srng_src_hw_init() 455 static void ath11k_hal_srng_hw_init(struct ath11k_base *ab, in ath11k_hal_srng_hw_init() 464 static int ath11k_hal_srng_get_ring_id(struct ath11k_base *ab, in ath11k_hal_srng_get_ring_id() 486 int ath11k_hal_srng_get_entrysize(struct ath11k_base *ab, u32 ring_type) in ath11k_hal_srng_get_entrysize() [all …]
|
D | ce.c | 259 void ath11k_ce_stop_shadow_timers(struct ath11k_base *ab) in ath11k_ce_stop_shadow_timers() 274 struct ath11k_base *ab = pipe->ab; in ath11k_ce_rx_buf_enqueue_pipe() 322 struct ath11k_base *ab = pipe->ab; in ath11k_ce_rx_post_pipe() 372 struct ath11k_base *ab = pipe->ab; in ath11k_ce_completed_recv_next() 421 struct ath11k_base *ab = pipe->ab; in ath11k_ce_recv_process_cb() 461 struct ath11k_base *ab = pipe->ab; in ath11k_ce_completed_send_next() 502 struct ath11k_base *ab = pipe->ab; in ath11k_ce_tx_process_cb() 529 static void ath11k_ce_srng_msi_ring_params_setup(struct ath11k_base *ab, u32 ce_id, in ath11k_ce_srng_msi_ring_params_setup() 555 static int ath11k_ce_init_ring(struct ath11k_base *ab, in ath11k_ce_init_ring() 614 ath11k_ce_alloc_ring(struct ath11k_base *ab, int nentries, int desc_sz) in ath11k_ce_alloc_ring() [all …]
|
D | dp.c | 16 static void ath11k_dp_htt_htc_tx_complete(struct ath11k_base *ab, in ath11k_dp_htt_htc_tx_complete() 24 struct ath11k_base *ab = ar->ab; in ath11k_dp_peer_cleanup() 45 struct ath11k_base *ab = ar->ab; in ath11k_dp_peer_setup() 100 void ath11k_dp_srng_cleanup(struct ath11k_base *ab, struct dp_srng *ring) in ath11k_dp_srng_cleanup() 128 static int ath11k_dp_srng_calculate_msi_group(struct ath11k_base *ab, in ath11k_dp_srng_calculate_msi_group() 179 static void ath11k_dp_srng_msi_setup(struct ath11k_base *ab, in ath11k_dp_srng_msi_setup() 219 int ath11k_dp_srng_setup(struct ath11k_base *ab, struct dp_srng *ring, in ath11k_dp_srng_setup() 335 void ath11k_dp_stop_shadow_timers(struct ath11k_base *ab) in ath11k_dp_stop_shadow_timers() 348 static void ath11k_dp_srng_common_cleanup(struct ath11k_base *ab) in ath11k_dp_srng_common_cleanup() 368 static int ath11k_dp_srng_common_setup(struct ath11k_base *ab) in ath11k_dp_srng_common_setup() [all …]
|
D | debug.c | 10 void ath11k_info(struct ath11k_base *ab, const char *fmt, ...) in ath11k_info() 25 void ath11k_err(struct ath11k_base *ab, const char *fmt, ...) in ath11k_err() 40 void ath11k_warn(struct ath11k_base *ab, const char *fmt, ...) in ath11k_warn() 57 void __ath11k_dbg(struct ath11k_base *ab, enum ath11k_debug_mask mask, in __ath11k_dbg() 77 void ath11k_dbg_dump(struct ath11k_base *ab, in ath11k_dbg_dump()
|