drivers/net/wireless/ath/ath11k/ahb.h

Source file repositories/reference/linux-study-clean/drivers/net/wireless/ath/ath11k/ahb.h

File Facts

System
Linux kernel
Corpus path
drivers/net/wireless/ath/ath11k/ahb.h
Extension
.h
Size
1040 bytes
Lines
47
Domain
Driver Families
Bucket
drivers/net
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

struct ath11k_ahb {
	struct rproc *tgt_rproc;
	struct {
		struct device *dev;
		struct iommu_domain *iommu_domain;
		dma_addr_t msa_paddr;
		u32 msa_size;
		dma_addr_t ce_paddr;
		u32 ce_size;
		bool use_tz;
	} fw;
	struct {
		unsigned short seq_no;
		unsigned int smem_bit;
		struct qcom_smem_state *smem_state;
	} smp2p_info;
};

static inline struct ath11k_ahb *ath11k_ahb_priv(struct ath11k_base *ab)
{
	return (struct ath11k_ahb *)ab->drv_priv;
}
#endif

Annotation

Implementation Notes