drivers/net/wireless/broadcom/b43/radio_2056.h
Source file repositories/reference/linux-study-clean/drivers/net/wireless/broadcom/b43/radio_2056.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/wireless/broadcom/b43/radio_2056.h- Extension
.h- Size
- 38995 bytes
- Lines
- 1102
- 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/types.htables_nphy.h
Detected Declarations
struct b43_nphy_channeltab_entry_rev3
Annotated Snippet
struct b43_nphy_channeltab_entry_rev3 {
/* The channel frequency in MHz */
u16 freq;
/* Radio register values on channelswitch */
u8 radio_syn_pll_vcocal1;
u8 radio_syn_pll_vcocal2;
u8 radio_syn_pll_refdiv;
u8 radio_syn_pll_mmd2;
u8 radio_syn_pll_mmd1;
u8 radio_syn_pll_loopfilter1;
u8 radio_syn_pll_loopfilter2;
u8 radio_syn_pll_loopfilter3;
u8 radio_syn_pll_loopfilter4;
u8 radio_syn_pll_loopfilter5;
u8 radio_syn_reserved_addr27;
u8 radio_syn_reserved_addr28;
u8 radio_syn_reserved_addr29;
u8 radio_syn_logen_vcobuf1;
u8 radio_syn_logen_mixer2;
u8 radio_syn_logen_buf3;
u8 radio_syn_logen_buf4;
u8 radio_rx0_lnaa_tune;
u8 radio_rx0_lnag_tune;
u8 radio_tx0_intpaa_boost_tune;
u8 radio_tx0_intpag_boost_tune;
u8 radio_tx0_pada_boost_tune;
u8 radio_tx0_padg_boost_tune;
u8 radio_tx0_pgaa_boost_tune;
u8 radio_tx0_pgag_boost_tune;
u8 radio_tx0_mixa_boost_tune;
u8 radio_tx0_mixg_boost_tune;
u8 radio_rx1_lnaa_tune;
u8 radio_rx1_lnag_tune;
u8 radio_tx1_intpaa_boost_tune;
u8 radio_tx1_intpag_boost_tune;
u8 radio_tx1_pada_boost_tune;
u8 radio_tx1_padg_boost_tune;
u8 radio_tx1_pgaa_boost_tune;
u8 radio_tx1_pgag_boost_tune;
u8 radio_tx1_mixa_boost_tune;
u8 radio_tx1_mixg_boost_tune;
/* PHY register values on channelswitch */
struct b43_phy_n_sfo_cfg phy_regs;
};
void b2056_upload_inittabs(struct b43_wldev *dev,
bool ghz5, bool ignore_uploadflag);
void b2056_upload_syn_pll_cp2(struct b43_wldev *dev, bool ghz5);
/* Get the NPHY Channel Switch Table entry for a channel.
* Returns NULL on failure to find an entry. */
const struct b43_nphy_channeltab_entry_rev3 *
b43_nphy_get_chantabent_rev3(struct b43_wldev *dev, u16 freq);
#endif /* B43_RADIO_2056_H_ */
Annotation
- Immediate include surface: `linux/types.h`, `tables_nphy.h`.
- Detected declarations: `struct b43_nphy_channeltab_entry_rev3`.
- 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.