Coder Social home page Coder Social logo

udm-kernel-tools's Introduction

udm-kernel-tools Release

Tools for bootstrapping custom Linux kernels on the Ubiquiti UniFi Dream Machine (Pro).

Introduction

The Ubiquiti UniFi Dream Machine (UDM) and UDM Pro are a class of all-in-one network appliances built by Ubiquiti. These devices are powered by UbiOS, which uses Linux kernel under the hood.

However, the stock kernel on these devices lacks some important functionality needed for common use-cases (such as WireGuard as VPN or multicast routing support for IPTV). In many cases, this functionality can be enabled with a custom Linux kernel.

This repository provides tools to bootstrap a custom Linux kernel on the UDM/P. To prevent bricking your device, this tool does not overwrite the firmware of the device. Instead, it boots directly into the custom kernel from the stock kernel using kexec (see How it works).

Use-cases

There are currently several use-cases for using a custom kernel on the UniFi Dream Machine (Pro). These use-cases include:

  1. In-kernel WireGuard support
    Although you can already run a WireGuard server on your UDM/P using wireguard-go (see udm-utilities), its performance will be reduced due to it running in user-space. A custom kernel enables your WireGuard VPN server to utilize the kernel implementation and run at full speed.
  2. Multicast routing support
    The stock kernel of the UDM/P does not support multicast routing which is needed for running igmpproxy. In turn, igmpproxy is needed to route multicast traffic between WAN and LAN, which is necessary for IPTV. See the following guide for more information.
  3. Early boot modifications
    Since changes to root filesystem on the UDM/P are non-persistent. It is not possible with the stock kernel to perform modification to the early boot process (since the on-boot-script only runs after UniFi OS is started). This project enables you to modify the root filesystem before UbiOS is started. See Overriding files on root pre-boot for more information.

Getting Started

Disclaimer

Although these tools do not modify any firmware on your device, using them might lead to system instability or data loss. Make sure you know what you are doing and ensure you have a backup! I take no responsibility for any damage that might occur as result of using this project.

Entering UniFi OS

To start, SSH into your UniFi Dream Machine (Pro) and enter the UniFi OS shell as follows:

unifi-os shell

Installing udm-kernel-tools

Select from the Releases page the package version you want to install and download the selected Debian package, for instance:

wget https://github.com/fabianishere/udm-kernel-tools/releases/download/v1.1.7/udm-kernel-tools_1.1.7_arm64.deb
apt install ./udm-kernel-tools_1.1.7_arm64.deb

Installing a custom kernel

To obtain and install a custom Linux kernel for the UniFi Dream Machine (Pro), visit the udm-kernel repository. This repository contains instructions for installing the pre-built kernels as well as instructions for building custom kernels yourself.

Booting into a custom kernel

First, list the kernels you have installed on your system as follows:

udm-bootctl list

Booting into a custom kernel is then done as follows:

udm-bootctl boot KERNEL_VERSION

Alternatively, you may specify the path to the kernel image. Note that after executing this command, the SSH connection might become unresponsive or might even be killed with an error message. This is expected behavior and after a minute, you should be able to log back into your device via SSH.

Once the system is back online, verify that you are running the correct kernel:

uname -a

Auto-booting into the custom kernel

Since the custom kernel does not persist across reboots due to the use of kexec, you need to perform the boot procedure after every reboot. We provide a udm-autoboot.service to automate this process.

First, select the default kernel you want to boot into:

udm-bootctl set-default KERNEL_VERSION

Then, enable the udm-autoboot.service to run during system startup:

systemctl enable udm-autoboot.service

Disabling auto-boot
To disable this functionality again, run the following command:

systemctl disable udm-autoboot.service

Overriding files on root pre-boot

Some users may wish to modify files on the root filesystem before UniFi OS boots (e.g., to hook into the early boot process). In order to facilitate this, udm-kernel-tools allows users to override files from the root filesystem using an overlay located at /mnt/data/udm-kernel-tools/root,

The overlay filesystem will be mounted only after running mkdir -p /overlay/root_ro/mnt/data/udm-kernel-tools/root from within the UniFi OS shell or when running mkdir -p /data/udm-kernel-tools/root from outside UniFi OS.

Note that changes to this directory only appear on the root filesystem after reboot.

Restoring the stock kernel

If you are running a custom kernel and wish to return the stock kernel, simply reboot the device (from UbiOS):

reboot

Removing udm-kernel-tools

To remove udm-kernel-tools and the custom kernels you have installed, run the following command in UniFi OS:

apt remove 'udm-kernel*'

This will remove the artifacts on your device related to this project.

Compatibility

Since the project requires firmware-specific binaries (e.g., kernel modules), you possibly need to upgrade the tools after you have upgraded to a new firmware version. Currently, the releases of this project support the following firmware versions:

  • 1.8.6
  • 1.9.3
  • 1.10.0
  • 1.10.4
  • 1.11.0
  • 1.11.4
  • 1.12.22
  • 1.12.30
  • 1.12.33

To build the project for custom firmware versions, please refer to the Maintenance Guide.

Troubleshooting

Below is a non-exhaustive list of issues that might occur while using these tools. Please check these instructions before reporting an issue on issue tracker.

Device reboots into stock kernel
When your device still reports after the boot procedure that it is running the stock kernel, check the logs for errors:

# Check ramoops
cat /sys/fs/pstore/*
# Check kernel log
dmesg

Device appears to be stuck
When you cannot connect to your device a few minutes after performing the boot procedure, the device might be stuck. Power cycle the device to restore the stock kernel.

SSH session exits with error after boot command
After executing the boot command, your SSH connection might become unresponsive or even exit with an error message. This is expected behavior, and you should be able to log back in to your device after a minute.

Contributing

Questions, suggestions and contributions are welcome and appreciated! You can contribute in various meaningful ways:

  • Report a bug through Github issues.
  • Propose and document use-cases for using this project.
  • Contribute improvements to the documentation.
  • Provide feedback about how we can improve the project.
  • Help answer questions on our Discussions page.

Advanced users may also be interested in the Maintenance Guide.

How it works

Bootstrapping a custom Linux kernel on the UDM/P is not trivial. By default, UniFi OS restricts user capabilities on Linux significantly, to such an extent that even changes to the root filesystem are not persistent without a workaround.

Although udm-unlock can be used to overwrite the kernel boot image or root filesystem, such an approach is fragile and might lead to a bricked device.

To prevent touching the UDM/P firmware for booting a custom Linu kernel, we can employ Linux' kexec functionality, which enables Linux to act as a second stage bootloader for a custom kernel.

Since kexec is not supported natively by the stock kernel running on the UDM/P, I have backported this functionality as a loadable kernel module. These tools use the kexec backport to load a custom kernel into memory and boot directly into the custom kernel. With this, we do not need to modify the device firmware and in case of issues, we can simply power-cycle the device.

While we can now boot into a custom Linux kernel, we will find that UbiOS requires several proprietary kernel modules to properly function. To address this issue, during the initramfs phase, we prepare a workaround that force-inserts the proprietary modules into the kernel, even when the versions do not match (see here for the implementation).

License

The code is released under the GPLv2 license. See COPYING.txt.

udm-kernel-tools's People

Contributors

bennettp123 avatar fabianishere avatar gaffneyd4 avatar gatesry avatar iandrewt avatar jeremyashton avatar telnetdoogie avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

udm-kernel-tools's Issues

Prevent restarting unifi-os from rebooting UDM again

Currently, a restart of unifi-os seems to reboot the whole system, as soon as it's loaded again. This is expected because of the auto start by udm-kernel-tools. However, this probably should not happen if the custom kernel was already loaded previously.
(Maybe add a config option or just always check that the custom kernel is not already loaded before rebooting the whole system with the custom kernel?)

Custom kernel not booting

I just tried to change to the custom kernel on my UDMPRO running firmware 1.9.3, but when booting it I get an error:

root@ubnt:/# udm-bootctl list
Version                                 	Initrd
4.1.37-edge2                            	yes
root@ubnt:/# udm-bootctl boot 4.1.37-edge2
Loading kernel 4.1.37-edge2...
Inserting kexec kernel modules...
Triggering system boot...
root@ubnt:/# 
root@ubnt:/# uname -a
Linux ubnt 4.1.37-v1.9.3.3438-50c9676 #1 SMP Thu Apr 1 11:37:27 UTC 2021 aarch64 GNU/Linux
root@ubnt:/# Error: non zero exit code: 129: OCI runtime error
# client_loop: send disconnect: Broken pipe

After this the UDMPRO reboots to the stock kernel.

What could I do to get it running?

Issues with UDB and 1.11 firmware

I've followed the guide, updating to the beta 1.11 firmware rather than using the custom kernel, but after going through all the steps its not working.

sh -c "$(curl -s https://raw.githubusercontent.com/fabianishere/udm-kernel-too

ls/master/docs/iptv/install.sh)"
What is your WAN port?

  1. eth4 (WAN 1)
    Enter WAN port [default: eth4]: 1
    Is IPTV traffic carried over a separate VLAN? ([Y]es or [N]o): n
    Which WAN interface carries your network traffic?
    1: eth4 [IPv4 Address: None]
    2: ppp0 [IPv4 Address: ]
    Enter WAN interface [default: eth4]: 2
    Which addresses are used for IPTV traffic?
    Enter WAN ranges [default: 213.75.0.0/16 217.166.0.0/16]: 109.159.247.0/24 224.0.0.0/4
    Which LANs are allowed to receive IPTV traffic?
    1: br0 [IPv4 Address: 192.168.0.1]
    2: br2 [IPv4 Address: 192.168.10.1]
    3: br3 [IPv4 Address: 192.168.2.1]
    Enter LAN interfaces separated by spaces [default: br0]: 1
    Generated the following configuration:
    WAN Interface: ppp0
    IPTV VLAN (WAN): 0
    IPTV Ranges (WAN): 109.159.247.0/24 224.0.0.0/4
    LAN Interfaces: br0
    IPTV boot script successfully installed at /mnt/data/on_boot.d/15-iptv.sh
    See https://github.com/fabianishere/udm-kernel-tools/blob/master/docs/iptv.md for more information
    Should the container be started immediately? ([Y]es or [N]o): y
    Starting container...
    d65894fa838838d6075c3a96cde3da726daf449f5f0bd0baacdf8ad0dbd76ded
    WARNING: The same type, major and minor should not be used for multiple devices.
    WARNING: The same type, major and minor should not be used for multiple devices.
    WARNING: The same type, major and minor should not be used for multiple devices.
    WARNING: The same type, major and minor should not be used for multiple devices.
    WARNING: The same type, major and minor should not be used for multiple devices.
    WARNING: The same type, major and minor should not be used for multiple devices.
    WARNING: The same type, major and minor should not be used for multiple devices.
    ee4b5dd6778aa20b154ef2b203c1e6a13725d644d5063b5a8a4fb9fe82435bb3
    udm-iptv: NATing IPTV network ranges (if necessary)...
    iptables: No chain/target/match by that name.
    udm-iptv: Setting up igmpproxy..
    udm-iptv: Starting igmpproxy..

Running the debugging/troubleshooting commands ends up with the following;

ip route list

dev ppp0 proto kernel scope link src 86.166.7.17
192.168.0.0/24 dev br0 proto kernel scope link src 192.168.0.1
192.168.2.0/24 dev br3 proto kernel scope link src 192.168.2.1
192.168.10.0/24 dev br2 proto kernel scope link src 192.168.10.1

ip -4 addr show dev iptv

Device "iptv" does not exist.

Any idea where its going wrong?

WAN Port on UDM/B

Thanks for this guide, and the work you've put into this. I've just been running through and have noticed that the WAN port for the UDM base model is set to port 4, but i think this should be port 5 by default

KPN IPTV not working

I followed your manual about iptv but I can't get it to work.

I have a UDMP with firmware 1.9.3 and kernel 4.1.37-edge2.
I connected the NTU to eth8 (WAN1).
Setting up the internet connection on VLAN6 is working fine. eth8.6 is created and I have internet.

After creating the 2 scripts and making them executable I run /mnt/data/on_boot.d/10-iptv.sh and get the following output.

udhcpc: started, v1.31.1 
udhcpc: sending discover
udhcpc: sendto: Network is down
udhcpc: read error: Network is down, reopening socket
udhcpc: sending discover
udhcpc: sendto: Network is down
udhcpc: read error: Network is down, reopening socket
udhcpc: sending discover
udhcpc: sendto: Network is down
udhcpc: read error: Network is down, reopening socket
udhcpc: read error: Network is down, reopening socket
udhcpc: read error: Network is down, reopening socket
udhcpc: read error: Network is down, reopening socket

if I look at all the interfaces with ifconfig then I don't see eth8.4. Only eth8 and eth8.6

What can I do to make it work?

Readlink no such file directory

Hi,

after a power issue in our street i had to restart UDM Pro and USW 24 PPOE afterwards.
No i cant start the container. I'm receiving:

/mnt/data/on_boot.d/15-iptv.sh

Error: readlink /mnt/data/podman/storage/overlay/l/N5TJ7CXNQ7LGPBPW3ADLQKP5T2: no such file or directory

`IPTV_WAN_INTERFACE="ppp0"
IPTV_WAN_RANGES="213.75.0.0/16 217.166.0.0/16"
IPTV_WAN_VLAN="0"
IPTV_WAN_DHCP_OPTIONS="-O staticroutes -V IPTV_RG"
IPTV_LAN_INTERFACES="br0"

if podman container exists iptv; then
podman rm -f iptv
fi
podman run --network=host --privileged
--name iptv -i -d --restart on-failure:5
-e IPTV_WAN_INTERFACE="$IPTV_WAN_INTERFACE"
-e IPTV_WAN_RANGES="$IPTV_WAN_RANGES"
-e IPTV_WAN_VLAN="$IPTV_WAN_VLAN"
-e IPTV_WAN_DHCP_OPTIONS="$IPTV_WAN_DHCP_OPTIONS"
-e IPTV_LAN_INTERFACES="$IPTV_LAN_INTERFACES"
-e IPTV_LAN_RANGES=""
fabianishere/udm-iptv`

Container List:

podman ps

CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
848fcedf3a37 localhost/unifi-os:latest /sbin/init 15 minutes ago Up 15 minutes ago unifi-os

Its also not possible to reinstall the iptv, i'm receving the same errors.

df -h
Filesystem Size Used Available Use% Mounted on
/dev/root 638.1M 638.1M 0 100% /overlay/root_ro
devtmpfs 1.9G 0 1.9G 0% /dev
tmpfs 1.9G 392.0K 1.9G 0% /overlay/rw
ram-overlay 1.9G 392.0K 1.9G 0% /
tmpfs 1.9G 100.0K 1.9G 0% /dev/shm
tmpfs 1.9G 1.1M 1.9G 0% /tmp
tmpfs 1.9G 416.0K 1.9G 0% /run
/dev/sda6 12.2G 1.9G 9.7G 16% /mnt/data
/dev/sda4 120.0M 1.5M 109.5M 1% /mnt/persistent
/dev/sda6 12.2G 1.9G 9.7G 16% /mnt/data/podman/storage/overlay
shm 62.5M 8.0K 62.5M 0% /mnt/data/podman/storage/overlay-containers/848fcedf3a371a30b6db67a207ff04c4cbd8b6f8a2bacf255aaf75d52cb0fc20/userdata/shm
overlay 12.2G 1.9G 9.7G 16% /mnt/data/podman/storage/overlay/86be0e208e2b326e3974f7b5d1dc7c0dc05373ed091e63c4476f11b56a79fa0d/merged

Thank you
Matt

Solcon IPTV not working

It seems that everything works until the UDM.

Only the IPTV decoder is not coming up automatically on the right network, when I force this it seems that the IPTV decoder is connected to the internet instead of the IPTV network.
I have absolutely no idea what is going wrong. Hopefully someone can help me out.

Internet does not need a VLAN and goes via DHCP
IPTV VLAN 188
Route to 10.0.0.0/8
IP Range 10.232.0.0/16 10.233.0.0/16

15-iptvs.sh:

IPTV_WAN_INTERFACE="eth4"
IPTV_WAN_RANGES="10.252.0.0/16 10.253.0.0/16"
IPTV_WAN_VLAN="188"
IPTV_WAN_DHCP_OPTIONS="-O staticroutes -V IPTV_RG"
IPTV_LAN_INTERFACES="br50"
IPTV_LAN_RANGES=""

if podman container exists iptv; then
podman rm -f iptv
fi
podman run --network=host --privileged
--name iptv -i -d --restart on-failure:5
-e IPTV_WAN_INTERFACE="$IPTV_WAN_INTERFACE"
-e IPTV_WAN_RANGES="$IPTV_WAN_RANGES"
-e IPTV_WAN_VLAN="$IPTV_WAN_VLAN"
-e IPTV_WAN_DHCP_OPTIONS="$IPTV_WAN_DHCP_OPTIONS"
-e IPTV_LAN_INTERFACES="$IPTV_LAN_INTERFACES"
-e IPTV_LAN_RANGES="$IPTV_LAN_RANGES"
fabianishere/udm-iptv -d -
Afbeelding1
Afbeelding2
Afbeelding3
v

Support for UDM SE

Hi,

I wanted to install a custom kernel for the UDMSE (version 2.5.11), however, it seems to fail:

root@FW:~# uname -a
Linux FW 4.19.152-ui-alpine #4.19.152 SMP Mon Aug 1 14:24:56 CST 2022 aarch64 GNU/Linux
root@FW:~#  cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 9 (stretch)"
NAME="Debian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
VERSION_CODENAME=stretch
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
root@FW:~# udm-bootctl list
Version                                 	Initrd
4.19.152-edge4                          	yes
root@FW:~# udm-bootctl boot 4.19.152-edge4
/usr/bin/udm-bootctl: line 193: ssh-proxy: command not found

I assume this is due to the new 'major' UniFi-OS version, as the UDM and UDMP are at 1.12.30, while the UDMSE and UDR are at 2.5.11. However, I was unable to find any documentation on this - is there any?

Thank you!

Custom kernel not loading

Installed the tool and kernel, and then try to boot the custom kernel.

root@ubnt:/# udm-bootctl list
Version                                         Initrd
4.19.152-edge1 (default)                        yes
root@ubnt:/# uname -a
Linux ubnt 4.19.152-al-linux-v10.2.0-v1.10.0.3686-a2edd0c #1 SMP Fri Jul 9 03:16:50 UTC 2021 aarch64 GNU/Linux
root@ubnt:/# udm-bootctl boot 4.19.152-edge1
Loading kernel 4.19.152-edge1...
Inserting kexec kernel modules...
Triggering system boot...
root@ubnt:/# Error: non zero exit code: 129: OCI runtime error

After reboot, it still runs the stock kernel. Tried multiple times, no luck.

root@ubnt:/# uname -a
Linux ubnt 4.19.152-al-linux-v10.2.0-v1.10.0.3686-a2edd0c #1 SMP Fri Jul 9 03:16:50 UTC 2021 aarch64 GNU/Linux

Troubleshooting

root@ubnt:/# cat /sys/fs/pstore/*
cat: '/sys/fs/pstore/*': No such file or directory
root@ubnt:/# dmesg
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd073]
[    0.000000] Linux version 4.19.152-al-linux-v10.2.0-v1.10.0.3686-a2edd0c (builder@link-xenial-builder) (gcc version 6.4.0 (Buildroot 0.9.0.0)) #1 SMP Fri Jul 9 03:16:50 UTC 2021
[    0.000000] Machine model: Annapurna Labs Alpine V2 UBNT
[    0.000000] efi: Getting EFI parameters from FDT:
[    0.000000] efi: UEFI not found.
[    0.000000] On node 0 totalpages: 524287
[    0.000000]   DMA32 zone: 8192 pages used for memmap
[    0.000000]   DMA32 zone: 0 pages reserved
[    0.000000]   DMA32 zone: 524287 pages, LIFO batch:63
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv0.2 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] random: get_random_bytes called from start_kernel+0xb0/0x45c with crng_init=0
[    0.000000] percpu: Embedded 22 pages/cpu s49944 r8192 d31976 u90112
[    0.000000] pcpu-alloc: s49944 r8192 d31976 u90112 alloc=22*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] ARM_SMCCC_ARCH_WORKAROUND_1 missing from firmware
[    0.000000] CPU features: enabling workaround for EL2 vector hardening
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516095
[    0.000000] Kernel command line: root=/dev/sda3 rootfstype=squashfs rootwait pci=pcie_bus_perf console=ttyS0,115200 panic=3 reboot=warm
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.000000] Memory: 2044908K/2097148K available (9532K kernel code, 970K rwdata, 2560K rodata, 1024K init, 325K bss, 52240K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] ftrace: allocating 32446 entries in 127 pages
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: no VLPI support, no direct LPI support
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000f0280000
[    0.000000] arch_timer: cp15 timer(s) running at 50.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xb8812736b, max_idle_ns: 440795202655 ns
[    0.000002] sched_clock: 56 bits at 50MHz, resolution 20ns, wraps every 4398046511100ns
[    0.000131] Console: colour dummy device 80x25
[    0.000143] Calibrating delay loop (skipped), value calculated using timer frequency.. 100.00 BogoMIPS (lpj=200000)
[    0.000148] pid_max: default: 32768 minimum: 301
[    0.000200] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000210] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000695] ASID allocator initialised with 32768 entries
[    0.000729] rcu: Hierarchical SRCU implementation.
[    0.000959] EFI services will not be available.
[    0.001047] smp: Bringing up secondary CPUs ...
[    0.001220] Detected PIPT I-cache on CPU1
[    0.001233] GICv3: CPU1: found redistributor 1 region 0:0x00000000f02a0000
[    0.001245] CPU1: Booted secondary processor 0x0000000001 [0x411fd073]
[    0.001452] Detected PIPT I-cache on CPU2
[    0.001461] GICv3: CPU2: found redistributor 2 region 0:0x00000000f02c0000
[    0.001470] CPU2: Booted secondary processor 0x0000000002 [0x411fd073]
[    0.001654] Detected PIPT I-cache on CPU3
[    0.001663] GICv3: CPU3: found redistributor 3 region 0:0x00000000f02e0000
[    0.001672] CPU3: Booted secondary processor 0x0000000003 [0x411fd073]
[    0.001700] smp: Brought up 1 node, 4 CPUs
[    0.001702] SMP: Total of 4 processors activated.
[    0.001705] CPU features: detected: GIC system register CPU interface
[    0.001707] CPU features: detected: 32-bit EL0 Support
[    0.001727] CPU: All CPU(s) started at EL2
[    0.001735] alternatives: patching kernel code
[    0.002238] devtmpfs: initialized
[    0.004196] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.004201] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.004407] DMI not present or invalid.
[    0.004534] NET: Registered protocol family 16
[    0.004878] cpuidle: using governor menu
[    0.004993] DMA: preallocated 256 KiB pool for atomic allocations
[    0.005031] Initializing Peripheral Bus System - PBS
[    0.027019] console [pstore-1] enabled
[    0.027072] pstore: Registered ramoops as persistent store backend
[    0.027074] ramoops: attached 0x18000@0x10000000, ecc: 16/0
[    0.030686] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.030934] vgaarb: loaded
[    0.031008] SCSI subsystem initialized
[    0.031065] libata version 3.00 loaded.
[    0.031124] usbcore: registered new interface driver usbfs
[    0.031138] usbcore: registered new interface driver hub
[    0.031156] usbcore: registered new device driver usb
[    0.031354] pps_core: LinuxPPS API ver. 1 registered
[    0.031356] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    0.031362] PTP clock support registered
[    0.031395] Advanced Linux Sound Architecture Driver Initialized.
[    0.031555] Bluetooth: Core ver 2.22
[    0.031567] NET: Registered protocol family 31
[    0.031569] Bluetooth: HCI device and connection manager initialized
[    0.031572] Bluetooth: HCI socket layer initialized
[    0.031574] Bluetooth: L2CAP socket layer initialized
[    0.031584] Bluetooth: SCO socket layer initialized
[    0.031709] clocksource: Switched to clocksource arch_sys_counter
[    0.046637] NET: Registered protocol family 2
[    0.046847] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes)
[    0.046855] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[    0.046894] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[    0.046987] TCP: Hash tables configured (established 16384 bind 16384)
[    0.047048] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[    0.047057] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[    0.047113] NET: Registered protocol family 1
[    0.047288] PCI: CLS 0 bytes, default 64
[    0.047731] Initialise system trusted keyrings
[    0.047790] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    0.050000] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.584335] Key type asymmetric registered
[    0.584338] Asymmetric key parser 'x509' registered
[    0.584358] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    0.584361] io scheduler noop registered
[    0.584362] io scheduler deadline registered
[    0.584416] io scheduler cfq registered (default)
[    0.584418] io scheduler mq-deadline registered
[    0.584420] io scheduler kyber registered
[    0.584665] pl061_gpio fd887000.gpio0: PL061 GPIO chip @0x00000000fd887000 registered
[    0.584753] pl061_gpio fd888000.gpio1: PL061 GPIO chip @0x00000000fd888000 registered
[    0.584835] pl061_gpio fd889000.gpio2: PL061 GPIO chip @0x00000000fd889000 registered
[    0.584914] pl061_gpio fd88a000.gpio3: PL061 GPIO chip @0x00000000fd88a000 registered
[    0.584993] pl061_gpio fd88b000.gpio4: PL061 GPIO chip @0x00000000fd88b000 registered
[    0.585072] pl061_gpio fd897000.gpio5: PL061 GPIO chip @0x00000000fd897000 registered
[    0.585164] al-sgpo fd8b4000.sgpo: Alpine SGPO driver probed.
[    0.585247] al-internal-pcie fbc00000.pcie-internal: host bridge /soc/pcie-internal ranges:
[    0.585257] al-internal-pcie fbc00000.pcie-internal:   MEM 0xfe000000..0xfeffffff -> 0xfe000000
[    0.585300] al-internal-pcie fbc00000.pcie-internal: PCI host bridge to bus 0000:00
[    0.585304] pci_bus 0000:00: root bus resource [bus 00]
[    0.585307] pci_bus 0000:00: root bus resource [mem 0xfe000000-0xfeffffff]
[    0.585399] pci 0000:00:01.0: [1c36:0001] type 00 class 0x020000
[    0.585411] pci 0000:00:01.0: reg 0x10: [mem 0xfe000000-0xfe01ffff 64bit]
[    0.585416] pci 0000:00:01.0: reg 0x18: [mem 0xfe020000-0xfe020fff 64bit]
[    0.585421] pci 0000:00:01.0: reg 0x20: [mem 0xfe024000-0xfe027fff 64bit]
[    0.585440] pci 0000:00:01.0: PME# supported from D3hot D3cold
[    0.585590] pci 0000:00:03.0: [1c36:0001] type 00 class 0x020000
[    0.585599] pci 0000:00:03.0: reg 0x10: [mem 0xfe040000-0xfe05ffff 64bit]
[    0.585604] pci 0000:00:03.0: reg 0x18: [mem 0xfe060000-0xfe060fff 64bit]
[    0.585609] pci 0000:00:03.0: reg 0x20: [mem 0xfe064000-0xfe067fff 64bit]
[    0.585624] pci 0000:00:03.0: PME# supported from D3hot D3cold
[    0.585712] pci 0000:00:04.0: [1c36:0022] type 00 class 0x100000
[    0.585720] pci 0000:00:04.0: reg 0x10: [mem 0xfe080000-0xfe09ffff 64bit]
[    0.585727] pci 0000:00:04.0: reg 0x20: [mem 0xfe0a0000-0xfe0affff 64bit]
[    0.585743] pci 0000:00:04.0: PME# supported from D3hot D3cold
[    0.585752] pci 0000:00:04.0: reg 0x324: [mem 0x00000000-0x0001ffff 64bit]
[    0.585755] pci 0000:00:04.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit] (contains BAR0 for 1 VFs)
[    0.585854] pci 0000:00:05.0: [1c36:0022] type 00 class 0x010400
[    0.585862] pci 0000:00:05.0: reg 0x10: [mem 0xfe0c0000-0xfe0dffff 64bit]
[    0.585869] pci 0000:00:05.0: reg 0x20: [mem 0xfe0e0000-0xfe0effff 64bit]
[    0.585886] pci 0000:00:05.0: PME# supported from D3hot D3cold
[    0.585894] pci 0000:00:05.0: reg 0x324: [mem 0x00000000-0x0001ffff 64bit]
[    0.585898] pci 0000:00:05.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit] (contains BAR0 for 1 VFs)
[    0.586087] pci 0000:00:08.0: [1c36:0031] type 00 class 0x010601
[    0.586100] pci 0000:00:08.0: reg 0x24: [mem 0xfe0f0000-0xfe0f3fff]
[    0.586115] pci 0000:00:08.0: PME# supported from D3hot D3cold
[    0.587284] pci 0000:00:01.0: BAR 0: assigned [mem 0xfe000000-0xfe01ffff 64bit]
[    0.587289] pci 0000:00:03.0: BAR 0: assigned [mem 0xfe020000-0xfe03ffff 64bit]
[    0.587294] pci 0000:00:04.0: BAR 0: assigned [mem 0xfe040000-0xfe05ffff 64bit]
[    0.587299] pci 0000:00:04.0: BAR 7: assigned [mem 0xfe060000-0xfe07ffff 64bit]
[    0.587303] pci 0000:00:05.0: BAR 0: assigned [mem 0xfe080000-0xfe09ffff 64bit]
[    0.587308] pci 0000:00:05.0: BAR 7: assigned [mem 0xfe0a0000-0xfe0bffff 64bit]
[    0.587312] pci 0000:00:04.0: BAR 4: assigned [mem 0xfe0c0000-0xfe0cffff 64bit]
[    0.587316] pci 0000:00:05.0: BAR 4: assigned [mem 0xfe0d0000-0xfe0dffff 64bit]
[    0.587321] pci 0000:00:01.0: BAR 4: assigned [mem 0xfe0e0000-0xfe0e3fff 64bit]
[    0.587326] pci 0000:00:03.0: BAR 4: assigned [mem 0xfe0e4000-0xfe0e7fff 64bit]
[    0.587330] pci 0000:00:08.0: BAR 5: assigned [mem 0xfe0e8000-0xfe0ebfff]
[    0.587334] pci 0000:00:01.0: BAR 2: assigned [mem 0xfe0ec000-0xfe0ecfff 64bit]
[    0.587339] pci 0000:00:03.0: BAR 2: assigned [mem 0xfe0ed000-0xfe0edfff 64bit]
[    0.587362] pci-pf-stub 0000:00:04.0: writing to VF config space
[    0.587410] pci-pf-stub 0000:00:04.0: claimed by pci-pf-stub
[    0.587426] pci-pf-stub 0000:00:05.0: writing to VF config space
[    0.587496] pci-pf-stub 0000:00:05.0: claimed by pci-pf-stub
[    0.587581] al-external-pcie fd800000.pcie-external0: host bridge /soc/pcie-external0 ranges:
[    0.587590] al-external-pcie fd800000.pcie-external0:   err 0xfb600000..0xfb6fffff -> 0xfb600000
[    0.587597] al-external-pcie fd800000.pcie-external0:    IO 0xc0000000..0xc000ffff -> 0x00010000
[    0.587604] al-external-pcie fd800000.pcie-external0:   MEM 0xc0010000..0xc7ffffff -> 0xc0010000
[    0.587630] al-external-pcie fd800000.pcie-external0: link up: speed Gen 1 width x1
[    0.587633] al-external-pcie fd800000.pcie-external0: link up: speed Gen 1 width x1
[    0.587637] PCIe 0: setting OB iATU even after link is started
[    0.587678] al-external-pcie fd800000.pcie-external0: PCI host bridge to bus 0001:00
[    0.587681] pci_bus 0001:00: root bus resource [bus 00-ff]
[    0.587684] pci_bus 0001:00: root bus resource [??? 0xfb600000-0xfb6fffff flags 0x0]
[    0.587690] pci_bus 0001:00: root bus resource [io  0x0000-0xffff] (bus address [0x10000-0x1ffff])
[    0.587692] pci_bus 0001:00: root bus resource [mem 0xc0010000-0xc7ffffff]
[    0.587716] pci 0001:00:00.0: [1c36:0031] type 01 class 0x060400
[    0.587728] pci 0001:00:00.0: reg 0x10: [mem 0x00000000-0x000fffff]
[    0.587733] pci 0001:00:00.0: reg 0x14: [mem 0x00000000-0x0000ffff]
[    0.587738] pci 0001:00:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    0.587773] pci 0001:00:00.0: supports D1
[    0.587775] pci 0001:00:00.0: PME# supported from D0 D1 D3hot
[    0.588811] pci 0001:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.588868] pci 0001:01:00.0: [14c3:7615] type 00 class 0x000280
[    0.588902] pci 0001:01:00.0: reg 0x10: [mem 0xc0000000-0xc00fffff 64bit]
[    0.589040] pci 0001:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0001:00:00.0 (capable of 4.000 Gb/s with 5 GT/s x1 link)
[    0.590046] pci_bus 0001:01: busn_res: [bus 01-ff] end is updated to 01
[    0.590056] pci 0001:00:00.0: BAR 0: assigned [mem 0xc0100000-0xc01fffff]
[    0.590060] pci 0001:00:00.0: BAR 14: assigned [mem 0xc0200000-0xc02fffff]
[    0.590063] pci 0001:00:00.0: BAR 1: assigned [mem 0xc0010000-0xc001ffff]
[    0.590068] pci 0001:00:00.0: BAR 6: assigned [mem 0xc0020000-0xc002ffff pref]
[    0.590072] pci 0001:01:00.0: BAR 0: assigned [mem 0xc0200000-0xc02fffff 64bit]
[    0.590085] pci 0001:00:00.0: PCI bridge to [bus 01]
[    0.590089] pci 0001:00:00.0:   bridge window [mem 0xc0200000-0xc02fffff]
[    0.590097] pci 0001:00:00.0: Max Payload Size set to  256/ 256 (was  128), Max Read Rq  256
[    0.590118] pci 0001:01:00.0: Max Payload Size set to  128/ 128 (was  128), Max Read Rq  128
[    0.590121] pci 0001:00:00.0: AL PCIe bridge quirk detected, disable MSI(X)
[    0.590173] al-external-pcie fd820000.pcie-external1: host bridge /soc/pcie-external1 ranges:
[    0.590181] al-external-pcie fd820000.pcie-external1:   err 0xfb700000..0xfb7fffff -> 0xfb700000
[    0.590189] al-external-pcie fd820000.pcie-external1:    IO 0xc8000000..0xc800ffff -> 0x00020000
[    0.590194] al-external-pcie fd820000.pcie-external1:   MEM 0xc8010000..0xcfffffff -> 0xc8010000
[    0.590218] al-external-pcie fd820000.pcie-external1: link up: speed Gen 1 width x1
[    0.590221] al-external-pcie fd820000.pcie-external1: link up: speed Gen 1 width x1
[    0.590224] PCIe 1: setting OB iATU even after link is started
[    0.590264] al-external-pcie fd820000.pcie-external1: PCI host bridge to bus 0002:00
[    0.590267] pci_bus 0002:00: root bus resource [bus 00-ff]
[    0.590270] pci_bus 0002:00: root bus resource [??? 0xfb700000-0xfb7fffff flags 0x0]
[    0.590274] pci_bus 0002:00: root bus resource [io  0x10000-0x1ffff] (bus address [0x20000-0x2ffff])
[    0.590276] pci_bus 0002:00: root bus resource [mem 0xc8010000-0xcfffffff]
[    0.590287] pci 0002:00:00.0: [1c36:0031] type 01 class 0x060400
[    0.590298] pci 0002:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    0.590303] pci 0002:00:00.0: reg 0x14: [mem 0x00000000-0x00000fff pref]
[    0.590337] pci 0002:00:00.0: supports D1
[    0.590339] pci 0002:00:00.0: PME# supported from D0 D1 D3hot
[    0.591361] pci 0002:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.591416] pci 0002:01:00.0: [14c3:7603] type 00 class 0x028000
[    0.591443] pci 0002:01:00.0: reg 0x10: [mem 0xc8000000-0xc80fffff]
[    0.591553] pci 0002:01:00.0: PME# supported from D0 D3hot D3cold
[    0.592619] pci_bus 0002:01: busn_res: [bus 01-ff] end is updated to 01
[    0.592628] pci 0002:00:00.0: BAR 14: assigned [mem 0xc8100000-0xc81fffff]
[    0.592631] pci 0002:00:00.0: BAR 0: assigned [mem 0xc8010000-0xc8010fff]
[    0.592636] pci 0002:00:00.0: BAR 1: assigned [mem 0xc8011000-0xc8011fff pref]
[    0.592640] pci 0002:01:00.0: BAR 0: assigned [mem 0xc8100000-0xc81fffff]
[    0.592645] pci 0002:00:00.0: PCI bridge to [bus 01]
[    0.592649] pci 0002:00:00.0:   bridge window [mem 0xc8100000-0xc81fffff]
[    0.592657] pci 0002:00:00.0: Max Payload Size set to  256/ 256 (was  128), Max Read Rq  256
[    0.592674] pci 0002:01:00.0: Max Payload Size set to  128/ 128 (was  128), Max Read Rq  128
[    0.592677] pci 0002:00:00.0: AL PCIe bridge quirk detected, disable MSI(X)
[    0.592731] al-external-pcie fd840000.pcie-external2: host bridge /soc/pcie-external2 ranges:
[    0.592739] al-external-pcie fd840000.pcie-external2:   err 0xfb800000..0xfb8fffff -> 0xfb800000
[    0.592746] al-external-pcie fd840000.pcie-external2:    IO 0xd0000000..0xd000ffff -> 0x00030000
[    0.592751] al-external-pcie fd840000.pcie-external2:   MEM 0xd0010000..0xd7ffffff -> 0xd0010000
[    0.592775] al-external-pcie fd840000.pcie-external2: link up: speed Gen 2 width x1
[    0.592778] al-external-pcie fd840000.pcie-external2: link up: speed Gen 2 width x1
[    0.592781] PCIe 2: setting OB iATU even after link is started
[    0.592822] al-external-pcie fd840000.pcie-external2: PCI host bridge to bus 0003:00
[    0.592825] pci_bus 0003:00: root bus resource [bus 00-ff]
[    0.592828] pci_bus 0003:00: root bus resource [??? 0xfb800000-0xfb8fffff flags 0x0]
[    0.592831] pci_bus 0003:00: root bus resource [io  0x20000-0x2ffff] (bus address [0x30000-0x3ffff])
[    0.592834] pci_bus 0003:00: root bus resource [mem 0xd0010000-0xd7ffffff]
[    0.592844] pci 0003:00:00.0: [1c36:0031] type 01 class 0x060400
[    0.592855] pci 0003:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    0.592860] pci 0003:00:00.0: reg 0x14: [mem 0x00000000-0x00000fff pref]
[    0.592892] pci 0003:00:00.0: supports D1
[    0.592894] pci 0003:00:00.0: PME# supported from D0 D1 D3hot
[    0.593923] pci 0003:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.593976] pci 0003:01:00.0: [1b21:1142] type 00 class 0x0c0330
[    0.594003] pci 0003:01:00.0: reg 0x10: [mem 0xd0000000-0xd0007fff 64bit]
[    0.594105] pci 0003:01:00.0: PME# supported from D3cold
[    0.595130] pci_bus 0003:01: busn_res: [bus 01-ff] end is updated to 01
[    0.595137] pci 0003:00:00.0: BAR 14: assigned [mem 0xd0100000-0xd01fffff]
[    0.595141] pci 0003:00:00.0: BAR 0: assigned [mem 0xd0010000-0xd0010fff]
[    0.595145] pci 0003:00:00.0: BAR 1: assigned [mem 0xd0011000-0xd0011fff pref]
[    0.595150] pci 0003:01:00.0: BAR 0: assigned [mem 0xd0100000-0xd0107fff 64bit]
[    0.595160] pci 0003:00:00.0: PCI bridge to [bus 01]
[    0.595163] pci 0003:00:00.0:   bridge window [mem 0xd0100000-0xd01fffff]
[    0.595171] pci 0003:00:00.0: Max Payload Size set to  256/ 256 (was  128), Max Read Rq  256
[    0.595186] pci 0003:01:00.0: Max Payload Size set to  256/ 512 (was  128), Max Read Rq  256
[    0.595189] pci 0003:00:00.0: AL PCIe bridge quirk detected, disable MSI(X)
[    0.595436] al_dma: Annapurna Labs DMA Driver 0.01
[    0.596329] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.596779] console [ttyS0] disabled
[    0.596796] fd883000.uart0: ttyS0 at MMIO 0xfd883000 (irq = 23, base_baud = 31250000) is a 16550A
[    0.608855] console [ttyS0] enabled
[    0.609022] fd884000.uart1: ttyS1 at MMIO 0xfd884000 (irq = 24, base_baud = 31250000) is a 16550A
[    0.609498] resvmem-reboot-reason soc:reboot-reason: Allocated reserved memory, vaddr: 0x8EF5000, paddr: 0x10020000
[    0.609611] ahci 0000:00:08.0: version 3.0
[    0.609617] ahci 0000:00:08.0: enabling device (0000 -> 0002)
[    0.609633] ahci 0000:00:08.0: controller can't do PMP, turning off CAP_PMP
[    0.609812] ahci 0000:00:08.0: SSS flag set, parallel bus scan disabled
[    0.609828] ahci 0000:00:08.0: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0xf impl SATA mode
[    0.609833] ahci 0000:00:08.0: flags: 64bit ncq sntf stag pm led clo only fbs pio slum part ccc apst
[    0.609836] ahci 0000:00:08.0: both AHCI_HFLAG_MULTI_MSI flag set and custom irq handler implemented
[    0.610454] scsi host0: ahci
[    0.610663] scsi host1: ahci
[    0.610833] scsi host2: ahci
[    0.610994] scsi host3: ahci
[    0.611096] ata1: SATA max UDMA/133 abar m16384@0xfe0e8000 port 0xfe0e8100 irq 26
[    0.611099] ata2: SATA max UDMA/133 abar m16384@0xfe0e8000 port 0xfe0e8180 irq 27
[    0.611101] ata3: SATA max UDMA/133 abar m16384@0xfe0e8000 port 0xfe0e8200 irq 28
[    0.611103] ata4: SATA max UDMA/133 abar m16384@0xfe0e8000 port 0xfe0e8280 irq 29
[    0.611130] ahci 0001:00:00.0: writing to VF config space
[    0.612805] ata1: SATA link down (SStatus 4 SControl 300)
[    0.616627] ahci: probe of 0001:00:00.0 failed with error -22
[    0.616638] ahci 0002:00:00.0: writing to VF config space
[    0.617649] ata2: SATA link down (SStatus 4 SControl 300)
[    0.622134] ahci: probe of 0002:00:00.0 failed with error -22
[    0.622143] ahci 0003:00:00.0: writing to VF config space
[    0.623180] ata3: SATA link down (SStatus 4 SControl 300)
[    0.627602] ahci: probe of 0003:00:00.0 failed with error -22
[    0.628027] m25p80 spi0.0: found mx25u6435f, expected spi_flash_jedec_detection
[    0.628032] m25p80 spi0.0: mx25u6435f (8192 Kbytes)
[    0.628123] 5 fixed-partitions partitions found on MTD device spi0.0
[    0.628125] Creating 5 MTD partitions on "spi0.0":
[    0.628129] 0x000000000000-0x0000001c0000 : "u-boot"
[    0.628386] 0x0000001c0000-0x0000001d0000 : "u-boot-env"
[    0.628589] 0x0000001d0000-0x0000001e0000 : "u-boot-env-2"
[    0.628654] ata4: SATA link down (SStatus 4 SControl 300)
[    0.628790] 0x0000001e0000-0x0000001f0000 : "Factory"
[    0.628987] 0x0000001f0000-0x000000200000 : "EEPROM"
[    0.629527] libphy: Fixed MDIO Bus: probed
[    0.629530] tun: Universal TUN/TAP device driver, 1.6
[    0.629677] al_eth_drv: Initializing Peripheral Bus System (PBS) resources
[    0.629707] al_eth 0000:00:01.0: writing to VF config space
[    0.635325] al_eth 0000:00:01.0: AnnapurnaLabs unified 1GbE/10GbE/25GbE Ethernet Driver with SR-IOV al_eth v3.5.3 (Mar 14, 2019)
[    0.635331] al_eth 0000:00:01.0: driver_data is 0x0
[    0.635362] al_eth 0000:00:01.0: eth rev_id 2 (orig_rev_id 2) dev_id 1
[    0.635454] al_eth 0000:00:01.0: Board info: phy exist Yes. phy addr 0. mdio freq 1000 Khz. SFP connected No. media 1
[    0.635458] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
[    0.641253] al_eth 0000:00:01.0 eth0: AnnapurnaLabs unified 1Gbe/10Gbe/25Gbe integrated found at mem fe000000, mac addr e0:63:da:21:ac:1e
[    0.641279] libphy: alpine_mdio_shared: probed
[    0.645497] switch0: Atheros AR8337/Qualcomm QCA8337 rev. 2 switch registered on alpine_mdio_shared_8
[    2.604785] al_eth 0000:00:01.0 eth0: phy[0]: device alpine_mdio_shared_8:00, driver Atheros AR8216/AR8236/AR8316
[    2.604788] al_eth 0000:00:01.0 eth0: phy[0]:supported 20 adv 20
[    2.604808] al_eth 0000:00:03.0: writing to VF config space
[    2.610453] al_eth 0000:00:03.0: driver_data is 0x0
[    2.610479] al_eth 0000:00:03.0: eth rev_id 2 (orig_rev_id 2) dev_id 1
[    2.610580] al_eth 0000:00:03.0: Board info: phy exist Yes. phy addr 4. mdio freq 1000 Khz. SFP connected No. media 1
[    2.610583] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
[    2.616429] al_eth 0000:00:03.0 eth1: AnnapurnaLabs unified 1Gbe/10Gbe/25Gbe integrated found at mem fe020000, mac addr fe:80:7f:0e:de:64
[    2.617733] al_eth 0000:00:03.0 eth1: phy[4]: device alpine_mdio_shared_8:04, driver Atheros AR8216/AR8236/AR8316
[    2.617737] al_eth 0000:00:03.0 eth1: phy[4]:supported 62ef adv 62ef
[    2.617908] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.617910] ehci-pci: EHCI PCI platform driver
[    2.617930] ehci-platform: EHCI generic platform driver
[    2.617971] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.617980] ohci-pci: OHCI PCI platform driver
[    2.617994] uhci_hcd: USB Universal Host Controller Interface driver
[    2.618073] xhci_hcd 0003:01:00.0: xHCI Host Controller
[    2.618083] xhci_hcd 0003:01:00.0: new USB bus registered, assigned bus number 1
[    2.752142] xhci_hcd 0003:01:00.0: hcc params 0x0200e081 hci version 0x100 quirks 0x0000000010000410
[    2.752616] hub 1-0:1.0: USB hub found
[    2.752631] hub 1-0:1.0: 2 ports detected
[    2.752790] xhci_hcd 0003:01:00.0: xHCI Host Controller
[    2.752796] xhci_hcd 0003:01:00.0: new USB bus registered, assigned bus number 2
[    2.752801] xhci_hcd 0003:01:00.0: Host supports USB 3.0 SuperSpeed
[    2.752868] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.753030] hub 2-0:1.0: USB hub found
[    2.753043] hub 2-0:1.0: 2 ports detected
[    2.753210] usbcore: registered new interface driver cdc_acm
[    2.753212] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    2.753236] usbcore: registered new interface driver usb-storage
[    2.753265] usbcore: registered new interface driver cp210x
[    2.753274] usbserial: USB Serial support registered for cp210x
[    2.753347] i2c /dev entries driver
[    2.765565] al_thermal_probe: Thermal Sensor Loaded
[    2.765703] sp805-wdt fd88c000.wdt0: registration successful
[    2.765720] Bluetooth: HCI UART driver ver 2.3
[    2.765723] Bluetooth: HCI UART protocol H4 registered
[    2.765725] Bluetooth: HCI UART protocol BCSP registered
[    2.766136] usbcore: registered new interface driver usbhid
[    2.766137] usbhid: USB HID core driver
[    2.766215] usbcore: registered new interface driver snd-usb-audio
[    2.766516] IPVS: Registered protocols ()
[    2.766546] IPVS: Connection hash table configured (size=4096, memory=64Kbytes)
[    2.766598] IPVS: ipvs loaded.
[    2.766652] gre: GRE over IPv4 demultiplexor driver
[    2.766653] ip_gre: GRE over IPv4 tunneling driver
[    2.767050] IPv4 over IPsec tunneling driver
[    2.767425] NET: Registered protocol family 10
[    2.767932] Segment Routing with IPv6
[    2.768027] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    2.768209] NET: Registered protocol family 17
[    2.768227] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    2.768267] Bluetooth: RFCOMM socket layer initialized
[    2.768276] Bluetooth: RFCOMM ver 1.11
[    2.768281] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    2.768284] Bluetooth: BNEP socket layer initialized
[    2.768286] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    2.768289] Bluetooth: HIDP socket layer initialized
[    2.768291] 8021q: 802.1Q VLAN Support v1.8
[    2.768505] registered taskstats version 1
[    2.768507] Loading compiled-in X.509 certificates
[    2.768626] pstore: Using compression: deflate
[    2.769142] Key type encrypted registered
[    2.769507] input: gpio_keys as /devices/platform/gpio_keys/input/input0
[    2.769584] hctosys: unable to open rtc device (rtc0)
[    2.769638] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.832206] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.832215] ALSA device list:
[    2.832217]   No soundcards found.
[    2.832338] Waiting for root device /dev/sda3...
[    2.832371] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    2.832374] cfg80211: failed to load regulatory.db
[    3.159714] usb 1-2: new full-speed USB device number 2 using xhci_hcd
[    3.410628] usb 1-2: set volume quirk for CM102-A+/102S+
[    3.528317] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[    3.560497] usb-storage 2-1:1.0: USB Mass Storage device detected
[    3.560699] scsi host4: usb-storage 2-1:1.0
[    4.581231] scsi 4:0:0:0: Direct-Access     Generic  MassStorageClass 1537 PQ: 0 ANSI: 6
[    4.737791] sd 4:0:0:0: [sda] 30777344 512-byte logical blocks: (15.8 GB/14.7 GiB)
[    4.738512] sd 4:0:0:0: [sda] Write Protect is off
[    4.738516] sd 4:0:0:0: [sda] Mode Sense: 21 00 00 00
[    4.739513] sd 4:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    4.749951]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    4.752484] sd 4:0:0:0: [sda] Attached SCSI removable disk
[    4.755608] VFS: Mounted root (squashfs filesystem) readonly on device 8:3.
[    4.757234] devtmpfs: mounted
[    4.758057] Freeing unused kernel memory: 1024K
[    4.767758] Run /sbin/init as init process
[    4.769149] random: fast init done
[    5.157607] EXT4-fs (sda6): recovery complete
[    5.158218] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[    5.213247] random: crng init done
[    6.381960] ubnt_common: loading out-of-tree module taints kernel.
[    6.381967] ubnt_common: module license 'Proprietary' taints kernel.
[    6.381969] Disabling lock debugging due to kernel taint
[    6.385219] [UBNT_STA_HT] Initialize hash table
[    6.385243] [UBNT_STA_HT] done
[    6.385245] creating /proc/ubnt_peek/
[    6.385253] creating /proc/ubnt_peek/peek_disable
[    6.385255] creating /proc/ubnt_peek/loop_check
[    6.385257] creating /proc/ubnt_peek/loop_debug
[    6.385260] creating /proc/ubnt_peek/loop_uif
[    6.385262] creating /proc/ubnt_peek/tcp_debug_mac
[    6.385264] creating /proc/ubnt_peek/tcp_debug_connections
[    6.385271] qos: registered
[    6.385273] creating /proc/ubnt_frame_id/
[    6.385275] creating /proc/ubnt_frame_id/netdevs
[    6.437999] ubnthal: Ubiquiti UniFi Dream Machine
[    6.438976] creating procfs for ubnthal
[    6.438984] creating proc entry for system.info
[    6.438986] creating proc entry for board
[    6.447690] Unable to find matching dts node.
[    6.447697] creating procfs for status
[    6.447725] creating proc entry for IsDefault
[    6.447728] creating proc entry for IsLocated
[    6.447730] creating proc entry for IsIsolated
[    6.447732] creating proc entry for IsLte
[    6.447734] creating proc entry for ControllerPort
[    6.447736] creating proc entry for ControllerHost
[    6.594118] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: errors=panic
[    6.597119] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: errors=panic
[    6.612309] creating /proc/gpio/
[    6.612317]          /proc/gpio/ledbar_control
[    6.612319]          /proc/gpio/led_pattern
[    6.612321]          /proc/gpio/led_tempo
[    6.612324]          /proc/gpio/poe_passthrough
[    6.891437] watchdog: watchdog0: nowayout prevents watchdog being stopped!
[    6.891440] watchdog: watchdog0: watchdog did not stop!
[    6.910236] zram: Added device: zram0
[    6.927261] zram0: detected capacity change from 0 to 3666313216
[    6.938403] Adding 3580380k swap on /dev/zram0.  Priority:100 extents:1 across:3580380k SS
[    7.104011] ICMPv6: process `sysctl' is using deprecated sysctl (syscall) net.ipv6.neigh.default.base_reachable_time - use net.ipv6.neigh.default.base_reachable_time_ms instead
[    7.154513] al_eth 0000:00:01.0 switch0.tmp: renamed from eth0
[    7.175028] al_eth 0000:00:03.0 eth4.tmp: renamed from eth1
[    7.194627] al_eth 0000:00:03.0 eth4: renamed from eth4.tmp
[    7.213222] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
[    7.218691] Configured MAC to RGMII mode
[    7.219867] al_eth 0000:00:03.0 eth4: using MSI-X per Queue interrupt mode
[    7.223573] IPv6: ADDRCONF(NETDEV_UP): eth4: link is not ready
[    7.223610] IPv6: ADDRCONF(NETDEV_CHANGE): eth4: link becomes ready
[    7.229397] al_eth 0000:00:01.0 switch0: renamed from switch0.tmp
[    7.249376] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
[    7.254833] Configured MAC to RGMII mode
[    7.255955] al_eth 0000:00:01.0 switch0: using MSI-X per Queue interrupt mode
[    7.259657] IPv6: ADDRCONF(NETDEV_UP): switch0: link is not ready
[    7.284992] br0: port 1(switch0) entered blocking state
[    7.284998] br0: port 1(switch0) entered disabled state
[    7.285101] device switch0 entered promiscuous mode
[    7.288375] IPv6: ADDRCONF(NETDEV_UP): br0: link is not ready
[    7.421351] br0: port 1(switch0) entered disabled state
[    7.424659] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
[    7.430055] Configured MAC to RGMII mode
[    7.431171] al_eth 0000:00:01.0 switch0: using MSI-X per Queue interrupt mode
[    7.434860] IPv6: ADDRCONF(NETDEV_UP): switch0: link is not ready
[    7.457865] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
[    7.463304] Configured MAC to RGMII mode
[    7.464405] al_eth 0000:00:03.0 eth4: using MSI-X per Queue interrupt mode
[    7.468564] eth [al_mod_eth_3]: set link speed to 1000Mbps. full duplex.
[    7.468574] al_eth 0000:00:03.0 eth4: Link is Up - 1Gbps/Full - flow control off
[    8.227750] IPv6: ADDRCONF(NETDEV_CHANGE): switch0: link becomes ready
[    8.227802] br0: port 1(switch0) entered blocking state
[    8.227806] br0: port 1(switch0) entered forwarding state
[    8.227867] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
[    8.452007] eth [al_mod_eth_1]: set link speed to 1000Mbps. full duplex.
[    8.452015] al_eth 0000:00:01.0 switch0: Link is Up - 1Gbps/Full - flow control off
[   12.729022] Bluetooth: hci0: unexpected event for opcode 0x0000
[   14.238582] register rlt_drv
[   14.291683] rlt_drv 0002:01:00.0: enabling device (0000 -> 0002)
[   14.291691] rt_pci_probe: pci_set_dma_mask okay!
[   14.292313]

               === pAd = 0000000099d8519c, size = 2297168 ===

[   14.292336] <-- RTMPAllocTxRxRingMemory, Status=0, ErrorValue=0x
[   14.292676] <-- RTMPAllocAdapterBlock, Status=0
[   14.292680] pAd->CSRBaseAddress =0xffffff800c900000, csr_addr=0xffffff800c900000!
[   14.292683] device_id =0x7603
[   14.292693] RtmpChipOpsHook(761): Not support for HIF_MT yet!
[   14.292694] mt7603_init()-->
[   14.292697] mt_bcn_buf_init(296): Not support for HIF_MT yet!
[   14.292699] <--mt7603_init()
[   14.292720] wevent: registered
[   14.292722] ra0: NO2G init ACL table
[   14.292813] 80211> RFICType= 1, NumOfChan= 14
[   14.292814] 80211> Number of rate = 12
[   14.292816] 80211> CurTxPower = 0 dBm
[   14.292911] 80211> CFG80211_Register with max interface 8
[   14.292915] ra0: VLAN features updated vwire/vport[0]!
[   14.558344] register mt_drv
[   14.614733] mt_drv 0001:01:00.0: enabling device (0000 -> 0002)
[   14.614742] rt_pci_probe: pci_set_dma_mask okay!
[   14.615846]

               === pAd = 0000000059c62e60, size = 3997656 ===

[   14.616202] <-- RTMPAllocAdapterBlock, Status=0
[   14.616205] pAd->PciHif.CSRBaseAddress =0xffffff800d300000, csr_addr=0xffffff800d300000!
[   14.616211] RTMPInitPCIeDevice():device_id=0x7615
[   14.616213] DriverOwn()::Try to Clear FW Own...
[   14.916749] DriverOwn()::Success to clear FW Own
[   14.916757] mt_pci_chip_cfg(): HWVer=0x8a10, FWVer=0x8a10, pAd->ChipID=0x7615
[   14.916761] mt_pci_chip_cfg(): HIF_SYS_REV=0x76150001
[   14.916764] RtmpChipOpsHook(493): Not support for HIF_MT yet! MACVersion=0x0
[   14.916767] mt7615_init()-->
[   14.916770] Use 1st iPAiLNA default bin.
[   14.916772] Use 0st /etc_ro/wlan/MT7615E_EEPROM1.bin default bin.
[   14.916775] <--mt7615_init()
[   14.916777] ChipOpsMCUHook
[   14.917481] cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096
[   14.917484] cut_through_token_list_init(): 0000000057b7b19b,0000000057b7b19b
[   14.917545] cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096
[   14.917547] cut_through_token_list_init(): 00000000f1059b6c,00000000f1059b6c
[   14.917558] <-- RTMPAllocTxRxRingMemory, Status=0
[   14.917602] wevent: registered
[   14.917615] 80211> RFICType= 3, NumOfChan= 48
[   14.917616] 80211> Number of rate = 12
[   14.917620] 80211> CurTxPower = 0 dBm
[   14.917625] 80211> TxStream = 1
[   14.917733] 80211> CFG80211_Register with max interface 4
[   14.917736] rai0: VLAN features updated vwire/vport[0]!
[   15.505384] TX_BCN DESC 0000000093ee700e size = 320
[   15.505391] RX[0] DESC 0000000085f36136 size = 2048
[   15.505464] RX[1] DESC 0000000015ea0287 size = 2048
[   15.506351] UserCfgInit: UBNT RF lock down!! SKUenable = 1!!
[   15.506745] cfg_mode=9
[   15.506747] cfg_mode=9
[   15.506753] wmode_band_equal(): Band Equal!
[   15.506888] BSS0 MinDataRate=6
[   15.506890] BSS1 MinDataRate=0
[   15.506892] BSS2 MinDataRate=0
[   15.506893] BSS3 MinDataRate=0
[   15.506895] BSS4 MinDataRate=0
[   15.506896] BSS5 MinDataRate=0
[   15.506897] BSS6 MinDataRate=0
[   15.506899] BSS7 MinDataRate=0
[   15.506941] BSS0 MinBCMCRate=6
[   15.506942] BSS1 MinBCMCRate=0
[   15.506944] BSS2 MinBCMCRate=0
[   15.506945] BSS3 MinBCMCRate=0
[   15.506947] BSS4 MinBCMCRate=0
[   15.506948] BSS5 MinBCMCRate=0
[   15.506949] BSS6 MinBCMCRate=0
[   15.506951] BSS7 MinBCMCRate=0
[   15.506992] BSS0 MinMgmtRate=6
[   15.506993] BSS1 MinMgmtRate=0
[   15.506995] BSS2 MinMgmtRate=0
[   15.506996] BSS3 MinMgmtRate=0
[   15.506998] BSS4 MinMgmtRate=0
[   15.506999] BSS5 MinMgmtRate=0
[   15.507000] BSS6 MinMgmtRate=0
[   15.507002] BSS7 MinMgmtRate=0
[   15.507042] BSS0 MinBeaconRate=6
[   15.507044] BSS1 MinBeaconRate=0
[   15.507046] BSS2 MinBeaconRate=0
[   15.507047] BSS3 MinBeaconRate=0
[   15.507048] BSS4 MinBeaconRate=0
[   15.507050] BSS5 MinBeaconRate=0
[   15.507051] BSS6 MinBeaconRate=0
[   15.507053] BSS7 MinBeaconRate=0
[   15.507095] BSS0 LimitClientSupportRate=0
[   15.507097] BSS1 LimitClientSupportRate=0
[   15.507098] BSS2 LimitClientSupportRate=0
[   15.507100] BSS3 LimitClientSupportRate=0
[   15.507101] BSS4 LimitClientSupportRate=0
[   15.507103] BSS5 LimitClientSupportRate=0
[   15.507104] BSS6 LimitClientSupportRate=0
[   15.507106] BSS7 LimitClientSupportRate=0
[   15.507149] BSS0 DisableCCKRate=1
[   15.507150] BSS1 DisableCCKRate=0
[   15.507152] BSS2 DisableCCKRate=0
[   15.507153] BSS3 DisableCCKRate=0
[   15.507155] BSS4 DisableCCKRate=0
[   15.507156] BSS5 DisableCCKRate=0
[   15.507157] BSS6 DisableCCKRate=0
[   15.507159] BSS7 DisableCCKRate=0
[   15.507256] BandSteering=0
[   15.507295] BndStrgBssIdx=0;0;0;0
[   15.507612] APSDCapable[0]=0
[   15.507614] APSDCapable[1]=0
[   15.507615] APSDCapable[2]=0
[   15.507616] APSDCapable[3]=0
[   15.507618] APSDCapable[4]=0
[   15.507620] default ApCliAPSDCapable[0]=0
[   15.533649] Key1Str is Invalid key length(0) or Type(0)
[   15.534010] Key2Str is Invalid key length(0) or Type(0)
[   15.534371] Key3Str is Invalid key length(0) or Type(0)
[   15.534732] Key4Str is Invalid key length(0) or Type(0)
[   15.546998] Smart Carrier Sense = 0
[   15.547048] CFG80211Radio = 1
[   15.547095] scanEntryTimeoutSetProfileParam(): Normal scan entry aging timeout = 60s
[   15.547127] ==>RTMPSetProfileParameters (OFF)
[   15.547214] ubnt_load_sku_data: UBNT RLT RF_LOCKDOWN Feature ON !!!
[   15.547216] --> Using builtin RLT SKU table for US
[   15.547316] FW Version:
[   15.547317] a
[   15.547318] p
[   15.547319] _
[   15.547321] p
[   15.547322] c
[   15.547323] i
[   15.547324] e
[   15.547325]
[   15.547326]
[   15.547327]

[   15.547330] FW Build Date:
[   15.547330] 2
[   15.547332] 0
[   15.547333] 1
[   15.547334] 6
[   15.547335] 0
[   15.547336] 1
[   15.547337] 0
[   15.547338] 7
[   15.547339] 1
[   15.547340] 0
[   15.547341] 0
[   15.547343] 7
[   15.547344] 5
[   15.547345] 5
[   15.547346]

[   15.547403] CmdAddressLenReq:(ret = 0)
[   15.547478] CmdFwStartReq: override = 1, address = 1048576
[   15.548476] CmdStartDLRsp: WiFI FW Download Success
[   15.568684] AsicDMASchedulerInit(): DMA Scheduler Mode=0(LMAC)
[   15.568706] efuse_probe: efuse = 10000012
[   15.568708] RtmpChipOpsEepromHook::e2p_type=1, inf_Type=5
[   15.568710] RtmpEepromGetDefault::e2p_dafault=1
[   15.568712] RtmpChipOpsEepromHook: E2P type(1), E2pAccessMode = 1, E2P default = 1
[   15.568714] NVM is EFUSE mode
[   15.568724] 1. Phy Mode = 14
[   15.568726] NVM is Efuse and its size =1d[1e0-1fc]
[   15.568882] Load EEPROM buffer from efuse, and change to BIN buffer mode
[   15.573402] efuse_probe: efuse = 10000012
[   15.573404] RtmpChipOpsEepromHook::forceMode: 4 , infType: 5
[   15.573406] NVM is BIN mode
[   15.573408] @@@  NICReadEEPROMParameters : pAd->FWLoad=0
[   15.748679] Country Region from e2p = ffff
[   15.748685] tssi_1_target_pwr_g_band = 34
[   15.748690] 2. Phy Mode = 14
[   15.748761] 3. Phy Mode = 14
[   15.748765] NICInitPwrPinCfg(15): Not support for HIF_MT yet!
[   15.748767] NICInitializeAsic(845): Not support rtmp_mac_sys_reset () for HIF_MT yet!
[   15.748769] mt_mac_init()-->
[   15.748771] mt7603_init_mac_cr()-->
[   15.748935] AsicSetMacMaxLen(2548): Set the Max RxPktLen=1024!
[   15.748937] <--mt_mac_init()
[   15.749076]  WTBL Segment 1 info:
[   15.749078]          MemBaseAddr/FID:0x28000/0
[   15.749079]          EntrySize/Cnt:32/128
[   15.749081]  WTBL Segment 2 info:
[   15.749082]          MemBaseAddr/FID:0x40000/0
[   15.749084]          EntrySize/Cnt:64/128
[   15.749085]  WTBL Segment 3 info:
[   15.749086]          MemBaseAddr/FID:0x42000/64
[   15.749088]          EntrySize/Cnt:64/128
[   15.749089]  WTBL Segment 4 info:
[   15.749091]          MemBaseAddr/FID:0x44000/128
[   15.749092]          EntrySize/Cnt:32/128
[   15.749101] MtAsicACQueue: Write CR:21510, Value=10421
[   15.749107] MtAsicACQueue: Write CR:21500, Value=10421
[   15.749174] AntCfgInit(3787): Not support for HIF_MT yet!
[   15.749191] Ucast set for OFDM mode MCS 0
[   15.749221] MCS Set = ff ff 00 00 00
[   15.749234] [PMF]ap_pmf_init:: apidx=0, MFPC=0, MFPR=0, SHA256=0
[   15.749239] [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0
[   15.749256] [PMF]ap_pmf_init:: apidx=1, MFPC=0, MFPR=0, SHA256=0
[   15.749262] [PMF]ap_pmf_init:: apidx=2, MFPC=0, MFPR=0, SHA256=0
[   15.749268] [PMF]ap_pmf_init:: apidx=3, MFPC=0, MFPR=0, SHA256=0
[   15.749274] [PMF]ap_pmf_init:: apidx=4, MFPC=0, MFPR=0, SHA256=0
[   15.749280] [PMF]ap_pmf_init:: apidx=5, MFPC=0, MFPR=0, SHA256=0
[   15.749285] [PMF]ap_pmf_init:: apidx=6, MFPC=0, MFPR=0, SHA256=0
[   15.749291] [PMF]ap_pmf_init:: apidx=7, MFPC=0, MFPR=0, SHA256=0
[   15.749313] AsicSetRalinkBurstMode(5291): Not support for HIF_MT yet!
[   15.749315] RTMPSetPiggyBack(1101): Not support for HIF_MT yet!
[   15.771741] AsicSetTxPreamble(5270): Not support for HIF_MT yet!
[   15.771746] Ucast set for OFDM mode MCS 0
[   15.772267] AsicAddSharedKeyEntry(2714): Not support for HIF_MT yet!
[   15.772310] AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0
[   15.772313] ap_ftkd> Initialize FT KDP Module...
[   15.772316] Main bssid = e0:63:da:21:ac:22
[   15.772402] <==== rt28xx_init, Status=0
[   15.772469] ra1: VLAN features updated vwire/vport[0]!
[   15.772853] ra2: VLAN features updated vwire/vport[0]!
[   15.773134] ra3: VLAN features updated vwire/vport[0]!
[   15.773423] ra4: VLAN features updated vwire/vport[0]!
[   15.773741] ra5: VLAN features updated vwire/vport[0]!
[   15.773969] ra6: VLAN features updated vwire/vport[0]!
[   15.774179] ra7: VLAN features updated vwire/vport[0]!
[   15.774468] wds0: VLAN features updated vwire/vport[0]!
[   15.774758] wds1: VLAN features updated vwire/vport[0]!
[   15.775059] wds2: VLAN features updated vwire/vport[0]!
[   15.775370] wds3: VLAN features updated vwire/vport[0]!
[   15.775608] apcli0: VLAN features updated vwire/vport[0]!
[   15.775839] APCLI init address table. Max count:64
[   15.775845] 80211> re-init bands...
[   15.775847] 80211> RFICType= 1, NumOfChan= 14
[   15.775849] 80211> Number of rate = 12
[   15.775851] 80211> CurTxPower = 0 dBm
[   15.775880] @@@ ed_monitor_init : ===>
[   15.775881] @@@ ed_monitor_init : <===
[   15.775888] mt7603_set_ed_cca: NON-CE Region,60200618=d748340f,ed_th=34
[   15.775890] mt7603_set_ed_cca: TURN ON EDCCA mac 0x10618 = 0xd748340f, EDCCA_Status=1
[   15.775894] Number of Packet Allocated in open = 0
[   15.775895] Number of Packet Freed in open = 0
[   15.775898] WiFi Startup Cost (ra0): 0.272s
[   15.775989] 8021q: adding VLAN 0 to HW filter on device ra0
[   15.839392] DriverOwn()::Return since already in Driver Own...
[   15.839956] APWdsInitialize():WdsEntry[0]
[   15.839958] APWdsInitialize():WdsEntry[1]
[   15.839960] APWdsInitialize():WdsEntry[2]
[   15.839962] APWdsInitialize():WdsEntry[3]
[   15.841461] E2pAccessMode=2
[   15.841609] SSID[0]=88d0b8ba8eac1aeb, EdcaIdx=0
[   15.842395] TriBandChGrp=0/0/0/0
[   15.842679] cfg_mode=14
[   15.842681] cfg_mode=14
[   15.842684] wmode_band_equal(): Band Equal!
[   15.842816] BandSteering=0
[   15.842910] BndStrgBssIdx=0;0;0;0
[   15.842925] [TxPower] BAND0: 100
[   15.843168] [PERCENTAGEenable] BAND0: 1
[   15.843184] [BFBACKOFFenable] BAND0: 0
[   15.843200] CalCacheApply = 0
[   15.843507] SHAILESH: BSS0 VlanTag=0
[   15.843509] SHAILESH: BSS1 VlanTag=0
[   15.843510] SHAILESH: BSS2 VlanTag=0
[   15.843512] SHAILESH: BSS3 VlanTag=0
[   15.843513] SHAILESH: BSS4 VlanTag=0
[   15.843515] SHAILESH: BSS5 VlanTag=0
[   15.843516] SHAILESH: BSS6 VlanTag=0
[   15.843517] SHAILESH: BSS7 VlanTag=0
[   15.843616] SHAILESH: APCLI0 VlanTag=0
[   15.843668] APEdca0
[   15.843830] APEdca1
[   15.843962] APEdca2
[   15.844093] APEdca3
[   15.847225] APSDCapable[0]=0
[   15.847227] APSDCapable[1]=0
[   15.847228] APSDCapable[2]=0
[   15.847230] APSDCapable[3]=0
[   15.847231] APSDCapable[4]=0
[   15.847233] default ApCliAPSDCapable[0]=0
[   15.847913] DfsZeroWait Support=0/0
[   15.848257] DfsZeroWaitCacTime=255/255
[   15.868103] [PMF]Set_PMFMFPC_Proc:: apidx=0, Desired MFPC=0
[   15.868182] [PMF]Set_PMFMFPR_Proc:: apidx=0, Desired MFPR=0
[   15.868262] [PMF]Set_PMFSHA256_Proc:: apidx=0, Desired PMFSHA256=0
[   15.871869] rtmp_read_wds_from_file(): WDS Profile
[   15.872334] APWdsInitialize():WdsEntry[0]
[   15.872335] APWdsInitialize():WdsEntry[1]
[   15.872337] APWdsInitialize():WdsEntry[2]
[   15.872338] APWdsInitialize():WdsEntry[3]
[   15.872340] WDS-Enable mode=0
[   15.873647] HT: WDEV[0] Ext Channel = ABOVE
[   15.879054] BSS0 MinPhyDataRate=0
[   15.879057] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879058] BSS1 MinPhyDataRate=0
[   15.879060] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879062] BSS2 MinPhyDataRate=0
[   15.879063] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879065] BSS3 MinPhyDataRate=0
[   15.879067] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879068] BSS4 MinPhyDataRate=0
[   15.879070] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879071] BSS5 MinPhyDataRate=0
[   15.879073] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879074] BSS6 MinPhyDataRate=0
[   15.879075] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879077] BSS7 MinPhyDataRate=0
[   15.879078] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879174] BSS0 MinPhyBeaconRate=0
[   15.879176] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879177] BSS1 MinPhyBeaconRate=0
[   15.879179] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879180] BSS2 MinPhyBeaconRate=0
[   15.879182] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879184] BSS3 MinPhyBeaconRate=0
[   15.879185] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879187] BSS4 MinPhyBeaconRate=0
[   15.879188] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879189] BSS5 MinPhyBeaconRate=0
[   15.879191] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879192] BSS6 MinPhyBeaconRate=0
[   15.879194] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879195] BSS7 MinPhyBeaconRate=0
[   15.879197] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879293] BSS0 MinPhyMgmtRate=0
[   15.879295] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879296] BSS1 MinPhyMgmtRate=0
[   15.879298] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879299] BSS2 MinPhyMgmtRate=0
[   15.879301] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879302] BSS3 MinPhyMgmtRate=0
[   15.879304] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879305] BSS4 MinPhyMgmtRate=0
[   15.879307] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879308] BSS5 MinPhyMgmtRate=0
[   15.879310] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879311] BSS6 MinPhyMgmtRate=0
[   15.879313] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879314] BSS7 MinPhyMgmtRate=0
[   15.879316] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879413] BSS0 MinPhyBcMcRate=0
[   15.879414] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879416] BSS1 MinPhyBcMcRate=0
[   15.879417] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879419] BSS2 MinPhyBcMcRate=0
[   15.879420] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879422] BSS3 MinPhyBcMcRate=0
[   15.879423] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879425] BSS4 MinPhyBcMcRate=0
[   15.879426] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879428] BSS5 MinPhyBcMcRate=0
[   15.879429] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879430] BSS6 MinPhyBcMcRate=0
[   15.879432] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879433] BSS7 MinPhyBcMcRate=0
[   15.879435] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879532] BSS0 LimitClientSupportRate=0
[   15.879534] BSS1 LimitClientSupportRate=0
[   15.879536] BSS2 LimitClientSupportRate=0
[   15.879537] BSS3 LimitClientSupportRate=0
[   15.879538] BSS4 LimitClientSupportRate=0
[   15.879540] BSS5 LimitClientSupportRate=0
[   15.879541] BSS6 LimitClientSupportRate=0
[   15.879543] BSS7 LimitClientSupportRate=0
[   15.895655] IcapMode = 0
[   15.895941] CFG80211Radio = 1
[   15.896074] scanEntryTimeoutSetProfileParam(): Normal scan entry aging timeout = 60s
[   15.896206] bootupScanSetProfileParam(): Boot-up scan = 0s
[   15.896689] RTMPSetProfileParameters()  BandIdx=0, SCSEnable=0
[   15.896691] mt7615_SetSCS()  BandIdx=0, SCSEnable=0
[   15.896927] WtcSetMaxStaNum: MaxStaNum:82, BssidNum:8, WdsNum:4, ApcliNum:1, MaxNumChipRept:32, MinMcastWcid:119
[   15.896970] Top Init Done!
[   15.896978] Use dev_alloc_skb
[   15.897112] RX[0] DESC 0000000061c341fe size = 16384
[   15.897297] RX[1] DESC 0000000059c5091a size = 8192
[   15.897482] Hif Init Done!
[   15.897486] ctl->txq = 0000000041583e86
[   15.897488] ctl->rxq = 00000000422ccf3d
[   15.897490] ctl->ackq = 0000000000fe18d5
[   15.897491] ctl->kickq = 00000000e179b57b
[   15.897493] ctl->tx_doneq = 000000001c23e0e9
[   15.897494] ctl->rx_doneq = 00000000285557e9
[   15.898562] mt7615_fw_prepare():FW(8a10), HW(8a10), CHIPID(7615))
[   15.898564] mt7615_fw_prepare(2755): MT7615_E3, USE E3 patch and ram code binary image
[   15.898568] AndesMTLoadRomMethodFwDlRing(1036), cap->rom_patch_len(11102)
[   15.898573] AndesRestartCheck: Current TOP_MISC2(0x1)
[   15.898576] AndesRestartCheck: (TOP_MISC2 = 1), ready to continue...RET(0)
[   15.898578] 2
[   15.898578] 0
[   15.898579] 1
[   15.898581] 7
[   15.898582] 0
[   15.898583] 8
[   15.898584] 0
[   15.898585] 9
[   15.898586] 1
[   15.898587] 9
[   15.898589] 2
[   15.898590] 7
[   15.898591] 1
[   15.898592] 8
[   15.898593] a


[   15.898597] platform =
[   15.898598] A
[   15.898598] L
[   15.898599] P
[   15.898601] S

[   15.898603] hw/sw version =
[   15.898605] 8a
[   15.898605] 10
[   15.898607] 8a
[   15.898608] 10

[   15.898610] patch version =
[   15.898612] 00
[   15.898612] 00
[   15.898613] 00
[   15.898615] 10

[   15.898679] Patch SEM Status=2
[   15.898691] MtCmdPatchSemGet:(ret = 0)
[   15.898693]
               Patch is not ready && get semaphore success, SemStatus(2)
[   15.898728] EventGenericEventHandler: CMD Success
[   15.898734] MtCmdAddressLenReq:(ret = 0)
[   15.898749] MtCmdPatchFinishReq
[   15.910030] EventGenericEventHandler: CMD Success
[   15.910059] Send checksum req..
[   15.910097] Patch SEM Status=3
[   15.910125] MtCmdPatchSemGet:(ret = 0)
[   15.910127]
               Release patch semaphore, SemStatus(3)
[   15.910129] AndesMTEraseRomPatch
[   15.910132] WfMcuHwInit: Before NICLoadFirmware, check IcapMode=0
[   15.910136] AndesMTLoadFwMethodFwDlRing(810), cap->fw_len(455080)
[   15.910139] Build Date:
[   15.910139] _
[   15.910141] 2
[   15.910142] 0
[   15.910143] 1
[   15.910144] 9
[   15.910145] 1
[   15.910146] 1
[   15.910147] 1
[   15.910149] 2
[   15.910150] 1
[   15.910151] 8
[   15.910152] 0
[   15.910153] 2

[   15.910155] Build Date:
[   15.910156] _
[   15.910157] 2
[   15.910158] 0
[   15.910159] 1
[   15.910160] 9
[   15.910161] 1
[   15.910163] 1
[   15.910164] 1
[   15.910165] 2
[   15.910166] 1
[   15.910167] 8
[   15.910168] 0
[   15.910169] 2

[   15.910174] AndesRestartCheck: Current TOP_MISC2(0x1)
[   15.910176] AndesRestartCheck: (TOP_MISC2 = 1), ready to continue...RET(0)
[   15.910211] EventGenericEventHandler: CMD Success
[   15.910217] MtCmdAddressLenReq:(ret = 0)
[   15.914197] EventGenericEventHandler: CMD Success
[   15.914228] MtCmdAddressLenReq:(ret = 0)
[   15.914285] MtCmdFwStartReq: override = 1, address = 540672
[   15.914864] EventGenericEventHandler: CMD Success
[   15.914871] Build Date:
[   15.914872] _
[   15.914873] 2
[   15.914874] 0
[   15.914875] 2
[   15.914876] 0
[   15.914877] 1
[   15.914879] 1
[   15.914880] 2
[   15.914881] 4
[   15.914882] 1
[   15.914883] 1
[   15.914884] 4
[   15.914885] 3

[   15.914921] EventGenericEventHandler: CMD Success
[   15.914927] MtCmdAddressLenReq:(ret = 0)
[   15.915055] MtCmdFwStartReq: override = 4, address = 0
[   15.951663] EventGenericEventHandler: CMD Success
[   16.021388] WfMcuHwInit: NICLoadFirmware OK, Check IcapMode=0
[   16.021391] MCU Init Done!
[   16.021398] efuse_probe: efuse = 10000212
[   16.021400] RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5
[   16.021402] RtmpEepromGetDefault::e2p_dafault=1
[   16.021404] RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1
[   16.021406] NVM is FLASH mode. dev_idx [1] FLASH OFFSET [0x8000]
[   16.028367] NICReadEEPROMParameters: EEPROM 0x52 b302
[   16.028370] NICReadEEPROMParameters: EEPROM 0x52 b302
[   23.513997] Country Region from e2p = 101
[   23.514002] mt7615_antenna_default_reset(): TxPath = 4, RxPath = 4
[   23.514004] mt7615_antenna_default_reset(): DBDC 2G TxPath = 2, 2G RxPath = 2
[   23.514006] mt7615_antenna_default_reset(): DBDC 5G TxPath = 2, 2G RxPath = 2
[   23.514012] rtmp_read_txpwr_from_eeprom(234): Don't Support this now!
[   23.514014] RTMPReadTxPwrPerRate(1382): Don't Support this now!
[   23.514018] RcRadioInit(): DbdcMode=0, ConcurrentBand=1
[   23.514022] RcRadioInit(): pRadioCtrl=0000000026ef3511,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xf
[   23.514024] Band Rf: 1, Phy Mode: 2
[   23.514026] AntCfgInit(2824): Not support for HIF_MT yet!
[   23.514031] ubnt_load_sku_data: UBNT MT RF_LOCKDOWN Feature ON !!!
[   23.514035] --> Using builtin MT SKU table for US
[   23.514108] MtBfBackOffLoadTable: RF_LOCKDOWN Feature OFF !!!
[   23.514328] RtmpOSFileOpen(): Error 2 opening /etc_ro/Wireless/RT2860AP/7615_SingleSKU_BF.dat
[   23.514330] EEPROM Init Done!
[   23.514335] mt_mac_init()-->
[   23.514337] mt_mac_pse_init(2775): Don't Support this now!
[   23.514339] mt7615_init_mac_cr()-->
[   23.514351] mt7615_init_mac_cr(): TMAC_TRCR0=0x82783c8c
[   23.514370] MtAsicSetMacMaxLen(1301): Not finish Yet!
[   23.514372] <--mt_mac_init()
[   23.514602] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   23.514661] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   23.514715] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   23.514724] MAC Init Done!
[   23.514727] MT7615BBPInit():BBP Initialization.....
[   23.514730]  Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2
[   23.514733]  Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0
[   23.514734] MT7615BBPInit() todo
[   23.514735] PHY Init Done!
[   23.514980] tx_pwr_comp_init():NotSupportYet!
[   23.515093] MtCmdSetMacTxRx:(ret = 0)
[   23.515236] ApAutoChannelAtBootUp----------------->
[   23.515238] ApAutoChannelAtBootUp: AutoChannelBootup = 1, AutoChannelFlag = 1
[   23.515352] MtCmdSetMacTxRx:(ret = 0)
[   26.743717] ====================================================================
[   26.743721] Channel  36 : Busy Time =   5323, Skip Channel = FALSE, BwCap = TRUE
[   26.743724] Channel  40 : Busy Time =   3321, Skip Channel = FALSE, BwCap = TRUE
[   26.743725] Channel  44 : Busy Time =  12917, Skip Channel = FALSE, BwCap = TRUE
[   26.743727] Channel  48 : Busy Time =   3252, Skip Channel = FALSE, BwCap = TRUE
[   26.743729] Channel 149 : Busy Time =    920, Skip Channel = FALSE, BwCap = TRUE
[   26.743731] Channel 153 : Busy Time =   1041, Skip Channel = FALSE, BwCap = TRUE
[   26.743732] Channel 157 : Busy Time =   1107, Skip Channel = FALSE, BwCap = TRUE
[   26.743734] Channel 161 : Busy Time =    320, Skip Channel = FALSE, BwCap = TRUE
[   26.743735] ====================================================================
[   26.743738] Rule 3 Channel Busy time value : Select Primary Channel 161
[   26.743740] Rule 3 Channel Busy time value : Min Channel Busy = 1107
[   26.743742] Rule 3 Channel Busy time value : BW = 80
[   26.743745]  AutoChSelUpdateChannel(): Update channel for wdev0 for this band PhyMode = 49,Channel = 161
[   26.743747]  AutoChSelUpdateChannel(): Update channel for wdev1 for this band PhyMode = 49,Channel = 161
[   26.743749]  AutoChSelUpdateChannel(): Update channel for wdev2 for this band PhyMode = 49,Channel = 161
[   26.743751]  AutoChSelUpdateChannel(): Update channel for wdev3 for this band PhyMode = 49,Channel = 161
[   26.743753]  AutoChSelUpdateChannel(): Update channel for wdev4 for this band PhyMode = 49,Channel = 161
[   26.743755]  AutoChSelUpdateChannel(): Update channel for wdev5 for this band PhyMode = 49,Channel = 161
[   26.743757]  AutoChSelUpdateChannel(): Update channel for wdev6 for this band PhyMode = 49,Channel = 161
[   26.743759]  AutoChSelUpdateChannel(): Update channel for wdev7 for this band PhyMode = 49,Channel = 161
[   26.743760] ApAutoChannelAtBootUp<-----------------
[   26.743763] WifiSysOpen(), wdev idx = 0
[   26.743767] wdev_attr_update(): wdevId0 = e0:63:da:21:ac:23
[   26.744026] Current Channel is 161. DfsZeroWaitSupport=0
[   26.744037] MtAsicSetChBusyStat(841): Not support for HIF_MT yet!
[   26.744049] [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0
[   26.744053] [RSN IE CAP] WPAMakeRsnIeCap RSN CAP 00 00
[   26.744057] HcUpdatePhyMode(): Update PhyMode for all wdev for this band PhyMode:49,Channel=161
[   26.744146] wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:127 for WDEV_TYPE:1
                LinkToOmacIdx = 0, LinkToWdevType = 1
[   26.751447] bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO),                 CmdBssInfoBmcRate.u2BcTransmit= 8192,                 CmdBssInfoBmcRate.u2McTransmit = 8192
[   26.769663]  [RadarStateCheck]Set into RD_NORMAL_MODE
[   26.769665] APStartUpForMbss: UBNT RF lock down!! SKUenable = 1!!
[   26.769668] MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0
[   26.769675] MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0
[   26.769679] MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0
[   26.769687] mt7615_bbp_adjust():rf_bw=2, ext_ch=3, PrimCh=161, HT-CentCh=159, VHT-CentCh=155
[   26.815452] ap_phy_rrm_init_byRf(): AP Set CentralFreq at 155(Prim=161, HT-CentCh=159, VHT-CentCh=155, BBP_BW=2)
[   26.815514] LeadTimeForBcn, OmacIdx = 0, WDEV_WITH_BCN_ABILITY
[   26.815547] MtAsicSetRalinkBurstMode(2624): Not support for HIF_MT yet!
[   26.815549] MtAsicSetPiggyBack(778): Not support for HIF_MT yet!
[   26.815551] MtAsicSetTxPreamble(2603): Not support for HIF_MT yet!
[   26.815568] ap_ftkd> Initialize FT KDP Module...
[   26.815572] Main bssid = e0:63:da:21:ac:23
[   26.815791] AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn
[   26.816028] MtCmdSetMacTxRx:(ret = 0)
[   26.816080] fdb_enable()
[   27.119090] MCS Set = ff ff ff ff 01
[   27.119098] <==== mt_wifi_init, Status=0
[   27.119107] MtCmdEDCCACtrl: BandIdx: 0, EDCCACtrl: 1
[   27.119306] rai1: VLAN features updated vwire/vport[0]!
[   27.119648] rai2: VLAN features updated vwire/vport[0]!
[   27.120044] rai3: VLAN features updated vwire/vport[0]!
[   27.120383] rai4: VLAN features updated vwire/vport[0]!
[   27.120646] rai5: VLAN features updated vwire/vport[0]!
[   27.120952] rai6: VLAN features updated vwire/vport[0]!
[   27.121203] rai7: VLAN features updated vwire/vport[0]!
[   27.121403] WDS_Init():
[   27.121513] The new WDS interface MAC = FF:FF:FF:FF:FF:FF
[   27.121515]   MacTabMatchWCID = 0
[   27.121551] wdsi0: VLAN features updated vwire/vport[0]!
[   27.121839] The new WDS interface MAC = FF:FF:FF:FF:FF:FF
[   27.121841]   MacTabMatchWCID = 0
[   27.121868] wdsi1: VLAN features updated vwire/vport[0]!
[   27.122168] The new WDS interface MAC = FF:FF:FF:FF:FF:FF
[   27.122171]   MacTabMatchWCID = 0
[   27.122194] wdsi2: VLAN features updated vwire/vport[0]!
[   27.122446] The new WDS interface MAC = FF:FF:FF:FF:FF:FF
[   27.122448]   MacTabMatchWCID = 0
[   27.122470] wdsi3: VLAN features updated vwire/vport[0]!
[   27.122665] Total allocated 4 WDS interfaces!
[   27.122785] apclii0: VLAN features updated vwire/vport[0]!
[   27.123019] APCLI init address table. Max count:64
[   27.123025] 80211> re-init bands...
[   27.123027] 80211> RFICType= 3, NumOfChan= 48
[   27.123029] 80211> Number of rate = 12
[   27.123030] 80211> CurTxPower = 0 dBm
[   27.123034] 80211> TxStream = 4
[   27.123039] WtcSetMaxStaNum: MaxStaNum:82, BssidNum:8, WdsNum:4, ApcliNum:1, MaxNumChipRept:32, MinMcastWcid:119
[   27.123060] red_is_enabled: set CR4/N9 RED Enable to 1.
[   27.123065] cp_support_is_enabled: set CR4 CP_SUPPORT to Mode 2.
[   27.123067] Correct apidx from 0 to 0 for WscUUIDInit
[   27.123069] Generate UUID for apidx(0)
[   27.123180] 8021q: adding VLAN 0 to HW filter on device rai0
[   27.164421] device ra0 entered promiscuous mode
[   27.167304] device rai0 entered promiscuous mode
[   27.191768] br0: port 2(rai0) entered blocking state
[   27.191772] br0: port 2(rai0) entered disabled state
[   27.191887] br0: port 2(rai0) entered blocking state
[   27.191890] br0: port 2(rai0) entered forwarding state
[   27.197085] br0: port 3(ra0) entered blocking state
[   27.197089] br0: port 3(ra0) entered disabled state
[   27.197194] br0: port 3(ra0) entered blocking state
[   27.197197] br0: port 3(ra0) entered forwarding state
[   27.724888] PPP generic driver version 2.4.2
[   30.580462] NET: Registered protocol family 24
[   32.222105] br0: port 1(switch0) entered disabled state
[   32.363352] br0: port 1(switch0.1) entered blocking state
[   32.363356] br0: port 1(switch0.1) entered disabled state
[   32.363451] device switch0.1 entered promiscuous mode
[   32.363495] br0: port 1(switch0.1) entered blocking state
[   32.363498] br0: port 1(switch0.1) entered forwarding state
[   32.448702] ICMPv6: process `ubios-udapi-ser' is using deprecated sysctl (syscall) net.ipv6.neigh.apcli0.base_reachable_time - use net.ipv6.neigh.apcli0.base_reachable_time_ms instead
[   32.500768] Init chrdev /dev/detector with major 190
[   32.500777] tdts: tcp_conn_max = 32000

[   32.500779] tdts: tcp_conn_timeout = 300 sec

[   34.056151] cgroup: podman (2491) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   34.056155] cgroup: "memory" requires setting use_hierarchy to 1 on the root
[   34.525003] MTPciPollTxRxEmpty
[   35.142111] AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0
[   35.142115] RTMPSetPiggyBack(1101): Not support for HIF_MT yet!
[   35.142125] ap_ftkd> Release FT KDP Module...
[   35.147310] RT28xxPciAsicRadioOff(): Not support for HIF_MT yet!
[   35.147313] RTMPDrvClose call RT28xxPciAsicRadioOff fail !!
[   35.147328] tx_kickout_fail_count = 0
[   35.147329] tx_timeout_fail_count = 0
[   35.147331] rx_receive_fail_count = 0
[   35.147332] alloc_cmd_msg = 36
[   35.147334] free_cmd_msg = 36
[   35.157087] br0: port 3(ra0) entered disabled state
[   35.157684] Unkown frame_type = 20, req = 1
[   35.157703] Unkown frame_type = 0, req = 1
[   35.157830] TX_BCN DESC 0000000093ee700e size = 320
[   35.157836] RX[0] DESC 0000000085f36136 size = 2048
[   35.157910] RX[1] DESC 0000000015ea0287 size = 2048
[   35.158779] UserCfgInit: UBNT RF lock down!! SKUenable = 1!!
[   35.159194] cfg_mode=9
[   35.159196] cfg_mode=9
[   35.159200] wmode_band_equal(): Band Equal!
[   35.159337] BSS0 MinDataRate=6
[   35.159339] BSS1 MinDataRate=0
[   35.159340] BSS2 MinDataRate=0
[   35.159342] BSS3 MinDataRate=0
[   35.159343] BSS4 MinDataRate=0
[   35.159345] BSS5 MinDataRate=0
[   35.159346] BSS6 MinDataRate=0
[   35.159348] BSS7 MinDataRate=0
[   35.159394] BSS0 MinBCMCRate=6
[   35.159395] BSS1 MinBCMCRate=0
[   35.159397] BSS2 MinBCMCRate=0
[   35.159398] BSS3 MinBCMCRate=0
[   35.159399] BSS4 MinBCMCRate=0
[   35.159401] BSS5 MinBCMCRate=0
[   35.159402] BSS6 MinBCMCRate=0
[   35.159404] BSS7 MinBCMCRate=0
[   35.159445] BSS0 MinMgmtRate=6
[   35.159447] BSS1 MinMgmtRate=0
[   35.159448] BSS2 MinMgmtRate=0
[   35.159450] BSS3 MinMgmtRate=0
[   35.159451] BSS4 MinMgmtRate=0
[   35.159452] BSS5 MinMgmtRate=0
[   35.159454] BSS6 MinMgmtRate=0
[   35.159455] BSS7 MinMgmtRate=0
[   35.159496] BSS0 MinBeaconRate=6
[   35.159498] BSS1 MinBeaconRate=0
[   35.159499] BSS2 MinBeaconRate=0
[   35.159501] BSS3 MinBeaconRate=0
[   35.159502] BSS4 MinBeaconRate=0
[   35.159504] BSS5 MinBeaconRate=0
[   35.159505] BSS6 MinBeaconRate=0
[   35.159507] BSS7 MinBeaconRate=0
[   35.159549] BSS0 LimitClientSupportRate=0
[   35.159551] BSS1 LimitClientSupportRate=0
[   35.159552] BSS2 LimitClientSupportRate=0
[   35.159554] BSS3 LimitClientSupportRate=0
[   35.159555] BSS4 LimitClientSupportRate=0
[   35.159557] BSS5 LimitClientSupportRate=0
[   35.159558] BSS6 LimitClientSupportRate=0
[   35.159560] BSS7 LimitClientSupportRate=0
[   35.159603] BSS0 DisableCCKRate=1
[   35.159605] BSS1 DisableCCKRate=0
[   35.159606] BSS2 DisableCCKRate=0
[   35.159608] BSS3 DisableCCKRate=0
[   35.159609] BSS4 DisableCCKRate=0
[   35.159611] BSS5 DisableCCKRate=0
[   35.159612] BSS6 DisableCCKRate=0
[   35.159614] BSS7 DisableCCKRate=0
[   35.159745] BandSteering=0
[   35.159782] BndStrgBssIdx=0;0;0;0
[   35.160103] APSDCapable[0]=0
[   35.160105] APSDCapable[1]=0
[   35.160107] APSDCapable[2]=0
[   35.160108] APSDCapable[3]=0
[   35.160109] APSDCapable[4]=0
[   35.160111] default ApCliAPSDCapable[0]=0
[   35.186208] Key1Str is Invalid key length(0) or Type(0)
[   35.186577] Key2Str is Invalid key length(0) or Type(0)
[   35.186946] Key3Str is Invalid key length(0) or Type(0)
[   35.187314] Key4Str is Invalid key length(0) or Type(0)
[   35.199937] Smart Carrier Sense = 0
[   35.199989] CFG80211Radio = 1
[   35.200037] scanEntryTimeoutSetProfileParam(): Normal scan entry aging timeout = 60s
[   35.200070] ==>RTMPSetProfileParameters (OFF)
[   35.200159] ubnt_load_sku_data: UBNT RLT RF_LOCKDOWN Feature ON !!!
[   35.200162] --> Using builtin RLT SKU table for US
[   35.200264] FW Version:
[   35.200265] a
[   35.200266] p
[   35.200267] _
[   35.200269] p
[   35.200270] c
[   35.200271] i
[   35.200272] e
[   35.200273]
[   35.200274]
[   35.200275]

[   35.200278] FW Build Date:
[   35.200278] 2
[   35.200280] 0
[   35.200281] 1
[   35.200282] 6
[   35.200283] 0
[   35.200284] 1
[   35.200285] 0
[   35.200286] 7
[   35.200287] 1
[   35.200289] 0
[   35.200290] 0
[   35.200291] 7
[   35.200292] 5
[   35.200293] 5
[   35.200294]

[   35.200310] AsicDMASchedulerInit(): DMA Scheduler Mode=0(LMAC)
[   35.200331] efuse_probe: efuse = 10000012
[   35.200334] RtmpChipOpsEepromHook::e2p_type=1, inf_Type=5
[   35.200335] RtmpEepromGetDefault::e2p_dafault=1
[   35.200337] RtmpChipOpsEepromHook: E2P type(1), E2pAccessMode = 1, E2P default = 1
[   35.200339] NVM is EFUSE mode
[   35.200350] 1. Phy Mode = 14
[   35.200352] NVM is Efuse and its size =1d[1e0-1fc]
[   35.200503] Load EEPROM buffer from efuse, and change to BIN buffer mode
[   35.204922] efuse_probe: efuse = 10000012
[   35.204924] RtmpChipOpsEepromHook::forceMode: 4 , infType: 5
[   35.204925] NVM is BIN mode
[   35.204927] @@@  NICReadEEPROMParameters : pAd->FWLoad=1
[   35.204930] Country Region from e2p = ffff
[   35.204934] tssi_1_target_pwr_g_band = 34
[   35.204938] 2. Phy Mode = 14
[   35.205046] 3. Phy Mode = 14
[   35.205049] NICInitPwrPinCfg(15): Not support for HIF_MT yet!
[   35.205051] NICInitializeAsic(845): Not support rtmp_mac_sys_reset () for HIF_MT yet!
[   35.205053] mt_mac_init()-->
[   35.205054] mt7603_init_mac_cr()-->
[   35.205252] AsicSetMacMaxLen(2548): Set the Max RxPktLen=1024!
[   35.205255] <--mt_mac_init()
[   35.205395]  WTBL Segment 1 info:
[   35.205397]          MemBaseAddr/FID:0x28000/0
[   35.205398]          EntrySize/Cnt:32/128
[   35.205400]  WTBL Segment 2 info:
[   35.205401]          MemBaseAddr/FID:0x40000/0
[   35.205403]          EntrySize/Cnt:64/128
[   35.205404]  WTBL Segment 3 info:
[   35.205406]          MemBaseAddr/FID:0x42000/64
[   35.205407]          EntrySize/Cnt:64/128
[   35.205408]  WTBL Segment 4 info:
[   35.205410]          MemBaseAddr/FID:0x44000/128
[   35.205411]          EntrySize/Cnt:32/128
[   35.205420] MtAsicACQueue: Write CR:21510, Value=10421
[   35.205426] MtAsicACQueue: Write CR:21500, Value=10421
[   35.205494] AntCfgInit(3787): Not support for HIF_MT yet!
[   35.205511] Ucast set for OFDM mode MCS 0
[   35.205541] MCS Set = ff ff 00 00 00
[   35.205558] [PMF]ap_pmf_init:: apidx=0, MFPC=0, MFPR=0, SHA256=0
[   35.205564] [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0
[   35.205581] [PMF]ap_pmf_init:: apidx=1, MFPC=0, MFPR=0, SHA256=0
[   35.205587] [PMF]ap_pmf_init:: apidx=2, MFPC=0, MFPR=0, SHA256=0
[   35.205593] [PMF]ap_pmf_init:: apidx=3, MFPC=0, MFPR=0, SHA256=0
[   35.205599] [PMF]ap_pmf_init:: apidx=4, MFPC=0, MFPR=0, SHA256=0
[   35.205605] [PMF]ap_pmf_init:: apidx=5, MFPC=0, MFPR=0, SHA256=0
[   35.205610] [PMF]ap_pmf_init:: apidx=6, MFPC=0, MFPR=0, SHA256=0
[   35.205616] [PMF]ap_pmf_init:: apidx=7, MFPC=0, MFPR=0, SHA256=0
[   35.205638] AsicSetRalinkBurstMode(5291): Not support for HIF_MT yet!
[   35.205640] RTMPSetPiggyBack(1101): Not support for HIF_MT yet!
[   35.228074] AsicSetTxPreamble(5270): Not support for HIF_MT yet!
[   35.228079] Ucast set for OFDM mode MCS 0
[   35.228597] AsicAddSharedKeyEntry(2714): Not support for HIF_MT yet!
[   35.228639] AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0
[   35.228642] ap_ftkd> Initialize FT KDP Module...
[   35.228646] Main bssid = e0:63:da:21:ac:22
[   35.228734] <==== rt28xx_init, Status=0
[   35.228740] 80211> re-init bands...
[   35.228742] 80211> RFICType= 1, NumOfChan= 14
[   35.228743] 80211> Number of rate = 12
[   35.228745] 80211> CurTxPower = 0 dBm
[   35.228769] @@@ ed_monitor_init : ===>
[   35.228770] @@@ ed_monitor_init : <===
[   35.228775] mt7603_set_ed_cca: NON-CE Region,60200618=d748340f,ed_th=34
[   35.228778] mt7603_set_ed_cca: TURN ON EDCCA mac 0x10618 = 0xd748340f, EDCCA_Status=1
[   35.228781] Number of Packet Allocated in open = 0
[   35.228782] Number of Packet Freed in open = 0
[   35.228784] WiFi Startup Cost (ra0): 0.072s
[   35.228922] br0: port 3(ra0) entered blocking state
[   35.228928] br0: port 3(ra0) entered forwarding state
[   35.228954] 8021q: adding VLAN 0 to HW filter on device ra0
[   35.230703] WifiSysClose(), wdev idx = 0
[   35.230879] WifiSysGetBssInfoState(): BssInfoIdx 0 not found!!!
[   35.230882] WifiSysUpdateBssInfoState(): BssInfoIdx 0 not found!!!
[   35.231357] rai0: VLAN features updated vwire/vport[0]!
[   35.231386] MtAsicSetPiggyBack(778): Not support for HIF_MT yet!
[   35.231389] WifiSysClose(), wdev idx = 0
[   35.231399] WifiSysClose(), wdev idx = 1
[   35.231401] WifiSysClose(), wdev idx = 2
[   35.231403] WifiSysClose(), wdev idx = 3
[   35.231405] WifiSysClose(), wdev idx = 4
[   35.231406] WifiSysClose(), wdev idx = 5
[   35.231408] WifiSysClose(), wdev idx = 6
[   35.231410] WifiSysClose(), wdev idx = 7
[   35.231522] ap_ftkd> Release FT KDP Module...
[   35.231528] MtAsicSetPiggyBack(778): Not support for HIF_MT yet!
[   35.231608] kill LoopBackTxTask task failed!
[   35.236658] AndesRestartCheck: Current TOP_MISC2(0x7)
[   35.280058] CmdReStartDLRsp: Status Success!, Status(0)
[   35.281082] AndesRestartCheck:  TOP_MISC2(1)
[   35.281201] RT28xxPciAsicRadioOff(): Not support for HIF_MT yet!
[   35.281203] RTMPDrvClose call RT28xxPciAsicRadioOff fail !!
[   35.281239] tx_kickout_fail_count = 0
[   35.281240] tx_timeout_fail_count = 0
[   35.281242] rx_receive_fail_count = 0
[   35.281243] alloc_cmd_msg = 392
[   35.281245] free_cmd_msg = 392
[   35.281742] cut_through_token_list_destroy(): 0000000057b7b19b,0000000057b7b19b
[   35.281833] cut_through_token_list_destroy(): 00000000f1059b6c,00000000f1059b6c
[   35.282507] FwOwn()::Set Fw Own
[   35.284740] RTMP_AllTimerListRelease: Size=34
[   35.284742] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d6c5e40!
[   35.284821] RTMP_AllTimerListRelease: Timer is allocated by APOneShotSettingInitialize+0xcc/0x6b0 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:1
[   35.284824] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d6c5e98!
[   35.284864] RTMP_AllTimerListRelease: Timer is allocated by APOneShotSettingInitialize+0xf4/0x6b0 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:1
[   35.284885] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5aa9d0!
[   35.284927] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.284929] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5aaa28!
[   35.284970] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.284972] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5b17c0!
[   35.285012] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285014] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5b1818!
[   35.285054] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285056] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5b85b0!
[   35.285096] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285098] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5b8608!
[   35.285138] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285140] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5bf3a0!
[   35.285180] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285183] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5bf3f8!
[   35.285223] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285225] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5c6190!
[   35.285265] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285267] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5c61e8!
[   35.285307] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285309] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5ccf80!
[   35.285349] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285351] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5ccfd8!
[   35.285391] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285393] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5d3d70!
[   35.285433] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285435] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5d3dc8!
[   35.285475] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285477] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5dab60!
[   35.285517] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285519] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5dabb8!
[   35.285560] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285562] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5e1950!
[   35.285602] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285604] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5e19a8!
[   35.285644] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285646] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5e8740!
[   35.285686] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285688] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5e8798!
[   35.285728] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285730] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5ef530!
[   35.285771] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285773] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5ef588!
[   35.285813] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285815] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5f6320!
[   35.285855] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285857] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5f6378!
[   35.285897] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285899] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5fd110!
[   35.285940] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285942] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5fd168!
[   35.285982] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285984] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d603f00!
[   35.286024] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286026] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d603f58!
[   35.286066] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286068] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d60acf0!
[   35.286109] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286111] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d60ad48!
[   35.286151] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286153] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d611ae0!
[   35.286193] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286195] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d611b38!
[   35.286235] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286238] FwOwn()::Return since already in Fw Own...
[   35.286257] <---HwCtrlThread
[   35.293981] br0: port 2(rai0) entered disabled state
[   35.298443] DriverOwn()::Try to Clear FW Own...
[   35.599293] DriverOwn()::Success to clear FW Own
[   35.602994] APWdsInitialize():WdsEntry[0]
[   35.602998] APWdsInitialize():WdsEntry[1]
[   35.603000] APWdsInitialize():WdsEntry[2]
[   35.603002] APWdsInitialize():WdsEntry[3]
[   35.604732] E2pAccessMode=2
[   35.604892] SSID[0]=88d0b8ba8eac1aeb, EdcaIdx=0
[   35.605702] TriBandChGrp=0/0/0/0
[   35.606008] cfg_mode=14
[   35.606010] cfg_mode=14
[   35.606014] wmode_band_equal(): Band Equal!
[   35.606154] BandSteering=0
[   35.606256] BndStrgBssIdx=0;0;0;0
[   35.606271] [TxPower] BAND0: 100
[   35.606532] [PERCENTAGEenable] BAND0: 1
[   35.606550] [BFBACKOFFenable] BAND0: 0
[   35.606566] CalCacheApply = 0
[   35.606903] SHAILESH: BSS0 VlanTag=0
[   35.606905] SHAILESH: BSS1 VlanTag=0
[   35.606906] SHAILESH: BSS2 VlanTag=0
[   35.606908] SHAILESH: BSS3 VlanTag=0
[   35.606909] SHAILESH: BSS4 VlanTag=0
[   35.606911] SHAILESH: BSS5 VlanTag=0
[   35.606912] SHAILESH: BSS6 VlanTag=0
[   35.606914] SHAILESH: BSS7 VlanTag=0
[   35.607022] SHAILESH: APCLI0 VlanTag=0
[   35.607077] APEdca0
[   35.607222] APEdca1
[   35.607367] APEdca2
[   35.607512] APEdca3
[   35.610938] APSDCapable[0]=0
[   35.610941] APSDCapable[1]=0
[   35.610943] APSDCapable[2]=0
[   35.610945] APSDCapable[3]=0
[   35.610946] APSDCapable[4]=0
[   35.610948] default ApCliAPSDCapable[0]=0
[   35.611752] DfsZeroWait Support=0/0
[   35.612126] DfsZeroWaitCacTime=255/255
[   35.633707] [PMF]Set_PMFMFPC_Proc:: apidx=0, Desired MFPC=0
[   35.633794] [PMF]Set_PMFMFPR_Proc:: apidx=0, Desired MFPR=0
[   35.633879] [PMF]Set_PMFSHA256_Proc:: apidx=0, Desired PMFSHA256=0
[   35.635510] systemd-journald[28]: Received request to flush runtime journal from PID 1
[   35.637794] rtmp_read_wds_from_file(): WDS Profile
[   35.638304] APWdsInitialize():WdsEntry[0]
[   35.638306] APWdsInitialize():WdsEntry[1]
[   35.638308] APWdsInitialize():WdsEntry[2]
[   35.638309] APWdsInitialize():WdsEntry[3]
[   35.638311] WDS-Enable mode=0
[   35.639745] HT: WDEV[0] Ext Channel = ABOVE
[   35.645647] BSS0 MinPhyDataRate=0
[   35.645650] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645652] BSS1 MinPhyDataRate=0
[   35.645654] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645656] BSS2 MinPhyDataRate=0
[   35.645658] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645659] BSS3 MinPhyDataRate=0
[   35.645661] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645662] BSS4 MinPhyDataRate=0
[   35.645664] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645665] BSS5 MinPhyDataRate=0
[   35.645667] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645668] BSS6 MinPhyDataRate=0
[   35.645670] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645671] BSS7 MinPhyDataRate=0
[   35.645673] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645775] BSS0 MinPhyBeaconRate=0
[   35.645777] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645779] BSS1 MinPhyBeaconRate=0
[   35.645780] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645782] BSS2 MinPhyBeaconRate=0
[   35.645783] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645785] BSS3 MinPhyBeaconRate=0
[   35.645786] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645788] BSS4 MinPhyBeaconRate=0
[   35.645789] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645791] BSS5 MinPhyBeaconRate=0
[   35.645792] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645794] BSS6 MinPhyBeaconRate=0
[   35.645795] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645797] BSS7 MinPhyBeaconRate=0
[   35.645798] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645901] BSS0 MinPhyMgmtRate=0
[   35.645903] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645905] BSS1 MinPhyMgmtRate=0
[   35.645906] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645908] BSS2 MinPhyMgmtRate=0
[   35.645909] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645911] BSS3 MinPhyMgmtRate=0
[   35.645912] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645913] BSS4 MinPhyMgmtRate=0
[   35.645915] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645916] BSS5 MinPhyMgmtRate=0
[   35.645918] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645919] BSS6 MinPhyMgmtRate=0
[   35.645921] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645922] BSS7 MinPhyMgmtRate=0
[   35.645924] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.646027] BSS0 MinPhyBcMcRate=0
[   35.646029] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646031] BSS1 MinPhyBcMcRate=0
[   35.646032] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646034] BSS2 MinPhyBcMcRate=0
[   35.646035] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646037] BSS3 MinPhyBcMcRate=0
[   35.646038] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646040] BSS4 MinPhyBcMcRate=0
[   35.646041] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646042] BSS5 MinPhyBcMcRate=0
[   35.646044] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646045] BSS6 MinPhyBcMcRate=0
[   35.646047] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646048] BSS7 MinPhyBcMcRate=0
[   35.646050] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646154] BSS0 LimitClientSupportRate=0
[   35.646156] BSS1 LimitClientSupportRate=0
[   35.646158] BSS2 LimitClientSupportRate=0
[   35.646159] BSS3 LimitClientSupportRate=0
[   35.646161] BSS4 LimitClientSupportRate=0
[   35.646162] BSS5 LimitClientSupportRate=0
[   35.646163] BSS6 LimitClientSupportRate=0
[   35.646165] BSS7 LimitClientSupportRate=0
[   35.663524] IcapMode = 0
[   35.663841] CFG80211Radio = 1
[   35.663985] scanEntryTimeoutSetProfileParam(): Normal scan entry aging timeout = 60s
[   35.664129] bootupScanSetProfileParam(): Boot-up scan = 0s
[   35.664654] RTMPSetProfileParameters()  BandIdx=0, SCSEnable=0
[   35.664657] mt7615_SetSCS()  BandIdx=0, SCSEnable=0
[   35.664914] WtcSetMaxStaNum: MaxStaNum:82, BssidNum:8, WdsNum:4, ApcliNum:1, MaxNumChipRept:32, MinMcastWcid:119
[   35.664964] Top Init Done!
[   35.664973] Use dev_alloc_skb
[   35.666240] cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096
[   35.666245] cut_through_token_list_init(): 0000000051478ff5,0000000051478ff5
[   35.666348] cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096
[   35.666350] cut_through_token_list_init(): 00000000feef73fc,00000000feef73fc
[   35.666358] RX[0] DESC 0000000061c341fe size = 16384
[   35.666548] RX[1] DESC 0000000059c5091a size = 8192
[   35.666748] Hif Init Done!
[   35.666752] ctl->txq = 0000000041583e86
[   35.666754] ctl->rxq = 00000000422ccf3d
[   35.666755] ctl->ackq = 0000000000fe18d5
[   35.666757] ctl->kickq = 00000000e179b57b
[   35.666758] ctl->tx_doneq = 000000001c23e0e9
[   35.666760] ctl->rx_doneq = 00000000285557e9
[   35.667828] mt7615_fw_prepare():FW(8a10), HW(8a10), CHIPID(7615))
[   35.667831] mt7615_fw_prepare(2755): MT7615_E3, USE E3 patch and ram code binary image
[   35.667834] AndesMTLoadRomMethodFwDlRing(1036), cap->rom_patch_len(11102)
[   35.667840] AndesRestartCheck: Current TOP_MISC2(0x1)
[   35.667843] AndesRestartCheck: (TOP_MISC2 = 1), ready to continue...RET(0)
[   35.667845] 2
[   35.667845] 0
[   35.667847] 1
[   35.667848] 7
[   35.667849] 0
[   35.667850] 8
[   35.667851] 0
[   35.667852] 9
[   35.667853] 1
[   35.667855] 9
[   35.667856] 2
[   35.667857] 7
[   35.667858] 1
[   35.667859] 8
[   35.667860] a


[   35.667864] platform =
[   35.667865] A
[   35.667865] L
[   35.667867] P
[   35.667868] S

[   35.667870] hw/sw version =
[   35.667872] 8a
[   35.667872] 10
[   35.667874] 8a
[   35.667875] 10

[   35.667877] patch version =
[   35.667879] 00
[   35.667879] 00
[   35.667881] 00
[   35.667882] 10

[   35.667943] Patch SEM Status=1
[   35.667961] MtCmdPatchSemGet:(ret = 0)
[   35.667963]
               Patch is ready, continue to ILM/DLM DL, SemStatus(1)
[   35.668001] Patch SEM Status=3
[   35.668008] MtCmdPatchSemGet:(ret = 0)
[   35.668010]
               Release patch semaphore, SemStatus(3)
[   35.668012] AndesMTEraseRomPatch
[   35.668014] WfMcuHwInit: Before NICLoadFirmware, check IcapMode=0
[   35.668020] AndesMTLoadFwMethodFwDlRing(810), cap->fw_len(455080)
[   35.668022] Build Date:
[   35.668023] _
[   35.668024] 2
[   35.668025] 0
[   35.668026] 1
[   35.668027] 9
[   35.668028] 1
[   35.668029] 1
[   35.668031] 1
[   35.668032] 2
[   35.668033] 1
[   35.668034] 8
[   35.668035] 0
[   35.668036] 2

[   35.668039] Build Date:
[   35.668039] _
[   35.668040] 2
[   35.668041] 0
[   35.668042] 1
[   35.668044] 9
[   35.668045] 1
[   35.668046] 1
[   35.668047] 1
[   35.668048] 2
[   35.668049] 1
[   35.668050] 8
[   35.668051] 0
[   35.668052] 2

[   35.668057] AndesRestartCheck: Current TOP_MISC2(0x1)
[   35.668059] AndesRestartCheck: (TOP_MISC2 = 1), ready to continue...RET(0)
[   35.668094] EventGenericEventHandler: CMD Success
[   35.668101] MtCmdAddressLenReq:(ret = 0)
[   35.672115] EventGenericEventHandler: CMD Success
[   35.672128] MtCmdAddressLenReq:(ret = 0)
[   35.672211] MtCmdFwStartReq: override = 1, address = 540672
[   35.672752] EventGenericEventHandler: CMD Success
[   35.672760] Build Date:
[   35.672761] _
[   35.672763] 2
[   35.672764] 0
[   35.672765] 2
[   35.672766] 0
[   35.672767] 1
[   35.672768] 1
[   35.672771] 2
[   35.672772] 4
[   35.672773] 1
[   35.672774] 1
[   35.672775] 4
[   35.672776] 3

[   35.672814] EventGenericEventHandler: CMD Success
[   35.672821] MtCmdAddressLenReq:(ret = 0)
[   35.672979] MtCmdFwStartReq: override = 4, address = 0
[   35.709562] EventGenericEventHandler: CMD Success
[   35.779311] WfMcuHwInit: NICLoadFirmware OK, Check IcapMode=0
[   35.779315] MCU Init Done!
[   35.779323] efuse_probe: efuse = 10000212
[   35.779325] RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5
[   35.779327] RtmpEepromGetDefault::e2p_dafault=1
[   35.779329] RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1
[   35.779331] NVM is FLASH mode. dev_idx [1] FLASH OFFSET [0x8000]
[   35.786252] NICReadEEPROMParameters: EEPROM 0x52 b302
[   35.786256] NICReadEEPROMParameters: EEPROM 0x52 b302
[   43.271988] Country Region from e2p = 101
[   43.271993] mt7615_antenna_default_reset(): TxPath = 4, RxPath = 4
[   43.271996] mt7615_antenna_default_reset(): DBDC 2G TxPath = 2, 2G RxPath = 2
[   43.271997] mt7615_antenna_default_reset(): DBDC 5G TxPath = 2, 2G RxPath = 2
[   43.272003] rtmp_read_txpwr_from_eeprom(234): Don't Support this now!
[   43.272005] RTMPReadTxPwrPerRate(1382): Don't Support this now!
[   43.272009] RcRadioInit(): DbdcMode=0, ConcurrentBand=1
[   43.272012] RcRadioInit(): pRadioCtrl=0000000026ef3511,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xf
[   43.272015] Band Rf: 1, Phy Mode: 2
[   43.272017] AntCfgInit(2824): Not support for HIF_MT yet!
[   43.272023] ubnt_load_sku_data: UBNT MT RF_LOCKDOWN Feature ON !!!
[   43.272026] --> Using builtin MT SKU table for US
[   43.272103] MtBfBackOffLoadTable: RF_LOCKDOWN Feature OFF !!!
[   43.272111] RtmpOSFileOpen(): Error 2 opening /etc_ro/Wireless/RT2860AP/7615_SingleSKU_BF.dat
[   43.272113] EEPROM Init Done!
[   43.272118] mt_mac_init()-->
[   43.272120] mt_mac_pse_init(2775): Don't Support this now!
[   43.272122] mt7615_init_mac_cr()-->
[   43.272134] mt7615_init_mac_cr(): TMAC_TRCR0=0x82783c8c
[   43.272153] MtAsicSetMacMaxLen(1301): Not finish Yet!
[   43.272155] <--mt_mac_init()
[   43.272385] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   43.272518] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   43.272574] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   43.272584] MAC Init Done!
[   43.272586] MT7615BBPInit():BBP Initialization.....
[   43.272590]  Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2
[   43.272593]  Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0
[   43.272594] MT7615BBPInit() todo
[   43.272595] PHY Init Done!
[   43.273047] tx_pwr_comp_init():NotSupportYet!
[   43.273162] MtCmdSetMacTxRx:(ret = 0)
[   43.273289] ApAutoChannelAtBootUp----------------->
[   43.273291] ApAutoChannelAtBootUp: AutoChannelBootup = 1, AutoChannelFlag = 1
[   43.273405] MtCmdSetMacTxRx:(ret = 0)
[   46.535713] ====================================================================
[   46.535718] Channel  36 : Busy Time =   6650, Skip Channel = FALSE, BwCap = TRUE
[   46.535721] Channel  40 : Busy Time =   3862, Skip Channel = FALSE, BwCap = TRUE
[   46.535724] Channel  44 : Busy Time =  16008, Skip Channel = FALSE, BwCap = TRUE
[   46.535726] Channel  48 : Busy Time =   3397, Skip Channel = FALSE, BwCap = TRUE
[   46.535728] Channel 149 : Busy Time =   1682, Skip Channel = FALSE, BwCap = TRUE
[   46.535729] Channel 153 : Busy Time =    815, Skip Channel = FALSE, BwCap = TRUE
[   46.535731] Channel 157 : Busy Time =    669, Skip Channel = FALSE, BwCap = TRUE
[   46.535733] Channel 161 : Busy Time =    890, Skip Channel = FALSE, BwCap = TRUE
[   46.535734] ====================================================================
[   46.535738] Rule 3 Channel Busy time value : Select Primary Channel 157
[   46.535739] Rule 3 Channel Busy time value : Min Channel Busy = 1682
[   46.535741] Rule 3 Channel Busy time value : BW = 80
[   46.535745]  AutoChSelUpdateChannel(): Update channel for wdev0 for this band PhyMode = 49,Channel = 157
[   46.535748]  AutoChSelUpdateChannel(): Update channel for wdev1 for this band PhyMode = 49,Channel = 157
[   46.535750]  AutoChSelUpdateChannel(): Update channel for wdev2 for this band PhyMode = 49,Channel = 157
[   46.535752]  AutoChSelUpdateChannel(): Update channel for wdev3 for this band PhyMode = 49,Channel = 157
[   46.535754]  AutoChSelUpdateChannel(): Update channel for wdev4 for this band PhyMode = 49,Channel = 157
[   46.535756]  AutoChSelUpdateChannel(): Update channel for wdev5 for this band PhyMode = 49,Channel = 157
[   46.535758]  AutoChSelUpdateChannel(): Update channel for wdev6 for this band PhyMode = 49,Channel = 157
[   46.535760]  AutoChSelUpdateChannel(): Update channel for wdev7 for this band PhyMode = 49,Channel = 157
[   46.535762] ApAutoChannelAtBootUp<-----------------
[   46.535765] WifiSysOpen(), wdev idx = 0
[   46.535770] wdev_attr_update(): wdevId0 = e0:63:da:21:ac:23
[   46.536026] Current Channel is 157. DfsZeroWaitSupport=0
[   46.536050] [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0
[   46.536054] [RSN IE CAP] WPAMakeRsnIeCap RSN CAP 00 00
[   46.536058] HcUpdatePhyMode(): Update PhyMode for all wdev for this band PhyMode:49,Channel=157
[   46.536156] wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:127 for WDEV_TYPE:1
                LinkToOmacIdx = 0, LinkToWdevType = 1
[   46.543649] bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO),                 CmdBssInfoBmcRate.u2BcTransmit= 8192,                 CmdBssInfoBmcRate.u2McTransmit = 8192
[   46.561716]  [RadarStateCheck]Set into RD_NORMAL_MODE
[   46.561719] APStartUpForMbss: UBNT RF lock down!! SKUenable = 1!!
[   46.561723] MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0
[   46.561730] MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0
[   46.561736] MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0
[   46.561746] mt7615_bbp_adjust():rf_bw=2, ext_ch=1, PrimCh=157, HT-CentCh=159, VHT-CentCh=155
[   46.601575] ap_phy_rrm_init_byRf(): AP Set CentralFreq at 155(Prim=157, HT-CentCh=159, VHT-CentCh=155, BBP_BW=2)
[   46.601657] LeadTimeForBcn, OmacIdx = 0, WDEV_WITH_BCN_ABILITY
[   46.601693] MtAsicSetRalinkBurstMode(2624): Not support for HIF_MT yet!
[   46.601696] MtAsicSetPiggyBack(778): Not support for HIF_MT yet!
[   46.601698] MtAsicSetTxPreamble(2603): Not support for HIF_MT yet!
[   46.601719] ap_ftkd> Initialize FT KDP Module...
[   46.601723] Main bssid = e0:63:da:21:ac:23
[   46.601921] AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn
[   46.603144] MtCmdSetMacTxRx:(ret = 0)
[   46.603207] fdb_enable()
[   46.906230] MCS Set = ff ff ff ff 01
[   46.906239] <==== mt_wifi_init, Status=0
[   46.906252] MtCmdEDCCACtrl: BandIdx: 0, EDCCACtrl: 1
[   46.906317] 80211> re-init bands...
[   46.906319] 80211> RFICType= 3, NumOfChan= 48
[   46.906320] 80211> Number of rate = 12
[   46.906322] 80211> CurTxPower = 0 dBm
[   46.906326] 80211> TxStream = 4
[   46.906330] WtcSetMaxStaNum: MaxStaNum:82, BssidNum:8, WdsNum:4, ApcliNum:1, MaxNumChipRept:32, MinMcastWcid:119
[   46.906344] red_is_enabled: set CR4/N9 RED Enable to 1.
[   46.906348] cp_support_is_enabled: set CR4 CP_SUPPORT to Mode 2.
[   46.906350] Correct apidx from 0 to 0 for WscUUIDInit
[   46.906352] Generate UUID for apidx(0)
[   46.906426] IPv6: ADDRCONF(NETDEV_UP): rai0: link is not ready
[   46.906439] 8021q: adding VLAN 0 to HW filter on device rai0
[   46.906487] IPv6: ADDRCONF(NETDEV_CHANGE): rai0: link becomes ready
[   46.906550] br0: port 2(rai0) entered blocking state
[   46.906557] br0: port 2(rai0) entered forwarding state
[   46.906637] WDS AP 4 Address Mode set to  0 for Mbss 0
[   46.906641] ra0: VLAN features updated vwire/vport[0]!
[   46.907909] ra0: (CFG80211_OpsStaDel)80211> Delete ALL STAsubtype(10:disassoc,12:deauth)::12 reason code::2
[   46.907946] ra0: (CFG80211_OpsStaDel)80211> Delete ALL STAsubtype(10:disassoc,12:deauth)::12 reason code::2
[   46.911471] AsicRemoveSharedKeyEntry(2829): Not support for HIF_MT yet!
[   46.911556] AsicRemoveSharedKeyEntry(2829): Not support for HIF_MT yet!
[   46.911610] Unkown frame_type = 20, req = 1
[   46.911616] AsicRemoveSharedKeyEntry(2829): Not support for HIF_MT yet!
[   46.911630] Unkown frame_type = 0, req = 1
[   46.911653] AsicRemoveSharedKeyEntry(2829): Not support for HIF_MT yet!
[   46.916133] rai0: (CFG80211_OpsStaDel)80211> Delete ALL STA, reason:2 ==>
[   46.916188] rai0: (CFG80211_OpsStaDel)80211> Delete ALL STA, reason:2 ==>
[   46.922163] Error no wdev when set vport
[   46.948887] Set ra0 No2ghzOui=0
[   46.950827] ra0: Set DVLAN[0]!
[   47.010990] WDS AP 4 Address Mode set to  0 for Mbss 0
[   47.010997] rai0: VLAN features updated vwire/vport[0]!
[   47.012196] 80211> Channel = 36, CenterChanId = 36
[   47.012199] 80211> ChanInfo.IfType == 9!
[   47.012201] 80211> ChanInfo.ChanType == 0!
[   47.012204] HOSTAPD AUTO_CH_SUPPORT Ignore Channel 36 from HostAPD
[   47.012206] 80211> CFG80211DRV_OpsBeaconAdd ==>
[   47.012209] 80211> [Hidden] SSID: element-de860add1a636ba9, 24
[   47.012212] 80211> pBeacon->privacy = 1
[   47.012214] CFG80211_ParseBeaconIE:: WPA2 case
[   47.012216]  Group Ndis802_11AESEnable
[   47.012219] AuthMode = 0x80
[   47.012222]
               CFG80211 BEACON => bwpa2 1, bwpa 0, bmix 0,AuthMode = WPA2PSK ,wdev->PairwiseCipher = AES wdev->SecConfig.GroupCipher = AES
[   47.012234] [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0
[   47.012238] [RSN IE CAP] WPAMakeRsnIeCap RSN CAP 00 00
[   47.038080] wdev_attr_update(): wdevId0 = e0:63:da:21:ac:23
[   47.240853] MtAsicSetRalinkBurstMode(2624): Not support for HIF_MT yet!
[   47.241059] MtAsicSetTxPreamble(2603): Not support for HIF_MT yet!
[   47.241124] 80211> ChanInfo.IfType == 9!
[   47.241126] 80211> ChanInfo.ChanType == 0!
[   47.241128] HOSTAPD AUTO_CH_SUPPORT Ignore Channel 6 from HostAPD
[   47.241132] 80211> [Hidden] SSID: element-de860add1a636ba9, 24
[   47.241135] CFG80211_SyncPacketWmmIe: can't find the wmm ie
[   47.241158] Ucast set for OFDM mode MCS 0
[   47.241234] AsicSetRalinkBurstMode(5291): Not support for HIF_MT yet!
[   47.245824] Ucast set for OFDM mode MCS 0
[   47.245885] AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0
[   47.247991] AsicSetTxPreamble(5270): Not support for HIF_MT yet!
[   47.248014] Error no wdev when set vport
[   47.248201] 80211> AP Key Add
[   47.248208] AsicAddSharedKeyEntry(2714): Not support for HIF_MT yet!
[   47.248498] 80211> AP Key Add
[   47.248505] CFG: Set AES Security Set. (GROUP) 16
[   47.248570] Set Ap Default Key: 1
[   47.264686] rai0: Set DVLAN[0]!

Custom kernel not loading on UDM

Installed the tool and the kernel on UDM (not Pro), and then try to boot the custom kernel.

root@ubnt:/# udm-bootctl list
Version                                         Initrd
4.19.152-edge1 (default)                        yes
root@ubnt:/# uname -a
Linux ubnt 4.19.152-al-linux-v10.2.0-v1.10.0.3686-a2edd0c #1 SMP Fri Jul 9 03:16:50 UTC 2021 aarch64 GNU/Linux
root@ubnt:/# udm-bootctl boot 4.19.152-edge1
Loading kernel 4.19.152-edge1...
Inserting kexec kernel modules...
Triggering system boot...
root@ubnt:/# Error: non zero exit code: 129: OCI runtime error

After reboot, it still runs the stock kernel. Tried multiple times, no luck.

root@ubnt:/# uname -a
Linux ubnt 4.19.152-al-linux-v10.2.0-v1.10.0.3686-a2edd0c #1 SMP Fri Jul 9 03:16:50 UTC 2021 aarch64 GNU/Linux

Troubleshooting

root@ubnt:/# cat /sys/fs/pstore/*
cat: '/sys/fs/pstore/*': No such file or directory
root@ubnt:/# dmesg
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd073]
[    0.000000] Linux version 4.19.152-al-linux-v10.2.0-v1.10.0.3686-a2edd0c (builder@link-xenial-builder) (gcc version 6.4.0 (Buildroot 0.9.0.0)) #1 SMP Fri Jul 9 03:16:50 UTC 2021
[    0.000000] Machine model: Annapurna Labs Alpine V2 UBNT
[    0.000000] efi: Getting EFI parameters from FDT:
[    0.000000] efi: UEFI not found.
[    0.000000] On node 0 totalpages: 524287
[    0.000000]   DMA32 zone: 8192 pages used for memmap
[    0.000000]   DMA32 zone: 0 pages reserved
[    0.000000]   DMA32 zone: 524287 pages, LIFO batch:63
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv0.2 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] random: get_random_bytes called from start_kernel+0xb0/0x45c with crng_init=0
[    0.000000] percpu: Embedded 22 pages/cpu s49944 r8192 d31976 u90112
[    0.000000] pcpu-alloc: s49944 r8192 d31976 u90112 alloc=22*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] ARM_SMCCC_ARCH_WORKAROUND_1 missing from firmware
[    0.000000] CPU features: enabling workaround for EL2 vector hardening
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516095
[    0.000000] Kernel command line: root=/dev/sda3 rootfstype=squashfs rootwait pci=pcie_bus_perf console=ttyS0,115200 panic=3 reboot=warm
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.000000] Memory: 2044908K/2097148K available (9532K kernel code, 970K rwdata, 2560K rodata, 1024K init, 325K bss, 52240K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] ftrace: allocating 32446 entries in 127 pages
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: no VLPI support, no direct LPI support
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000f0280000
[    0.000000] arch_timer: cp15 timer(s) running at 50.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xb8812736b, max_idle_ns: 440795202655 ns
[    0.000002] sched_clock: 56 bits at 50MHz, resolution 20ns, wraps every 4398046511100ns
[    0.000131] Console: colour dummy device 80x25
[    0.000143] Calibrating delay loop (skipped), value calculated using timer frequency.. 100.00 BogoMIPS (lpj=200000)
[    0.000148] pid_max: default: 32768 minimum: 301
[    0.000200] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000210] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000695] ASID allocator initialised with 32768 entries
[    0.000729] rcu: Hierarchical SRCU implementation.
[    0.000959] EFI services will not be available.
[    0.001047] smp: Bringing up secondary CPUs ...
[    0.001220] Detected PIPT I-cache on CPU1
[    0.001233] GICv3: CPU1: found redistributor 1 region 0:0x00000000f02a0000
[    0.001245] CPU1: Booted secondary processor 0x0000000001 [0x411fd073]
[    0.001452] Detected PIPT I-cache on CPU2
[    0.001461] GICv3: CPU2: found redistributor 2 region 0:0x00000000f02c0000
[    0.001470] CPU2: Booted secondary processor 0x0000000002 [0x411fd073]
[    0.001654] Detected PIPT I-cache on CPU3
[    0.001663] GICv3: CPU3: found redistributor 3 region 0:0x00000000f02e0000
[    0.001672] CPU3: Booted secondary processor 0x0000000003 [0x411fd073]
[    0.001700] smp: Brought up 1 node, 4 CPUs
[    0.001702] SMP: Total of 4 processors activated.
[    0.001705] CPU features: detected: GIC system register CPU interface
[    0.001707] CPU features: detected: 32-bit EL0 Support
[    0.001727] CPU: All CPU(s) started at EL2
[    0.001735] alternatives: patching kernel code
[    0.002238] devtmpfs: initialized
[    0.004196] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.004201] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.004407] DMI not present or invalid.
[    0.004534] NET: Registered protocol family 16
[    0.004878] cpuidle: using governor menu
[    0.004993] DMA: preallocated 256 KiB pool for atomic allocations
[    0.005031] Initializing Peripheral Bus System - PBS
[    0.027019] console [pstore-1] enabled
[    0.027072] pstore: Registered ramoops as persistent store backend
[    0.027074] ramoops: attached 0x18000@0x10000000, ecc: 16/0
[    0.030686] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.030934] vgaarb: loaded
[    0.031008] SCSI subsystem initialized
[    0.031065] libata version 3.00 loaded.
[    0.031124] usbcore: registered new interface driver usbfs
[    0.031138] usbcore: registered new interface driver hub
[    0.031156] usbcore: registered new device driver usb
[    0.031354] pps_core: LinuxPPS API ver. 1 registered
[    0.031356] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    0.031362] PTP clock support registered
[    0.031395] Advanced Linux Sound Architecture Driver Initialized.
[    0.031555] Bluetooth: Core ver 2.22
[    0.031567] NET: Registered protocol family 31
[    0.031569] Bluetooth: HCI device and connection manager initialized
[    0.031572] Bluetooth: HCI socket layer initialized
[    0.031574] Bluetooth: L2CAP socket layer initialized
[    0.031584] Bluetooth: SCO socket layer initialized
[    0.031709] clocksource: Switched to clocksource arch_sys_counter
[    0.046637] NET: Registered protocol family 2
[    0.046847] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes)
[    0.046855] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[    0.046894] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[    0.046987] TCP: Hash tables configured (established 16384 bind 16384)
[    0.047048] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[    0.047057] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[    0.047113] NET: Registered protocol family 1
[    0.047288] PCI: CLS 0 bytes, default 64
[    0.047731] Initialise system trusted keyrings
[    0.047790] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    0.050000] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.584335] Key type asymmetric registered
[    0.584338] Asymmetric key parser 'x509' registered
[    0.584358] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    0.584361] io scheduler noop registered
[    0.584362] io scheduler deadline registered
[    0.584416] io scheduler cfq registered (default)
[    0.584418] io scheduler mq-deadline registered
[    0.584420] io scheduler kyber registered
[    0.584665] pl061_gpio fd887000.gpio0: PL061 GPIO chip @0x00000000fd887000 registered
[    0.584753] pl061_gpio fd888000.gpio1: PL061 GPIO chip @0x00000000fd888000 registered
[    0.584835] pl061_gpio fd889000.gpio2: PL061 GPIO chip @0x00000000fd889000 registered
[    0.584914] pl061_gpio fd88a000.gpio3: PL061 GPIO chip @0x00000000fd88a000 registered
[    0.584993] pl061_gpio fd88b000.gpio4: PL061 GPIO chip @0x00000000fd88b000 registered
[    0.585072] pl061_gpio fd897000.gpio5: PL061 GPIO chip @0x00000000fd897000 registered
[    0.585164] al-sgpo fd8b4000.sgpo: Alpine SGPO driver probed.
[    0.585247] al-internal-pcie fbc00000.pcie-internal: host bridge /soc/pcie-internal ranges:
[    0.585257] al-internal-pcie fbc00000.pcie-internal:   MEM 0xfe000000..0xfeffffff -> 0xfe000000
[    0.585300] al-internal-pcie fbc00000.pcie-internal: PCI host bridge to bus 0000:00
[    0.585304] pci_bus 0000:00: root bus resource [bus 00]
[    0.585307] pci_bus 0000:00: root bus resource [mem 0xfe000000-0xfeffffff]
[    0.585399] pci 0000:00:01.0: [1c36:0001] type 00 class 0x020000
[    0.585411] pci 0000:00:01.0: reg 0x10: [mem 0xfe000000-0xfe01ffff 64bit]
[    0.585416] pci 0000:00:01.0: reg 0x18: [mem 0xfe020000-0xfe020fff 64bit]
[    0.585421] pci 0000:00:01.0: reg 0x20: [mem 0xfe024000-0xfe027fff 64bit]
[    0.585440] pci 0000:00:01.0: PME# supported from D3hot D3cold
[    0.585590] pci 0000:00:03.0: [1c36:0001] type 00 class 0x020000
[    0.585599] pci 0000:00:03.0: reg 0x10: [mem 0xfe040000-0xfe05ffff 64bit]
[    0.585604] pci 0000:00:03.0: reg 0x18: [mem 0xfe060000-0xfe060fff 64bit]
[    0.585609] pci 0000:00:03.0: reg 0x20: [mem 0xfe064000-0xfe067fff 64bit]
[    0.585624] pci 0000:00:03.0: PME# supported from D3hot D3cold
[    0.585712] pci 0000:00:04.0: [1c36:0022] type 00 class 0x100000
[    0.585720] pci 0000:00:04.0: reg 0x10: [mem 0xfe080000-0xfe09ffff 64bit]
[    0.585727] pci 0000:00:04.0: reg 0x20: [mem 0xfe0a0000-0xfe0affff 64bit]
[    0.585743] pci 0000:00:04.0: PME# supported from D3hot D3cold
[    0.585752] pci 0000:00:04.0: reg 0x324: [mem 0x00000000-0x0001ffff 64bit]
[    0.585755] pci 0000:00:04.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit] (contains BAR0 for 1 VFs)
[    0.585854] pci 0000:00:05.0: [1c36:0022] type 00 class 0x010400
[    0.585862] pci 0000:00:05.0: reg 0x10: [mem 0xfe0c0000-0xfe0dffff 64bit]
[    0.585869] pci 0000:00:05.0: reg 0x20: [mem 0xfe0e0000-0xfe0effff 64bit]
[    0.585886] pci 0000:00:05.0: PME# supported from D3hot D3cold
[    0.585894] pci 0000:00:05.0: reg 0x324: [mem 0x00000000-0x0001ffff 64bit]
[    0.585898] pci 0000:00:05.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit] (contains BAR0 for 1 VFs)
[    0.586087] pci 0000:00:08.0: [1c36:0031] type 00 class 0x010601
[    0.586100] pci 0000:00:08.0: reg 0x24: [mem 0xfe0f0000-0xfe0f3fff]
[    0.586115] pci 0000:00:08.0: PME# supported from D3hot D3cold
[    0.587284] pci 0000:00:01.0: BAR 0: assigned [mem 0xfe000000-0xfe01ffff 64bit]
[    0.587289] pci 0000:00:03.0: BAR 0: assigned [mem 0xfe020000-0xfe03ffff 64bit]
[    0.587294] pci 0000:00:04.0: BAR 0: assigned [mem 0xfe040000-0xfe05ffff 64bit]
[    0.587299] pci 0000:00:04.0: BAR 7: assigned [mem 0xfe060000-0xfe07ffff 64bit]
[    0.587303] pci 0000:00:05.0: BAR 0: assigned [mem 0xfe080000-0xfe09ffff 64bit]
[    0.587308] pci 0000:00:05.0: BAR 7: assigned [mem 0xfe0a0000-0xfe0bffff 64bit]
[    0.587312] pci 0000:00:04.0: BAR 4: assigned [mem 0xfe0c0000-0xfe0cffff 64bit]
[    0.587316] pci 0000:00:05.0: BAR 4: assigned [mem 0xfe0d0000-0xfe0dffff 64bit]
[    0.587321] pci 0000:00:01.0: BAR 4: assigned [mem 0xfe0e0000-0xfe0e3fff 64bit]
[    0.587326] pci 0000:00:03.0: BAR 4: assigned [mem 0xfe0e4000-0xfe0e7fff 64bit]
[    0.587330] pci 0000:00:08.0: BAR 5: assigned [mem 0xfe0e8000-0xfe0ebfff]
[    0.587334] pci 0000:00:01.0: BAR 2: assigned [mem 0xfe0ec000-0xfe0ecfff 64bit]
[    0.587339] pci 0000:00:03.0: BAR 2: assigned [mem 0xfe0ed000-0xfe0edfff 64bit]
[    0.587362] pci-pf-stub 0000:00:04.0: writing to VF config space
[    0.587410] pci-pf-stub 0000:00:04.0: claimed by pci-pf-stub
[    0.587426] pci-pf-stub 0000:00:05.0: writing to VF config space
[    0.587496] pci-pf-stub 0000:00:05.0: claimed by pci-pf-stub
[    0.587581] al-external-pcie fd800000.pcie-external0: host bridge /soc/pcie-external0 ranges:
[    0.587590] al-external-pcie fd800000.pcie-external0:   err 0xfb600000..0xfb6fffff -> 0xfb600000
[    0.587597] al-external-pcie fd800000.pcie-external0:    IO 0xc0000000..0xc000ffff -> 0x00010000
[    0.587604] al-external-pcie fd800000.pcie-external0:   MEM 0xc0010000..0xc7ffffff -> 0xc0010000
[    0.587630] al-external-pcie fd800000.pcie-external0: link up: speed Gen 1 width x1
[    0.587633] al-external-pcie fd800000.pcie-external0: link up: speed Gen 1 width x1
[    0.587637] PCIe 0: setting OB iATU even after link is started
[    0.587678] al-external-pcie fd800000.pcie-external0: PCI host bridge to bus 0001:00
[    0.587681] pci_bus 0001:00: root bus resource [bus 00-ff]
[    0.587684] pci_bus 0001:00: root bus resource [??? 0xfb600000-0xfb6fffff flags 0x0]
[    0.587690] pci_bus 0001:00: root bus resource [io  0x0000-0xffff] (bus address [0x10000-0x1ffff])
[    0.587692] pci_bus 0001:00: root bus resource [mem 0xc0010000-0xc7ffffff]
[    0.587716] pci 0001:00:00.0: [1c36:0031] type 01 class 0x060400
[    0.587728] pci 0001:00:00.0: reg 0x10: [mem 0x00000000-0x000fffff]
[    0.587733] pci 0001:00:00.0: reg 0x14: [mem 0x00000000-0x0000ffff]
[    0.587738] pci 0001:00:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    0.587773] pci 0001:00:00.0: supports D1
[    0.587775] pci 0001:00:00.0: PME# supported from D0 D1 D3hot
[    0.588811] pci 0001:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.588868] pci 0001:01:00.0: [14c3:7615] type 00 class 0x000280
[    0.588902] pci 0001:01:00.0: reg 0x10: [mem 0xc0000000-0xc00fffff 64bit]
[    0.589040] pci 0001:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0001:00:00.0 (capable of 4.000 Gb/s with 5 GT/s x1 link)
[    0.590046] pci_bus 0001:01: busn_res: [bus 01-ff] end is updated to 01
[    0.590056] pci 0001:00:00.0: BAR 0: assigned [mem 0xc0100000-0xc01fffff]
[    0.590060] pci 0001:00:00.0: BAR 14: assigned [mem 0xc0200000-0xc02fffff]
[    0.590063] pci 0001:00:00.0: BAR 1: assigned [mem 0xc0010000-0xc001ffff]
[    0.590068] pci 0001:00:00.0: BAR 6: assigned [mem 0xc0020000-0xc002ffff pref]
[    0.590072] pci 0001:01:00.0: BAR 0: assigned [mem 0xc0200000-0xc02fffff 64bit]
[    0.590085] pci 0001:00:00.0: PCI bridge to [bus 01]
[    0.590089] pci 0001:00:00.0:   bridge window [mem 0xc0200000-0xc02fffff]
[    0.590097] pci 0001:00:00.0: Max Payload Size set to  256/ 256 (was  128), Max Read Rq  256
[    0.590118] pci 0001:01:00.0: Max Payload Size set to  128/ 128 (was  128), Max Read Rq  128
[    0.590121] pci 0001:00:00.0: AL PCIe bridge quirk detected, disable MSI(X)
[    0.590173] al-external-pcie fd820000.pcie-external1: host bridge /soc/pcie-external1 ranges:
[    0.590181] al-external-pcie fd820000.pcie-external1:   err 0xfb700000..0xfb7fffff -> 0xfb700000
[    0.590189] al-external-pcie fd820000.pcie-external1:    IO 0xc8000000..0xc800ffff -> 0x00020000
[    0.590194] al-external-pcie fd820000.pcie-external1:   MEM 0xc8010000..0xcfffffff -> 0xc8010000
[    0.590218] al-external-pcie fd820000.pcie-external1: link up: speed Gen 1 width x1
[    0.590221] al-external-pcie fd820000.pcie-external1: link up: speed Gen 1 width x1
[    0.590224] PCIe 1: setting OB iATU even after link is started
[    0.590264] al-external-pcie fd820000.pcie-external1: PCI host bridge to bus 0002:00
[    0.590267] pci_bus 0002:00: root bus resource [bus 00-ff]
[    0.590270] pci_bus 0002:00: root bus resource [??? 0xfb700000-0xfb7fffff flags 0x0]
[    0.590274] pci_bus 0002:00: root bus resource [io  0x10000-0x1ffff] (bus address [0x20000-0x2ffff])
[    0.590276] pci_bus 0002:00: root bus resource [mem 0xc8010000-0xcfffffff]
[    0.590287] pci 0002:00:00.0: [1c36:0031] type 01 class 0x060400
[    0.590298] pci 0002:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    0.590303] pci 0002:00:00.0: reg 0x14: [mem 0x00000000-0x00000fff pref]
[    0.590337] pci 0002:00:00.0: supports D1
[    0.590339] pci 0002:00:00.0: PME# supported from D0 D1 D3hot
[    0.591361] pci 0002:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.591416] pci 0002:01:00.0: [14c3:7603] type 00 class 0x028000
[    0.591443] pci 0002:01:00.0: reg 0x10: [mem 0xc8000000-0xc80fffff]
[    0.591553] pci 0002:01:00.0: PME# supported from D0 D3hot D3cold
[    0.592619] pci_bus 0002:01: busn_res: [bus 01-ff] end is updated to 01
[    0.592628] pci 0002:00:00.0: BAR 14: assigned [mem 0xc8100000-0xc81fffff]
[    0.592631] pci 0002:00:00.0: BAR 0: assigned [mem 0xc8010000-0xc8010fff]
[    0.592636] pci 0002:00:00.0: BAR 1: assigned [mem 0xc8011000-0xc8011fff pref]
[    0.592640] pci 0002:01:00.0: BAR 0: assigned [mem 0xc8100000-0xc81fffff]
[    0.592645] pci 0002:00:00.0: PCI bridge to [bus 01]
[    0.592649] pci 0002:00:00.0:   bridge window [mem 0xc8100000-0xc81fffff]
[    0.592657] pci 0002:00:00.0: Max Payload Size set to  256/ 256 (was  128), Max Read Rq  256
[    0.592674] pci 0002:01:00.0: Max Payload Size set to  128/ 128 (was  128), Max Read Rq  128
[    0.592677] pci 0002:00:00.0: AL PCIe bridge quirk detected, disable MSI(X)
[    0.592731] al-external-pcie fd840000.pcie-external2: host bridge /soc/pcie-external2 ranges:
[    0.592739] al-external-pcie fd840000.pcie-external2:   err 0xfb800000..0xfb8fffff -> 0xfb800000
[    0.592746] al-external-pcie fd840000.pcie-external2:    IO 0xd0000000..0xd000ffff -> 0x00030000
[    0.592751] al-external-pcie fd840000.pcie-external2:   MEM 0xd0010000..0xd7ffffff -> 0xd0010000
[    0.592775] al-external-pcie fd840000.pcie-external2: link up: speed Gen 2 width x1
[    0.592778] al-external-pcie fd840000.pcie-external2: link up: speed Gen 2 width x1
[    0.592781] PCIe 2: setting OB iATU even after link is started
[    0.592822] al-external-pcie fd840000.pcie-external2: PCI host bridge to bus 0003:00
[    0.592825] pci_bus 0003:00: root bus resource [bus 00-ff]
[    0.592828] pci_bus 0003:00: root bus resource [??? 0xfb800000-0xfb8fffff flags 0x0]
[    0.592831] pci_bus 0003:00: root bus resource [io  0x20000-0x2ffff] (bus address [0x30000-0x3ffff])
[    0.592834] pci_bus 0003:00: root bus resource [mem 0xd0010000-0xd7ffffff]
[    0.592844] pci 0003:00:00.0: [1c36:0031] type 01 class 0x060400
[    0.592855] pci 0003:00:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    0.592860] pci 0003:00:00.0: reg 0x14: [mem 0x00000000-0x00000fff pref]
[    0.592892] pci 0003:00:00.0: supports D1
[    0.592894] pci 0003:00:00.0: PME# supported from D0 D1 D3hot
[    0.593923] pci 0003:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.593976] pci 0003:01:00.0: [1b21:1142] type 00 class 0x0c0330
[    0.594003] pci 0003:01:00.0: reg 0x10: [mem 0xd0000000-0xd0007fff 64bit]
[    0.594105] pci 0003:01:00.0: PME# supported from D3cold
[    0.595130] pci_bus 0003:01: busn_res: [bus 01-ff] end is updated to 01
[    0.595137] pci 0003:00:00.0: BAR 14: assigned [mem 0xd0100000-0xd01fffff]
[    0.595141] pci 0003:00:00.0: BAR 0: assigned [mem 0xd0010000-0xd0010fff]
[    0.595145] pci 0003:00:00.0: BAR 1: assigned [mem 0xd0011000-0xd0011fff pref]
[    0.595150] pci 0003:01:00.0: BAR 0: assigned [mem 0xd0100000-0xd0107fff 64bit]
[    0.595160] pci 0003:00:00.0: PCI bridge to [bus 01]
[    0.595163] pci 0003:00:00.0:   bridge window [mem 0xd0100000-0xd01fffff]
[    0.595171] pci 0003:00:00.0: Max Payload Size set to  256/ 256 (was  128), Max Read Rq  256
[    0.595186] pci 0003:01:00.0: Max Payload Size set to  256/ 512 (was  128), Max Read Rq  256
[    0.595189] pci 0003:00:00.0: AL PCIe bridge quirk detected, disable MSI(X)
[    0.595436] al_dma: Annapurna Labs DMA Driver 0.01
[    0.596329] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.596779] console [ttyS0] disabled
[    0.596796] fd883000.uart0: ttyS0 at MMIO 0xfd883000 (irq = 23, base_baud = 31250000) is a 16550A
[    0.608855] console [ttyS0] enabled
[    0.609022] fd884000.uart1: ttyS1 at MMIO 0xfd884000 (irq = 24, base_baud = 31250000) is a 16550A
[    0.609498] resvmem-reboot-reason soc:reboot-reason: Allocated reserved memory, vaddr: 0x8EF5000, paddr: 0x10020000
[    0.609611] ahci 0000:00:08.0: version 3.0
[    0.609617] ahci 0000:00:08.0: enabling device (0000 -> 0002)
[    0.609633] ahci 0000:00:08.0: controller can't do PMP, turning off CAP_PMP
[    0.609812] ahci 0000:00:08.0: SSS flag set, parallel bus scan disabled
[    0.609828] ahci 0000:00:08.0: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0xf impl SATA mode
[    0.609833] ahci 0000:00:08.0: flags: 64bit ncq sntf stag pm led clo only fbs pio slum part ccc apst
[    0.609836] ahci 0000:00:08.0: both AHCI_HFLAG_MULTI_MSI flag set and custom irq handler implemented
[    0.610454] scsi host0: ahci
[    0.610663] scsi host1: ahci
[    0.610833] scsi host2: ahci
[    0.610994] scsi host3: ahci
[    0.611096] ata1: SATA max UDMA/133 abar m16384@0xfe0e8000 port 0xfe0e8100 irq 26
[    0.611099] ata2: SATA max UDMA/133 abar m16384@0xfe0e8000 port 0xfe0e8180 irq 27
[    0.611101] ata3: SATA max UDMA/133 abar m16384@0xfe0e8000 port 0xfe0e8200 irq 28
[    0.611103] ata4: SATA max UDMA/133 abar m16384@0xfe0e8000 port 0xfe0e8280 irq 29
[    0.611130] ahci 0001:00:00.0: writing to VF config space
[    0.612805] ata1: SATA link down (SStatus 4 SControl 300)
[    0.616627] ahci: probe of 0001:00:00.0 failed with error -22
[    0.616638] ahci 0002:00:00.0: writing to VF config space
[    0.617649] ata2: SATA link down (SStatus 4 SControl 300)
[    0.622134] ahci: probe of 0002:00:00.0 failed with error -22
[    0.622143] ahci 0003:00:00.0: writing to VF config space
[    0.623180] ata3: SATA link down (SStatus 4 SControl 300)
[    0.627602] ahci: probe of 0003:00:00.0 failed with error -22
[    0.628027] m25p80 spi0.0: found mx25u6435f, expected spi_flash_jedec_detection
[    0.628032] m25p80 spi0.0: mx25u6435f (8192 Kbytes)
[    0.628123] 5 fixed-partitions partitions found on MTD device spi0.0
[    0.628125] Creating 5 MTD partitions on "spi0.0":
[    0.628129] 0x000000000000-0x0000001c0000 : "u-boot"
[    0.628386] 0x0000001c0000-0x0000001d0000 : "u-boot-env"
[    0.628589] 0x0000001d0000-0x0000001e0000 : "u-boot-env-2"
[    0.628654] ata4: SATA link down (SStatus 4 SControl 300)
[    0.628790] 0x0000001e0000-0x0000001f0000 : "Factory"
[    0.628987] 0x0000001f0000-0x000000200000 : "EEPROM"
[    0.629527] libphy: Fixed MDIO Bus: probed
[    0.629530] tun: Universal TUN/TAP device driver, 1.6
[    0.629677] al_eth_drv: Initializing Peripheral Bus System (PBS) resources
[    0.629707] al_eth 0000:00:01.0: writing to VF config space
[    0.635325] al_eth 0000:00:01.0: AnnapurnaLabs unified 1GbE/10GbE/25GbE Ethernet Driver with SR-IOV al_eth v3.5.3 (Mar 14, 2019)
[    0.635331] al_eth 0000:00:01.0: driver_data is 0x0
[    0.635362] al_eth 0000:00:01.0: eth rev_id 2 (orig_rev_id 2) dev_id 1
[    0.635454] al_eth 0000:00:01.0: Board info: phy exist Yes. phy addr 0. mdio freq 1000 Khz. SFP connected No. media 1
[    0.635458] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
[    0.641253] al_eth 0000:00:01.0 eth0: AnnapurnaLabs unified 1Gbe/10Gbe/25Gbe integrated found at mem fe000000, mac addr e0:63:da:21:ac:1e
[    0.641279] libphy: alpine_mdio_shared: probed
[    0.645497] switch0: Atheros AR8337/Qualcomm QCA8337 rev. 2 switch registered on alpine_mdio_shared_8
[    2.604785] al_eth 0000:00:01.0 eth0: phy[0]: device alpine_mdio_shared_8:00, driver Atheros AR8216/AR8236/AR8316
[    2.604788] al_eth 0000:00:01.0 eth0: phy[0]:supported 20 adv 20
[    2.604808] al_eth 0000:00:03.0: writing to VF config space
[    2.610453] al_eth 0000:00:03.0: driver_data is 0x0
[    2.610479] al_eth 0000:00:03.0: eth rev_id 2 (orig_rev_id 2) dev_id 1
[    2.610580] al_eth 0000:00:03.0: Board info: phy exist Yes. phy addr 4. mdio freq 1000 Khz. SFP connected No. media 1
[    2.610583] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
[    2.616429] al_eth 0000:00:03.0 eth1: AnnapurnaLabs unified 1Gbe/10Gbe/25Gbe integrated found at mem fe020000, mac addr fe:80:7f:0e:de:64
[    2.617733] al_eth 0000:00:03.0 eth1: phy[4]: device alpine_mdio_shared_8:04, driver Atheros AR8216/AR8236/AR8316
[    2.617737] al_eth 0000:00:03.0 eth1: phy[4]:supported 62ef adv 62ef
[    2.617908] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.617910] ehci-pci: EHCI PCI platform driver
[    2.617930] ehci-platform: EHCI generic platform driver
[    2.617971] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.617980] ohci-pci: OHCI PCI platform driver
[    2.617994] uhci_hcd: USB Universal Host Controller Interface driver
[    2.618073] xhci_hcd 0003:01:00.0: xHCI Host Controller
[    2.618083] xhci_hcd 0003:01:00.0: new USB bus registered, assigned bus number 1
[    2.752142] xhci_hcd 0003:01:00.0: hcc params 0x0200e081 hci version 0x100 quirks 0x0000000010000410
[    2.752616] hub 1-0:1.0: USB hub found
[    2.752631] hub 1-0:1.0: 2 ports detected
[    2.752790] xhci_hcd 0003:01:00.0: xHCI Host Controller
[    2.752796] xhci_hcd 0003:01:00.0: new USB bus registered, assigned bus number 2
[    2.752801] xhci_hcd 0003:01:00.0: Host supports USB 3.0 SuperSpeed
[    2.752868] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.753030] hub 2-0:1.0: USB hub found
[    2.753043] hub 2-0:1.0: 2 ports detected
[    2.753210] usbcore: registered new interface driver cdc_acm
[    2.753212] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    2.753236] usbcore: registered new interface driver usb-storage
[    2.753265] usbcore: registered new interface driver cp210x
[    2.753274] usbserial: USB Serial support registered for cp210x
[    2.753347] i2c /dev entries driver
[    2.765565] al_thermal_probe: Thermal Sensor Loaded
[    2.765703] sp805-wdt fd88c000.wdt0: registration successful
[    2.765720] Bluetooth: HCI UART driver ver 2.3
[    2.765723] Bluetooth: HCI UART protocol H4 registered
[    2.765725] Bluetooth: HCI UART protocol BCSP registered
[    2.766136] usbcore: registered new interface driver usbhid
[    2.766137] usbhid: USB HID core driver
[    2.766215] usbcore: registered new interface driver snd-usb-audio
[    2.766516] IPVS: Registered protocols ()
[    2.766546] IPVS: Connection hash table configured (size=4096, memory=64Kbytes)
[    2.766598] IPVS: ipvs loaded.
[    2.766652] gre: GRE over IPv4 demultiplexor driver
[    2.766653] ip_gre: GRE over IPv4 tunneling driver
[    2.767050] IPv4 over IPsec tunneling driver
[    2.767425] NET: Registered protocol family 10
[    2.767932] Segment Routing with IPv6
[    2.768027] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    2.768209] NET: Registered protocol family 17
[    2.768227] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    2.768267] Bluetooth: RFCOMM socket layer initialized
[    2.768276] Bluetooth: RFCOMM ver 1.11
[    2.768281] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    2.768284] Bluetooth: BNEP socket layer initialized
[    2.768286] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    2.768289] Bluetooth: HIDP socket layer initialized
[    2.768291] 8021q: 802.1Q VLAN Support v1.8
[    2.768505] registered taskstats version 1
[    2.768507] Loading compiled-in X.509 certificates
[    2.768626] pstore: Using compression: deflate
[    2.769142] Key type encrypted registered
[    2.769507] input: gpio_keys as /devices/platform/gpio_keys/input/input0
[    2.769584] hctosys: unable to open rtc device (rtc0)
[    2.769638] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.832206] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.832215] ALSA device list:
[    2.832217]   No soundcards found.
[    2.832338] Waiting for root device /dev/sda3...
[    2.832371] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    2.832374] cfg80211: failed to load regulatory.db
[    3.159714] usb 1-2: new full-speed USB device number 2 using xhci_hcd
[    3.410628] usb 1-2: set volume quirk for CM102-A+/102S+
[    3.528317] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[    3.560497] usb-storage 2-1:1.0: USB Mass Storage device detected
[    3.560699] scsi host4: usb-storage 2-1:1.0
[    4.581231] scsi 4:0:0:0: Direct-Access     Generic  MassStorageClass 1537 PQ: 0 ANSI: 6
[    4.737791] sd 4:0:0:0: [sda] 30777344 512-byte logical blocks: (15.8 GB/14.7 GiB)
[    4.738512] sd 4:0:0:0: [sda] Write Protect is off
[    4.738516] sd 4:0:0:0: [sda] Mode Sense: 21 00 00 00
[    4.739513] sd 4:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    4.749951]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    4.752484] sd 4:0:0:0: [sda] Attached SCSI removable disk
[    4.755608] VFS: Mounted root (squashfs filesystem) readonly on device 8:3.
[    4.757234] devtmpfs: mounted
[    4.758057] Freeing unused kernel memory: 1024K
[    4.767758] Run /sbin/init as init process
[    4.769149] random: fast init done
[    5.157607] EXT4-fs (sda6): recovery complete
[    5.158218] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[    5.213247] random: crng init done
[    6.381960] ubnt_common: loading out-of-tree module taints kernel.
[    6.381967] ubnt_common: module license 'Proprietary' taints kernel.
[    6.381969] Disabling lock debugging due to kernel taint
[    6.385219] [UBNT_STA_HT] Initialize hash table
[    6.385243] [UBNT_STA_HT] done
[    6.385245] creating /proc/ubnt_peek/
[    6.385253] creating /proc/ubnt_peek/peek_disable
[    6.385255] creating /proc/ubnt_peek/loop_check
[    6.385257] creating /proc/ubnt_peek/loop_debug
[    6.385260] creating /proc/ubnt_peek/loop_uif
[    6.385262] creating /proc/ubnt_peek/tcp_debug_mac
[    6.385264] creating /proc/ubnt_peek/tcp_debug_connections
[    6.385271] qos: registered
[    6.385273] creating /proc/ubnt_frame_id/
[    6.385275] creating /proc/ubnt_frame_id/netdevs
[    6.437999] ubnthal: Ubiquiti UniFi Dream Machine
[    6.438976] creating procfs for ubnthal
[    6.438984] creating proc entry for system.info
[    6.438986] creating proc entry for board
[    6.447690] Unable to find matching dts node.
[    6.447697] creating procfs for status
[    6.447725] creating proc entry for IsDefault
[    6.447728] creating proc entry for IsLocated
[    6.447730] creating proc entry for IsIsolated
[    6.447732] creating proc entry for IsLte
[    6.447734] creating proc entry for ControllerPort
[    6.447736] creating proc entry for ControllerHost
[    6.594118] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: errors=panic
[    6.597119] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: errors=panic
[    6.612309] creating /proc/gpio/
[    6.612317]          /proc/gpio/ledbar_control
[    6.612319]          /proc/gpio/led_pattern
[    6.612321]          /proc/gpio/led_tempo
[    6.612324]          /proc/gpio/poe_passthrough
[    6.891437] watchdog: watchdog0: nowayout prevents watchdog being stopped!
[    6.891440] watchdog: watchdog0: watchdog did not stop!
[    6.910236] zram: Added device: zram0
[    6.927261] zram0: detected capacity change from 0 to 3666313216
[    6.938403] Adding 3580380k swap on /dev/zram0.  Priority:100 extents:1 across:3580380k SS
[    7.104011] ICMPv6: process `sysctl' is using deprecated sysctl (syscall) net.ipv6.neigh.default.base_reachable_time - use net.ipv6.neigh.default.base_reachable_time_ms instead
[    7.154513] al_eth 0000:00:01.0 switch0.tmp: renamed from eth0
[    7.175028] al_eth 0000:00:03.0 eth4.tmp: renamed from eth1
[    7.194627] al_eth 0000:00:03.0 eth4: renamed from eth4.tmp
[    7.213222] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
[    7.218691] Configured MAC to RGMII mode
[    7.219867] al_eth 0000:00:03.0 eth4: using MSI-X per Queue interrupt mode
[    7.223573] IPv6: ADDRCONF(NETDEV_UP): eth4: link is not ready
[    7.223610] IPv6: ADDRCONF(NETDEV_CHANGE): eth4: link becomes ready
[    7.229397] al_eth 0000:00:01.0 switch0: renamed from switch0.tmp
[    7.249376] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
[    7.254833] Configured MAC to RGMII mode
[    7.255955] al_eth 0000:00:01.0 switch0: using MSI-X per Queue interrupt mode
[    7.259657] IPv6: ADDRCONF(NETDEV_UP): switch0: link is not ready
[    7.284992] br0: port 1(switch0) entered blocking state
[    7.284998] br0: port 1(switch0) entered disabled state
[    7.285101] device switch0 entered promiscuous mode
[    7.288375] IPv6: ADDRCONF(NETDEV_UP): br0: link is not ready
[    7.421351] br0: port 1(switch0) entered disabled state
[    7.424659] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
[    7.430055] Configured MAC to RGMII mode
[    7.431171] al_eth 0000:00:01.0 switch0: using MSI-X per Queue interrupt mode
[    7.434860] IPv6: ADDRCONF(NETDEV_UP): switch0: link is not ready
[    7.457865] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
[    7.463304] Configured MAC to RGMII mode
[    7.464405] al_eth 0000:00:03.0 eth4: using MSI-X per Queue interrupt mode
[    7.468564] eth [al_mod_eth_3]: set link speed to 1000Mbps. full duplex.
[    7.468574] al_eth 0000:00:03.0 eth4: Link is Up - 1Gbps/Full - flow control off
[    8.227750] IPv6: ADDRCONF(NETDEV_CHANGE): switch0: link becomes ready
[    8.227802] br0: port 1(switch0) entered blocking state
[    8.227806] br0: port 1(switch0) entered forwarding state
[    8.227867] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
[    8.452007] eth [al_mod_eth_1]: set link speed to 1000Mbps. full duplex.
[    8.452015] al_eth 0000:00:01.0 switch0: Link is Up - 1Gbps/Full - flow control off
[   12.729022] Bluetooth: hci0: unexpected event for opcode 0x0000
[   14.238582] register rlt_drv
[   14.291683] rlt_drv 0002:01:00.0: enabling device (0000 -> 0002)
[   14.291691] rt_pci_probe: pci_set_dma_mask okay!
[   14.292313]

               === pAd = 0000000099d8519c, size = 2297168 ===

[   14.292336] <-- RTMPAllocTxRxRingMemory, Status=0, ErrorValue=0x
[   14.292676] <-- RTMPAllocAdapterBlock, Status=0
[   14.292680] pAd->CSRBaseAddress =0xffffff800c900000, csr_addr=0xffffff800c900000!
[   14.292683] device_id =0x7603
[   14.292693] RtmpChipOpsHook(761): Not support for HIF_MT yet!
[   14.292694] mt7603_init()-->
[   14.292697] mt_bcn_buf_init(296): Not support for HIF_MT yet!
[   14.292699] <--mt7603_init()
[   14.292720] wevent: registered
[   14.292722] ra0: NO2G init ACL table
[   14.292813] 80211> RFICType= 1, NumOfChan= 14
[   14.292814] 80211> Number of rate = 12
[   14.292816] 80211> CurTxPower = 0 dBm
[   14.292911] 80211> CFG80211_Register with max interface 8
[   14.292915] ra0: VLAN features updated vwire/vport[0]!
[   14.558344] register mt_drv
[   14.614733] mt_drv 0001:01:00.0: enabling device (0000 -> 0002)
[   14.614742] rt_pci_probe: pci_set_dma_mask okay!
[   14.615846]

               === pAd = 0000000059c62e60, size = 3997656 ===

[   14.616202] <-- RTMPAllocAdapterBlock, Status=0
[   14.616205] pAd->PciHif.CSRBaseAddress =0xffffff800d300000, csr_addr=0xffffff800d300000!
[   14.616211] RTMPInitPCIeDevice():device_id=0x7615
[   14.616213] DriverOwn()::Try to Clear FW Own...
[   14.916749] DriverOwn()::Success to clear FW Own
[   14.916757] mt_pci_chip_cfg(): HWVer=0x8a10, FWVer=0x8a10, pAd->ChipID=0x7615
[   14.916761] mt_pci_chip_cfg(): HIF_SYS_REV=0x76150001
[   14.916764] RtmpChipOpsHook(493): Not support for HIF_MT yet! MACVersion=0x0
[   14.916767] mt7615_init()-->
[   14.916770] Use 1st iPAiLNA default bin.
[   14.916772] Use 0st /etc_ro/wlan/MT7615E_EEPROM1.bin default bin.
[   14.916775] <--mt7615_init()
[   14.916777] ChipOpsMCUHook
[   14.917481] cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096
[   14.917484] cut_through_token_list_init(): 0000000057b7b19b,0000000057b7b19b
[   14.917545] cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096
[   14.917547] cut_through_token_list_init(): 00000000f1059b6c,00000000f1059b6c
[   14.917558] <-- RTMPAllocTxRxRingMemory, Status=0
[   14.917602] wevent: registered
[   14.917615] 80211> RFICType= 3, NumOfChan= 48
[   14.917616] 80211> Number of rate = 12
[   14.917620] 80211> CurTxPower = 0 dBm
[   14.917625] 80211> TxStream = 1
[   14.917733] 80211> CFG80211_Register with max interface 4
[   14.917736] rai0: VLAN features updated vwire/vport[0]!
[   15.505384] TX_BCN DESC 0000000093ee700e size = 320
[   15.505391] RX[0] DESC 0000000085f36136 size = 2048
[   15.505464] RX[1] DESC 0000000015ea0287 size = 2048
[   15.506351] UserCfgInit: UBNT RF lock down!! SKUenable = 1!!
[   15.506745] cfg_mode=9
[   15.506747] cfg_mode=9
[   15.506753] wmode_band_equal(): Band Equal!
[   15.506888] BSS0 MinDataRate=6
[   15.506890] BSS1 MinDataRate=0
[   15.506892] BSS2 MinDataRate=0
[   15.506893] BSS3 MinDataRate=0
[   15.506895] BSS4 MinDataRate=0
[   15.506896] BSS5 MinDataRate=0
[   15.506897] BSS6 MinDataRate=0
[   15.506899] BSS7 MinDataRate=0
[   15.506941] BSS0 MinBCMCRate=6
[   15.506942] BSS1 MinBCMCRate=0
[   15.506944] BSS2 MinBCMCRate=0
[   15.506945] BSS3 MinBCMCRate=0
[   15.506947] BSS4 MinBCMCRate=0
[   15.506948] BSS5 MinBCMCRate=0
[   15.506949] BSS6 MinBCMCRate=0
[   15.506951] BSS7 MinBCMCRate=0
[   15.506992] BSS0 MinMgmtRate=6
[   15.506993] BSS1 MinMgmtRate=0
[   15.506995] BSS2 MinMgmtRate=0
[   15.506996] BSS3 MinMgmtRate=0
[   15.506998] BSS4 MinMgmtRate=0
[   15.506999] BSS5 MinMgmtRate=0
[   15.507000] BSS6 MinMgmtRate=0
[   15.507002] BSS7 MinMgmtRate=0
[   15.507042] BSS0 MinBeaconRate=6
[   15.507044] BSS1 MinBeaconRate=0
[   15.507046] BSS2 MinBeaconRate=0
[   15.507047] BSS3 MinBeaconRate=0
[   15.507048] BSS4 MinBeaconRate=0
[   15.507050] BSS5 MinBeaconRate=0
[   15.507051] BSS6 MinBeaconRate=0
[   15.507053] BSS7 MinBeaconRate=0
[   15.507095] BSS0 LimitClientSupportRate=0
[   15.507097] BSS1 LimitClientSupportRate=0
[   15.507098] BSS2 LimitClientSupportRate=0
[   15.507100] BSS3 LimitClientSupportRate=0
[   15.507101] BSS4 LimitClientSupportRate=0
[   15.507103] BSS5 LimitClientSupportRate=0
[   15.507104] BSS6 LimitClientSupportRate=0
[   15.507106] BSS7 LimitClientSupportRate=0
[   15.507149] BSS0 DisableCCKRate=1
[   15.507150] BSS1 DisableCCKRate=0
[   15.507152] BSS2 DisableCCKRate=0
[   15.507153] BSS3 DisableCCKRate=0
[   15.507155] BSS4 DisableCCKRate=0
[   15.507156] BSS5 DisableCCKRate=0
[   15.507157] BSS6 DisableCCKRate=0
[   15.507159] BSS7 DisableCCKRate=0
[   15.507256] BandSteering=0
[   15.507295] BndStrgBssIdx=0;0;0;0
[   15.507612] APSDCapable[0]=0
[   15.507614] APSDCapable[1]=0
[   15.507615] APSDCapable[2]=0
[   15.507616] APSDCapable[3]=0
[   15.507618] APSDCapable[4]=0
[   15.507620] default ApCliAPSDCapable[0]=0
[   15.533649] Key1Str is Invalid key length(0) or Type(0)
[   15.534010] Key2Str is Invalid key length(0) or Type(0)
[   15.534371] Key3Str is Invalid key length(0) or Type(0)
[   15.534732] Key4Str is Invalid key length(0) or Type(0)
[   15.546998] Smart Carrier Sense = 0
[   15.547048] CFG80211Radio = 1
[   15.547095] scanEntryTimeoutSetProfileParam(): Normal scan entry aging timeout = 60s
[   15.547127] ==>RTMPSetProfileParameters (OFF)
[   15.547214] ubnt_load_sku_data: UBNT RLT RF_LOCKDOWN Feature ON !!!
[   15.547216] --> Using builtin RLT SKU table for US
[   15.547316] FW Version:
[   15.547317] a
[   15.547318] p
[   15.547319] _
[   15.547321] p
[   15.547322] c
[   15.547323] i
[   15.547324] e
[   15.547325]
[   15.547326]
[   15.547327]

[   15.547330] FW Build Date:
[   15.547330] 2
[   15.547332] 0
[   15.547333] 1
[   15.547334] 6
[   15.547335] 0
[   15.547336] 1
[   15.547337] 0
[   15.547338] 7
[   15.547339] 1
[   15.547340] 0
[   15.547341] 0
[   15.547343] 7
[   15.547344] 5
[   15.547345] 5
[   15.547346]

[   15.547403] CmdAddressLenReq:(ret = 0)
[   15.547478] CmdFwStartReq: override = 1, address = 1048576
[   15.548476] CmdStartDLRsp: WiFI FW Download Success
[   15.568684] AsicDMASchedulerInit(): DMA Scheduler Mode=0(LMAC)
[   15.568706] efuse_probe: efuse = 10000012
[   15.568708] RtmpChipOpsEepromHook::e2p_type=1, inf_Type=5
[   15.568710] RtmpEepromGetDefault::e2p_dafault=1
[   15.568712] RtmpChipOpsEepromHook: E2P type(1), E2pAccessMode = 1, E2P default = 1
[   15.568714] NVM is EFUSE mode
[   15.568724] 1. Phy Mode = 14
[   15.568726] NVM is Efuse and its size =1d[1e0-1fc]
[   15.568882] Load EEPROM buffer from efuse, and change to BIN buffer mode
[   15.573402] efuse_probe: efuse = 10000012
[   15.573404] RtmpChipOpsEepromHook::forceMode: 4 , infType: 5
[   15.573406] NVM is BIN mode
[   15.573408] @@@  NICReadEEPROMParameters : pAd->FWLoad=0
[   15.748679] Country Region from e2p = ffff
[   15.748685] tssi_1_target_pwr_g_band = 34
[   15.748690] 2. Phy Mode = 14
[   15.748761] 3. Phy Mode = 14
[   15.748765] NICInitPwrPinCfg(15): Not support for HIF_MT yet!
[   15.748767] NICInitializeAsic(845): Not support rtmp_mac_sys_reset () for HIF_MT yet!
[   15.748769] mt_mac_init()-->
[   15.748771] mt7603_init_mac_cr()-->
[   15.748935] AsicSetMacMaxLen(2548): Set the Max RxPktLen=1024!
[   15.748937] <--mt_mac_init()
[   15.749076]  WTBL Segment 1 info:
[   15.749078]          MemBaseAddr/FID:0x28000/0
[   15.749079]          EntrySize/Cnt:32/128
[   15.749081]  WTBL Segment 2 info:
[   15.749082]          MemBaseAddr/FID:0x40000/0
[   15.749084]          EntrySize/Cnt:64/128
[   15.749085]  WTBL Segment 3 info:
[   15.749086]          MemBaseAddr/FID:0x42000/64
[   15.749088]          EntrySize/Cnt:64/128
[   15.749089]  WTBL Segment 4 info:
[   15.749091]          MemBaseAddr/FID:0x44000/128
[   15.749092]          EntrySize/Cnt:32/128
[   15.749101] MtAsicACQueue: Write CR:21510, Value=10421
[   15.749107] MtAsicACQueue: Write CR:21500, Value=10421
[   15.749174] AntCfgInit(3787): Not support for HIF_MT yet!
[   15.749191] Ucast set for OFDM mode MCS 0
[   15.749221] MCS Set = ff ff 00 00 00
[   15.749234] [PMF]ap_pmf_init:: apidx=0, MFPC=0, MFPR=0, SHA256=0
[   15.749239] [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0
[   15.749256] [PMF]ap_pmf_init:: apidx=1, MFPC=0, MFPR=0, SHA256=0
[   15.749262] [PMF]ap_pmf_init:: apidx=2, MFPC=0, MFPR=0, SHA256=0
[   15.749268] [PMF]ap_pmf_init:: apidx=3, MFPC=0, MFPR=0, SHA256=0
[   15.749274] [PMF]ap_pmf_init:: apidx=4, MFPC=0, MFPR=0, SHA256=0
[   15.749280] [PMF]ap_pmf_init:: apidx=5, MFPC=0, MFPR=0, SHA256=0
[   15.749285] [PMF]ap_pmf_init:: apidx=6, MFPC=0, MFPR=0, SHA256=0
[   15.749291] [PMF]ap_pmf_init:: apidx=7, MFPC=0, MFPR=0, SHA256=0
[   15.749313] AsicSetRalinkBurstMode(5291): Not support for HIF_MT yet!
[   15.749315] RTMPSetPiggyBack(1101): Not support for HIF_MT yet!
[   15.771741] AsicSetTxPreamble(5270): Not support for HIF_MT yet!
[   15.771746] Ucast set for OFDM mode MCS 0
[   15.772267] AsicAddSharedKeyEntry(2714): Not support for HIF_MT yet!
[   15.772310] AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0
[   15.772313] ap_ftkd> Initialize FT KDP Module...
[   15.772316] Main bssid = e0:63:da:21:ac:22
[   15.772402] <==== rt28xx_init, Status=0
[   15.772469] ra1: VLAN features updated vwire/vport[0]!
[   15.772853] ra2: VLAN features updated vwire/vport[0]!
[   15.773134] ra3: VLAN features updated vwire/vport[0]!
[   15.773423] ra4: VLAN features updated vwire/vport[0]!
[   15.773741] ra5: VLAN features updated vwire/vport[0]!
[   15.773969] ra6: VLAN features updated vwire/vport[0]!
[   15.774179] ra7: VLAN features updated vwire/vport[0]!
[   15.774468] wds0: VLAN features updated vwire/vport[0]!
[   15.774758] wds1: VLAN features updated vwire/vport[0]!
[   15.775059] wds2: VLAN features updated vwire/vport[0]!
[   15.775370] wds3: VLAN features updated vwire/vport[0]!
[   15.775608] apcli0: VLAN features updated vwire/vport[0]!
[   15.775839] APCLI init address table. Max count:64
[   15.775845] 80211> re-init bands...
[   15.775847] 80211> RFICType= 1, NumOfChan= 14
[   15.775849] 80211> Number of rate = 12
[   15.775851] 80211> CurTxPower = 0 dBm
[   15.775880] @@@ ed_monitor_init : ===>
[   15.775881] @@@ ed_monitor_init : <===
[   15.775888] mt7603_set_ed_cca: NON-CE Region,60200618=d748340f,ed_th=34
[   15.775890] mt7603_set_ed_cca: TURN ON EDCCA mac 0x10618 = 0xd748340f, EDCCA_Status=1
[   15.775894] Number of Packet Allocated in open = 0
[   15.775895] Number of Packet Freed in open = 0
[   15.775898] WiFi Startup Cost (ra0): 0.272s
[   15.775989] 8021q: adding VLAN 0 to HW filter on device ra0
[   15.839392] DriverOwn()::Return since already in Driver Own...
[   15.839956] APWdsInitialize():WdsEntry[0]
[   15.839958] APWdsInitialize():WdsEntry[1]
[   15.839960] APWdsInitialize():WdsEntry[2]
[   15.839962] APWdsInitialize():WdsEntry[3]
[   15.841461] E2pAccessMode=2
[   15.841609] SSID[0]=88d0b8ba8eac1aeb, EdcaIdx=0
[   15.842395] TriBandChGrp=0/0/0/0
[   15.842679] cfg_mode=14
[   15.842681] cfg_mode=14
[   15.842684] wmode_band_equal(): Band Equal!
[   15.842816] BandSteering=0
[   15.842910] BndStrgBssIdx=0;0;0;0
[   15.842925] [TxPower] BAND0: 100
[   15.843168] [PERCENTAGEenable] BAND0: 1
[   15.843184] [BFBACKOFFenable] BAND0: 0
[   15.843200] CalCacheApply = 0
[   15.843507] SHAILESH: BSS0 VlanTag=0
[   15.843509] SHAILESH: BSS1 VlanTag=0
[   15.843510] SHAILESH: BSS2 VlanTag=0
[   15.843512] SHAILESH: BSS3 VlanTag=0
[   15.843513] SHAILESH: BSS4 VlanTag=0
[   15.843515] SHAILESH: BSS5 VlanTag=0
[   15.843516] SHAILESH: BSS6 VlanTag=0
[   15.843517] SHAILESH: BSS7 VlanTag=0
[   15.843616] SHAILESH: APCLI0 VlanTag=0
[   15.843668] APEdca0
[   15.843830] APEdca1
[   15.843962] APEdca2
[   15.844093] APEdca3
[   15.847225] APSDCapable[0]=0
[   15.847227] APSDCapable[1]=0
[   15.847228] APSDCapable[2]=0
[   15.847230] APSDCapable[3]=0
[   15.847231] APSDCapable[4]=0
[   15.847233] default ApCliAPSDCapable[0]=0
[   15.847913] DfsZeroWait Support=0/0
[   15.848257] DfsZeroWaitCacTime=255/255
[   15.868103] [PMF]Set_PMFMFPC_Proc:: apidx=0, Desired MFPC=0
[   15.868182] [PMF]Set_PMFMFPR_Proc:: apidx=0, Desired MFPR=0
[   15.868262] [PMF]Set_PMFSHA256_Proc:: apidx=0, Desired PMFSHA256=0
[   15.871869] rtmp_read_wds_from_file(): WDS Profile
[   15.872334] APWdsInitialize():WdsEntry[0]
[   15.872335] APWdsInitialize():WdsEntry[1]
[   15.872337] APWdsInitialize():WdsEntry[2]
[   15.872338] APWdsInitialize():WdsEntry[3]
[   15.872340] WDS-Enable mode=0
[   15.873647] HT: WDEV[0] Ext Channel = ABOVE
[   15.879054] BSS0 MinPhyDataRate=0
[   15.879057] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879058] BSS1 MinPhyDataRate=0
[   15.879060] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879062] BSS2 MinPhyDataRate=0
[   15.879063] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879065] BSS3 MinPhyDataRate=0
[   15.879067] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879068] BSS4 MinPhyDataRate=0
[   15.879070] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879071] BSS5 MinPhyDataRate=0
[   15.879073] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879074] BSS6 MinPhyDataRate=0
[   15.879075] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879077] BSS7 MinPhyDataRate=0
[   15.879078] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   15.879174] BSS0 MinPhyBeaconRate=0
[   15.879176] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879177] BSS1 MinPhyBeaconRate=0
[   15.879179] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879180] BSS2 MinPhyBeaconRate=0
[   15.879182] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879184] BSS3 MinPhyBeaconRate=0
[   15.879185] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879187] BSS4 MinPhyBeaconRate=0
[   15.879188] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879189] BSS5 MinPhyBeaconRate=0
[   15.879191] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879192] BSS6 MinPhyBeaconRate=0
[   15.879194] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879195] BSS7 MinPhyBeaconRate=0
[   15.879197] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   15.879293] BSS0 MinPhyMgmtRate=0
[   15.879295] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879296] BSS1 MinPhyMgmtRate=0
[   15.879298] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879299] BSS2 MinPhyMgmtRate=0
[   15.879301] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879302] BSS3 MinPhyMgmtRate=0
[   15.879304] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879305] BSS4 MinPhyMgmtRate=0
[   15.879307] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879308] BSS5 MinPhyMgmtRate=0
[   15.879310] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879311] BSS6 MinPhyMgmtRate=0
[   15.879313] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879314] BSS7 MinPhyMgmtRate=0
[   15.879316] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   15.879413] BSS0 MinPhyBcMcRate=0
[   15.879414] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879416] BSS1 MinPhyBcMcRate=0
[   15.879417] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879419] BSS2 MinPhyBcMcRate=0
[   15.879420] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879422] BSS3 MinPhyBcMcRate=0
[   15.879423] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879425] BSS4 MinPhyBcMcRate=0
[   15.879426] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879428] BSS5 MinPhyBcMcRate=0
[   15.879429] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879430] BSS6 MinPhyBcMcRate=0
[   15.879432] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879433] BSS7 MinPhyBcMcRate=0
[   15.879435] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   15.879532] BSS0 LimitClientSupportRate=0
[   15.879534] BSS1 LimitClientSupportRate=0
[   15.879536] BSS2 LimitClientSupportRate=0
[   15.879537] BSS3 LimitClientSupportRate=0
[   15.879538] BSS4 LimitClientSupportRate=0
[   15.879540] BSS5 LimitClientSupportRate=0
[   15.879541] BSS6 LimitClientSupportRate=0
[   15.879543] BSS7 LimitClientSupportRate=0
[   15.895655] IcapMode = 0
[   15.895941] CFG80211Radio = 1
[   15.896074] scanEntryTimeoutSetProfileParam(): Normal scan entry aging timeout = 60s
[   15.896206] bootupScanSetProfileParam(): Boot-up scan = 0s
[   15.896689] RTMPSetProfileParameters()  BandIdx=0, SCSEnable=0
[   15.896691] mt7615_SetSCS()  BandIdx=0, SCSEnable=0
[   15.896927] WtcSetMaxStaNum: MaxStaNum:82, BssidNum:8, WdsNum:4, ApcliNum:1, MaxNumChipRept:32, MinMcastWcid:119
[   15.896970] Top Init Done!
[   15.896978] Use dev_alloc_skb
[   15.897112] RX[0] DESC 0000000061c341fe size = 16384
[   15.897297] RX[1] DESC 0000000059c5091a size = 8192
[   15.897482] Hif Init Done!
[   15.897486] ctl->txq = 0000000041583e86
[   15.897488] ctl->rxq = 00000000422ccf3d
[   15.897490] ctl->ackq = 0000000000fe18d5
[   15.897491] ctl->kickq = 00000000e179b57b
[   15.897493] ctl->tx_doneq = 000000001c23e0e9
[   15.897494] ctl->rx_doneq = 00000000285557e9
[   15.898562] mt7615_fw_prepare():FW(8a10), HW(8a10), CHIPID(7615))
[   15.898564] mt7615_fw_prepare(2755): MT7615_E3, USE E3 patch and ram code binary image
[   15.898568] AndesMTLoadRomMethodFwDlRing(1036), cap->rom_patch_len(11102)
[   15.898573] AndesRestartCheck: Current TOP_MISC2(0x1)
[   15.898576] AndesRestartCheck: (TOP_MISC2 = 1), ready to continue...RET(0)
[   15.898578] 2
[   15.898578] 0
[   15.898579] 1
[   15.898581] 7
[   15.898582] 0
[   15.898583] 8
[   15.898584] 0
[   15.898585] 9
[   15.898586] 1
[   15.898587] 9
[   15.898589] 2
[   15.898590] 7
[   15.898591] 1
[   15.898592] 8
[   15.898593] a


[   15.898597] platform =
[   15.898598] A
[   15.898598] L
[   15.898599] P
[   15.898601] S

[   15.898603] hw/sw version =
[   15.898605] 8a
[   15.898605] 10
[   15.898607] 8a
[   15.898608] 10

[   15.898610] patch version =
[   15.898612] 00
[   15.898612] 00
[   15.898613] 00
[   15.898615] 10

[   15.898679] Patch SEM Status=2
[   15.898691] MtCmdPatchSemGet:(ret = 0)
[   15.898693]
               Patch is not ready && get semaphore success, SemStatus(2)
[   15.898728] EventGenericEventHandler: CMD Success
[   15.898734] MtCmdAddressLenReq:(ret = 0)
[   15.898749] MtCmdPatchFinishReq
[   15.910030] EventGenericEventHandler: CMD Success
[   15.910059] Send checksum req..
[   15.910097] Patch SEM Status=3
[   15.910125] MtCmdPatchSemGet:(ret = 0)
[   15.910127]
               Release patch semaphore, SemStatus(3)
[   15.910129] AndesMTEraseRomPatch
[   15.910132] WfMcuHwInit: Before NICLoadFirmware, check IcapMode=0
[   15.910136] AndesMTLoadFwMethodFwDlRing(810), cap->fw_len(455080)
[   15.910139] Build Date:
[   15.910139] _
[   15.910141] 2
[   15.910142] 0
[   15.910143] 1
[   15.910144] 9
[   15.910145] 1
[   15.910146] 1
[   15.910147] 1
[   15.910149] 2
[   15.910150] 1
[   15.910151] 8
[   15.910152] 0
[   15.910153] 2

[   15.910155] Build Date:
[   15.910156] _
[   15.910157] 2
[   15.910158] 0
[   15.910159] 1
[   15.910160] 9
[   15.910161] 1
[   15.910163] 1
[   15.910164] 1
[   15.910165] 2
[   15.910166] 1
[   15.910167] 8
[   15.910168] 0
[   15.910169] 2

[   15.910174] AndesRestartCheck: Current TOP_MISC2(0x1)
[   15.910176] AndesRestartCheck: (TOP_MISC2 = 1), ready to continue...RET(0)
[   15.910211] EventGenericEventHandler: CMD Success
[   15.910217] MtCmdAddressLenReq:(ret = 0)
[   15.914197] EventGenericEventHandler: CMD Success
[   15.914228] MtCmdAddressLenReq:(ret = 0)
[   15.914285] MtCmdFwStartReq: override = 1, address = 540672
[   15.914864] EventGenericEventHandler: CMD Success
[   15.914871] Build Date:
[   15.914872] _
[   15.914873] 2
[   15.914874] 0
[   15.914875] 2
[   15.914876] 0
[   15.914877] 1
[   15.914879] 1
[   15.914880] 2
[   15.914881] 4
[   15.914882] 1
[   15.914883] 1
[   15.914884] 4
[   15.914885] 3

[   15.914921] EventGenericEventHandler: CMD Success
[   15.914927] MtCmdAddressLenReq:(ret = 0)
[   15.915055] MtCmdFwStartReq: override = 4, address = 0
[   15.951663] EventGenericEventHandler: CMD Success
[   16.021388] WfMcuHwInit: NICLoadFirmware OK, Check IcapMode=0
[   16.021391] MCU Init Done!
[   16.021398] efuse_probe: efuse = 10000212
[   16.021400] RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5
[   16.021402] RtmpEepromGetDefault::e2p_dafault=1
[   16.021404] RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1
[   16.021406] NVM is FLASH mode. dev_idx [1] FLASH OFFSET [0x8000]
[   16.028367] NICReadEEPROMParameters: EEPROM 0x52 b302
[   16.028370] NICReadEEPROMParameters: EEPROM 0x52 b302
[   23.513997] Country Region from e2p = 101
[   23.514002] mt7615_antenna_default_reset(): TxPath = 4, RxPath = 4
[   23.514004] mt7615_antenna_default_reset(): DBDC 2G TxPath = 2, 2G RxPath = 2
[   23.514006] mt7615_antenna_default_reset(): DBDC 5G TxPath = 2, 2G RxPath = 2
[   23.514012] rtmp_read_txpwr_from_eeprom(234): Don't Support this now!
[   23.514014] RTMPReadTxPwrPerRate(1382): Don't Support this now!
[   23.514018] RcRadioInit(): DbdcMode=0, ConcurrentBand=1
[   23.514022] RcRadioInit(): pRadioCtrl=0000000026ef3511,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xf
[   23.514024] Band Rf: 1, Phy Mode: 2
[   23.514026] AntCfgInit(2824): Not support for HIF_MT yet!
[   23.514031] ubnt_load_sku_data: UBNT MT RF_LOCKDOWN Feature ON !!!
[   23.514035] --> Using builtin MT SKU table for US
[   23.514108] MtBfBackOffLoadTable: RF_LOCKDOWN Feature OFF !!!
[   23.514328] RtmpOSFileOpen(): Error 2 opening /etc_ro/Wireless/RT2860AP/7615_SingleSKU_BF.dat
[   23.514330] EEPROM Init Done!
[   23.514335] mt_mac_init()-->
[   23.514337] mt_mac_pse_init(2775): Don't Support this now!
[   23.514339] mt7615_init_mac_cr()-->
[   23.514351] mt7615_init_mac_cr(): TMAC_TRCR0=0x82783c8c
[   23.514370] MtAsicSetMacMaxLen(1301): Not finish Yet!
[   23.514372] <--mt_mac_init()
[   23.514602] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   23.514661] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   23.514715] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   23.514724] MAC Init Done!
[   23.514727] MT7615BBPInit():BBP Initialization.....
[   23.514730]  Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2
[   23.514733]  Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0
[   23.514734] MT7615BBPInit() todo
[   23.514735] PHY Init Done!
[   23.514980] tx_pwr_comp_init():NotSupportYet!
[   23.515093] MtCmdSetMacTxRx:(ret = 0)
[   23.515236] ApAutoChannelAtBootUp----------------->
[   23.515238] ApAutoChannelAtBootUp: AutoChannelBootup = 1, AutoChannelFlag = 1
[   23.515352] MtCmdSetMacTxRx:(ret = 0)
[   26.743717] ====================================================================
[   26.743721] Channel  36 : Busy Time =   5323, Skip Channel = FALSE, BwCap = TRUE
[   26.743724] Channel  40 : Busy Time =   3321, Skip Channel = FALSE, BwCap = TRUE
[   26.743725] Channel  44 : Busy Time =  12917, Skip Channel = FALSE, BwCap = TRUE
[   26.743727] Channel  48 : Busy Time =   3252, Skip Channel = FALSE, BwCap = TRUE
[   26.743729] Channel 149 : Busy Time =    920, Skip Channel = FALSE, BwCap = TRUE
[   26.743731] Channel 153 : Busy Time =   1041, Skip Channel = FALSE, BwCap = TRUE
[   26.743732] Channel 157 : Busy Time =   1107, Skip Channel = FALSE, BwCap = TRUE
[   26.743734] Channel 161 : Busy Time =    320, Skip Channel = FALSE, BwCap = TRUE
[   26.743735] ====================================================================
[   26.743738] Rule 3 Channel Busy time value : Select Primary Channel 161
[   26.743740] Rule 3 Channel Busy time value : Min Channel Busy = 1107
[   26.743742] Rule 3 Channel Busy time value : BW = 80
[   26.743745]  AutoChSelUpdateChannel(): Update channel for wdev0 for this band PhyMode = 49,Channel = 161
[   26.743747]  AutoChSelUpdateChannel(): Update channel for wdev1 for this band PhyMode = 49,Channel = 161
[   26.743749]  AutoChSelUpdateChannel(): Update channel for wdev2 for this band PhyMode = 49,Channel = 161
[   26.743751]  AutoChSelUpdateChannel(): Update channel for wdev3 for this band PhyMode = 49,Channel = 161
[   26.743753]  AutoChSelUpdateChannel(): Update channel for wdev4 for this band PhyMode = 49,Channel = 161
[   26.743755]  AutoChSelUpdateChannel(): Update channel for wdev5 for this band PhyMode = 49,Channel = 161
[   26.743757]  AutoChSelUpdateChannel(): Update channel for wdev6 for this band PhyMode = 49,Channel = 161
[   26.743759]  AutoChSelUpdateChannel(): Update channel for wdev7 for this band PhyMode = 49,Channel = 161
[   26.743760] ApAutoChannelAtBootUp<-----------------
[   26.743763] WifiSysOpen(), wdev idx = 0
[   26.743767] wdev_attr_update(): wdevId0 = e0:63:da:21:ac:23
[   26.744026] Current Channel is 161. DfsZeroWaitSupport=0
[   26.744037] MtAsicSetChBusyStat(841): Not support for HIF_MT yet!
[   26.744049] [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0
[   26.744053] [RSN IE CAP] WPAMakeRsnIeCap RSN CAP 00 00
[   26.744057] HcUpdatePhyMode(): Update PhyMode for all wdev for this band PhyMode:49,Channel=161
[   26.744146] wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:127 for WDEV_TYPE:1
                LinkToOmacIdx = 0, LinkToWdevType = 1
[   26.751447] bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO),                 CmdBssInfoBmcRate.u2BcTransmit= 8192,                 CmdBssInfoBmcRate.u2McTransmit = 8192
[   26.769663]  [RadarStateCheck]Set into RD_NORMAL_MODE
[   26.769665] APStartUpForMbss: UBNT RF lock down!! SKUenable = 1!!
[   26.769668] MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0
[   26.769675] MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0
[   26.769679] MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0
[   26.769687] mt7615_bbp_adjust():rf_bw=2, ext_ch=3, PrimCh=161, HT-CentCh=159, VHT-CentCh=155
[   26.815452] ap_phy_rrm_init_byRf(): AP Set CentralFreq at 155(Prim=161, HT-CentCh=159, VHT-CentCh=155, BBP_BW=2)
[   26.815514] LeadTimeForBcn, OmacIdx = 0, WDEV_WITH_BCN_ABILITY
[   26.815547] MtAsicSetRalinkBurstMode(2624): Not support for HIF_MT yet!
[   26.815549] MtAsicSetPiggyBack(778): Not support for HIF_MT yet!
[   26.815551] MtAsicSetTxPreamble(2603): Not support for HIF_MT yet!
[   26.815568] ap_ftkd> Initialize FT KDP Module...
[   26.815572] Main bssid = e0:63:da:21:ac:23
[   26.815791] AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn
[   26.816028] MtCmdSetMacTxRx:(ret = 0)
[   26.816080] fdb_enable()
[   27.119090] MCS Set = ff ff ff ff 01
[   27.119098] <==== mt_wifi_init, Status=0
[   27.119107] MtCmdEDCCACtrl: BandIdx: 0, EDCCACtrl: 1
[   27.119306] rai1: VLAN features updated vwire/vport[0]!
[   27.119648] rai2: VLAN features updated vwire/vport[0]!
[   27.120044] rai3: VLAN features updated vwire/vport[0]!
[   27.120383] rai4: VLAN features updated vwire/vport[0]!
[   27.120646] rai5: VLAN features updated vwire/vport[0]!
[   27.120952] rai6: VLAN features updated vwire/vport[0]!
[   27.121203] rai7: VLAN features updated vwire/vport[0]!
[   27.121403] WDS_Init():
[   27.121513] The new WDS interface MAC = FF:FF:FF:FF:FF:FF
[   27.121515]   MacTabMatchWCID = 0
[   27.121551] wdsi0: VLAN features updated vwire/vport[0]!
[   27.121839] The new WDS interface MAC = FF:FF:FF:FF:FF:FF
[   27.121841]   MacTabMatchWCID = 0
[   27.121868] wdsi1: VLAN features updated vwire/vport[0]!
[   27.122168] The new WDS interface MAC = FF:FF:FF:FF:FF:FF
[   27.122171]   MacTabMatchWCID = 0
[   27.122194] wdsi2: VLAN features updated vwire/vport[0]!
[   27.122446] The new WDS interface MAC = FF:FF:FF:FF:FF:FF
[   27.122448]   MacTabMatchWCID = 0
[   27.122470] wdsi3: VLAN features updated vwire/vport[0]!
[   27.122665] Total allocated 4 WDS interfaces!
[   27.122785] apclii0: VLAN features updated vwire/vport[0]!
[   27.123019] APCLI init address table. Max count:64
[   27.123025] 80211> re-init bands...
[   27.123027] 80211> RFICType= 3, NumOfChan= 48
[   27.123029] 80211> Number of rate = 12
[   27.123030] 80211> CurTxPower = 0 dBm
[   27.123034] 80211> TxStream = 4
[   27.123039] WtcSetMaxStaNum: MaxStaNum:82, BssidNum:8, WdsNum:4, ApcliNum:1, MaxNumChipRept:32, MinMcastWcid:119
[   27.123060] red_is_enabled: set CR4/N9 RED Enable to 1.
[   27.123065] cp_support_is_enabled: set CR4 CP_SUPPORT to Mode 2.
[   27.123067] Correct apidx from 0 to 0 for WscUUIDInit
[   27.123069] Generate UUID for apidx(0)
[   27.123180] 8021q: adding VLAN 0 to HW filter on device rai0
[   27.164421] device ra0 entered promiscuous mode
[   27.167304] device rai0 entered promiscuous mode
[   27.191768] br0: port 2(rai0) entered blocking state
[   27.191772] br0: port 2(rai0) entered disabled state
[   27.191887] br0: port 2(rai0) entered blocking state
[   27.191890] br0: port 2(rai0) entered forwarding state
[   27.197085] br0: port 3(ra0) entered blocking state
[   27.197089] br0: port 3(ra0) entered disabled state
[   27.197194] br0: port 3(ra0) entered blocking state
[   27.197197] br0: port 3(ra0) entered forwarding state
[   27.724888] PPP generic driver version 2.4.2
[   30.580462] NET: Registered protocol family 24
[   32.222105] br0: port 1(switch0) entered disabled state
[   32.363352] br0: port 1(switch0.1) entered blocking state
[   32.363356] br0: port 1(switch0.1) entered disabled state
[   32.363451] device switch0.1 entered promiscuous mode
[   32.363495] br0: port 1(switch0.1) entered blocking state
[   32.363498] br0: port 1(switch0.1) entered forwarding state
[   32.448702] ICMPv6: process `ubios-udapi-ser' is using deprecated sysctl (syscall) net.ipv6.neigh.apcli0.base_reachable_time - use net.ipv6.neigh.apcli0.base_reachable_time_ms instead
[   32.500768] Init chrdev /dev/detector with major 190
[   32.500777] tdts: tcp_conn_max = 32000

[   32.500779] tdts: tcp_conn_timeout = 300 sec

[   34.056151] cgroup: podman (2491) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   34.056155] cgroup: "memory" requires setting use_hierarchy to 1 on the root
[   34.525003] MTPciPollTxRxEmpty
[   35.142111] AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0
[   35.142115] RTMPSetPiggyBack(1101): Not support for HIF_MT yet!
[   35.142125] ap_ftkd> Release FT KDP Module...
[   35.147310] RT28xxPciAsicRadioOff(): Not support for HIF_MT yet!
[   35.147313] RTMPDrvClose call RT28xxPciAsicRadioOff fail !!
[   35.147328] tx_kickout_fail_count = 0
[   35.147329] tx_timeout_fail_count = 0
[   35.147331] rx_receive_fail_count = 0
[   35.147332] alloc_cmd_msg = 36
[   35.147334] free_cmd_msg = 36
[   35.157087] br0: port 3(ra0) entered disabled state
[   35.157684] Unkown frame_type = 20, req = 1
[   35.157703] Unkown frame_type = 0, req = 1
[   35.157830] TX_BCN DESC 0000000093ee700e size = 320
[   35.157836] RX[0] DESC 0000000085f36136 size = 2048
[   35.157910] RX[1] DESC 0000000015ea0287 size = 2048
[   35.158779] UserCfgInit: UBNT RF lock down!! SKUenable = 1!!
[   35.159194] cfg_mode=9
[   35.159196] cfg_mode=9
[   35.159200] wmode_band_equal(): Band Equal!
[   35.159337] BSS0 MinDataRate=6
[   35.159339] BSS1 MinDataRate=0
[   35.159340] BSS2 MinDataRate=0
[   35.159342] BSS3 MinDataRate=0
[   35.159343] BSS4 MinDataRate=0
[   35.159345] BSS5 MinDataRate=0
[   35.159346] BSS6 MinDataRate=0
[   35.159348] BSS7 MinDataRate=0
[   35.159394] BSS0 MinBCMCRate=6
[   35.159395] BSS1 MinBCMCRate=0
[   35.159397] BSS2 MinBCMCRate=0
[   35.159398] BSS3 MinBCMCRate=0
[   35.159399] BSS4 MinBCMCRate=0
[   35.159401] BSS5 MinBCMCRate=0
[   35.159402] BSS6 MinBCMCRate=0
[   35.159404] BSS7 MinBCMCRate=0
[   35.159445] BSS0 MinMgmtRate=6
[   35.159447] BSS1 MinMgmtRate=0
[   35.159448] BSS2 MinMgmtRate=0
[   35.159450] BSS3 MinMgmtRate=0
[   35.159451] BSS4 MinMgmtRate=0
[   35.159452] BSS5 MinMgmtRate=0
[   35.159454] BSS6 MinMgmtRate=0
[   35.159455] BSS7 MinMgmtRate=0
[   35.159496] BSS0 MinBeaconRate=6
[   35.159498] BSS1 MinBeaconRate=0
[   35.159499] BSS2 MinBeaconRate=0
[   35.159501] BSS3 MinBeaconRate=0
[   35.159502] BSS4 MinBeaconRate=0
[   35.159504] BSS5 MinBeaconRate=0
[   35.159505] BSS6 MinBeaconRate=0
[   35.159507] BSS7 MinBeaconRate=0
[   35.159549] BSS0 LimitClientSupportRate=0
[   35.159551] BSS1 LimitClientSupportRate=0
[   35.159552] BSS2 LimitClientSupportRate=0
[   35.159554] BSS3 LimitClientSupportRate=0
[   35.159555] BSS4 LimitClientSupportRate=0
[   35.159557] BSS5 LimitClientSupportRate=0
[   35.159558] BSS6 LimitClientSupportRate=0
[   35.159560] BSS7 LimitClientSupportRate=0
[   35.159603] BSS0 DisableCCKRate=1
[   35.159605] BSS1 DisableCCKRate=0
[   35.159606] BSS2 DisableCCKRate=0
[   35.159608] BSS3 DisableCCKRate=0
[   35.159609] BSS4 DisableCCKRate=0
[   35.159611] BSS5 DisableCCKRate=0
[   35.159612] BSS6 DisableCCKRate=0
[   35.159614] BSS7 DisableCCKRate=0
[   35.159745] BandSteering=0
[   35.159782] BndStrgBssIdx=0;0;0;0
[   35.160103] APSDCapable[0]=0
[   35.160105] APSDCapable[1]=0
[   35.160107] APSDCapable[2]=0
[   35.160108] APSDCapable[3]=0
[   35.160109] APSDCapable[4]=0
[   35.160111] default ApCliAPSDCapable[0]=0
[   35.186208] Key1Str is Invalid key length(0) or Type(0)
[   35.186577] Key2Str is Invalid key length(0) or Type(0)
[   35.186946] Key3Str is Invalid key length(0) or Type(0)
[   35.187314] Key4Str is Invalid key length(0) or Type(0)
[   35.199937] Smart Carrier Sense = 0
[   35.199989] CFG80211Radio = 1
[   35.200037] scanEntryTimeoutSetProfileParam(): Normal scan entry aging timeout = 60s
[   35.200070] ==>RTMPSetProfileParameters (OFF)
[   35.200159] ubnt_load_sku_data: UBNT RLT RF_LOCKDOWN Feature ON !!!
[   35.200162] --> Using builtin RLT SKU table for US
[   35.200264] FW Version:
[   35.200265] a
[   35.200266] p
[   35.200267] _
[   35.200269] p
[   35.200270] c
[   35.200271] i
[   35.200272] e
[   35.200273]
[   35.200274]
[   35.200275]

[   35.200278] FW Build Date:
[   35.200278] 2
[   35.200280] 0
[   35.200281] 1
[   35.200282] 6
[   35.200283] 0
[   35.200284] 1
[   35.200285] 0
[   35.200286] 7
[   35.200287] 1
[   35.200289] 0
[   35.200290] 0
[   35.200291] 7
[   35.200292] 5
[   35.200293] 5
[   35.200294]

[   35.200310] AsicDMASchedulerInit(): DMA Scheduler Mode=0(LMAC)
[   35.200331] efuse_probe: efuse = 10000012
[   35.200334] RtmpChipOpsEepromHook::e2p_type=1, inf_Type=5
[   35.200335] RtmpEepromGetDefault::e2p_dafault=1
[   35.200337] RtmpChipOpsEepromHook: E2P type(1), E2pAccessMode = 1, E2P default = 1
[   35.200339] NVM is EFUSE mode
[   35.200350] 1. Phy Mode = 14
[   35.200352] NVM is Efuse and its size =1d[1e0-1fc]
[   35.200503] Load EEPROM buffer from efuse, and change to BIN buffer mode
[   35.204922] efuse_probe: efuse = 10000012
[   35.204924] RtmpChipOpsEepromHook::forceMode: 4 , infType: 5
[   35.204925] NVM is BIN mode
[   35.204927] @@@  NICReadEEPROMParameters : pAd->FWLoad=1
[   35.204930] Country Region from e2p = ffff
[   35.204934] tssi_1_target_pwr_g_band = 34
[   35.204938] 2. Phy Mode = 14
[   35.205046] 3. Phy Mode = 14
[   35.205049] NICInitPwrPinCfg(15): Not support for HIF_MT yet!
[   35.205051] NICInitializeAsic(845): Not support rtmp_mac_sys_reset () for HIF_MT yet!
[   35.205053] mt_mac_init()-->
[   35.205054] mt7603_init_mac_cr()-->
[   35.205252] AsicSetMacMaxLen(2548): Set the Max RxPktLen=1024!
[   35.205255] <--mt_mac_init()
[   35.205395]  WTBL Segment 1 info:
[   35.205397]          MemBaseAddr/FID:0x28000/0
[   35.205398]          EntrySize/Cnt:32/128
[   35.205400]  WTBL Segment 2 info:
[   35.205401]          MemBaseAddr/FID:0x40000/0
[   35.205403]          EntrySize/Cnt:64/128
[   35.205404]  WTBL Segment 3 info:
[   35.205406]          MemBaseAddr/FID:0x42000/64
[   35.205407]          EntrySize/Cnt:64/128
[   35.205408]  WTBL Segment 4 info:
[   35.205410]          MemBaseAddr/FID:0x44000/128
[   35.205411]          EntrySize/Cnt:32/128
[   35.205420] MtAsicACQueue: Write CR:21510, Value=10421
[   35.205426] MtAsicACQueue: Write CR:21500, Value=10421
[   35.205494] AntCfgInit(3787): Not support for HIF_MT yet!
[   35.205511] Ucast set for OFDM mode MCS 0
[   35.205541] MCS Set = ff ff 00 00 00
[   35.205558] [PMF]ap_pmf_init:: apidx=0, MFPC=0, MFPR=0, SHA256=0
[   35.205564] [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0
[   35.205581] [PMF]ap_pmf_init:: apidx=1, MFPC=0, MFPR=0, SHA256=0
[   35.205587] [PMF]ap_pmf_init:: apidx=2, MFPC=0, MFPR=0, SHA256=0
[   35.205593] [PMF]ap_pmf_init:: apidx=3, MFPC=0, MFPR=0, SHA256=0
[   35.205599] [PMF]ap_pmf_init:: apidx=4, MFPC=0, MFPR=0, SHA256=0
[   35.205605] [PMF]ap_pmf_init:: apidx=5, MFPC=0, MFPR=0, SHA256=0
[   35.205610] [PMF]ap_pmf_init:: apidx=6, MFPC=0, MFPR=0, SHA256=0
[   35.205616] [PMF]ap_pmf_init:: apidx=7, MFPC=0, MFPR=0, SHA256=0
[   35.205638] AsicSetRalinkBurstMode(5291): Not support for HIF_MT yet!
[   35.205640] RTMPSetPiggyBack(1101): Not support for HIF_MT yet!
[   35.228074] AsicSetTxPreamble(5270): Not support for HIF_MT yet!
[   35.228079] Ucast set for OFDM mode MCS 0
[   35.228597] AsicAddSharedKeyEntry(2714): Not support for HIF_MT yet!
[   35.228639] AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0
[   35.228642] ap_ftkd> Initialize FT KDP Module...
[   35.228646] Main bssid = e0:63:da:21:ac:22
[   35.228734] <==== rt28xx_init, Status=0
[   35.228740] 80211> re-init bands...
[   35.228742] 80211> RFICType= 1, NumOfChan= 14
[   35.228743] 80211> Number of rate = 12
[   35.228745] 80211> CurTxPower = 0 dBm
[   35.228769] @@@ ed_monitor_init : ===>
[   35.228770] @@@ ed_monitor_init : <===
[   35.228775] mt7603_set_ed_cca: NON-CE Region,60200618=d748340f,ed_th=34
[   35.228778] mt7603_set_ed_cca: TURN ON EDCCA mac 0x10618 = 0xd748340f, EDCCA_Status=1
[   35.228781] Number of Packet Allocated in open = 0
[   35.228782] Number of Packet Freed in open = 0
[   35.228784] WiFi Startup Cost (ra0): 0.072s
[   35.228922] br0: port 3(ra0) entered blocking state
[   35.228928] br0: port 3(ra0) entered forwarding state
[   35.228954] 8021q: adding VLAN 0 to HW filter on device ra0
[   35.230703] WifiSysClose(), wdev idx = 0
[   35.230879] WifiSysGetBssInfoState(): BssInfoIdx 0 not found!!!
[   35.230882] WifiSysUpdateBssInfoState(): BssInfoIdx 0 not found!!!
[   35.231357] rai0: VLAN features updated vwire/vport[0]!
[   35.231386] MtAsicSetPiggyBack(778): Not support for HIF_MT yet!
[   35.231389] WifiSysClose(), wdev idx = 0
[   35.231399] WifiSysClose(), wdev idx = 1
[   35.231401] WifiSysClose(), wdev idx = 2
[   35.231403] WifiSysClose(), wdev idx = 3
[   35.231405] WifiSysClose(), wdev idx = 4
[   35.231406] WifiSysClose(), wdev idx = 5
[   35.231408] WifiSysClose(), wdev idx = 6
[   35.231410] WifiSysClose(), wdev idx = 7
[   35.231522] ap_ftkd> Release FT KDP Module...
[   35.231528] MtAsicSetPiggyBack(778): Not support for HIF_MT yet!
[   35.231608] kill LoopBackTxTask task failed!
[   35.236658] AndesRestartCheck: Current TOP_MISC2(0x7)
[   35.280058] CmdReStartDLRsp: Status Success!, Status(0)
[   35.281082] AndesRestartCheck:  TOP_MISC2(1)
[   35.281201] RT28xxPciAsicRadioOff(): Not support for HIF_MT yet!
[   35.281203] RTMPDrvClose call RT28xxPciAsicRadioOff fail !!
[   35.281239] tx_kickout_fail_count = 0
[   35.281240] tx_timeout_fail_count = 0
[   35.281242] rx_receive_fail_count = 0
[   35.281243] alloc_cmd_msg = 392
[   35.281245] free_cmd_msg = 392
[   35.281742] cut_through_token_list_destroy(): 0000000057b7b19b,0000000057b7b19b
[   35.281833] cut_through_token_list_destroy(): 00000000f1059b6c,00000000f1059b6c
[   35.282507] FwOwn()::Set Fw Own
[   35.284740] RTMP_AllTimerListRelease: Size=34
[   35.284742] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d6c5e40!
[   35.284821] RTMP_AllTimerListRelease: Timer is allocated by APOneShotSettingInitialize+0xcc/0x6b0 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:1
[   35.284824] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d6c5e98!
[   35.284864] RTMP_AllTimerListRelease: Timer is allocated by APOneShotSettingInitialize+0xf4/0x6b0 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:1
[   35.284885] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5aa9d0!
[   35.284927] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.284929] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5aaa28!
[   35.284970] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.284972] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5b17c0!
[   35.285012] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285014] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5b1818!
[   35.285054] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285056] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5b85b0!
[   35.285096] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285098] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5b8608!
[   35.285138] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285140] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5bf3a0!
[   35.285180] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285183] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5bf3f8!
[   35.285223] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285225] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5c6190!
[   35.285265] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285267] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5c61e8!
[   35.285307] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285309] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5ccf80!
[   35.285349] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285351] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5ccfd8!
[   35.285391] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285393] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5d3d70!
[   35.285433] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285435] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5d3dc8!
[   35.285475] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285477] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5dab60!
[   35.285517] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285519] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5dabb8!
[   35.285560] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285562] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5e1950!
[   35.285602] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285604] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5e19a8!
[   35.285644] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285646] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5e8740!
[   35.285686] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285688] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5e8798!
[   35.285728] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285730] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5ef530!
[   35.285771] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285773] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5ef588!
[   35.285813] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285815] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5f6320!
[   35.285855] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285857] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5f6378!
[   35.285897] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285899] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5fd110!
[   35.285940] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285942] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d5fd168!
[   35.285982] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.285984] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d603f00!
[   35.286024] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286026] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d603f58!
[   35.286066] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286068] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d60acf0!
[   35.286109] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286111] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d60ad48!
[   35.286151] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286153] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d611ae0!
[   35.286193] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x84/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286195] RTMP_AllTimerListRelease: Cancel timer obj ffffff800d611b38!
[   35.286235] RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x120 [mt_wifi],Valid:1,Lock:ffffff800d7cdae8,State:0
[   35.286238] FwOwn()::Return since already in Fw Own...
[   35.286257] <---HwCtrlThread
[   35.293981] br0: port 2(rai0) entered disabled state
[   35.298443] DriverOwn()::Try to Clear FW Own...
[   35.599293] DriverOwn()::Success to clear FW Own
[   35.602994] APWdsInitialize():WdsEntry[0]
[   35.602998] APWdsInitialize():WdsEntry[1]
[   35.603000] APWdsInitialize():WdsEntry[2]
[   35.603002] APWdsInitialize():WdsEntry[3]
[   35.604732] E2pAccessMode=2
[   35.604892] SSID[0]=88d0b8ba8eac1aeb, EdcaIdx=0
[   35.605702] TriBandChGrp=0/0/0/0
[   35.606008] cfg_mode=14
[   35.606010] cfg_mode=14
[   35.606014] wmode_band_equal(): Band Equal!
[   35.606154] BandSteering=0
[   35.606256] BndStrgBssIdx=0;0;0;0
[   35.606271] [TxPower] BAND0: 100
[   35.606532] [PERCENTAGEenable] BAND0: 1
[   35.606550] [BFBACKOFFenable] BAND0: 0
[   35.606566] CalCacheApply = 0
[   35.606903] SHAILESH: BSS0 VlanTag=0
[   35.606905] SHAILESH: BSS1 VlanTag=0
[   35.606906] SHAILESH: BSS2 VlanTag=0
[   35.606908] SHAILESH: BSS3 VlanTag=0
[   35.606909] SHAILESH: BSS4 VlanTag=0
[   35.606911] SHAILESH: BSS5 VlanTag=0
[   35.606912] SHAILESH: BSS6 VlanTag=0
[   35.606914] SHAILESH: BSS7 VlanTag=0
[   35.607022] SHAILESH: APCLI0 VlanTag=0
[   35.607077] APEdca0
[   35.607222] APEdca1
[   35.607367] APEdca2
[   35.607512] APEdca3
[   35.610938] APSDCapable[0]=0
[   35.610941] APSDCapable[1]=0
[   35.610943] APSDCapable[2]=0
[   35.610945] APSDCapable[3]=0
[   35.610946] APSDCapable[4]=0
[   35.610948] default ApCliAPSDCapable[0]=0
[   35.611752] DfsZeroWait Support=0/0
[   35.612126] DfsZeroWaitCacTime=255/255
[   35.633707] [PMF]Set_PMFMFPC_Proc:: apidx=0, Desired MFPC=0
[   35.633794] [PMF]Set_PMFMFPR_Proc:: apidx=0, Desired MFPR=0
[   35.633879] [PMF]Set_PMFSHA256_Proc:: apidx=0, Desired PMFSHA256=0
[   35.635510] systemd-journald[28]: Received request to flush runtime journal from PID 1
[   35.637794] rtmp_read_wds_from_file(): WDS Profile
[   35.638304] APWdsInitialize():WdsEntry[0]
[   35.638306] APWdsInitialize():WdsEntry[1]
[   35.638308] APWdsInitialize():WdsEntry[2]
[   35.638309] APWdsInitialize():WdsEntry[3]
[   35.638311] WDS-Enable mode=0
[   35.639745] HT: WDEV[0] Ext Channel = ABOVE
[   35.645647] BSS0 MinPhyDataRate=0
[   35.645650] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645652] BSS1 MinPhyDataRate=0
[   35.645654] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645656] BSS2 MinPhyDataRate=0
[   35.645658] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645659] BSS3 MinPhyDataRate=0
[   35.645661] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645662] BSS4 MinPhyDataRate=0
[   35.645664] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645665] BSS5 MinPhyDataRate=0
[   35.645667] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645668] BSS6 MinPhyDataRate=0
[   35.645670] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645671] BSS7 MinPhyDataRate=0
[   35.645673] VINAY: RTMPMinPhyDataRateCfg MinPhyDataRateTransmit = 0x2000
[   35.645775] BSS0 MinPhyBeaconRate=0
[   35.645777] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645779] BSS1 MinPhyBeaconRate=0
[   35.645780] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645782] BSS2 MinPhyBeaconRate=0
[   35.645783] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645785] BSS3 MinPhyBeaconRate=0
[   35.645786] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645788] BSS4 MinPhyBeaconRate=0
[   35.645789] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645791] BSS5 MinPhyBeaconRate=0
[   35.645792] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645794] BSS6 MinPhyBeaconRate=0
[   35.645795] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645797] BSS7 MinPhyBeaconRate=0
[   35.645798] VINAY: RTMPMinPhyBeaconRateCfg MinPhyBeaconRateTransmit = 0x2000
[   35.645901] BSS0 MinPhyMgmtRate=0
[   35.645903] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645905] BSS1 MinPhyMgmtRate=0
[   35.645906] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645908] BSS2 MinPhyMgmtRate=0
[   35.645909] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645911] BSS3 MinPhyMgmtRate=0
[   35.645912] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645913] BSS4 MinPhyMgmtRate=0
[   35.645915] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645916] BSS5 MinPhyMgmtRate=0
[   35.645918] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645919] BSS6 MinPhyMgmtRate=0
[   35.645921] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.645922] BSS7 MinPhyMgmtRate=0
[   35.645924] VINAY: RTMPMinPhyMgmtRateCfg MinPhyMgmtRateTransmit = 0x2000
[   35.646027] BSS0 MinPhyBcMcRate=0
[   35.646029] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646031] BSS1 MinPhyBcMcRate=0
[   35.646032] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646034] BSS2 MinPhyBcMcRate=0
[   35.646035] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646037] BSS3 MinPhyBcMcRate=0
[   35.646038] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646040] BSS4 MinPhyBcMcRate=0
[   35.646041] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646042] BSS5 MinPhyBcMcRate=0
[   35.646044] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646045] BSS6 MinPhyBcMcRate=0
[   35.646047] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646048] BSS7 MinPhyBcMcRate=0
[   35.646050] VINAY: RTMPMinPhyBcMcRateCfg MinPhyBcMcRateTransmit = 0x2000
[   35.646154] BSS0 LimitClientSupportRate=0
[   35.646156] BSS1 LimitClientSupportRate=0
[   35.646158] BSS2 LimitClientSupportRate=0
[   35.646159] BSS3 LimitClientSupportRate=0
[   35.646161] BSS4 LimitClientSupportRate=0
[   35.646162] BSS5 LimitClientSupportRate=0
[   35.646163] BSS6 LimitClientSupportRate=0
[   35.646165] BSS7 LimitClientSupportRate=0
[   35.663524] IcapMode = 0
[   35.663841] CFG80211Radio = 1
[   35.663985] scanEntryTimeoutSetProfileParam(): Normal scan entry aging timeout = 60s
[   35.664129] bootupScanSetProfileParam(): Boot-up scan = 0s
[   35.664654] RTMPSetProfileParameters()  BandIdx=0, SCSEnable=0
[   35.664657] mt7615_SetSCS()  BandIdx=0, SCSEnable=0
[   35.664914] WtcSetMaxStaNum: MaxStaNum:82, BssidNum:8, WdsNum:4, ApcliNum:1, MaxNumChipRept:32, MinMcastWcid:119
[   35.664964] Top Init Done!
[   35.664973] Use dev_alloc_skb
[   35.666240] cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096
[   35.666245] cut_through_token_list_init(): 0000000051478ff5,0000000051478ff5
[   35.666348] cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096
[   35.666350] cut_through_token_list_init(): 00000000feef73fc,00000000feef73fc
[   35.666358] RX[0] DESC 0000000061c341fe size = 16384
[   35.666548] RX[1] DESC 0000000059c5091a size = 8192
[   35.666748] Hif Init Done!
[   35.666752] ctl->txq = 0000000041583e86
[   35.666754] ctl->rxq = 00000000422ccf3d
[   35.666755] ctl->ackq = 0000000000fe18d5
[   35.666757] ctl->kickq = 00000000e179b57b
[   35.666758] ctl->tx_doneq = 000000001c23e0e9
[   35.666760] ctl->rx_doneq = 00000000285557e9
[   35.667828] mt7615_fw_prepare():FW(8a10), HW(8a10), CHIPID(7615))
[   35.667831] mt7615_fw_prepare(2755): MT7615_E3, USE E3 patch and ram code binary image
[   35.667834] AndesMTLoadRomMethodFwDlRing(1036), cap->rom_patch_len(11102)
[   35.667840] AndesRestartCheck: Current TOP_MISC2(0x1)
[   35.667843] AndesRestartCheck: (TOP_MISC2 = 1), ready to continue...RET(0)
[   35.667845] 2
[   35.667845] 0
[   35.667847] 1
[   35.667848] 7
[   35.667849] 0
[   35.667850] 8
[   35.667851] 0
[   35.667852] 9
[   35.667853] 1
[   35.667855] 9
[   35.667856] 2
[   35.667857] 7
[   35.667858] 1
[   35.667859] 8
[   35.667860] a


[   35.667864] platform =
[   35.667865] A
[   35.667865] L
[   35.667867] P
[   35.667868] S

[   35.667870] hw/sw version =
[   35.667872] 8a
[   35.667872] 10
[   35.667874] 8a
[   35.667875] 10

[   35.667877] patch version =
[   35.667879] 00
[   35.667879] 00
[   35.667881] 00
[   35.667882] 10

[   35.667943] Patch SEM Status=1
[   35.667961] MtCmdPatchSemGet:(ret = 0)
[   35.667963]
               Patch is ready, continue to ILM/DLM DL, SemStatus(1)
[   35.668001] Patch SEM Status=3
[   35.668008] MtCmdPatchSemGet:(ret = 0)
[   35.668010]
               Release patch semaphore, SemStatus(3)
[   35.668012] AndesMTEraseRomPatch
[   35.668014] WfMcuHwInit: Before NICLoadFirmware, check IcapMode=0
[   35.668020] AndesMTLoadFwMethodFwDlRing(810), cap->fw_len(455080)
[   35.668022] Build Date:
[   35.668023] _
[   35.668024] 2
[   35.668025] 0
[   35.668026] 1
[   35.668027] 9
[   35.668028] 1
[   35.668029] 1
[   35.668031] 1
[   35.668032] 2
[   35.668033] 1
[   35.668034] 8
[   35.668035] 0
[   35.668036] 2

[   35.668039] Build Date:
[   35.668039] _
[   35.668040] 2
[   35.668041] 0
[   35.668042] 1
[   35.668044] 9
[   35.668045] 1
[   35.668046] 1
[   35.668047] 1
[   35.668048] 2
[   35.668049] 1
[   35.668050] 8
[   35.668051] 0
[   35.668052] 2

[   35.668057] AndesRestartCheck: Current TOP_MISC2(0x1)
[   35.668059] AndesRestartCheck: (TOP_MISC2 = 1), ready to continue...RET(0)
[   35.668094] EventGenericEventHandler: CMD Success
[   35.668101] MtCmdAddressLenReq:(ret = 0)
[   35.672115] EventGenericEventHandler: CMD Success
[   35.672128] MtCmdAddressLenReq:(ret = 0)
[   35.672211] MtCmdFwStartReq: override = 1, address = 540672
[   35.672752] EventGenericEventHandler: CMD Success
[   35.672760] Build Date:
[   35.672761] _
[   35.672763] 2
[   35.672764] 0
[   35.672765] 2
[   35.672766] 0
[   35.672767] 1
[   35.672768] 1
[   35.672771] 2
[   35.672772] 4
[   35.672773] 1
[   35.672774] 1
[   35.672775] 4
[   35.672776] 3

[   35.672814] EventGenericEventHandler: CMD Success
[   35.672821] MtCmdAddressLenReq:(ret = 0)
[   35.672979] MtCmdFwStartReq: override = 4, address = 0
[   35.709562] EventGenericEventHandler: CMD Success
[   35.779311] WfMcuHwInit: NICLoadFirmware OK, Check IcapMode=0
[   35.779315] MCU Init Done!
[   35.779323] efuse_probe: efuse = 10000212
[   35.779325] RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5
[   35.779327] RtmpEepromGetDefault::e2p_dafault=1
[   35.779329] RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1
[   35.779331] NVM is FLASH mode. dev_idx [1] FLASH OFFSET [0x8000]
[   35.786252] NICReadEEPROMParameters: EEPROM 0x52 b302
[   35.786256] NICReadEEPROMParameters: EEPROM 0x52 b302
[   43.271988] Country Region from e2p = 101
[   43.271993] mt7615_antenna_default_reset(): TxPath = 4, RxPath = 4
[   43.271996] mt7615_antenna_default_reset(): DBDC 2G TxPath = 2, 2G RxPath = 2
[   43.271997] mt7615_antenna_default_reset(): DBDC 5G TxPath = 2, 2G RxPath = 2
[   43.272003] rtmp_read_txpwr_from_eeprom(234): Don't Support this now!
[   43.272005] RTMPReadTxPwrPerRate(1382): Don't Support this now!
[   43.272009] RcRadioInit(): DbdcMode=0, ConcurrentBand=1
[   43.272012] RcRadioInit(): pRadioCtrl=0000000026ef3511,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xf
[   43.272015] Band Rf: 1, Phy Mode: 2
[   43.272017] AntCfgInit(2824): Not support for HIF_MT yet!
[   43.272023] ubnt_load_sku_data: UBNT MT RF_LOCKDOWN Feature ON !!!
[   43.272026] --> Using builtin MT SKU table for US
[   43.272103] MtBfBackOffLoadTable: RF_LOCKDOWN Feature OFF !!!
[   43.272111] RtmpOSFileOpen(): Error 2 opening /etc_ro/Wireless/RT2860AP/7615_SingleSKU_BF.dat
[   43.272113] EEPROM Init Done!
[   43.272118] mt_mac_init()-->
[   43.272120] mt_mac_pse_init(2775): Don't Support this now!
[   43.272122] mt7615_init_mac_cr()-->
[   43.272134] mt7615_init_mac_cr(): TMAC_TRCR0=0x82783c8c
[   43.272153] MtAsicSetMacMaxLen(1301): Not finish Yet!
[   43.272155] <--mt_mac_init()
[   43.272385] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   43.272518] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   43.272574] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0
[   43.272584] MAC Init Done!
[   43.272586] MT7615BBPInit():BBP Initialization.....
[   43.272590]  Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2
[   43.272593]  Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0
[   43.272594] MT7615BBPInit() todo
[   43.272595] PHY Init Done!
[   43.273047] tx_pwr_comp_init():NotSupportYet!
[   43.273162] MtCmdSetMacTxRx:(ret = 0)
[   43.273289] ApAutoChannelAtBootUp----------------->
[   43.273291] ApAutoChannelAtBootUp: AutoChannelBootup = 1, AutoChannelFlag = 1
[   43.273405] MtCmdSetMacTxRx:(ret = 0)
[   46.535713] ====================================================================
[   46.535718] Channel  36 : Busy Time =   6650, Skip Channel = FALSE, BwCap = TRUE
[   46.535721] Channel  40 : Busy Time =   3862, Skip Channel = FALSE, BwCap = TRUE
[   46.535724] Channel  44 : Busy Time =  16008, Skip Channel = FALSE, BwCap = TRUE
[   46.535726] Channel  48 : Busy Time =   3397, Skip Channel = FALSE, BwCap = TRUE
[   46.535728] Channel 149 : Busy Time =   1682, Skip Channel = FALSE, BwCap = TRUE
[   46.535729] Channel 153 : Busy Time =    815, Skip Channel = FALSE, BwCap = TRUE
[   46.535731] Channel 157 : Busy Time =    669, Skip Channel = FALSE, BwCap = TRUE
[   46.535733] Channel 161 : Busy Time =    890, Skip Channel = FALSE, BwCap = TRUE
[   46.535734] ====================================================================
[   46.535738] Rule 3 Channel Busy time value : Select Primary Channel 157
[   46.535739] Rule 3 Channel Busy time value : Min Channel Busy = 1682
[   46.535741] Rule 3 Channel Busy time value : BW = 80
[   46.535745]  AutoChSelUpdateChannel(): Update channel for wdev0 for this band PhyMode = 49,Channel = 157
[   46.535748]  AutoChSelUpdateChannel(): Update channel for wdev1 for this band PhyMode = 49,Channel = 157
[   46.535750]  AutoChSelUpdateChannel(): Update channel for wdev2 for this band PhyMode = 49,Channel = 157
[   46.535752]  AutoChSelUpdateChannel(): Update channel for wdev3 for this band PhyMode = 49,Channel = 157
[   46.535754]  AutoChSelUpdateChannel(): Update channel for wdev4 for this band PhyMode = 49,Channel = 157
[   46.535756]  AutoChSelUpdateChannel(): Update channel for wdev5 for this band PhyMode = 49,Channel = 157
[   46.535758]  AutoChSelUpdateChannel(): Update channel for wdev6 for this band PhyMode = 49,Channel = 157
[   46.535760]  AutoChSelUpdateChannel(): Update channel for wdev7 for this band PhyMode = 49,Channel = 157
[   46.535762] ApAutoChannelAtBootUp<-----------------
[   46.535765] WifiSysOpen(), wdev idx = 0
[   46.535770] wdev_attr_update(): wdevId0 = e0:63:da:21:ac:23
[   46.536026] Current Channel is 157. DfsZeroWaitSupport=0
[   46.536050] [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0
[   46.536054] [RSN IE CAP] WPAMakeRsnIeCap RSN CAP 00 00
[   46.536058] HcUpdatePhyMode(): Update PhyMode for all wdev for this band PhyMode:49,Channel=157
[   46.536156] wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:127 for WDEV_TYPE:1
                LinkToOmacIdx = 0, LinkToWdevType = 1
[   46.543649] bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO),                 CmdBssInfoBmcRate.u2BcTransmit= 8192,                 CmdBssInfoBmcRate.u2McTransmit = 8192
[   46.561716]  [RadarStateCheck]Set into RD_NORMAL_MODE
[   46.561719] APStartUpForMbss: UBNT RF lock down!! SKUenable = 1!!
[   46.561723] MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0
[   46.561730] MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0
[   46.561736] MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0
[   46.561746] mt7615_bbp_adjust():rf_bw=2, ext_ch=1, PrimCh=157, HT-CentCh=159, VHT-CentCh=155
[   46.601575] ap_phy_rrm_init_byRf(): AP Set CentralFreq at 155(Prim=157, HT-CentCh=159, VHT-CentCh=155, BBP_BW=2)
[   46.601657] LeadTimeForBcn, OmacIdx = 0, WDEV_WITH_BCN_ABILITY
[   46.601693] MtAsicSetRalinkBurstMode(2624): Not support for HIF_MT yet!
[   46.601696] MtAsicSetPiggyBack(778): Not support for HIF_MT yet!
[   46.601698] MtAsicSetTxPreamble(2603): Not support for HIF_MT yet!
[   46.601719] ap_ftkd> Initialize FT KDP Module...
[   46.601723] Main bssid = e0:63:da:21:ac:23
[   46.601921] AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn
[   46.603144] MtCmdSetMacTxRx:(ret = 0)
[   46.603207] fdb_enable()
[   46.906230] MCS Set = ff ff ff ff 01
[   46.906239] <==== mt_wifi_init, Status=0
[   46.906252] MtCmdEDCCACtrl: BandIdx: 0, EDCCACtrl: 1
[   46.906317] 80211> re-init bands...
[   46.906319] 80211> RFICType= 3, NumOfChan= 48
[   46.906320] 80211> Number of rate = 12
[   46.906322] 80211> CurTxPower = 0 dBm
[   46.906326] 80211> TxStream = 4
[   46.906330] WtcSetMaxStaNum: MaxStaNum:82, BssidNum:8, WdsNum:4, ApcliNum:1, MaxNumChipRept:32, MinMcastWcid:119
[   46.906344] red_is_enabled: set CR4/N9 RED Enable to 1.
[   46.906348] cp_support_is_enabled: set CR4 CP_SUPPORT to Mode 2.
[   46.906350] Correct apidx from 0 to 0 for WscUUIDInit
[   46.906352] Generate UUID for apidx(0)
[   46.906426] IPv6: ADDRCONF(NETDEV_UP): rai0: link is not ready
[   46.906439] 8021q: adding VLAN 0 to HW filter on device rai0
[   46.906487] IPv6: ADDRCONF(NETDEV_CHANGE): rai0: link becomes ready
[   46.906550] br0: port 2(rai0) entered blocking state
[   46.906557] br0: port 2(rai0) entered forwarding state
[   46.906637] WDS AP 4 Address Mode set to  0 for Mbss 0
[   46.906641] ra0: VLAN features updated vwire/vport[0]!
[   46.907909] ra0: (CFG80211_OpsStaDel)80211> Delete ALL STAsubtype(10:disassoc,12:deauth)::12 reason code::2
[   46.907946] ra0: (CFG80211_OpsStaDel)80211> Delete ALL STAsubtype(10:disassoc,12:deauth)::12 reason code::2
[   46.911471] AsicRemoveSharedKeyEntry(2829): Not support for HIF_MT yet!
[   46.911556] AsicRemoveSharedKeyEntry(2829): Not support for HIF_MT yet!
[   46.911610] Unkown frame_type = 20, req = 1
[   46.911616] AsicRemoveSharedKeyEntry(2829): Not support for HIF_MT yet!
[   46.911630] Unkown frame_type = 0, req = 1
[   46.911653] AsicRemoveSharedKeyEntry(2829): Not support for HIF_MT yet!
[   46.916133] rai0: (CFG80211_OpsStaDel)80211> Delete ALL STA, reason:2 ==>
[   46.916188] rai0: (CFG80211_OpsStaDel)80211> Delete ALL STA, reason:2 ==>
[   46.922163] Error no wdev when set vport
[   46.948887] Set ra0 No2ghzOui=0
[   46.950827] ra0: Set DVLAN[0]!
[   47.010990] WDS AP 4 Address Mode set to  0 for Mbss 0
[   47.010997] rai0: VLAN features updated vwire/vport[0]!
[   47.012196] 80211> Channel = 36, CenterChanId = 36
[   47.012199] 80211> ChanInfo.IfType == 9!
[   47.012201] 80211> ChanInfo.ChanType == 0!
[   47.012204] HOSTAPD AUTO_CH_SUPPORT Ignore Channel 36 from HostAPD
[   47.012206] 80211> CFG80211DRV_OpsBeaconAdd ==>
[   47.012209] 80211> [Hidden] SSID: element-de860add1a636ba9, 24
[   47.012212] 80211> pBeacon->privacy = 1
[   47.012214] CFG80211_ParseBeaconIE:: WPA2 case
[   47.012216]  Group Ndis802_11AESEnable
[   47.012219] AuthMode = 0x80
[   47.012222]
               CFG80211 BEACON => bwpa2 1, bwpa 0, bmix 0,AuthMode = WPA2PSK ,wdev->PairwiseCipher = AES wdev->SecConfig.GroupCipher = AES
[   47.012234] [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0
[   47.012238] [RSN IE CAP] WPAMakeRsnIeCap RSN CAP 00 00
[   47.038080] wdev_attr_update(): wdevId0 = e0:63:da:21:ac:23
[   47.240853] MtAsicSetRalinkBurstMode(2624): Not support for HIF_MT yet!
[   47.241059] MtAsicSetTxPreamble(2603): Not support for HIF_MT yet!
[   47.241124] 80211> ChanInfo.IfType == 9!
[   47.241126] 80211> ChanInfo.ChanType == 0!
[   47.241128] HOSTAPD AUTO_CH_SUPPORT Ignore Channel 6 from HostAPD
[   47.241132] 80211> [Hidden] SSID: element-de860add1a636ba9, 24
[   47.241135] CFG80211_SyncPacketWmmIe: can't find the wmm ie
[   47.241158] Ucast set for OFDM mode MCS 0
[   47.241234] AsicSetRalinkBurstMode(5291): Not support for HIF_MT yet!
[   47.245824] Ucast set for OFDM mode MCS 0
[   47.245885] AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0
[   47.247991] AsicSetTxPreamble(5270): Not support for HIF_MT yet!
[   47.248014] Error no wdev when set vport
[   47.248201] 80211> AP Key Add
[   47.248208] AsicAddSharedKeyEntry(2714): Not support for HIF_MT yet!
[   47.248498] 80211> AP Key Add
[   47.248505] CFG: Set AES Security Set. (GROUP) 16
[   47.248570] Set Ap Default Key: 1
[   47.264686] rai0: Set DVLAN[0]!

No DHCP in VLAN subnets when GeoIP filtering is enabled

I have multiple subnets and VLAN that the UDMP manages.
UDMP is running with firmware 1.8.6

My subnets:
192.168.1.0/24 Management (no VLAN)
10.0.10.0/24 Main VLAN 10
10.0.20.0/24 IOT VLAN 20

After booting the custom kernel everything works.
Traffic between subnets and Internet works.
IPTV works.

The only thing that does not work is the DHCP address assignment in the subnets with VLAN.
The clients do not get an IP address.
Clients from the subnet without VLAN get an IP address.
After restoring the stock kernel it works.

I use:
udm-kernel-tools_1.0.0_arm64.deb
udm-kernel-4.1.37-edge1_4.1.37-edge1-1_arm64.deb

What I don't understand, what do I need to do with the packages from pve-edge-kernel?

Any ideas what the problem with DHCP could be?

Trouble building udm-kernel-tools

After adding the v1.11.0-23 config, attempting to build udm-kernel-tools terminates with:

  HOSTCC  scripts/kallsyms
  HOSTCC  scripts/conmakehash
  HOSTCC  scripts/recordmcount
  HOSTCC  scripts/sortextable
  HOSTCC  scripts/asn1_compiler
  HOSTCC  scripts/extract-cert
scripts/extract-cert.c:21:10: fatal error: openssl/bio.h: No such file or directory
   21 | #include <openssl/bio.h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.
make[4]: *** [scripts/Makefile.host:90: scripts/extract-cert] Error 1
make[3]: *** [Makefile:1089: scripts] Error 2
make[3]: Leaving directory '/home/jhobbs/udm-kernel-tools/udm-kernel-tools/build/kernel-977c11883bd3fb422f6c0f68f86d2df92e7bb37c'
make[2]: *** [debian/rules.d/kexec-mod.mk:42: build/kernel-977c11883bd3fb422f6c0f68f86d2df92e7bb37c/v1.10.0.config] Error 2
make[2]: Leaving directory '/home/jhobbs/udm-kernel-tools/udm-kernel-tools'
make[1]: *** [debian/rules:32: build/modules/v1.10.0] Error 2
make[1]: Leaving directory '/home/jhobbs/udm-kernel-tools/udm-kernel-tools'
make: *** [debian/rules:29: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
debuild: fatal error at line 1182:
dpkg-buildpackage -us -uc -ui -aarm64 failed

...is this a problem with the provided commit ID from a previous incompatible kernel? Or a problem with my attempted build?

Kernel version not supported (v1.6.8)

Hello,

I just tried to install the latest release of the UDM-Kernel (v4.1.37-edge2) using the latest Version of UDM-Kernel-Tools (v1.0.0) and received this Error:

Kernel version not supported (v1.6.8)
Make sure you have installed the latest version of udm-kernel-tools...

Details:

root@ubnt:/home# wget https://github.com/fabianishere/udm-kernel/releases/download/v4.1.37-edge2/udm-kernel-4.1.37-edge2_4.1.37-edge2-1_arm64.deb
--2021-04-14 16:39:36--  https://github.com/fabianishere/udm-kernel/releases/download/v4.1.37-edge2/udm-kernel-4.1.37-edge2_4.1.37-edge2-1_arm64.deb
Resolving github.com (github.com)... 140.82.121.4
Connecting to github.com (github.com)|140.82.121.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github-releases.githubusercontent.com/331129522/a593ca00-9b05-11eb-89a1-69fd59ea2b76?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210414%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210414T143937Z&X-Amz-Expires=300&X-Amz-Signature=c2c785c23482767cbb843bd0703a69505609bb6e2559a9a95b797088bf2e6be9&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=331129522&response-content-disposition=attachment%3B%20filename%3Dudm-kernel-4.1.37-edge2_4.1.37-edge2-1_arm64.deb&response-content-type=application%2Foctet-stream [following]
--2021-04-14 16:39:37--  https://github-releases.githubusercontent.com/331129522/a593ca00-9b05-11eb-89a1-69fd59ea2b76?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210414%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210414T143937Z&X-Amz-Expires=300&X-Amz-Signature=c2c785c23482767cbb843bd0703a69505609bb6e2559a9a95b797088bf2e6be9&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=331129522&response-content-disposition=attachment%3B%20filename%3Dudm-kernel-4.1.37-edge2_4.1.37-edge2-1_arm64.deb&response-content-type=application%2Foctet-stream
Resolving github-releases.githubusercontent.com (github-releases.githubusercontent.com)... 185.199.108.154, 185.199.109.154, 185.199.110.154, ...
Connecting to github-releases.githubusercontent.com (github-releases.githubusercontent.com)|185.199.108.154|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 6059460 (5.8M) [application/octet-stream]
Saving to: 'udm-kernel-4.1.37-edge2_4.1.37-edge2-1_arm64.deb'

Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'udm-kernel-4.1.37-edge2' instead of './udm-kernel-4.1.37-edge2_4.1.37-edge2-1_arm64.deb'
Suggested packages:
  udm-firmware-4.1.37-edge2
The following NEW packages will be installed:
  udm-kernel-4.1.37-edge2
0 upgraded, 1 newly installed, 0 to remove and 68 not upgraded.
Need to get 0 B/6059 kB of archives.
After this operation, 10.6 MB of additional disk space will be used.
Get:1 /home/udm-kernel-4.1.37-edge2_4.1.37-edge2-1_arm64.deb udm-kernel-4.1.37-edge2 arm64 4.1.37-edge2-1 [6059 kB]
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package udm-kernel-4.1.37-edge2.
(Reading database ... 27406 files and directories currently installed.)
Preparing to unpack .../udm-kernel-4.1.37-edge2_4.1.37-edge2-1_arm64.deb ...
Unpacking udm-kernel-4.1.37-edge2 (4.1.37-edge2-1) ...
udm-kernel-4.1.37-edge2: action=unpack, package=/data/dpkg-cache/stretch/packages/udm-kernel-4.1.37-edge2_4.1.37-edge2-1_arm64.deb
Setting up udm-kernel-4.1.37-edge2 (4.1.37-edge2-1) ...
root@ubnt:/home# udm-bootctl list
bash: udm-bootctl: command not found
root@ubnt:/home# wget https://github.com/fabianishere/udm-kernel-tools/releases/download/v1.0.0/udm-kernel-tools_1.0.0_arm64.deb
--2021-04-14 16:41:07--  https://github.com/fabianishere/udm-kernel-tools/releases/download/v1.0.0/udm-kernel-tools_1.0.0_arm64.deb
Resolving github.com (github.com)... 140.82.121.4
Connecting to github.com (github.com)|140.82.121.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github-releases.githubusercontent.com/340867405/65b7de80-9a42-11eb-8fae-49f1a83c1d47?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210414%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210414T144107Z&X-Amz-Expires=300&X-Amz-Signature=359af9dcdaba54ce70d3528e1426dff46694a18ce3e5b7d8918e26dcbf56d677&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=340867405&response-content-disposition=attachment%3B%20filename%3Dudm-kernel-tools_1.0.0_arm64.deb&response-content-type=application%2Foctet-stream [following]
--2021-04-14 16:41:07--  https://github-releases.githubusercontent.com/340867405/65b7de80-9a42-11eb-8fae-49f1a83c1d47?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210414%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210414T144107Z&X-Amz-Expires=300&X-Amz-Signature=359af9dcdaba54ce70d3528e1426dff46694a18ce3e5b7d8918e26dcbf56d677&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=340867405&response-content-disposition=attachment%3B%20filename%3Dudm-kernel-tools_1.0.0_arm64.deb&response-content-type=application%2Foctet-stream
Resolving github-releases.githubusercontent.com (github-releases.githubusercontent.com)... 185.199.111.154, 185.199.110.154, 185.199.109.154, ...
Connecting to github-releases.githubusercontent.com (github-releases.githubusercontent.com)|185.199.111.154|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 25656 (25K) [application/octet-stream]
Saving to: 'udm-kernel-tools_1.0.0_arm64.deb'

udm-kernel-tools_1. 100%[===================>]  25.05K  --.-KB/s    in 0.009s

2021-04-14 16:41:07 (2.78 MB/s) - 'udm-kernel-tools_1.0.0_arm64.deb' saved [25656/25656]

root@ubnt:/home# apt install ./udm-kernel-tools_1.0.0_arm64.deb
Reading package lists... Done
Building dependency tree
Reading state information... Done
Setting up kmod (23-2) ...
Setting up kexec-tools (1:2.0.14-1) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
debconf: falling back to frontend: Readline
Configuring kexec-tools
-----------------------

If you choose this option, a system reboot will trigger a restart into a kernel
loaded by kexec instead of going through the full system boot loader process.

Should kexec-tools handle reboots (sysvinit only)? [yes/no] yes

Generating /etc/default/kexec...
Processing triggers for systemd (241-5~bpo9+1) ...
Setting up busybox-static (1:1.22.0-19+deb9u2) ...
Setting up udm-kernel-tools (1.0.0) ...
udm-init: configuring...
udm-init: generating initramfs for kernel 4.1.37-edge2...
9113 blocks
udm-autoboot.service is a disabled or a static unit, not starting it.
root@ubnt:/home# udm-bootctl list
Version                                 	Initrd
4.1.37-edge2                            	yes
root@ubnt:/home# udm-bootctl boot 4.1.37-edge2
Loading kernel 4.1.37-edge2...
Inserting kexec kernel modules...
Kernel version not supported (v1.6.8)
Make sure you have installed the latest version of udm-kernel-tools...
root@ubnt:/home#

BT TV In the UK.

Struggling to get the igmpproxy to work with BTTV here in the UK.

For a start, my UDM-Pro is on 1.10.0, running the latest udm-kernel edge1 custom kernel.

Using the information from this: https://community.ui.com/questions/Step-by-Step-guide-to-configuring-USG-to-work-with-BT-TV-Multicast-IP-TV-Services/b2c72429-7fcc-4a86-b3d8-0cbc443a4760

(I also followed the firewall rules instructions from ^)

My 15-iptv.sh looks like this:

# cat 15-iptv.sh
IPTV_WAN_INTERFACE="ppp1"
IPTV_WAN_RANGES="224.0.0.0/4 109.159.247.0/24"
IPTV_WAN_VLAN="0"
IPTV_WAN_DHCP_OPTIONS="-O staticroutes -V IPTV_RG"
IPTV_LAN_INTERFACES="br150"

if podman container exists iptv; then
  podman rm -f iptv
fi
podman run --network=host --privileged \
    --name iptv -i -d --restart on-failure:5 \
    -e IPTV_WAN_INTERFACE="$IPTV_WAN_INTERFACE" \
    -e IPTV_WAN_RANGES="$IPTV_WAN_RANGES" \
    -e IPTV_WAN_VLAN="$IPTV_WAN_VLAN" \
    -e IPTV_WAN_DHCP_OPTIONS="$IPTV_WAN_DHCP_OPTIONS" \
    -e IPTV_LAN_INTERFACES="$IPTV_LAN_INTERFACES" \
    -e IPTV_LAN_RANGES="" \
    fabianishere/udm-iptv -d -v

I see plenty of things like Inserted route table entry for 233.89.188.1 on VIF #-1 and Joining group 234.81.130.251 on interface ppp1 but I never see any routes added to ip route list

However, the BT TV Box never works.

It is worth noting that I am trying to do this on WAN2 hence ppp1. VLAN150, where my BTTV BOX is plugged in, is setup to route all traffic via wan2 with: ip rule add from 192.168.150.0/24 lookup 202 prio 32100

I suspect that most of the issue may come from it being on WAN2, I'm not sure. If you need any more info let me know.

Unknown qdisc "cake" in 4.19.152-edge1

Trying to configure cake for the UDM PRO v1.10.0 and was not successful.

# uname -a
Linux ubnt 4.19.152-edge1 #1 SMP Fri Jul 9 18:01:33 UTC 2021 aarch64 GNU/Linux
# modprobe sch_cake
# /usr/sbin/tc qdisc add dev eth9 root cake bandwidth 900mbit
Unknown qdisc "cake", hence option "bandwidth" is unparsable

May you guide me here. Thanks.

IPTV script - There must be at least 1 Vif as upstream

I have a similar setup as depicted in the diagram, so FTTH NTU (KPN) connected to the UDM/P (with UniFi OS Version 1.10.0, Controller Version 6.2.26 and Linux Dream-Machine-Pro 4.19.152-edge1 kernel), connected to a Unify switch, from port 8 the IPTV Decoder is connected. On my main LAN network (192.168.1.1/24, no VLAN) I have set the DHCP options from the table (Broadcast address set to 192.168.1.255) and enabled IGMP Snooping.

Below the output of the script and log:

# /mnt/data/on_boot.d/15-iptv.sh
WARNING: The same type, major and minor should not be used for multiple devices.
WARNING: The same type, major and minor should not be used for multiple devices.
WARNING: The same type, major and minor should not be used for multiple devices.
WARNING: The same type, major and minor should not be used for multiple devices.
WARNING: The same type, major and minor should not be used for multiple devices.
WARNING: The same type, major and minor should not be used for multiple devices.
WARNING: The same type, major and minor should not be used for multiple devices.
WARNING: The same type, major and minor should not be used for multiple devices.
WARNING: The same type, major and minor should not be used for multiple devices.

# podman logs -f iptv
udm-iptv: Obtaining IP address for VLAN interface...
udhcpc: started, v1.33.1
udhcpc: sending discover
udhcpc: sending discover
udhcpc: sending discover
udhcpc: sending discover
udhcpc: sending discover
udhcpc failed to get a DHCP lease
udhcpc: no lease, forking to background
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
adding VIF, Ix 0 Fl 0x0 IP 0x0101a8c0 br0, Threshold: 1, Ratelimit: 0
There must be at least 1 Vif as upstream.
udm-iptv: Obtaining IP address for VLAN interface...
udm-iptv: NATing IPTV network ranges (if necessary)...
ifup: interface iptv already configured
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
adding VIF, Ix 0 Fl 0x0 IP 0x0101a8c0 br0, Threshold: 1, Ratelimit: 0
There must be at least 1 Vif as upstream.
udm-iptv: Obtaining IP address for VLAN interface...
udm-iptv: NATing IPTV network ranges (if necessary)...
ifup: interface iptv already configured
.....

What's causing this error? What am I missing?

Troubleshoot update

While updating some configurations in your UDM settings (my case adding a G4 doorbell), the IGMP proxy that is running inside the unifi-os shell needs to be restarted.

For example:
When getting a "STB-NMC-400" error after a few seconds of seeing TV images restarting the igmp proxy fixes this issue.

firmware 1.11?

After getting this running yesterday and having great success with multipath routing using frr, I woke up to routing issues this morning!

Found out my UDM Pro had upgraded to 1.11 overnight and of course the kernel will no longer load. :-(

Any idea when the 1.11 release will be out?

Breadcast address & some final steps

Hi,

First of all thanks for your guide it is great! ๐Ÿคฉ

I have a few enhancement proposals:

  • The broadcast address for the DHCP settings, where to get it? I now got it out of my "ip -4 ...." command, is this the place to get it?
  • After you change the dhcp settings in the dashboard you have to rerun the " /mnt/data/on_boot.d/10-iptv.sh" command to get the etherface 8.4 known again, is this something can be automated?
  • After previous step I also went into the shell again to reload the igmpproxy, not sure if it helps.
  • Good to know, our iptv settop box didn't start updating his software without the steps above, not sure if you need to mention this.

error on udmp

hello

@UDM-Pro:# udm-bootctl boot 4.19.152-edge4
/usr/bin/udm-bootctl: line 193: ssh-proxy: command not found
root@UDM-Pro:
#

Root overlay location incorrect

I was digging into the root overlay option and found the README.md should be referencing /overlay/root_ro/mnt/data/udm-kernel-tools/root and not /mnt/data/udm-kernel-tools/root.

IPTV not working after update to UniFi OS v1.10.4

I had IPTV (KPN) working, but after a recent update to UniFi OS v1.10.4 (network is on v6.4.54), the IPTV stopped working (settop box showed a 561 error, which means the set top box got a wrong IP address to get onto the tv network).

I checked the internet/network/vlan settings which had "survived" the update correct. Then I reinstalled the IPTV solution as described on https://github.com/fabianishere/udm-kernel-tools/blob/master/docs/iptv.md The TV gets a signal but this last only a few seconds (then a error stb-nmc-400 shows, indicating loss of connection).

Is seems the iptv container crashes. I've enabled debugging/logging, which shows:

# podman logs iptv
udm-iptv: Obtaining IP address for VLAN interface...
udhcpc: started, v1.33.1
udhcpc: sending discover
udhcpc: sending discover
udhcpc: sending select for 10.143.8.112
udhcpc: lease of 10.143.8.112 obtained, lease time 3600
mv: can't rename '/etc/resolv.conf.18': Resource busy
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
# podman logs iptv
udm-iptv: Obtaining IP address for VLAN interface...
udhcpc: started, v1.33.1
udhcpc: sending discover
udhcpc: sending discover
udhcpc: sending select for 10.143.8.112
udhcpc: lease of 10.143.8.112 obtained, lease time 3600
mv: can't rename '/etc/resolv.conf.18': Resource busy
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
udm-iptv: Obtaining IP address for VLAN interface...
ifup: interface iptv already configured
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
udm-iptv: Obtaining IP address for VLAN interface...
ifup: interface iptv already configured
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
udm-iptv: Obtaining IP address for VLAN interface...
ifup: interface iptv already configured
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
udm-iptv: Obtaining IP address for VLAN interface...
ifup: interface iptv already configured
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
udm-iptv: Obtaining IP address for VLAN interface...
ifup: interface iptv already configured
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available

So /mnt/data/on_boot.d/15-iptv.sh only runs shortly. Any ideas?

Custom Kernel not loading? (Or potential other issue)

Hi,
I'm trying to get KPN IPTV to work through a regular UDM (not pro).

I thought the custom kernel booted successfully, but now I am not so sure. The output for uname -a is as follows:

Linux Dream-Machine 4.19.152-al-linux-v10.2.0-v1.10.0.3686-a2edd0c #1 SMP Fri Jul 9 03:16:50 UTC 2021 aarch64 GNU/Linux

If this is not what I am supposed to see, I think that is the issue to look at; if this is correct however, I have a different issue.

The DHCP debugging seems fine, but the podman logs have a bunch of warnings.

# podman logs iptv
udm-iptv: Obtaining IP address for VLAN interface...
udhcpc: started, v1.33.1
udhcpc: sending discover
udhcpc: sending discover
udhcpc: sending select for 10.246.126.144
udhcpc: lease of 10.246.126.144 obtained, lease time 3600
mv: can't rename '/etc/resolv.conf.22': Resource busy
udm-iptv: NATing IPTV network ranges (if necessary)...
iptables: No chain/target/match by that name.
iptables: No chain/target/match by that name.
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
udm-iptv: Obtaining IP address for VLAN interface...
ifup: interface iptv already configured
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
udm-iptv: Obtaining IP address for VLAN interface...
ifup: interface iptv already configured
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
udm-iptv: Obtaining IP address for VLAN interface...
ifup: interface iptv already configured
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
udm-iptv: Obtaining IP address for VLAN interface...
ifup: interface iptv already configured
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available
udm-iptv: Obtaining IP address for VLAN interface...
ifup: interface iptv already configured
udm-iptv: NATing IPTV network ranges (if necessary)...
udm-iptv: Setting up igmpproxy..
udm-iptv: Starting igmpproxy..
MRT_INIT failed; Errno(92): Protocol not available

Additionally, the other issue on custom kernel issues asked for the output of # cat /sys/fs/pstore/* which is as follows.

# cat /sys/fs/pstore/*
[    0.634158] pci-pf-stub 0000:00:04.0: writing to VF config space
[    0.634223] pci-pf-stub 0000:00:05.0: writing to VF config space
[    0.657758] ahci 0001:00:00.0: writing to VF config space
[    0.663257] ahci 0002:00:00.0: writing to VF config space
[    0.668757] ahci 0003:00:00.0: writing to VF config space
[    0.676428] al_eth 0000:00:01.0: writing to VF config space
[    2.634102] al_eth 0000:00:03.0: writing to VF config space
[   14.536743] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000
[   14.545596] Mem abort info:
[   14.548419]   ESR = 0x96000045
[   14.551508]   Exception class = DABT (current EL), IL = 32 bits
[   14.557485]   SET = 0, FnV = 0
[   14.560564]   EA = 0, S1PTW = 0
[   14.563734] Data abort info:
[   14.566673]   ISV = 0, ISS = 0x00000045
[   14.570537]   CM = 0, WnR = 1
[   14.573535] user pgtable: 4k pages, 39-bit VAs, pgdp = 000000009ac9f6b1
[   14.580203] [0000000000000000] pgd=0000000000000000, pud=0000000000000000
[   14.587022] Internal error: Oops: 96000045 [#1] SMP
[   14.591951] Modules linked in: rlt_wifi(FO+) sch_fq_codel sch_htb lzo lzo_compress zram gpiodev(PFO) ubnthal(PFO) ubnt_common(PFO)
[   14.603740] Process modprobe (pid: 953, stack limit = 0x000000007b4a32a6)
[   14.610551] CPU: 2 PID: 953 Comm: modprobe Tainted: PF          O      4.19.152-edge1 #1
[   14.618690] Hardware name: Annapurna Labs Alpine V2 UBNT (DT)
[   14.624488] pstate: 80000005 (Nzcv daif -PAN -UAO)
[   14.629308] pc : __memcpy+0x94/0x180
[   14.632990] lr : RtmpOSNetDevAttach+0x94/0x140 [rlt_wifi]
[   14.638440] sp : ffffff800c5eb830
[   14.641780] x29: ffffff800c5eb830 x28: 0000000000000100
[   14.647144] x27: ffffff800c61d000 x26: ffffff8008131a98
[   14.652480] x25: ffffff800ca00000 x24: ffffffc075f3e000
[   14.657843] x23: ffffffc07c5ed098 x22: ffffff8000d27000
[   14.663178] x21: ffffff8009945000 x20: ffffffc075f3e000
[   14.668541] x19: ffffff800c5eb8e0 x18: ffffffffffffffff
[   14.673876] x17: 0000000000000001 x16: 0000000000000007
[   14.679211] x15: ffffff8008d59d88 x14: ffffff8008e4bf38
[   14.684574] x13: ffffff8008e4bb85 x12: ffffff8008d73000
[   14.689908] x11: 0000000000000000 x10: 0000000000000000
[   14.695272] x9 : 0000000000000002 x8 : ffffff8008e58567
[   14.700606] x7 : ffffff8008e4b1a8 x6 : 0000000000000000
[   14.705970] x5 : 0000000000000000 x4 : ffffff800c5eb8c8
[   14.711305] x3 : 0000000000000000 x2 : 0000000000000006
[   14.716668] x1 : ffffff800c5eb930 x0 : 0000000000000000
[   14.722003] Call trace:
[   14.724478]  __memcpy+0x94/0x180
[   14.727824]  rt_pci_probe+0x444/0x560 [rlt_wifi]
[   14.732468]  pci_device_probe+0xe4/0x1e0
[   14.736416]  really_probe+0x1e8/0x288
[   14.740133]  driver_probe_device+0x5c/0x100
[   14.744340]  __driver_attach+0xf0/0xf8
[   14.748113]  bus_for_each_dev+0x84/0xd8
[   14.752001]  driver_attach+0x30/0x40
[   14.755601]  bus_add_driver+0x1c4/0x230
[   14.759462]  driver_register+0x64/0x110
[   14.763349]  __pci_register_driver+0x58/0x68
[   14.767690]  rt_pci_init_module+0x164/0x180 [rlt_wifi]
[   14.772927]  wifi_drv_init_module+0x18/0xe80 [rlt_wifi]
[   14.778177]  do_one_initcall+0x68/0x1f8
[   14.782040]  do_init_module+0x64/0x1d8
[   14.785842]  load_module+0x20c8/0x22c0
[   14.789615]  __se_sys_finit_module+0xc4/0xd8
[   14.793908]  __arm64_sys_finit_module+0x24/0x30
[   14.798493]  el0_svc_handler+0xc8/0x1a8
[   14.802354]  el0_svc+0x8/0xc4
[   14.805348] Code: f8408423 f80084c3 36100062 b8404423 (b80044c3)
[   14.811494] ---[ end trace b513d756044bc509 ]---
[   14.819925] Kernel panic - not syncing: Fatal exception
[   14.825202] SMP: stopping secondary CPUs
[   14.829171] Kernel Offset: disabled
[   14.832685] CPU features: 0x0,20006008
[   14.836486] Memory Limit: none
[   14.843368] Rebooting in 3 seconds..

No errors detected
  4.311813] sd 4:0:0:0: [sda] Attached SCSI removable disk
Sep 15 12:57:34 Dream-Machine user.notice kernel: [    4.886396] random: fast init done
Sep 15 12:57:34 Dream-Machine user.notice kernel: [    4.990713] random: crng init done
Sep 15 12:57:34 Dream-Machine user.info kernel: [    5.116596] EXT4-fs (sda6): recovery complete
Sep 15 12:57:34 Dream-Machine user.info kernel: [    5.117183] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: errors=panic
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.642755] ubnt_common: bad vermagic: kernel tainted.
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.642758] Disabling lock debugging due to kernel taint
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.642761] ubnt_common: loading out-of-tree module taints kernel.
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.642765] ubnt_common: module license 'Proprietary' taints kernel.
Sep 15 12:57:34 Dream-Machine user.info kernel: [    6.646067] [UBNT_STA_HT] Initialize hash table
Sep 15 12:57:34 Dream-Machine user.info kernel: [    6.646091] [UBNT_STA_HT] done
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.646093] creating /proc/ubnt_peek/
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.646100] creating /proc/ubnt_peek/peek_disable
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.646102] creating /proc/ubnt_peek/loop_check
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.646105] creating /proc/ubnt_peek/loop_debug
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.646107] creating /proc/ubnt_peek/loop_uif
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.646108] creating /proc/ubnt_peek/tcp_debug_mac
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.646111] creating /proc/ubnt_peek/tcp_debug_connections
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.646123] qos: registered
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.646125] creating /proc/ubnt_frame_id/
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    6.646128] creating /proc/ubnt_frame_id/netdevs
Sep 15 12:57:34 Dream-Machine user.info kernel: [    6.699131] ubnthal: Ubiquiti UniFi Dream Machine
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.700095] creating procfs for ubnthal
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.700103] creating proc entry for system.info
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.700105] creating proc entry for board
Sep 15 12:57:34 Dream-Machine user.info kernel: [    6.709229] Unable to find matching dts node.
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.709236] creating procfs for status
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.709241] creating proc entry for IsDefault
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.709243] creating proc entry for IsLocated
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.709245] creating proc entry for IsIsolated
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.709247] creating proc entry for IsLte
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.709249] creating proc entry for ControllerPort
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.709253] creating proc entry for ControllerHost
Sep 15 12:57:34 Dream-Machine user.info kernel: [    6.842441] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: errors=panic
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.857576] creating /proc/gpio/
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.857584]          /proc/gpio/ledbar_control
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.857586]          /proc/gpio/led_pattern
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.857588]          /proc/gpio/led_tempo
Sep 15 12:57:34 Dream-Machine user.debug kernel: [    6.857590]          /proc/gpio/poe_passthrough
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.153116] zram: Added device: zram0
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.164815] zram0: detected capacity change from 0 to 3666362368
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.178825] Adding 3580428k swap on /dev/zram0.  Priority:100 extents:1 across:3580428k SS
Sep 15 12:57:34 Dream-Machine user.warn kernel: [    7.346539] ICMPv6: process `sysctl' is using deprecated sysctl (syscall) net.ipv6.neigh.default.base_reachable_time - use net.ipv6.neigh.default.base_reachable_time_ms instead
Sep 15 12:57:34 Dream-Machine user.notice ubios-udm-init: Renaming interfaces ...
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.396005] al_eth 0000:00:01.0 switch0.tmp: renamed from eth0
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.412153] al_eth 0000:00:03.0 eth4.tmp: renamed from eth1
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.434953] al_eth 0000:00:03.0 eth4: renamed from eth4.tmp
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.462515] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.467944] Configured MAC to RGMII mode
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.469071] al_eth 0000:00:03.0 eth4: using MSI-X per Queue interrupt mode
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.472754] IPv6: ADDRCONF(NETDEV_UP): eth4: link is not ready
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.472793] IPv6: ADDRCONF(NETDEV_CHANGE): eth4: link becomes ready
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.478561] al_eth 0000:00:01.0 switch0: renamed from switch0.tmp
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.498521] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.503981] Configured MAC to RGMII mode
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.505098] al_eth 0000:00:01.0 switch0: using MSI-X per Queue interrupt mode
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.508786] IPv6: ADDRCONF(NETDEV_UP): switch0: link is not ready
Sep 15 12:57:34 Dream-Machine user.notice ubios-udm-init: Creating bridge interfaces ...
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.532108] br0: port 1(switch0) entered blocking state
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.532112] br0: port 1(switch0) entered disabled state
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.532216] device switch0 entered promiscuous mode
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.535188] IPv6: ADDRCONF(NETDEV_UP): br0: link is not ready
Sep 15 12:57:34 Dream-Machine user.notice ubios-udm-init: Creating macvlan interfaces ...
Sep 15 12:57:34 Dream-Machine user.notice ubios-udm-init: Creating svlan interfaces ...
Sep 15 12:57:34 Dream-Machine user.notice ubios-udm-init: Creating ethvlan interfaces ...
Sep 15 12:57:34 Dream-Machine user.notice ubios-udm-init: Setting MAC addresses for interfaces (excluding bridges) ..
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.657534] br0: port 1(switch0) entered disabled state
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.660573] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.666024] Configured MAC to RGMII mode
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.667084] al_eth 0000:00:01.0 switch0: using MSI-X per Queue interrupt mode
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.670748] IPv6: ADDRCONF(NETDEV_UP): switch0: link is not ready
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.671399] eth [al_mod_eth_1]: set link speed to 1000Mbps. full duplex.
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.671408] al_eth 0000:00:01.0 switch0: Link is Up - 1Gbps/Full - flow control off
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.694114] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.699576] Configured MAC to RGMII mode
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.700587] al_eth 0000:00:03.0 eth4: using MSI-X per Queue interrupt mode
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.704816] eth [al_mod_eth_3]: set link speed to 1000Mbps. full duplex.
Sep 15 12:57:34 Dream-Machine user.info kernel: [    7.704828] al_eth 0000:00:03.0 eth4: Link is Up - 1Gbps/Full - flow control off
Sep 15 12:57:34 Dream-Machine user.notice ubios-udm-init: Setting mac for bridges ...
Sep 15 12:57:34 Dream-Machine user.notice ubios-udm-init: Apply interface's settings ..
Sep 15 12:57:35 Dream-Machine user.info kernel: [    8.476991] IPv6: ADDRCONF(NETDEV_CHANGE): switch0: link becomes ready
Sep 15 12:57:35 Dream-Machine user.info kernel: [    8.477044] br0: port 1(switch0) entered blocking state
Sep 15 12:57:35 Dream-Machine user.info kernel: [    8.477047] br0: port 1(switch0) entered forwarding state
Sep 15 12:57:35 Dream-Machine user.info kernel: [    8.477106] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
Sep 15 12:57:39 Dream-Machine user.err kernel: [   12.952878] Bluetooth: hci0: unexpected event for opcode 0x0000
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  system: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  resolv: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  syslog: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  netconsole: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  display: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  ledbar: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  rps: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  radio: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  wireless: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  mesh: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  wevent: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  ebtables: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  vlan: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  unifi_block: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  netconf: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  connectivity: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  aaa: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  sshd: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  redirector: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  poe_passthrough: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  lldpd: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  watchdog: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.err ubntconf: ERROR: watchdog: Plugin failed: -2
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  unifi: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  player: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  ble: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  element_adopt: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  mark: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  mtk_ble: Running plugin
Sep 15 12:57:41 Dream-Machine daemon.info ubntconf: INFO:  infrared: Running plugin
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.450502] register rlt_drv
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.535541] rt_pci_probe: pci_set_dma_mask okay!
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536139]
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536139]
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536139] === pAd = 0000000012f3e9e4, size = 2297168 ===
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536139]
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536163] <-- RTMPAllocTxRxRingMemory, Status=0, ErrorValue=0x
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536500] <-- RTMPAllocAdapterBlock, Status=0
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536503] pAd->CSRBaseAddress =0xffffff800ca00000, csr_addr=0xffffff800ca00000!
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536507] device_id =0x7603
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536515] RtmpChipOpsHook(761): Not support for HIF_MT yet!
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536517] mt7603_init()-->
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536520] mt_bcn_buf_init(296): Not support for HIF_MT yet!
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536522] <--mt7603_init()
Sep 15 12:57:41 Dream-Machine user.info kernel: [   14.536541] wevent: registered
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536543] ra0: NO2G init ACL table
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536634] 80211> RFICType= 1, NumOfChan= 14
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536635] 80211> Number of rate = 12
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536637] 80211> CurTxPower = 0 dBm
Sep 15 12:57:41 Dream-Machine user.warn kernel: [   14.536734] 80211> CFG80211_Register with max interface 8
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.536743] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.545596] Mem abort info:
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.548419]   ESR = 0x96000045
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.551508]   Exception class = DABT (current EL), IL = 32 bits
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.557485]   SET = 0, FnV = 0
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.560564]   EA = 0, S1PTW = 0
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.563734] Data abort info:
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.566673]   ISV = 0, ISS = 0x00000045
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.570537]   CM = 0, WnR = 1
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.573535] user pgtable: 4k pages, 39-bit VAs, pgdp = 000000009ac9f6b1
Sep 15 12:57:41 Dream-Machine user.alert kernel: [   14.580203] [0000000000000000] pgd=0000000000000000, pud=0000000000000000

No errors detected

Cannot seem to boot the kernel on v1.11.0-16 [ Kernel Panic ]

Here are the logs

# cat /sys/fs/pstore/*
[    0.634727] pci-pf-stub 0000:00:04.0: writing to VF config space
[    0.634791] pci-pf-stub 0000:00:05.0: writing to VF config space
[    0.653586] ahci 0001:00:00.0: writing to VF config space
[    0.661221] al_eth 0000:00:00.0: writing to VF config space
[    0.672933] al_eth 0000:00:01.0: writing to VF config space
[    2.355048] al_eth 0000:00:02.0: writing to VF config space
[    2.366822] al_eth 0000:00:03.0: writing to VF config space
[   13.657801] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000020
[   13.666651] Mem abort info:
[   13.669470]   ESR = 0x96000005
[   13.672555]   Exception class = DABT (current EL), IL = 32 bits
[   13.678526]   SET = 0, FnV = 0
[   13.681604]   EA = 0, S1PTW = 0
[   13.684771] Data abort info:
[   13.687707]   ISV = 0, ISS = 0x00000005
[   13.691568]   CM = 0, WnR = 0
[   13.694565] user pgtable: 4k pages, 39-bit VAs, pgdp = 0000000076ee439d
[   13.701228] [0000000000000020] pgd=0000000000000000, pud=0000000000000000
[   13.708042] Internal error: Oops: 96000005 [#1] SMP
[   13.712969] Modules linked in: ubnt_common(PFO)
[   13.717525] Process modprobe (pid: 397, stack limit = 0x000000008a70b7f8)
[   13.724361] CPU: 0 PID: 397 Comm: modprobe Tainted: PF          O      4.19.152-edge1 #1
[   13.732498] Hardware name: Annapurna Labs Alpine V2 UBNT (DT)
[   13.738266] pstate: a0000005 (NzCv daif -PAN -UAO)
[   13.743084] pc : ref_module+0x48/0x148
[   13.746888] lr : resolve_symbol.isra.33+0xa0/0x104
[   13.751701] sp : ffffff8009f6bbc0
[   13.755067] x29: ffffff8009f6bbc0 x28: ffffff8000b2a598
[   13.760401] x27: ffffff800a17422c x26: ffffff8000b226c8
[   13.765736] x25: ffffff800a17f0b8 x24: ffffff8000b223c0
[   13.771098] x23: ffffff8009f6bd70 x22: ffffff80009df2b8
[   13.776432] x21: ffffff80009e4080 x20: ffffff80009e4378
[   13.781793] x19: ffffff8000b223c0 x18: 0000000000000080
[   13.787126] x17: 0000000000000000 x16: 0000000000000000
[   13.792486] x15: 5400160b13131717 x14: ff00000000000000
[   13.797820] x13: 0000000000000000 x12: 0000000000000007
[   13.803180] x11: 0000000000000030 x10: 0101010101010101
[   13.808514] x9 : 0000000000000003 x8 : 7f7f7f7f7f7f7f7f
[   13.813875] x7 : 6bff636064715e6d x6 : 0000000000008018
[   13.819209] x5 : 1800000000000000 x4 : 0080000000000000
[   13.824570] x3 : 0075000000000000 x2 : 1e5f97317a6c3900
[   13.829903] x1 : ffffff80009e4080 x0 : 0000000000000000
[   13.835263] Call trace:
[   13.837737]  ref_module+0x48/0x148
[   13.841162]  resolve_symbol.isra.33+0xa0/0x104
[   13.845628]  load_module+0x12a4/0x22c0
[   13.849428]  __se_sys_finit_module+0xc4/0xd8
[   13.853721]  __arm64_sys_finit_module+0x24/0x30
[   13.858302]  el0_svc_handler+0xc8/0x1a8
[   13.862161]  el0_svc+0x8/0xc4
[   13.865154] Code: 1400000d f9400000 eb14001f 54000140 (f9401001)
[   13.871296] ---[ end trace 5b1617a0f5a1cae1 ]---
[   13.879554] Kernel panic - not syncing: Fatal exception
[   13.884830] SMP: stopping secondary CPUs
[   13.888794] Kernel Offset: disabled
[   13.892306] CPU features: 0x0,20006008
[   13.896106] Memory Limit: none
[   13.902800] Rebooting in 3 seconds..



# dmesg
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd073]
[    0.000000] Linux version 4.19.152-al-linux-v10.2.0-v1.11.0-16.3888-5f7070d (builder@link-xenial-builder) (gcc version 6.4.0 (Buildroot 0.9.0.0)) #1 SMP Wed Oct 6                                                                         10:39:09 UTC 2021
[    0.000000] Machine model: Annapurna Labs Alpine V2 UBNT
[    0.000000] efi: Getting EFI parameters from FDT:
[    0.000000] efi: UEFI not found.
[    0.000000] On node 0 totalpages: 1048575
[    0.000000]   DMA32 zone: 12288 pages used for memmap
[    0.000000]   DMA32 zone: 0 pages reserved
[    0.000000]   DMA32 zone: 786431 pages, LIFO batch:63
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:63
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv0.2 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] random: get_random_bytes called from start_kernel+0x9c/0x3f0 with crng_init=0
[    0.000000] percpu: Embedded 21 pages/cpu s45464 r8192 d32360 u86016
[    0.000000] pcpu-alloc: s45464 r8192 d32360 u86016 alloc=21*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] ARM_SMCCC_ARCH_WORKAROUND_1 missing from firmware
[    0.000000] CPU features: enabling workaround for EL2 vector hardening
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1032191
[    0.000000] Kernel command line: root=/dev/sdb2 rootfstype=squashfs rootwait pci=pcie_bus_perf console=ttyS0,115200 panic=3 reboot=warm
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] software IO TLB: mapped [mem 0xbbfff000-0xbffff000] (64MB)
[    0.000000] Memory: 4042144K/4194300K available (8572K kernel code, 688K rwdata, 2396K rodata, 576K init, 316K bss, 152156K 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] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: no VLPI support, no direct LPI support
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000f0280000
[    0.000000] arch_timer: cp15 timer(s) running at 58.33MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1ae82a6a7f, max_idle_ns: 881590413063 ns
[    0.000002] sched_clock: 56 bits at 58MHz, resolution 17ns, wraps every 4398046511097ns
[    0.000136] Console: colour dummy device 80x25
[    0.000147] Calibrating delay loop (skipped), value calculated using timer frequency.. 116.66 BogoMIPS (lpj=233333)
[    0.000152] pid_max: default: 32768 minimum: 301
[    0.000205] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.000219] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.000678] ASID allocator initialised with 32768 entries
[    0.000707] rcu: Hierarchical SRCU implementation.
[    0.000924] EFI services will not be available.
[    0.001001] smp: Bringing up secondary CPUs ...
[    0.001150] Detected PIPT I-cache on CPU1
[    0.001164] GICv3: CPU1: found redistributor 1 region 0:0x00000000f02a0000
[    0.001175] CPU1: Booted secondary processor 0x0000000001 [0x411fd073]
[    0.001347] Detected PIPT I-cache on CPU2
[    0.001356] GICv3: CPU2: found redistributor 2 region 0:0x00000000f02c0000
[    0.001365] CPU2: Booted secondary processor 0x0000000002 [0x411fd073]
[    0.001533] Detected PIPT I-cache on CPU3
[    0.001542] GICv3: CPU3: found redistributor 3 region 0:0x00000000f02e0000
[    0.001550] CPU3: Booted secondary processor 0x0000000003 [0x411fd073]
[    0.001577] smp: Brought up 1 node, 4 CPUs
[    0.001579] SMP: Total of 4 processors activated.
[    0.001582] CPU features: detected: GIC system register CPU interface
[    0.001584] CPU features: detected: 32-bit EL0 Support
[    0.001601] CPU: All CPU(s) started at EL2
[    0.001609] alternatives: patching kernel code
[    0.002138] devtmpfs: initialized
[    0.003989] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.003995] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.004181] DMI not present or invalid.
[    0.004300] NET: Registered protocol family 16
[    0.004617] cpuidle: using governor menu
[    0.004712] DMA: preallocated 256 KiB pool for atomic allocations
[    0.004749] Initializing Peripheral Bus System - PBS
[    0.018202] console [pstore-1] enabled
[    0.018250] pstore: Registered ramoops as persistent store backend
[    0.018253] ramoops: attached 0x18000@0x10000000, ecc: 16/0
[    0.021692] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.021908] vgaarb: loaded
[    0.021978] SCSI subsystem initialized
[    0.022028] libata version 3.00 loaded.
[    0.022083] usbcore: registered new interface driver usbfs
[    0.022096] usbcore: registered new interface driver hub
[    0.022112] usbcore: registered new device driver usb
[    0.025019] pps_core: LinuxPPS API ver. 1 registered
[    0.025021] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    0.025026] PTP clock support registered
[    0.025058] Advanced Linux Sound Architecture Driver Initialized.
[    0.025201] Bluetooth: Core ver 2.22
[    0.025212] NET: Registered protocol family 31
[    0.025214] Bluetooth: HCI device and connection manager initialized
[    0.025217] Bluetooth: HCI socket layer initialized
[    0.025220] Bluetooth: L2CAP socket layer initialized
[    0.025229] Bluetooth: SCO socket layer initialized
[    0.025341] clocksource: Switched to clocksource arch_sys_counter
[    0.027416] NET: Registered protocol family 2
[    0.027600] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes)
[    0.027611] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.027693] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.027816] TCP: Hash tables configured (established 32768 bind 32768)
[    0.027863] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.027879] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.027945] NET: Registered protocol family 1
[    0.028099] PCI: CLS 0 bytes, default 64
[    0.028465] Initialise system trusted keyrings
[    0.028521] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    0.030492] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.561880] Key type asymmetric registered
[    0.561883] Asymmetric key parser 'x509' registered
[    0.561899] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    0.561902] io scheduler noop registered
[    0.561904] io scheduler deadline registered
[    0.561950] io scheduler cfq registered (default)
[    0.561952] io scheduler mq-deadline registered
[    0.561954] io scheduler kyber registered
[    0.562168] pl061_gpio fd887000.gpio0: PL061 GPIO chip @0x00000000fd887000 registered
[    0.562248] pl061_gpio fd888000.gpio1: PL061 GPIO chip @0x00000000fd888000 registered
[    0.562324] pl061_gpio fd889000.gpio2: PL061 GPIO chip @0x00000000fd889000 registered
[    0.562401] pl061_gpio fd88a000.gpio3: PL061 GPIO chip @0x00000000fd88a000 registered
[    0.562474] pl061_gpio fd88b000.gpio4: PL061 GPIO chip @0x00000000fd88b000 registered
[    0.562548] pl061_gpio fd897000.gpio5: PL061 GPIO chip @0x00000000fd897000 registered
[    0.562635] al-sgpo fd8b4000.sgpo: Alpine SGPO driver probed.
[    0.562711] al-internal-pcie fbc00000.pcie-internal: host bridge /soc/pcie-internal ranges:
[    0.562720] al-internal-pcie fbc00000.pcie-internal:   MEM 0xfe000000..0xfeffffff -> 0xfe000000
[    0.562761] al-internal-pcie fbc00000.pcie-internal: PCI host bridge to bus 0000:00
[    0.562764] pci_bus 0000:00: root bus resource [bus 00]
[    0.562767] pci_bus 0000:00: root bus resource [mem 0xfe000000-0xfeffffff]
[    0.562778] pci 0000:00:00.0: [1c36:0002] type 00 class 0x020000
[    0.562788] pci 0000:00:00.0: reg 0x10: [mem 0xfe000000-0xfe01ffff 64bit]
[    0.562793] pci 0000:00:00.0: reg 0x18: [mem 0xfe020000-0xfe020fff 64bit]
[    0.562797] pci 0000:00:00.0: reg 0x20: [mem 0xfe030000-0xfe03ffff 64bit]
[    0.562816] pci 0000:00:00.0: PME# supported from D3hot D3cold
[    0.562824] pci 0000:00:00.0: reg 0x324: [mem 0x00000000-0x0001ffff 64bit]
[    0.562828] pci 0000:00:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0005ffff 64bit] (contains BAR0 for 3 VFs)
[    0.562964] pci 0000:00:01.0: [1c36:0001] type 00 class 0x020000
[    0.562973] pci 0000:00:01.0: reg 0x10: [mem 0xfe040000-0xfe05ffff 64bit]
[    0.562978] pci 0000:00:01.0: reg 0x18: [mem 0xfe060000-0xfe060fff 64bit]
[    0.562982] pci 0000:00:01.0: reg 0x20: [mem 0xfe064000-0xfe067fff 64bit]
[    0.562997] pci 0000:00:01.0: PME# supported from D3hot D3cold
[    0.563090] pci 0000:00:02.0: [1c36:0002] type 00 class 0x020000
[    0.563099] pci 0000:00:02.0: reg 0x10: [mem 0xfe080000-0xfe09ffff 64bit]
[    0.563103] pci 0000:00:02.0: reg 0x18: [mem 0xfe0a0000-0xfe0a0fff 64bit]
[    0.563108] pci 0000:00:02.0: reg 0x20: [mem 0xfe0b0000-0xfe0bffff 64bit]
[    0.563123] pci 0000:00:02.0: PME# supported from D3hot D3cold
[    0.563131] pci 0000:00:02.0: reg 0x324: [mem 0x00000000-0x0001ffff 64bit]
[    0.563134] pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x0005ffff 64bit] (contains BAR0 for 3 VFs)
[    0.563231] pci 0000:00:03.0: [1c36:0001] type 00 class 0x020000
[    0.563240] pci 0000:00:03.0: reg 0x10: [mem 0xfe0c0000-0xfe0dffff 64bit]
[    0.563244] pci 0000:00:03.0: reg 0x18: [mem 0xfe0e0000-0xfe0e0fff 64bit]
[    0.563249] pci 0000:00:03.0: reg 0x20: [mem 0xfe0e4000-0xfe0e7fff 64bit]
[    0.563263] pci 0000:00:03.0: PME# supported from D3hot D3cold
[    0.563349] pci 0000:00:04.0: [1c36:0022] type 00 class 0x100000
[    0.563357] pci 0000:00:04.0: reg 0x10: [mem 0xfe100000-0xfe11ffff 64bit]
[    0.563363] pci 0000:00:04.0: reg 0x20: [mem 0xfe120000-0xfe12ffff 64bit]
[    0.563379] pci 0000:00:04.0: PME# supported from D3hot D3cold
[    0.563387] pci 0000:00:04.0: reg 0x324: [mem 0x00000000-0x0001ffff 64bit]
[    0.563390] pci 0000:00:04.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit] (contains BAR0 for 1 VFs)
[    0.563483] pci 0000:00:05.0: [1c36:0022] type 00 class 0x010400
[    0.563491] pci 0000:00:05.0: reg 0x10: [mem 0xfe140000-0xfe15ffff 64bit]
[    0.563498] pci 0000:00:05.0: reg 0x20: [mem 0xfe160000-0xfe16ffff 64bit]
[    0.563512] pci 0000:00:05.0: PME# supported from D3hot D3cold
[    0.563521] pci 0000:00:05.0: reg 0x324: [mem 0x00000000-0x0001ffff 64bit]
[    0.563524] pci 0000:00:05.0: VF(n) BAR0 space: [mem 0x00000000-0x0001ffff 64bit] (contains BAR0 for 1 VFs)
[    0.563712] pci 0000:00:08.0: [1c36:0031] type 00 class 0x010601
[    0.563726] pci 0000:00:08.0: reg 0x24: [mem 0xfe170000-0xfe173fff]
[    0.563741] pci 0000:00:08.0: PME# supported from D3hot D3cold
[    0.564936] pci 0000:00:00.0: BAR 0: assigned [mem 0xfe000000-0xfe01ffff 64bit]
[    0.564942] pci 0000:00:00.0: BAR 7: assigned [mem 0xfe020000-0xfe07ffff 64bit]
[    0.564946] pci 0000:00:01.0: BAR 0: assigned [mem 0xfe080000-0xfe09ffff 64bit]
[    0.564950] pci 0000:00:02.0: BAR 0: assigned [mem 0xfe0a0000-0xfe0bffff 64bit]
[    0.564955] pci 0000:00:02.0: BAR 7: assigned [mem 0xfe0c0000-0xfe11ffff 64bit]
[    0.564958] pci 0000:00:03.0: BAR 0: assigned [mem 0xfe120000-0xfe13ffff 64bit]
[    0.564963] pci 0000:00:04.0: BAR 0: assigned [mem 0xfe140000-0xfe15ffff 64bit]
[    0.564967] pci 0000:00:04.0: BAR 7: assigned [mem 0xfe160000-0xfe17ffff 64bit]
[    0.564971] pci 0000:00:05.0: BAR 0: assigned [mem 0xfe180000-0xfe19ffff 64bit]
[    0.564975] pci 0000:00:05.0: BAR 7: assigned [mem 0xfe1a0000-0xfe1bffff 64bit]
[    0.564979] pci 0000:00:00.0: BAR 4: assigned [mem 0xfe1c0000-0xfe1cffff 64bit]
[    0.564983] pci 0000:00:02.0: BAR 4: assigned [mem 0xfe1d0000-0xfe1dffff 64bit]
[    0.564988] pci 0000:00:04.0: BAR 4: assigned [mem 0xfe1e0000-0xfe1effff 64bit]
[    0.564992] pci 0000:00:05.0: BAR 4: assigned [mem 0xfe1f0000-0xfe1fffff 64bit]
[    0.564996] pci 0000:00:01.0: BAR 4: assigned [mem 0xfe200000-0xfe203fff 64bit]
[    0.565001] pci 0000:00:03.0: BAR 4: assigned [mem 0xfe204000-0xfe207fff 64bit]
[    0.565005] pci 0000:00:08.0: BAR 5: assigned [mem 0xfe208000-0xfe20bfff]
[    0.565009] pci 0000:00:00.0: BAR 2: assigned [mem 0xfe20c000-0xfe20cfff 64bit]
[    0.565013] pci 0000:00:01.0: BAR 2: assigned [mem 0xfe20d000-0xfe20dfff 64bit]
[    0.565018] pci 0000:00:02.0: BAR 2: assigned [mem 0xfe20e000-0xfe20efff 64bit]
[    0.565022] pci 0000:00:03.0: BAR 2: assigned [mem 0xfe20f000-0xfe20ffff 64bit]
[    0.565050] pci-pf-stub 0000:00:04.0: writing to VF config space
[    0.565094] pci-pf-stub 0000:00:04.0: claimed by pci-pf-stub
[    0.565110] pci-pf-stub 0000:00:05.0: writing to VF config space
[    0.565176] pci-pf-stub 0000:00:05.0: claimed by pci-pf-stub
[    0.565252] al-external-pcie fd800000.pcie-external0: host bridge /soc/pcie-external0 ranges:
[    0.565261] al-external-pcie fd800000.pcie-external0:   err 0xfb600000..0xfb6fffff -> 0xfb600000
[    0.565267] al-external-pcie fd800000.pcie-external0:    IO 0xc0000000..0xc000ffff -> 0x00010000
[    0.565273] al-external-pcie fd800000.pcie-external0:   MEM 0xc0010000..0xc7ffffff -> 0xc0010000
[    0.565298] al-external-pcie fd800000.pcie-external0: link up: speed Gen 1 width x1
[    0.565301] al-external-pcie fd800000.pcie-external0: link up: speed Gen 1 width x1
[    0.565305] PCIe 0: setting OB iATU even after link is started
[    0.565385] al-external-pcie fd800000.pcie-external0: PCI host bridge to bus 0001:00
[    0.565388] pci_bus 0001:00: root bus resource [bus 00-ff]
[    0.565391] pci_bus 0001:00: root bus resource [??? 0xfb600000-0xfb6fffff flags 0x0]
[    0.565395] pci_bus 0001:00: root bus resource [io  0x0000-0xffff] (bus address [0x10000-0x1ffff])
[    0.565397] pci_bus 0001:00: root bus resource [mem 0xc0010000-0xc7ffffff]
[    0.565408] pci 0001:00:00.0: [1c36:0031] type 01 class 0x060400
[    0.565420] pci 0001:00:00.0: reg 0x10: [mem 0x00000000-0x000fffff]
[    0.565425] pci 0001:00:00.0: reg 0x14: [mem 0x00000000-0x0000ffff]
[    0.565430] pci 0001:00:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    0.565463] pci 0001:00:00.0: supports D1
[    0.565466] pci 0001:00:00.0: PME# supported from D0 D1 D3hot
[    0.566548] pci 0001:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.566611] pci 0001:01:00.0: [1b21:1142] type 00 class 0x0c0330
[    0.566656] pci 0001:01:00.0: reg 0x10: [mem 0xc0000000-0xc0007fff 64bit]
[    0.566825] pci 0001:01:00.0: PME# supported from D3cold
[    0.566861] pci 0001:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x1 link at 0001:00:00.0 (capable of 4.000 Gb/s with 5 GT/s x1 link)
[    0.567927] pci_bus 0001:01: busn_res: [bus 01-ff] end is updated to 01
[    0.567936] pci 0001:00:00.0: BAR 0: assigned [mem 0xc0100000-0xc01fffff]
[    0.567941] pci 0001:00:00.0: BAR 14: assigned [mem 0xc0200000-0xc02fffff]
[    0.567944] pci 0001:00:00.0: BAR 1: assigned [mem 0xc0010000-0xc001ffff]
[    0.567948] pci 0001:00:00.0: BAR 6: assigned [mem 0xc0020000-0xc002ffff pref]
[    0.567953] pci 0001:01:00.0: BAR 0: assigned [mem 0xc0200000-0xc0207fff 64bit]
[    0.567968] pci 0001:00:00.0: PCI bridge to [bus 01]
[    0.567971] pci 0001:00:00.0:   bridge window [mem 0xc0200000-0xc02fffff]
[    0.567980] pci 0001:00:00.0: Max Payload Size set to  256/ 256 (was  128), Max Read Rq  256
[    0.568004] pci 0001:01:00.0: Max Payload Size set to  256/ 512 (was  128), Max Read Rq  256
[    0.568007] pci 0001:00:00.0: AL PCIe bridge quirk detected, disable MSI(X)
[    0.568265] al_dma: Annapurna Labs DMA Driver 0.01
[    0.569082] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.569511] console [ttyS0] disabled
[    0.569527] fd883000.uart0: ttyS0 at MMIO 0xfd883000 (irq = 23, base_baud = 31250000) is a 16550A
[    0.581552] console [ttyS0] enabled
[    0.581709] fd884000.uart1: ttyS1 at MMIO 0xfd884000 (irq = 24, base_baud = 31250000) is a 16550A
[    0.581850] fd885000.uart2: ttyS2 at MMIO 0xfd885000 (irq = 25, base_baud = 31250000) is a 16550A
[    0.582286] resvmem-reboot-reason soc:reboot-reason: Allocated reserved memory, vaddr: 0x8D15000, paddr: 0x10020000
[    0.582386] ahci 0000:00:08.0: version 3.0
[    0.582402] ahci 0000:00:08.0: controller can't do PMP, turning off CAP_PMP
[    0.582568] ahci 0000:00:08.0: SSS flag set, parallel bus scan disabled
[    0.582585] ahci 0000:00:08.0: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0xf impl SATA mode
[    0.582590] ahci 0000:00:08.0: flags: 64bit ncq sntf stag pm led clo only fbs pio slum part ccc apst
[    0.582593] ahci 0000:00:08.0: both AHCI_HFLAG_MULTI_MSI flag set and custom irq handler implemented
[    0.583112] scsi host0: ahci
[    0.583296] scsi host1: ahci
[    0.583436] scsi host2: ahci
[    0.583577] scsi host3: ahci
[    0.583666] ata1: SATA max UDMA/133 abar m16384@0xfe208000 port 0xfe208100 irq 27
[    0.583668] ata2: SATA max UDMA/133 abar m16384@0xfe208000 port 0xfe208180 irq 28
[    0.583670] ata3: SATA max UDMA/133 abar m16384@0xfe208000 port 0xfe208200 irq 29
[    0.583672] ata4: SATA max UDMA/133 abar m16384@0xfe208000 port 0xfe208280 irq 30
[    0.583696] ahci 0001:00:00.0: writing to VF config space
[    0.589172] ahci: probe of 0001:00:00.0 failed with error -22
[    0.589561] m25p80 spi0.0: found mx25u6435f, expected spi_flash_jedec_detection
[    0.589565] m25p80 spi0.0: mx25u6435f (8192 Kbytes)
[    0.589664] 5 fixed-partitions partitions found on MTD device spi0.0
[    0.589666] Creating 5 MTD partitions on "spi0.0":
[    0.589669] 0x000000000000-0x0000001c0000 : "u-boot"
[    0.589907] 0x0000001c0000-0x0000001d0000 : "u-boot-env"
[    0.590107] 0x0000001d0000-0x0000001e0000 : "u-boot-env-2"
[    0.590299] 0x0000001e0000-0x0000001f0000 : "Factory"
[    0.590490] 0x0000001f0000-0x000000200000 : "EEPROM"
[    0.591096] libphy: Fixed MDIO Bus: probed
[    0.591098] tun: Universal TUN/TAP device driver, 1.6
[    0.591249] al_eth_drv: Initializing Peripheral Bus System (PBS) resources
[    0.591275] al_eth 0000:00:00.0: writing to VF config space
[    0.596925] al_eth 0000:00:00.0: AnnapurnaLabs unified 1GbE/10GbE/25GbE Ethernet Driver with SR-IOV al_eth v3.5.3 (Mar 14, 2019)
[    0.596931] al_eth 0000:00:00.0: driver_data is 0x0
[    0.596960] al_eth 0000:00:00.0: eth rev_id 3 (orig_rev_id 3) dev_id 2
[    0.597046] al_eth 0000:00:00.0: Board info: phy exist No. phy addr 0. mdio freq 2500 Khz. SFP connected Yes. media 5
[    0.597050] al_eth 0000:00:00.0: al_mod_eth_function_reset: performing FLR
[    0.602987] al_eth 0000:00:00.0 eth0: AnnapurnaLabs unified 1Gbe/10Gbe/25Gbe integrated found at mem fe000000, mac addr 68:d7:9a:66:90:5c
[    0.603005] al_eth 0000:00:01.0: writing to VF config space
[    0.608615] al_eth 0000:00:01.0: driver_data is 0x0
[    0.608639] al_eth 0000:00:01.0: eth rev_id 2 (orig_rev_id 2) dev_id 1
[    0.608721] al_eth 0000:00:01.0: Board info: phy exist Yes. phy addr 4. mdio freq 2500 Khz. SFP connected No. media 1
[    0.608724] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
[    0.614443] al_eth 0000:00:01.0 eth1: AnnapurnaLabs unified 1Gbe/10Gbe/25Gbe integrated found at mem fe080000, mac addr 6a:d7:9a:66:90:5c
[    0.614466] libphy: alpine_mdio_shared: probed
[    0.687718] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.734476] ata1.00: ATA-9: WDC WD20PURX-64P6ZY0, 80.00A80, max UDMA/133
[    0.734479] ata1.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 32), AA
[    0.734998] ata1.00: configured for UDMA/133
[    0.735171] scsi 0:0:0:0: Direct-Access     ATA      WDC WD20PURX-64P 0A80 PQ: 0 ANSI: 5
[    0.735378] sd 0:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[    0.735381] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    0.735392] sd 0:0:0:0: [sda] Write Protect is off
[    0.735395] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.735409] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.736587] ata2: SATA link down (SStatus 4 SControl 300)
[    0.737674] ata3: SATA link down (SStatus 4 SControl 300)
[    0.738755] ata4: SATA link down (SStatus 4 SControl 300)
[    0.813344] al_eth 0000:00:01.0 eth1: MDIO read failed on timeout
[    0.828389]  sda: sda1
[    0.828693] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.013344] al_eth 0000:00:01.0 eth1: MDIO read failed on timeout
[    1.213342] al_eth 0000:00:01.0 eth1: MDIO read failed on timeout
[    1.413342] al_eth 0000:00:01.0 eth1: MDIO read failed on timeout
[    1.613342] al_eth 0000:00:01.0 eth1: MDIO read failed on timeout
[    1.813342] al_eth 0000:00:01.0 eth1: MDIO read failed on timeout
[    2.013342] al_eth 0000:00:01.0 eth1: MDIO read failed on timeout
[    2.213342] al_eth 0000:00:01.0 eth1: MDIO read failed on timeout
[    2.286167] al_eth 0000:00:01.0 eth1: phy[4]: device alpine_mdio_shared_8:04, driver Atheros 8031 ethernet
[    2.286171] al_eth 0000:00:01.0 eth1: phy[4]:supported 62ef adv 62ef
[    2.286188] al_eth 0000:00:02.0: writing to VF config space
[    2.291829] al_eth 0000:00:02.0: driver_data is 0x0
[    2.291858] al_eth 0000:00:02.0: eth rev_id 3 (orig_rev_id 3) dev_id 2
[    2.291981] al_eth 0000:00:02.0: Board info: phy exist No. phy addr 0. mdio freq 2500 Khz. SFP connected Yes. media 5
[    2.291985] al_eth 0000:00:02.0: al_mod_eth_function_reset: performing FLR
[    2.297889] al_eth 0000:00:02.0 eth2: AnnapurnaLabs unified 1Gbe/10Gbe/25Gbe integrated found at mem fe0a0000, mac addr 22:e0:cc:86:5c:d2
[    2.297906] al_eth 0000:00:03.0: writing to VF config space
[    2.303516] al_eth 0000:00:03.0: driver_data is 0x0
[    2.303540] al_eth 0000:00:03.0: eth rev_id 2 (orig_rev_id 2) dev_id 1
[    2.303618] al_eth 0000:00:03.0: Board info: phy exist Yes. phy addr 17. mdio freq 2500 Khz. SFP connected No. media 1
[    2.303622] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
[    2.309377] al_eth 0000:00:03.0 eth3: AnnapurnaLabs unified 1Gbe/10Gbe/25Gbe integrated found at mem fe120000, mac addr 46:f5:1a:de:20:fa
[    2.509343] al_eth 0000:00:01.0 eth1: MDIO read failed on timeout
[    2.509346] al_eth 0000:00:03.0 eth3: al_mod_eth_mdiobus_setup: cannot get phy device - auto probing failed.
[    2.927704] Setting 0 to s 0 m 0 rx 0 tx 0
[    3.108068] Setting 1 to s 2 m 1 rx 6 tx 1
[    3.643713] switch0: RTL8370B switch registered on alpine_mdio_shared_8
[    3.643732] al_eth 0000:00:03.0 eth3: phy[17]: device alpine_mdio_shared_8:11, driver Realtek RTL8370MB
[    3.643735] al_eth 0000:00:03.0 eth3: phy[17]:supported 62ef adv 62ef
[    3.643902] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.643905] ehci-pci: EHCI PCI platform driver
[    3.643923] ehci-platform: EHCI generic platform driver
[    3.643963] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.643970] ohci-pci: OHCI PCI platform driver
[    3.643984] uhci_hcd: USB Universal Host Controller Interface driver
[    3.644067] xhci_hcd 0001:01:00.0: xHCI Host Controller
[    3.644077] xhci_hcd 0001:01:00.0: new USB bus registered, assigned bus number 1
[    3.778173] xhci_hcd 0001:01:00.0: hcc params 0x0200e081 hci version 0x100 quirks 0x0000000010000410
[    3.778677] hub 1-0:1.0: USB hub found
[    3.778693] hub 1-0:1.0: 2 ports detected
[    3.778854] xhci_hcd 0001:01:00.0: xHCI Host Controller
[    3.778861] xhci_hcd 0001:01:00.0: new USB bus registered, assigned bus number 2
[    3.778865] xhci_hcd 0001:01:00.0: Host supports USB 3.0 SuperSpeed
[    3.778926] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.779102] hub 2-0:1.0: USB hub found
[    3.779117] hub 2-0:1.0: 2 ports detected
[    3.779286] usbcore: registered new interface driver cdc_acm
[    3.779287] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    3.779309] usbcore: registered new interface driver usb-storage
[    3.779335] usbcore: registered new interface driver cp210x
[    3.779343] usbserial: USB Serial support registered for cp210x
[    3.779416] i2c /dev entries driver
[    3.783489] rtc-s35390a 1-0030: rtc core: registered rtc-s35390a as rtc0
[    3.783507] i2c i2c-0: Added multiplexed i2c bus 1
[    3.783570] i2c i2c-0: Added multiplexed i2c bus 2
[    3.783630] i2c i2c-0: Added multiplexed i2c bus 3
[    3.783732] i2c i2c-0: Added multiplexed i2c bus 4
[    3.783735] pca954x 0-0071: registered 4 multiplexed busses for I2C switch pca9546
[    3.787410] adt7475 4-002e: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    3.787435] adt7475 4-002e: ADT7475 device, revision 1
[    3.787437] adt7475 4-002e: Optional features: fan4 pwm2
[    3.807766] al_thermal_probe: Thermal Sensor Loaded
[    3.807896] sp805-wdt fd88c000.wdt0: registration successful
[    3.807913] Bluetooth: HCI UART driver ver 2.3
[    3.807915] Bluetooth: HCI UART protocol H4 registered
[    3.807917] Bluetooth: HCI UART protocol BCSP registered
[    3.808286] usbcore: registered new interface driver usbhid
[    3.808288] usbhid: USB HID core driver
[    3.808358] usbcore: registered new interface driver snd-usb-audio
[    3.808619] IPVS: Registered protocols ()
[    3.808648] IPVS: Connection hash table configured (size=4096, memory=64Kbytes)
[    3.808695] IPVS: ipvs loaded.
[    3.808748] gre: GRE over IPv4 demultiplexor driver
[    3.808749] ip_gre: GRE over IPv4 tunneling driver
[    3.809120] IPv4 over IPsec tunneling driver
[    3.809476] NET: Registered protocol family 10
[    3.809994] Segment Routing with IPv6
[    3.810078] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    3.810248] NET: Registered protocol family 17
[    3.810265] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    3.810298] Bluetooth: RFCOMM socket layer initialized
[    3.810306] Bluetooth: RFCOMM ver 1.11
[    3.810310] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.810314] Bluetooth: BNEP socket layer initialized
[    3.810316] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    3.810318] Bluetooth: HIDP socket layer initialized
[    3.810320] 8021q: 802.1Q VLAN Support v1.8
[    3.810516] registered taskstats version 1
[    3.810518] Loading compiled-in X.509 certificates
[    3.810622] pstore: Using compression: deflate
[    3.811129] Key type encrypted registered
[    3.811451] input: gpio_keys as /devices/platform/gpio_keys/input/input0
[    3.811920] random: fast init done
[    3.812628] rtc-s35390a 1-0030: setting system clock to 2021-10-14 20:03:51 UTC (1634241831)
[    3.812682] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    3.875208] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    3.875216] ALSA device list:
[    3.875217]   No soundcards found.
[    3.875320] Waiting for root device /dev/sdb2...
[    3.875349] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    3.875351] cfg80211: failed to load regulatory.db
[    4.181344] usb 1-2: new full-speed USB device number 2 using xhci_hcd
[    4.513556] cdc_acm 1-2:1.0: ttyACM0: USB ACM device
[    4.549951] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[    4.584274] usb-storage 2-1:1.0: USB Mass Storage device detected
[    4.584468] scsi host4: usb-storage 2-1:1.0
[    5.598741] scsi 4:0:0:0: Direct-Access     Generic  MassStorageClass 1537 PQ: 0 ANSI: 6
[    5.756771] sd 4:0:0:0: [sdb] 30777344 512-byte logical blocks: (15.8 GB/14.7 GiB)
[    5.757469] sd 4:0:0:0: [sdb] Write Protect is off
[    5.757473] sd 4:0:0:0: [sdb] Mode Sense: 21 00 00 00
[    5.758220] sd 4:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    5.767776]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6
[    5.770215] sd 4:0:0:0: [sdb] Attached SCSI removable disk
[    5.773165] VFS: Mounted root (squashfs filesystem) readonly on device 8:18.
[    5.774790] devtmpfs: mounted
[    5.774936] Freeing unused kernel memory: 576K
[    5.785418] Run /sbin/init as init process
[    6.471675] random: crng init done
[    6.508196] EXT4-fs (sdb6): recovery complete
[    6.508202] EXT4-fs (sdb6): mounted filesystem with ordered data mode. Opts: (null)
[    9.265583] ubnt_common: loading out-of-tree module taints kernel.
[    9.265589] ubnt_common: module license 'Proprietary' taints kernel.
[    9.265591] Disabling lock debugging due to kernel taint
[    9.268235] [UBNT_STA_HT] Initialize hash table
[    9.268255] [UBNT_STA_HT] done
[    9.268257] creating /proc/ubnt_peek/
[    9.268263] creating /proc/ubnt_peek/peek_disable
[    9.268265] creating /proc/ubnt_peek/loop_check
[    9.268267] creating /proc/ubnt_peek/loop_debug
[    9.268269] creating /proc/ubnt_peek/loop_uif
[    9.268271] creating /proc/ubnt_peek/tcp_debug_mac
[    9.268273] creating /proc/ubnt_peek/tcp_debug_connections
[    9.268280] qos: registered
[    9.268281] creating /proc/ubnt_frame_id/
[    9.268284] creating /proc/ubnt_frame_id/netdevs
[    9.318350] ubnthal: Ubiquiti UniFi Dream Machine PRO
[    9.319296] creating procfs for ubnthal
[    9.319303] creating proc entry for system.info
[    9.319305] creating proc entry for board
[    9.329248] Unable to find matching dts node.
[    9.329254] creating procfs for status
[    9.329259] creating proc entry for IsDefault
[    9.329262] creating proc entry for IsLocated
[    9.329264] creating proc entry for IsIsolated
[    9.329266] creating proc entry for IsLte
[    9.329268] creating proc entry for ControllerPort
[    9.329269] creating proc entry for ControllerHost
[    9.489091] EXT4-fs (sdb6): mounted filesystem with ordered data mode. Opts: errors=panic
[    9.492071] EXT4-fs (sdb4): mounted filesystem with ordered data mode. Opts: errors=panic
[    9.507620] creating /proc/gpio/
[    9.507627]          /proc/gpio/ledbar_control
[    9.507629]          /proc/gpio/led_pattern
[    9.507631]          /proc/gpio/led_tempo
[    9.507633]          /proc/gpio/poe_passthrough
[    9.788107] watchdog: watchdog0: nowayout prevents watchdog being stopped!
[    9.788110] watchdog: watchdog0: watchdog did not stop!
[    9.814630] zram: Added device: zram0
[    9.831930] zram0: detected capacity change from 0 to 7244554240
[    9.844833] Adding 7074756k swap on /dev/zram0.  Priority:100 extents:1 across:7074756k SS
[    9.969801] ICMPv6: process `sysctl' is using deprecated sysctl (syscall) net.ipv6.neigh.default.base_reachable_time - use net.ipv6.neigh.default.base_reachable_t                                                                        ime_ms instead
[   10.024889] al_eth 0000:00:00.0 eth9.tmp: renamed from eth0
[   10.040344] al_eth 0000:00:02.0 eth10.tmp: renamed from eth2
[   10.052355] al_eth 0000:00:03.0 switch0.tmp: renamed from eth3
[   10.072330] al_eth 0000:00:01.0 eth8.tmp: renamed from eth1
[   10.094922] al_eth 0000:00:02.0 eth10: renamed from eth10.tmp
[   10.111843] IPv6: ADDRCONF(NETDEV_UP): eth10: link is not ready
[   10.116719] al_eth 0000:00:01.0 eth8: renamed from eth8.tmp
[   10.138742] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
[   10.144103] Configured MAC to RGMII mode
[   10.145041] al_eth 0000:00:01.0 eth8: using MSI-X per Queue interrupt mode
[   10.148386] IPv6: ADDRCONF(NETDEV_UP): eth8: link is not ready
[   10.153775] al_eth 0000:00:00.0 eth9: renamed from eth9.tmp
[   10.175894] IPv6: ADDRCONF(NETDEV_UP): eth9: link is not ready
[   10.180784] al_eth 0000:00:03.0 switch0: renamed from switch0.tmp
[   10.202739] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
[   10.208150] Configured MAC to RGMII mode
[   10.209074] al_eth 0000:00:03.0 switch0: using MSI-X per Queue interrupt mode
[   10.212419] IPv6: ADDRCONF(NETDEV_UP): switch0: link is not ready
[   10.235316] br0: port 1(switch0) entered blocking state
[   10.235320] br0: port 1(switch0) entered disabled state
[   10.235410] device switch0 entered promiscuous mode
[   10.237611] br0: port 2(eth10) entered blocking state
[   10.237614] br0: port 2(eth10) entered disabled state
[   10.237686] device eth10 entered promiscuous mode
[   10.240333] IPv6: ADDRCONF(NETDEV_UP): br0: link is not ready
[   10.400690] IPv6: ADDRCONF(NETDEV_UP): eth9: link is not ready
[   10.420867] br0: port 2(eth10) entered disabled state
[   10.424461] IPv6: ADDRCONF(NETDEV_UP): eth10: link is not ready
[   10.455292] br0: port 1(switch0) entered disabled state
[   10.458172] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
[   10.463581] Configured MAC to RGMII mode
[   10.464538] al_eth 0000:00:03.0 switch0: using MSI-X per Queue interrupt mode
[   10.467873] IPv6: ADDRCONF(NETDEV_UP): switch0: link is not ready
[   10.493866] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
[   10.499261] Configured MAC to RGMII mode
[   10.500205] al_eth 0000:00:01.0 eth8: using MSI-X per Queue interrupt mode
[   10.503535] IPv6: ADDRCONF(NETDEV_UP): eth8: link is not ready
[   11.133370] IPv6: ADDRCONF(NETDEV_CHANGE): eth8: link becomes ready
[   11.133521] IPv6: ADDRCONF(NETDEV_CHANGE): switch0: link becomes ready
[   11.133547] br0: port 1(switch0) entered blocking state
[   11.133550] br0: port 1(switch0) entered forwarding state
[   11.133596] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
[   11.485347] eth [al_mod_eth_3]: set link speed to 1000Mbps. full duplex.
[   11.485355] al_eth 0000:00:03.0 switch0: Link is Up - 1Gbps/Full - flow control off
[   12.542031] eth [al_mod_eth_1]: set link speed to 1000Mbps. full duplex.
[   12.542037] al_eth 0000:00:01.0 eth8: Link is Up - 1Gbps/Full - flow control rx/tx
[   15.837683] Bluetooth: hci0: unexpected event for opcode 0x0000
[   17.918073] PPP generic driver version 2.4.2
[   19.940049] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   23.840933] al_mod_eth_group_lm_link_conf_apply: Trying to apply configuration for unregistered link! link:0, serdes_grp:2
[   23.840935] al_mod_eth_group_lm_link_conf_apply: Trying to apply configuration for unregistered link! link:1, serdes_grp:2
[   23.840938] al_mod_eth_group_lm_link_conf_apply: Trying to apply configuration for unregistered link! link:3, serdes_grp:2
[   28.344892] al_mod_eth_group_lm_link_conf_apply: Trying to apply configuration for unregistered link! link:0, serdes_grp:3
[   28.344896] al_mod_eth_group_lm_link_conf_apply: Trying to apply configuration for unregistered link! link:1, serdes_grp:3
[   28.344898] al_mod_eth_group_lm_link_conf_apply: Trying to apply configuration for unregistered link! link:3, serdes_grp:3
[   28.925865] al_eth 0000:00:01.0 eth8: Link is Down
[   30.790285] IPv6: ADDRCONF(NETDEV_UP): eth10.10: link is not ready
[   30.792782] br0: port 1(switch0) entered disabled state
[   30.973991] eth [al_mod_eth_1]: set link speed to 1000Mbps. full duplex.
[   30.973999] al_eth 0000:00:01.0 eth8: Link is Up - 1Gbps/Full - flow control rx/tx
[   31.181499] br0: port 1(switch0.1) entered blocking state
[   31.181503] br0: port 1(switch0.1) entered disabled state
[   31.181582] device switch0.1 entered promiscuous mode
[   31.181620] br0: port 1(switch0.1) entered blocking state
[   31.181623] br0: port 1(switch0.1) entered forwarding state
[   31.253363] br10: port 1(eth10.10) entered blocking state
[   31.253366] br10: port 1(eth10.10) entered disabled state
[   31.253447] device eth10.10 entered promiscuous mode
[   31.255307] br10: port 2(switch0.10) entered blocking state
[   31.255310] br10: port 2(switch0.10) entered disabled state
[   31.255376] device switch0.10 entered promiscuous mode
[   31.255405] br10: port 2(switch0.10) entered blocking state
[   31.255407] br10: port 2(switch0.10) entered forwarding state
[   31.343471] ICMPv6: process `ubios-udapi-ser' is using deprecated sysctl (syscall) net.ipv6.neigh.br0.base_reachable_time - use net.ipv6.neigh.br0.base_reachable_                                                                        time_ms instead
[   31.422931] Init chrdev /dev/detector with major 190
[   31.422938] tdts: tcp_conn_max = 32000
\x000a
[   31.422940] tdts: tcp_conn_timeout = 300 sec
\x000a
[   34.485124] systemd-journald[29]: Received request to flush runtime journal from PID 1

1.12.38 Support?

Currently on 1.12.22 and been holding back on update.

Is 1.12.38 Supported? Or even better still 2.4.27?

Add support for Linux 4.19 (UDM firmware 1.10.0)

UniFi Dream Machine Firmware 1.10.0-8 (Beta) firmware upgraded the kernel to 4.19.
Since the kernel doesn't seem to have been upgraded in a long time, I guess the maintenance guide (https://github.com/fabianishere/udm-kernel-tools/blob/master/MAINTENANCE.md#adding-firmware-support) will not just work(?)

The project by @tusc (https://github.com/tusc/wireguard-kmod) already includes support for the new kernel (4.19.152), although it doesn't look like he posted the source he was sent by Ubiquiti (at https://github.com/tusc/UDM-source-code).
(Perhaps because the firmware is still in beta, Ubiquiti doesn't want him to, or he just hasn't gotten around to it?)

Even though it'll probably take some time until the firmware reaches RC or "stable", it might be a good idea to see what's needed to support a new kernel.

(Again, big thanks for both projects!)

MagentaTV IGMP Proxy

MagentaTV by Telekom comes in on VLAN 7 where the normal internet traffic also arrives. There is no longer two separated VLANs.
I guess I can skip the step "Creating VLAN and obtaining IP address" in https://github.com/fabianishere/udm-kernel-tools/blob/master/docs/iptv.md#creating-vlan-and-obtaining-ip-address?
This is the configuration that I'm currently using on my USG 3P successfully (Note: I'm doing the VLAN tagging (7) on my DrayTek Vigor 165 modem but it can also be done on the USG):

(The prefix-only thing is only there to prevent a high cpu usage on the USGs with IPv6 -- hopefully this is fixed on the UDM-Pro)

{
    "interfaces": {
        "ethernet": {
            "eth0": {
                "pppoe": {
                    "0": {
                        "dhcpv6-pd": {
                            "prefix-only": "''"
                        }
                    }
                }
            }
        }
    },
    "protocols": {
        "igmp-proxy": {
            "interface": {
                "eth1": {
                    "alt-subnet": [
                        "0.0.0.0/0"
                    ],
                    "role": "downstream",
                    "threshold": "1",
                    "whitelist": [
                        "239.35.0.0/16",
                        "232.0.0.0/16"
                    ]
                },
                "pppoe0": {
                    "alt-subnet": [
                        "0.0.0.0/0"
                    ],
                    "role": "upstream",
                    "threshold": "1"
                }
            }
        }
    }
}

Could /etc/igmpproxy.conf look something like this?

quickleave

##------------------------------------------------------
## Configuration for eth0 (Upstream Interface)
##------------------------------------------------------
phyint eth8 upstream  ratelimit 0  threshold 1
    altnet 192.168.0.0/16 # LAN
    altnet 239.35.0.0/16 # Multicast addresses used by MagentaTV
    altnet 232.0.0.0/16

##------------------------------------------------------
## Configuration for eth1 (Downstream Interface)
##------------------------------------------------------
phyint br0 downstream  ratelimit 0  threshold 1

# Disable other interfaces
phyint ppp0 disabled
phyint tun1 disabled

I'm getting my UDM-Pro in a couple of days (would have never bought one without this project and I'm not sure if it's good or bad that I bought one lol), so I can try if this works and I'll update this question if and how I got it to work.
(Again, thanks so much for doing this!!)

There's also some information in the following articles:
(although the article is in German, the addresses used by MagentaTV are specified): https://www.heise.de/ct/artikel/MagentaTV-auf-pfSense-Co-4698826.html
(Attention: this is the "old way" -- no longer done like this afaik): https://www.projectiwear.org/~plasmahh/t_home.html
(This also seems to be the "old way" with two separate VLANs since it's mentioned that it's a "non BNG" connection): https://telekomhilft.telekom.de/t5/Fernsehen/Brauche-Hilfe-fuer-Einrichtung-von-igmpproxy-auf-Linux-Router/td-p/3446240

Cannot boot kernel on normal UDM 1.11.4

Hi, I tried loading the latest kernel from the releases tab

root@ubnt:/# udm-bootctl list
Version                                         Initrd
4.19.152-edge3                                  yes
root@ubnt:/# udm-bootctl boot 4.19.152-edge3
Loading kernel 4.19.152-edge3...
Inserting kexec kernel modules...
Triggering system boot...
root@ubnt:/# Error: non zero exit code: 129: OCI runtime error
# client_loop: send disconnect: Broken pipe
# uname -a
Linux UDM 4.19.152-al-linux-v10.2.0-v1.11.4.3940-e66d85f #1 SMP Fri Feb 18 15:27:03 UTC 2022 aarch64 GNU/Linux
# cat /sys/fs/pstore/*
[    0.616946] pci-pf-stub 0000:00:04.0: writing to VF config space
[    0.617011] pci-pf-stub 0000:00:05.0: writing to VF config space
[    0.640137] ahci 0001:00:00.0: writing to VF config space
[    0.645641] ahci 0002:00:00.0: writing to VF config space
[    0.651146] ahci 0003:00:00.0: writing to VF config space
[    0.658708] al_eth 0000:00:01.0: writing to VF config space
[    2.613901] al_eth 0000:00:03.0: writing to VF config space
[   14.949924] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000
[   14.958772] Mem abort info:
[   14.961597]   ESR = 0x96000045
[   14.964685]   Exception class = DABT (current EL), IL = 32 bits
[   14.970659]   SET = 0, FnV = 0
[   14.973741]   EA = 0, S1PTW = 0
[   14.976911] Data abort info:
[   14.979845]   ISV = 0, ISS = 0x00000045
[   14.983710]   CM = 0, WnR = 1
[   14.986708] user pgtable: 4k pages, 39-bit VAs, pgdp = 00000000cc24b00e
[   14.993376] [0000000000000000] pgd=0000000000000000, pud=0000000000000000
[   15.000191] Internal error: Oops: 96000045 [#1] SMP
[   15.005119] Modules linked in: rlt_wifi(FO+) sch_fq_codel sch_htb lzo lzo_compress zram gpiodev(PFO) ubnthal(PFO) ubnt_common(PFO)
[   15.016909] Process modprobe (pid: 975, stack limit = 0x000000002c70e4a4)
[   15.023720] CPU: 1 PID: 975 Comm: modprobe Tainted: PF          O      4.19.152-edge3 #1
[   15.031859] Hardware name: Annapurna Labs Alpine V2 UBNT (DT)
[   15.037655] pstate: 80000005 (Nzcv daif -PAN -UAO)
[   15.042474] pc : __memcpy+0x94/0x180
[   15.046156] lr : RtmpOSNetDevAttach+0x8c/0x140 [rlt_wifi]
[   15.051605] sp : ffffff800c3eb880
[   15.054944] x29: ffffff800c3eb880 x28: 0000000000000100
[   15.060307] x27: ffffff800c49d000 x26: ffffff800811ef70
[   15.065642] x25: ffffff800c800000 x24: ffffffc07d588000
[   15.071005] x23: ffffffc07cb9d098 x22: ffffff8000c26000
[   15.076339] x21: ffffff8009785000 x20: ffffffc07d588000
[   15.081701] x19: ffffff800c3eb930 x18: 0000000000020000
[   15.087035] x17: 0000000000000001 x16: 0000000000000007
[   15.092369] x15: 00000000fffffff0 x14: ffffff8008bf01c8
[   15.097731] x13: ffffff8008c84b58 x12: ffffff8008bf0000
[   15.103065] x11: 0000000000000000 x10: ffffff8008c84000
[   15.108428] x9 : 0000000000000000 x8 : 0000000000000002
[   15.113762] x7 : 0000000000005002 x6 : 0000000000000000
[   15.119124] x5 : 0000000000000000 x4 : ffffff800c3eb918
[   15.124459] x3 : 0000000000000000 x2 : 0000000000000006
[   15.129822] x1 : ffffff800c3eb980 x0 : 0000000000000000
[   15.135156] Call trace:
[   15.137629]  __memcpy+0x94/0x180
[   15.140977]  rt_pci_probe+0x43c/0x550 [rlt_wifi]
[   15.145621]  pci_device_probe+0xe4/0x1e8
[   15.149568]  really_probe+0x1f8/0x2a0
[   15.153283]  driver_probe_device+0x58/0x100
[   15.157491]  __driver_attach+0xe0/0xe8
[   15.161266]  bus_for_each_dev+0x74/0xc8
[   15.165154]  driver_attach+0x20/0x28
[   15.168753]  bus_add_driver+0x1ac/0x218
[   15.172612]  driver_register+0x60/0x110
[   15.176501]  __pci_register_driver+0x40/0x48
[   15.180844]  rt_pci_init_module+0x15c/0x178 [rlt_wifi]
[   15.186081]  wifi_drv_init_module+0x10/0xe88 [rlt_wifi]
[   15.191330]  do_one_initcall+0x5c/0x178
[   15.195194]  do_init_module+0x58/0x1a0
[   15.198996]  load_module+0x1c7c/0x20e8
[   15.202770]  __se_sys_finit_module+0xbc/0xd0
[   15.207064]  __arm64_sys_finit_module+0x18/0x20
[   15.211647]  el0_svc_handler+0xc0/0x1a0
[   15.215506]  el0_svc+0x8/0xc4
[   15.218501] Code: f8408423 f80084c3 36100062 b8404423 (b80044c3)
[   15.224649] ---[ end trace ca20c65278b1f25c ]---
[   15.233056] Kernel panic - not syncing: Fatal exception
[   15.238334] SMP: stopping secondary CPUs
[   15.242303] Kernel Offset: disabled
[   15.245816] CPU features: 0x0,20006008
[   15.249618] Memory Limit: none
[   15.256460] Rebooting in 3 seconds..

No errors detected
 3.096630] usb 1-2: new full-speed USB device number 2 using xhci_hcd
May  5 17:19:07 UDM user.info kernel: [    3.279546] usb 1-2: set volume quirk for CM102-A+/102S+
May  5 17:19:07 UDM user.info kernel: [    3.397231] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
May  5 17:19:07 UDM user.info kernel: [    3.429312] usb-storage 2-1:1.0: USB Mass Storage device detected
May  5 17:19:07 UDM user.info kernel: [    3.429510] scsi host4: usb-storage 2-1:1.0
May  5 17:19:07 UDM user.notice kernel: [    4.446061] scsi 4:0:0:0: Direct-Access     Generic  MassStorageClass 1537 PQ: 0 ANSI: 6
May  5 17:19:07 UDM user.notice kernel: [    4.597941] sd 4:0:0:0: [sda] 30777344 512-byte logical blocks: (15.8 GB/14.7 GiB)
May  5 17:19:07 UDM user.notice kernel: [    4.598831] sd 4:0:0:0: [sda] Write Protect is off
May  5 17:19:07 UDM user.debug kernel: [    4.598834] sd 4:0:0:0: [sda] Mode Sense: 21 00 00 00
May  5 17:19:07 UDM user.notice kernel: [    4.599596] sd 4:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
May  5 17:19:07 UDM user.info kernel: [    4.609603]  sda: sda1 sda2 sda3 sda4 sda5 sda6
May  5 17:19:07 UDM user.notice kernel: [    4.611769] sd 4:0:0:0: [sda] Attached SCSI removable disk
May  5 17:19:07 UDM user.notice kernel: [    4.865884] random: fast init done
May  5 17:19:07 UDM user.notice kernel: [    4.972951] random: crng init done
May  5 17:19:07 UDM user.info kernel: [    5.210003] EXT4-fs (sda6): recovery complete
May  5 17:19:07 UDM user.info kernel: [    5.210636] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: errors=panic
May  5 17:19:07 UDM user.warn kernel: [    6.746022] ubnt_common: bad vermagic: kernel tainted.
May  5 17:19:07 UDM user.warn kernel: [    6.746026] Disabling lock debugging due to kernel taint
May  5 17:19:07 UDM user.warn kernel: [    6.746028] ubnt_common: loading out-of-tree module taints kernel.
May  5 17:19:07 UDM user.warn kernel: [    6.746033] ubnt_common: module license 'Proprietary' taints kernel.
May  5 17:19:07 UDM user.info kernel: [    6.748711] [UBNT_STA_HT] Initialize hash table
May  5 17:19:07 UDM user.info kernel: [    6.748735] [UBNT_STA_HT] done
May  5 17:19:07 UDM user.warn kernel: [    6.748737] creating /proc/ubnt_peek/
May  5 17:19:07 UDM user.warn kernel: [    6.748745] creating /proc/ubnt_peek/peek_disable
May  5 17:19:07 UDM user.warn kernel: [    6.748747] creating /proc/ubnt_peek/loop_check
May  5 17:19:07 UDM user.warn kernel: [    6.748750] creating /proc/ubnt_peek/loop_debug
May  5 17:19:07 UDM user.warn kernel: [    6.748752] creating /proc/ubnt_peek/loop_uif
May  5 17:19:07 UDM user.warn kernel: [    6.748754] creating /proc/ubnt_peek/tcp_debug_mac
May  5 17:19:07 UDM user.warn kernel: [    6.748756] creating /proc/ubnt_peek/tcp_debug_connections
May  5 17:19:07 UDM user.warn kernel: [    6.748766] qos: registered
May  5 17:19:07 UDM user.warn kernel: [    6.748767] creating /proc/ubnt_frame_id/
May  5 17:19:07 UDM user.warn kernel: [    6.748770] creating /proc/ubnt_frame_id/netdevs
May  5 17:19:07 UDM user.info kernel: [    6.801108] ubnthal: Ubiquiti UniFi Dream Machine
May  5 17:19:07 UDM user.debug kernel: [    6.802177] creating procfs for ubnthal
May  5 17:19:07 UDM user.debug kernel: [    6.802187] creating proc entry for system.info
May  5 17:19:07 UDM user.debug kernel: [    6.802189] creating proc entry for board
May  5 17:19:07 UDM user.info kernel: [    6.810518] Unable to find matching dts node.
May  5 17:19:07 UDM user.debug kernel: [    6.810526] creating procfs for status
May  5 17:19:07 UDM user.debug kernel: [    6.810530] creating proc entry for IsDefault
May  5 17:19:07 UDM user.debug kernel: [    6.810532] creating proc entry for IsLocated
May  5 17:19:07 UDM user.debug kernel: [    6.810535] creating proc entry for IsIsolated
May  5 17:19:07 UDM user.debug kernel: [    6.810536] creating proc entry for IsLte
May  5 17:19:07 UDM user.debug kernel: [    6.810539] creating proc entry for ControllerPort
May  5 17:19:07 UDM user.debug kernel: [    6.810541] creating proc entry for ControllerHost
May  5 17:19:07 UDM user.info kernel: [    6.946533] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: errors=panic
May  5 17:19:07 UDM user.debug kernel: [    6.964507] creating /proc/gpio/
May  5 17:19:07 UDM user.debug kernel: [    6.964515]          /proc/gpio/ledbar_control
May  5 17:19:07 UDM user.debug kernel: [    6.964517]          /proc/gpio/led_pattern
May  5 17:19:07 UDM user.debug kernel: [    6.964519]          /proc/gpio/led_tempo
May  5 17:19:07 UDM user.debug kernel: [    6.964521]          /proc/gpio/poe_passthrough
May  5 17:19:07 UDM user.info kernel: [    7.286603] zram: Added device: zram0
May  5 17:19:07 UDM user.info kernel: [    7.299316] zram0: detected capacity change from 0 to 3668865024
May  5 17:19:07 UDM user.info kernel: [    7.317511] Adding 3582872k swap on /dev/zram0.  Priority:100 extents:1 across:3582872k SS
May  5 17:19:07 UDM user.warn kernel: [    7.434724] ICMPv6: process `sysctl' is using deprecated sysctl (syscall) net.ipv6.neigh.default.base_reachable_time - use net.ipv6.neigh.default.base_reachable_time_ms instead
May  5 17:19:07 UDM user.notice ubios-udm-init: Renaming interfaces ...
May  5 17:19:07 UDM user.info kernel: [    7.483785] al_eth 0000:00:01.0 switch0.tmp: renamed from eth0
May  5 17:19:07 UDM user.info kernel: [    7.503799] al_eth 0000:00:03.0 eth4.tmp: renamed from eth1
May  5 17:19:07 UDM user.info kernel: [    7.522424] al_eth 0000:00:03.0 eth4: renamed from eth4.tmp
May  5 17:19:07 UDM user.info kernel: [    7.542127] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
May  5 17:19:07 UDM user.info kernel: [    7.547547] Configured MAC to RGMII mode
May  5 17:19:07 UDM user.info kernel: [    7.548720] al_eth 0000:00:03.0 eth4: using MSI-X per Queue interrupt mode
May  5 17:19:07 UDM user.info kernel: [    7.552029] IPv6: ADDRCONF(NETDEV_UP): eth4: link is not ready
May  5 17:19:07 UDM user.info kernel: [    7.552063] IPv6: ADDRCONF(NETDEV_CHANGE): eth4: link becomes ready
May  5 17:19:07 UDM user.info kernel: [    7.557678] al_eth 0000:00:01.0 switch0: renamed from switch0.tmp
May  5 17:19:07 UDM user.info kernel: [    7.574150] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
May  5 17:19:07 UDM user.info kernel: [    7.579608] Configured MAC to RGMII mode
May  5 17:19:07 UDM user.info kernel: [    7.580820] al_eth 0000:00:01.0 switch0: using MSI-X per Queue interrupt mode
May  5 17:19:07 UDM user.info kernel: [    7.584118] IPv6: ADDRCONF(NETDEV_UP): switch0: link is not ready
May  5 17:19:07 UDM user.notice ubios-udm-init: Creating bridge interfaces ...
May  5 17:19:07 UDM user.info kernel: [    7.607902] br0: port 1(switch0) entered blocking state
May  5 17:19:07 UDM user.info kernel: [    7.607906] br0: port 1(switch0) entered disabled state
May  5 17:19:07 UDM user.info kernel: [    7.608003] device switch0 entered promiscuous mode
May  5 17:19:07 UDM user.info kernel: [    7.611257] IPv6: ADDRCONF(NETDEV_UP): br0: link is not ready
May  5 17:19:07 UDM user.notice ubios-udm-init: Creating macvlan interfaces ...
May  5 17:19:07 UDM user.notice ubios-udm-init: Creating svlan interfaces ...
May  5 17:19:07 UDM user.notice ubios-udm-init: Creating ethvlan interfaces ...
May  5 17:19:07 UDM user.notice ubios-udm-init: Setting MAC addresses for interfaces (excluding bridges) ..
May  5 17:19:07 UDM user.info kernel: [    7.734023] br0: port 1(switch0) entered disabled state
May  5 17:19:07 UDM user.info kernel: [    7.737201] al_eth 0000:00:01.0: al_mod_eth_function_reset: performing FLR
May  5 17:19:07 UDM user.info kernel: [    7.742647] Configured MAC to RGMII mode
May  5 17:19:07 UDM user.info kernel: [    7.743769] al_eth 0000:00:01.0 switch0: using MSI-X per Queue interrupt mode
May  5 17:19:07 UDM user.info kernel: [    7.747039] IPv6: ADDRCONF(NETDEV_UP): switch0: link is not ready
May  5 17:19:07 UDM user.info kernel: [    7.747678] eth [al_mod_eth_1]: set link speed to 1000Mbps. full duplex.
May  5 17:19:07 UDM user.info kernel: [    7.747687] al_eth 0000:00:01.0 switch0: Link is Up - 1Gbps/Full - flow control off
May  5 17:19:07 UDM user.notice ubios-udm-init: Using macOverride value as initial: eth4 80:22:a7:d4:0c:aa
May  5 17:19:07 UDM user.info kernel: [    7.770227] al_eth 0000:00:03.0: al_mod_eth_function_reset: performing FLR
May  5 17:19:07 UDM user.info kernel: [    7.775642] Configured MAC to RGMII mode
May  5 17:19:07 UDM user.info kernel: [    7.777101] al_eth 0000:00:03.0 eth4: using MSI-X per Queue interrupt mode
May  5 17:19:07 UDM user.info kernel: [    7.781088] eth [al_mod_eth_3]: set link speed to 1000Mbps. full duplex.
May  5 17:19:07 UDM user.info kernel: [    7.781098] al_eth 0000:00:03.0 eth4: Link is Up - 1Gbps/Full - flow control off
May  5 17:19:07 UDM user.notice ubios-udm-init: Setting mac for bridges ...
May  5 17:19:07 UDM user.notice ubios-udm-init: Apply interface's settings ..
May  5 17:19:08 UDM user.info kernel: [    8.572664] IPv6: ADDRCONF(NETDEV_CHANGE): switch0: link becomes ready
May  5 17:19:08 UDM user.info kernel: [    8.572714] br0: port 1(switch0) entered blocking state
May  5 17:19:08 UDM user.info kernel: [    8.572717] br0: port 1(switch0) entered forwarding state
May  5 17:19:08 UDM user.info kernel: [    8.572769] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
May  5 17:19:12 UDM user.err kernel: [   13.041183] Bluetooth: hci0: unexpected event for opcode 0x0000
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  system: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  resolv: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  syslog: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  netconsole: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  display: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  ledbar: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  rps: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  radio: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  wireless: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  mesh: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  wevent: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  ipset: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  ebtables: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  vlan: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  unifi_block: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  netconf: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  connectivity: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  aaa: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  sshd: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  mark: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  qos: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  cron: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  redirector: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  poe_passthrough: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  lldpd: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  watchdog: Running plugin
May  5 17:19:14 UDM daemon.err ubntconf: ERROR: watchdog: Plugin failed: -2
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  unifi: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  player: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  element_adopt: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  mtk_ble: Running plugin
May  5 17:19:14 UDM daemon.info ubntconf: INFO:  infrared: Running plugin
May  5 17:19:14 UDM user.warn kernel: [   14.891960] register rlt_drv
May  5 17:19:14 UDM user.warn kernel: [   14.947684] rt_pci_probe: pci_set_dma_mask okay!
May  5 17:19:14 UDM user.warn kernel: [   14.948329]
May  5 17:19:14 UDM user.warn kernel: [   14.948329]
May  5 17:19:14 UDM user.warn kernel: [   14.948329] === pAd = 00000000131e8435, size = 2299976 ===
May  5 17:19:14 UDM user.warn kernel: [   14.948329]
May  5 17:19:14 UDM user.warn kernel: [   14.948356] <-- RTMPAllocTxRxRingMemory, Status=0, ErrorValue=0x
May  5 17:19:14 UDM user.warn kernel: [   14.948710] <-- RTMPAllocAdapterBlock, Status=0
May  5 17:19:14 UDM user.warn kernel: [   14.948713] pAd->CSRBaseAddress =0xffffff800c800000, csr_addr=0xffffff800c800000!
May  5 17:19:14 UDM user.warn kernel: [   14.948717] device_id =0x7603
May  5 17:19:14 UDM user.warn kernel: [   14.948726] RtmpChipOpsHook(761): Not support for HIF_MT yet!
May  5 17:19:14 UDM user.warn kernel: [   14.948728] mt7603_init()-->
May  5 17:19:14 UDM user.warn kernel: [   14.948730] mt_bcn_buf_init(296): Not support for HIF_MT yet!
May  5 17:19:14 UDM user.warn kernel: [   14.948732] <--mt7603_init()
May  5 17:19:14 UDM user.info kernel: [   14.949722] wevent: registered
May  5 17:19:14 UDM user.warn kernel: [   14.949725] ra0: NO2G init ACL table
May  5 17:19:14 UDM user.warn kernel: [   14.949819] 80211> RFICType= 1, NumOfChan= 14
May  5 17:19:14 UDM user.warn kernel: [   14.949820] 80211> Number of rate = 12
May  5 17:19:14 UDM user.warn kernel: [   14.949823] 80211> CurTxPower = 0 dBm
May  5 17:19:14 UDM user.warn kernel: [   14.949916] 80211> CFG80211_Register with max interface 8
May  5 17:19:14 UDM user.alert kernel: [   14.949924] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000
May  5 17:19:14 UDM user.alert kernel: [   14.958772] Mem abort info:
May  5 17:19:14 UDM user.alert kernel: [   14.961597]   ESR = 0x96000045
May  5 17:19:14 UDM user.alert kernel: [   14.964685]   Exception class = DABT (current EL), IL = 32 bits
May  5 17:19:14 UDM user.alert kernel: [   14.970659]   SET = 0, FnV = 0
May  5 17:19:14 UDM user.alert kernel: [   14.973741]   EA = 0, S1PTW = 0
May  5 17:19:14 UDM user.alert kernel: [   14.976911] Data abort info:
May  5 17:19:14 UDM user.alert kernel: [   14.979845]   ISV = 0, ISS = 0x00000045
May  5 17:19:14 UDM user.alert kernel: [   14.983710]   CM = 0, WnR = 1
May  5 17:19:14 UDM user.alert kernel: [   14.986708] user pgtable: 4k pages, 39-bit VAs, pgdp = 00000000cc24b00e
May  5 17:19:14 UDM user.alert kernel: [   14.993376] [0000000000000000] pgd=0000000000000000, pud=0000000000000000

Not really sure how to properly debug this, let me know if there is anything I can do to help

Kernel Version (v1.12.22)

Will you support Kernel Version 1.12.x or is it required to build it myself or do I have to go back to 1.11.4?

Site Timouts/repeated restarting of igmpproxy

I'm a complete noob when it comes to linux and just followed your guide to the letter. However I have to use the troubleshooting fix:

# Re-create the VLAN and obtain IP
/mnt/data/on_boot.d/10-iptv.sh
# Restart IGMP Proxy
podman exec -it unifi-os systemctl restart igmpproxy

Multiple times per day, additionally (maybe unrelated, but it started around the time I got iptv working) sites on different devices start to time out/take forever to load. This is also fixed by restarted the igmpproxy so it could be related. Or I'm imaging things.

Any advice?

IGMPProxy needs to be reset

Hi,

Sometimes you need to restart the IGMP proxy because of the following issues:

May 12 23:04:50 ubnt igmpproxy[20554]: MRT_DROP_MEMBERSHIP failed; Errno(19): No such device
May 12 23:04:50 ubnt igmpproxy[20554]: MRT_ADD_MEMBERSHIP failed; Errno(19): No such device
May 12 23:04:58 ubnt igmpproxy[20554]: MRT_DROP_MEMBERSHIP failed; Errno(19): No such device
May 12 23:04:59 ubnt igmpproxy[20554]: MRT_ADD_MEMBERSHIP failed; Errno(19): No such device

Haven't upgraded the config with new IPTV name instead of the eth8.4 name.

Any thoughts?

Needs update for UDM 1.11.4

After updating to the 1.11.4 firmware, it's not possible to boot from a custom kernel that worked under 1.11.0. This is with udm-kernel-tools 1.1.2.

root@ubnt:/# udm-bootctl boot 4.19.152-edge3
Loading kernel 4.19.152-edge3...
Inserting kexec kernel modules...
Kernel version not supported (v1.11.4)
Make sure you have installed the latest version of udm-kernel-tools...

Unable to install dependencies

I am having trouble installing udm-kernel-tools on my UDM-Pro running version 1.12.33. Here are the steps I followed:

First, I tried to download the udm-kernel-tools package using the wget command. I attempted to install the package using apt. However, I faced an error due to unmet dependencies, with packages such as kexec-tools, busybox-static, kmod, and cpio.

I would appreciate any guidance or solutions to resolve this issue. i try to install it on my UDM-Pro with firmaware 1.12.33.

# unifi-os shell
root@ubnt:/# wget https://github.com/fabianishere/udm-kernel-tools/releases/download/v1.1.7/udm-kernel-tools_1.1.7_arm64.deb
--2023-08-06 21:03:22--  https://github.com/fabianishere/udm-kernel-tools/releases/download/v1.1.7/udm-kernel-tools_1.1.7_arm64.deb
Resolving github.com (github.com)... 140.82.121.3
Connecting to github.com (github.com)|140.82.121.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://objects.githubusercontent.com/github-production-release-asset-2e65be/340867405/2a980e46-63a7-4765-b046-85112f96b121?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20230806%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20230806T190322Z&X-Amz-Expires=300&X-Amz-Signature=9a22f6b8f71749f47dff06ec9331e74af88cf789f9eb44ee1c213c4aeea9a8ea&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=340867405&response-content-disposition=attachment%3B%20filename%3Dudm-kernel-tools_1.1.7_arm64.deb&response-content-type=application%2Foctet-stream [following]
--2023-08-06 21:03:22--  https://objects.githubusercontent.com/github-production-release-asset-2e65be/340867405/2a980e46-63a7-4765-b046-85112f96b121?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20230806%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20230806T190322Z&X-Amz-Expires=300&X-Amz-Signature=9a22f6b8f71749f47dff06ec9331e74af88cf789f9eb44ee1c213c4aeea9a8ea&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=340867405&response-content-disposition=attachment%3B%20filename%3Dudm-kernel-tools_1.1.7_arm64.deb&response-content-type=application%2Foctet-stream
Resolving objects.githubusercontent.com (objects.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ...
Connecting to objects.githubusercontent.com (objects.githubusercontent.com)|185.199.108.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 40844 (40K) [application/octet-stream]
Saving to: 'udm-kernel-tools_1.1.7_arm64.deb'

udm-kernel-tools_1.1.7_ 100%[==============================>]  39.89K  --.-KB/s    in 0.002s  

2023-08-06 21:03:22 (20.0 MB/s) - 'udm-kernel-tools_1.1.7_arm64.deb' saved [40844/40844]

root@ubnt:/# apt install ./udm-kernel-tools_1.1.7_arm64.deb
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'udm-kernel-tools' instead of './udm-kernel-tools_1.1.7_arm64.deb'
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 udm-kernel-tools : Depends: kexec-tools but it is not installable
                    Depends: busybox-static but it is not installable
                    Depends: kmod but it is not installable
                    Depends: cpio but it is not installable
E: Unable to correct problems, you have held broken packages.
root@ubnt:/# 

Still needed with FW version 3.2.12?

[Edit: just learned there is a newer version here: https://github.com/fabianishere/udm-iptv ]
Is this patch still necessary with FW 3.2.12? I have a UDM SE but i can't figure out how to get KPN IPTV to work. I could not find any configuration guide, and i am reluctant to test Fabians "patch" because it only supports FW versions upto 1.12.33. Also in newer Unifi network versions there is a setting: "Allow Internet Access" suggesting internet access is added to the isolated VLAN4, and thus enables playback, Netflix, and TV-guide... Any insights?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.