drivers/net/wireless/microchip/wilc1000/fw.h
Source file repositories/reference/linux-study-clean/drivers/net/wireless/microchip/wilc1000/fw.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/wireless/microchip/wilc1000/fw.h- Extension
.h- Size
- 2607 bytes
- Lines
- 144
- 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/ieee80211.h
Detected Declarations
struct wilc_assoc_respstruct wilc_pmkidstruct wilc_pmkid_attrstruct wilc_reg_framestruct wilc_drv_handlerstruct wilc_sta_wpa_ptkstruct wilc_ap_wpa_ptkstruct wilc_wpa_igtkstruct wilc_gtk_keystruct wilc_op_modestruct wilc_noa_opp_enablestruct wilc_noa_opp_disablestruct wilc_join_bss_paramstruct wilc_external_auth_paramfunction get_bank_offset_from_bank_index
Annotated Snippet
struct wilc_assoc_resp {
__le16 capab_info;
__le16 status_code;
__le16 aid;
} __packed;
struct wilc_pmkid {
u8 bssid[ETH_ALEN];
u8 pmkid[WLAN_PMKID_LEN];
} __packed;
struct wilc_pmkid_attr {
u8 numpmkid;
struct wilc_pmkid pmkidlist[WILC_MAX_NUM_PMKIDS];
} __packed;
struct wilc_reg_frame {
u8 reg;
u8 reg_id;
__le16 frame_type;
} __packed;
struct wilc_drv_handler {
__le32 handler;
u8 mode;
} __packed;
struct wilc_sta_wpa_ptk {
u8 mac_addr[ETH_ALEN];
u8 key_len;
u8 key[];
} __packed;
struct wilc_ap_wpa_ptk {
u8 mac_addr[ETH_ALEN];
u8 index;
u8 key_len;
u8 key[];
} __packed;
struct wilc_wpa_igtk {
u8 index;
u8 pn_len;
u8 pn[6];
u8 key_len;
u8 key[];
} __packed;
struct wilc_gtk_key {
u8 mac_addr[ETH_ALEN];
u8 rsc[8];
u8 index;
u8 key_len;
u8 key[];
} __packed;
struct wilc_op_mode {
__le32 mode;
} __packed;
struct wilc_noa_opp_enable {
u8 ct_window;
u8 cnt;
__le32 duration;
__le32 interval;
__le32 start_time;
} __packed;
struct wilc_noa_opp_disable {
u8 cnt;
__le32 duration;
__le32 interval;
__le32 start_time;
} __packed;
struct wilc_join_bss_param {
char ssid[IEEE80211_MAX_SSID_LEN];
u8 ssid_terminator;
u8 bss_type;
u8 ch;
__le16 cap_info;
u8 sa[ETH_ALEN];
u8 bssid[ETH_ALEN];
__le16 beacon_period;
u8 dtim_period;
u8 supp_rates[WILC_MAX_RATES_SUPPORTED + 1];
u8 wmm_cap;
u8 uapsd_cap;
u8 ht_capable;
u8 rsn_found;
Annotation
- Immediate include surface: `linux/ieee80211.h`.
- Detected declarations: `struct wilc_assoc_resp`, `struct wilc_pmkid`, `struct wilc_pmkid_attr`, `struct wilc_reg_frame`, `struct wilc_drv_handler`, `struct wilc_sta_wpa_ptk`, `struct wilc_ap_wpa_ptk`, `struct wilc_wpa_igtk`, `struct wilc_gtk_key`, `struct wilc_op_mode`.
- 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.