Hi all,
Trying to get MT7615 working on a MT7621 dev board, I started by installing kmod-mt7615-common
and kmod-mt7615-firmware
and the card was picked up:
[ 14.948147] mt7615e 0000:01:00.0: enabling device (0000 -> 0002)
[ 15.039187] mt7615e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20180518100604a
[ 16.513581] mt7615e 0000:01:00.0: N9 Firmware Version: _reserved_, Build Time: 20200814163649
[ 16.785015] mt7615e 0000:01:00.0: CR4 Firmware Version: _reserved_, Build Time: 20190415154149
iw list
only returned one phy, phy0
, but running echo 1 > /sys/kernel/debug/ieee80211/phy0/mt76/dbdc
made phy1
appear, so all good there too:
# iw list | grep phy
Wiphy phy1
wiphy index: 1
Wiphy phy0
wiphy index: 0
Reading up on older forum posts, both here and on other sites, the suggestion is to set the first phy to run on 2.4GHZ, but the first hurdle is that I can't seem to get it to work on 2.4GHz - this config does not work:
config wifi-device 'radio0'
option disabled '0'
option type 'mac80211'
option phy 'phy0'
option country 'GB'
option cell_density '0'
option band '2g'
option htmode 'HT40'
option channel '1'
config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'OpenWrt-xxy'
option encryption 'none'
But this 5GHz config works just fine (only changes are options: band
, htmode
and channel
):
config wifi-device 'radio0'
option disabled '0'
option type 'mac80211'
option phy 'phy0'
option country 'GB'
option cell_density '0'
option band '5g'
option htmode 'VHT80'
option channel '36'
config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'OpenWrt-xxy'
option encryption 'none'
When I say it doesn't work: I can't see it advertised and/or connect to it from another device
Am I missing something obvious here?
I can't yet validate this, but would the following be the right config for running 2 APs, one on 2.4GHz and another on 5GHz? It's a mashup of various configs dug out of forum posts and Github issues:
config wifi-device 'radio0'
option disabled '0'
option type 'mac80211'
option phy 'phy0'
option serialize '1'
option country 'GB'
option cell_density '0'
option band '2g'
option htmode 'HT40'
option channel '1'
config wifi-device 'radio1'
option disabled '0'
option type 'mac80211'
option phy 'phy1'
option serialize '1'
option country 'GB'
option cell_density '0'
option band '5g'
option htmode 'VHT80'
option channel '36'
option txpower '20'
config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'OpenWrt-24'
option encryption 'none'
config wifi-iface 'default_radio1'
option device 'radio1'
option network 'lan'
option mode 'ap'
option ssid 'OpenWrt-5'
option encryption 'none'
Thanks in advance for any pointers/working config suggestions!