I have similar issue as here A wireless chip containing dual-band(2.4G and 5G) only generate 5G configuration in OpenWrt, but cannot generate 2.4G configuration
Seems that it cannot hold 2.4GHz and 5GHz at the same time, either the 2.4GHz or 5GHz interface would be disabled. Also the configuration did not automatically take up radio1 for 2.4GHz so I manually did it on /etc/config/wireless
However not straightforward answer was given or any solution.
I have Compex WLE600VX - https://compex.com.sg/shop/wifi-module/wle600vx-wifi5-11ac-qca9882-qca9892/ so it should have Dual Band capabilities.
I have so far tried with both firmwares of to no avail:
ath10k-firmware-qca988x
ath10k-firmware-qca988x-ct
Current /etc/config/wireless configuration:
config wifi-device 'radio0'
option type 'mac80211'
option path 'pci0000:00/0000:00:1d.2/0000:06:00.0'
option channel 'auto'
option band '5g'
option htmode 'HT40'
option cell_density '0'
config wifi-device 'radio1'
option type 'mac80211'
option path 'pci0000:00/0000:00:1d.2/0000:06:00.0'
option channel 'auto'
option band '2g'
option htmode 'HT20'
option cell_density '0'
config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'WiFi'
option encryption 'psk2'
option key '123'
option ifname 'phy0-ap0'
config wifi-iface 'default_radio1'
option device 'radio1'
option network 'lan'
option mode 'ap'
option ssid 'WiFi_2G'
option encryption 'psk2'
option key '123'
option ifname 'phy1-ap0'
Also when playing around with creating different interfaces on logread I'm sometimes having this sort of warning:
Thu Feb 8 01:30:41 2024 kern.warn kernel: [ 11.985608] ath10k_pci 0000:06:00.0: pdev param 0 not supported by firmware
Any help would be appreciated.