Meraki MR42

Under Construction!
This page is currently under construction. You can edit the article to help completing it.

Write a short, relevant description of the device. Include a technical overview, but avoid marketing buzzwords/useless stuff. Two to four sentences is about right. A picture is good, too. Edit the page to see how to add pictures.

FIXME Any text with a light background (like this one) provides instructions for creating the Details Page. When you have filled in correct/useful information (instead of any template that's there) remove the instructions, as well as the <WRAP> that encloses it.

Generic Router

FIXME

  1. This is an empty template that suggests the information that should be present on a well-constructed Device Page. This means, that you have to fill it with life and information.
  2. There are several “fixme” tags with text on a light background (like this text) throughout this template. As you fill in the page, remove those tags so that people can judge its completeness.
  3. When there are no more “fixme” tags left, delete this one too, along with the <WRAP> that encloses it.
  • Please include only model specific information, omit bla,bla and put everything generic into separate articles
  • If you have no time to write certain stuff, link to docs
  • base-system should lead the way, do not explain this again
  • DO NOT provide a complete howto here! Instead groom the general documentation.

If you can successfully complete step 1 then you can continue to install via this method without having to open the device. Otherwise please use the standard UART method. Please note that when booting via TFTP, some Ethernet devices, in particular those on laptops, will not connect in time, resulting in TFTP boot not succeeding. In this instance it is advised to connect via a switch.

  1. Hold down reset at power on and keep holding, after around 10 seconds if the orange LED changes behaviour to begin flashing, proceed to release reset, then press reset two times. Ensure that the LED has turned blue. Note that flashing will occur on some devices, but it will not be possible to change the LED colour using the reset button. In this case it will still be possible to continue with this install method.
  2. Set your IP to 192.168.1.250. Set up a TFTP server serving mr42_u-boot.mbn and openwrt-ipq806x-generic-meraki_mr42-initramfs-fit-uImage.itb obtained from [1].
  3. Use telnet and connect to 192.168.1.1. Run the following commands to install u-boot. Note that all these commands are critical, an error will likely render the device unusable.
    1. Option 3.1
      If you are sure you have set up the TFTP server correctly you can run this script on the device. This will download and flash the u-boot image immediately:
      /etc/update_uboot.sh 192.168.1.250 mr42_u-boot.mbn

      If this file does not exist, you'll have to proceed to the UART installation method, as your firmware doesn't have a writable uboot partition. Once completed successfully, power off the device and proceed to the next step.

    2. Option 3.2
      If you are unsure the TFTP server is correctly set up you can obtain the image and flash manually:
      1. 3.2.1.
        cd /tmp
        tftp-hpa 192.168.1.250 -m binary -c get mr42_u-boot.mbn
      2. 3.2.3. Confirm file has downloaded correctly by comparing the md5sum:
        md5sum mr42_u-boot.mbn
      3. 3.2.4. Execute the following commands to write the image:
        echo 1 > /sys/devices/platform/msm_nand/boot_layout
        mtd erase /dev/mtd1
        nandwrite -pam /dev/mtd1 mr42_u-boot.mbn
        echo 0 > /sys/devices/platform/msm_nand/boot_layout`


        Important: You must observe the output of the nandwrite command. Look for the following to verify writing is occurring:

        Writing data to block 0 at offset 0x0
        Writing data to block 1 at offset 0x20000
        Writing data to block 2 at offset 0x40000`


        If you do not see this then do not power off the device. Check your previous commands and that mr42_u-boot.mbn was downloaded correctly. Once you are sure the image has been written you can proceed to power off the device.

  4. Hold the reset button and power on the device. This will immediately begin downloading the appropriate initramfs image and boot into it.
    Note: If the device does not download the initramfs, this is likely due to the interface not being brought up in time. Changing Ethernet source to a router or switch will likely resolve this. You can also try manually setting the link speed to 10Mb/s Half-Duplex.
  5. Once a solid white LED is displayed on the device, continue to the UART installation method, step 6.
  1. Disassemble the device and connect a UART header. The header pinout is as follows:
           1 - 3.3v
           2 - TXD
           3 - RXD
           4 - GND


    :!: Important: You should only connect TXD, RXD and GND. Connecting 3.3v may damage the device.

  2. Set your IP to 192.168.1.250. Set up a TFTP server serving openwrt-ipq806x-generic-meraki_(mr42|mr52)-initramfs-fit-uImage.itb.. Separately obtain the respective sysupgrade image.
  3. Run the following commands, preferably from a Linux host. The mentioned files, including ubootwrite.py and u-boot images, can be obtained from [1] 1).
    python ubootwrite.py --write=(mr42|mr52)_u-boot.bin


    The default for --serial option is /dev/ttyUSB0.

  4. Power on the device. The ubootwrite script will upload the image to the device and launch it. The second stage u-boot will in turn load the initramfs image by TFTP, provided the TFTP server is running correctly. This process will take about 13 minutes. Once a solid white LED is displayed, the image has successfully finished loading. Note: If the image does not load via TFTP, try again with the Ethernet link to 10Mb/s Half-Duplex.
  5. (MR42 only) Do not connect over the network. Instead connect over the UART using minicom or similar tool. To replace u-boot with the network enabled version, please run the following commands. Note that in the provided initramfs images, the u-boot.mbn file is located in /root.
    If you have not used the provided initramfs, you must ensure you are using an image with “boot_layout” ECC configuration enabled in the Kernel. This will be version 5.10 or higher. If you do not do this correctly the device will be bricked.
    insmod mtd-rw i_want_a_brick=1
    mtd erase /dev/mtd8
    nandwrite -pam /dev/mtd8 /root/mr42_u-boot.mbn


    After running nandwrite, ensure you observe the following output:

    Writing data to block 0 at offset 0x0
    Writing data to block 1 at offset 0x20000
    Writing data to block 2 at offset 0x40000
  6. After writing the /dev/mtd8 data, Do not restart the router until you have successfully installed OpenWRT via the sysupgrade image. Rebooting from now on will brick the device.
  7. (Optional) If you have no further use for the Meraki OS, you can remove all other UBI volumes on ubi0 (mtd11), including diagnostic1, part.old, storage and part.safe. You must not remove the ubi1 ART partition (mtd12).
    for i in diagnostic1 part.old storage part.safe ; do
    ubirmvol /dev/ubi0 -N $i
    done
  8. Proceed to flash the sysupgrade image via luci, or else download or scp the image to /tmp and use the sysupgrade command.
dev: size erasesize name
mtd0: 00040000 00020000 “sbl1”
mtd1: 00140000 00020000 “mibib”
mtd2: 00140000 00020000 “sbl2”
mtd3: 00280000 00020000 “sbl3”
mtd4: 00120000 00020000 “ddrconfig”
mtd5: 00120000 00020000 “ssd”
mtd6: 00280000 00020000 “tz”
mtd7: 00280000 00020000 “rpm”
mtd8: 00180000 00020000 “u-boot”
mtd9: 00a80000 00020000 “bootkernel1”
mtd10: 00a80000 00020000 “bootkernel2”
mtd11: 046c0000 00020000 “ubi”
mtd12: 00200000 00020000 “art”

FIXME The instructions below are for Broadcom devices and only serve as an example.
Remove / modify them if they do not apply to this particular device!

This section deals with

  • How you install OpenWrt from a device freshly opened
  • The steps required such as reset to factory defaults if the device has already been configured

Note: Reset router to factory defaults if it has been previously configured.

  • Browse to http://192.168.1.1/Upgrade.asp
  • Upload .bin file to router
  • Wait for it to reboot
  • Telnet to 192.168.1.1 and set a root password, or browse to http://192.168.1.1 if LuCI is installed.

Specific values needed for tftp

FIXME Enter values for “FILL-IN” below

Bootloader tftp server IPv4 address FILL-IN
Bootloader MAC address (special) FILL-IN
Firmware tftp image Latest OpenWrt release (NOTE: Name must contain “tftp”)
TFTP transfer window FILL-IN seconds
TFTP window start approximately FILL-IN seconds after power on
TFTP client required IP address FILL-IN

generic.sysupgrade

FIXME These are generic instructions. Update with your router's specifics.

  • Browse to http://192.168.1.1/cgi-bin/luci/mini/system/upgrade/ LuCI Upgrade URL
  • Upload image file for sysupgrade to LuCI
  • Wait for reboot

If you don't have a GUI (LuCI) available, you can alternatively upgrade via the command line. There are two command line methods for upgrading:

  • sysupgrade
  • mtd

Note: It is important that you put the firmware image into the ramdisk (/tmp) before you start flashing.

sysupgrade

  • Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp
wget http://downloads.openwrt.org/snapshots/trunk/XXX/xxx.abc
sysupgrade /tmp/xxx.abc

mtd

If sysupgrade does not support this router, use mtd.

  • Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp
wget http://downloads.openwrt.org/snapshots/trunk/XXX/xxx.abc
mtd write /tmp/xxx.abc linux && reboot

Basic configuration After flashing, proceed with this.
Set up your Internet connection, configure wireless, configure USB port, etc.

FIXME Please fill in real values for this device, then remove the EXAMPLEs

The default network configuration is:

Interface Name Description Default configuration
br-lan EXAMPLE LAN & WiFi EXAMPLE 192.168.1.1/24
vlan0 (eth0.0) EXAMPLE LAN ports (1 to 4) EXAMPLE None
vlan1 (eth0.1) EXAMPLE WAN port EXAMPLE DHCP
wl0 EXAMPLE WiFi EXAMPLE Disabled

FIXME Please fill in real values for this device, then remove the EXAMPLEs

Numbers 0-3 are Ports 1-4 as labeled on the unit, number 4 is the Internet (WAN) on the unit, 5 is the internal connection to the router itself. Don't be fooled: Port 1 on the unit is number 3 when configuring VLANs. vlan0 = eth0.0, vlan1 = eth0.1 and so on.

Port Switch port
Internet (WAN) EXAMPLE 4
LAN 1 EXAMPLE 3
LAN 2 EXAMPLE 2
LAN 3 EXAMPLE 1
LAN 4 EXAMPLE 0

hardware.button on howto use and configure the hardware button(s). Here, we merely name the buttons, so we can use them in the above Howto.

FIXME Please fill in real values for this device, then remove the EXAMPLEs

The Meraki MR42 has the following buttons:

BUTTON Event
EXAMPLE Reset reset
EXAMPLE Secure Easy Setup ses
EXAMPLE No buttons at all. -

See also Mounting

Front:
Insert photo of front of the casing

Back:

Backside label:
Insert photo of backside label

Back Cover Screws:

Back Cover Removed:

Shielding Shell Screws:

Antennas:

Internal PCB Top:

UART Ports (L→R - GND, RX, TX, VCC):

Note: This will void your warranty!

  • To remove the cover and open the device, the rubber feet on the rear of the case must be removed.
  • Once removed; the feet expose 4 Phillips head screws that need to be removed. These are long, and go through the entire case to inserts in the front half.
  • Once the 4 screws are removed, the case will need to be pried gently open. The easiest way to do this is to use a small flathead screwdriver and start at the mounting bracket clip point. (See photo)
  • Repeat the gentle prying to pop the back of the case off. This will expose the inner clamshell - it can be fully removed now.
  • The clamshell is secured with Phillips head screws on all 4 edges.
  • Once removed; the clamshell will open like a book with the spine being the side where the antenna wires wrap through.
  • The PCB is now exposed for the purposes of UART access.

Case Prying:

port.serial general information about the serial port, serial port cable, etc.

How to connect to the Serial Port of this specific device:
Insert photo of PCB with markings for serial port

  • Pin 1 - (has a small triangle symbol under it). Do not use.
  • Pin 2 - RX
  • Pin 3 - TX
  • Pin 4 - GND
Serial connection parameters
for Meraki MR42
115200, 8N1
  • Logic voltage level is 3.3V

port.jtag general information about the JTAG port, JTAG cable, etc.

How to connect to the JTAG Port of this specific device:
Insert photo of PCB with markings for JTAG port

