drivers/net/wireless/microchip/wilc1000/wlan_if.h
Source file repositories/reference/linux-study-clean/drivers/net/wireless/microchip/wilc1000/wlan_if.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/wireless/microchip/wilc1000/wlan_if.h- Extension
.h- Size
- 24327 bytes
- Lines
- 815
- 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/netdevice.hfw.h
Detected Declarations
struct widenum bss_typesenum bus_acquireenum bus_releaseenum authtypeenum mfptypeenum site_surveyenum wid_type
Annotated Snippet
struct wid {
u16 id;
enum wid_type type;
s32 size;
s8 *val;
};
enum {
WID_NIL = 0xffff,
/*
* BSS Type
* -----------------------------------------------------------
* Configuration : Infrastructure Independent Access Point
* Values to set : 0 1 2
* -----------------------------------------------------------
*/
WID_BSS_TYPE = 0x0000,
/*
* Transmit Rate
* -----------------------------------------------------------
* Configuration : 1 2 5.5 11 6 9 12 18 24 36 48 54
* Values to set : 1 2 5 11 6 9 12 18 24 36 48 54
* -----------------------------------------------------------
*/
WID_CURRENT_TX_RATE = 0x0001,
/*
* Channel
* -----------------------------------------------------------
* Configuration(g) : 1 2 3 4 5 6 7 8 9 10 11 12 13 14
* Values to set : 1 2 3 4 5 6 7 8 9 10 11 12 13 14
* -----------------------------------------------------------
*/
WID_CURRENT_CHANNEL = 0x0002,
/*
* Preamble
* -----------------------------------------------------------
* Configuration : short long Auto
* Values to set : 0 1 2
* -----------------------------------------------------------
*/
WID_PREAMBLE = 0x0003,
/*
* 11g operating mode (ignored if 11g not present)
* -----------------------------------------------------------
* Configuration : HighPerf Compat(RSet #1) Compat(RSet #2)
* Values to set : 1 2 3
* -----------------------------------------------------------
*/
WID_11G_OPERATING_MODE = 0x0004,
/*
* Mac status (response only)
* -----------------------------------------------------------
* Configuration : disconnect connect
* Values to get : 0 1
* -----------------------------------------------------------
*/
WID_STATUS = 0x0005,
/*
* Scan type
* -----------------------------------------------------------
* Configuration : Passive Scanning Active Scanning
* Values to set : 0 1
* -----------------------------------------------------------
*/
WID_SCAN_TYPE = 0x0007,
/*
* Key Id (WEP default key Id)
* -----------------------------------------------------------
* Configuration : Any value between 0 to 3
* Values to set : Same value. Default is 0
* -----------------------------------------------------------
*/
WID_KEY_ID = 0x0009,
/*
* QoS Enable
* -----------------------------------------------------------
* Configuration : QoS Disable WMM Enable
* Values to set : 0 1
* -----------------------------------------------------------
*/
WID_QOS_ENABLE = 0x000A,
Annotation
- Immediate include surface: `linux/netdevice.h`, `fw.h`.
- Detected declarations: `struct wid`, `enum bss_types`, `enum bus_acquire`, `enum bus_release`, `enum authtype`, `enum mfptype`, `enum site_survey`, `enum wid_type`.
- 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.