Qualcomm Atheros AR5B22 Go to product viewer dialog for this item.
(often identified as the AR9462) is widely regarded as a reliable, cost-effective upgrade for laptops from the 2010–2015 era, providing dual-band Wi-Fi and Bluetooth 4.0 support. While it is an older 802.11n card and does not support modern Wi-Fi 6 or 802.11ac standards, it remains popular for extending the life of legacy systems. Performance Review Highlights
Speed & Connectivity: Users report significant improvements over single-band cards, with stable 5GHz connections achieving speeds up to 300Mbps.
Stability: Many reviewers note the card is stable for daily tasks like video conferencing and streaming 1080p content. However, some users have reported frequent disconnects on specific systems, such as certain Acer and HP models, which may require specific driver versions to resolve.
Linux Compatibility: The card is highly recommended for Linux users because it works "out of the box" with the open-source ath9k driver, though the Bluetooth component still requires a non-free firmware "blob".
Ease of Installation: In most cases, Windows 10 and 11 automatically recognize the hardware and install the necessary drivers. Driver & Support Information
Atheros AR5B22 Driver: Enabling a Classic Wi-Fi/Bluetooth Combo Card
The Atheros AR5B22 is a popular half-mini PCIe wireless card known for its dual-band Wi-Fi (2.4 GHz / 5 GHz) and integrated Bluetooth 4.0 support. It is based on the Qualcomm Atheros AR9462 chipset. While robust and well-supported in Linux, users on other operating systems often need to locate or manually install the correct drivers.
5 — Linux: drivers, firmware, and installation
Most distributions ship drivers; common commands:
Identify device:
- sudo lspci -nn | grep -i ather
Check kernel driver:
- sudo lshw -C network
- or: sudo ethtool -i wlan0 (replace interface name)
Likely driver modules:
- ath9k — for many AR5Bxx chips (Atheros AR93xx family)
- ath10k — for some newer Atheros/Qualcomm chips
- ath5k — older legacy chips
Install firmware (if required):
- Debian/Ubuntu: sudo apt update && sudo apt install firmware-atheros
- Fedora: firmware is in linux-firmware package
- Arch: linux-firmware
Load module:
- sudo modprobe ath9k
- Check dmesg for messages: dmesg | grep -i ath
Troubleshooting:
- Soft/Hard block: rfkill list all → rfkill unblock all
- Check kernel messages for firmware errors: dmesg | grep -i firmware
- If interface missing: ip link show / sudo iw dev
- NetworkManager: systemctl status NetworkManager; use nmcli for debugging
- For intermittent disconnects, enable debug logging: sudo iwconfig wlan0 power off (disable power save)
Practical tips:
- Disable power management to improve stability: create /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf with wifi.powersave = 2 or use iwconfig wlan0 power off in startup scripts.
- If ath9k has issues with 40 MHz/HT: force 20 MHz in hostapd or regulatory domain settings.
- Confirm regulatory domain: sudo iw reg get; set with sudo iw reg set <country_code> for correct channels/tx power.
- If driver missing in very new kernels or hardware, upgrade kernel or use backports (e.g., compat-wireless or linux-backports-modules) or install a newer distro kernel.
Issue 4: macOS only sees Bluetooth, not Wi-Fi
Cause: The device ID is not correctly mapped.
Solution: In OpenCore, ensure your config.plist includes pci168c,34 (the PCI vendor/device ID for AR5B22). Also, disable any AirportBrcmFixup.kext that may be conflicting.