drivers/net/wireless/ti/wlcore/wl12xx_80211.h
Source file repositories/reference/linux-study-clean/drivers/net/wireless/ti/wlcore/wl12xx_80211.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/wireless/ti/wlcore/wl12xx_80211.h- Extension
.h- Size
- 3613 bytes
- Lines
- 138
- 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.
- 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.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/if_ether.hlinux/if_arp.h
Detected Declarations
struct ieee80211_headerstruct wl12xx_ie_headerstruct wl12xx_ie_ssidstruct wl12xx_ie_ratesstruct wl12xx_ie_ds_paramsstruct country_tripletstruct wl12xx_ie_countrystruct wl12xx_null_data_templatestruct wl12xx_ps_poll_templatestruct wl12xx_arp_rsp_templatestruct wl12xx_disconn_template
Annotated Snippet
struct ieee80211_header {
__le16 frame_ctl;
__le16 duration_id;
u8 da[ETH_ALEN];
u8 sa[ETH_ALEN];
u8 bssid[ETH_ALEN];
__le16 seq_ctl;
} __packed;
struct wl12xx_ie_header {
u8 id;
u8 len;
} __packed;
/* IEs */
struct wl12xx_ie_ssid {
struct wl12xx_ie_header header;
char ssid[IEEE80211_MAX_SSID_LEN];
} __packed;
struct wl12xx_ie_rates {
struct wl12xx_ie_header header;
u8 rates[MAX_SUPPORTED_RATES];
} __packed;
struct wl12xx_ie_ds_params {
struct wl12xx_ie_header header;
u8 channel;
} __packed;
struct country_triplet {
u8 channel;
u8 num_channels;
u8 max_tx_power;
} __packed;
struct wl12xx_ie_country {
struct wl12xx_ie_header header;
u8 country_string[IEEE80211_COUNTRY_STRING_LEN];
struct country_triplet triplets[MAX_COUNTRY_TRIPLETS];
} __packed;
/* Templates */
struct wl12xx_null_data_template {
struct ieee80211_header header;
} __packed;
struct wl12xx_ps_poll_template {
__le16 fc;
__le16 aid;
u8 bssid[ETH_ALEN];
u8 ta[ETH_ALEN];
} __packed;
struct wl12xx_arp_rsp_template {
/* not including ieee80211 header */
u8 llc_hdr[sizeof(rfc1042_header)];
__be16 llc_type;
struct arphdr arp_hdr;
u8 sender_hw[ETH_ALEN];
__be32 sender_ip;
u8 target_hw[ETH_ALEN];
__be32 target_ip;
} __packed;
struct wl12xx_disconn_template {
struct ieee80211_header header;
__le16 disconn_reason;
} __packed;
#endif
Annotation
- Immediate include surface: `linux/if_ether.h`, `linux/if_arp.h`.
- Detected declarations: `struct ieee80211_header`, `struct wl12xx_ie_header`, `struct wl12xx_ie_ssid`, `struct wl12xx_ie_rates`, `struct wl12xx_ie_ds_params`, `struct country_triplet`, `struct wl12xx_ie_country`, `struct wl12xx_null_data_template`, `struct wl12xx_ps_poll_template`, `struct wl12xx_arp_rsp_template`.
- Atlas domain: Driver Families / drivers/net.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.