Home
last modified time | relevance | path

Searched refs:ce_id (Results 1 – 9 of 9) sorted by relevance

/linux/drivers/net/wireless/ath/ath10k/
A Dce.c57 switch (ce_id) { in shadow_sr_wr_ind_addr()
86 switch (ce_id) { in shadow_dst_wr_ind_addr()
178 u32 ce_id) in ath10k_ce_src_ring_read_index_from_ddr() argument
220 u32 ce_id, in ath10k_ce_src_ring_base_addr_set() argument
1331 int ce_id; in ath10k_ce_per_engine_service_any() local
1336 for (ce_id = 0; intr_summary && (ce_id < CE_COUNT); ce_id++) { in ath10k_ce_per_engine_service_any()
1390 int ce_id; in ath10k_ce_disable_interrupts() local
1392 for (ce_id = 0; ce_id < CE_COUNT; ce_id++) in ath10k_ce_disable_interrupts()
1412 int ce_id; in ath10k_ce_enable_interrupts() local
1417 for (ce_id = 0; ce_id < CE_COUNT; ce_id++) in ath10k_ce_enable_interrupts()
[all …]
A Dce.h223 int ath10k_ce_init_pipe(struct ath10k *ar, unsigned int ce_id,
225 void ath10k_ce_deinit_pipe(struct ath10k *ar, unsigned int ce_id);
226 int ath10k_ce_alloc_pipe(struct ath10k *ar, int ce_id,
228 void ath10k_ce_free_pipe(struct ath10k *ar, int ce_id);
257 void ath10k_ce_per_engine_service(struct ath10k *ar, unsigned int ce_id);
258 void ath10k_ce_disable_interrupt(struct ath10k *ar, int ce_id);
260 void ath10k_ce_enable_interrupt(struct ath10k *ar, int ce_id);
307 u32 ce_id,
310 u32 ce_id,
324 void (*ce_free_pipe)(struct ath10k *ar, int ce_id);
[all …]
A Dsnoc.c75 .ce_id = __cpu_to_le16(0),
80 .ce_id = __cpu_to_le16(3),
85 .ce_id = __cpu_to_le16(4),
90 .ce_id = __cpu_to_le16(5),
95 .ce_id = __cpu_to_le16(7),
100 .ce_id = __cpu_to_le16(1),
105 .ce_id = __cpu_to_le16(2),
1203 if (ce_id < 0 || ce_id >= ARRAY_SIZE(ar_snoc->pipe_info)) { in ath10k_snoc_per_engine_handler()
1205 ce_id); in ath10k_snoc_per_engine_handler()
1222 int ce_id; in ath10k_snoc_napi_poll() local
[all …]
A Dqmi.h67 __le16 ce_id; member
/linux/drivers/net/wireless/ath/ath11k/
A Dce.c243 static bool ath11k_ce_need_shadow_fix(int ce_id) in ath11k_ce_need_shadow_fix() argument
246 if (ce_id == 4) in ath11k_ce_need_shadow_fix()
525 ath11k_get_ce_msi_idx(ab, ce_id, &msi_data_idx); in ath11k_ce_srng_msi_ring_params_setup()
535 int ce_id, enum hal_ring_type type) in ath11k_ce_init_ring() argument
573 ret = ath11k_hal_srng_setup(ab, type, ce_id, 0, &params); in ath11k_ce_init_ring()
576 ret, ce_id); in ath11k_ce_init_ring()
583 ath11k_ce_need_shadow_fix(ce_id)) in ath11k_ce_init_ring()
630 struct ath11k_ce_pipe *pipe = &ab->ce.ce_pipe[ce_id]; in ath11k_ce_alloc_pipe()
669 struct ath11k_ce_pipe *pipe = &ab->ce.ce_pipe[ce_id]; in ath11k_ce_per_engine_service()
1051 if (ce_id >= ab->hw_params.ce_count) in ath11k_ce_get_attr_flags()
[all …]
A Dhif.h31 void (*get_ce_msi_idx)(struct ath11k_base *ab, u32 ce_id, u32 *msi_idx);
129 static inline void ath11k_get_ce_msi_idx(struct ath11k_base *ab, u32 ce_id, in ath11k_get_ce_msi_idx() argument
133 ab->hif.ops->get_ce_msi_idx(ab, ce_id, msi_data_idx); in ath11k_get_ce_msi_idx()
135 *msi_data_idx = ce_id; in ath11k_get_ce_msi_idx()
A Dahb.c207 static void ath11k_ahb_ce_irq_enable(struct ath11k_base *ab, u16 ce_id) in ath11k_ahb_ce_irq_enable() argument
211 ce_config = &ab->hw_params.target_ce_config[ce_id]; in ath11k_ahb_ce_irq_enable()
213 ath11k_ahb_setbit32(ab, ce_id, CE_HOST_IE_ADDRESS); in ath11k_ahb_ce_irq_enable()
216 ath11k_ahb_setbit32(ab, ce_id, CE_HOST_IE_2_ADDRESS); in ath11k_ahb_ce_irq_enable()
217 ath11k_ahb_setbit32(ab, ce_id + CE_HOST_IE_3_SHIFT, in ath11k_ahb_ce_irq_enable()
222 static void ath11k_ahb_ce_irq_disable(struct ath11k_base *ab, u16 ce_id) in ath11k_ahb_ce_irq_disable() argument
226 ce_config = &ab->hw_params.target_ce_config[ce_id]; in ath11k_ahb_ce_irq_disable()
228 ath11k_ahb_clearbit32(ab, ce_id, CE_HOST_IE_ADDRESS); in ath11k_ahb_ce_irq_disable()
231 ath11k_ahb_clearbit32(ab, ce_id, CE_HOST_IE_2_ADDRESS); in ath11k_ahb_ce_irq_disable()
232 ath11k_ahb_clearbit32(ab, ce_id + CE_HOST_IE_3_SHIFT, in ath11k_ahb_ce_irq_disable()
A Dce.h180 void ath11k_ce_per_engine_service(struct ath11k_base *ab, u16 ce_id);
187 int ath11k_ce_get_attr_flags(struct ath11k_base *ab, int ce_id);
A Dpci.c501 static void ath11k_pci_get_ce_msi_idx(struct ath11k_base *ab, u32 ce_id, in ath11k_pci_get_ce_msi_idx() argument
510 if (ce_id == i) in ath11k_pci_get_ce_msi_idx()
557 static void ath11k_pci_ce_irq_enable(struct ath11k_base *ab, u16 ce_id) in ath11k_pci_ce_irq_enable() argument
561 irq_idx = ATH11K_PCI_IRQ_CE0_OFFSET + ce_id; in ath11k_pci_ce_irq_enable()
565 static void ath11k_pci_ce_irq_disable(struct ath11k_base *ab, u16 ce_id) in ath11k_pci_ce_irq_disable() argument
569 irq_idx = ATH11K_PCI_IRQ_CE0_OFFSET + ce_id; in ath11k_pci_ce_irq_disable()

Completed in 24 milliseconds