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

COPY HERE THE BOOTLOG WITH THE ORIGINAL FIRMWARE


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: 2024/02/12 11:13
  • by 127.0.0.1