drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hal_btc.h
Source file repositories/reference/linux-study-clean/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hal_btc.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hal_btc.h- Extension
.h- Size
- 3271 bytes
- Lines
- 139
- 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
../wifi.hbtc.hhal_bt_coexist.h
Detected Declarations
struct c2h_evt_hdrenum bt_traffic_modeenum bt_traffic_mode_profileenum hci_ext_bt_operationenum bt_specenum bt_stateenum rtl8723e_c2h_evt_v0
Annotated Snippet
struct c2h_evt_hdr {
u8 cmd_id;
u8 cmd_len;
u8 cmd_seq;
};
enum bt_state {
BT_INFO_STATE_DISABLED = 0,
BT_INFO_STATE_NO_CONNECTION = 1,
BT_INFO_STATE_CONNECT_IDLE = 2,
BT_INFO_STATE_INQ_OR_PAG = 3,
BT_INFO_STATE_ACL_ONLY_BUSY = 4,
BT_INFO_STATE_SCO_ONLY_BUSY = 5,
BT_INFO_STATE_ACL_SCO_BUSY = 6,
BT_INFO_STATE_HID_BUSY = 7,
BT_INFO_STATE_HID_SCO_BUSY = 8,
BT_INFO_STATE_MAX = 7
};
enum rtl8723e_c2h_evt_v0 {
C2H_V0_DBG = 0,
C2H_V0_TSF = 1,
C2H_V0_AP_RPT_RSP = 2,
/* The FW notify the report of the specific tx packet. */
C2H_V0_CCX_TX_RPT = 3,
C2H_V0_BT_RSSI = 4,
C2H_V0_BT_OP_MODE = 5,
C2H_V0_HW_INFO_EXCH = 10,
C2H_V0_C2H_H2C_TEST = 11,
C2H_V0_BT_INFO = 12,
MAX_C2HEVENT
};
void rtl8723e_dm_bt_fw_coex_all_off_8723a(struct ieee80211_hw *hw);
void rtl8723e_dm_bt_sw_coex_all_off_8723a(struct ieee80211_hw *hw);
void rtl8723e_dm_bt_hw_coex_all_off_8723a(struct ieee80211_hw *hw);
void rtl8723e_dm_bt_coexist_8723(struct ieee80211_hw *hw);
void rtl8723e_dm_bt_set_bt_dm(struct ieee80211_hw *hw,
struct btdm_8723 *p_btdm);
void rtl_8723e_c2h_command_handle(struct ieee80211_hw *hw);
void rtl_8723e_bt_wifi_media_status_notify(struct ieee80211_hw *hw,
bool mstatus);
void rtl8723e_dm_bt_turn_off_bt_coexist_before_enter_lps(
struct ieee80211_hw *hw);
#endif
Annotation
- Immediate include surface: `../wifi.h`, `btc.h`, `hal_bt_coexist.h`.
- Detected declarations: `struct c2h_evt_hdr`, `enum bt_traffic_mode`, `enum bt_traffic_mode_profile`, `enum hci_ext_bt_operation`, `enum bt_spec`, `enum bt_state`, `enum rtl8723e_c2h_evt_v0`.
- 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.