Solved 'Wi-Fi 6 AX200' - iwlwifi0, SIOCIFCREATE2 (wlan0)

Hi, I am running FreeBSD 13.2-PRERELEASE , I notice that the wifi cad is detected (motherboard ROG CROSSHAIR VIII HERO (WI-FI)), here the output of pciconf:
Code:
iwlwifi0@pci0:6:0:0:    class=0x028000 rev=0x1a hdr=0x00 vendor=0x8086 device=0x2723 subvendor=0x8086 subdevice=0x0084
    vendor     = 'Intel Corporation'
    device     = 'Wi-Fi 6 AX200'
    class      = network

From dmesg:

Code:
iwlwifi0: <iwlwifi> mem 0xfc700000-0xfc703fff irq 30 at device 0.0 on pci6
iwlwifi0: successfully loaded firmware image 'iwlwifi-cc-a0-73.ucode'
iwlwifi0: api flags index 2 larger than supported by driver
iwlwifi0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
iwlwifi0: loaded firmware version 73.35c0a2c6.0 cc-a0-73.ucode op_mode iwlmvm
iwlwifi0: Detected Intel(R) Wi-Fi 6 AX200 160MHz, REV=0x340
iwlwifi0: Detected RF HR B3, rfid=0x10a100
iwlwifi0: base HW address: 50:e0:85:87:b5:18

But when I try to create an wlan0 I get this error SIOCIFCREATE2 (wlan0)

Code:
# ifconfig wlan0 create wlandev iwlwifi0
ifconfig: SIOCIFCREATE2 (wlan0): Bad address

Just in case the output of kldsta:

Code:
# kldstat
Id Refs Address                Size Name
 1   58 0xffffffff80200000  2140e90 kernel
 2    1 0xffffffff82341000   5d14e8 zfs.ko
 3    1 0xffffffff82913000   100ad8 if_re.ko
 4    1 0xffffffff82a14000     40f8 nmdm.ko
 5    1 0xffffffff82a19000   582a80 vmm.ko
 6    1 0xffffffff83120000     3530 fdescfs.ko
 7    1 0xffffffff83124000     3378 acpi_wmi.ko
 8    1 0xffffffff83128000    880c8 if_iwlwifi.ko
 9    1 0xffffffff831b1000     3218 intpm.ko
10    1 0xffffffff831b5000     2180 smbus.ko
11    1 0xffffffff831b8000     3340 uhid.ko
12    1 0xffffffff831bc000     3380 usbhid.ko
13    1 0xffffffff831c0000     31f8 hidbus.ko
14    1 0xffffffff831c4000     3320 wmt.ko
15    1 0xffffffff831c8000     7638 if_bridge.ko
16    1 0xffffffff831d0000     60d8 bridgestp.ko
17    1 0xffffffff831d7000     4700 nullfs.ko

Any ideas?
 
Last edited by a moderator:
I was testing in a system with a custom src.conf, after removing:

Code:
WITHOUT_WIRELESS=
WITHOUT_WIRELESS_SUPPORT=

worked as expected.
 
Back
Top