Xiaomi ax 3600 country code / regulatory database

Hello,
I'm using the official firmware image from https://openwrt.org/toh/xiaomi/ax3600.

If I try to set the country code to "DE" or something other than US, the 5GHz WiFi stops working. 2.4GHz WiFi does not appear to be affected.

There seems to be a problem with the firmware.
Robimarko fixed it in commit 7475321f46b83cc04296638d6cf31542d11e3e78, which was pushed upstream in April 2023.
So I think it should be included in OpenWRT 24.10.

But why isn't it working as expected?
Does anyone have the same problem?
And how could it be fixed?

root@ap1:~# iw reg get
global
country US: DFS-FCC
	(902 - 904 @ 2), (N/A, 30), (N/A)
	(904 - 920 @ 16), (N/A, 30), (N/A)
	(920 - 928 @ 8), (N/A, 30), (N/A)
	(2400 - 2472 @ 40), (N/A, 30), (N/A)
	(5150 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
	(5250 - 5350 @ 80), (N/A, 24), (0 ms), DFS, AUTO-BW
	(5470 - 5730 @ 160), (N/A, 24), (0 ms), DFS
	(5730 - 5850 @ 80), (N/A, 30), (N/A), AUTO-BW
	(5850 - 5895 @ 40), (N/A, 27), (N/A), NO-OUTDOOR, AUTO-BW, PASSIVE-SCAN
	(5925 - 7125 @ 320), (N/A, 12), (N/A), NO-OUTDOOR, PASSIVE-SCAN
	(57240 - 71000 @ 2160), (N/A, 40), (N/A)

phy#2 (self-managed)
country US: DFS-FCC
	(2402 - 2472 @ 40), (6, 30), (N/A)
	(5170 - 5250 @ 80), (6, 30), (N/A), AUTO-BW
	(5250 - 5330 @ 80), (6, 24), (0 ms), DFS, AUTO-BW
	(5490 - 5730 @ 160), (6, 24), (0 ms), DFS, AUTO-BW
	(5735 - 5895 @ 160), (6, 30), (N/A), AUTO-BW

phy#1 (self-managed)
country US: DFS-FCC
	(2402 - 2472 @ 40), (6, 30), (N/A)
	(5170 - 5250 @ 80), (6, 30), (N/A), AUTO-BW
	(5250 - 5330 @ 80), (6, 24), (0 ms), DFS, AUTO-BW
	(5490 - 5730 @ 160), (6, 24), (0 ms), DFS, AUTO-BW
	(5735 - 5895 @ 160), (6, 30), (N/A), AUTO-BW

phy#0
country US: DFS-FCC
	(902 - 904 @ 2), (N/A, 30), (N/A)
	(904 - 920 @ 16), (N/A, 30), (N/A)
	(920 - 928 @ 8), (N/A, 30), (N/A)
	(2400 - 2472 @ 40), (N/A, 30), (N/A)
	(5150 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
	(5250 - 5350 @ 80), (N/A, 24), (0 ms), DFS, AUTO-BW
	(5470 - 5730 @ 160), (N/A, 24), (0 ms), DFS
	(5730 - 5850 @ 80), (N/A, 30), (N/A), AUTO-BW
	(5850 - 5895 @ 40), (N/A, 27), (N/A), NO-OUTDOOR, AUTO-BW, PASSIVE-SCAN
	(5925 - 7125 @ 320), (N/A, 12), (N/A), NO-OUTDOOR, PASSIVE-SCAN
	(57240 - 71000 @ 2160), (N/A, 40), (N/A)

root@ap1:~# 

DFS makes wifi come up with a delay.

1 Like

In which country is your router installed/located ?

Please connect to your OpenWrt device using ssh and copy the output of the following commands and post it here using the "Preformatted text </> " button:
grafik
Remember to redact passwords, MAC addresses and any public IP addresses you may have:

ubus call system board
cat /etc/config/wireless
1 Like
root@ap1:~# ubus call system board
{
	"kernel": "6.6.93",
	"hostname": "ap1",
	"system": "ARMv8 Processor rev 4",
	"model": "Xiaomi AX3600",
	"board_name": "xiaomi,ax3600",
	"rootfs_type": "squashfs",
	"release": {
		"distribution": "OpenWrt",
		"version": "24.10.2",
		"revision": "r28739-d9340319c6",
		"target": "qualcommax/ipq807x",
		"description": "OpenWrt 24.10.2 r28739-d9340319c6",
		"builddate": "1750711236"
	}
}
root@ap1:~#
root@ap1:~# sed -e "s/^\s*option key .*/option key 'passwd'/" /etc/config/wireless

config wifi-device 'radio0'
	option type 'mac80211'
	option path 'soc@0/20000000.pci/pci0000:00/0000:00:00.0/0000:01:00.0'
	option band '5g'
	option channel '36'
	option htmode 'VHT80'
	option disabled '1'
	option country 'US'

config wifi-iface 'default_radio0'
	option device 'radio0'
	option network 'lan'
	option mode 'ap'
	option ssid 'OpenWrt'
	option encryption 'none'

config wifi-device 'radio1'
	option type 'mac80211'
	option path 'platform/soc@0/c000000.wifi'
	option band '5g'
	option channel '116'
	option htmode 'HE80'
	option cell_density '0'
	option country 'US'

config wifi-iface 'default_radio1'
	option device 'radio1'
	option network 'lan'
	option mode 'ap'
	option ssid 'OpenWrt_5G'
	option encryption 'sae-mixed'
    option key 'passwd'
	option ocv '0'
	option dtim_period '3'
	option ieee80211r '1'
	option mobility_domain '22D0'
	option ft_over_ds '0'

config wifi-device 'radio2'
	option type 'mac80211'
	option path 'platform/soc@0/c000000.wifi+1'
	option band '2g'
	option channel '6'
	option htmode 'HE40'
	option cell_density '0'
	option country 'US'

config wifi-iface 'default_radio2'
	option device 'radio2'
	option network 'lan'
	option mode 'ap'
	option ssid 'OpenWrt'
	option encryption 'sae-mixed'
    option key 'passwd'
	option ocv '0'
	option dtim_period '3'
	option ieee80211r '1'
	option mobility_domain 'EE67'
	option ft_over_ds '0'

config wifi-iface 'wifinet3'
	option device 'radio2'
	option mode 'ap'
	option ssid 'OpenWrt_guest'
	option encryption 'sae-mixed'
    option key 'passwd'
	option ocv '0'
	option network 'guest'

config wifi-iface 'wifinet4'
	option device 'radio1'
	option mode 'ap'
	option ssid 'OpenWrt_guest'
	option encryption 'sae-mixed'
    option key 'passwd'
	option ocv '0'
	option network 'guest'

root@ap1:~# 

are you in the USA ?

1 Like

No but I wrote it before.

Can you please put the correct country code (I assume DE = Germany),

reboot the router and provide the output of the "iw reg get" command?

Attaching, if possible, an extract of the error that should appear when running "dmesg" or "logread"

1 Like

Btw, sae-mixed is sh-t encryption, don't use it.
Plus, some clients don't like it.

1 Like
root@ap1:~# iw reg get
global
country DE: DFS-ETSI
	(2400 - 2483 @ 40), (N/A, 20), (N/A)
	(5150 - 5250 @ 80), (N/A, 23), (N/A), NO-OUTDOOR, AUTO-BW
	(5250 - 5350 @ 80), (N/A, 20), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
	(5470 - 5725 @ 160), (N/A, 26), (0 ms), DFS
	(5725 - 5875 @ 80), (N/A, 13), (N/A)
	(5945 - 6425 @ 320), (N/A, 23), (N/A), NO-OUTDOOR
	(57000 - 66000 @ 2160), (N/A, 40), (N/A)

phy#2 (self-managed)
country DE: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20), (N/A)
	(5170 - 5250 @ 80), (N/A, 23), (N/A), NO-OUTDOOR, AUTO-BW
	(5250 - 5330 @ 80), (N/A, 23), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
	(5490 - 5590 @ 80), (N/A, 30), (0 ms), DFS, AUTO-BW
	(5590 - 5650 @ 40), (N/A, 30), (600000 ms), DFS, AUTO-BW
	(5650 - 5710 @ 40), (N/A, 30), (0 ms), DFS, AUTO-BW

phy#1 (self-managed)
country DE: DFS-ETSI
	(2402 - 2482 @ 40), (N/A, 20), (N/A)
	(5170 - 5250 @ 80), (N/A, 23), (N/A), NO-OUTDOOR, AUTO-BW
	(5250 - 5330 @ 80), (N/A, 23), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
	(5490 - 5590 @ 80), (N/A, 30), (0 ms), DFS, AUTO-BW
	(5590 - 5650 @ 40), (N/A, 30), (600000 ms), DFS, AUTO-BW
	(5650 - 5710 @ 40), (N/A, 30), (0 ms), DFS, AUTO-BW

phy#0
country US: DFS-FCC
	(902 - 904 @ 2), (N/A, 30), (N/A)
	(904 - 920 @ 16), (N/A, 30), (N/A)
	(920 - 928 @ 8), (N/A, 30), (N/A)
	(2400 - 2472 @ 40), (N/A, 30), (N/A)
	(5150 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
	(5250 - 5350 @ 80), (N/A, 24), (0 ms), DFS, AUTO-BW
	(5470 - 5730 @ 160), (N/A, 24), (0 ms), DFS
	(5730 - 5850 @ 80), (N/A, 30), (N/A), AUTO-BW
	(5850 - 5895 @ 40), (N/A, 27), (N/A), NO-OUTDOOR, AUTO-BW, PASSIVE-SCAN
	(5925 - 7125 @ 320), (N/A, 12), (N/A), NO-OUTDOOR, PASSIVE-SCAN
	(57240 - 71000 @ 2160), (N/A, 40), (N/A)

root@ap1:~# 

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 6.6.93 (builder@buildhost) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 13.3.0 r28739-d9340319c6) 13.3.0, GNU ld (GNU Binutils) 2.42) #0 SMP Mon Jun 23 20:40:36 2025
[    0.000000] Machine model: Xiaomi AX3600
[    0.000000] OF: reserved mem: 0x0000000040000000..0x0000000040ffffff (16384 KiB) nomap non-reusable nss@40000000
[    0.000000] OF: reserved mem: 0x000000004a400000..0x000000004a4fffff (1024 KiB) nomap non-reusable tzapp@4a400000
[    0.000000] OF: reserved mem: 0x000000004a600000..0x000000004a9fffff (4096 KiB) nomap non-reusable bootloader@4a600000
[    0.000000] OF: reserved mem: 0x000000004aa00000..0x000000004aafffff (1024 KiB) nomap non-reusable sbl@4aa00000
[    0.000000] OF: reserved mem: 0x000000004ab00000..0x000000004abfffff (1024 KiB) nomap non-reusable smem@4ab00000
[    0.000000] OF: reserved mem: 0x000000004ac00000..0x000000004affffff (4096 KiB) nomap non-reusable memory@4ac00000
[    0.000000] OF: reserved mem: 0x000000004b000000..0x000000004e6fffff (56320 KiB) nomap non-reusable wcnss@4b000000
[    0.000000] OF: reserved mem: 0x000000004e700000..0x000000004e7fffff (1024 KiB) nomap non-reusable q6_etr_dump@50f00000
[    0.000000] OF: reserved mem: 0x000000004e800000..0x000000004e8fffff (1024 KiB) nomap non-reusable m3_dump@51000000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000040000000-0x000000005fffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000040000000-0x0000000040ffffff]
[    0.000000]   node   0: [mem 0x0000000041000000-0x000000004a3fffff]
[    0.000000]   node   0: [mem 0x000000004a400000-0x000000004a4fffff]
[    0.000000]   node   0: [mem 0x000000004a500000-0x000000004a5fffff]
[    0.000000]   node   0: [mem 0x000000004a600000-0x000000004e8fffff]
[    0.000000]   node   0: [mem 0x000000004e900000-0x000000005fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000005fffffff]
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.0 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.0
[    0.000000] psci: OSI mode supported.
[    0.000000] psci: [Firmware Bug]: failed to set PC mode: -1
[    0.000000] percpu: Embedded 18 pages/cpu s36200 r8192 d29336 u73728
[    0.000000] pcpu-alloc: s36200 r8192 d29336 u73728 alloc=18*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Kernel command line: ubi.mtd=rootfs root=mtd:ubi_rootfs rootfstype=squashfs rootwait uart_en=1 root=/dev/ubiblock0_0
[    0.000000] Unknown kernel command line parameters "uart_en=1", will be passed to user space.
[    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 0MB
[    0.000000] software IO TLB: area num 4.
[    0.000000] software IO TLB: SWIOTLB bounce buffer size roundup to 1MB
[    0.000000] software IO TLB: mapped [mem 0x000000005f4c0000-0x000000005f5c0000] (1MB)
[    0.000000] Memory: 413572K/524288K available (8576K kernel code, 922K rwdata, 1660K rodata, 1600K init, 293K bss, 110716K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] Root IRQ handler: 0xffffffc080010000
[    0.000000] GICv2m: range[mem 0x0b00a000-0x0b00affc], SPI[448:479]
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[    0.000000] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[    0.000112] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)
[    0.000126] pid_max: default: 32768 minimum: 301
[    0.005076] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
[    0.005090] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
[    0.009383] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.009608] rcu: Hierarchical SRCU implementation.
[    0.009612] rcu: 	Max phase no-delay instances is 1000.
[    0.010536] smp: Bringing up secondary CPUs ...
[    0.011214] Detected VIPT I-cache on CPU1
[    0.011325] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.011991] Detected VIPT I-cache on CPU2
[    0.012063] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.012736] Detected VIPT I-cache on CPU3
[    0.012803] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.012871] smp: Brought up 1 node, 4 CPUs
[    0.012880] SMP: Total of 4 processors activated.
[    0.012885] CPU features: detected: 32-bit EL0 Support
[    0.012890] CPU features: detected: CRC32 instructions
[    0.012950] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching
[    0.012956] CPU: All CPU(s) started at EL1
[    0.012959] alternatives: applying system-wide alternatives
[    0.023451] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.023477] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.025217] pinctrl core: initialized pinctrl subsystem
[    0.027298] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.027902] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
[    0.027942] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.027976] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.028396] thermal_sys: Registered thermal governor 'step_wise'
[    0.028458] cpuidle: using governor menu
[    0.028704] ASID allocator initialised with 65536 entries
[    0.035609] /soc@0/phy@84000/phy@84200: Fixed dependency cycle(s) with /soc@0/gcc@1800000
[    0.035692] /soc@0/gcc@1800000: Fixed dependency cycle(s) with /soc@0/phy@84000/phy@84200
[    0.036060] /soc@0/phy@84000: Fixed dependency cycle(s) with /soc@0/gcc@1800000
[    0.036077] /soc@0/phy@84000/phy@84200: Fixed dependency cycle(s) with /soc@0/gcc@1800000
[    0.038173] /soc@0/phy@84000/phy@84200: Fixed dependency cycle(s) with /soc@0/gcc@1800000
[    0.038257] /soc@0/phy@84000: Fixed dependency cycle(s) with /soc@0/gcc@1800000
[    0.038273] /soc@0/gcc@1800000: Fixed dependency cycle(s) with /soc@0/phy@84000/phy@84200
[    0.084168] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4
[    0.086345] Modules: 29456 pages in range for non-PLT usage
[    0.086352] Modules: 520976 pages in range for PLT usage
[    0.090000] SCSI subsystem initialized
[    0.090225] usbcore: registered new interface driver usbfs
[    0.090267] usbcore: registered new interface driver hub
[    0.090318] usbcore: registered new device driver usb
[    0.090767] qcom_scm: convention: smc arm 64
[    0.092568] clocksource: Switched to clocksource arch_sys_counter
[    0.096528] NET: Registered PF_INET protocol family
[    0.096694] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.099090] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.099110] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.099125] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.099173] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.099318] TCP: Hash tables configured (established 4096 bind 4096)
[    0.099819] MPTCP token hash table entries: 512 (order: 1, 12288 bytes, linear)
[    0.099995] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.100021] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.100320] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.100358] PCI: CLS 0 bytes, default 64
[    0.102145] workingset: timestamp_bits=46 max_order=17 bucket_order=0
[    0.102906] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.102914] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[    0.106763] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    0.113317] qcom-pcie 20000000.pci: host bridge /soc@0/pci@20000000 ranges:
[    0.113378] qcom-pcie 20000000.pci:       IO 0x0020200000..0x002020ffff -> 0x0000000000
[    0.113404] qcom-pcie 20000000.pci:      MEM 0x0020220000..0x002fffffff -> 0x0020220000
[    0.121273] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled
[    0.125450] msm_serial 78b3000.serial: msm_serial: detected port #0
[    0.125493] msm_serial 78b3000.serial: uartclk = 3686400
[    0.125854] 78b3000.serial: ttyMSM0 at MMIO 0x78b3000 (irq = 20, base_baud = 230400) is a MSM
[    0.125890] msm_serial: console setup on port #0
[    0.125933] printk: console [ttyMSM0] enabled
[    0.234123] qcom-pcie 20000000.pci: iATU: unroll T, 8 ob, 8 ib, align 4K, limit 1024G
[    0.235108] msm_serial: driver initialized
[    0.342580] qcom-pcie 20000000.pci: PCIe Gen.1 x1 link up
[    0.990314] qcom-pcie 20000000.pci: PCI host bridge to bus 0000:00
[    0.995354] pci_bus 0000:00: root bus resource [bus 00-ff]
[    1.001411] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    1.006897] pci_bus 0000:00: root bus resource [mem 0x20220000-0x2fffffff]
[    1.013088] pci 0000:00:00.0: [17cb:1002] type 01 class 0x060400
[    1.019914] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    1.026145] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    1.035692] pci 0000:01:00.0: [168c:0050] type 00 class 0x028000
[    1.038430] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]
[    1.044603] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    1.051514] pci 0000:01:00.0: supports D1
[    1.057841] pci 0000:01:00.0: PME# supported from D0 D1 D3hot
[    1.062408] pci 0000:00:00.0: BAR 8: assigned [mem 0x20300000-0x205fffff]
[    1.067487] pci 0000:00:00.0: BAR 0: assigned [mem 0x20220000-0x20220fff]
[    1.074260] pci 0000:01:00.0: BAR 0: assigned [mem 0x20400000-0x205fffff 64bit]
[    1.081073] pci 0000:01:00.0: BAR 6: assigned [mem 0x20300000-0x2030ffff pref]
[    1.088142] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[    1.095430] pci 0000:00:00.0:   bridge window [mem 0x20300000-0x205fffff]
[    1.103315] pcieport 0000:00:00.0: PME: Signaling with IRQ 22
[    1.107813] pcieport 0000:00:00.0: AER: enabled with IRQ 22
[    1.118960] loop: module loaded
[    1.120496] nand: device found, Manufacturer ID: 0xc8, Chip ID: 0xaa
[    1.121724] nand: ESMT GD9FS2G8F2A
[    1.128509] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 128
[    1.131961] 13 fixed-partitions partitions found on MTD device qcom_nand.0
[    1.139259] Creating 13 MTD partitions on "qcom_nand.0":
[    1.146041] 0x000000000000-0x000000100000 : "0:sbl1"
[    1.152932] 0x000000100000-0x000000200000 : "0:mibib"
[    1.157706] 0x000000200000-0x000000500000 : "0:qsee"
[    1.164109] 0x000000500000-0x000000580000 : "0:devcfg"
[    1.167275] 0x000000580000-0x000000600000 : "0:rpm"
[    1.172292] 0x000000600000-0x000000680000 : "0:cdt"
[    1.177358] 0x000000680000-0x000000700000 : "0:appsblenv"
[    1.181879] 0x000000700000-0x000000800000 : "0:appsbl"
[    1.188019] 0x000000800000-0x000000880000 : "0:art"
[    1.192620] OF: Bad cell count for /soc@0/nand-controller@79b0000/nand@0/partitions
[    1.196738] 0x000000880000-0x000000900000 : "bdata"
[    1.204991] 0x000000900000-0x000000a00000 : "pstore"
[    1.210196] 0x000000a00000-0x000002dc0000 : "ubi_kernel"
[    1.242027] 0x000002dc0000-0x000010000000 : "rootfs"
[    1.404695] mtd: setting mtd12 (rootfs) as root device
[    1.405015] mtdsplit: no squashfs found in "rootfs"
[    1.414635] spmi spmi-0: PMIC arbiter version v2 (0x20010000)
[    1.434420] i2c_dev: i2c /dev entries driver
[    1.440919] sdhci: Secure Digital Host Controller Interface driver
[    1.440959] sdhci: Copyright(c) Pierre Ossman
[    1.446015] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.452411] remoteproc remoteproc0: releasing cd00000.q6v5_wcss
[    1.459963] NET: Registered PF_INET6 protocol family
[    1.463077] Segment Routing with IPv6
[    1.467042] In-situ OAM (IOAM) with IPv6
[    1.470629] NET: Registered PF_PACKET protocol family
[    1.474627] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    1.479821] 8021q: 802.1Q VLAN Support v1.8
[    1.526029] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4
[    1.526393] cpr4_ipq807x_apss_read_fuse_data: apc_corner: speed bin = 0
[    1.532157] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR fusing revision = 1
[    1.538805] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0
[    1.546431] cpr4_ipq807x_apss_read_fuse_data: apc_corner: Voltage boost fuse config = 0 boost = disable
[    1.553939] cpr3_mem_acc_init: apc: not using memory accelerator regulator
[    1.563066] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused      SVS: open-loop= 704000 uV
[    1.570009] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused      NOM: open-loop= 816000 uV
[    1.580006] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused    TURBO: open-loop= 880000 uV
[    1.589808] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused   STURBO: open-loop= 968000 uV
[    1.599669] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused      SVS: quot[ 7]= 709, quot_offset[ 7]=   0
[    1.609429] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused      NOM: quot[ 7]= 920, quot_offset[ 7]= 210
[    1.620289] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused    TURBO: quot[ 7]=1030, quot_offset[ 7]= 110
[    1.631215] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused   STURBO: quot[ 7]=1186, quot_offset[ 7]= 155
[    1.642385] cpr3_regulator_init_ctrl: apc: Default CPR mode = closed-loop
[    1.645102] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 800000 KHz, changing to: 1017600 KHz
[    1.661955] remoteproc remoteproc0: cd00000.q6v5_wcss is available
[    1.671042] ubi0: attaching mtd12
[    2.292576] random: crng init done
[    2.615105] ubi0: scanning is finished
[    2.622228] ubi0: attached mtd12 (name "rootfs", size 210 MiB)
[    2.622274] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
[    2.626992] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
[    2.633833] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
[    2.640681] ubi0: good PEBs: 1682, bad PEBs: 0, corrupted PEBs: 0
[    2.647455] ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128
[    2.653713] ubi0: max/mean erase counter: 16/10, WL threshold: 4096, image sequence number: 316992044
[    2.660825] ubi0: available PEBs: 0, total reserved PEBs: 1682, PEBs reserved for bad PEB handling: 40
[    2.670128] ubi0: background thread "ubi_bgt0d" started, PID 627
[    2.679878] block ubiblock0_0: created from ubi0:0(rootfs)
[    2.685596] clk: Disabling unused clocks
[    2.693902] VFS: Mounted root (squashfs filesystem) readonly on device 254:0.
[    2.694683] Freeing unused kernel memory: 1600K
[    2.700233] Run /sbin/init as init process
[    2.704373]   with arguments:
[    2.704376]     /sbin/init
[    2.704379]   with environment:
[    2.704381]     HOME=/
[    2.704384]     TERM=linux
[    2.704386]     uart_en=1
[    2.877776] init: Console is alive
[    2.877916] init: - watchdog -
[    3.469689] kmodloader: loading kernel modules from /etc/modules-boot.d/*
[    3.503677] gpio_button_hotplug: loading out-of-tree module taints kernel.
[    3.542691] ssdk_dt_parse_interrupt[941]:INFO:intr-gpio does not exist
[    3.968726] regi_init[2525]:INFO:Initializing HPPE Done!!
[    3.968866] regi_init[2574]:INFO:qca-ssdk module init succeeded!
[    3.975603] EDMA ver 1 hw init
[    3.979417] EDMA HW Reset completed succesfully
[    3.982086] Num rings - TxDesc:1 (23-23) TxCmpl:1 (7-7)
[    3.986502] RxDesc:1 (15-15) RxFill:1 (7-7)
[    3.992107] dp2: ppe offload disabled: 0 for macid 2
[    3.995878] dp2: Switch attached to macid 2 status: 0
[    4.193342] Qualcomm QCA8075 90000.mdio-1:01: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:01, irq=POLL)
[    4.194354] dp3: ppe offload disabled: 0 for macid 3
[    4.202232] dp3: Switch attached to macid 3 status: 0
[    4.282925] Qualcomm QCA8075 90000.mdio-1:02: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:02, irq=POLL)
[    4.283959] dp4: ppe offload disabled: 0 for macid 4
[    4.291832] dp4: Switch attached to macid 4 status: 0
[    4.372933] Qualcomm QCA8075 90000.mdio-1:03: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:03, irq=POLL)
[    4.373925] dp5: ppe offload disabled: 0 for macid 5
[    4.381824] dp5: Switch attached to macid 5 status: 0
[    4.462928] Qualcomm QCA8075 90000.mdio-1:04: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:04, irq=POLL)
[    4.463898] **********************************************************
[    4.471822] * NSS Data Plane driver
[    4.478354] **********************************************************
[    4.492479] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
[    4.493431] init: - preinit -
[    8.232727] nss-dp 3a001400.dp3 lan1: PHY Link up speed: 1000
[    9.401421] UBIFS (ubi0:1): Mounting in unauthenticated mode
[    9.401572] UBIFS (ubi0:1): background thread "ubifs_bgt0_1" started, PID 836
[    9.430552] UBIFS (ubi0:1): recovery needed
[    9.551370] UBIFS (ubi0:1): recovery completed
[    9.551520] UBIFS (ubi0:1): UBIFS: mounted UBI device 0, volume 1, name "rootfs_data"
[    9.554742] UBIFS (ubi0:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
[    9.562635] UBIFS (ubi0:1): FS size: 198336512 bytes (189 MiB, 1562 LEBs), max 1574 LEBs, journal size 9904128 bytes (9 MiB, 78 LEBs)
[    9.572528] UBIFS (ubi0:1): reserved for root: 4952683 bytes (4836 KiB)
[    9.584507] UBIFS (ubi0:1): media format: w5/r0 (latest is w5/r0), UUID E1726771-35CA-42D3-B06A-775E6DDE3183, small LPT model
[    9.594888] mount_root: switching to ubifs overlay
[    9.605489] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off.
[    9.611388] urandom-seed: Seeding with /etc/urandom.seed
[    9.672645] nss-dp 3a001400.dp3 lan1: PHY Link is down
[    9.680407] procd: - early -
[    9.680518] procd: - watchdog -
[   10.239042] procd: - watchdog -
[   10.240445] procd: - ubus -
[   10.313168] procd: - init -
[   10.677958] kmodloader: loading kernel modules from /etc/modules.d/*
[   10.819196] Loading modules backported from Linux version v6.12.6-0-ge9d65b48ce1a
[   10.819241] Backport generated by backports.git v6.1.110-1-35-g410656ef04d2
[   10.830899] NET: Registered PF_QIPCRTR protocol family
[   10.906344] urngd: v1.0.2 started.
[   10.918370] ath10k 6.10 driver, optimized for CT firmware, probing pci device: 0x50.
[   10.918925] ath10k_pci 0000:01:00.0: enabling device (0000 -> 0002)
[   10.925659] ath10k_pci 0000:01:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
[   11.751955] ath10k_pci 0000:01:00.0: qca9887 hw1.0 target 0x4100016d chip_id 0x004000ff sub 0000:0000
[   11.752014] ath10k_pci 0000:01:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0
[   11.760369] ath10k_pci 0000:01:00.0: firmware ver 10.1-ct-87-__fW-022-ecad3248 api 2 features wmi-10.x,has-wmi-mgmt-tx,mfp,txstatus-noack,wmi-10.x-CT,ratemask-CT,txrate-CT,get-temp-CT,tx-rc-CT,cust-stats-CT,retry-gt2-CT,txrate2-CT,beacon-cb-CT,wmi-block-ack-CT crc32 61a92df5
[   11.796121] ath10k_pci 0000:01:00.0: board_file api 2 bmi_id N/A crc32 b4ce36fa
[   12.662766] ath10k_pci 0000:01:00.0: 10.1 wmi init: vdevs: 16  peers: 127  tid: 256
[   12.669728] ath10k_pci 0000:01:00.0: wmi print 'P 128 V 8 T 410'
[   12.669775] ath10k_pci 0000:01:00.0: wmi print 'msdu-desc: 1424  sw-crypt: 0 ct-sta: 0'
[   12.675527] ath10k_pci 0000:01:00.0: wmi print 'alloc rem: 25560 iram: 24780'
[   12.723046] ath10k_pci 0000:01:00.0: htt-ver 2.1 wmi-op 2 htt-op 2 cal nvmem max-sta 128 raw 0 hwcrypto 1
[   12.723453] ath10k_pci 0000:01:00.0: NOTE:  Firmware DBGLOG output disabled in debug_mask: 0x10000000
[   12.863851] ath: EEPROM regdomain: 0x0
[   12.863861] ath: EEPROM indicates default country code should be used
[   12.863864] ath: doing EEPROM country->regdmn map search
[   12.863870] ath: country maps to regdmn code: 0x3a
[   12.863874] ath: Country alpha2 being used: US
[   12.863879] ath: Regpair used: 0x3a
[   12.974548] ath11k c000000.wifi: ipq8074 hw2.0
[   12.974590] ath11k c000000.wifi: FW memory mode: 1
[   13.100603] remoteproc remoteproc0: powering up cd00000.q6v5_wcss
[   13.101150] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668
[   14.353948] remoteproc remoteproc0: remote processor cd00000.q6v5_wcss is now up
[   14.398156] ath11k c000000.wifi: qmi ignore invalid mem req type 3
[   14.405607] ath11k c000000.wifi: chip_id 0x0 chip_family 0x0 board_id 0xff soc_id 0xffffffff
[   14.405642] ath11k c000000.wifi: fw_version 0x290b84a5 fw_build_timestamp 2024-09-23 11:32 fw_build_id WLAN.HK.2.9.0.1-02146-QCAHKSWPL_SILICONZ-1
[   19.591192] remoteproc remoteproc0: stopped remote processor cd00000.q6v5_wcss
[   19.591239] remoteproc remoteproc0: powering up cd00000.q6v5_wcss
[   19.597406] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668
[   19.951172] remoteproc remoteproc0: remote processor cd00000.q6v5_wcss is now up
[   19.952937] kmodloader: done loading kernel modules from /etc/modules.d/*
[   19.995118] ath11k c000000.wifi: qmi ignore invalid mem req type 3
[   20.002532] ath11k c000000.wifi: chip_id 0x0 chip_family 0x0 board_id 0xff soc_id 0xffffffff
[   20.002649] ath11k c000000.wifi: fw_version 0x290b84a5 fw_build_timestamp 2024-09-23 11:32 fw_build_id WLAN.HK.2.9.0.1-02146-QCAHKSWPL_SILICONZ-1
[   20.175353] ath11k c000000.wifi: htt event 48 not handled
[   22.244719] br-lan: port 1(lan1) entered blocking state
[   22.244769] br-lan: port 1(lan1) entered disabled state
[   22.248815] nss-dp 3a001400.dp3 lan1: entered allmulticast mode
[   22.254350] nss-dp 3a001400.dp3 lan1: entered promiscuous mode
[   22.276715] br-lan: port 2(lan2) entered blocking state
[   22.276772] br-lan: port 2(lan2) entered disabled state
[   22.280815] nss-dp 3a001600.dp4 lan2: entered allmulticast mode
[   22.287087] nss-dp 3a001600.dp4 lan2: entered promiscuous mode
[   22.297521] br-lan: port 3(lan3) entered blocking state
[   22.297783] br-lan: port 3(lan3) entered disabled state
[   22.303040] nss-dp 3a001800.dp5 lan3: entered allmulticast mode
[   22.308643] nss-dp 3a001800.dp5 lan3: entered promiscuous mode
[   22.703734] ath: EEPROM regdomain: 0x8114
[   22.703779] ath: EEPROM indicates we should expect a country code
[   22.706739] ath: doing EEPROM country->regdmn map search
[   22.712875] ath: country maps to regdmn code: 0x37
[   22.718196] ath: Country alpha2 being used: DE
[   22.722848] ath: Regpair used: 0x37
[   22.727220] ath: regdomain 0x8114 dynamically updated by user
[   24.280353] br-lan: port 4(phy2-ap0) entered blocking state
[   24.280402] br-lan: port 4(phy2-ap0) entered disabled state
[   24.284866] ath11k c000000.wifi phy2-ap0: entered allmulticast mode
[   24.290529] ath11k c000000.wifi phy2-ap0: entered promiscuous mode
[   24.431859] br-lan: port 5(phy1-ap0) entered blocking state
[   24.431906] br-lan: port 5(phy1-ap0) entered disabled state
[   24.436354] ath11k c000000.wifi phy1-ap0: entered allmulticast mode
[   24.442050] ath11k c000000.wifi phy1-ap0: entered promiscuous mode
[   24.448230] br-lan: port 5(phy1-ap0) entered blocking state
[   24.454329] br-lan: port 5(phy1-ap0) entered forwarding state
[   25.352722] br-lan: port 5(phy1-ap0) entered disabled state
[   25.352760] nss-dp 3a001400.dp3 lan1: PHY Link up speed: 1000
[   25.357609] br-lan: port 1(lan1) entered blocking state
[   25.363037] br-lan: port 1(lan1) entered forwarding state
[   27.018351] br-lan: port 4(phy2-ap0) entered blocking state
[   27.018402] br-lan: port 4(phy2-ap0) entered forwarding state
[   27.394286] br-lan: port 6(phy2-ap1) entered blocking state
[   27.394342] br-lan: port 6(phy2-ap1) entered disabled state
[   27.398721] ath11k c000000.wifi phy2-ap1: entered allmulticast mode
[   27.404548] ath11k c000000.wifi phy2-ap1: entered promiscuous mode
[   27.412055] br-lan: port 6(phy2-ap1) entered blocking state
[   27.416753] br-lan: port 6(phy2-ap1) entered forwarding state
[   27.422483] br-lan: port 6(phy2-ap1) entered disabled state
[   27.431170] ath11k c000000.wifi phy2-ap1: left allmulticast mode
[   27.433540] ath11k c000000.wifi phy2-ap1: left promiscuous mode
[   27.439840] br-lan: port 6(phy2-ap1) entered disabled state
[   27.505467] br-lan: port 6(phy2-ap1) entered blocking state
[   27.505528] br-lan: port 6(phy2-ap1) entered disabled state
[   27.510016] ath11k c000000.wifi phy2-ap1: entered allmulticast mode
[   27.515669] ath11k c000000.wifi phy2-ap1: entered promiscuous mode
[   27.521776] br-lan: port 6(phy2-ap1) entered blocking state
[   27.527935] br-lan: port 6(phy2-ap1) entered forwarding state
[   33.112627] l11: disabling
[  627.773580] br-lan: port 5(phy1-ap0) entered blocking state
[  627.773631] br-lan: port 5(phy1-ap0) entered forwarding state
[  628.184486] br-lan: port 7(phy1-ap1) entered blocking state
[  628.184537] br-lan: port 7(phy1-ap1) entered disabled state
[  628.188924] ath11k c000000.wifi phy1-ap1: entered allmulticast mode
[  628.194775] ath11k c000000.wifi phy1-ap1: entered promiscuous mode
[  628.203534] br-lan: port 7(phy1-ap1) entered blocking state
[  628.206941] br-lan: port 7(phy1-ap1) entered forwarding state
[  628.215450] ath11k c000000.wifi phy1-ap1: left allmulticast mode
[  628.218352] ath11k c000000.wifi phy1-ap1: left promiscuous mode
[  628.224522] br-lan: port 7(phy1-ap1) entered disabled state
[  628.305713] br-lan: port 7(phy1-ap1) entered blocking state
[  628.305769] br-lan: port 7(phy1-ap1) entered disabled state
[  628.310317] ath11k c000000.wifi phy1-ap1: entered allmulticast mode
[  628.315971] ath11k c000000.wifi phy1-ap1: entered promiscuous mode
[  628.322355] br-lan: port 7(phy1-ap1) entered blocking state
[  628.328217] br-lan: port 7(phy1-ap1) entered forwarding state

In the meantime, thanks for your patience.

Do you notice any changes after the 60 seconds (DFS delay)?

You have the opportunity to test the thing asked in this post:

I have wait more than 15 minutes.

Crazy.
switch encryption to psk2 solve the problem with the regulatory database.

I would like to use WPA3 if possible.
Is there a fallback to wpa2 for clients that does not support wpa3, when i use encryption 'sae'

1 Like

No.

You can set up a parallel said with WPA2, but then there's no point in using WPA3 at all.

1 Like

why isn't there an error/warning about this somewhere?

2 Likes