drivers/net/wireless/atmel/at76c50x-usb.c
Source file repositories/reference/linux-study-clean/drivers/net/wireless/atmel/at76c50x-usb.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/wireless/atmel/at76c50x-usb.c- Extension
.c- Size
- 71671 bytes
- Lines
- 2594
- Domain
- Driver Families
- Bucket
- drivers/net
- Inferred role
- Driver Families: exported/initcall integration point
- Status
- integration 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.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Touches IRQ or DMA behavior; this matters for the representative real-device path.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/init.hlinux/kernel.hlinux/sched.hlinux/errno.hlinux/slab.hlinux/module.hlinux/spinlock.hlinux/list.hlinux/usb.hlinux/netdevice.hlinux/if_arp.hlinux/etherdevice.hlinux/ethtool.hlinux/wireless.hnet/iw_handler.hnet/ieee80211_radiotap.hlinux/firmware.hlinux/leds.hnet/mac80211.hat76c50x-usb.h
Detected Declarations
struct dfu_statusfunction at76_is_intersilfunction at76_is_503rfmdfunction at76_is_505afunction at76_load_int_fw_blockfunction at76_dfu_get_statusfunction at76_dfu_get_statefunction at76_get_timeoutfunction at76_usbdfu_downloadfunction at76_ledtrig_tx_timerfuncfunction at76_ledtrig_tx_activityfunction at76_remapfunction at76_get_op_modefunction at76_load_ext_fw_blockfunction at76_get_hw_cfgfunction at76_get_hw_cfg_intersilfunction at76_get_hw_configfunction at76_get_mibfunction at76_get_cmd_statusfunction at76_set_card_commandfunction at76_wait_completionfunction at76_set_mibfunction at76_set_radiofunction at76_set_pm_modefunction at76_set_preamblefunction at76_set_fragfunction at76_set_rtsfunction at76_set_autorate_fallbackfunction at76_dump_mib_mac_addrfunction at76_dump_mib_mac_wepfunction at76_dump_mib_mac_mgmtfunction at76_dump_mib_macfunction at76_dump_mib_phyfunction at76_dump_mib_localfunction at76_dump_mib_mdomainfunction at76_start_monitorfunction at76_calc_paddingfunction at76_rx_callbackfunction at76_submit_rx_urbfunction at76_load_external_fwfunction at76_load_internal_fwfunction at76_startup_devicefunction at76_work_set_promiscfunction at76_work_submit_rxfunction at76_guess_freqfunction at76_rx_taskletfunction at76_joinfunction at76_work_join_bssid
Annotated Snippet
module_init(at76_mod_init);
module_exit(at76_mod_exit);
MODULE_AUTHOR("Oliver Kurth <oku@masqmail.cx>");
MODULE_AUTHOR("Joerg Albert <joerg.albert@gmx.de>");
MODULE_AUTHOR("Alex <alex@foogod.com>");
MODULE_AUTHOR("Nick Jones");
MODULE_AUTHOR("Balint Seeber <n0_5p4m_p13453@hotmail.com>");
MODULE_AUTHOR("Pavel Roskin <proski@gnu.org>");
MODULE_AUTHOR("Guido Guenther <agx@sigxcpu.org>");
MODULE_AUTHOR("Kalle Valo <kalle.valo@iki.fi>");
MODULE_AUTHOR("Sebastian Smolorz <sesmo@gmx.net>");
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/init.h`, `linux/kernel.h`, `linux/sched.h`, `linux/errno.h`, `linux/slab.h`, `linux/module.h`, `linux/spinlock.h`, `linux/list.h`.
- Detected declarations: `struct dfu_status`, `function at76_is_intersil`, `function at76_is_503rfmd`, `function at76_is_505a`, `function at76_load_int_fw_block`, `function at76_dfu_get_status`, `function at76_dfu_get_state`, `function at76_get_timeout`, `function at76_usbdfu_download`, `function at76_ledtrig_tx_timerfunc`.
- Atlas domain: Driver Families / drivers/net.
- Implementation status: integration implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
- IRQ or DMA behavior appears here, which is relevant to the selected PCIe/NVMe device path.
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.