U-Boot 2012.07-gb6f2d34-dirty [local,local] (Mar 29 2016 - 08:32:34) DRAM: 235 MiB cdp: machid 4971 NAND: 128 MiB Using default environment In: serial Out: serial Err: serial late_init: machid 4971 Net: No ethernet found. NAND read: device 0 offset 0x2c40000, size 0xa80000 bitflip found and corrected. (count: 1) 11010048 bytes read: OK bootm 0x42000000#config@1## Booting kernel from FIT Image at 42000000 ... Using 'config@1' configuration Trying 'kernel@1' kernel subimage Description: Boot Kernel Type: Kernel Image Compression: uncompressed Data Start: 0x420000f8 Data Size: 1557336 Bytes = 1.5 MiB Architecture: ARM OS: Linux Load Address: 0x41508000 Entry Point: 0x41508000 Hash algo: sha1 Hash value: f75f60336909a51c1a5c81b9e94a535c4c7373bb Verifying Hash Integrity ... sha1+ OK ## Loading init Ramdisk from FIT Image at 42000000 ... Using 'config@1' configuration Trying 'ramdisk@1' ramdisk subimage Description: Cryptid Ramdisk Type: RAMDisk Image Compression: lzma compressed Data Start: 0x4217c53c Data Size: 405740 Bytes = 396.2 KiB Architecture: ARM Hash algo: sha1 Hash value: 9ef6f9d54402eef6582ca573a693c77f72ff3c05 Verifying Hash Integrity ... sha1+ OK ## Flattened Device Tree from FIT Image at 42000000 Using 'config@1' configuration Trying 'fdt@1' FDT blob subimage Description: MR42 Device Tree Type: Flat Device Tree Compression: uncompressed Data Start: 0x421df714 Data Size: 5233 Bytes = 5.1 KiB Architecture: ARM Hash algo: sha1 Hash value: 2bda5d735cb5a9ba8641619c51013be9539ee9b2 Verifying Hash Integrity ... sha1+ OK Loading FDT from 0x421df714 to 0x41501000 Booting using the fdt blob at 0x41501000 Loading Kernel Image ... OK OK Loading Ramdisk to 4ea9c000, end 4eaff0ec ... OK Loading Device Tree to 4ea97000, end 4ea9b470 ... OK Using machid 0x136b from environment Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0 [ 0.000000] Linux version 3.4.113 (aacharya@sf100.meraki.com) (gcc version 4.8.3 (GCC) ) #4 SMP Tue Sep 4 11:24:13 PDT 2018 [ 0.000000] CPU: ARMv7 Processor [512f04d0] revision 0 (ARMv7), cr=10c5387d [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000] Machine: Qualcomm Atheros AP160 reference board, model: Meraki MR42 (Yowie) [ 0.000000] msm_reserve_memory: 0x44600000, 0x200000 [ 0.000000] memory pool 3 (start 5fe00000 size 100000) initialized [ 0.000000] Memory policy: ECC disabled, Data cache writealloc [ 0.000000] smem_find(137, 80): wrong size 72 [ 0.000000] socinfo_init: v6, id=204, ver=2.0, raw_id=2313, raw_ver=2313, hw_plat=0, hw_plat_ver=65536 [ 0.000000] accessory_chip=0 hw_plat_subtype=0 [ 0.000000] PERCPU: Embedded 8 pages/cpu @c0b15000 s10240 r8192 d14336 u32768 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 123692 [ 0.000000] Kernel command line: ubi.mtd=ubi ubi.mtd=art root=/dev/ram rw console=ttyHSL1,115200n8 maxcpus=0 qcom-wdt.clear_reason=0 loader=u-boot part=bootkernel2 [ 0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes) [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.000000] Memory: 49MB 438MB = 487MB total [ 0.000000] Memory: 486424k/489496k available, 12264k reserved, 0K highmem [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB) [ 0.000000] vmalloc : 0xdf000000 - 0xff000000 ( 512 MB) [ 0.000000] lowmem : 0xc0000000 - 0xdea00000 ( 490 MB) [ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB) [ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB) [ 0.000000] .text : 0xc0008000 - 0xc04d3000 (4908 kB) [ 0.000000] .init : 0xc0500000 - 0xc0602800 (1034 kB) [ 0.000000] .data : 0xc0604000 - 0xc06710e0 ( 437 kB) [ 0.000000] .bss : 0xc0671104 - 0xc070f84c ( 634 kB) [ 0.000000] SLUB: Genslabs=11, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] Hierarchical RCU implementation. [ 0.000000] NR_IRQS:921 [ 0.000000] sched_clock: 32 bits at 32kHz, resolution 31240ns, wraps every 134175798ms [ 0.000000] Console: colour dummy device 80x30 [ 0.150421] Calibrating delay using timer specific routine.. 12.55 BogoMIPS (lpj=62792) [ 0.150452] pid_max: default: 32768 minimum: 301 [ 0.150796] Mount-cache hash table entries: 512 [ 0.153420] CPU: Testing write buffer coherency: ok [ 0.153608] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.153608] hw perfevents: enabled with ARMv7 Krait PMU driver, 5 counters available [ 0.153701] Setting up static identity map for 0x418089f8 - 0x41808a80 [ 0.154326] Brought up 1 CPUs [ 0.154326] SMP: Total of 1 processors activated (12.55 BogoMIPS). [ 0.155263] devtmpfs: initialized [ 0.168978] dummy: [ 0.169447] NET: Registered protocol family 16 [ 0.170103] AXI: msm_bus_fabric_init_driver(): msm_bus_fabric_init_driver [ 0.172289] meminfo_init: smem ram ptable found: ver: 0 len: 5 [ 0.172289] Found 1 memory banks grouped into 8 memory regions [ 0.172539] smem_find(137, 80): wrong size 72 [ 0.172571] socinfo_init: v6, id=204, ver=2.0, raw_id=2313, raw_ver=2313, hw_plat=0, hw_plat_ver=65536 [ 0.172571] accessory_chip=0 hw_plat_subtype=0 [ 0.172602] msm_rpm_init: RPM firmware 3.0.16777342 [ 0.179037] clk_tbl_nss - loaded [ 0.205841] gpiochip_add: registered GPIOs 0 to 151 on device: msmgpio [ 0.207403] No ATAGs? [ 0.207403] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. [ 0.207435] hw-breakpoint: maximum watchpoint size is 8 bytes. [ 0.207778] msm_dmov_memcpy_init: Success [ 0.214089] sps:BAM 0x12244000 enabled: ver:0x5, number of pipes:20 [ 0.214120] sps:BAM 0x12244000 is registered. [ 0.214339] sps:sps is ready. [ 0.231115] bio: create slab <bio-0> at 0 [ 0.234239] i2c-gpio 1.i2c: using pins 24 (SDA) and 25 (SCL) [ 0.234926] i2c-gpio 2.i2c: using pins 29 (SDA) and 30 (SCL) [ 0.236332] Switching to clocksource gp_timer [ 0.258419] NET: Registered protocol family 2 [ 0.266541] IP route cache hash table entries: 4096 (order: 2, 16384 bytes) [ 0.266916] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ 0.267104] TCP bind hash table entries: 16384 (order: 5, 131072 bytes) [ 0.267291] TCP: Hash tables configured (established 16384 bind 16384) [ 0.267291] TCP: reno registered [ 0.267322] UDP hash table entries: 256 (order: 1, 8192 bytes) [ 0.267353] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) [ 0.267635] NET: Registered protocol family 1 [ 0.267885] Unpacking initramfs... [ 0.506872] Freeing initrd memory: 396K [ 0.514651] Detected 5 counters on the L2CC PMU. [ 0.522555] smd: register irq failed on wcnss_a11 [ 0.522555] smd: deregistering IRQs [ 0.522617] SMD: smd_core_platform_init() failed [ 0.524742] smem_find(427, 88): wrong size 24 [ 0.524773] smem_find(427, 96): wrong size 24 [ 0.524773] get_bootconfig_partition: no dual boot v2 info in shared memory [ 0.687660] acpuclk-ipq806x acpuclk-ipq806x: SPEED BIN: 0 [ 0.687660] acpuclk-ipq806x acpuclk-ipq806x: ACPU PVS: 1 [ 0.691783] acpuclk-ipq806x acpuclk-ipq806x: CPU0: 6 frequencies supported [ 0.691783] acpuclk-ipq806x acpuclk-ipq806x: CPU1: 6 frequencies supported [ 0.702811] msm_rpm_log_probe: OK [ 0.895626] msgmni has been set to 950 [ 0.904935] NET: Registered protocol family 38 [ 0.904998] io scheduler noop registered [ 0.904998] io scheduler deadline registered (default) [ 0.905560] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 0.921587] msm_serial_hs module loaded [ 0.921774] msm_serial_hsl: detected port #1 [ 0.921930] msm_serial_hsl.1: ttyHSL1 at MMIO 0x16340000 (irq = 184) is a MSM [ 0.922336] msm_serial_hsl: console setup on port #1 [ 1.470134] console [ttyHSL1] enabled [ 1.478819] msm_serial_hsl: detected port #0 [ 1.482161] msm_serial_hsl.0: ttyHSL0 at MMIO 0x12450000 (irq = 225) is a MSM [ 1.494470] msm_serial_hsl: driver initialized [ 1.498094] at24 1-0056: 8192 byte 24c64 EEPROM, writable, 32 bytes/write [ 1.521805] msm_nand_probe: phys addr 0x1ac00000 [ 1.525460] msm_nand_probe: dmac 0x3 [ 1.529115] msm_nand_probe: allocated dma buffer at ffdfe000, dma_addr 5f9bc000 [ 1.542049] status: 20 [ 1.543392] nandid: 1580a101 maker 01 device a1 [ 1.547953] ONFI probe : Found an ONFI compliant device S34MS01G2 [ 1.555107] Found a supported NAND device [ 1.559044] NAND Controller ID : 0x4030 [ 1.562824] NAND Device ID : 0x1580a101 [ 1.566854] Buswidth : 8 Bits [ 1.569696] Density : 128 MByte [ 1.572883] Pagesize : 2048 Bytes [ 1.576194] Erasesize: 131072 Bytes [ 1.579693] Oobsize : 64 Bytes [ 1.582786] CFG0 Init : 0xa8d408c0 [ 1.586254] CFG1 Init : 0x0004745c [ 1.589753] ECCBUFCFG : 0x00000203 [ 1.593345] 15 ofpart partitions found on MTD device msm_nand [ 1.598969] Creating 15 MTD partitions on "msm_nand": [ 1.603998] 0x000000040000-0x000000180000 : "mibib" [ 1.619743] 0x000000000000-0x000000040000 : "sbl1" [ 1.638175] 0x000000180000-0x0000002c0000 : "sbl2" [ 1.657013] 0x0000002c0000-0x000000540000 : "sbl3" [ 1.676601] 0x000000540000-0x000000660000 : "ddrconfig" [ 1.695657] 0x000000660000-0x000000780000 : "ssd" [ 1.714308] 0x000000780000-0x000000a00000 : "tz" [ 1.733676] 0x000000a00000-0x000000c80000 : "rpm" [ 1.753358] 0x000001fc0000-0x000002140000 : "u-boot" [ 1.772602] 0x0000021c0000-0x000002c40000 : "bootkernel1" [ 1.801374] 0x000002c40000-0x0000036c0000 : "bootkernel2" [ 1.830021] 0x0000036c0000-0x000007d80000 : "ubi" [ 1.921055] 0x000007d80000-0x000007f80000 : "art" [ 1.940331] 0x000007f80000-0x000007fc0000 : "panic" [ 1.958700] 0x000000000000-0x000008000000 : "all" [ 2.124461] UBI: attaching mtd11 to ubi0 [ 2.127397] UBI: physical eraseblock size: 131072 bytes (128 KiB) [ 2.133583] UBI: logical eraseblock size: 126976 bytes [ 2.139050] UBI: smallest flash I/O unit: 2048 [ 2.143642] UBI: VID header offset: 2048 (aligned 2048) [ 2.149703] UBI: data offset: 4096 [ 2.592314] UBI: max. sequence number: 896822 [ 2.619868] UBI: attached mtd11 to ubi0 [ 2.622680] UBI: MTD device name: "ubi" [ 2.627522] UBI: MTD device size: 70 MiB [ 2.632302] UBI: number of good PEBs: 566 [ 2.636957] UBI: number of bad PEBs: 0 [ 2.641330] UBI: number of corrupted PEBs: 0 [ 2.645766] UBI: max. allowed volumes: 128 [ 2.650421] UBI: wear-leveling threshold: 4096 [ 2.655045] UBI: number of internal volumes: 1 [ 2.659512] UBI: number of user volumes: 4 [ 2.663917] UBI: available PEBs: 220 [ 2.668541] UBI: total number of reserved PEBs: 346 [ 2.673383] UBI: number of PEBs reserved for bad PEB handling: 5 [ 2.679381] UBI: max/mean erase counter: 3147/1570 [ 2.684129] UBI: image sequence number: 1331549393 [ 2.689097] UBI: background thread "ubi_bgt0d" started, PID 790 [ 2.696657] UBI: attaching mtd12 to ubi1 [ 2.699531] UBI: physical eraseblock size: 131072 bytes (128 KiB) [ 2.705779] UBI: logical eraseblock size: 126976 bytes [ 2.711246] UBI: smallest flash I/O unit: 2048 [ 2.715870] UBI: VID header offset: 2048 (aligned 2048) [ 2.721868] UBI: data offset: 4096 [ 2.739175] UBI: max. sequence number: 3 [ 2.755076] UBI: attached mtd12 to ubi1 [ 2.757919] UBI: MTD device name: "art" [ 2.762636] UBI: MTD device size: 2 MiB [ 2.767447] UBI: number of good PEBs: 16 [ 2.771946] UBI: number of bad PEBs: 0 [ 2.776382] UBI: number of corrupted PEBs: 0 [ 2.780787] UBI: max. allowed volumes: 128 [ 2.785379] UBI: wear-leveling threshold: 4096 [ 2.790096] UBI: number of internal volumes: 1 [ 2.794501] UBI: number of user volumes: 1 [ 2.798969] UBI: available PEBs: 0 [ 2.803373] UBI: total number of reserved PEBs: 16 [ 2.808153] UBI: number of PEBs reserved for bad PEB handling: 2 [ 2.814120] UBI: max/mean erase counter: 2/1 [ 2.818400] UBI: image sequence number: 174698806 [ 2.823242] UBI: background thread "ubi_bgt1d" started, PID 795 [ 2.898000] bonding: Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) [ 3.014651] i2c /dev entries driver [ 3.027553] restart_reason wdt:0 r:1097929337 [ 3.037769] cpuidle: using governor ladder [ 3.040830] cpuidle: using governor menu [ 3.064073] meraki-config board-data.6: Meraki config device loaded [ 3.074226] TCP: bic registered [ 3.076382] TCP: cubic registered [ 3.079631] TCP: westwood registered [ 3.083192] TCP: htcp registered [ 3.086441] NET: Registered protocol family 17 [ 3.090846] 8021q: 802.1Q VLAN Support v1.8 [ 3.095095] VFP support v0.3: implementor 51 architecture 64 part 4d variant 2 rev 0 [ 3.102749] Registering SWP/SWPB emulation handler [ 3.107528] clock_late_init: Removing enables held for handed-off clocks [ 3.124617] ipq_nss_get_mac_addr: MAC[0]: ff:ff:ff:ff:ff:ff [ 3.130490] ipq_nss_get_mac_addr: MAC[1]: ff:ff:ff:ff:ff:ff [ 3.135801] ipq_nss_get_mac_addr: MAC[2]: ff:ff:ff:ff:ff:ff [ 3.140862] ipq_nss_get_mac_addr: MAC[3]: ff:ff:ff:ff:ff:ff [ 3.146298] no pmic restart interrupt specified [ 3.156732] devtmpfs�[ 3.159325] Freeing init memory: 1032K mount: mounting none on /dev failed: Device or resource busy [ 3.315307] UBIFS: recovery needed [ 3.469978] UBIFS: recovery completed [ 3.472602] UBIFS: mounted UBI device 0, volume 3, name "storage" [ 3.478694] UBIFS: file system size: 7364608 bytes (7192 KiB, 7 MiB, 58 LEBs) [ 3.485973] UBIFS: journal size: 1015809 bytes (992 KiB, 0 MiB, 6 LEBs) [ 3.493095] UBIFS: media format: w4/r0 (latest is w4/r0) [ 3.498906] UBIFS: default compressor: lzo [ 3.502999] UBIFS: reserved for root: 347848 bytes (339 KiB) Bootkernel Meraki Build is 25-201809040933-G8fbce340-aacharya-ring Board is MR42 Booting part.safe [ 6.520118] Starting new kernel [ 6.522243] Bye! Uncompressing Linux... done, booting the kernel. [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 3.14.79 (jenkins@dal247.meraki.com) (gcc version 5.4.0 (GCC) ) #2 SMP PREEMPT Wed Apr 22 18:15:17 PDT 2020 [ 0.000000] CPU: ARMv7 Processor [512f04d0] revision 0 (ARMv7), cr=10c5387d [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000] Ignoring memory below PHYS_OFFSET: 0x41500000-0x42000000 [ 0.000000] Machine model: Meraki MR42 [ 0.000000] bootconsole [earlycon0] enabled [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] PERCPU: Embedded 7 pages/cpu @ddb1d000 s7424 r8192 d13056 u32768 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 120130 [ 0.000000] Kernel command line: loader=bootsh console=ttyMSM1,115200n8 earlyprintk ubi.mtd=ubi ubi.mtd=art clk_ignore_unused [ 0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes) [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.000000] Memory: 465536K/484352K available (3513K kernel code, 325K rwdata, 1240K rodata, 155K init, 262K bss, 18816K reserved, 0K highmem) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB) [ 0.000000] vmalloc : 0xde000000 - 0xff000000 ( 528 MB) [ 0.000000] lowmem : 0xc0000000 - 0xddf00000 ( 479 MB) [ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB) [ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB) [ 0.000000] .text : 0xc0208000 - 0xc06ac87c (4755 kB) [ 0.000000] .init : 0xc06ad000 - 0xc06d3d00 ( 156 kB) [ 0.000000] .data : 0xc06d4000 - 0xc07257c0 ( 326 kB) [ 0.000000] .bss : 0xc07257cc - 0xc07672c8 ( 263 kB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2. [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] NR_IRQS:16 nr_irqs:16 16 [ 0.000005] sched_clock: 32 bits at 6MHz, resolution 160ns, wraps every 687194767200ns [ 0.007130] Calibrating delay loop... 1436.87 BogoMIPS (lpj=7184384) [ 0.050351] pid_max: default: 32768 minimum: 301 [ 0.055150] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.061792] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.071708] CPU: Testing write buffer coherency: ok [ 0.075754] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.081391] Setting up static identity map for 0x42559530 - 0x42559588 [ 0.171718] CPU1: Booted secondary processor [ 0.232724] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 [ 0.232833] Brought up 2 CPUs [ 0.244985] SMP: Total of 2 processors activated (1985.74 BogoMIPS). [ 0.251334] CPU: All CPU(s) started in SVC mode. [ 0.256608] devtmpfs: initialized [ 0.265030] VFP support v0.3: implementor 51 architecture 0 part 4d variant 2 rev 0 [ 0.272086] pinctrl core: initialized pinctrl subsystem [ 0.277612] regulator-dummy: no parameters [ 0.282381] NET: Registered protocol family 16 [ 0.286800] DMA: preallocated 2048 KiB pool for atomic coherent allocations [ 0.294385] cpuidle: using governor ladder [ 0.297522] cpuidle: using governor menu [ 0.315113] scm_call failed with error code -4 [ 0.318600] read_version: Error in QFPROM read (-95, 0) [ 0.323892] Version Read Failed with error -95 [ 0.330819] Error: Driver 'msm8x74-pinctrl' is already registered, aborting... [ 0.337940] qcom_rpm 108000.rpm: RPM firmware 1.0.126 [ 0.355604] bio: create slab <bio-0> at 0 [ 0.476698] qcom_pcie 1b500000.pci: link initialized 0 [ 0.481125] qcom_pcie 1b500000.pci: PCI host bridge to bus 0000:00 [ 0.487195] pci_bus 0000:00: root bus resource [mem 0x08000000-0x0fdfffff] [ 0.494074] pci_bus 0000:00: root bus resource [io 0xfe00000-0xfefffff] [ 0.500906] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] [ 0.509445] PCI: bus0: Fast back to back transfers disabled [ 0.514532] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 0.523582] PCI: bus1: Fast back to back transfers disabled [ 0.528373] pci 0000:00:00.0: BAR 8: assigned [mem 0x08000000-0x081fffff] [ 0.535056] pci 0000:01:00.0: BAR 0: assigned [mem 0x08000000-0x081fffff 64bit] [ 0.542524] pci 0000:00:00.0: PCI bridge to [bus 01] [ 0.547479] pci 0000:00:00.0: bridge window [mem 0x08000000-0x081fffff] [ 0.678476] qcom_pcie 1b700000.pci: link initialized 0 [ 0.682884] qcom_pcie 1b700000.pci: PCI host bridge to bus 0001:00 [ 0.688969] pci_bus 0001:00: root bus resource [mem 0x2e000000-0x31dfffff] [ 0.695851] pci_bus 0001:00: root bus resource [io 0x31e00000-0x31efffff] [ 0.702870] pci_bus 0001:00: No busn resource found for root bus, will use [bus 00-ff] [ 0.711325] PCI: bus0: Fast back to back transfers disabled [ 0.716494] pci 0001:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 0.725427] PCI: bus1: Fast back to back transfers disabled [ 0.730307] pci 0001:00:00.0: BAR 8: assigned [mem 0x2e000000-0x2e1fffff] [ 0.737000] pci 0001:01:00.0: BAR 0: assigned [mem 0x2e000000-0x2e1fffff 64bit] [ 0.744481] pci 0001:00:00.0: PCI bridge to [bus 01] [ 0.749420] pci 0001:00:00.0: bridge window [mem 0x2e000000-0x2e1fffff] [ 0.880412] qcom_pcie 1b900000.pci: link initialized 0 [ 0.884810] qcom_pcie 1b900000.pci: PCI host bridge to bus 0002:00 [ 0.890904] pci_bus 0002:00: root bus resource [mem 0x32000000-0x35dfffff] [ 0.897787] pci_bus 0002:00: root bus resource [io 0x35e00000-0x35efffff] [ 0.904806] pci_bus 0002:00: No busn resource found for root bus, will use [bus 00-ff] [ 0.913266] PCI: bus0: Fast back to back transfers disabled [ 0.918430] pci 0002:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 0.927458] PCI: bus1: Fast back to back transfers disabled [ 0.932264] pci 0002:00:00.0: BAR 8: assigned [mem 0x32000000-0x321fffff] [ 0.938934] pci 0002:00:00.0: BAR 9: assigned [mem 0x32200000-0x322fffff pref] [ 0.946297] pci 0002:01:00.0: BAR 0: assigned [mem 0x32000000-0x321fffff 64bit] [ 0.953637] pci 0002:01:00.0: BAR 6: assigned [mem 0x32200000-0x3220ffff pref] [ 0.960943] pci 0002:00:00.0: PCI bridge to [bus 01] [ 0.965939] pci 0002:00:00.0: bridge window [mem 0x32000000-0x321fffff] [ 0.972855] pci 0002:00:00.0: bridge window [mem 0x32200000-0x322fffff pref] [ 0.980556] SDCC Power: 3300 mV [ 0.984322] smb208-s1a: 1050 <--> 1150 mV [ 0.987820] smb208-s1b: 1050 <--> 1150 mV [ 0.991989] smb208-s2a: 800 <--> 1250 mV [ 0.996108] smb208-s2b: 800 <--> 1250 mV [ 1.002014] i2c-gpio i2c.10: using pins 24 (SDA) and 25 (SCL) [ 1.007419] i2c-gpio i2c.11: using pins 29 (SDA) and 30 (SCL) [ 1.013141] msm_bus_fabric_init_driver [ 1.017670] Bluetooth: Core ver 2.18 [ 1.020405] NET: Registered protocol family 31 [ 1.024800] Bluetooth: HCI device and connection manager initialized [ 1.031305] Bluetooth: HCI socket layer initialized [ 1.036177] Bluetooth: L2CAP socket layer initialized [ 1.041316] Bluetooth: SCO socket layer initialized [ 1.046603] Switched to clocksource dg_timer [ 1.053509] NET: Registered protocol family 2 [ 1.057580] TCP established hash table entries: 4096 (order: 2, 16384 bytes) [ 1.064040] TCP bind hash table entries: 4096 (order: 3, 32768 bytes) [ 1.070631] TCP: Hash tables configured (established 4096 bind 4096) [ 1.077051] TCP: reno registered [ 1.080261] UDP hash table entries: 256 (order: 1, 8192 bytes) [ 1.086167] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) [ 1.092691] NET: Registered protocol family 1 [ 1.113764] Unpacking initramfs... [ 8.184216] Freeing initrd memory: 8912K (c2c08000 - c34bc000) [ 8.189588] msm_rpm_log_probe: OK [ 8.205084] futex hash table entries: 512 (order: 3, 32768 bytes) [ 8.282907] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 8.287900] msgmni has been set to 926 [ 8.295275] io scheduler noop registered [ 8.298557] io scheduler deadline registered (default) [ 8.328364] gsbi 12440000.gsbi: GSBI port protocol: 4 crci: 0 [ 8.337147] gsbi 16300000.gsbi: GSBI port protocol: 6 crci: 0 [ 8.356230] msm_serial_hsl_probe: detected port #0 (ttyMSM0) [ 8.361236] 12450000.serial: ttyMSM0 at MMIO 0x12450000 (irq = 225, base_baud = 115200) is a MSM [ 8.370703] msm_serial_hsl_probe: detected port #1 (ttyMSM1) [ 8.375698] 16340000.serial: ttyMSM1 at MMIO 0x16340000 (irq = 184, base_baud = 115200) is�[ 8.384705] msm_hsl_console_setup: console setup on port #1 [ 8.389427] console [ttyMSM1] enabled [ 8.389427] console [ttyMSM1] enabled [ 8.396708] bootconsole [earlycon0] disabled [ 8.396708] bootconsole [earlycon0] disabled [ 8.406392] msm_serial_hsl_init: driver initialized [ 8.410315] Trying to register dev faulty etc [ 8.417355] at24 0-0056: 8192 byte 24c64 EEPROM, writable, 32 bytes/write [ 8.436583] msm_nand_probe: dmac 0x3 [ 8.439206] msm_nand_probe: allocated dma buffer at de269000, dma_addr 5f5e8000 [ 8.449532] status: c00020 [ 8.451211] nandid: 1580a101 maker 01 device a1 [ 8.455726] ONFI probe : Found an ONFI compliant device S34MS01G2 [ 8.462995] Found a supported NAND device [ 8.466917] NAND Controller ID : 0x4030 [ 8.470650] NAND Device ID : 0x1580a101 [ 8.474556] Buswidth : 8 Bits [ 8.477651] Density : 128 MByte [ 8.480720] Pagesize : 2048 Bytes [ 8.484018] Erasesize: 131072 Bytes [ 8.487569] Oobsize : 64 Bytes [ 8.490616] CFG0 Init : 0xa8d408c0 [ 8.494088] CFG1 Init : 0x0004745c [ 8.497653] ECCBUFCFG : 0x00000203 [ 8.501211] 14 ofpart partitions found on MTD device 1ac00000.nand [ 8.507286] Creating 14 MTD partitions on "1ac00000.nand": [ 8.512671] 0x000000040000-0x000000180000 : "mibib" [ 8.525620] 0x000000000000-0x000000040000 : "sbl1" [ 8.541360] 0x000000180000-0x0000002c0000 : "sbl2" [ 8.565406] 0x0000002c0000-0x000000540000 : "sbl3" [ 8.586185] 0x000000540000-0x000000660000 : "ddrconfig" [ 8.606856] 0x000000660000-0x000000780000 : "ssd" [ 8.622940] 0x000000780000-0x000000a00000 : "tz" [ 8.643522] 0x000000a00000-0x000000c80000 : "rpm" [ 8.662368] 0x000001fc0000-0x000002140000 : "u-boot" [ 8.688263] 0x0000021c0000-0x000002c40000 : "bootkernel1" [ 8.718828] 0x000002c40000-0x0000036c0000 : "bootkernel2" [ 8.746261] 0x0000036c0000-0x000007d80000 : "ubi" [ 8.825502] 0x000007d80000-0x000007f80000 : "art" [ 8.848473] 0x000000000000-0x000008000000 : "all" [ 9.031270] bonding: Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) [ 9.100978] input: gpio_keys.7 as /devices/soc.3/gpio_keys.7/input/input0 [ 9.109757] i2c /dev entries driver [ 9.117816] Driver for 1-wire Dallas network protocol. [ 9.132932] ina2xx 0-0040: power monitor ina219 (Rshunt = 40000 uOhm) [ 9.141031] qcom_wdt 208a038.watchdog: boot reason:0 [ 9.148239] Bluetooth: HCI UART driver ver 2.2 [ 9.151643] Bluetooth: HCI H4 protocol initialized [ 9.164881] SPEED BIN: 0 [ 9.166375] ACPU PVS: 1 [ 9.169002] cpu cpu0: dev_pm_opp_get_opp_count: device OPP not found (-19) [ 9.175782] platform cpufreq-krait.0: Driver cpufreq-krait requests probe deferral [ 9.206409] L2 @ 1200000 KHz [ 9.208546] CPU0 @ 1400000 KHz [ 9.211287] CPU1 @ QSB rate. Forcing new rate. [ 9.215754] CPU1 @ 384000 KHz [ 9.221614] meraki-config board-data.13: Meraki config device loaded [ 9.229863] TCP: cubic registered [ 9.239547] NET: Registered protocol family 10 [ 9.244717] NET: Registered protocol family 17 [ 9.248501] Registering SWP/SWPB emulation handler [ 9.259525] regulator-dummy: disabling [ 9.262520] SPEED BIN: 0 [ 9.264758] ACPU PVS: 1 [ 9.271102] UBI: attaching mtd11 to ubi0 [ 9.841178] UBI: scanning is finished [ 9.869311] UBI: attached mtd11 (name "ubi", size 70 MiB) to ubi0 [ 9.874595] UBI: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 9.889468] UBI: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 9.896548] UBI: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 9.902754] UBI: good PEBs: 566, bad PEBs: 0, corrupted PEBs: 0 [ 9.914247] UBI: user volume: 4, internal volumes: 1, max. volumes count: 128 [ 9.920438] UBI: max/mean erase counter: 3147/1570, WL threshold: 4096, image sequence number: 1331549393 [ 9.929970] UBI: available PEBs: 205, total reserved PEBs: 361, PEBs reserved for bad PEB handling: 20 [ 9.939334] UBI: background thread "ubi_bgt0d" started, PID 617 [ 9.987346] UBI: attaching mtd12 to ubi1 [ 10.004925] UBI: scanning is finished [ 10.013692] UBI warning: print_rsvd_warning: cannot reserve enough PEBs for bad PEB handling, reserved 2, need 20 [ 10.028031] UBI: attached mtd12 (name "art", size 2 MiB) to ubi1 [ 10.033249] UBI: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 10.041294] UBI: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 10.047377] UBI: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 10.057015] UBI: good PEBs: 16, bad PEBs: 0, corrupted PEBs: 0 [ 10.061807] UBI: user volume: 1, internal volumes: 1, max. volumes count: 128 [ 10.071642] UBI: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 174698806 [ 10.079640] UBI: available PEBs: 0, total reserved PEBs: 16, PEBs reserved for bad PEB handling: 2 [ 10.088624] UBI: background thread "ubi_bgt1d" started, PID 677 [ 10.103101] /mnt/jenkins/workspace/router/prod-signing/router-26-5/linux-3.14/drivers/rtc/hctosys.c: unable to open rtc device (rtc0) [ 10.121534] clk: Not disabling unused clocks [ 10.124842] devtmpfs: mounted [ 10.128329] Freeing unused kernel memory: 152K (c06ad000 - c06d3000) init started: BusyBox v1.25.1 (2020-04-22 17:37:53 PDT) [ 10.415684] UBIFS: background thread "ubifs_bgt0_3" started, PID 840 [ 10.459989] UBIFS: recovery needed [ 10.616994] UBIFS: recovery completed [ 10.619728] UBIFS: mounted UBI device 0, volume 3, name "storage" [ 10.625730] UBIFS: LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 10.634876] UBIFS: FS size: 7364608 bytes (7 MiB, 58 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs) [ 10.644155] UBIFS: reserved for root: 347848 bytes (339 KiB) [ 10.649810] UBIFS: media format: w4/r0 (latest is w4/r0), UUID 260EEF69-5503-456C-A423-D2D57B22E2ED, small LPT model [ 10.667809] random: serial_loginche: uninitialized urandom read (4 bytes read, 66 bits of entropy available) [ 10.719957] Sat Jan 1 00:00:00 UTC 2000 WARNING! THIS CONSOLE IS LOGGED! UNAUTHORIZED ACCESS FORBIDDEN! [ 10.794475] random: board_data_conf: uninitialized urandom read (4 bytes read, 66 bits of entropy available) [ 10.848168] random: mktemp: uninitialized urandom read (6 bytes read, 67 bits of entropy available) [ 10.870159] Quick boot reason lookup: [ 10.874955] No valid safe config available or fallback disabled, remove unsafe config <Meraki> [ 10.904647] sysctl: error: 'vm.extfrag_threshold' is an unknown key [ 10.943873] ICMPv6: process `sysctl' is using deprecated sysctl (syscall) net.ipv6.neigh.bond0.base_reachable_time - use net.ipv6.neigh.bond0.base_reachable_time_ms instead [ 10.962928] nr_pdflush_threads exported in /proc is scheduled for removal [ 10.969539] sysctl: The scan_unevictable_pages sysctl/node-interface has been disabled for lack of a legitimate use case. If you have one, please send an email to linux-mm@kvack.org. [ 10.989249] net.ipv6.conf.all.accept_ra = 0 [ 10.995958] net.ipv6.conf.bond0.accept_ra = 0 [ 11.002893] net.ipv6.conf.default.accept_ra = 0 [ 11.009972] net.ipv6.conf.lo.accept_ra = 0 [ 11.136244] 377+0 records in [ 11.138088] 377+0 records out [ 11.141123] 12064 bytes (11.8KB) copied, 0.107328 seconds, 109.8KB/s [ 11.260386] 377+0 records in [ 11.262228] 377+0 records out [ 11.265256] 12064 bytes (11.8KB) copied, 0.109629 seconds, 107.5KB/s [ 11.394718] 377+0 records in [ 11.396560] 377+0 records out [ 11.399590] 12064 bytes (11.8KB) copied, 0.119838 seconds, 98.3KB/s [ 11.412172] random: board_data_conf: uninitialized urandom read (4 bytes read, 85 bits of entropy available) [ 13.556760] libphy: GPIO Bitbanged MDIO: probed [ 13.580247] ********************************************************** [ 13.585737] * Driver :NSS GMAC Driver for RTL v(3.72a) [ 13.591178] * Version :1.0 [ 13.593983] * Copyright :Copyright (c) 2013-2016 The Linux Foundation. All rights reserved. [ 13.602441] ********************************************************** [ 13.725420] nss_driver - fw of size 408384 bytes copied to load addr: 40000000, nss_id : 0 [ 13.755191] nss_driver - Turbo Support 1 [ 13.758128] Supported Frequencies - [ 13.761455] 110Mhz 550Mhz [ 13.764146] 733Mhz [ 13.766230] [ 13.776926] nss_driver - fw of size 223296 bytes copied to load addr: 40800000, nss_id : 1 [ 13.791656] node size 1 # items 2 [ 13.793931] memory: 40000000 536870912 (avl 521412608) items 2 [ 13.810937] node size 1 # items 2 [ 13.813216] memory: 40000000 536870912 (avl 521412608) items 2 [ 13.902143] random: board_data_conf: uninitialized urandom read (4 bytes read, 88 bits of entropy available) [ 13.997324] IPv6: ADDRCONF(NETDEV_UP): wired0: link is not ready [ 14.056551] random: board_data_conf: uninitialized urandom read (4 bytes read, 93 bits of entropy available) [ 14.074045] Bluetooth: ti254x: firmware is up to date. [ 14.181174] random: dd: uninitialized urandom read (4096 bytes read, 97 bits of entropy available) [ 14.204583] random: dd: uninitialized urandom read (4096 bytes read, 98 bits of entropy available) [ 14.224252] random: meraki_watchdog: uninitialized urandom read (4 bytes read, 99 bits of entropy available) [ 14.227482] random: sync_log: uninitialized urandom read (4 bytes read, 99 bits of entropy available) [ 14.322630] sysctl -w vm.panic_on_oom=2 [ 14.328900] vm.panic_on_oom = 2 [ 14.398016] click: starting router thread pid 1124 (dcecc000) [ 14.439150] elts_meraki: module license 'unspecified' taints kernel. [ 14.444469] Disabling lock debugging due to kernel taint [ 14.552328] Single synchronous check for reset [ 14.642406] <NSS-CRYPTO>:module loaded (platform - IPQ806x, build - Build_ID - 04/22/20, 18:10:16) [ 14.653417] <NSS-CRYPTO>:Register with NSS driver- [ 14.749924] [ 14.755633] boot 52 build 26-202004221713-G73741c79-rel-pvc board cryptid mac 88:15:44:AC:D9:96 [ 14.757121] <NSS-CRYPTO>:NSS Firmware initialized [ 14.757326] <NSS-CRYPTO>:probing engine - 0 [ 14.757328] <NSS-CRYPTO>:Device Tree node found [ 14.757570] <NSS-CRYPTO>:init completed for Pipe Pair[0] [ 14.757579] <NSS-CRYPTO>:init completed for Pipe Pair[1] [ 14.758545] <NSS-CRYPTO>:probing engine - 1 [ 14.758548] <NSS-CRYPTO>:Device Tree node found [ 14.758622] <NSS-CRYPTO>:init completed for Pipe Pair[0] [ 14.758630] <NSS-CRYPTO>:init completed for Pipe Pair[1] [ 14.759796] <NSS-CRYPTO>:probing engine - 2 [ 14.759798] <NSS-CRYPTO>:Device Tree node found [ 14.759865] <NSS-CRYPTO>:init completed for Pipe Pair[0] [ 14.759876] <NSS-CRYPTO>:init completed for Pipe Pair[1] [ 14.760894] <NSS-CRYPTO>:probing engine - 3 [ 14.760897] <NSS-CRYPTO>:Device Tree node found [ 14.760973] <NSS-CRYPTO>:init completed for Pipe Pair[0] [ 14.760981] <NSS-CRYPTO>:init completed for Pipe Pair[1] [ 14.849825] Module: mdio_bitbang .text=0xbf000000 .data= .bss= [ 14.849825] Module: mdio_gpio .text=0xbf004000 .data=0xbf0043a0 .bss= [ 14.849825] Module: qca_nss_gmac .text=0xbf008000 .data=0xbf00f9e0 .bss=0xbf00fed8 [ 14.849825] Module: qca_nss_drv .text=0xbf01a000 .data=0xbf03dadc .bss=0xbf03e8c0 [ 14.849825] Module: qca_nss_clickmgr .text=0xbf06e000 .data= .bss=0xbf06e9d8 [ 14.849825] Module: dummy .text=0xbf072000 .data=0xbf072420 .bss= [ 14.849825] Module: proclikefs .text=0xbf076000 .data= .bss=0xbf076b00 [ 14.849825] Module: merakiclick .text=0xbf07b000 .data=0xbf194abc .bss=0xbf194d80 [ 14.849825] Module: elts_meraki .text=0xbf292000 .data=0xbf566c1c .bss=0xbf568628 [ 14.849825] Module: qca_nss_crypto .text=0xbf72f000 .data=0xbf73345c .bss=0xbf7337c0 [ 14.849825] Module: qca_nss_cryptoapi_cfi .text=0xbf73b000 .data=0xbf7409bc .bss=0xbf7412f4 [ 14.849825] Module: qcrypto .text=0xbf748000 .data=0xbf74e9e4 .bss=0xbf74fe40 [ 14.955943] ramoops: using module parameters [ 14.962501] pstore: Registered ramoops as persistent store backend [ 14.970548] ramoops: attached 0x40000@0x5ffc0000, ecc: 0/0 [ 14.975790] ls -1 /sys/fs/pstore/dmesg-ramoops-* 2>/dev/null [ 14.985123] /usr/bin/check_bootreason: reading file : No such file or directory [ 15.108068] random: nonblocking pool is initialized [ 15.168515] ti254x: SUCCESS hciconfig hci0 up [ 19.234322] ath_spectral: Version 2.0.0 [ 19.234322] Copyright (c) 2005-2009 Atheros Communications, Inc. All Rights Reserved [ 19.250408] ath_hal: 0.9.17.1 (AR9380, WRITE_EEPROM, TX_DATA_SWAP, RX_DATA_SWAP, 11D) [ 19.260602] ath_dfs: Version 2.0.0 [ 19.260602] Copyright (c) 2005-2006 Atheros Communications, Inc. All Rights Reserved [ 19.304692] ath_ol_pci: (Atheros/multi-bss) [ 19.308139] ol_create_radio_netdev: Creating netdev wifi1 [ 19.313601] hif_pci_enable_bus: con_mode = 0x0, device_id = 0x40PCI: enabling device 0000:00:00.0 (0140 -> 0143) [ 19.323532] PCI: enabling device 0000:01:00.0 (0140 -> 0142) [ 19.329460] hif_pci_enable_bus: hif_enable_pci done *********** AR900B *************hif_pci_enable_bus: hif_type = 0xb, target_type = 0x9hif_pci_enable_bus: hif_pci_probe_tgt_wakeup donehif_target_sync: Loop checking FW signalhif_tar get_sync: Got FW signal, retries = 0hif_config_ce: ce_init donehif_config_ce: X, ret = 0hif_set_hia: Ehif_set_hia_extnd: E [ 19.373078] chip_id 0x9 chip_revision 0x1 [ 19.377340] [ 19.377340] CLOCK PLL skipped [ 19.381794] hif_set_hia_extnd: setting the target pll frac ffffffff intval ffffffff [ 19.389548] hif_set_hia_extnd: no frac provided, skipping pre-configuring PLL [ 19.396570] hif_set_hia_extnd: targ_clk is not provided, skipping pre-configuring PLL [ 19.407600] hif_pci_bus_configure: hif_set_hia donehif_configure_irq: Ehif_pci_configure_legacy_irq: Ehif_pci_configure_legacy_irq: X, ret = 0hif_enable: X OKhif_napi_create: NAPI structures initializedhif_napi_create: NAPI id 6 crea ted for pipe 5qca_napi_create: napi instance 32 created on pipe 4 [ 19.432928] hif_napi_event: received evnt: CONF cmd; v = 1 (state=0x1)hif_napi_event: setting configuration to ON __ol_ath_attach() Allocated scn db8c04c0 [ 19.446827] __ol_ath_attach: dev name wifi1 [ 19.451060] ol_ath_attach interface_id 1 [ 19.455010] ol_target_init() BMI inited. [ 19.458951] ol_target_init() BMI Get Target Info. [ 19.463476] Chip id: 0x9, chip version: 0x1000000 [ 19.468242] [ 19.468242] CE WAR Disabled [ 19.472633] NUM_DEV=1 FWMODE=0x2 FWSUBMODE=0x0 FWBR_BUF 0 [ 19.478194] ol_target_init() configure Target . [ 19.482495] [ 19.482495] Target Version is 1000000 [ 19.487707] [ 19.487707] Flash Download Address c0000 [ 19.493260] ol_transfer_bin_file: flash data file defined [ 19.498707] ol_transfer_bin_file[3871] Get Caldata for wifi1. [ 19.504393] qdf_fs_read[59], Open File /tmp/wifi1.caldata SUCCESS!!file system magic:16914836super blocksize:4096inode 4463file size:12064ol_transfer_bin_file 3932: Download Flash data len 12064 [ 19.521865] Board extended Data download address: 0x0 [ 19.547075] [ 19.547075] Board data initialized [ 19.551112] ol_ath_download_firmware: Download OTP, flash download ADDRESS 0xc0000 [ 19.558692] [ 19.558692] Selecting OTP binary for CHIP Version 1 [ 19.565252] ol_transfer_bin_file 3742: downloading file 0, Download data len 11240 [ 19.607405] [ 19.607405] First OTP send param 8000 [ 19.614922] ol_ath_download_firmware :First OTP download and Execute is good address:0x8400 return param 4660 [ 19.623935] ol_ath_download_firmware:##Board Id 1 , CHIP Id 1 [ 19.629941] ol_ath_download_firmware: BOARDDATA DOWNLOAD TO address 0xc0000 [ 19.636561] ol_transfer_bin_file: Board Data File download to address=0xc0000 file name=AR900B/hw.2/mr42/boardData_AR900B_CUS239_5G_v2_001.bin [ 19.649606] ol_transfer_bin_file 3742: downloading file 3, Download data len 12064 [ 19.657071] Board extended Data download address: 0x0 [ 19.682358] ol_ath_download_firmware: Using 0x1234 for the remainder of init [ 19.690911] [ 19.690911] Selecting OTP binary for CHIP Version 1 [ 19.696542] ol_transfer_bin_file 3742: downloading file 0, Download data len 11240 [ 19.738814] [ 19.738814] [Flash] : Ignore Module param [ 19.743400] [ 19.743400] Second otp download Param 10000 [ 19.760331] ol_ath_download_firmware : Second OTP download and Execute is good, param=0x0 [ 19.767667] [ 19.767667] Mission mode: Firmware CHIP Version 1 [ 19.774680] ol_swap_wlan_memory_expansion: length:203585 size_left:203605 dma_size_left:262144 fw_temp:e0bb7004 fw_entry_size:203609 [ 19.785886] ol_swap_wlan_memory_expansion: dma_virt_addr :e0b76000 fw_temp: e0bb7008 length: 203585 [ 19.794945] Swap: bytes_left to copy: fw:16; dma_page:58559 [ 19.800542] ol_swap_wlan_memory_expansion: length:0 size_left:12 dma_size_left:58559 fw_temp:e0be8b4d fw_entry_size:203609 [ 19.811460] Swap: wrong length read:0 [ 19.814988] ol_swap_wlan_memory_expansion: Swap total_bytes copied: 203585 Target address 418870 [ 19.824327] scn=db8c04c0 target_write_addr=418870 seg_info=db5bf010 [ 19.830327] ol_transfer_swap_struct:Code swap structure successfully downloaded for bin type =2 [ 19.839136] bin_filename=AR900B/hw.2/athwlan.bin swap_filename=/lib/firmware/AR900B/hw.2/athwlan.codeswap.bin [ 19.849147] ol_transfer_bin_file: Downloading firmware file: AR900B/hw.2/athwlan.bin [ 19.857436] ol_transfer_bin_file 3742: downloading file 1, Download data len 367492 [ 20.958792] ol_target_init() Download FW done. [ 20.962437] ol_ath_attach() WMI attached. wmi_handle da6fc000 [ 20.968241] wmi_unified_register_event_handler: Event id 62 is unavailable [ 20.975012] +htc_create .. HIF :db420000-htc_create: (0xd8c76000) [ 20.980984] htc_wmi_init() HT Create . d8c76000 [ 20.985748] htc_wmi_init 7904 host_enable 0 nss_nwifi_offload 0 [ 20.991653] ol_ath_set_default_tgt_config : AC Minfree buffer allocation through module param (umac.ko) [ 21.001049] OL_ACBKMinfree : 0 [ 21.004073] OL_ACBEMinfree : 0 [ 21.007250] OL_ACVIMinfree : 0 [ 21.010318] OL_ACVOMinfree : 0 [ 21.013449] hif_enable_fastpath, Enabling fastpath mode [ 21.018601] +HWT [ 21.020477] hif_completion_thread_startup: pipe_num:0 pipe_info:0xdb424578hif_completion_thread_startup: pipe_num:3 pipe_info:0xdb424650hif_completion_thread_startup: pipe_num:4 pipe_info:0xdb424698 [ 21.040477] -HWT [ 21.041496] Startup Mode-0 set [ 21.044528] [ 21.044528] <=== cfg max peer id 1056 ====> [ 21.050867] htt_peer_map_timer_init Enter pdev db598000 hrtimer db59a610 [ 21.057044] [ 21.057044] htt_alloc_peer_map_mem : Alloc Success : host q vaddr d9307000 paddr 5b307000 [ 21.066676] [ 21.066676] htt_alloc_peer_map_mem : Flush Interval Configured to 256 pkts [ 21.076609] ol_txrx_pdev_attach: 2500 tx desc's allocated ; range starts from dbd60000 [ 21.084646] Firmware_Build_Number:50 [ 21.087390] FW wireless modes: 0x1f9001 [ 21.091191] num_rf_chain:0x00000003 ht_cap_info:0x0000185b vht_cap_info:0x339a79b2 vht_supp_mcs:0x0000ffea [ 21.101097] wmi_service_coex_gpio 0, wmi_service_4_wire_coex_support 0, coex_version 0 [ 21.109040] [ 21.109040] Sending Ext resource cfg: HOST PLATFORM as 0 [ 21.109040] fw_feature_bitmap as 50 to TGT [ 21.119909] ol_ath_service_ready_event: tt_support: 1 [ 21.124904] ol_ath_service_ready_event: periodic_chan_stats: 0 [ 21.130692] ol_ath_service_ready_event: sw_cal_support_check_flag: 1 [ 21.137047] Peer Caching Enabled ; num_peers = 257, num_active_peers = 52 num_tids = 104, num_vdevs = 17 [ 21.146536] EXT NSS Supported [ 21.149481] Mesh Supported [ 21.152208] idx 1 req 2 num_units 1 num_unit_info 12 unit size 256 actual units 53 [ 21.160010] idx 2 req 3 num_units 1 num_unit_info 12 unit size 1024 actual units 53 [ 21.167830] idx 3 req 4 num_units 1 num_unit_info 12 unit size 4096 actual units 53 [ 21.175997] idx 0 req 1 num_units 0 num_unit_info 2 unit size 1272 actual units 258 [ 21.183639] idx 4 req 6 num_units 35 num_unit_info 0 unit size 3072 actual units 35 [ 21.191421] idx 5 req 7 num_units 1 num_unit_info 0 unit size 6144 actual units 1 [ 21.198936] idx 6 req 5 num_units 0 num_unit_info 2 unit size 1928 actual units 258 [ 21.206941] Support not added yet for Service 91 [ 21.211272] Support not added yet for Service 92 [ 21.215839] No EXT_MSG send INIT now [ 21.219412] chunk 0 len 13568 requested , ptr 0x5d794000 [ 21.224781] chunk 1 len 54272 requested , ptr 0x5dab0000 [ 21.230201] chunk 2 len 217088 requested , ptr 0x5de00000 [ 21.235628] chunk 3 len 164088 requested , ptr 0x5de40000 [ 21.241115] chunk 4 len 164088 requested , ptr 0x5de80000 [ 21.246602] chunk 5 len 107520 requested , ptr 0x5dde0000 [ 21.252048] chunk 6 len 6144 requested , ptr 0x5d59c000 [ 21.257347] chunk 7 len 248712 requested , ptr 0x5dec0000 [ 21.262797] chunk 8 len 248712 requested , ptr 0x5df00000 [ 21.268280] chunk 9 len 0 requested , ptr 0xffffffff [ 21.273500] smart_log_init: Smart logging Enabled buf=dbdc0000 (size=65536) [ 21.345001] Version = 16777216 3 status = 0 [ 21.348327] ol_ath_connect_htc() WMI is ready [ 21.352703] htt_h2t_frag_desc_bank_cfg_msg - HTT_H2T_MSG_TYPE_FRAG_DESC_BANK_CFG sent to FW for radio ID = 1 [ 21.362483] target uses HTT version 2.2; host uses 2.2 [ 21.375611] ol_ath_attach() connect HTC. [ 21.378690] bypasswmi : 0 [ 21.381280] ol_regdmn_start: reg-domain param: regdmn=0, countryName=, wModeSelect=FFFFFFFF, netBand=FFFFFFFF, extendedChanMode=0. [ 21.393224] Skipping VHT80 channel 5825 [ 21.397349] freq=58 [ 21.398919] freq=106 [ 21.401244] freq=122 [ 21.403617] freq=138 [ 21.405762] acfg_attach: 3013: Netlink socket created:db85cc00 [ 21.411633] SPECTRAL : get_capability not registered [ 21.416539] HAL_CAP_PHYDIAG : Capable [ 21.420175] SPECTRAL : Need to fix the capablity check for RADAR (spectral_attach : 237) [ 21.428294] SPECTRAL : get_capability not registered [ 21.433202] HAL_CAP_RADAR : Capable [ 21.436831] SPECTRAL : Need to fix the capablity check for SPECTRAL [ 21.436831] (spectral_attach : 242) [ 21.446666] SPECTRAL : get_capability not registered [ 21.451658] HAL_CAP_SPECTRAL_SCAN : Capable [ 21.455764] SPECTRAL : get_tsf64 not registered [ 21.460305] spectral_init_netlink 78 NULL SKB [ 21.464604] Green-AP : Green-AP : Attached [ 21.464604] [ 21.470326] Green-AP : Attached [ 21.473287] rate power table override is only supported for AR98XX [ 21.479597] ol_if_dfs_attach: called; ptr=db8b198c, radar_info=db573be8 [ 21.486080] dfs_attach: event log enabled by default [ 21.491390] >>>> CB Set (null) [ 21.494455] ol_ath_attach() UMAC attach . [ 21.498352] [ 21.498352] BURSTING enabled by default [ 21.503849] ACS not enabled [ 21.506532] __ol_ath_attach: needed_headroom reservation 60 [ 21.515624] ol_ath_thermal_mitigation_attach: -- [ 21.519498] ol_ath_pci_probe num_radios=0, wifi_radios[0].sc = db8c04c0 wifi_radio_type = 2 [ 21.527710] ath_sysfs_diag_init: diag_fsattr [ 21.532043] ol_create_radio_netdev: Creating netdev wifi0 [ 21.537467] hif_pci_enable_bus: con_mode = 0x0, device_id = 0x40PCI: enabling device 0001:00:00.0 (0140 -> 0143) [ 21.547585] PCI: enabling device 0001:01:00.0 (0140 -> 0142) [ 21.553197] hif_pci_enable_bus: hif_enable_pci done *********** AR900B *************hif_pci_enable_bus: hif_type = 0xb, target_type = 0x9hif_pci_enable_bus: hif_pci_probe_tgt_wakeup donehif_target_sync: Loop checking FW signalhif_tar get_sync: Got FW signal, retries = 0hif_config_ce: ce_init donehif_config_ce: X, ret = 0hif_set_hia: Ehif_set_hia_extnd: E [ 21.597546] chip_id 0x9 chip_revision 0x1 [ 21.601680] [ 21.601680] CLOCK PLL skipped [ 21.606227] hif_set_hia_extnd: setting the target pll frac ffffffff intval ffffffff [ 21.613856] hif_set_hia_extnd: no frac provided, skipping pre-configuring PLL [ 21.621021] hif_set_hia_extnd: targ_clk is not provided, skipping pre-configuring PLL [ 21.631981] hif_pci_bus_configure: hif_set_hia donehif_configure_irq: Ehif_pci_configure_legacy_irq: Ehif_pci_configure_legacy_irq: X, ret = 0hif_enable: X OKhif_napi_create: NAPI structures initializedhif_napi_create: NAPI id 6 crea ted for pipe 5qca_napi_create: napi instance 32 created on pipe 4 [ 21.657379] hif_napi_event: received evnt: CONF cmd; v = 1 (state=0x1)hif_napi_event: setting configuration to ON __ol_ath_attach() Allocated scn dc0004c0 [ 21.671259] __ol_ath_attach: dev name wifi0 [ 21.675414] ol_ath_attach interface_id 0 [ 21.679468] ol_target_init() BMI inited. [ 21.683326] ol_target_init() BMI Get Target Info. [ 21.690475] Chip id: 0x9, chip version: 0x1000000 [ 21.694245] [ 21.694245] CE WAR Disabled [ 21.698755] NUM_DEV=1 FWMODE=0x2 FWSUBMODE=0x0 FWBR_BUF 0 [ 21.704145] ol_target_init() configure Target . [ 21.708553] [ 21.708553] Target Version is 1000000 [ 21.713699] [ 21.713699] Flash Download Address c0000 [ 21.719381] ol_transfer_bin_file: flash data file defined [ 21.724716] ol_transfer_bin_file[3871] Get Caldata for wifi0. [ 21.730473] qdf_fs_read[59], Open File /tmp/wifi0.caldata SUCCESS!!file system magic:16914836super blocksize:4096inode 3095file size:12064ol_transfer_bin_file 3932: Download Flash data len 12064 [ 21.747863] Board extended Data download address: 0x0 [ 21.772911] [ 21.772911] Board data initialized [ 21.776987] ol_ath_download_firmware: Download OTP, flash download ADDRESS 0xc0000 [ 21.784491] [ 21.784491] Selecting OTP binary for CHIP Version 1 [ 21.791224] ol_transfer_bin_file 3742: downloading file 0, Download data len 11240 [ 21.832918] [ 21.832918] First OTP send param 8000 [ 21.840513] ol_ath_download_firmware :First OTP download and Execute is good address:0x8800 return param 4660 [ 21.849512] ol_ath_download_firmware:##Board Id 2 , CHIP Id 1 [ 21.855304] ol_ath_download_firmware: BOARDDATA DOWNLOAD TO address 0xc0000 [ 21.862360] ol_transfer_bin_file: Board Data File download to address=0xc0000 file name=AR900B/hw.2/mr42/boardData_AR900B_CUS260_2G_v2_002.bin [ 21.875351] ol_transfer_bin_file 3742: downloading file 3, Download data len 12064 [ 21.882683] Board extended Data download address: 0x0 [ 21.907861] ol_ath_download_firmware: Using 0x1234 for the remainder of init [ 21.913965] [ 21.913965] Selecting OTP binary for CHIP Version 1 [ 21.920618] ol_transfer_bin_file 3742: downloading file 0, Download data len 11240 [ 21.962421] [ 21.962421] [Flash] : Ignore Module param [ 21.967079] [ 21.967079] Second otp download Param 10000 [ 21.983782] ol_ath_download_firmware : Second OTP download and Execute is good, param=0x0 [ 21.991136] [ 21.991136] Mission mode: Firmware CHIP Version 1 [ 21.997458] [wifi1] FWLOG: [21332] WAL_DBGID_RST_STATS ( 0x1, 0x1, 0x1464, 0x0 ) [ 22.004639] [wifi1] [ 22.007600] ol_swap_wlan_memory_expansion: length:203585 size_left:203605 dma_size_left:262144 fw_temp:e1275004 fw_entry_size:203609 [ 22.018872] FWLOG: [21402] WAL_DBGID_TX_AC_BUFFER_SET ( [ 22.018986] ol_swap_wlan_memory_expansion: dma_virt_addr :e1234000 fw_temp: e1275008 length: 203585 [ 22.019072] Swap: bytes_left to copy: fw:16; dma_page:58559 [ 22.019076] ol_swap_wlan_memory_expansion: length:0 size_left:12 dma_size_left:58559 fw_temp:e12a6b4d fw_entry_size:203609 [ 22.019078] Swap: wrong length read:0 [ 22.019081] ol_swap_wlan_memory_expansion: Swap total_bytes copied: 203585 Target address 418870 [ 22.062526] 0x3[ 22.062531] scn=dc0004c0 target_write_addr=418870 seg_info=dbafbb10 [ 22.062535] ol_transfer_swap_struct:Code swap structure successfully downloaded for bin type =2 [ 22.062538] bin_filename=AR900B/hw.2/athwlan.bin swap_filename=/lib/firmware/AR900B/hw.2/athwlan.codeswap.bin [ 22.062559] ol_transfer_bin_file: Downloading firmware file: AR900B/hw.2/athwlan.bin [ 22.063071] ol_transfer_bin_file 3742: downloading file 1, Download data len 367492 [ 22.104573] , 0x1e, 0x94c, 0x94c, 0x0 ) [ 22.108026] [wifi1] FWLOG: [21402] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x94c, 0x94c, 0x0 ) [ 22.116702] [wifi1] FWLOG: [21402] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x94c, 0x94c, 0x0 ) [ 22.125467] [wifi1] FWLOG: [21402] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x94c, 0x94c, 0x0 ) [ 22.134065] [wifi1] FWLOG: [21459] WAL_DBGID_PDEV_INFO_PRINT ( 0x3a, 0xa10, 0x160, 0x10, 0x0 ) [ 22.142659] [wifi1] FWLOG: [21459] WAL_DBGID_PDEV_INFO_PRINT ( 0x3a, 0x10, 0x0, 0x10, 0x0 ) [ 23.213007] ol_target_init() Download FW done. [ 23.216725] ol_ath_attach() WMI attached. wmi_handle dbb12000 [ 23.222441] wmi_unified_register_event_handler: Event id 62 is unavailable [ 23.229479] +htc_create .. HIF :dba98000-htc_create: (0xd8c70000) [ 23.235260] htc_wmi_init() HT Create . d8c70000 [ 23.240057] htc_wmi_init 7904 host_enable 0 nss_nwifi_offload 0 [ 23.245852] ol_ath_set_default_tgt_config : AC Minfree buffer allocation through module param (umac.ko) [ 23.255288] OL_ACBKMinfree : 0 [ 23.258340] OL_ACBEMinfree : 0 [ 23.261460] OL_ACVIMinfree : 0 [ 23.264580] OL_ACVOMinfree : 0 [ 23.267763] hif_enable_fastpath, Enabling fastpath mode [ 23.272763] +HWT [ 23.274744] hif_completion_thread_startup: pipe_num:0 pipe_info:0xdba9c578hif_completion_thread_startup: pipe_num:3 pipe_info:0xdba9c650hif_completion_thread_startup: pipe_num:4 pipe_info:0xdba9c698 [ 23.294675] -HWT [ 23.295748] Startup Mode-0 set [ 23.298799] [ 23.298799] <=== cfg max peer id 1056 ====> [ 23.304933] htt_peer_map_timer_init Enter pdev db098000 hrtimer db09a610 [ 23.311168] [ 23.311168] htt_alloc_peer_map_mem : Alloc Success : host q vaddr db582000 paddr 5d582000 [ 23.320897] [ 23.320897] htt_alloc_peer_map_mem : Flush Interval Configured to 256 pkts [ 23.330744] ol_txrx_pdev_attach: 2500 tx desc's allocated ; range starts from dc520000 [ 23.338720] Firmware_Build_Number:50 [ 23.341443] FW wireless modes: 0x680c [ 23.345098] num_rf_chain:0x00000003 ht_cap_info:0x0000185b vht_cap_info:0x339a79b2 vht_supp_mcs:0x0000ffea [ 23.354959] wmi_service_coex_gpio 0, wmi_service_4_wire_coex_support 0, coex_version 0 [ 23.362940] [ 23.362940] Sending Ext resource cfg: HOST PLATFORM as 0 [ 23.362940] fw_feature_bitmap as 50 to TGT [ 23.373806] ol_ath_service_ready_event: tt_support: 1 [ 23.378805] ol_ath_service_ready_event: periodic_chan_stats: 0 [ 23.384592] ol_ath_service_ready_event: sw_cal_support_check_flag: 1 [ 23.390957] Peer Caching Enabled ; num_peers = 257, num_active_peers = 52 num_tids = 104, num_vdevs = 17 [ 23.400571] EXT NSS Supported [ 23.403346] Mesh Supported [ 23.406112] idx 1 req 2 num_units 1 num_unit_info 12 unit size 256 actual units 53 [ 23.413904] idx 2 req 3 num_units 1 num_unit_info 12 unit size 1024 actual units 53 [ 23.421741] idx 3 req 4 num_units 1 num_unit_info 12 unit size 4096 actual units 53 [ 23.429788] idx 0 req 1 num_units 0 num_unit_info 2 unit size 1272 actual units 258 [ 23.437525] idx 4 req 6 num_units 35 num_unit_info 0 unit size 3072 actual units 35 [ 23.445214] idx 5 req 7 num_units 1 num_unit_info 0 unit size 6144 actual units 1 [ 23.452936] idx 6 req 5 num_units 0 num_unit_info 2 unit size 1928 actual units 258 [ 23.460793] Support not added yet for Service 91 [ 23.465165] Support not added yet for Service 92 [ 23.469761] No EXT_MSG send INIT now [ 23.473304] chunk 0 len 13568 requested , ptr 0x5e08c000 [ 23.478697] chunk 1 len 54272 requested , ptr 0x5e580000 [ 23.484062] chunk 2 len 217088 requested , ptr 0x5e5c0000 [ 23.489573] chunk 3 len 164088 requested , ptr 0x5e600000 [ 23.494993] chunk 4 len 164088 requested , ptr 0x5e640000 [ 23.500499] chunk 5 len 107520 requested , ptr 0x5e680000 [ 23.505950] chunk 6 len 6144 requested , ptr 0x5c4b4000 [ 23.511257] chunk 7 len 248712 requested , ptr 0x5e6c0000 [ 23.516866] chunk 8 len 248712 requested , ptr 0x5e700000 [ 23.522291] chunk 9 len 0 requested , ptr 0xffffffff [ 23.527320] smart_log_init: Smart logging Enabled buf=dc2d0000 (size=65536) [ 23.598824] Version = 16777216 3 status = 0 [ 23.602198] ol_ath_connect_htc() WMI is ready [ 23.606497] htt_h2t_frag_desc_bank_cfg_msg - HTT_H2T_MSG_TYPE_FRAG_DESC_BANK_CFG sent to FW for radio ID = 0 [ 23.616317] target uses HTT version 2.2; host uses 2.2 [ 23.629901] ol_ath_attach() connect HTC. [ 23.632968] bypasswmi : 0 [ 23.635563] ol_regdmn_start: reg-domain param: regdmn=0, countryName=, wModeSelect=FFFFFFFF, netBand=FFFFFFFF, extendedChanMode=0. [ 23.647547] acfg_attach: Offload using existing sock db85cc00 [ 23.653045] SPECTRAL : get_capability not registered [ 23.657993] HAL_CAP_PHYDIAG : Capable [ 23.661619] SPECTRAL : Need to fix the capablity check for RADAR (spectral_attach : 237) [ 23.669731] SPECTRAL : get_capability not registered [ 23.674645] HAL_CAP_RADAR : Capable [ 23.678305] SPECTRAL : Need to fix the capablity check for SPECTRAL [ 23.678305] (spectral_attach : 242) [ 23.690725] SPECTRAL : get_capability not registered [ 23.694734] HAL_CAP_SPECTRAL_SCAN : Capable [ 23.698923] SPECTRAL : get_tsf64 not registered [ 23.703430] spectral_init_netlink 78 NULL SKB [ 23.707821] Green-AP : Green-AP : Attached [ 23.707821] [ 23.713327] Green-AP : Attached [ 23.716452] rate power table override is only supported for AR98XX [ 23.722874] ol_if_dfs_attach: called; ptr=dbf4998c, radar_info=db573be8 [ 23.729271] dfs_attach: event log enabled by default [ 23.734437] >>>> CB Set (null) [ 23.737500] ol_ath_attach() UMAC attach . [ 23.741448] [ 23.741448] BURSTING enabled by default [ 23.747189] ACS not enabled [ 23.749682] __ol_ath_attach: needed_headroom reservation 60 [ 23.758939] ol_ath_thermal_mitigation_attach: -- [ 23.762664] ol_ath_pci_probe num_radios=1, wifi_radios[1].sc = dc0004c0 wifi_radio_type = 2 [ 23.771693] ath_sysfs_diag_init: diag_fsattr [ 23.775376] ol_create_radio_netdev: Creating netdev wifi2 [ 23.781012] hif_pci_enable_bus: con_mode = 0x0, device_id = 0x50PCI: enabling device 0002:00:00.0 (0140 -> 0143) [ 23.791050] PCI: enabling device 0002:01:00.0 (0140 -> 0142) [ 23.796548] hif_pci_enable_bus: hif_enable_pci done *********** AR9887 **************hif_pci_enable_bus: hif_type = 0x6, target_type = 0x7hif_pci_enable_bus: hif_pci_probe_tgt_wakeup donehif_target_sync: Loop checking FW signal [ 24.249462] [wifi0] FWLOG: [23434] WAL_DBGID_RST_STATS ( 0x1, 0x1, 0x96c, 0x0 ) [ 24.255905] [wifi0] FWLOG: [23504] WAL_DBGID_TX_AC_BUFFER_SET ( 0x3, 0x1e, 0x94c, 0x94c, 0x0 ) [ 24.272396] [wifi0] FWLOG: [23504] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x94c, 0x94c, 0x0 ) [ 24.298654] [wifi0] FWLOG: [23504] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x94c, 0x94c, 0x0 ) [ 24.308492] [wifi0] FWLOG: [23504] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x94c, 0x94c, 0x0 ) [ 24.317325] [wifi0] FWLOG: [23557] WAL_DBGID_PDEV_INFO_PRINT ( 0x3a, 0xa10, 0x160, 0x0, 0x12 ) [ 24.342432] Switching to Tx Mode-1 Threshold 280 [ 24.399152] hif_target_sync: Got FW signal, retries = 22hif_config_ce: ce_init donehif_config_ce: X, ret = 0hif_set_hia: Ehif_set_hia_extnd: E [ 24.425383] [ 24.425383] CLOCK PLL skipped [ 24.433044] hif_pci_bus_configure: hif_set_hia donehif_configure_irq: Ehif_pci_configure_legacy_irq: Ehif_pci_configure_legacy_irq: X, ret = 0hif_enable: X OKhif_napi_create: NAPI structures initializedhif_napi_create: NAPI id 6 crea ted for pipe 5qca_napi_create: napi instance 32 created on pipe 4 [ 24.460982] hif_napi_event: received evnt: CONF cmd; v = 1 (state=0x1)hif_napi_event: setting configuration to ON __ol_ath_attach() Allocated scn dc8004c0 [ 24.477451] __ol_ath_attach: dev name wifi2 [ 24.481543] ol_ath_attach interface_id 2 [ 24.485550] ol_target_init() BMI inited. [ 24.489497] ol_target_init() BMI Get Target Info. [ 24.494039] Chip id: 0x7, chip version: 0x4100016d [ 24.502422] [ 24.502422] CE WAR Disabled [ 24.505858] NUM_DEV=1 FWMODE=0x2 FWSUBMODE=0x0 FWBR_BUF 0 [ 24.512182] ol_target_init() configure Target . [ 24.515750] ol_transfer_bin_file: flash data file defined [ 24.521121] ol_transfer_bin_file[3871] Get Caldata for wifi2. [ 24.526798] qdf_fs_read[59], Open File /tmp/wifi2.caldata SUCCESS!!file system magic:16914836super blocksize:4096inode 4468file size:12064qdf_fs_read[79]: caldata data size mismatch, fsize=12064, cal_size=2116ol_transfer_bin_file 393 2: Download Flash data len 2116 [ 24.552806] Board extended Data download address: 0x0 [ 24.565332] ol_download_cal_data: Board data file: 4 successfully downloaded, download address: 00401cc0 [ 24.574320] [ 24.574320] Mission mode: Firmware CHIP Version 0 [ 24.580098] ol_transfer_bin_file: Downloading firmware file: AR9887/athwlan.bin [ 24.591297] ol_transfer_bin_file 3742: downloading file 1, Download data len 234356 [ 25.008116] !!!!! {/usr/bin/client_eventd} failed writing /click/client_ip_table/madwifi_clients errno 2 (No such file or directory) len 0 data: "" [ 25.622475] ol_target_init() Download FW done. [ 25.626184] ol_ath_attach() WMI attached. wmi_handle dba68000 [ 25.631917] wmi_unified_register_event_handler: Event id 62 is unavailable [ 25.638790] +htc_create .. HIF :dc7d8000-htc_create: (0xdc7aa800) [ 25.644732] htc_wmi_init() HT Create . dc7aa800 [ 25.649524] htc_wmi_init 7904 host_enable 1 nss_nwifi_offload 0 [ 25.655332] ol_ath_set_default_tgt_config : AC Minfree buffer allocation through module param (umac.ko) [ 25.664741] OL_ACBKMinfree : 0 [ 25.667816] OL_ACBEMinfree : 0 [ 25.670943] OL_ACVIMinfree : 0 [ 25.674070] OL_ACVOMinfree : 0 [ 25.677417] hif_enable_fastpath, Enabling fastpath mode [ 25.682222] +HWT [ 25.684213] hif_completion_thread_startup: pipe_num:0 pipe_info:0xdc7dc578hif_completion_thread_startup: pipe_num:3 pipe_info:0xdc7dc650hif_completion_thread_startup: pipe_num:4 pipe_info:0xdc7dc698 [ 25.705753] -HWT [ 25.706855] Startup Mode-0 set [ 25.709875] [ 25.709875] <=== cfg max peer id 1056 ====> [ 25.715746] htt_peer_map_timer_init Enter pdev dc62c000 hrtimer dc62e610 [ 25.722280] [ 25.722280] htt_alloc_peer_map_mem : Alloc Success : host q vaddr db586000 paddr 5d586000 [ 25.731960] [ 25.731960] htt_alloc_peer_map_mem : Flush Interval Configured to 256 pkts [ 25.741944] ol_txrx_pdev_attach: 1424 tx desc's allocated ; range starts from c3060000 [ 25.750001] Firmware_Build_Number:0 [ 25.752630] host/RAM_fw Build Ver Mismatch: H:0x32, F:0x0 ! [ 25.758314] FW wireless modes: 0x1ff80d [ 25.762141] num_rf_chain:0x00000001 ht_cap_info:0x0000085b vht_cap_info:0x338001b2 vht_supp_mcs:0x0000fffe [ 25.771968] wmi_service_coex_gpio 0, wmi_service_4_wire_coex_support 0, coex_version 0 [ 25.780065] [ 25.780065] Sending Ext resource cfg: HOST PLATFORM as 1 [ 25.780065] fw_feature_bitmap as 50 to TGT [ 25.790799] ol_ath_service_ready_event: tt_support: 0 [ 25.795821] ol_ath_service_ready_event: periodic_chan_stats: 1 [ 25.801596] ol_ath_service_ready_event: sw_cal_support_check_flag: 0 [ 25.807947] LARGE_AP enabled. num_peers 144, num_vdevs 16, num_tids 256 [ 25.814583] idx 0 req 1 num_units 0 num_unit_info 2 unit size 404 actual units 145 [ 25.822356] Support not added yet for Service 91 [ 25.826874] Support not added yet for Service 92 [ 25.831467] No EXT_MSG send INIT now [ 25.835016] chunk 0 len 58580 requested , ptr 0x5ea10000 [ 25.847258] FIRMWARE:P 145 V 16 T 443 [ 25.847258] [ 25.852483] Version = 16777216 3 status = 0 [ 25.855841] ol_ath_connect_htc() WMI is ready [ 25.860165] htt_h2t_frag_desc_bank_cfg_msg - HTT_H2T_MSG_TYPE_FRAG_DESC_BANK_CFG sent to FW for radio ID = 2 [ 25.860196] target uses HTT version 2.2; host uses 2.2 [ 25.885215] ol_ath_attach() connect HTC. [ 25.888422] bypasswmi : 0 [ 25.890873] ol_regdmn_start: reg-domain param: regdmn=0, countryName=, wModeSelect=FFFFFFFF, netBand=FFFFFFFF, extendedChanMode=0. [ 25.902803] Skipping VHT80 channel 5825 [ 25.907006] freq=58 [ 25.908573] freq=106 [ 25.910826] freq=122 [ 25.913132] acfg_attach: Offload using existing sock db85cc00 [ 25.918903] SPECTRAL : get_capability not registered [ 25.923818] HAL_CAP_PHYDIAG : Capable [ 25.927482] SPECTRAL : Need to fix the capablity check for RADAR (spectral_attach : 237) [ 25.935538] SPECTRAL : get_capability not registered [ 25.940524] HAL_CAP_RADAR : Capable [ 25.944104] SPECTRAL : Need to fix the capablity check for SPECTRAL [ 25.944104] (spectral_attach : 242) [ 25.953963] SPECTRAL : get_capability not registered [ 25.958887] HAL_CAP_SPECTRAL_SCAN : Capable [ 25.963022] SPECTRAL : get_tsf64 not registered [ 25.967559] spectral_init_netlink 78 NULL SKB [ 25.972023] Green-AP : Green-AP : Attached [ 25.972023] [ 25.977611] Green-AP : Attached [ 25.980677] ol_if_dfs_attach: called; ptr=dc5a198c, radar_info=db573be8 [ 25.987190] dfs_attach: event log enabled by default [ 25.992499] >>>> CB Set (null) [ 25.995604] ol_ath_attach() UMAC attach . [ 25.999474] [ 25.999474] BURSTING enabled by default [ 26.004872] ACS not enabled [ 26.007683] __ol_ath_attach: hard_header_len reservation 74 [ 26.016824] ol_ath_thermal_mitigation_attach: TT not supported in FW [ 26.022283] ol_ath_pci_probe num_radios=2, wifi_radios[2].sc = dc8004c0 wifi_radio_type = 2 [ 26.030832] ath_sysfs_diag_init: diag_fsattr [ 26.038784] ath_rate_atheros: Copyright (c) 2001-2005 Atheros Communications, Inc, All Rights Reserved [ 26.054395] ath_dev: Copyright (c) 2001-2007 Atheros Communications, Inc, All Rights Reserved [ 26.068286] ath_da_pci: (Atheros/multi-bss) [ 26.075220] pktlog_init: Initializing Pktlog for AR900B, pktlog_hdr_size = 16 [ 26.081616] +hif_update_pipe_callback pipeid 8 [ 26.085938] -hif_update_pipe_callback [ 26.089642] pktlog_init: Initializing Pktlog for AR900B, pktlog_hdr_size = 16 [ 26.096948] +hif_update_pipe_callback pipeid 8 [ 26.101209] -hif_update_pipe_callback [ 26.104861] pktlog_init: Initializing Pktlog for AR9888, pktlog_hdr_size = 16 [ 26.216639] Invalid value! PPDU duration target should be between 0 and 255 [ 26.227131] Invalid value! PPDU duration target should be between 0 and 255 [ 26.246362] !!!!! {/usr/bin/brain} opening /click/wlan_event/driver_reload failed: No such file or directory [ 26.255570] [wifi0] FWLOG: [26191] WAL_DBGID_RST_STATS ( 0x2, 0x2, 0x96c, 0x0 ) [ 26.303593] brain: unloading click config [ 26.307157] brain: spring cleaning pages [ 26.448061] [ol_ath_iw_setcountry][1865] *p=55, *(p+1)=53 [ 26.452547] isCountryCodeValid: EEPROM regdomain 0x0 [ 26.465499] wlan_vap_create : enter. devhandle=0xdc0004c0, opmode=IEEE80211_M_HOSTAP, flags=0x0 [ 26.473356] send_vdev_create_cmd_non_tlv: ID = 0 Type = 1, Subtype = 0 VAP Addr = 88:15:44:ac:d9:96: [ 26.482466] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 26.489500] ieee80211_mbo_vattach:MBO Initialized [ 26.494215] ieee80211_oce_vattach: OCE Initialized [ 26.499504] wlan_vap_create : exit. devhandle=0xdc0004c0, vap=0xc32d8000, opmode=IEEE80211_M_HOSTAP, flags=0x0. [ 26.509332] Enabling SG bit for the vap apr0v0 features 4000 [ 26.514850] Enabling SG bit for the vap apr0v0 features 4000 [ 26.520646] Enabling LRO bit for the vap apr0v0 features 4000 [ 26.530483] VAP device apr0v0 created osifp: (dc7aecc0) os_if: (c32d8000) [ 26.548636] send_vdev_create_cmd_non_tlv: ID = 1 Type = 1, Subtype = 0 VAP Addr = 8e:15:44:ac:d9:96: [ 26.556931] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 26.564241] ieee80211_mbo_vattach:MBO Initialized [ 26.568683] ieee80211_oce_vattach: OCE Initialized [ 26.573676] Enabling SG bit for the vap apr0v1 features 4000 [ 26.579273] Enabling SG bit for the vap apr0v1 features 4000 [ 26.584982] Enabling LRO bit for the vap apr0v1 features 4000 [ 26.594720] VAP device apr0v1 created osifp: (dc7aa4c0) os_if: (c3250000) [ 26.600620] Switching to Tx Mode-1 Threshold 280 [ 26.617239] send_vdev_create_cmd_non_tlv: ID = 2 Type = 1, Subtype = 0 VAP Addr = 82:15:44:ac:d9:96: [ 26.625509] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 26.632629] ieee80211_mbo_vattach:MBO Initialized [ 26.637299] ieee80211_oce_vattach: OCE Initialized [ 26.642294] Enabling SG bit for the vap apr0v2 features 4000 [ 26.647909] Enabling SG bit for the vap apr0v2 features 4000 [ 26.653579] Enabling LRO bit for the vap apr0v2 features 4000 [ 26.659651] [wifi2] FWLOG: [25604] WAL_DBGID_TX_AC_BUFFER_SET ( 0x3, 0x1e, 0x460, 0x460, 0x0 ) [ 26.667870] [wifi2] FWLOG: [25604] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x460, 0x460, 0x0 ) [ 26.676617] [wifi2] FWLOG: [25604] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x460, 0x460, 0x0 ) [ 26.685291] [wifi2] FWLOG: [25604] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x460, 0x460, 0x0 ) [ 26.693913] [wifi2] FWLOG: [25606] WHAL_ERROR_RESET_PM ( ) [ 26.699512] [wifi2] FWLOG: [25611] WAL_DBGID_DEV_RESET ( 0x1, 0x1, 0x1 ) [ 26.706152] [wifi2] FWLOG: [25667] WAL_DBGID_PDEV_INFO_PRINT ( [ 26.714533] VAP device apr0v2 created osifp: (c31a2cc0) os_if: (c3218000) [ 26.724046] 0x3a, 0x10, 0x10 ) [ 26.736050] send_vdev_create_cmd_non_tlv: ID = 3 Type = 1, Subtype = 0 VAP Addr = 86:15:44:ac:d9:96: [ 26.744459] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 26.751424] ieee80211_mbo_vattach:MBO Initialized [ 26.755946] ieee80211_oce_vattach: OCE Initialized [ 26.765734] Enabling SG bit for the vap apr0v3 features 4000 [ 26.770661] Enabling SG bit for the vap apr0v3 features 4000 [ 26.776170] Enabling LRO bit for the vap apr0v3 features 4000 [ 26.786210] VAP device apr0v3 created osifp: (d9915cc0) os_if: (c30b8000) [ 26.807122] send_vdev_create_cmd_non_tlv: ID = 4 Type = 1, Subtype = 0 VAP Addr = 9a:15:44:ac:d9:96: [ 26.815240] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 26.822715] ieee80211_mbo_vattach:MBO Initialized [ 26.831725] ieee80211_oce_vattach: OCE Initialized [ 26.835648] Enabling SG bit for the vap apr0v4 features 4000 [ 26.841563] Enabling SG bit for the vap apr0v4 features 4000 [ 26.847228] Enabling LRO bit for the vap apr0v4 features 4000 [ 26.856854] VAP device apr0v4 created osifp: (d99164c0) os_if: (c3200000) [ 26.873318] send_vdev_create_cmd_non_tlv: ID = 5 Type = 1, Subtype = 0 VAP Addr = 9e:15:44:ac:d9:96: [ 26.881530] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 26.893215] ieee80211_mbo_vattach:MBO Initialized [ 26.897061] ieee80211_oce_vattach: OCE Initialized [ 26.901917] Enabling SG bit for the vap apr0v5 features 4000 [ 26.907655] Enabling SG bit for the vap apr0v5 features 4000 [ 26.913285] Enabling LRO bit for the vap apr0v5 features 4000 [ 26.927576] VAP device apr0v5 created osifp: (d9916cc0) os_if: (c32c8000) [ 26.943760] send_vdev_create_cmd_non_tlv: ID = 6 Type = 1, Subtype = 0 VAP Addr = 92:15:44:ac:d9:96: [ 26.956886] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 26.963096] ieee80211_mbo_vattach:MBO Initialized [ 26.968073] ieee80211_oce_vattach: OCE Initialized [ 26.972805] Enabling SG bit for the vap apr0v6 features 4000 [ 26.978665] Enabling SG bit for the vap apr0v6 features 4000 [ 26.984097] Enabling LRO bit for the vap apr0v6 features 4000 [ 26.994255] VAP device apr0v6 created osifp: (d99174c0) os_if: (c3238000) [ 27.015732] send_vdev_create_cmd_non_tlv: ID = 7 Type = 1, Subtype = 0 VAP Addr = 96:15:44:ac:d9:96: [ 27.023908] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 27.030985] ieee80211_mbo_vattach:MBO Initialized [ 27.035628] ieee80211_oce_vattach: OCE Initialized [ 27.045191] Enabling SG bit for the vap apr0v7 features 4000 [ 27.049986] Enabling SG bit for the vap apr0v7 features 4000 [ 27.055626] Enabling LRO bit for the vap apr0v7 features 4000 [ 27.065515] VAP device apr0v7 created osifp: (d9917cc0) os_if: (c3210000) [ 27.086707] send_vdev_create_cmd_non_tlv: ID = 8 Type = 1, Subtype = 0 VAP Addr = aa:15:44:ac:d9:96: [ 27.094892] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 27.101929] ieee80211_mbo_vattach:MBO Initialized [ 27.106604] ieee80211_oce_vattach: OCE Initialized [ 27.116185] Enabling SG bit for the vap apr0v8 features 4000 [ 27.121032] Enabling SG bit for the vap apr0v8 features 4000 [ 27.126618] Enabling LRO bit for the vap apr0v8 features 4000 [ 27.136317] VAP device apr0v8 created osifp: (dcc54cc0) os_if: (c3338000) [ 27.156888] send_vdev_create_cmd_non_tlv: ID = 9 Type = 1, Subtype = 0 VAP Addr = ae:15:44:ac:d9:96: [ 27.165084] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 27.176624] ieee80211_mbo_vattach:MBO Initialized [ 27.180478] ieee80211_oce_vattach: OCE Initialized [ 27.185326] Enabling SG bit for the vap apr0v9 features 4000 [ 27.191047] Enabling SG bit for the vap apr0v9 features 4000 [ 27.196693] Enabling LRO bit for the vap apr0v9 features 4000 [ 27.211199] VAP device apr0v9 created osifp: (c327a4c0) os_if: (c3308000) [ 27.226887] send_vdev_create_cmd_non_tlv: ID = 10 Type = 1, Subtype = 0 VAP Addr = a2:15:44:ac:d9:96: [ 27.236887] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 27.243108] ieee80211_mbo_vattach:MBO Initialized [ 27.248227] ieee80211_oce_vattach: OCE Initialized [ 27.252681] [wifi0] FWLOG: [26434] WAL_DBGID_PDEV_INFO_PRINT ( 0x3a, 0xa10, 0x160, 0x0, 0x12 ) [ 27.261192] [wifi0] FWLOG: [26444] WAL_DBGID_RST_STATS ( 0x2, [ 27.267275] Enabling SG bit for the vap apr0v10 features 4000 [ 27.272894] Enabling SG bit for the vap apr0v10 features 4000 [ 27.279009] 0x2, 0x96c, 0x0 ) [ 27.281561] Enabling LRO bit for the vap apr0v10 features 4000 [ 27.291725] VAP device apr0v10 created osifp: (c327d4c0) os_if: (c3248000) [ 27.310367] send_vdev_create_cmd_non_tlv: ID = 11 Type = 1, Subtype = 0 VAP Addr = a6:15:44:ac:d9:96: [ 27.318990] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 27.325778] ieee80211_mbo_vattach:MBO Initialized [ 27.330837] ieee80211_oce_vattach: OCE Initialized [ 27.335515] Enabling SG bit for the vap apr0v11 features 4000 [ 27.341481] Enabling SG bit for the vap apr0v11 features 4000 [ 27.347335] Enabling LRO bit for the vap apr0v11 features 4000 [ 27.357182] VAP device apr0v11 created osifp: (c3390cc0) os_if: (c32f0000) [ 27.375303] send_vdev_create_cmd_non_tlv: ID = 12 Type = 1, Subtype = 0 VAP Addr = ba:15:44:ac:d9:96: [ 27.384048] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 27.390889] ieee80211_mbo_vattach:MBO Initialized [ 27.395398] ieee80211_oce_vattach: OCE Initialized [ 27.400822] Enabling SG bit for the vap apr0v12 features 4000 [ 27.406114] Enabling SG bit for the vap apr0v12 features 4000 [ 27.412166] Enabling LRO bit for the vap apr0v12 features 4000 [ 27.422523] VAP device apr0v12 created osifp: (c33934c0) os_if: (c3318000) [ 27.440369] send_vdev_create_cmd_non_tlv: ID = 13 Type = 1, Subtype = 0 VAP Addr = be:15:44:ac:d9:96: [ 27.449181] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 27.455804] ieee80211_mbo_vattach:MBO Initialized [ 27.460805] ieee80211_oce_vattach: OCE Initialized [ 27.465507] Enabling SG bit for the vap apr0v13 features 4000 [ 27.471498] Enabling SG bit for the vap apr0v13 features 4000 [ 27.477048] Enabling LRO bit for the vap apr0v13 features 4000 [ 27.487232] VAP device apr0v13 created osifp: (c33964c0) os_if: (c3348000) [ 27.505275] send_vdev_create_cmd_non_tlv: ID = 14 Type = 1, Subtype = 0 VAP Addr = b2:15:44:ac:d9:96: [ 27.513785] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 27.520949] ieee80211_mbo_vattach:MBO Initialized [ 27.525365] ieee80211_oce_vattach: OCE Initialized [ 27.530770] Enabling SG bit for the vap apr0v14 features 4000 [ 27.536069] Enabling SG bit for the vap apr0v14 features 4000 [ 27.542346] Enabling LRO bit for the vap apr0v14 features 4000 [ 27.552569] VAP device apr0v14 created osifp: (c33a8cc0) os_if: (c3380000) [ 27.573582] send_vdev_create_cmd_non_tlv: ID = 15 Type = 1, Subtype = 5 VAP Addr = b6:15:44:ac:d9:96: [ 27.582203] su bfee 0 mu bfee 0 su bfer 0 mu bfer 0 impl bf 1 sounding dim 0 [ 27.589308] ieee80211_mbo_vattach:MBO Initialized [ 27.593693] ieee80211_oce_vattach: OCE Initialized [ 27.598885] ol_txrx_set_mesh_mode val 1 [ 27.602529] Enabling SG bit for the vap mesh0 features 4000 [ 27.608457] Enabling SG bit for the vap mesh0 features 4000 [ 27.613736] Enabling LRO bit for the vap mesh0 features 4000 [ 27.623247] VAP device mesh0 created osifp: (c33abcc0) os_if: (c33c0000) [ 27.633192] send_vdev_create_cmd_non_tlv: ID = 16 Type = 4, Subtype = 0 VAP Addr = 88:15:44:ac:d9:96: [ 27.641999] Enabling SG bit for the vap mon0 features 4000 [ 27.647064] Enabling SG bit for the vap mon0 features 4000 [ 27.652616] Enabling LRO bit for the vap mon0 features 4000 [ 27.661817] VAP device mon0 created osifp: (c33aecc0) os_if: (c3328000) [ 27.672363] brain: loading click config [ 28.250289] [wifi0] FWLOG: [27646] UNKNOWN 25:22 ( 0x0, 0xac441588, 0x96d9, 0xde80 ) [ 28.982162] OL vap_start - [ 28.989407] [DEBUG] vap-15(mesh0):set SIOC80211NWID, 9 characters [ 28.994580] [ 28.994580] DES SSID SET='fast-mesh' [ 29.004464] Setting Tx Encap type to 2 (Ethernet) [ 29.014820] Setting Rx Decap type to 2 (Ethernet) [ 29.114316] [ 29.114316] DES SSID SET='' [ 29.162837] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v0 shortgi 1 [ 29.194515] [ 29.194515] DES SSID SET='' [ 29.236696] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v1 shortgi 1 [ 29.268839] [ 29.268839] DES SSID SET='' [ 29.298155] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v2 shortgi 1 [ 29.322071] send_vdev_up_cmd_non_tlv for vap 16 [ 29.325791] [wifi0] FWLOG: [29018] WAL channel change freq=2412, mode=2 flags=0 rx_ok=1 tx_ok=1 [ 29.336034] [wifi0] FWLOG: [29019] WAL_DBGID_RST_STATS ( 0x2, 0x80, 0x96c, 0x1 ) [ 29.346830] [ 29.346830] DES SSID SET='' [ 29.376562] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v3 shortgi 1 [ 29.408862] [ 29.408862] DES SSID SET='' [ 29.438391] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v4 shortgi 1 [ 29.469953] [ 29.469953] DES SSID SET='' [ 29.503810] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v5 shortgi 1 [ 29.537764] [ 29.537764] DES SSID SET='' [ 29.566490] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v6 shortgi 1 [ 29.598477] [ 29.598477] DES SSID SET='' [ 29.627838] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v7 shortgi 1 [ 29.658945] [ 29.658945] DES SSID SET='' [ 29.688610] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v8 shortgi 1 [ 29.719196] [ 29.719196] DES SSID SET='' [ 29.751499] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v9 shortgi 1 [ 29.787229] [ 29.787229] DES SSID SET='' [ 29.816549] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v10 shortgi 1 [ 29.848313] [ 29.848313] DES SSID SET='' [ 29.878308] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v11 shortgi 1 [ 29.908348] [ 29.908348] DES SSID SET='' [ 29.938567] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v12 shortgi 1 [ 29.969450] [ 29.969450] DES SSID SET='' [ 29.998670] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v13 shortgi 1 [ 30.029891] [ 30.029891] DES SSID SET='' [ 30.058877] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv apr1v14 shortgi 1 [ 30.217354] Configuring BCAST RATE is deffered as channel is not yet set for VAP [ 30.231108] Configuring MCAST RATE is deffered as channel is not yet set for VAP [ 30.268418] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/one_mb_enabled errno 2 (No such file or directory) len 1 data: "0" [ 30.284755] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/two_mb_enabled errno 2 (No such file or directory) len 1 data: "0" [ 30.296652] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/five_mb_enabled errno 2 (No such file or directory) len 1 data: "0" [ 30.313363] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/eleven_mb_enabled errno 2 (No such file or directory) len 1 data: "1" [ 30.322593] [wifi0] FWLOG: [29366] VDEV_MGR_VDEV_START_RESP ( 0x0 ) [ 30.322604] [wifi0] FWLOG: [29366] vap-15 WMI_CMD_PARAMS ( 0xa, 0xff, 0x1 ) [ 30.322618] [wifi0] FWLOG: [29434] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0x1 ) [ 30.322630] [wifi0] FWLOG: [29501] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0x2 ) [ 30.322641] [wifi0] FWLOG: [29569] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0x3 ) [ 30.322653] [wifi0] FWLOG: [29636] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0x4 ) [ 30.322663] [wifi0] FWLOG: [29703] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0x5 ) [ 30.322674] [wifi0] FWLOG: [29770] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0x6 ) [ 30.322685] [wifi0] FWLOG: [29837] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0x7 ) [ 30.322695] [wifi0] FWLOG: [29904] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0x8 ) [ 30.322707] [wifi0] FWLOG: [29971] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0x9 ) [ 30.322718] [wifi0] FWLOG: [30038] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0xa ) [ 30.322730] [wifi0] FWLOG: [30105] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0xb ) [ 30.322740] [wifi0] FWLOG: [30172] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0xc ) [ 30.322759] [wifi0] FWLOG: [30239] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0xd ) [ 30.322769] [wifi0] FWLOG: [30306] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0xe ) [ 30.322780] [wifi0] FWLOG: [30374] WAL_DBGID_DEV_TX_TIMEOUT ( 0xd09, 0xfa11, 0xa, 0x18, 0xf ) [ 30.472252] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/six_mb_enabled errno 2 (No such file or directory) len 1 data: "1" [ 30.484017] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/nine_mb_enabled errno 2 (No such file or directory) len 1 data: "1" [ 30.500984] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/twelve_mb_enabled errno 2 (No such file or directory) len 1 data: "1" [ 30.513051] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/eighteen_mb_enabled errno 2 (No such file or directory) len 1 data: "1" [ 30.530270] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/twenty_four_mb_enabled errno 2 (No such file or directory) len 1 data: "1" [ 30.542740] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/thirty_six_mb_enabled errno 2 (No such file or directory) len 1 data: "1" [ 30.560185] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/forty_eight_mb_enabled errno 2 (No such file or directory) len 1 data: "1" [ 30.572643] !!!!! {/usr/bin/brain} failed writing /proc/sys/net/mesh1/fifty_four_mb_enabled errno 2 (No such file or directory) len 1 data: "1" [ 30.592464] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv mesh1 bcast_rate 11000 [ 30.604037] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv mesh1 mcast_rate 11000 [ 30.635586] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv mon0 packet_counter 0 [ 31.132313] TX ACK time out value need between 0x40 and 0xFF [ 31.139908] !!!!! {/usr/bin/brain} forkexec failed with status 255 cmd -iwpriv wifi0 acktimeout 48 [ 31.155684] !!!!! {/usr/bin/brain} failed writing /click/ike/policies errno 2 (No such file or directory) len 0 data: "" [ 31.173617] Resetting spectral chainmask to Rx chainmask [ 31.183727] ol_ath_ucfg_setparam[255] PARAM_SENS_LEVEL [ 31.188570] !!!!! {/usr/bin/brain} set wlan_rx_sop_r0 to -95, ret = 0 [ 31.194645] ol_ath_ucfg_setparam[270] PARAM_CCA_THRESHOLD [ 31.200191] !!!!! {/usr/bin/brain} set wlan_cca_threshold_r0 to -64, ret = 0 [ 31.239157] wmi_dbg_cfg_send: mod[0]00000000 dbgcfg50000000 cfgvalid[0] 00000000 cfgvalid[1] 00000000, cfgvalid[2] 70000000 [ 31.252519] cfg valid value inside module enable 400000wmi_dbg_cfg_send: mod[0]00000000 dbgcfg00000000 cfgvalid[0] 00400000 cfgvalid[1] 00000000, cfgvalid[2] 0


