Hello!
We are currently in the process of migrating from our old 2.8 BSP to the latest 7.1 and have a couple of issues with WiFi, especially with Hot Plugging of the WiFi Dongle.
The following was tested with a Toradex BSP 7.1 console image, using a Colibri iMX6S, a Viola carrier board and LM816 USB WiFi dongle.
At first, the WiFi dongle is not connected:
root@colibri-imx6-11371969:~# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
2: end0: <BROADCAST,MULTICAST,DYNAMIC,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
3: usb0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN group default qlen 1000
Then I configured the WiFi by writing a config file to /var/lib/connman/wifi.config
:
[service_yourwifi]
Type = wifi
Name = SSID
Passphrase = password
At this point, scanning for WiFi obviously still fails, as I haven’t connected the dongle just yet (but our application is trying it anyway, so I have included it in my test case):
connmanctl> enable wifi
wifi is not available
connmanctl> scan wifi
Error /net/connman/technology/wifi: Method "Scan" with signature "" on interface "net.connman.Technology" doesn't exist
Then I connected the WiFi dongle, it shows up as a new network interface:
[ 871.290592] usb 1-1: new high-speed USB device number 2 using ci_hdrc
[ 871.491715] usb 1-1: New USB device found, idVendor=0bda, idProduct=8179, bcdDevice= 0.00
[ 871.500176] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 871.507633] usb 1-1: Product: 802.11n NIC
[ 871.517242] usb 1-1: Manufacturer: Realtek
[ 871.523796] usb 1-1: SerialNumber: 00E04C0001
[ 871.812588] usb 1-1: RTL8188EU rev D (TSMC) romver 0, 1T1R, TX queues 2, WiFi=1, BT=0, GPS=0, HI PA=0
[ 871.822182] usb 1-1: RTL8188EU MAC: 34:c9:f0:91:22:24
[ 871.827393] usb 1-1: rtl8xxxu: Loading firmware rtlwifi/rtl8188eufw.bin
[ 871.847284] usb 1-1: Firmware revision 28.0 (signature 0x88e1)
[ 872.508135] usbcore: registered new interface driver rtl8xxxu
[ 872.644895] rtl8xxxu 1-1:1.0 wlu1: renamed from wlan0 (while UP)
root@colibri-imx6-11371969:~# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
2: end0: <BROADCAST,MULTICAST,DYNAMIC,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
3: usb0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN group default qlen 1000
4: wlu1: <NO-CARRIER,BROADCAST,MULTICAST,DYNAMIC,UP> mtu 1500 qdisc noqueue state DOWN group default qlen 1000
link/ether 34:c9:f0:91:22:24 brd ff:ff:ff:ff:ff:ff
Scanning for WiFi networks still fails though and it can’t connect to the WiFi network:
connmanctl> enable wifi
wifi is already enabled
connmanctl> scan wifi
Error /net/connman/technology/wifi: No carrier
connmanctl>
Now the interesting part: after a reboot connmanctl services
shows all the WiFi networks it found. So it works, if the dongle was present during booting.
With the old BSP 2.8, this reboot was not required.
I also already tested with other hardware of the same type (other Colibri iMX6 etc.) and had the same issues.
tdx-info:
root@colibri-imx6-11371969:~# tdx-info
Software summary
------------------------------------------------------------
Bootloader: U-Boot
Kernel version: 6.6.69-7.1.0-00039-g0f10503b36ba #1 SMP PREEMPT Thu Jan 2 09:32:11 UTC 2025
Kernel command line: root=PARTUUID=1e49de5b-02 ro rootwait console=tty1 console=ttymxc0,115200
Distro name: NAME="TDX Wayland with XWayland Upstream"
Distro version: VERSION_ID=7.1.0-build.3
Distro variant: -
Hostname: colibri-imx6-11371969
------------------------------------------------------------
Hardware info
------------------------------------------------------------
HW model: Toradex Colibri iMX6DL/S on Colibri Evaluation Board V3
Toradex version: 0077 V1.1A
Serial number: 11371969
Processor arch: armv7l
------------------------------------------------------------
Best Regards,
Christian