Intel Wi-Fi AX201 Bluetooth

Hi all, I've wifi/bluetooth of title.
Code:
┌[zar_marco@beastiegram] [/dev/pts/1]
└[~]> inxi -NE
Network:
  Device-1: Intel Wi-Fi 6 AX201 driver: iwlwifi
Bluetooth:
  Message: No bluetooth data found.


I had verify if module was active and this is response:
Code:
┌[zar_marco@beastiegram] [/dev/pts/1]
└[~]> sudo kldload ng_ubt
Password:
kldload: can't load ng_ubt: module already loaded or in kernel

i modified /etc/rc.conf with ng_ubt_load="YES", but when if I try to start the service I have:
Code:
┌[zar_marco@beastiegram] [/dev/pts/1]
└[~]> sudo service bluetooth start
/etc/rc.d/bluetooth: ERROR: Unsupported device:

So I don't know how can I proceed
 
The AX201 is a relatively recent piece of hardware (at least from a FreeBSD point of view). As of today, even WiFi works only very limited on that car using the new iwlwifi driver (which is essentially the linux driver running via linuxkpi). For example, it still only runs in 802.11b/g/n and resume/suspend doesn't work.

You might want to reach out to bz@ over at the wireless mailing list as he's working on the iwlwifi driver. Maybe he can share some details on the efforts required to get bluetooth up and running (which will most likely require a fair amount of development work I assume).

Writing drivers for these modern cards has become increasingly difficult. Partly because they get every more complex in nature which requires more complex knowledge and more manpower to implement but mainly because they contain lots of proprietary tech which is only accessible via NDA and implicitly to the "more powerful" players.
The ongoing efforts of iwlwifi is, as far as I understood (don't quote me on that) largely to "bypass" these issues by "simply" running the corresponding Linux drivers provided by the manufactures (in this case Intel).
 
What's the output of :
Code:
cat /var/log/messages | grep -i ubt

Try eg,
Code:
service bluetooth start ubt0
This is log/messages:
Code:
┌[zar_marco@beastiegram] [/dev/pts/1] [1]
└[~]> sudo cat /var/log/messages | grep -i ubt
Jan 13 03:29:23 beastiegram zar_marco[3348]: /etc/rc.d/bluetooth: ERROR: Unable to setup Bluetooth stack for device ubt0
Jan 13 13:27:49 beastiegram zar_marco[3848]: /etc/rc.d/bluetooth: ERROR: Unable to setup Bluetooth stack for device ubt0

this is start service with ubt0:
Code:
┌[zar_marco@beastiegram] [/dev/pts/1]
└[~]> sudo service bluetooth start ubt0       
/etc/rc.d/bluetooth: ERROR: Unable to setup Bluetooth stack for device ubt0

this is my freebsd and kernel version:
Code:
┌[zar_marco@beastiegram] [/dev/pts/1]
└[~]> uname -a           
FreeBSD beastiegram 13.1-RELEASE-p3 FreeBSD 13.1-RELEASE-p3 GENERIC amd64
┌[zar_marco@beastiegram] [/dev/pts/1]
└[~]> freebsd-version -kru
13.1-RELEASE-p3
13.1-RELEASE-p3
13.1-RELEASE-p5

and so I only wanted to know if I wrong anythings or if is correct that bluetooth didn't go ;)
 
Back
Top