root@OpenWrt:~# dmesg [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.10.35 (root@cluster5) (arm-openwrt-linux-muslgnueabi-gcc (OpenWrt GCC 8.4.0 r16702-9a581de63b) 8.4.0, GNU ld (GNU Binutils) 2.34) #0 SMP Tue May 11 08:53:09 2021 [ 0.000000] CPU: ARMv7 Processor [512f04d0] revision 0 (ARMv7), cr=10c5787d [ 0.000000] CPU: div instructions available: patching division code [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000] OF: fdt: Machine model: Meraki MR42 [ 0.000000] OF: fdt: Ignoring memory range 0x41500000 - 0x44000000 [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000044000000-0x000000005fefffff] [ 0.000000] HighMem empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000044000000-0x000000005fefffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000044000000-0x000000005fefffff] [ 0.000000] On node 0 totalpages: 114432 [ 0.000000] Normal zone: 1006 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 114432 pages, LIFO batch:31 [ 0.000000] percpu: Embedded 15 pages/cpu s30732 r8192 d22516 u61440 [ 0.000000] pcpu-alloc: s30732 r8192 d22516 u61440 alloc=15*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 113426 [ 0.000000] Kernel command line: loader=u-boot part=bootkernel2 console=ttyMSM0,115200n8 ubi.mtd=ubi ubi.mtd=art [ 0.000000] Bootloader command line not present [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 441932K/457728K available (6552K kernel code, 608K rwdata, 1648K rodata, 1024K init, 236K bss, 15796K reserved, 0K cma-reserved, 0K highmem) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] random: get_random_bytes called from start_kernel+0x3ac/0x558 with crng_init=0 [ 0.000000] clocksource: dg_timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 305801671480 ns [ 0.000011] sched_clock: 32 bits at 6MHz, resolution 160ns, wraps every 343597383600ns [ 0.000031] Switching to timer-based delay loop, resolution 160ns [ 0.000285] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.50 BogoMIPS (lpj=62500) [ 0.000319] pid_max: default: 32768 minimum: 301 [ 0.000502] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.000524] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.001627] CPU: Testing write buffer coherency: ok [ 0.001913] qcom_scm: convention: smc legacy [ 0.002892] Setting up static identity map for 0x44300000 - 0x44300060 [ 0.003080] rcu: Hierarchical SRCU implementation. [ 0.003372] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build [ 0.003619] smp: Bringing up secondary CPUs ... [ 0.005634] smp: Brought up 1 node, 2 CPUs [ 0.005656] SMP: Total of 2 processors activated (25.00 BogoMIPS). [ 0.005672] CPU: All CPU(s) started in SVC mode. [ 0.016516] VFP support v0.3: implementor 51 architecture 64 part 4d variant 2 rev 0 [ 0.016688] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.016724] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.016879] pinctrl core: initialized pinctrl subsystem [ 0.018144] NET: Registered protocol family 16 [ 0.018524] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.019895] thermal_sys: Registered thermal governor 'step_wise' [ 0.022075] cpuidle: using governor ladder [ 0.022151] cpuidle: using governor menu [ 0.066116] usbcore: registered new interface driver usbfs [ 0.066203] usbcore: registered new interface driver hub [ 0.066287] usbcore: registered new device driver usb [ 0.066355] pps_core: LinuxPPS API ver. 1 registered [ 0.066373] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.066412] PTP clock support registered [ 0.066711] qcom_scm: convention: smc legacy [ 0.068680] clocksource: Switched to clocksource dg_timer [ 0.069772] NET: Registered protocol family 2 [ 0.070425] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) [ 0.070484] TCP established hash table entries: 4096 (order: 2, 16384 bytes, linear) [ 0.070531] TCP bind hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.070591] TCP: Hash tables configured (established 4096 bind 4096) [ 0.070701] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.070740] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.070988] NET: Registered protocol family 1 [ 0.071043] PCI: CLS 0 bytes, default 64 [ 0.072320] workingset: timestamp_bits=14 max_order=17 bucket_order=3 [ 0.078256] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.078281] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.184071] qcom-pcie 1b500000.pci: supply vdda not found, using dummy regulator [ 0.184320] qcom-pcie 1b500000.pci: supply vdda_phy not found, using dummy regulator [ 0.184439] qcom-pcie 1b500000.pci: supply vdda_refclk not found, using dummy regulator [ 0.184727] qcom-pcie 1b500000.pci: host bridge /soc/pci@1b500000 ranges: [ 0.184763] qcom-pcie 1b500000.pci: Parsing ranges property... [ 0.184818] qcom-pcie 1b500000.pci: IO 0x000fe00000..0x000fefffff -> 0x000fe00000 [ 0.184867] qcom-pcie 1b500000.pci: MEM 0x0008000000..0x000fdfffff -> 0x0008000000 [ 0.414627] qcom-pcie 1b500000.pci: Link up [ 0.414803] qcom-pcie 1b500000.pci: PCI host bridge to bus 0000:00 [ 0.414833] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.414857] pci_bus 0000:00: root bus resource [io 0x0000-0xfffff] (bus address [0xfe00000-0xfefffff]) [ 0.414880] pci_bus 0000:00: root bus resource [mem 0x08000000-0x0fdfffff] [ 0.414901] pci_bus 0000:00: scanning bus [ 0.414968] pci 0000:00:00.0: [17cb:0101] type 01 class 0x060400 [ 0.415127] pci 0000:00:00.0: supports D1 [ 0.415148] pci 0000:00:00.0: PME# supported from D0 D1 D3hot [ 0.415173] pci 0000:00:00.0: PME# disabled [ 0.419256] pci_bus 0000:00: fixups for bus [ 0.419285] PCI: bus0: Fast back to back transfers disabled [ 0.419310] pci 0000:00:00.0: scanning [bus 01-ff] behind bridge, pass 0 [ 0.419473] pci_bus 0000:01: scanning bus [ 0.419818] pci 0000:01:00.0: [168c:0040] type 00 class 0x028000 [ 0.420119] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit] [ 0.421506] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold [ 0.421562] pci 0000:01:00.0: PME# disabled [ 0.425753] pci_bus 0000:01: fixups for bus [ 0.425842] PCI: bus1: Fast back to back transfers disabled [ 0.425863] pci_bus 0000:01: bus scan returning with max=01 [ 0.425885] pci 0000:00:00.0: scanning [bus 01-ff] behind bridge, pass 1 [ 0.425906] pci_bus 0000:00: bus scan returning with max=ff [ 0.425944] pci 0000:00:00.0: BAR 8: assigned [mem 0x08000000-0x081fffff] [ 0.425975] pci 0000:01:00.0: BAR 0: assigned [mem 0x08000000-0x081fffff 64bit] [ 0.426131] pci 0000:00:00.0: PCI bridge to [bus 01-ff] [ 0.426160] pci 0000:00:00.0: bridge window [mem 0x08000000-0x081fffff] [ 0.426212] pci 0000:00:00.0: Max Payload Size set to 128/ 128 (was 128), Max Read Rq 128 [ 0.426418] pci 0000:01:00.0: Max Payload Size set to 128/ 256 (was 128), Max Read Rq 128 [ 0.426633] pcieport 0000:00:00.0: assign IRQ: got 42 [ 0.427417] pcieport 0000:00:00.0: AER: enabled with IRQ 43 [ 0.427530] pcieport 0000:00:00.0: saving config space at offset 0x0 (reading 0x10117cb) [ 0.427547] pcieport 0000:00:00.0: saving config space at offset 0x4 (reading 0x100547) [ 0.427562] pcieport 0000:00:00.0: saving config space at offset 0x8 (reading 0xff000000) [ 0.427576] pcieport 0000:00:00.0: saving config space at offset 0xc (reading 0x10010) [ 0.427591] pcieport 0000:00:00.0: saving config space at offset 0x10 (reading 0x0) [ 0.427605] pcieport 0000:00:00.0: saving config space at offset 0x14 (reading 0x0) [ 0.427620] pcieport 0000:00:00.0: saving config space at offset 0x18 (reading 0xff0100) [ 0.427634] pcieport 0000:00:00.0: saving config space at offset 0x1c (reading 0xf0) [ 0.427650] pcieport 0000:00:00.0: saving config space at offset 0x20 (reading 0x8100800) [ 0.427664] pcieport 0000:00:00.0: saving config space at offset 0x24 (reading 0x1fff1) [ 0.427678] pcieport 0000:00:00.0: saving config space at offset 0x28 (reading 0x0) [ 0.427692] pcieport 0000:00:00.0: saving config space at offset 0x2c (reading 0x0) [ 0.427707] pcieport 0000:00:00.0: saving config space at offset 0x30 (reading 0x0) [ 0.427721] pcieport 0000:00:00.0: saving config space at offset 0x34 (reading 0x40) [ 0.427735] pcieport 0000:00:00.0: saving config space at offset 0x38 (reading 0x0) [ 0.427750] pcieport 0000:00:00.0: saving config space at offset 0x3c (reading 0x3012a) [ 0.428418] qcom-pcie 1b700000.pci: supply vdda not found, using dummy regulator [ 0.428681] qcom-pcie 1b700000.pci: supply vdda_phy not found, using dummy regulator [ 0.428912] qcom-pcie 1b700000.pci: supply vdda_refclk not found, using dummy regulator [ 0.429202] qcom-pcie 1b700000.pci: host bridge /soc/pci@1b700000 ranges: [ 0.429234] qcom-pcie 1b700000.pci: Parsing ranges property... [ 0.429284] qcom-pcie 1b700000.pci: IO 0x0031e00000..0x0031efffff -> 0x0031e00000 [ 0.429328] qcom-pcie 1b700000.pci: MEM 0x002e000000..0x0031dfffff -> 0x002e000000 [ 0.655391] qcom-pcie 1b700000.pci: Link up [ 0.655557] qcom-pcie 1b700000.pci: PCI host bridge to bus 0001:00 [ 0.655584] pci_bus 0001:00: root bus resource [bus 00-ff] [ 0.655607] pci_bus 0001:00: root bus resource [io 0x100000-0x1fffff] (bus address [0x31e00000-0x31efffff]) [ 0.655626] pci_bus 0001:00: root bus resource [mem 0x2e000000-0x31dfffff] [ 0.655646] pci_bus 0001:00: scanning bus [ 0.655701] pci 0001:00:00.0: [17cb:0101] type 01 class 0x060400 [ 0.655841] pci 0001:00:00.0: supports D1 [ 0.655860] pci 0001:00:00.0: PME# supported from D0 D1 D3hot [ 0.655881] pci 0001:00:00.0: PME# disabled [ 0.659894] pci_bus 0001:00: fixups for bus [ 0.659920] PCI: bus0: Fast back to back transfers disabled [ 0.659942] pci 0001:00:00.0: scanning [bus 01-ff] behind bridge, pass 0 [ 0.660099] pci_bus 0001:01: scanning bus [ 0.660441] pci 0001:01:00.0: [168c:0040] type 00 class 0x028000 [ 0.660736] pci 0001:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit] [ 0.662116] pci 0001:01:00.0: PME# supported from D0 D3hot D3cold [ 0.662173] pci 0001:01:00.0: PME# disabled [ 0.666359] pci_bus 0001:01: fixups for bus [ 0.666447] PCI: bus1: Fast back to back transfers disabled [ 0.666466] pci_bus 0001:01: bus scan returning with max=01 [ 0.666486] pci 0001:00:00.0: scanning [bus 01-ff] behind bridge, pass 1 [ 0.666506] pci_bus 0001:00: bus scan returning with max=ff [ 0.666534] pci 0001:00:00.0: BAR 8: assigned [mem 0x2e000000-0x2e1fffff] [ 0.666563] pci 0001:01:00.0: BAR 0: assigned [mem 0x2e000000-0x2e1fffff 64bit] [ 0.666713] pci 0001:00:00.0: PCI bridge to [bus 01-ff] [ 0.666739] pci 0001:00:00.0: bridge window [mem 0x2e000000-0x2e1fffff] [ 0.666783] pci 0001:00:00.0: Max Payload Size set to 128/ 128 (was 128), Max Read Rq 128 [ 0.666988] pci 0001:01:00.0: Max Payload Size set to 128/ 256 (was 128), Max Read Rq 128 [ 0.667178] pcieport 0001:00:00.0: assign IRQ: got 44 [ 0.667832] pcieport 0001:00:00.0: AER: enabled with IRQ 45 [ 0.667950] pcieport 0001:00:00.0: saving config space at offset 0x0 (reading 0x10117cb) [ 0.667967] pcieport 0001:00:00.0: saving config space at offset 0x4 (reading 0x100547) [ 0.667983] pcieport 0001:00:00.0: saving config space at offset 0x8 (reading 0xff000000) [ 0.667998] pcieport 0001:00:00.0: saving config space at offset 0xc (reading 0x10010) [ 0.668012] pcieport 0001:00:00.0: saving config space at offset 0x10 (reading 0x0) [ 0.668026] pcieport 0001:00:00.0: saving config space at offset 0x14 (reading 0x0) [ 0.668041] pcieport 0001:00:00.0: saving config space at offset 0x18 (reading 0xff0100) [ 0.668055] pcieport 0001:00:00.0: saving config space at offset 0x1c (reading 0xf0) [ 0.668070] pcieport 0001:00:00.0: saving config space at offset 0x20 (reading 0x2e102e00) [ 0.668084] pcieport 0001:00:00.0: saving config space at offset 0x24 (reading 0x1fff1) [ 0.668098] pcieport 0001:00:00.0: saving config space at offset 0x28 (reading 0x0) [ 0.668113] pcieport 0001:00:00.0: saving config space at offset 0x2c (reading 0x0) [ 0.668127] pcieport 0001:00:00.0: saving config space at offset 0x30 (reading 0x0) [ 0.668141] pcieport 0001:00:00.0: saving config space at offset 0x34 (reading 0x40) [ 0.668156] pcieport 0001:00:00.0: saving config space at offset 0x38 (reading 0x0) [ 0.668170] pcieport 0001:00:00.0: saving config space at offset 0x3c (reading 0x3012c) [ 0.668937] qcom-pcie 1b900000.pci: supply vdda not found, using dummy regulator [ 0.669174] qcom-pcie 1b900000.pci: supply vdda_phy not found, using dummy regulator [ 0.669307] qcom-pcie 1b900000.pci: supply vdda_refclk not found, using dummy regulator [ 0.669598] qcom-pcie 1b900000.pci: host bridge /soc/pci@1b900000 ranges: [ 0.669629] qcom-pcie 1b900000.pci: Parsing ranges property... [ 0.669682] qcom-pcie 1b900000.pci: IO 0x0035e00000..0x0035efffff -> 0x0035e00000 [ 0.669726] qcom-pcie 1b900000.pci: MEM 0x0032000000..0x0035dfffff -> 0x0032000000 [ 0.895409] qcom-pcie 1b900000.pci: Link up [ 0.895592] qcom-pcie 1b900000.pci: PCI host bridge to bus 0002:00 [ 0.895620] pci_bus 0002:00: root bus resource [bus 00-ff] [ 0.895642] pci_bus 0002:00: root bus resource [io 0x200000-0x2fffff] (bus address [0x35e00000-0x35efffff]) [ 0.895663] pci_bus 0002:00: root bus resource [mem 0x32000000-0x35dfffff] [ 0.895683] pci_bus 0002:00: scanning bus [ 0.895742] pci 0002:00:00.0: [17cb:0101] type 01 class 0x060400 [ 0.895891] pci 0002:00:00.0: supports D1 [ 0.895912] pci 0002:00:00.0: PME# supported from D0 D1 D3hot [ 0.895933] pci 0002:00:00.0: PME# disabled [ 0.899925] pci_bus 0002:00: fixups for bus [ 0.899951] PCI: bus0: Fast back to back transfers disabled [ 0.899975] pci 0002:00:00.0: scanning [bus 01-ff] behind bridge, pass 0 [ 0.900137] pci_bus 0002:01: scanning bus [ 0.900483] pci 0002:01:00.0: [168c:0050] type 00 class 0x028000 [ 0.900797] pci 0002:01:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit] [ 0.901298] pci 0002:01:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref] [ 0.902295] pci 0002:01:00.0: supports D1 [ 0.902314] pci 0002:01:00.0: PME# supported from D0 D1 D3hot [ 0.902371] pci 0002:01:00.0: PME# disabled [ 0.906581] pci_bus 0002:01: fixups for bus [ 0.906676] PCI: bus1: Fast back to back transfers disabled [ 0.906695] pci_bus 0002:01: bus scan returning with max=01 [ 0.906717] pci 0002:00:00.0: scanning [bus 01-ff] behind bridge, pass 1 [ 0.906737] pci_bus 0002:00: bus scan returning with max=ff [ 0.906767] pci 0002:00:00.0: BAR 8: assigned [mem 0x32000000-0x322fffff] [ 0.906797] pci 0002:01:00.0: BAR 0: assigned [mem 0x32000000-0x321fffff 64bit] [ 0.906959] pci 0002:01:00.0: BAR 6: assigned [mem 0x32200000-0x3220ffff pref] [ 0.906981] pci 0002:00:00.0: PCI bridge to [bus 01-ff] [ 0.907004] pci 0002:00:00.0: bridge window [mem 0x32000000-0x322fffff] [ 0.907051] pci 0002:00:00.0: Max Payload Size set to 128/ 128 (was 128), Max Read Rq 128 [ 0.907268] pci 0002:01:00.0: Max Payload Size set to 128/ 256 (was 128), Max Read Rq 128 [ 0.907466] pcieport 0002:00:00.0: assign IRQ: got 46 [ 0.908174] pcieport 0002:00:00.0: AER: enabled with IRQ 47 [ 0.908289] pcieport 0002:00:00.0: saving config space at offset 0x0 (reading 0x10117cb) [ 0.908306] pcieport 0002:00:00.0: saving config space at offset 0x4 (reading 0x100547) [ 0.908322] pcieport 0002:00:00.0: saving config space at offset 0x8 (reading 0xff000000) [ 0.908336] pcieport 0002:00:00.0: saving config space at offset 0xc (reading 0x10010) [ 0.908351] pcieport 0002:00:00.0: saving config space at offset 0x10 (reading 0x0) [ 0.908365] pcieport 0002:00:00.0: saving config space at offset 0x14 (reading 0x0) [ 0.908379] pcieport 0002:00:00.0: saving config space at offset 0x18 (reading 0xff0100) [ 0.908394] pcieport 0002:00:00.0: saving config space at offset 0x1c (reading 0xf0) [ 0.908408] pcieport 0002:00:00.0: saving config space at offset 0x20 (reading 0x32203200) [ 0.908424] pcieport 0002:00:00.0: saving config space at offset 0x24 (reading 0x1fff1) [ 0.908438] pcieport 0002:00:00.0: saving config space at offset 0x28 (reading 0x0) [ 0.908453] pcieport 0002:00:00.0: saving config space at offset 0x2c (reading 0x0) [ 0.908467] pcieport 0002:00:00.0: saving config space at offset 0x30 (reading 0x0) [ 0.908481] pcieport 0002:00:00.0: saving config space at offset 0x34 (reading 0x40) [ 0.908495] pcieport 0002:00:00.0: saving config space at offset 0x38 (reading 0x0) [ 0.908510] pcieport 0002:00:00.0: saving config space at offset 0x3c (reading 0x3012e) [ 0.911428] L2 @ QSB rate. Forcing new rate. [ 0.911652] L2 @ 384000 KHz [ 0.911848] CPU0 @ 800000 KHz [ 0.911866] CPU1 @ QSB rate. Forcing new rate. [ 0.912005] CPU1 @ 384000 KHz [ 0.916442] gsbi 12440000.gsbi: GSBI port protocol: 4 crci: 0 [ 0.918486] gsbi 12480000.gsbi: GSBI port protocol: 2 crci: 0 [ 0.920537] gsbi 16300000.gsbi: GSBI port protocol: 6 crci: 0 [ 0.922611] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 0.923591] msm_serial 12450000.serial: msm_serial: detected port #1 [ 0.923650] msm_serial 12450000.serial: uartclk = 25000000 [ 0.923731] 12450000.serial: ttyMSM1 at MMIO 0x12450000 (irq = 48, base_baud = 1562500) is a MSM [ 0.924253] msm_serial 16340000.serial: msm_serial: detected port #0 [ 0.924305] msm_serial 16340000.serial: uartclk = 7372800 [ 0.924378] 16340000.serial: ttyMSM0 at MMIO 0x16340000 (irq = 50, base_baud = 460800) is a MSM [ 0.924421] msm_serial: console setup on port #0 [ 2.006036] printk: console [ttyMSM0] enabled [ 2.011242] msm_serial: driver initialized [ 2.020840] loop: module loaded [ 2.022555] nand: device found, Manufacturer ID: 0xc2, Chip ID: 0xa1 [ 2.022804] nand: Macronix MX30UF1G18AC [ 2.029507] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 2.032967] Block protection check failed [ 2.040849] 13 fixed-partitions partitions found on MTD device qcom_nand.0 [ 2.044676] Creating 13 MTD partitions on "qcom_nand.0": [ 2.051540] 0x000000000000-0x000000040000 : "sbl1" [ 2.058012] 0x000000040000-0x000000180000 : "mibib" [ 2.064215] 0x000000180000-0x0000002c0000 : "sbl2" [ 2.069030] 0x0000002c0000-0x000000540000 : "sbl3" [ 2.071890] random: fast init done [ 2.080207] 0x000000540000-0x000000660000 : "ddrconfig" [ 2.083354] 0x000000660000-0x000000780000 : "ssd" [ 2.087400] 0x000000780000-0x000000a00000 : "tz" [ 2.095086] 0x000000a00000-0x000000c80000 : "rpm" [ 2.100822] 0x000001fc0000-0x000002140000 : "u-boot" [ 2.104544] 0x0000021c0000-0x000002c40000 : "bootkernel1" [ 2.125876] 0x000002c40000-0x0000036c0000 : "bootkernel2" [ 2.146751] 0x0000036c0000-0x000007d80000 : "ubi" [ 2.281360] 0x000007d80000-0x000007f80000 : "art" [ 2.298289] libphy: Fixed MDIO Bus: probed [ 2.300563] libphy: ipq8064_mdio_bus: probed [ 2.402071] ipq806x-gmac-dwmac 37600000.ethernet: IRQ eth_wake_irq not found [ 2.402137] ipq806x-gmac-dwmac 37600000.ethernet: IRQ eth_lpi not found [ 2.408620] ipq806x-gmac-dwmac 37600000.ethernet: PTP uses main clock [ 2.415742] ipq806x-gmac-dwmac 37600000.ethernet: User ID: 0x10, Synopsys ID: 0x37 [ 2.421283] ipq806x-gmac-dwmac 37600000.ethernet: DWMAC1000 [ 2.428614] ipq806x-gmac-dwmac 37600000.ethernet: DMA HW capability register supported [ 2.434544] ipq806x-gmac-dwmac 37600000.ethernet: RX Checksum Offload Engine supported [ 2.442263] ipq806x-gmac-dwmac 37600000.ethernet: COE Type 2 [ 2.450132] ipq806x-gmac-dwmac 37600000.ethernet: TX Checksum insertion supported [ 2.455874] ipq806x-gmac-dwmac 37600000.ethernet: Wake-Up On Lan supported [ 2.463383] ipq806x-gmac-dwmac 37600000.ethernet: Enhanced/Alternate descriptors [ 2.470127] ipq806x-gmac-dwmac 37600000.ethernet: Enabled extended descriptors [ 2.477573] ipq806x-gmac-dwmac 37600000.ethernet: Ring mode enabled [ 2.484685] ipq806x-gmac-dwmac 37600000.ethernet: Enable RX Mitigation via HW Watchdog Timer [ 2.490883] ipq806x-gmac-dwmac 37600000.ethernet: device MAC address 76:10:28:41:e2:5b [ 2.541245] libphy: stmmac: probed [ 2.544411] i2c /dev entries driver [ 2.545153] i2c_qup 124a0000.i2c: using default clock-frequency 100000 [ 2.555313] sdhci: Secure Digital Host Controller Interface driver [ 2.555365] sdhci: Copyright(c) Pierre Ossman [ 2.560557] sdhci-pltfm: SDHCI platform and OF driver helper [ 2.568797] NET: Registered protocol family 10 [ 2.573009] Segment Routing with IPv6 [ 2.574979] NET: Registered protocol family 17 [ 2.579199] 8021q: 802.1Q VLAN Support v1.8 [ 2.583050] Registering SWP/SWPB emulation handler [ 2.624755] qcom_rpm 108000.rpm: RPM firmware 3.0.16777342 [ 2.641959] s1a: Bringing 0uV into 1050000-1050000uV [ 2.642400] s1a: supplied by regulator-dummy [ 2.646223] s1b: Bringing 0uV into 1050000-1050000uV [ 2.650749] s1b: supplied by regulator-dummy [ 2.655433] s2a: Bringing 0uV into 800000-800000uV [ 2.659927] s2a: supplied by regulator-dummy [ 2.664263] s2b: Bringing 0uV into 800000-800000uV [ 2.668840] s2b: supplied by regulator-dummy [ 2.674445] debugfs: Directory '900000.clock-controller:thermal-sensor@900000' with parent 'tsens' already present! [ 2.678966] thermal thermal_zone0: failed to read out thermal zone (-110) [ 2.689116] thermal thermal_zone6: failed to read out thermal zone (-110) [ 2.711332] ubi0: attaching mtd11 [ 2.851580] random: crng init done [ 3.348490] ubi0: scanning is finished [ 3.359927] ubi0: attached mtd11 (name "ubi", size 70 MiB) [ 3.359953] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 3.364299] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 3.371246] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 3.378015] ubi0: good PEBs: 566, bad PEBs: 0, corrupted PEBs: 0 [ 3.384849] ubi0: user volume: 6, internal volumes: 1, max. volumes count: 128 [ 3.391137] ubi0: max/mean erase counter: 739/395, WL threshold: 4096, image sequence number: 1331549393 [ 3.398077] ubi0: available PEBs: 0, total reserved PEBs: 566, PEBs reserved for bad PEB handling: 20 [ 3.407827] ubi1: attaching mtd12 [ 3.407984] ubi0: background thread "ubi_bgt0d" started, PID 104 [ 3.416933] ubi1: MTD device 12 is write-protected, attach in read-only mode [ 3.466977] ubi1: scanning is finished [ 3.478686] ubi1 warning: ubi_eba_init: cannot reserve enough PEBs for bad PEB handling, reserved 2, need 20 [ 3.479620] ubi1: attached mtd12 (name "art", size 2 MiB) [ 3.487576] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 3.492953] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 3.499737] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 3.506500] ubi1: good PEBs: 16, bad PEBs: 0, corrupted PEBs: 0 [ 3.513343] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128 [ 3.519248] ubi1: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 174698806 [ 3.526470] ubi1: available PEBs: 0, total reserved PEBs: 16, PEBs reserved for bad PEB handling: 2 [ 3.535611] ubi1: background thread "ubi_bgt1d" started, PID 105 [ 3.536705] block ubiblock0_4: created from ubi0:4(rootfs) [ 3.550783] ubiblock: device ubiblock0_4 (rootfs) set to be root filesystem [ 3.561499] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. [ 3.562331] Freeing unused kernel memory: 1024K [ 3.589282] Run /sbin/init as init process [ 3.589304] with arguments: [ 3.589313] /sbin/init [ 3.589321] with environment: [ 3.589330] HOME=/ [ 3.589339] TERM=linux [ 3.589348] loader=u-boot [ 3.589356] part=bootkernel2 [ 4.016437] init: Console is alive [ 4.016639] init: - watchdog - [ 4.840312] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 4.955590] genirq: irq_chip msmgpio did not update eff. affinity mask of irq 51 [ 4.964481] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 4.965886] init: - preinit - [ 6.067918] ipq806x-gmac-dwmac 37600000.ethernet eth0: PHY [37000000.mdio-mii:02] driver [Qualcomm Atheros AR8031/AR8033] (irq=POLL) [ 6.069904] dwmac1000: Master AXI performs any burst length [ 6.078935] ipq806x-gmac-dwmac 37600000.ethernet eth0: No Safety Features support found [ 6.084353] ipq806x-gmac-dwmac 37600000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported [ 6.092617] ipq806x-gmac-dwmac 37600000.ethernet eth0: registered PTP clock [ 6.107125] ipq806x-gmac-dwmac 37600000.ethernet eth0: configuring for phy/sgmii link mode [ 8.181811] ipq806x-gmac-dwmac 37600000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 8.181879] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 10.345431] UBIFS (ubi0:5): Mounting in unauthenticated mode [ 10.345763] UBIFS (ubi0:5): background thread "ubifs_bgt0_5" started, PID 186 [ 10.513397] UBIFS (ubi0:5): UBIFS: mounted UBI device 0, volume 5, name "rootfs_data" [ 10.513434] UBIFS (ubi0:5): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 10.520305] UBIFS (ubi0:5): FS size: 18411520 bytes (17 MiB, 145 LEBs), journal size 1015809 bytes (0 MiB, 7 LEBs) [ 10.530189] UBIFS (ubi0:5): reserved for root: 869621 bytes (849 KiB) [ 10.540466] UBIFS (ubi0:5): media format: w5/r0 (latest is w5/r0), UUID 4E5C9C6B-679B-4AE1-A2FB-47DF8DEF9A1B, small LPT model [ 10.548362] mount_root: overlay filesystem has not been fully initialized yet [ 10.558598] mount_root: switching to ubifs overlay [ 10.929737] urandom-seed: Seed file not found (/etc/urandom.seed) [ 11.042282] ipq806x-gmac-dwmac 37600000.ethernet eth0: Link is Down [ 11.103783] procd: - early - [ 11.103992] procd: - watchdog - [ 11.661461] procd: - watchdog - [ 11.662320] procd: - ubus - [ 11.785938] procd: - init - [ 12.279449] kmodloader: loading kernel modules from /etc/modules.d/* [ 12.363692] urngd: v1.0.2 started. [ 12.386150] i2c-gpio i2c-gpio0: using lines 472 (SDA) and 473 (SCL) [ 12.389064] at24 0-0056: supply vcc not found, using dummy regulator [ 12.392058] at24 0-0056: 8192 byte 24c64 EEPROM, writable, 32 bytes/write [ 12.399612] Loading modules backported from Linux version v5.10.34-0-g0aa66717f684 [ 12.404502] Backport generated by backports.git v5.10.34-1-0-g7b5533e1 [ 12.414443] ina2xx 0-0040: power monitor ina219 (Rshunt = 40000 uOhm) [ 12.429935] xt_time: kernel timezone is -0000 [ 12.557157] PPP generic driver version 2.4.2 [ 12.558095] NET: Registered protocol family 24 [ 12.582182] ath10k_pci 0000:01:00.0: assign IRQ: got 42 [ 12.582212] ath10k 5.10 driver, optimized for CT firmware, probing pci device: 0x40. [ 12.582787] ath10k_pci 0000:01:00.0: enabling device (0140 -> 0142) [ 12.589186] ath10k_pci 0000:01:00.0: enabling bus mastering [ 12.589778] ath10k_pci 0000:01:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0 [ 13.810043] ath10k_pci 0000:01:00.0: qca99x0 hw2.0 target 0x01000000 chip_id 0x003801ff sub 168c:0002 [ 13.810111] ath10k_pci 0000:01:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0 [ 13.822978] ath10k_pci 0000:01:00.0: firmware ver 10.4b-ct-9980-fW-13-5ae337bb1 api 5 features mfp,peer-flow-ctrl,txstatus-noack,wmi-10.x-CT,ratemask-CT,regdump-CT,txrate-CT,flush-all-CT,pingpong-CT,ch-regs-CT,nop-CT,set-special-CT,tx-rc-CT,cust-stats-CT,txrate2-CT,beacon-cb-CT,wmi-block-ack-CT,wmi-bcn-rc-CT crc32 b36a12bf [ 13.927183] ath10k_pci 0000:01:00.0: board_file api 2 bmi_id 1:1 crc32 08fa09f2 [ 15.077100] ath10k_pci 0000:01:00.0: 10.4 wmi init: vdevs: 16 peers: 48 tid: 96 [ 15.077145] ath10k_pci 0000:01:00.0: msdu-desc: 2500 skid: 32 [ 15.153395] ath10k_pci 0000:01:00.0: wmi print 'P 48/48 V 16 K 144 PH 176 T 186 msdu-desc: 2500 sw-crypt: 0 ct-sta: 0' [ 15.154150] ath10k_pci 0000:01:00.0: wmi print 'free: 31080 iram: 23028 sram: 9596' [ 15.418051] ath10k_pci 0000:01:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal pre-cal-file max-sta 32 raw 0 hwcrypto 1 [ 15.511710] ath: EEPROM regdomain sanitized [ 15.511736] ath: EEPROM regdomain: 0x64 [ 15.511754] ath: EEPROM indicates we should expect a direct regpair map [ 15.511785] ath: Country alpha2 being used: 00 [ 15.511801] ath: Regpair used: 0x64 [ 15.517282] ath10k_pci 0001:01:00.0: assign IRQ: got 44 [ 15.517332] ath10k 5.10 driver, optimized for CT firmware, probing pci device: 0x40. [ 15.518689] ath10k_pci 0001:01:00.0: enabling device (0140 -> 0142) [ 15.524438] ath10k_pci 0001:01:00.0: enabling bus mastering [ 15.525315] ath10k_pci 0001:01:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0 [ 16.476921] ath10k_pci 0001:01:00.0: qca99x0 hw2.0 target 0x01000000 chip_id 0x003801ff sub 168c:0002 [ 16.476961] ath10k_pci 0001:01:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0 [ 16.487094] ath10k_pci 0001:01:00.0: firmware ver 10.4b-ct-9980-fW-13-5ae337bb1 api 5 features mfp,peer-flow-ctrl,txstatus-noack,wmi-10.x-CT,ratemask-CT,regdump-CT,txrate-CT,flush-all-CT,pingpong-CT,ch-regs-CT,nop-CT,set-special-CT,tx-rc-CT,cust-stats-CT,txrate2-CT,beacon-cb-CT,wmi-block-ack-CT,wmi-bcn-rc-CT crc32 b36a12bf [ 16.557930] ath10k_pci 0001:01:00.0: board_file api 2 bmi_id 1:2 crc32 08fa09f2 [ 17.707289] ath10k_pci 0001:01:00.0: 10.4 wmi init: vdevs: 16 peers: 48 tid: 96 [ 17.707334] ath10k_pci 0001:01:00.0: msdu-desc: 2500 skid: 32 [ 17.784917] ath10k_pci 0001:01:00.0: wmi print 'P 48/48 V 16 K 144 PH 176 T 186 msdu-desc: 2500 sw-crypt: 0 ct-sta: 0' [ 17.785642] ath10k_pci 0001:01:00.0: wmi print 'free: 31080 iram: 23028 sram: 9596' [ 18.063065] ath10k_pci 0001:01:00.0: htt-ver 2.2 wmi-op 6 htt-op 4 cal pre-cal-file max-sta 32 raw 0 hwcrypto 1 [ 18.161696] ath: EEPROM regdomain sanitized [ 18.161721] ath: EEPROM regdomain: 0x64 [ 18.161739] ath: EEPROM indicates we should expect a direct regpair map [ 18.161770] ath: Country alpha2 being used: 00 [ 18.161786] ath: Regpair used: 0x64 [ 18.167247] ath10k_pci 0002:01:00.0: assign IRQ: got 46 [ 18.167300] ath10k 5.10 driver, optimized for CT firmware, probing pci device: 0x50. [ 18.168745] ath10k_pci 0002:01:00.0: enabling device (0140 -> 0142) [ 18.174405] ath10k_pci 0002:01:00.0: enabling bus mastering [ 18.175159] ath10k_pci 0002:01:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0 [ 19.277701] ath10k_pci 0002:01:00.0: qca9887 hw1.0 target 0x4100016d chip_id 0x004000ff sub 0000:0000 [ 19.277776] ath10k_pci 0002:01:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0 [ 19.287865] ath10k_pci 0002:01:00.0: firmware ver 10.1-ct-87-__fW-022-ecad3248 api 2 features wmi-10.x,has-wmi-mgmt-tx,mfp,txstatus-noack,wmi-10.x-CT,ratemask-CT,txrate-CT,get-temp-CT,tx-rc-CT,cust-stats-CT,retry-gt2-CT,txrate2-CT,beacon-cb-CT,wmi-block-ack-CT crc32 61a92df5 [ 19.359883] ath10k_pci 0002:01:00.0: board_file api 1 bmi_id N/A crc32 546cca0d [ 20.226968] ath10k_pci 0002:01:00.0: 10.1 wmi init: vdevs: 16 peers: 127 tid: 256 [ 20.233996] ath10k_pci 0002:01:00.0: wmi print 'P 128 V 8 T 410' [ 20.234035] ath10k_pci 0002:01:00.0: wmi print 'msdu-desc: 1424 sw-crypt: 0 ct-sta: 0' [ 20.240062] ath10k_pci 0002:01:00.0: wmi print 'alloc rem: 25560 iram: 24780' [ 20.279738] ath10k_pci 0002:01:00.0: htt-ver 2.1 wmi-op 2 htt-op 2 cal file max-sta 128 raw 0 hwcrypto 1 [ 20.289053] ath10k_pci 0002:01:00.0: NOTE: Firmware DBGLOG output disabled in debug_mask: 0x10000000 [ 20.409823] ath: EEPROM regdomain sanitized [ 20.409841] ath: EEPROM regdomain: 0x64 [ 20.409851] ath: EEPROM indicates we should expect a direct regpair map [ 20.409870] ath: Country alpha2 being used: 00 [ 20.409880] ath: Regpair used: 0x64 [ 20.417144] kmodloader: done loading kernel modules from /etc/modules.d/* [ 25.445095] ipq806x-gmac-dwmac 37600000.ethernet eth0: PHY [37000000.mdio-mii:02] driver [Qualcomm Atheros AR8031/AR8033] (irq=POLL) [ 25.446864] dwmac1000: Master AXI performs any burst length [ 25.456513] ipq806x-gmac-dwmac 37600000.ethernet eth0: No Safety Features support found [ 25.461547] ipq806x-gmac-dwmac 37600000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported [ 25.469826] ipq806x-gmac-dwmac 37600000.ethernet eth0: registered PTP clock [ 25.478427] ipq806x-gmac-dwmac 37600000.ethernet eth0: configuring for phy/sgmii link mode [ 25.487475] br-lan: port 1(eth0) entered blocking state [ 25.494006] br-lan: port 1(eth0) entered disabled state [ 25.499439] device eth0 entered promiscuous mode [ 26.196333] ath: EEPROM regdomain: 0x824f [ 26.196358] ath: EEPROM indicates we should expect a country code [ 26.199423] ath: doing EEPROM country->regdmn map search [ 26.205413] ath: country maps to regdmn code: 0x10 [ 26.210856] ath: Country alpha2 being used: PA [ 26.215381] ath: Regpair used: 0x10 [ 26.219892] ath: regdomain 0x824f dynamically updated by user [ 26.223208] ath: EEPROM regdomain: 0x824f [ 26.229162] ath: EEPROM indicates we should expect a country code [ 26.233100] ath: doing EEPROM country->regdmn map search [ 26.239300] ath: country maps to regdmn code: 0x10 [ 26.244551] ath: Country alpha2 being used: PA [ 26.249216] ath: Regpair used: 0x10 [ 26.253570] ath: regdomain 0x824f dynamically updated by user [ 26.256985] ath: EEPROM regdomain: 0x824f [ 26.262930] ath: EEPROM indicates we should expect a country code [ 26.266854] ath: doing EEPROM country->regdmn map search [ 26.272990] ath: country maps to regdmn code: 0x10 [ 26.278310] ath: Country alpha2 being used: PA [ 26.282990] ath: Regpair used: 0x10 [ 26.287340] ath: regdomain 0x824f dynamically updated by user [ 27.700688] ipq806x-gmac-dwmac 37600000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 28.944549] ath10k_pci 0001:01:00.0: 10.4 wmi init: vdevs: 16 peers: 48 tid: 96 [ 28.944594] ath10k_pci 0001:01:00.0: msdu-desc: 2500 skid: 32 [ 29.021881] ath10k_pci 0001:01:00.0: wmi print 'P 48/48 V 16 K 144 PH 176 T 186 msdu-desc: 2500 sw-crypt: 0 ct-sta: 0' [ 29.022624] ath10k_pci 0001:01:00.0: wmi print 'free: 31080 iram: 23028 sram: 9596' [ 29.403867] ath10k_pci 0001:01:00.0: rts threshold -1 [ 29.411174] ath10k_pci 0001:01:00.0: Firmware lacks feature flag indicating a retry limit of > 2 is OK, requested limit: 4 [ 29.412370] br-lan: port 1(eth0) entered blocking state [ 29.421231] br-lan: port 1(eth0) entered forwarding state [ 29.431757] br-lan: port 2(wlan1) entered blocking state [ 29.431814] br-lan: port 2(wlan1) entered disabled state [ 29.437715] device wlan1 entered promiscuous mode [ 29.443233] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready [ 30.751655] ath10k_pci 0000:01:00.0: 10.4 wmi init: vdevs: 16 peers: 48 tid: 96 [ 30.751699] ath10k_pci 0000:01:00.0: msdu-desc: 2500 skid: 32 [ 30.827801] ath10k_pci 0000:01:00.0: wmi print 'P 48/48 V 16 K 144 PH 176 T 186 msdu-desc: 2500 sw-crypt: 0 ct-sta: 0' [ 30.828556] ath10k_pci 0000:01:00.0: wmi print 'free: 31080 iram: 23028 sram: 9596' [ 31.180119] ath10k_pci 0000:01:00.0: rts threshold -1 [ 31.181611] ath10k_pci 0000:01:00.0: Firmware lacks feature flag indicating a retry limit of > 2 is OK, requested limit: 4 [ 31.191498] br-lan: port 3(wlan0) entered blocking state [ 31.195102] br-lan: port 3(wlan0) entered disabled state [ 31.200967] device wlan0 entered promiscuous mode [ 31.903038] IPv6: ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready [ 31.903454] br-lan: port 2(wlan1) entered blocking state [ 31.908495] br-lan: port 2(wlan1) entered forwarding state [ 31.924332] br-lan: port 4(wlan1-1) entered blocking state [ 31.924368] br-lan: port 4(wlan1-1) entered disabled state [ 31.928946] device wlan1-1 entered promiscuous mode [ 31.939154] ath10k_pci 0001:01:00.0: rts threshold -1 [ 31.941863] br-lan: port 4(wlan1-1) entered blocking state [ 31.944168] br-lan: port 4(wlan1-1) entered forwarding state [ 32.002638] ath10k_pci 0001:01:00.0: failed to pull fw stats: -71 [ 32.034876] ath10k_pci 0001:01:00.0: wmi: fixing invalid VHT TX rate code 0xff [ 33.056739] IPv6: ADDRCONF(NETDEV_CHANGE): wlan1-1: link becomes ready [ 33.401619] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready [ 33.401873] br-lan: port 3(wlan0) entered blocking state [ 33.407092] br-lan: port 3(wlan0) entered forwarding state [ 33.418204] br-lan: port 5(wlan0-1) entered blocking state [ 33.418258] br-lan: port 5(wlan0-1) entered disabled state [ 33.423735] device wlan0-1 entered promiscuous mode [ 33.431703] ath10k_pci 0000:01:00.0: rts threshold -1 [ 33.439749] br-lan: port 5(wlan0-1) entered blocking state [ 33.439781] br-lan: port 5(wlan0-1) entered forwarding state [ 33.499322] ath10k_pci 0000:01:00.0: failed to pull fw stats: -71 [ 34.573680] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0-1: link becomes ready


Space for additional notes, links to forum threads or other resources.

  • ...

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
  • Last modified: 2025/07/26 06:35
  • by olewales