| Both sides previous revision Previous revision Next revision | Previous revision |
| toh:qihoo:360t7_1.0 [2024/04/05 02:20] – [OEM installation using the TFTP method] specify which NANDs are safe to flash hazuki | toh:qihoo:360t7_1.0 [2024/12/18 14:50] (current) – [Info] frollic |
|---|
| |
| </WRAP> | </WRAP> |
| |
| REF 1: https://www.right.com.cn/forum/thread-8295833-1-1.html | |
| |
| REF 2: https://www.right.com.cn/FORUM/thread-8278255-1-1.html | |
| |
| REF 3: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=dc2d4d73939c3d86a8e9d968c5c3462f92771bc6 | |
| |
| REF 1 and 2 are in Chinese. Use Google translate. | |
| |
| |
| 1. Software preparation | 1. Software preparation |
| a. Putty | a. Putty |
| b. tftpd64 | b. tftpd64 |
| c. (optional for mtd backup) nc | |
| |
| <WRAP center round alert 100%> | <WRAP center round alert 100%> |
| **STOP!** | **STOP!** |
| |
| If your router is using Gigadevice 5F1GM7UE NAND (and possibly all Gigadevice NAND), DO NOT ATTEMPT to continue on this guide. [[https://www.right.com.cn/FORUM/thread-8341667-1-2.html|Updating firmware to 360T7-v4.2.4.7959 will hardbrick your device]]. If you did so, the only known method to unbrick is to flash the NAND with a programmer. | If your router is using Gigadevice 5F1GM7UE NAND (and possibly all Gigadevice NAND), DO NOT ATTEMPT to continue on this guide. [[https://www.right.com.cn/FORUM/thread-8341667-1-2.html|Updating firmware to 360T7-v4.2.4.7959 will hardbrick your device]]. Instead, you need to flash u-boot and firmware with mtk_uartboot over UART. |
| |
| Routers with ESMT F50L1G41LB, Winbond W25N01GV or Winbond W25N01KV NAND can ignore this warning. | Routers with ESMT F50L1G41LB, Winbond W25N01GV or Winbond W25N01KV NAND can ignore this warning. |
| 4. Enter failsafe mode by pressing ''f'' and ''Enter''. | 4. Enter failsafe mode by pressing ''f'' and ''Enter''. |
| |
| 5. Type ''fw_setenv bootmenu_delay 3'', then reboot. | 5. Connect to your PC via one of the LAN port of the router, set a static ip on the ethernet interface of your PC. (ip 192.168.1.254) |
| |
| 6. (Optional) Back up all mtd partitions before flashing. (Skip this if you do not know how) | 6. Start tftpd64 with the following 4 files at its root directory: |
| | <code> |
| | openwrt-mediatek-filogic-qihoo_360t7-bl31-uboot.fip |
| | openwrt-mediatek-filogic-qihoo_360t7-initramfs-recovery.itb |
| | openwrt-mediatek-filogic-qihoo_360t7-preloader.bin |
| | openwrt-mediatek-filogic-qihoo_360t7-squashfs-sysupgrade.itb |
| | </code> |
| |
| 7. Connect to your PC via one of the LAN port of the router, set a static ip on the ethernet interface of your PC. (ip 192.168.1.254) | 7. Back up mtd partitions via tftp: |
| | <code> |
| | ifconfig eth0 192.168.1.1 netmask 255.255.255.0 up |
| | for i in $(seq 1 10); do tftp -p -l /dev/mtdblock$i -r mtd${i}.bin 192.168.1.254 ; done |
| | </code> |
| |
| 8. In official firmware bootmenu, select "Upgrade ATF FIP", then use this file: ''openwrt-mediatek-filogic-qihoo_360t7-bl31-uboot.fip'' from [[https://firmware-selector.openwrt.org/?version=SNAPSHOT&target=mediatek%2Ffilogic&id=qihoo_360t7|OpenWrt Firmware Selector]]. Put the file in TFTP server. I personally recommend SNAPSHOT for better support. | 8. check if eeprom is at the right place. It should start with 81 79 like the following: |
| | <code> |
| | hexdump -C -s 1572864 -n 256 /dev/mtdblock0 |
| | 00180000 81 79 00 00 00 0c 43 49 c3 57 00 00 00 00 00 00 |.y....CI.W......| |
| | 00180010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| |
| | 00180020 00 00 00 00 02 0c 43 49 c3 58 00 0c 43 49 c3 58 |......CI.X..CI.X| |
| | 00180030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| |
| | </code> |
| |
| 9. Reboot to OpenWrt bootmenu, select "Flash BL2 preloader and write NAND" , then use this file: ''openwrt-mediatek-filogic-qihoo_360t7-preloader.bin'' from [[https://firmware-selector.openwrt.org/?version=SNAPSHOT&target=mediatek%2Ffilogic&id=qihoo_360t7|OpenWrt Firmware Selector]]. I personally recommend SNAPSHOT for better support. (If you are severely affected by failing TX, you may consider to skip this step.) | If it's not, you will need to flash Factory/config/factory partitions back after firmware is flashed. |
| |
| <WRAP center round alert 100%> | 9. Flash BL2 and FIP: |
| **STOP!** | <code> |
| | root@(none):/# cd /tmp |
| | root@(none):/tmp# tftp -g -l bl2.bin -r openwrt-mediatek-filogic-qihoo_360t7-preloader.bin 192.168.1.254 |
| | root@(none):/tmp# tftp -g -l fip.fip -r openwrt-mediatek-filogic-qihoo_360t7-bl31-uboot.fip 192.168.1.254 |
| | root@(none):/tmp# mtd -p 0x380000 write fip.fip spi0.0 |
| | Unlocking spi0.0 ... |
| | Seeking on mtd device 'spi0.0' to: 3670016 |
| |
| If your router is using Winbond W25N01KV NAND, follow step [[#Self compiling a OpenWrt firmware|C1-C4]] below before continue! Otherwise you will see a message "spi-nand spi0.0: unknown raw ID efae2100" in UART and softbrick your router. | Writing from fip.fip to spi0.0 ... |
| | root@(none):/tmp# mtd -r write bl2.bin spi0.0 |
| | Unlocking spi0.0 ... |
| |
| Routers with ESMT F50L1G41LB or Winbond W25N01GV NAND can ignore this warning. | Writing from bl2.bin to spi0.0 ... |
| </WRAP> | Rebooting ... |
| | </code> |
| |
| 11. Reset and u-boot will self-retrieve recovery file ''openwrt-mediatek-filogic-qihoo_360t7-initramfs-recovery.itb'' from TFTP Server (ip 192.168.1.254). | 10. Reset and u-boot will self-retrieve recovery file ''openwrt-mediatek-filogic-qihoo_360t7-initramfs-recovery.itb'' from TFTP Server (ip 192.168.1.254). |
| |
| 12. Login to http://192.168.1.1 and upload file ''openwrt-mediatek-filogic-qihoo_360t7-squashfs-sysupgrade.itb'' for sysupgrade. Please note if you are using SNAPSHOT, LuCI (Web interface) is not included. Please refer to [[docs:guide-user:luci:luci.essentials]] on installing LuCI. | 11. Login to http://192.168.1.1 and upload file ''openwrt-mediatek-filogic-qihoo_360t7-squashfs-sysupgrade.itb'' for sysupgrade. Please note if you are using SNAPSHOT, LuCI (Web interface) is not included. Please refer to [[docs:guide-user:luci:luci.essentials]] on installing LuCI. |
| |
| You may take reference from [[toh:jcg:q30_pro]]. Both routers are pretty much similar. | 12. If uboot has problems, as a last resort, you can use [[https://github.com/981213/mtk_uartboot|mtk_uartboot]] to fix it. The operation of mtk_uartboot does not depend on uboot. |
| |
| | You may take reference from [[toh:jcg:q30_pro]]. Both routers are pretty much similar. |
| |
| ===Self compiling a OpenWrt firmware=== | |
| |
| As of 30 March 2024, while OpenWrt u-boot supports W25N01KV NAND (in SNAPSHOT, might be 23.05.3 too - not tested), OpenWrt OS does not. As such, we have to apply patch and build OpenWrt ourselves. | |
| |
| C1. Check [[docs:guide-developer:toolchain:use-buildsystem]] and compile a successful 360T7 SNAPSHOT without error. | |
| |
| C2. Credit to ImmortalWRT they provided a patch file in [[https://github.com/immortalwrt/immortalwrt/blob/master/target/linux/mediatek/patches-6.1/341-mtd-spinand-winbond-Support-for-W25MxxGV-W25NxxKV-se.patch|github]] . Download that file and place it in <buildroot>/target/linux/mediatek/patches-6.1 (or from [[https://github.com/immortalwrt/immortalwrt/blob/master/target/linux/mediatek/patches-6.6/341-mtd-spinand-winbond-Support-for-W25MxxGV-W25NxxKV-se.patch|github]] to <buildroot>/target/linux/mediatek/patches-6.6 if you are using test kernel). | |
| |
| C3. Compile again after clean (i.e. "make clean") and other necessary steps as prescribed in Build system usage. | |
| |
| C4. Retrieve ''openwrt-mediatek-filogic-qihoo_360t7-initramfs-recovery.itb'' and ''openwrt-mediatek-filogic-qihoo_360t7-squashfs-sysupgrade.itb'' and continue from step 11 above. | |
| |
| ===== Upgrading OpenWrt ===== | ===== Upgrading OpenWrt ===== |
| ===== Hardware ===== | ===== Hardware ===== |
| ==== Info ==== | ==== Info ==== |
| <WRAP BOX> | <!-- ToH: { |
| FIXME | "source": "json", |
| - This table is automatically generated, **once the correct filters for Brand and Model are set.** | "dom": "t", |
| - If you see "Nothing." instead of a table, please **edit this section and adjust the filters with the proper Brand and Model.** Just try, it's easy. | "paging": false, |
| - If you still don't see a table here, or a table filled with '¿': [[toh:start|Is there already a Techdata page available]] for Qihoo 360T7 1.0? If not: [[meta:create_new_dataentry_page|Create one]]. | "rotate": true, |
| - If you see a table with the desired device data, everything is OK and you can delete this text and the ''<nowiki><WRAP></nowiki>'' that encloses it. | "shownColumns": ["brand", "model", "version", "devicetype", "availability", "supportedsincecommit", "supportedsincerel", "supportedcurrentrel", "unsupported_functions", "bootloader", "cpu", "target", "cpumhz", "flashmb", "rammb", "switch", "ethernet100mports", "ethernet1gports", "ethernet2_5gports", "commentsnetworkports", "modem", "vlan", "wlan24ghz", "wlan50ghz", "wlanhardware", "wlancomments", "detachableantennas", "usbports", "serial", "jtag", "ledcount", "buttoncount", "powersupply", "deviceid", "owrt_forum_topic_url", "wikideviurl", "oemdevicehomepageurl", "firmwareopenwrtinstallurl", "firmwareopenwrtupgradeurl", "comments"], |
| - If it still doesn't work: Don't panic, calm down, take a deep breath and [[:contact|contact a wiki admin]] (tmomas) for help. | "filterColumns": {"brand": "^Qihoo$", "model": "^360T7$", "version": "^1.0$"} |
| </WRAP> | } --> |
| |
| ---- datatemplatelist dttpllist ---- | |
| template: meta:template_datatemplatelist | |
| cols : Brand, Model, Versions, Device Type, Availability, Supported Since Commit_git, Supported since Rel, Supported current Rel, Unsupported, Bootloader, CPU, Target, CPU MHz, Flash MBs, RAM MB, Switch, Ethernet 100M ports_, Ethernet Gbit ports_, Comments network ports_, Modem, VLAN, WLAN 2.4GHz, WLAN 5.0GHz, WLAN Hardwares, WLAN Comments_, Detachable Antennas_, USB ports_, SATA ports_, Comments USB SATA ports_, Serial, JTAG, LED count, Button count, Power supply, Device Techdata_pageid, Forum topic URL_url, wikidevi URL_url, OEM Device Homepage URL_url, Firmware OEM Stock URL_url, Firmware OpenWrt Install URL_url, Firmware OpenWrt Upgrade URL_url, Comments_ | |
| filter : Brand=Qihoo | |
| filter : Model=360T7 | |
| filter : Versions=1.0 | |
| ---- | |
| |
| ==== Photos ==== | ==== Photos ==== |
| ==== OEM bootlog ==== | ==== OEM bootlog ==== |
| <WRAP bootlog> | <WRAP bootlog> |
| <nowiki>COPY HERE THE BOOTLOG WITH THE ORIGINAL FIRMWARE</nowiki> | <nowiki> |
| | F0: 102B 0000 |
| | FA: 1040 0000 |
| | FA: 1040 0000 [0200] |
| | F9: 0000 0000 |
| | V0: 0000 0000 [0001] |
| | 00: 0000 0000 |
| | BP: 2400 0041 [0000] |
| | G0: 1190 0000 |
| | EC: 0000 0000 [1000] |
| | T0: 0000 0256 [010F] |
| | Jump to BL |
| | |
| | NOTICE: BL2: v2.6(release):t7_4.2.3.6542_20220519-2-ga48f125a |
| | NOTICE: BL2: Built : 03:03:12, May 25 2022 |
| | NOTICE: WDT: disabled |
| | NOTICE: EMI: Using DDR3 settings |
| | |
| | dump toprgu registers data: |
| | 1001c000 | 00000000 0000ffe0 00000000 00000000 |
| | 1001c010 | 00000fff 00000000 00f00000 00000000 |
| | 1001c020 | 00000000 00000000 00000000 00000000 |
| | 1001c030 | 003c0003 003c0003 00000000 00000000 |
| | 1001c040 | 00000000 00000000 00000000 00000000 |
| | 1001c050 | 00000000 00000000 00000000 00000000 |
| | 1001c060 | 00000000 00000000 00000000 00000000 |
| | 1001c070 | 00000000 00000000 00000000 00000000 |
| | 1001c080 | 00000000 00000000 00000000 00000000 |
| | |
| | dump drm registers data: |
| | 1001d000 | 00000000 00000000 00000000 00000000 |
| | 1001d010 | 00000000 00000000 00000000 00000000 |
| | 1001d020 | 00000000 00000000 00000000 00000000 |
| | 1001d030 | 00a083f1 000003ff 00100000 00000000 |
| | 1001d040 | 00000000 00000000 00020303 000000ff |
| | 1001d050 | 00000000 00000000 00000000 00000000 |
| | 1001d060 | 00000002 00000000 00000000 00000000 |
| | drm: 500 = 0x8 |
| | [DDR Reserve] ddr reserve mode not be enabled yet |
| | DDR RESERVE Success 0 |
| | [EMI] ComboMCP not ready, using default setting |
| | BYTE_swap:0 |
| | BYTE_swap:0 |
| | Window Sum 604, worse bit 5, min window 72 |
| | Window Sum 644, worse bit 8, min window 80 |
| | Window Sum 522, worse bit 6, min window 62 |
| | Window Sum 474, worse bit 11, min window 56 |
| | Window Sum 524, worse bit 1, min window 64 |
| | Window Sum 480, worse bit 15, min window 56 |
| | Window Sum 492, worse bit 15, min window 58 |
| | Window Sum 530, worse bit 0, min window 66 |
| | Window Sum 494, worse bit 9, min window 60 |
| | Window Sum 496, worse bit 9, min window 60 |
| | Window Sum 500, worse bit 8, min window 60 |
| | NOTICE: EMI: Detected DRAM size: 256MB |
| | NOTICE: EMI: complex R/W mem test passed |
| | NOTICE: CPU: MT7981 (1300MHz) |
| | NOTICE: SPI_NAND parses attributes from parameter page. |
| | NOTICE: SPI_NAND Detected ID 0xc8 |
| | NOTICE: Page size 2048, Block size 131072, size 134217728 |
| | NOTICE: Initializing NMBM ... |
| | NOTICE: Signature found at block 1023 [0x07fe0000] |
| | NOTICE: First info table with writecount 0 found in block 976 |
| | NOTICE: Second info table with writecount 0 found in block 979 |
| | NOTICE: NMBM has been successfully attached in read-only mode |
| | NOTICE: BL2: Booting BL31 |
| | NOTICE: BL31: v2.6(release):t7_4.2.3.6542_20220519-2-ga48f125a |
| | NOTICE: BL31: Built : 03:03:16, May 25 2022 |
| | NOTICE: Hello BL31!!! |
| | |
| | |
| | U-Boot 2022.04 (May 25 2022 - 03:02:21 +0000) |
| | |
| | CPU: MediaTek MT7981 |
| | Model: mt7981-rfb |
| | DRAM: 256 MiB |
| | Core: 32 devices, 13 uclasses, devicetree: embed |
| | |
| | Initializing NMBM ... |
| | spi-nand: spi_nand spi_nand@0: GigaDevice SPI NAND was found. |
| | spi-nand: spi_nand spi_nand@0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 |
| | Could not find a valid device for nmbm0 |
| | Signature found at block 1023 [0x07fe0000] |
| | First info table with writecount 0 found in block 976 |
| | Second info table with writecount 0 found in block 979 |
| | NMBM has been successfully attached |
| | |
| | Loading Environment from MTD... OK |
| | In: serial@11002000 |
| | Out: serial@11002000 |
| | Err: serial@11002000 |
| | Net: |
| | Warning: ethernet@15100000 (eth0) using random MAC address - de:26:f5:cb:6c:60 |
| | eth0: ethernet@15100000 |
| | |
| | welcome to the boot loader! |
| | ubi0: attaching mtd6 |
| | ubi0: scanning is finished |
| | ubi0: attached mtd6 (name "ubi", size 36 MiB) |
| | ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes |
| | ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 |
| | ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 |
| | ubi0: good PEBs: 288, bad PEBs: 0, corrupted PEBs: 0 |
| | ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 |
| | ubi0: max/mean erase counter: 2/0, WL threshold: 4096, image sequence number: 1658219190 |
| | ubi0: available PEBs: 0, total reserved PEBs: 288, PEBs reserved for bad PEB handling: 20 |
| | Reading from volume 'kernel' to 0x46000000, size 0x326000 ... OK |
| | get_firmware_mtd_info 754 3301376 |
| | Reading from volume 'rootfs' to 0x46326000, size 0x122a000 ... OK |
| | Fit image detected... |
| | img_verify 680 3301376 |
| | ## Checking hash(es) for FIT Image at 46000000 ... |
| | Hash(es) for Image 0 (kernel-1): crc32+ sha1+ |
| | Hash(es) for Image 1 (fdt-1): crc32+ sha1+ |
| | img_verify 690 3301376 |
| | data: 7adb9af3 18974454 1658246831 |
| | data: 7adb9af3 18974454 1658246831 |
| | ubi0: detaching mtd6 |
| | ubi0: mtd6 is detached |
| | ubi0: attaching mtd7 |
| | ubi0: scanning is finished |
| | ubi0: attached mtd7 (name "firmware-1", size 36 MiB) |
| | ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes |
| | ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 |
| | ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 |
| | ubi0: good PEBs: 288, bad PEBs: 0, corrupted PEBs: 0 |
| | ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 |
| | ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 1658219190 |
| | ubi0: available PEBs: 0, total reserved PEBs: 288, PEBs reserved for bad PEB handling: 20 |
| | Reading from volume 'kernel' to 0x48800000, size 0x326000 ... OK |
| | get_firmware_mtd_info 754 3301376 |
| | Reading from volume 'rootfs' to 0x48b26000, size 0x122a000 ... OK |
| | Fit image detected... |
| | img_verify 680 3301376 |
| | ## Checking hash(es) for FIT Image at 48800000 ... |
| | Hash(es) for Image 0 (kernel-1): crc32+ sha1+ |
| | Hash(es) for Image 1 (fdt-1): crc32+ sha1+ |
| | img_verify 690 3301376 |
| | data: 7adb9af3 18974454 1658246831 |
| | data: 7adb9af3 18974454 1658246831 |
| | flash offset:580000 2980000 |
| | Image1 time:1658246831 is OK. Image2 time:1658246831 is OK |
| | ## Loading kernel from FIT Image at 46000000 ... |
| | Using 'config-1' configuration |
| | Trying 'kernel-1' kernel subimage |
| | Description: ARM64 OpenWrt Linux-5.4.188 |
| | Type: Kernel Image |
| | Compression: lzma compressed |
| | Data Start: 0x46000130 |
| | Data Size: 3159735 Bytes = 3 MiB |
| | Architecture: AArch64 |
| | OS: Linux |
| | Load Address: 0x48080000 |
| | Entry Point: 0x48080000 |
| | Hash algo: crc32 |
| | Hash value: a32453c8 |
| | Hash algo: sha1 |
| | Hash value: e60f07acd2182fbb6f1fcaecd264d7d42e67c4ca |
| | Verifying Hash Integrity ... crc32+ sha1+ OK |
| | ## Loading fdt from FIT Image at 46000000 ... |
| | Using 'config-1' configuration |
| | Trying 'fdt-1' fdt subimage |
| | Description: ARM64 OpenWrt mt7981-spim-nand-rfb device tree blob |
| | Type: Flat Device Tree |
| | Compression: uncompressed |
| | Data Start: 0x4630392c |
| | Data Size: 18208 Bytes = 17.8 KiB |
| | Architecture: AArch64 |
| | Hash algo: crc32 |
| | Hash value: 75111b35 |
| | Hash algo: sha1 |
| | Hash value: 240753b4bc52f2e282e8c3f84745a533dbedba6b |
| | Verifying Hash Integrity ... crc32+ sha1+ OK |
| | Booting using the fdt blob at 0x4630392c |
| | Uncompressing Kernel Image |
| | Loading Device Tree to 000000004f7f1000, end 000000004f7f871f ... OK |
| | |
| | Starting kernel ... |
| | |
| | [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] |
| | [ 0.000000] Linux version 5.4.188+ (root@9dee51984c13) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r16304-f1f304940b)) #0 SMP Tue Jul 19 08:26:30 2022 |
| | [ 0.000000] Machine model: MediaTek MT7981 RFB |
| | [ 0.000000] earlycon: uart8250 at MMIO32 0x0000000011002000 (options '') |
| | [ 0.000000] printk: bootconsole [uart8250] enabled |
| | [ 0.000000] On node 0 totalpages: 64592 |
| | [ 0.000000] DMA32 zone: 1024 pages used for memmap |
| | [ 0.000000] DMA32 zone: 0 pages reserved |
| | [ 0.000000] DMA32 zone: 64592 pages, LIFO batch:15 |
| | [ 0.000000] psci: probing for conduit method from DT. |
| | [ 0.000000] psci: PSCIv1.1 detected in firmware. |
| | [ 0.000000] psci: Using standard PSCI v0.2 function IDs |
| | [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. |
| | [ 0.000000] psci: SMC Calling Convention v1.0 |
| | [ 0.000000] percpu: Embedded 20 pages/cpu s43800 r8192 d29928 u81920 |
| | [ 0.000000] pcpu-alloc: s43800 r8192 d29928 u81920 alloc=20*4096 |
| | [ 0.000000] pcpu-alloc: [0] 0 [0] 1 |
| | [ 0.000000] Detected VIPT I-cache on CPU0 |
| | [ 0.000000] CPU features: detected: GIC system register CPU interface |
| | [ 0.000000] CPU features: kernel page table isolation disabled by kernel configuration |
| | [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 63568 |
| | [ 0.000000] Kernel command line: mtdparts=nmbm_spim_nand:1024k(bl2),512k(u-boot-env),2048k(Factory),2048k(fip),36M(ubi),36M(firmware-1),36M(plugin),1M(config),512k(factory),7M(log) console=ttyS0,115200n1 loglevel=8 earlycon=uart8250,mmio32,0x11002000 |
| | [ 0.000000] Dentry cache hash table entries: 32768 (order: 6, 262144 bytes, linear) |
| | [ 0.000000] Inode-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) |
| | [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off |
| | [ 0.000000] Memory: 230816K/258368K available (6526K kernel code, 442K rwdata, 1832K rodata, 448K init, 647K bss, 27552K reserved, 0K cma-reserved) |
| | [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 |
| | [ 0.000000] rcu: Hierarchical RCU implementation. |
| | [ 0.000000] rcu: CONFIG_RCU_FANOUT set to non-default value of 32. |
| | [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. |
| | [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 |
| | [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode |
| | [ 0.000000] GICv3: 640 SPIs implemented |
| | [ 0.000000] GICv3: 0 Extended SPIs implemented |
| | [ 0.000000] GICv3: Distributor has no Range Selector support |
| | [ 0.000000] GICv3: 16 PPIs implemented |
| | [ 0.000000] GICv3: no VLPI support, no direct LPI support |
| | [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000c080000 |
| | [ 0.000000] random: get_random_bytes called from start_kernel+0x2d4/0x420 with crng_init=0 |
| | [ 0.000000] arch_timer: cp15 timer(s) running at 13.00MHz (phys). |
| | [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2ff89eacb, max_idle_ns: 440795202429 ns |
| | [ 0.000003] sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns |
| | [ 0.008182] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=52000) |
| | [ 0.018501] pid_max: default: 32768 minimum: 301 |
| | [ 0.023221] Mount-cache hash table entries: 512 (order: 0, 4096 bytes, linear) |
| | [ 0.030482] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes, linear) |
| | [ 0.039040] ASID allocator initialised with 65536 entries |
| | [ 0.044541] rcu: Hierarchical SRCU implementation. |
| | [ 0.049638] smp: Bringing up secondary CPUs ... |
| | [ 0.054486] Detected VIPT I-cache on CPU1 |
| | [ 0.054506] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 |
| | [ 0.054528] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] |
| | [ 0.054591] smp: Brought up 1 node, 2 CPUs |
| | [ 0.076205] SMP: Total of 2 processors activated. |
| | [ 0.080931] CPU features: detected: 32-bit EL0 Support |
| | [ 0.086093] CPU features: detected: CRC32 instructions |
| | [ 0.091362] CPU: All CPU(s) started at EL2 |
| | [ 0.095484] alternatives: patching kernel code |
| | [ 0.102254] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns |
| | [ 0.112066] futex hash table entries: 512 (order: 3, 32768 bytes, linear) |
| | [ 0.118965] pinctrl core: initialized pinctrl subsystem |
| | [ 0.124746] NET: Registered protocol family 16 |
| | [ 0.129435] DMA: preallocated 256 KiB pool for atomic allocations |
| | [ 0.149362] SCSI subsystem initialized |
| | [ 0.153294] libata version 3.00 loaded. |
| | [ 0.158019] rbus 18000000.wbsys: PCI host bridge to bus 0000:00 |
| | [ 0.164017] pci_bus 0000:00: root bus resource [mem 0x18000000-0x18ffffff] |
| | [ 0.170937] pci_bus 0000:00: root bus resource [bus 00-ff] |
| | [ 0.176451] pci_bus 0000:00: scanning bus |
| | [ 0.180492] pci 0000:00:00.0: [14c3:7981] type 00 class 0x000280 |
| | [ 0.186538] pci 0000:00:00.0: reg 0x10: [mem 0x18000000-0x1800000f 64bit] |
| | [ 0.193361] pci 0000:00:00.0: reg 0x18: [mem 0x00000000-0x0000000f] |
| | [ 0.199659] pci 0000:00:00.0: reg 0x1c: [mem 0x00000000-0x0000000f] |
| | [ 0.205957] pci 0000:00:00.0: reg 0x20: [mem 0x00000000-0x0000000f] |
| | [ 0.212255] pci 0000:00:00.0: reg 0x24: [mem 0x00000000-0x0000000f] |
| | [ 0.219490] pci_bus 0000:00: fixups for bus |
| | [ 0.223698] pci_bus 0000:00: bus scan returning with max=00 |
| | [ 0.230202] clocksource: Switched to clocksource arch_sys_counter |
| | [ 0.236919] thermal_sys: Registered thermal governor 'fair_share' |
| | [ 0.236922] thermal_sys: Registered thermal governor 'bang_bang' |
| | [ 0.243062] thermal_sys: Registered thermal governor 'step_wise' |
| | [ 0.249099] thermal_sys: Registered thermal governor 'user_space' |
| | [ 0.255134] thermal_sys: Registered thermal governor 'power_allocator' |
| | [ 0.261488] NET: Registered protocol family 2 |
| | [ 0.272497] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear) |
| | [ 0.280012] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear) |
| | [ 0.288420] TCP established hash table entries: 2048 (order: 2, 16384 bytes, linear) |
| | [ 0.296221] TCP bind hash table entries: 2048 (order: 3, 32768 bytes, linear) |
| | [ 0.303414] TCP: Hash tables configured (established 2048 bind 2048) |
| | [ 0.309858] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) |
| | [ 0.316428] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) |
| | [ 0.323509] NET: Registered protocol family 1 |
| | [ 0.327908] PCI: CLS 0 bytes, default 64 |
| | [ 0.332652] workingset: timestamp_bits=46 max_order=16 bucket_order=0 |
| | [ 0.342048] squashfs: version 4.0 (2009/01/31) Phillip Lougher |
| | [ 0.347936] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. |
| | [ 0.371050] phy phy-usb-phy@11e10000.1: type_sw - reg 0x218, index 0 |
| | [ 0.386713] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled |
| | [ 0.393814] printk: console [ttyS0] disabled |
| | [ 0.418223] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 12, base_baud = 2500000) is a ST16650V2 |
| | [ 0.427434] printk: console [ttyS0] enabled |
| | [ 0.427434] printk: console [ttyS0] enabled |
| | [ 0.435793] printk: bootconsole [uart8250] disabled |
| | [ 0.435793] printk: bootconsole [uart8250] disabled |
| | [ 0.446267] cacheinfo: Unable to detect cache hierarchy for CPU 0 |
| | [ 0.454686] loop: module loaded |
| | [ 0.457943] mediatek,mt2701-ice_debug ice_debug: get dbg_sel clock fail: -2 |
| | [ 0.464918] mediatek,mt2701-ice_debug: probe of ice_debug failed with error -2 |
| | [ 0.473016] mt7981-pinctrl 11d00000.pinctrl: pin_config_set op failed for pin 19 |
| | [ 0.480413] mtk-spi 1100a000.spi: Error applying setting, reverse things back |
| | [ 0.488105] spi-nand spi0.0: GigaDevice SPI NAND was found. |
| | [ 0.493688] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 |
| | [ 0.504090] [mtk_hw_init] reset_lock:0, force:0 |
| | [ 0.508751] [mtk_hw_init] execute fe cold reset |
| | [ 0.524537] mtk_soc_eth 15100000.ethernet: generated random MAC address 4e:64:f5:39:5b:bf |
| | [ 0.532996] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc011680000, irq 75 |
| | [ 0.542073] mtk_soc_eth 15100000.ethernet: generated random MAC address 12:84:f7:17:fd:18 |
| | [ 0.550513] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc011680000, irq 75 |
| | [ 0.559560] (unnamed net_device) (dummy): netif_napi_add() called with weight 256 |
| | [ 0.567306] i2c /dev entries driver |
| | [ 0.571733] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) |
| | [ 0.579723] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com |
| | [ 0.590115] igd_filter_switch 0 |
| | [ 0.593819] NET: Registered protocol family 10 |
| | [ 0.598914] Segment Routing with IPv6 |
| | [ 0.602771] NET: Registered protocol family 17 |
| | [ 0.607253] Bridge firewalling registered |
| | [ 0.611354] 8021q: 802.1Q VLAN Support v1.8 |
| | [ 0.624708] nmbm nmbm_spim_nand: Signature found at block 1023 [0x07fe0000] |
| | [ 0.632550] nmbm nmbm_spim_nand: First info table with writecount 0 found in block 976 |
| | [ 0.642991] nmbm nmbm_spim_nand: Second info table with writecount 0 found in block 979 |
| | [ 0.651002] nmbm nmbm_spim_nand: NMBM has been successfully attached |
| | [ 0.657442] 10 cmdlinepart partitions found on MTD device nmbm_spim_nand |
| | [ 0.664132] Creating 10 MTD partitions on "nmbm_spim_nand": |
| | [ 0.669698] 0x000000000000-0x000000100000 : "bl2" |
| | [ 0.674990] 0x000000100000-0x000000180000 : "u-boot-env" |
| | [ 0.680846] 0x000000180000-0x000000380000 : "Factory" |
| | [ 0.686468] 0x000000380000-0x000000580000 : "fip" |
| | [ 0.691736] 0x000000580000-0x000002980000 : "ubi" |
| | [ 0.697060] 0x000002980000-0x000004d80000 : "firmware-1" |
| | [ 0.702983] 0x000004d80000-0x000007180000 : "plugin" |
| | [ 0.708561] 0x000007180000-0x000007280000 : "config" |
| | [ 0.714091] 0x000007280000-0x000007300000 : "factory" |
| | [ 0.719708] 0x000007300000-0x000007a00000 : "log" |
| | [ 1.286259] mt753x gsw@0: LAN/WAN VLAN setting=lllwl |
| | [ 1.291497] mt753x gsw@0: Switch is MediaTek MT7531AE rev 1 |
| | [ 1.300926] mt753x gsw@0: HWSTRAP=0xff XTAL=25MHz |
| | [ 4.947008] mt753x gsw@0: >>>>>>>>>>>>>>>>>>>>>>>>>>>>> START CALIBRATION: |
| | [ 4.954989] mt753x gsw@0: -------- gephy-calbration (port:0) -------- |
| | [ 4.970195] CALDLY = 40 |
| | [ 5.055223] 0x1e-e0 = 2d2d |
| | [ 5.059620] 0x1f-115 = 5 |
| | [ 5.062140] GE Rext AnaCal Done! (13)(0x2d) |
| | [ 5.144525] GE R50 AnaCal Done! (14) (0x24)(0xa4) |
| | [ 5.217762] GE R50 AnaCal Done! (13) (0x26)(0xa6) |
| | [ 5.291003] GE R50 AnaCal Done! (13) (0x26)(0xa6) |
| | [ 5.368793] GE R50 AnaCal Done! (14) (0x24)(0xa4) |
| | [ 5.376644] GE 1e_174(0xa4a6), 1e_175(0xa6a4) |
| | [ 5.418469] GE Tx offset AnaCal Done! (pair-0)(3)(0x22) 0x1e_172=0x2220 |
| | [ 5.447896] GE Tx offset AnaCal Done! (pair-1)(3)(0x22) 0x1e_172=0x2222 |
| | [ 5.472764] GE Tx offset AnaCal Done! (pair-2)(2)(0x2) 0x1e_173=0x220 |
| | [ 5.502016] GE Tx offset AnaCal Done! (pair-3)(3)(0x3) 0x1e_173=0x203 |
| | [ 5.576499] GE Tx amp AnaCal Done! (pair-0)(1e_12 = 0x6419) |
| | [ 5.665429] GE Tx amp AnaCal Done! (pair-1)(1e_17 = 0x2222) |
| | [ 5.729494] GE Tx amp AnaCal Done! (pair-2)(1e_19 = 0x1d25) |
| | [ 5.770908] GE Tx amp AnaCal Done! (pair-3)(1e_21 = 0x1a22) |
| | [ 5.817617] PORT 0 RX_DC_OFFSET |
| | [ 5.830284] before pairA output = b |
| | [ 5.835542] after pairA output = 0 |
| | [ 5.840637] before pairB output = 1e |
| | [ 5.845986] after pairB output = 0 |
| | [ 5.851081] before pairC output = 1d |
| | [ 5.856431] after pairC output = ff |
| | [ 5.861613] before pairD output = 1d |
| | [ 5.866962] after pairD output = fe |
| | [ 5.870699] mt753x gsw@0: -------- gephy-calbration (port:1) -------- |
| | [ 5.885901] CALDLY = 40 |
| | [ 5.966250] GE R50 AnaCal Done! (15) (0x23)(0xa3) |
| | [ 6.044042] GE R50 AnaCal Done! (14) (0x24)(0xa4) |
| | [ 6.117279] GE R50 AnaCal Done! (13) (0x26)(0xa6) |
| | [ 6.195066] GE R50 AnaCal Done! (14) (0x24)(0xa4) |
| | [ 6.202917] GE 1e_174(0xa3a4), 1e_175(0xa6a4) |
| | [ 6.240185] GE Tx offset AnaCal Done! (pair-0)(2)(0x21) 0x1e_172=0x2120 |
| | [ 6.274165] GE Tx offset AnaCal Done! (pair-1)(4)(0x23) 0x1e_172=0x2123 |
| | [ 6.299036] GE Tx offset AnaCal Done! (pair-2)(2)(0x2) 0x1e_173=0x220 |
| | [ 6.332838] GE Tx offset AnaCal Done! (pair-3)(4)(0x23) 0x1e_173=0x223 |
| | [ 6.413067] GE Tx amp AnaCal Done! (pair-0)(1e_12 = 0x4c13) |
| | [ 6.462362] GE Tx amp AnaCal Done! (pair-1)(1e_17 = 0x1414) |
| | [ 6.515100] GE Tx amp AnaCal Done! (pair-2)(1e_19 = 0x121a) |
| | [ 6.562175] GE Tx amp AnaCal Done! (pair-3)(1e_21 = 0x1b23) |
| | [ 6.608881] PORT 1 RX_DC_OFFSET |
| | [ 6.621553] before pairA output = 1c |
| | [ 6.626902] after pairA output = ff |
| | [ 6.632084] before pairB output = 1e |
| | [ 6.637434] after pairB output = ff |
| | [ 6.642617] before pairC output = e |
| | [ 6.647878] after pairC output = 0 |
| | [ 6.652974] before pairD output = f |
| | [ 6.658235] after pairD output = ff |
| | [ 6.661967] mt753x gsw@0: -------- gephy-calbration (port:2) -------- |
| | [ 6.677172] CALDLY = 40 |
| | [ 6.752961] GE R50 AnaCal Done! (14) (0x24)(0xa4) |
| | [ 6.830752] GE R50 AnaCal Done! (14) (0x24)(0xa4) |
| | [ 6.908540] GE R50 AnaCal Done! (14) (0x24)(0xa4) |
| | [ 6.986329] GE R50 AnaCal Done! (14) (0x24)(0xa4) |
| | [ 6.994180] GE 1e_174(0xa4a4), 1e_175(0xa4a4) |
| | [ 7.054222] GE Tx offset AnaCal Done! (pair-0)(7)(0x26) 0x1e_172=0x2620 |
| | [ 7.079093] GE Tx offset AnaCal Done! (pair-1)(2)(0x21) 0x1e_172=0x2621 |
| | [ 7.117623] GE Tx offset AnaCal Done! (pair-2)(5)(0x5) 0x1e_173=0x520 |
| | [ 7.146875] GE Tx offset AnaCal Done! (pair-3)(3)(0x3) 0x1e_173=0x503 |
| | [ 7.221365] GE Tx amp AnaCal Done! (pair-0)(1e_12 = 0x6c1b) |
| | [ 7.276321] GE Tx amp AnaCal Done! (pair-1)(1e_17 = 0x1c1c) |
| | [ 7.329066] GE Tx amp AnaCal Done! (pair-2)(1e_19 = 0x1d25) |
| | [ 7.381806] GE Tx amp AnaCal Done! (pair-3)(1e_21 = 0x1c24) |
| | [ 7.428520] PORT 2 RX_DC_OFFSET |
| | [ 7.441187] before pairA output = 1d |
| | [ 7.446537] after pairA output = ff |
| | [ 7.451714] before pairB output = e |
| | [ 7.456976] after pairB output = fe |
| | [ 7.462159] before pairC output = 1e |
| | [ 7.467508] after pairC output = ff |
| | [ 7.472690] before pairD output = f |
| | [ 7.477953] after pairD output = ff |
| | [ 7.481690] mt753x gsw@0: -------- gephy-calbration (port:3) -------- |
| | [ 7.496894] CALDLY = 40 |
| | [ 7.590902] GE R50 AnaCal Done! (18) (0x20)(0xa0) |
| | [ 7.677803] GE R50 AnaCal Done! (16) (0x22)(0xa2) |
| | [ 7.769262] GE R50 AnaCal Done! (17) (0x21)(0xa1) |
| | [ 7.860714] GE R50 AnaCal Done! (17) (0x21)(0xa1) |
| | [ 7.868563] GE 1e_174(0xa0a2), 1e_175(0xa1a1) |
| | [ 7.905830] GE Tx offset AnaCal Done! (pair-0)(2)(0x2) 0x1e_172=0x220 |
| | [ 7.930525] GE Tx offset AnaCal Done! (pair-1)(2)(0x21) 0x1e_172=0x221 |
| | [ 7.959860] GE Tx offset AnaCal Done! (pair-2)(3)(0x3) 0x1e_173=0x320 |
| | [ 7.979999] GE Tx offset AnaCal Done! (pair-3)(1)(0x1) 0x1e_173=0x301 |
| | [ 8.094123] GE Tx amp AnaCal Done! (pair-0)(1e_12 = 0x8822) |
| | [ 8.205706] GE Tx amp AnaCal Done! (pair-1)(1e_17 = 0x2727) |
| | [ 8.320732] GE Tx amp AnaCal Done! (pair-2)(1e_19 = 0x2830) |
| | [ 8.447084] GE Tx amp AnaCal Done! (pair-3)(1e_21 = 0x2a32) |
| | [ 8.493789] PORT 3 RX_DC_OFFSET |
| | [ 8.506456] before pairA output = f |
| | [ 8.511713] after pairA output = 0 |
| | [ 8.516809] before pairB output = f |
| | [ 8.522072] after pairB output = ff |
| | [ 8.527254] before pairC output = 1d |
| | [ 8.532602] after pairC output = fe |
| | [ 8.537785] before pairD output = 1e |
| | [ 8.543134] after pairD output = 1 |
| | [ 8.546784] mt753x gsw@0: -------- gephy-calbration (port:4) -------- |
| | [ 8.561986] CALDLY = 40 |
| | [ 8.637774] GE R50 AnaCal Done! (14) (0x24)(0xa4) |
| | [ 8.720122] GE R50 AnaCal Done! (15) (0x23)(0xa3) |
| | [ 8.793361] GE R50 AnaCal Done! (13) (0x26)(0xa6) |
| | [ 8.875704] GE R50 AnaCal Done! (15) (0x23)(0xa3) |
| | [ 8.883554] GE 1e_174(0xa4a3), 1e_175(0xa6a3) |
| | [ 8.916273] GE Tx offset AnaCal Done! (pair-0)(1)(0x1) 0x1e_172=0x120 |
| | [ 8.945526] GE Tx offset AnaCal Done! (pair-1)(3)(0x22) 0x1e_172=0x122 |
| | [ 8.974862] GE Tx offset AnaCal Done! (pair-2)(3)(0x3) 0x1e_173=0x320 |
| | [ 9.008666] GE Tx offset AnaCal Done! (pair-3)(4)(0x4) 0x1e_173=0x304 |
| | [ 9.111457] GE Tx amp AnaCal Done! (pair-0)(1e_12 = 0x4010) |
| | [ 9.155087] GE Tx amp AnaCal Done! (pair-1)(1e_17 = 0x1414) |
| | [ 9.258788] GE Tx amp AnaCal Done! (pair-2)(1e_19 = 0xa12) |
| | [ 9.305779] GE Tx amp AnaCal Done! (pair-3)(1e_21 = 0x141c) |
| | [ 9.352491] PORT 4 RX_DC_OFFSET |
| | [ 9.365157] before pairA output = e |
| | [ 9.370421] after pairA output = ff |
| | [ 9.375599] before pairB output = e |
| | [ 9.380862] after pairB output = 1 |
| | [ 9.385957] before pairC output = 1e |
| | [ 9.391310] after pairC output = ff |
| | [ 9.396492] before pairD output = 1e |
| | [ 9.401842] after pairD output = 0 |
| | [ 9.405581] mt753x gsw@0: wan link should change to down status! |
| | [ 9.413822] UBI: auto-attach mtd5 |
| | [ 9.417168] ubi0: attaching mtd5 |
| | [ 9.422256] random: fast init done |
| | [ 9.537107] ubi0: scanning is finished |
| | [ 9.545802] ubi0: attached mtd5 (name "ubi", size 36 MiB) |
| | [ 9.551206] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes |
| | [ 9.558070] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 |
| | [ 9.564846] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 |
| | [ 9.571796] ubi0: good PEBs: 288, bad PEBs: 0, corrupted PEBs: 0 |
| | [ 9.577790] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 |
| | [ 9.585000] ubi0: max/mean erase counter: 2/0, WL threshold: 4096, image sequence number: 1658219190 |
| | [ 9.594118] ubi0: available PEBs: 0, total reserved PEBs: 288, PEBs reserved for bad PEB handling: 20 |
| | [ 9.603328] ubi0: background thread "ubi_bgt0d" started, PID 676 |
| | [ 9.603976] block ubiblock0_1: created from ubi0:1(rootfs) |
| | [ 9.614823] ubiblock: device ubiblock0_1 (rootfs) set to be root filesystem |
| | [ 9.621777] hctosys: unable to open rtc device (rtc0) |
| | [ 9.630079] VFS: Mounted root (squashfs filesystem) readonly on device 253:0. |
| | [ 9.637453] Freeing unused kernel memory: 448K |
| | [ 9.654246] Run /sbin/init as init process |
| | [ 9.897274] init: Console is alive |
| | [ 9.900824] init: - watchdog - |
| | [ 10.186038] kmodloader: loading kernel modules from /etc/modules-boot.d/* |
| | [ 10.211702] conninfra@(mtk_conninfra_drv_init:644) Before platform_driver_register |
| | [ 10.219387] Get Index(0-TOP_MISC_BASE) phy_addr(0x11d10000) vir_addr=(0xffffffc010ac1000) size=(0x1000) |
| | [ 10.228774] Get Index(1-TOPRGU_BASE) phy_addr(0x1001c000) vir_addr=(0xffffffc010ac3000) size=(0x1000) |
| | [ 10.237980] Get Index(2-GPIO_BASE) phy_addr(0x11d00000) vir_addr=(0xffffffc010ac5000) size=(0x1000) |
| | [ 10.247013] Get Index(3-IOCFG_TR_BASE) phy_addr(0x11f00000) vir_addr=(0xffffffc010acd000) size=(0x1000) |
| | [ 10.256396] Get Index(4-IOCFG_TL_BASE) phy_addr(0x11f10000) vir_addr=(0xffffffc010ad5000) size=(0x1000) |
| | [ 10.265776] Get Index(5-INFRACFG_AO_BASE) phy_addr(0x10003000) vir_addr=(0xffffffc010add000) size=(0x1000) |
| | [ 10.275416] Get Index(6-CONN_INFRA_CFG_BASE) phy_addr(0x18001000) vir_addr=(0xffffffc010ae5000) size=(0x1000) |
| | [ 10.285316] Get Index(7-CONN_INFRA_SYSRAM_BASE) phy_addr(0x18050000) vir_addr=(0xffffffc010ae7000) size=(0x1000) |
| | [ 10.295476] Get Index(8-CONN_INFRA_CLKGEN_ON_TOP_BASE) phy_addr(0x18009000) vir_addr=(0xffffffc010ae9000) size=(0x1000) |
| | [ 10.306243] Get Index(9-CONN_HOST_CSR_TOP_BASE) phy_addr(0x18060000) vir_addr=(0xffffffc010aeb000) size=(0x1000) |
| | [ 10.316403] Get Index(10-CONN_INFRA_BUS_CR_BASE) phy_addr(0x1800e000) vir_addr=(0xffffffc010aed000) size=(0x1000) |
| | [ 10.326651] Get Index(11-CONN_INFRA_RGU_BASE) phy_addr(0x18000000) vir_addr=(0xffffffc010af5000) size=(0x1000) |
| | [ 10.336637] Get Index(12-CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18005000) vir_addr=(0xffffffc010afd000) size=(0x1000) |
| | [ 10.347057] Get Index(13-INST2_CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18085000) vir_addr=(0xffffffc010aff000) size=(0x1000) |
| | [ 10.358000] Get Index(14-CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18004000) vir_addr=(0xffffffc010b01000) size=(0x1000) |
| | [ 10.368420] Get Index(15-INST2_CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18084000) vir_addr=(0xffffffc010b03000) size=(0x1000) |
| | [ 10.379362] Get Index(16-CONN_SEMAPHORE_BASE) phy_addr(0x18070000) vir_addr=(0xffffffc010ba0000) size=(0x10000) |
| | [ 10.389436] Get Index(17-CONN_AFE_CTL_BASE) phy_addr(0x18003000) vir_addr=(0xffffffc010b05000) size=(0x1000) |
| | [ 10.399249] Get Index(18-CONN_AFE_CTL_2ND_BASE) phy_addr(0x18083000) vir_addr=(0xffffffc010b07000) size=(0x1000) |
| | [ 10.409411] Get Index(19-WF_TOP_SLPPROT_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xffffffc010bc0000) size=(0x10000) |
| | [ 10.419744] Get Index(20-WF_TOP_CFG_BASE) phy_addr(0x184b0000) vir_addr=(0xffffffc010b09000) size=(0x1000) |
| | [ 10.429385] Get Index(21-WF_MCU_CONFIG_LS_BASE) phy_addr(0x184f0000) vir_addr=(0xffffffc010b0b000) size=(0x1000) |
| | [ 10.439544] Get Index(22-WF_MCU_BUS_CR_BASE) phy_addr(0x18400000) vir_addr=(0xffffffc010b79000) size=(0x1000) |
| | [ 10.449444] Get Index(23-WF_MCUSYS_INFRA_BUS_FULL_U_DEBUG_CTRL_AO_BASE) phy_addr(0x18500000) vir_addr=(0xffffffc010b7b000) size=(0x1000) |
| | [ 10.461688] Get Index(24-WF_TOP_CFG_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xffffffc010b80000) size=(0x10000) |
| | [ 10.471673] conninfra@(consys_plt_hw_init:162) adie_cfg_type = 1, one_adie_dbdc = 1 |
| | [ 10.479322] [emi_mng_init] gConEmiPhyBase = [0x47c80000] size = [0x100000] fw size = [0x100000] ops=[(____ptrval____)] |
| | [ 10.490093] conninfra@(mtk_conninfra_drv_init:650) After platform_driver_register |
| | [ 10.497939] ConnInfra Dev: init (0) |
| | [ 10.502877] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP version successfully! (0x02090000) |
| | [ 10.512720] conninfra@(connsys_d_die_cfg:365) D-die efuse: 0x00000000 |
| | [ 10.520177] conninfra@(_connsys_a_die_cfg_7976:919) adie_idx[0], A-die CHIP ID = 0x7976, HW Version = 0x8a10 |
| | [ 10.530996] conninfra@(consys_spi_write_nolock:501) addr=0x0a00, val=0xffffffff |
| | [ 10.539299] conninfra@(consys_spi_write_nolock:501) addr=0x04ac, val=0x0000001c |
| | [ 10.547601] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 |
| | [ 10.556911] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x00000000 |
| | [ 10.566220] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x43a60000 |
| | [ 10.579559] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001, 0x00c40000, 0x008800b1, 0x00000000] |
| | [ 10.591072] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 |
| | [ 10.600383] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x23a6003a |
| | [ 10.609694] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x63a7003a |
| | [ 10.623034] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001, 0x00c40000, 0x008800b1, 0x00000000] |
| | [ 10.634546] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 |
| | [ 10.643857] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x23a7003a |
| | [ 10.653165] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x63ac003a |
| | [ 10.666504] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001, 0x00c40000, 0x008800b1, 0x00000000] |
| | [ 10.678016] conninfra@(consys_spi_write_nolock:501) addr=0x0038, val=0x4a563b00 |
| | [ 10.686319] conninfra@(consys_spi_write_nolock:501) addr=0x065c, val=0x1d59080f |
| | [ 10.694620] conninfra@(consys_spi_write_nolock:501) addr=0x0664, val=0x34c00fe0 |
| | [ 10.702927] conninfra@(consys_spi_write_nolock:501) addr=0x0070, val=0x88888005 |
| | [ 10.712188] conninfra@(consys_spi_write_nolock:501) addr=0x0070, val=0x00000005 |
| | [ 10.720424] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP version successfully! (0x02090000) |
| | [ 10.730237] conninfra@(_consys_hw_conninfra_wakeup:470) conninfra_wakeup refcnt=[0]->[1] wakeup!! |
| | [ 10.739100] conninfra@(_consys_hw_conninfra_sleep:490) conninfra_sleep refcnt=[1]->[0] sleep!! |
| | [ 10.747699] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] FM=[0] GPS=[0] WF=[0] CONNINFRA=[1] |
| | [ 10.760312] mediatek_soc_hnat 15100000.hnat: wan = eth1 |
| | [ 10.765556] mediatek_soc_hnat 15100000.hnat: lan = eth0 |
| | [ 10.770780] mediatek_soc_hnat 15100000.hnat: ppd = eth0 |
| | [ 10.775998] mediatek_soc_hnat 15100000.hnat: gmac num = 2 |
| | [ 10.781388] mediatek_soc_hnat 15100000.hnat: ppe num = 1 |
| | [ 10.787140] mediatek_soc_hnat 15100000.hnat: PPE0 entry number = 8192 |
| | [ 10.803958] mediatek_soc_hnat 15100000.hnat: PPE0 hwnat start |
| | [ 10.809742] hnat roaming work enable |
| | [ 10.816325] warp_module_init(): module init and register callback for warp |
| | [ 10.823245] create warp_ctrl ok!!! |
| | [ 10.826682] wed_get_slot_map(): assign slot_id:0 for entry: 0! |
| | [ 10.832520] wed_get_slot_map(): assign slot_id:1 for entry: 1! |
| | [ 10.838783] kmodloader: done loading kernel modules from /etc/modules-boot.d/* |
| | [ 10.856328] init: - preinit - |
| | [ 11.167332] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode |
| | [ 11.175748] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx |
| | Press the [f] key and hit [enter] to enter failsafe mode |
| | Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level |
| | Before mount_root |
| | [ 15.232512] crng init done |
| | readonly: 0 |
| | [ 15.349526] mount_root: loading kmods from internal overlay |
| | [ 15.359650] kmodloader: loading kernel modules from //etc/modules-boot.d/* |
| | [ 15.367842] kmodloader: done loading kernel modules from //etc/modules-boot.d/* |
| | [ 16.440238] UBIFS (ubi0:2): Mounting in unauthenticated mode |
| | [ 16.446087] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 770 |
| | [ 16.477460] UBIFS (ubi0:2): recovery needed |
| | [ 16.639652] UBIFS (ubi0:2): recovery completed |
| | [ 16.644193] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name "rootfs_data" |
| | [ 16.652022] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes |
| | [ 16.661933] UBIFS (ubi0:2): FS size: 9904128 bytes (9 MiB, 78 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs) |
| | [ 16.672010] UBIFS (ubi0:2): reserved for root: 467796 bytes (456 KiB) |
| | [ 16.678446] UBIFS (ubi0:2): media format: w5/r0 (latest is w5/r0), UUID 227FA9C5-B04B-48BB-A026-4A3D29B2FE5B, small LPT model |
| | [ 16.690089] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab |
| | [ 16.697140] block: unable to load configuration (fstab: Entry not found) |
| | [ 16.703870] block: attempting to load /tmp/ubifs_cfg/etc/config/fstab |
| | [ 16.710342] block: unable to load configuration (fstab: Entry not found) |
| | [ 16.717056] block: attempting to load /etc/config/fstab |
| | [ 16.723374] block: unable to load configuration (fstab: Entry not found) |
| | [ 16.730088] block: no usable configuration |
| | [ 16.740704] UBIFS (ubi0:2): un-mount UBI device 0 |
| | [ 16.745439] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" stops |
| | [ 16.754351] UBIFS (ubi0:2): Mounting in unauthenticated mode |
| | [ 16.760081] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 773 |
| | [ 16.823552] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name "rootfs_data" |
| | [ 16.831388] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes |
| | [ 16.841290] UBIFS (ubi0:2): FS size: 9904128 bytes (9 MiB, 78 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs) |
| | [ 16.851365] UBIFS (ubi0:2): reserved for root: 467796 bytes (456 KiB) |
| | [ 16.857797] UBIFS (ubi0:2): media format: w5/r0 (latest is w5/r0), UUID 227FA9C5-B04B-48BB-A026-4A3D29B2FE5B, small LPT model |
| | [ 17.847783] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab |
| | [ 17.854836] block: unable to load configuration (fstab: Entry not found) |
| | [ 17.861566] block: attempting to load /tmp/ubifs_cfg/etc/config/fstab |
| | [ 17.868062] block: unable to load configuration (fstab: Entry not found) |
| | [ 17.874781] block: attempting to load /etc/config/fstab |
| | [ 17.880083] block: unable to load configuration (fstab: Entry not found) |
| | [ 17.886795] block: no usable configuration |
| | [ 17.891504] mount_root: overlay filesystem has not been fully initialized yet |
| | [ 17.898799] mount_root: switching to ubifs overlay |
| | After mount_root[ 17.908963] urandom-seed: Seed file not found (/etc/urandom.seed) |
| | |
| | readonly: 0 |
| | read usr uci from uci zone failed |
| | cp: can't stat '/tmp/usr/config/*': No such file or directory |
| | [ 18.301229] procd: - early - |
| | [ 18.304210] procd: - watchdog - |
| | [ 18.839695] procd: - watchdog - |
| | [ 18.854681] procd: - ubus - |
| | [ 18.910653] procd: - init - |
| | [ 19.197701] urngd: v1.0.2 started. |
| | [ 19.202603] kmodloader: loading kernel modules from /etc/modules.d/* |
| | [ 19.237301] Current mapfilter version v3.0.1.2 |
| | [ 20.023722] mt_wifi: module license 'Proprietary' taints kernel. |
| | [ 20.029745] Disabling lock debugging due to kernel taint |
| | [ 20.068870] conninfra@(conninfra_pwr_on:120) [conninfra_pwr_on] drv=[3] |
| | [ 20.076450] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP version successfully! (0x02090000) |
| | [ 20.094309] Adie Type: 0x7976 |
| | [ 20.094311] SKU Type: 3000 |
| | [ 20.098228] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] FM=[0] GPS=[0] WF=[1] CONNINFRA=[1] |
| | [ 20.140465] WiFi@C12L1,get_dbg_setting_by_profile() 4242: debug level setting=INDEX0_debug_level not found!! |
| | [ 20.150317] WiFi@C12L1,get_dbg_setting_by_profile() 4265: debug option setting=INDEX0_debug_option not found!! |
| | [ 20.160375] mt_rbus 0000:00:00.0: runtime IRQ mapping not provided by arch |
| | [ 20.174622] mt7981_init()--> |
| | [ 20.177499] Use the default iPAiLNA bin image! |
| | [ 20.181988] <--mt7981_init() |
| | [ 20.184891] RtmpRaDevCtrlInit(): MCS_LUT not used becasue MacTb size(288) > 128! |
| | [ 20.192401] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX1 |
| | [ 20.199725] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX2 |
| | [ 20.207040] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX3 |
| | [ 20.214354] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX4 |
| | [ 20.221668] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX5 |
| | [ 20.228992] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX6 |
| | [ 20.236312] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX7 |
| | [ 20.243625] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX8 |
| | [ 20.250940] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX9 |
| | [ 20.258239] WiFi@C12L2,match_index_by_chipname() 507: Not find slot id, back to old rule. |
| | [ 20.266510] msta_ifname not found |
| | [ 20.277611] -->mtfwd_init(ver:2.0) |
| | [ 20.277653] <-- |
| | [ 20.281664] mtk_warp_proxy: module uses symbols from proprietary module mt_wifi, inheriting taint. |
| | [ 20.299633] xt_time: kernel timezone is -0000 |
| | [ 20.305538] PPP generic driver version 2.4.2 |
| | [ 20.310686] PPP MPPE Compression module registered |
| | [ 20.316333] NET: Registered protocol family 24 |
| | [ 20.322716] kmodloader: done loading kernel modules from /etc/modules.d/* |
| | [ 23.445495] ##igd_filter_switch:1, old:0, write1 |
| | [ 23.450183] start igd_filter by role |
| | [ 23.454728] ------------------------------------------- |
| | [ 23.459991] -----------igd fitler inited--------------- |
| | [ 23.465228] ------------------------------------------- |
| | [ 23.470449] start igd_filter by role end |
| | [ 23.710814] ubi2: attaching mtd10 |
| | [ 23.745081] ubi2: scanning is finished |
| | [ 23.754517] ubi2: attached mtd10 (name "log", size 7 MiB) |
| | [ 23.759951] ubi2: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes |
| | [ 23.766849] ubi2: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 |
| | [ 23.773642] ubi2: VID header offset: 2048 (aligned 2048), data offset: 4096 |
| | [ 23.780608] ubi2: good PEBs: 56, bad PEBs: 0, corrupted PEBs: 0 |
| | [ 23.786527] ubi2: user volume: 1, internal volumes: 1, max. volumes count: 128 |
| | [ 23.793750] ubi2: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 2270766128 |
| | [ 23.802884] ubi2: available PEBs: 0, total reserved PEBs: 56, PEBs reserved for bad PEB handling: 20 |
| | [ 23.812060] ubi2: background thread "ubi_bgt2d" started, PID 2345 |
| | [ 23.849453] UBIFS (ubi2:0): Mounting in unauthenticated mode |
| | [ 23.855768] UBIFS (ubi2:0): background thread "ubifs_bgt2_0" started, PID 2420 |
| | [ 23.881594] UBIFS (ubi2:0): recovery needed |
| | [ 23.945857] UBIFS (ubi2:0): recovery completed |
| | [ 23.950370] UBIFS (ubi2:0): UBIFS: mounted UBI device 2, volume 0, name "log" |
| | [ 23.957507] UBIFS (ubi2:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes |
| | [ 23.967417] UBIFS (ubi2:0): FS size: 2793472 bytes (2 MiB, 22 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs) |
| | [ 23.977495] UBIFS (ubi2:0): reserved for root: 131942 bytes (128 KiB) |
| | [ 23.983931] UBIFS (ubi2:0): media format: w5/r0 (latest is w5/r0), UUID 03196E12-2F21-4A9B-A144-47EF79E9D7F3, small LPT model |
| | [ 27.717414] mtk_soc_eth 15100000.ethernet eth0: Link is Down |
| | [ 27.798123] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode |
| | [ 27.806669] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx |
| | [ 27.815349] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready |
| | [ 27.824535] device eth0 entered promiscuous mode |
| | [ 27.830760] br-lan: port 1(eth0.1) entered blocking state |
| | [ 27.836184] br-lan: port 1(eth0.1) entered disabled state |
| | [ 27.841803] device eth0.1 entered promiscuous mode |
| | [ 27.852805] br-lan: port 1(eth0.1) entered blocking state |
| | [ 27.858224] br-lan: port 1(eth0.1) entered forwarding state |
| | [ 27.868970] br-lan: port 2(eth0.2) entered blocking state |
| | [ 27.874505] br-lan: port 2(eth0.2) entered disabled state |
| | [ 27.881147] device eth0.2 entered promiscuous mode |
| | [ 27.886141] br-lan: port 2(eth0.2) entered blocking state |
| | [ 27.891565] br-lan: port 2(eth0.2) entered forwarding state |
| | [ 27.922307] br-lan: port 3(eth0.3) entered blocking state |
| | [ 27.927711] br-lan: port 3(eth0.3) entered disabled state |
| | [ 27.933518] device eth0.3 entered promiscuous mode |
| | [ 27.938504] br-lan: port 3(eth0.3) entered blocking state |
| | [ 27.943931] br-lan: port 3(eth0.3) entered forwarding state |
| | [ 27.954910] br-lan: port 4(eth1-v6) entered blocking state |
| | [ 27.960435] br-lan: port 4(eth1-v6) entered disabled state |
| | [ 27.968344] device eth1-v6 entered promiscuous mode |
| | [ 27.991996] mtk_soc_eth 15100000.ethernet eth1: configuring for fixed/2500base-x link mode |
| | [ 28.001569] device eth1 entered promiscuous mode |
| | [ 28.635502] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT |
| | [ 28.647415] msta_ifname not found |
| | [ 28.653131] client_get_axi_slot_id(): wrong BUS_TYPE |
| | [ 28.658152] warp_cap_support(): chip_id=7981 is in WHNAT support list |
| | [ 28.664635] warp_entry_acquire(): bus slot:0, hook to WARP, entry id=0, entry: 000000008f02cfc7 |
| | [ 28.673350] client_hif_specific_get(): hw->base_phy_addr 0x18000000!! |
| | [ 28.679806] client_chip_specific_get(): 0x7981 chip id 0x7981!! |
| | [ 28.685834] warp_entry_get_by_pdev(): return entry[0] |
| | [ 28.692554] warp_msg_register():warp,pid,3761,id,0,wed_idx,0 |
| | [ 28.698317] wed_init(0): res_start = 0x15010000, size = 1000, irq=7,base_addr=0xffffffc010fc4000 |
| | [ 28.707575] wed_ring_init(): wed tx ring init result = 0 |
| | [ 28.713109] wed_ring_init(): wed rx ring init result = 0 |
| | [ 28.725575] create wed ok!!! |
| | [ 28.728551] wdma_init(): wdma(0) base_addr=0xffffffc010fc6800, base_phy_addr=0x15104800 |
| | [ 28.737395] warp_woif_bus_init_hw(): bus:00000000d7ac6cfa, txring: 20, pa: 0x000000004cd96000, 0x000000004cd96000, 24, 28, 3c |
| | [ 28.748731] warp_woif_bus_init_hw(): bus:00000000d7ac6cfa, rxring: 50, pa: 0x000000004cdcc000, 0x000000004cdcc000, 54, 58, 6c |
| | [ 28.760101] get_region_info(): wed_idx = 0, base_addr = 0x000000006da379bb, size = 0x40000, res.start = 0x47d80000, shared:0 |
| | [ 28.771364] get_region_info(): wed_idx = 0, base_addr = 0x00000000290eec41, size = 0x8000, res.start = 0x151e0000, shared:0 |
| | [ 28.782559] get_region_info(): wed_idx = 0, base_addr = 0x000000007ce6380e, size = 0x240000, res.start = 0x47dc0000, shared:1 |
| | [ 28.793903] get_region_info(): wed_idx = 0, base_addr = 0x000000009251f42a, size = 0x1000, res.start = 0x15194000, shared:0 |
| | [ 28.805051] warp_fwdl_mcu_mode(): mcu mode, need fwdl |
| | [ 28.865987] ########## WO Firmware ########## |
| | [ 28.870387] Chip ID: 0x0000 |
| | [ 28.873172] ECO version:0 |
| | [ 28.875800] Version: DEV_000000 |
| | [ 28.878943] Build date: 20220420202134 |
| | [ 28.882692] Total region:3 |
| | [ 28.885386] ################################# |
| | [ 28.889756] Parsing tailer region 0 |
| | [ 28.893258] Target address: 0x151e0000 |
| | [ 28.897115] Download size: 20736 |
| | [ 28.900466] Parsing tailer region 1 |
| | [ 28.903968] Target address: 0x47d80000 |
| | [ 28.907820] Download size: 86000 |
| | [ 28.911223] Parsing tailer region 2 |
| | [ 28.914723] Target address: 0x47dc0000 |
| | [ 28.918568] Download size: 2283984 |
| | [ 28.927703] warp_fwdl_ready_check_mcu_mode(): waiting for wocpu |
| | [ 28.945252] warp_fwdl_ready_check_mcu_mode(): wocpu is ready |
| | [ 28.952848] warp_woctrl_init_state(), wo_state: WO_STATE_ENABLE |
| | [ 28.958831] wo_proc_init done 00000000ba8288f8 |
| | [ 28.963387] wo_exep_proc_init done 00000000ba8288f8 |
| | [ 28.968395] wo_exception_init(0): exp log= 0x00000000064c35ac, phy_addr= 0x0000000045f00000 size= 32768 |
| | [ 29.086974] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS0 PhyMode=78 |
| | [ 29.093613] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS1 PhyMode=78 |
| | [ 29.100251] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS2 PhyMode=78 |
| | [ 29.106873] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS3 PhyMode=78 |
| | [ 29.113500] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS4 PhyMode=78 |
| | [ 29.120127] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS5 PhyMode=78 |
| | [ 29.126749] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS6 PhyMode=78 |
| | [ 29.133374] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS7 PhyMode=14 |
| | [ 29.139999] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS8 PhyMode=177 |
| | [ 29.146732] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS9 PhyMode=177 |
| | [ 29.153454] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS10 PhyMode=177 |
| | [ 29.160264] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS11 PhyMode=177 |
| | [ 29.167062] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS12 PhyMode=177 |
| | [ 29.173867] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS13 PhyMode=177 |
| | [ 29.180685] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS14 PhyMode=177 |
| | [ 29.187503] 7981@C12L1,RTMPWirelessModeCfg() 604: Init: BSS15 PhyMode=48 |
| | [ 29.194593] 7981@C23L3,auto_ch_select_set_cfg() 3409: BandIdx0, AutoChannelAtBootup=1, AutoChannelAlg = 3 |
| | [ 29.204203] 7981@C23L3,auto_ch_select_set_cfg() 3409: BandIdx1, AutoChannelAtBootup=1, AutoChannelAlg = 3 |
| | [ 29.293669] 7981@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=0, Desired MFPC=0 |
| | [ 29.301088] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=1, Desired MFPC=0 |
| | [ 29.308520] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=2, Desired MFPC=0 |
| | [ 29.315961] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=3, Desired MFPC=0 |
| | [ 29.323393] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=4, Desired MFPC=0 |
| | [ 29.330811] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=5, Desired MFPC=0 |
| | [ 29.338224] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=6, Desired MFPC=0 |
| | [ 29.341681] led_log: pid 3889 ppid 1 fast_config not_configed |
| | [ 29.341681] |
| | [ 29.345636] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=7, Desired MFPC=0 |
| | [ 29.360251] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=8, Desired MFPC=0 |
| | [ 29.367664] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=9, Desired MFPC=0 |
| | [ 29.375084] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=10, Desired MFPC=0 |
| | [ 29.382589] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=11, Desired MFPC=0 |
| | [ 29.390098] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=12, Desired MFPC=0 |
| | [ 29.397601] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=13, Desired MFPC=0 |
| | [ 29.405114] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=14, Desired MFPC=0 |
| | [ 29.412624] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=15, Desired MFPC=0 |
| | [ 29.421970] WiFi@C12L1,RTMPSetProfileParameters() 8443: ra0, QoSMgmtCapa=0 |
| | [ 29.428889] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.436056] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.443221] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.450365] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.457525] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.464684] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.471851] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.479008] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.486173] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.493327] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.500478] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.507642] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.514807] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.521982] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.529138] WiFi@C12L1,RTMPSetProfileParameters() 8443: (null), QoSMgmtCapa=0 |
| | [ 29.544877] WiFi@C12L1,rtmp_read_ap_client_from_file() 1588: APCLI[0] ApCliMuMimoDlEnable = 0 |
| | [ 29.553418] WiFi@C12L1,rtmp_read_ap_client_from_file() 1588: APCLI[1] ApCliMuMimoDlEnable = 0 |
| | [ 29.562215] WiFi@C12L1,rtmp_read_ap_client_from_file() 1607: APCLI[0] ApCliMuMimoUlEnable = 0 |
| | [ 29.570752] WiFi@C12L1,rtmp_read_ap_client_from_file() 1607: APCLI[1] ApCliMuMimoUlEnable = 0 |
| | [ 29.681306] wdma_dma_ctrl(): WDMA_GLO_CFG=50404e70, txrx = 0 |
| | [ 29.690883] wdma_dma_ctrl(): WDMA_GLO_CFG=40404e70, txrx = 0 |
| | [ 29.706225] warp_tx_ring_init_hw(): configure ring 0 setting |
| | [ 29.711910] warp_tx_ring_init_hw(): wed:00000000a8a5a6ae wifi:000000008b43ea7d: 24420=4cd58000,24424=2048,24428=0 |
| | [ 29.722219] warp_tx_ring_init_hw(): configure ring 1 setting |
| | [ 29.727879] warp_tx_ring_init_hw(): wed:00000000a8a5a6ae wifi:000000008b43ea7d: 24430=47440000,24434=2048,24438=0 |
| | [ 29.738251] set_rrocfg,0 |
| | [ 29.769748] wdma_dma_ctrl(): WDMA_GLO_CFG=40404e74, txrx = 3 |
| | [ 29.775440] using E1 ROM patch |
| | [ 29.778508] using E1 RAM |
| | [ 29.781043] current sync CR = 0x1 |
| | [ 29.818339] Built date: 20220420201732a |
| | [ 29.822318] Platform: ALPS |
| | [ 29.825121] HW/SW version: 0x8a108a10 |
| | [ 29.825129] Patch version: 0xffffffff |
| | [ 29.836128] current sync CR = 0x1 |
| | netstat start normal |
| | set loglevel to 2 |
| | os_log_init sucess |
| | error:os_log_init:227:1os_log_init sucess |
| | |
| | warn:os_log_init:228:2os_log_init sucess |
| | |
| | Warning: no elinksn in factory partition |
| | [ 30.129805] Chip ID: 0x14 |
| | [ 30.132545] Eco version: 0x00 |
| | [ 30.135667] Region number: 0x0b |
| | [ 30.138919] Format version: 0x02 |
| | [ 30.142247] Format flag: 0x01 |
| | [ 30.145309] Ram version: ____000000 |
| | [ 30.148917] Built date: 20220420201748 |
| | [ 30.152785] Common crc: 0x29f8303a |
| | [ 30.156296] Release info: header tag = 0, total length = 64 |
| | [ 30.161980] tag 1, padding length = 1, tag length = 59 |
| | [ 30.167232] payload: t-neptune-main-mt7915-1953-MT7981_MP2111_3_0-20220420201700 |
| | [ 30.253415] Chip ID: 0x00 |
| | [ 30.256173] Eco version: 0x00 |
| | [ 30.259257] Region number: 0x03 |
| | [ 30.262499] Format version: 0x02 |
| | [ 30.265809] Format flag: 0x01 |
| | [ 30.268872] Ram version: DEV_000000 |
| | [ 30.272463] Built date: 20220420202058 |
| | [ 30.276323] Common crc: 0xf1c27858 |
| | [ 30.279820] Release info: header tag = 0, total length = 0 |
| | [ 30.364229] current sync CR = 0x7 |
| | [ 30.368176] efuse_probe: efuse = deaddead |
| | [ 30.389942] WiFi@C02L1,is_cal_free_ic() 835: [a-die version:1] |
| | netstat start normal |
| | set loglevel to 2 |
| | os_log_init sucess |
| | error:os_log_init:227:1os_log_init sucess |
| | |
| | warn:os_log_init:228:2os_log_init sucess |
| | |
| | netstat start normal |
| | set loglevel to 2 |
| | os_log_init sucess |
| | error:os_log_init:227:1os_log_init sucess |
| | |
| | warn:os_log_init:228:2os_log_init sucess |
| | |
| | timeswitch normal |
| | [ 31.580843] [HNAT] LAN IP: 192.168.2.1 LAN MASK: 255.255.255.0 |
| | [ 32.156810] sh (5524): drop_caches: 3 |
| | [ 32.494494] ubi1: attaching mtd7 |
| | [ 32.556804] ubi1: scanning is finished |
| | [ 32.560559] ubi1: empty MTD device detected |
| | [ 32.588570] ubi1: attached mtd7 (name "plugin", size 36 MiB) |
| | [ 32.594248] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes |
| | [ 32.601121] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 |
| | [ 32.607904] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096 |
| | [ 32.614858] ubi1: good PEBs: 288, bad PEBs: 0, corrupted PEBs: 0 |
| | [ 32.620864] ubi1: user volume: 0, internal volumes: 1, max. volumes count: 128 |
| | [ 32.628079] ubi1: max/mean erase counter: 0/0, WL threshold: 4096, image sequence number: 2325026331 |
| | [ 32.637205] ubi1: available PEBs: 264, total reserved PEBs: 24, PEBs reserved for bad PEB handling: 20 |
| | [ 32.646510] ubi1: background thread "ubi_bgt1d" started, PID 5572 |
| | [ 32.754966] UBIFS (ubi1:0): default file-system created |
| | [ 32.761975] UBIFS (ubi1:0): Mounting in unauthenticated mode |
| | [ 32.767771] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 5577 |
| | [ 32.841053] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "ubi_plugin" |
| | [ 32.848803] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes |
| | [ 32.858712] UBIFS (ubi1:0): FS size: 32251904 bytes (30 MiB, 254 LEBs), journal size 1650688 bytes (1 MiB, 13 LEBs) |
| | [ 32.869134] UBIFS (ubi1:0): reserved for root: 1523336 bytes (1487 KiB) |
| | [ 32.875745] UBIFS (ubi1:0): media format: w5/r0 (latest is w5/r0), UUID 6A47C8D1-82C1-4918-B6C5-7F4356264510, small LPT model |
| | [ 33.358143] WiFi@C17L1,RTMPReadTxPwrPerRate() 450: (450): Don't Support this now! |
| | [ 33.365713] WiFi@C01L1,AntCfgInit() 3060: Not support for HIF_MT yet! |
| | [ 33.393919] ch_switch_monitor_state_machine_init:: enter |
| | [ 33.399263] ch_switch_monitor_cfg_reset:: enter |
| | [ 33.403800] ch_switch_monitor_cfg_reset:: enter |
| | [ 33.408769] WiFi@C17L1,tx_pwr_comp_init() 641: NotSupportYet! |
| | [ 33.414800] WiFi@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 33.420339] WiFi@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 33.426043] WiFi@C14L1,IPMacTable_init() 348: IPMacTable already inited! |
| | [ 33.452946] wdma_dma_ctrl(): WDMA_GLO_CFG=58404e75, txrx = 3 |
| | [ 33.458983] WiFi@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 33.464645] WiFi@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 33.470172] WiFi@C00L1,set_ack_timeout_mode_byband() 13343: CTS/ACK Timeout Range should between [0xFFFF:0]!! |
| | [ 33.480089] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13431: DAT config band(0) cck_timeout Fail! |
| | [ 33.488796] WiFi@C00L1,set_ack_timeout_mode_byband() 13343: CTS/ACK Timeout Range should between [0xFFFF:0]!! |
| | [ 33.498727] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13442: DAT config band(0) ofdm_timeout Fail! |
| | [ 33.507508] WiFi@C00L1,set_ack_timeout_mode_byband() 13343: CTS/ACK Timeout Range should between [0xFFFF:0]!! |
| | [ 33.517421] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13453: DAT config band(0) ofdma_timeout Fail! |
| | [ 33.526304] WiFi@C00L1,set_ack_timeout_mode_byband() 13343: CTS/ACK Timeout Range should between [0xFFFF:0]!! |
| | [ 33.536223] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13431: DAT config band(1) cck_timeout Fail! |
| | [ 33.544935] WiFi@C00L1,set_ack_timeout_mode_byband() 13343: CTS/ACK Timeout Range should between [0xFFFF:0]!! |
| | [ 33.554852] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13442: DAT config band(1) ofdm_timeout Fail! |
| | [ 33.563636] WiFi@C00L1,set_ack_timeout_mode_byband() 13343: CTS/ACK Timeout Range should between [0xFFFF:0]!! |
| | [ 33.573554] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13453: DAT config band(1) ofdma_timeout Fail! |
| | [ 33.598341] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] |
| | [ 33.607102] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] |
| | [ 33.742592] :(op = 1) |
| | [ 33.749705] 7981@C00L1,FastPathCheckMIC() 1010: (ret = 0)(op:1) |
| | [ 33.755668] 7981@C00L2,red_tail_drop_init() 83: red_tail_drop_init: available token:8192, whnat_en:1 |
| | [ 33.764824] 7981@C00L1,MtCmdCr4RedSet() 914: MtCmdCr4RedSet: (ret = 0) |
| | [ 33.771361] 7981@C00L1,SendRedCmd() 1049: SendRedCmd:(ret = 1) |
| | [ 33.777292] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP |
| | [ 33.785307] WiFi@C01L3,wifi_sys_open() 840: wdev idx = 0 |
| | [ 33.790898] 7981@C18L3,BuildChannelList() 475: |
| | [ 33.795469] 7981@C00L3,BuildChannelList() 505: BandIdx = 0, PhyMode = 78, ChListNum = 13: |
| | [ 33.803653] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.810006] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.816460] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.822826] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.829266] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.835630] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.842069] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.848429] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.854872] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.861226] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.867670] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.874023] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.880471] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.886826] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.893265] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.899623] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.906062] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.912418] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.918868] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.925270] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.931715] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.938074] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.944515] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.950873] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.957316] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 |
| | [ 33.963673] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 |
| | [ 33.970113] 7981@C23L1,DfsBuildChannelList() 3487: [RDM]: wdev is not 5G. |
| | [ 33.976924] 7981@C23L3,RadarStateCheck() 239: Zero Wait State: 0 |
| | [ 33.982933] phy_freq_adjust : no prim_ch value for adjust! |
| | [ 33.988424] 7981@C23L1,operate_loader_phy() 375: phy_freq_adjust failed!WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] |
| | [ 34.001852] wdev_attr_update(): wdevId0 = e0:ef:02:63:71:22 |
| | [ 34.007463] WiFi@C12L1,wifi_sys_open() 891: wifi_sys_open():band0 group_idx[0]=0, bw_grp=16 omac=0 |
| | [ 34.020033] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=0 |
| | [ 34.026480] 7981@C23L1,HcGetBandByChannel() 1104: No hdev parking on channel:0, just return a default band_idx 0! |
| | [ 34.036860] 7981@C02L2,AsicRadioOnOffCtrl() 2291: DbdcIdx=0 RadioOn |
| | [ 34.043877] 7981@C00L2,ApAutoChannelAtBootUp() 338: -----------------> |
| | [ 34.050429] 7981@C00L3,ApAutoChannelAtBootUp() 349: [QIHOO]OriChannel 0 |
| | [ 34.057522] 7981@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 34.063107] 7981@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 34.068721] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=1, ctrl_ch2=0, cent_ch=1 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 34.454499] 7981@C23L2,UpdateChannelInfo() 240: channel 1 busytime 10871 |
| | [ 34.461389] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=2, ctrl_ch2=0, cent_ch=2 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 34.838666] 7981@C23L2,UpdateChannelInfo() 240: channel 2 busytime 4679 |
| | [ 34.845434] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=3, ctrl_ch2=0, cent_ch=3 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 35.242574] 7981@C23L2,UpdateChannelInfo() 240: channel 3 busytime 5708 |
| | [ 35.249344] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=4, ctrl_ch2=0, cent_ch=4 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 35.638539] 7981@C23L2,UpdateChannelInfo() 240: channel 4 busytime 1042 |
| | [ 35.645366] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=5, ctrl_ch2=0, cent_ch=5 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 36.034530] 7981@C23L2,UpdateChannelInfo() 240: channel 5 busytime 2185 |
| | [ 36.041296] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=6, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | iptv start normal |
| | [ 36.418577] 7981@C23L2,UpdateChannelInfo() 240: channel 6 busytime 7225 |
| | [ 36.425381] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=7, ctrl_ch2=0, cent_ch=7 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 36.490756] led_log: pid 6819 ppid 1 role_type |
| | [ 36.490756] |
| | [ 36.802552] 7981@C23L2,UpdateChannelInfo() 240: channel 7 busytime 5153 |
| | [ 36.809346] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=8, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 37.186524] 7981@C23L2,UpdateChannelInfo() 240: channel 8 busytime 3782 |
| | [ 37.193287] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=9, ctrl_ch2=0, cent_ch=9 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 37.409414] led_log: pid 7379 ppid 5992 role_type unknown |
| | [ 37.409414] |
| | [ 37.418271] led_log: pid 7389 ppid 5992 wifi_result unknown |
| | [ 37.418271] |
| | [ 37.570544] 7981@C23L2,UpdateChannelInfo() 240: channel 9 busytime 1438 |
| | [ 37.577392] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=10, ctrl_ch2=0, cent_ch=10 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 37.954524] 7981@C23L2,UpdateChannelInfo() 240: channel 10 busytime 6380 |
| | [ 37.961377] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=11, ctrl_ch2=0, cent_ch=11 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 38.338538] 7981@C23L2,UpdateChannelInfo() 240: channel 11 busytime 6072 |
| | [ 38.345388] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=12, ctrl_ch2=0, cent_ch=12 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 38.722547] 7981@C23L2,UpdateChannelInfo() 240: channel 12 busytime 3228 |
| | [ 38.729416] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=13, ctrl_ch2=0, cent_ch=13 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) |
| | [ 39.110555] 7981@C23L2,UpdateChannelInfo() 240: channel 13 busytime 2697 |
| | [ 39.117320] 7981@C23L2,select_clear_channel_busy_time() 1808: ===================================================== |
| | [ 39.128113] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 1 : Busy Time = 10871, Score 90,Skip Channel = FALSE |
| | [ 39.139219] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.149680] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 2 : Busy Time = 15550, Score 85,Skip Channel = FALSE |
| | [ 39.160738] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.171205] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 3 : Busy Time = 16579, Score 84,Skip Channel = FALSE |
| | [ 39.182259] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.192708] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 4 : Busy Time = 11913, Score 89,Skip Channel = FALSE |
| | [ 39.203765] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.214223] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 5 : Busy Time = 13056, Score 87,Skip Channel = FALSE |
| | [ 39.225281] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.235739] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 6 : Busy Time = 7225, Score 93,Skip Channel = FALSE |
| | [ 39.246716] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.257167] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 7 : Busy Time = 16024, Score 84,Skip Channel = FALSE |
| | [ 39.268229] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.278683] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 8 : Busy Time = 14653, Score 86,Skip Channel = FALSE |
| | [ 39.289748] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.300196] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 9 : Busy Time = 12309, Score 88,Skip Channel = FALSE |
| | [ 39.311245] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.321696] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 10 : Busy Time = 17251, Score 83,Skip Channel = FALSE |
| | [ 39.332843] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.343282] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 11 : Busy Time = 6072, Score 94,Skip Channel = FALSE |
| | [ 39.354330] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.364774] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 12 : Busy Time = 14099, Score 86,Skip Channel = TRUE |
| | [ 39.375827] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.386263] 7981@C23L2,select_clear_channel_busy_time() 1814: Channel 13 : Busy Time = 13568, Score 87,Skip Channel = TRUE |
| | [ 39.397316] 7981@C23L2,select_clear_channel_busy_time() 1815: ===================================================== |
| | [ 39.407764] 7981@C23L2,select_clear_channel_busy_time() 1823: =============== select best ch for 2.4G ============= |
| | [ 39.418224] 7981@C23L3,Adj_ZeroWait_Status_Update() 1005: ch=11 |
| | [ 39.424329] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=11, ctrl_ch2=0, cent_ch=11 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(0) |
| | [ 39.465763] led_log: pid 8523 ppid 5992 role_type unknown |
| | [ 39.465763] |
| | [ 39.474628] led_log: pid 8524 ppid 5992 wifi_result unknown |
| | [ 39.474628] |
| | [ 39.568532] 7981@C23L1,DfsBuildChannelList() 3487: [RDM]: wdev is not 5G. |
| | [ 39.575399] 7981@C23L3,zero_wait_dfs_switch_ch() 925: outband ch 0, ch_stat 0 |
| | [ 39.582758] 7981@C08L2,APStartUpForMbss() 993: ===>(caller:ap_inf_open+0x138/0x4b8 [mt_wifi]), mbss_idx:0, CfgMode:0 |
| | [ 39.593320] 7981@C15L2,APPMFInit() 133: [PMF] apidx=0, MFPC=0, MFPR=0, SHA256=0 |
| | [ 39.600733] 7981@C18L3,BuildChannelList() 475: |
| | [ 39.605583] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] |
| | [ 39.613235] WiFi@C08L2,ap_link_up() 7068: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(0) |
| | [ 39.621885] 7981@C01L3,wifi_sys_linkup() 1150: wdev idx = 0 |
| | [ 39.697648] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=0 |
| | [ 39.708787] 7981@C08L3,UpdateBeaconHandler() 1935: BCN_UPDATE_INIT, OmacIdx = 0 (ra0) |
| | [ 39.716697] 7981@C08L3,UpdateBeaconHandler() 1948: Band0 BcnInitedRnd = 53 |
| | [ 39.724088] 7981@C00L1,TxCCKStreamCtrl() 20588: set wrong parameters |
| | [ 39.740673] PrintSrCmd: |
| | [ 39.740673] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 39.740673] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 |
| | [ 39.754747] PrintSrCmd: |
| | [ 39.754747] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 39.754747] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 39.768822] PrintSrCmd: |
| | [ 39.768822] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 39.768822] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 |
| | [ 39.782845] PrintSrCmd: |
| | [ 39.782845] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 39.782845] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 39.797005] PrintSrCmd: |
| | [ 39.797005] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 39.797005] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 39.811151] PrintSrCmd: |
| | [ 39.811151] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 39.811151] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 39.825302] 7981@C03L3,MtCmdTxPwrShowInfo() 13711: ucTxPowerInfoCatg: 2, BandIdx: 0 |
| | [ 39.833093] 7981@C03L3,MtCmdTxPwrShowInfo() 13740: (ret = 0) |
| | [ 39.833204] [mtf_txpower_all_rate_info] band_idx:0 pwr:48 ChBand:2G ePAGain:0 |
| | [ 39.838772] mtk_ppe_dev_register_hook : ineterface ra0 register (1) |
| | [ 39.855577] nf_unregister_hooks() |
| | [ 39.861561] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 39.873161] br-lan: port 5(ra0) entered blocking state |
| | [ 39.878361] br-lan: port 5(ra0) entered disabled state |
| | [ 39.883727] device ra0 entered promiscuous mode |
| | [ 39.888318] br-lan: port 5(ra0) entered blocking state |
| | [ 39.893461] br-lan: port 5(ra0) entered forwarding state |
| | [ 39.899803] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 39.915765] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 39.963321] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 39.971971] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 39.984401] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 40.012423] 7981@C08L2,mbss_virtual_if_open() 134: ===> ra4 |
| | [ 40.018115] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT |
| | [ 40.026271] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP |
| | [ 40.034382] WiFi@C01L3,wifi_sys_open() 840: wdev idx = 4 |
| | [ 40.040005] 7981@C18L3,BuildChannelList() 475: |
| | [ 40.044837] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] |
| | [ 40.052868] wdev_attr_update(): wdevId4 = e2:ef:02:43:71:22 |
| | [ 40.058541] WiFi@C12L1,wifi_sys_open() 891: wifi_sys_open():band0 group_idx[4]=9, bw_grp=16 omac=17 |
| | [ 40.070699] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=4 |
| | [ 40.079356] 7981@C02L2,AsicRadioOnOffCtrl() 2291: DbdcIdx=0 RadioOn |
| | [ 40.109755] 7981@C00L2,ApAutoChannelAtBootUp() 338: -----------------> |
| | [ 40.116353] 7981@C00L3,ApAutoChannelAtBootUp() 349: [QIHOO]OriChannel 11 |
| | [ 40.123280] 7981@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 40.128956] 7981@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 40.134422] 7981@C00L1,ApAutoChannelAtBootUp() 508: not A band |
| | [ 40.140306] 7981@C08L1,ap_run_at_boot() 641: ACS is disable !! |
| | [ 40.147215] 7981@C08L2,APStartUpForMbss() 993: ===>(caller:ap_inf_open+0x138/0x4b8 [mt_wifi]), mbss_idx:4, CfgMode:0 |
| | [ 40.157781] 7981@C15L2,APPMFInit() 133: [PMF] apidx=4, MFPC=0, MFPR=0, SHA256=0 |
| | [ 40.165159] 7981@C18L3,BuildChannelList() 475: |
| | [ 40.170025] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] |
| | [ 40.177684] WiFi@C08L2,ap_link_up() 7068: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(4) |
| | [ 40.186325] 7981@C01L3,wifi_sys_linkup() 1150: wdev idx = 4 |
| | [ 40.270166] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=4 |
| | [ 40.281108] 7981@C08L3,UpdateBeaconHandler() 1935: BCN_UPDATE_INIT, OmacIdx = 11 (ra4) |
| | [ 40.289460] 7981@C00L1,TxCCKStreamCtrl() 20588: set wrong parameters |
| | [ 40.305938] PrintSrCmd: |
| | [ 40.305938] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 40.305938] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 |
| | [ 40.320008] PrintSrCmd: |
| | [ 40.320008] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 40.320008] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 40.334060] PrintSrCmd: |
| | [ 40.334060] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 40.334060] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 |
| | [ 40.348109] PrintSrCmd: |
| | [ 40.348109] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 40.348109] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 40.362239] PrintSrCmd: |
| | [ 40.362239] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 40.362239] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 40.376386] PrintSrCmd: |
| | [ 40.376386] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 |
| | [ 40.376386] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 40.390527] 7981@C03L3,MtCmdTxPwrShowInfo() 13711: ucTxPowerInfoCatg: 2, BandIdx: 0 |
| | [ 40.398323] 7981@C03L3,MtCmdTxPwrShowInfo() 13740: (ret = 0) |
| | [ 40.398430] [mtf_txpower_all_rate_info] band_idx:0 pwr:48 ChBand:2G ePAGain:0 |
| | [ 40.404006] mtk_ppe_dev_register_hook : ineterface ra4 register (2) |
| | [ 40.420976] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 40.429035] OUI length is 0, DEL_OUI_Filter delete all and return!! |
| | [ 40.436461] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 40.445779] OUI length is 0, OID_DEL_PROBERSP_VENDOR_IE delete all and return!! |
| | [ 40.453572] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 40.490348] br-lan: port 6(ra4) entered blocking state |
| | [ 40.495530] br-lan: port 6(ra4) entered disabled state |
| | [ 40.500953] device ra4 entered promiscuous mode |
| | [ 40.505682] br-lan: port 6(ra4) entered blocking state |
| | [ 40.510848] br-lan: port 6(ra4) entered forwarding state |
| | [ 40.523287] module exit |
| | [ 40.532727] 7981@C08L2,mbss_virtual_if_open() 134: ===> rai0 |
| | [ 40.538526] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT |
| | [ 40.546654] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP |
| | [ 40.554690] WiFi@C01L3,wifi_sys_open() 840: wdev idx = 8 |
| | [ 40.560284] 7981@C18L3,BuildChannelList() 475: |
| | [ 40.564867] 7981@C00L3,BuildChannelList() 505: BandIdx = 1, PhyMode = 177, ChListNum = 13: |
| | [ 40.573198] 7981@C23L3,DfsBuildChannelList() 3532: Done |
| | [ 40.578470] 7981@C23L3,RadarStateCheck() 239: Zero Wait State: 0 |
| | [ 40.584501] 7981@C23L3,RadarStateCheck() 285: RD_NORMAL_MODE |
| | [ 40.591301] phy_freq_adjust : no prim_ch value for adjust! |
| | [ 40.596801] 7981@C23L1,operate_loader_phy() 375: phy_freq_adjust failed!WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] |
| | [ 40.610239] wdev_attr_update(): wdevId8 = e0:ef:02:63:71:23 |
| | [ 40.615871] WiFi@C12L1,wifi_sys_open() 891: wifi_sys_open():band1 group_idx[8]=4, bw_grp=16 omac=0 |
| | [ 40.624985] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=8 |
| | [ 40.632600] 7981@C23L1,HcGetBandByChannel() 1104: No hdev parking on channel:0, just return a default band_idx 0! |
| | [ 40.643153] 7981@C02L2,AsicRadioOnOffCtrl() 2291: DbdcIdx=0 RadioOn |
| | [ 40.650153] 7981@C00L2,ApAutoChannelAtBootUp() 338: -----------------> |
| | [ 40.656730] 7981@C00L3,ApAutoChannelAtBootUp() 349: [QIHOO]OriChannel 0 |
| | [ 40.663624] 7981@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 40.669223] 7981@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 40.674680] 7981@C23L2,AutoChSelBuildChannelListFor56G() 2709: ChListNum56G = 13 |
| | [ 40.682331] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=36, ctrl_ch2=0, cent_ch=36 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 41.178533] 7981@C23L2,UpdateChannelInfo() 240: channel 36 busytime 3086 |
| | [ 41.185413] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=40, ctrl_ch2=0, cent_ch=40 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 41.520311] led_log: pid 9485 ppid 5992 role_type unknown |
| | [ 41.520311] |
| | [ 41.528894] led_log: pid 9495 ppid 5992 wifi_result unknown |
| | [ 41.528894] |
| | [ 41.690664] 7981@C23L2,UpdateChannelInfo() 240: channel 40 busytime 4077 |
| | [ 41.697604] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=44, ctrl_ch2=0, cent_ch=44 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 42.206611] 7981@C23L2,UpdateChannelInfo() 240: channel 44 busytime 1921 |
| | [ 42.213517] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=48, ctrl_ch2=0, cent_ch=48 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 42.714480] 7981@C23L2,UpdateChannelInfo() 240: channel 48 busytime 3922 |
| | [ 42.721323] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=52, ctrl_ch2=0, cent_ch=52 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 43.034471] 7981@C23L2,UpdateChannelInfo() 240: channel 52 busytime 4346 |
| | [ 43.041260] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=56, ctrl_ch2=0, cent_ch=56 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 43.354452] 7981@C23L2,UpdateChannelInfo() 240: channel 56 busytime 6026 |
| | [ 43.361243] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=60, ctrl_ch2=0, cent_ch=60 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 43.569322] led_log: pid 9950 ppid 5992 role_type unknown |
| | [ 43.569322] |
| | [ 43.577703] led_log: pid 9951 ppid 5992 wifi_result unknown |
| | [ 43.577703] |
| | [ 43.674453] 7981@C23L2,UpdateChannelInfo() 240: channel 60 busytime 3460 |
| | [ 43.681242] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=64, ctrl_ch2=0, cent_ch=64 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 43.994451] 7981@C23L2,UpdateChannelInfo() 240: channel 64 busytime 3662 |
| | [ 44.001239] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=149, ctrl_ch2=0, cent_ch=149 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 44.502452] 7981@C23L2,UpdateChannelInfo() 240: channel 149 busytime 134 |
| | [ 44.509237] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=153, ctrl_ch2=0, cent_ch=153 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 45.002454] 7981@C23L2,UpdateChannelInfo() 240: channel 153 busytime 453 |
| | [ 45.009242] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=157, ctrl_ch2=0, cent_ch=157 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 45.510448] 7981@C23L2,UpdateChannelInfo() 240: channel 157 busytime 0 |
| | [ 45.517057] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=161, ctrl_ch2=0, cent_ch=161 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 45.617904] led_log: pid 9956 ppid 5992 role_type unknown |
| | [ 45.617904] |
| | [ 45.626412] led_log: pid 9957 ppid 5992 wifi_result unknown |
| | [ 45.626412] |
| | [ 46.022463] 7981@C23L2,UpdateChannelInfo() 240: channel 161 busytime 1 |
| | [ 46.029082] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=165, ctrl_ch2=0, cent_ch=165 DBDCIdx=1, ChBand=1, BW=0, TXStream=3, RXStream=3, scan(1) |
| | [ 46.530453] 7981@C23L2,UpdateChannelInfo() 240: channel 165 busytime 0 |
| | [ 46.536996] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 36 : Busy Time = 3086, Score 97,Skip Channel = FALSE |
| | [ 46.547862] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 40 : Busy Time = 4077, Score 96,Skip Channel = FALSE |
| | [ 46.558722] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 44 : Busy Time = 1921, Score 99,Skip Channel = FALSE |
| | [ 46.569595] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 48 : Busy Time = 3922, Score 97,Skip Channel = FALSE |
| | [ 46.580459] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 52 : Busy Time = 4346, Score 96,Skip Channel = TRUE |
| | [ 46.591242] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 56 : Busy Time = 6026, Score 94,Skip Channel = TRUE |
| | [ 46.602020] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 60 : Busy Time = 3460, Score 97,Skip Channel = TRUE |
| | [ 46.612794] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 64 : Busy Time = 3662, Score 97,Skip Channel = TRUE |
| | [ 46.623572] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 149 : Busy Time = 134, Score 99,Skip Channel = FALSE |
| | [ 46.634442] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 153 : Busy Time = 453, Score 99,Skip Channel = FALSE |
| | [ 46.645303] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 157 : Busy Time = 0, Score 100,Skip Channel = FALSE |
| | [ 46.656076] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 161 : Busy Time = 1, Score 99,Skip Channel = FALSE |
| | [ 46.666761] 7981@C23L2,select_clear_channel_bw_160M() 1596: Channel 165 : Busy Time = 0, Score 99,Skip Channel = FALSE |
| | [ 46.677453] 7981@C23L2,select_clear_channel_bw_160M() 1599: for BW 160M, select the best primary channel 44 |
| | [ 46.687187] 7981@C23L3,Adj_ZeroWait_Status_Update() 1005: ch=44 |
| | [ 46.693106] 7981@C23L3,RadarStateCheck() 239: Zero Wait State: 2 |
| | [ 46.699110] 7981@C23L3,RadarStateCheck() 285: RD_NORMAL_MODE |
| | [ 46.705917] 7981@C08L3,DfsCacNormalStart() 3380: [RDM] TX80/RX160 mode, CAC 65 seconds start |
| | [ 46.714453] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=36, ctrl_ch2=0, cent_ch=42 DBDCIdx=1, ChBand=1, BW=2, TXStream=3, RXStream=3, scan(0) |
| | [ 46.968998] 7981@C08L3,DfsCacNormalStart() 3380: [RDM] TX80/RX160 mode, CAC 65 seconds start |
| | [ 46.977487] 7981@C23L3,DfsBuildChannelList() 3532: Done |
| | [ 46.982728] 7981@C23L3,zero_wait_dfs_switch_ch() 925: outband ch 44, ch_stat 0 |
| | [ 46.989958] 7981@C23L3,zero_wait_dfs_switch_ch() 932: bDedicatedZeroWaitDefault == 0 |
| | [ 46.997973] 7981@C08L2,APStartUpForMbss() 993: ===>(caller:ap_inf_open+0x138/0x4b8 [mt_wifi]), mbss_idx:8, CfgMode:0 |
| | [ 47.008521] 7981@C15L2,APPMFInit() 133: [PMF] apidx=8, MFPC=0, MFPR=0, SHA256=0 |
| | [ 47.015869] 7981@C18L3,BuildChannelList() 475: |
| | [ 47.020734] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] |
| | [ 47.028384] WiFi@C08L2,ap_link_up() 7068: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(8) |
| | [ 47.037013] 7981@C01L3,wifi_sys_linkup() 1150: wdev idx = 8 |
| | [ 47.121717] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=8 |
| | [ 47.131901] 7981@C08L3,UpdateBeaconHandler() 1935: BCN_UPDATE_INIT, OmacIdx = 0 (rai0) |
| | [ 47.139847] 7981@C08L3,UpdateBeaconHandler() 1948: Band1 BcnInitedRnd = 122 |
| | [ 47.168057] PrintSrCmd: |
| | [ 47.168057] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.168057] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 |
| | [ 47.182115] PrintSrCmd: |
| | [ 47.182115] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.182115] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 47.196163] PrintSrCmd: |
| | [ 47.196163] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.196163] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 |
| | [ 47.210165] PrintSrCmd: |
| | [ 47.210165] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.210165] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 47.224260] PrintSrCmd: |
| | [ 47.224260] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.224260] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 47.238341] PrintSrCmd: |
| | [ 47.238341] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.238341] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 47.252445] 7981@C03L3,MtCmdTxPwrShowInfo() 13711: ucTxPowerInfoCatg: 2, BandIdx: 1 |
| | [ 47.260190] 7981@C03L3,MtCmdTxPwrShowInfo() 13740: (ret = 0) |
| | [ 47.260294] [mtf_txpower_all_rate_info] band_idx:1 pwr:48 ChBand:5G ePAGain:0 |
| | [ 47.265859] mtk_ppe_dev_register_hook : ineterface rai0 register (3) |
| | [ 47.281759] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.291160] br-lan: port 7(rai0) entered blocking state |
| | [ 47.296415] br-lan: port 7(rai0) entered disabled state |
| | [ 47.301923] device rai0 entered promiscuous mode |
| | [ 47.306705] br-lan: port 7(rai0) entered blocking state |
| | [ 47.311951] br-lan: port 7(rai0) entered forwarding state |
| | [ 47.321507] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.332793] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.345004] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.355414] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.363460] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.448943] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.456810] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.464973] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.473214] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.482626] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.490551] 7981@C08L2,mbss_virtual_if_open() 134: ===> rai4 |
| | [ 47.496375] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT |
| | [ 47.504479] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP |
| | [ 47.512562] WiFi@C01L3,wifi_sys_open() 840: wdev idx = 12 |
| | [ 47.518281] 7981@C18L3,BuildChannelList() 475: |
| | [ 47.522875] 7981@C08L3,DfsCacNormalStart() 3380: [RDM] TX80/RX160 mode, CAC 65 seconds start |
| | [ 47.531541] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=36, ctrl_ch2=0, cent_ch=42 DBDCIdx=1, ChBand=1, BW=2, TXStream=3, RXStream=3, scan(0) |
| | [ 47.557628] 7981@C08L3,DfsCacNormalStart() 3380: [RDM] TX80/RX160 mode, CAC 65 seconds start |
| | [ 47.566422] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] |
| | [ 47.574471] wdev_attr_update(): wdevId12 = e2:ef:02:c3:71:22 |
| | [ 47.580196] WiFi@C12L1,wifi_sys_open() 891: wifi_sys_open():band1 group_idx[12]=25, bw_grp=16 omac=17 |
| | [ 47.589568] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=12 |
| | [ 47.598320] 7981@C02L2,AsicRadioOnOffCtrl() 2291: DbdcIdx=1 RadioOn |
| | [ 47.605304] 7981@C00L2,ApAutoChannelAtBootUp() 338: -----------------> |
| | [ 47.611964] 7981@C00L3,ApAutoChannelAtBootUp() 349: [QIHOO]OriChannel 36 |
| | [ 47.618813] 7981@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 47.624420] 7981@C03L1,MtCmdSetMacTxRx() 10211: (ret = 0) |
| | [ 47.629928] 7981@C23L3,RadarStateCheck() 239: Zero Wait State: 2 |
| | [ 47.635997] 7981@C23L3,RadarStateCheck() 285: RD_NORMAL_MODE |
| | [ 47.642852] 7981@C08L3,DfsCacNormalStart() 3380: [RDM] TX80/RX160 mode, CAC 65 seconds start |
| | [ 47.651429] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=36, ctrl_ch2=0, cent_ch=42 DBDCIdx=1, ChBand=1, BW=2, TXStream=3, RXStream=3, scan(0) |
| | [ 47.674710] 7981@C08L3,DfsCacNormalStart() 3380: [RDM] TX80/RX160 mode, CAC 65 seconds start |
| | [ 47.678147] led_log: pid 10057 ppid 5992 role_type unknown |
| | [ 47.678147] |
| | [ 47.683262] 7981@C23L3,DfsBuildChannelList() 3532: Done |
| | [ 47.692299] led_log: pid 10058 ppid 5992 wifi_result unknown |
| | [ 47.692299] |
| | [ 47.695402] 7981@C23L3,zero_wait_dfs_switch_ch() 925: outband ch 44, ch_stat 0 |
| | [ 47.695406] 7981@C23L3,zero_wait_dfs_switch_ch() 932: bDedicatedZeroWaitDefault == 0 |
| | [ 47.695599] 7981@C08L2,APStartUpForMbss() 993: ===>(caller:ap_inf_open+0x138/0x4b8 [mt_wifi]), mbss_idx:12, CfgMode:0 |
| | [ 47.728125] 7981@C15L2,APPMFInit() 133: [PMF] apidx=12, MFPC=0, MFPR=0, SHA256=0 |
| | [ 47.735558] 7981@C18L3,BuildChannelList() 475: |
| | [ 47.740371] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] |
| | [ 47.747972] WiFi@C08L2,ap_link_up() 7068: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(12) |
| | [ 47.756680] 7981@C01L3,wifi_sys_linkup() 1150: wdev idx = 12 |
| | [ 47.832194] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=12 |
| | [ 47.842753] 7981@C08L3,UpdateBeaconHandler() 1935: BCN_UPDATE_INIT, OmacIdx = 11 (rai4) |
| | [ 47.863790] PrintSrCmd: |
| | [ 47.863790] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.863790] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 |
| | [ 47.877800] PrintSrCmd: |
| | [ 47.877800] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.877800] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 47.891796] PrintSrCmd: |
| | [ 47.891796] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.891796] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 |
| | [ 47.905865] PrintSrCmd: |
| | [ 47.905865] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.905865] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 47.919988] PrintSrCmd: |
| | [ 47.919988] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.919988] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 47.934072] PrintSrCmd: |
| | [ 47.934072] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 |
| | [ 47.934072] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 |
| | [ 47.948217] 7981@C03L3,MtCmdTxPwrShowInfo() 13711: ucTxPowerInfoCatg: 2, BandIdx: 1 |
| | [ 47.955984] 7981@C03L3,MtCmdTxPwrShowInfo() 13740: (ret = 0) |
| | [ 47.961648] [mtf_txpower_all_rate_info] band_idx:1 pwr:48 ChBand:5G ePAGain:0 |
| | [ 47.968796] mtk_ppe_dev_register_hook : ineterface rai4 register (4) |
| | [ 47.975838] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.984398] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 47.993031] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.000955] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.011456] br-lan: port 8(rai4) entered blocking state |
| | [ 48.016702] br-lan: port 8(rai4) entered disabled state |
| | [ 48.022219] device rai4 entered promiscuous mode |
| | [ 48.026994] br-lan: port 8(rai4) entered blocking state |
| | [ 48.032249] br-lan: port 8(rai4) entered forwarding state |
| | [ 48.038055] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.118263] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.127649] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.135705] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.143833] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.151898] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.159769] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.167697] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.176334] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.184401] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.192360] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 48.207001] device ra0 left promiscuous mode |
| | [ 48.211401] br-lan: port 5(ra0) entered disabled state |
| | [ 48.259978] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:8 |
| | [ 48.266108] br-lan: port 5(ra0) entered blocking state |
| | [ 48.271274] br-lan: port 5(ra0) entered disabled state |
| | [ 48.276663] device ra0 entered promiscuous mode |
| | [ 48.281304] br-lan: port 5(ra0) entered blocking state |
| | [ 48.286463] br-lan: port 5(ra0) entered forwarding state |
| | [ 48.302433] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:0 |
| | [ 48.308562] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:1 |
| | [ 48.316465] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:2 |
| | [ 48.322863] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:3 |
| | [ 48.329207] 7981@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3558: Unknown OUIType = 16 |
| | [ 48.336559] 7981@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3558: Unknown OUIType = 9 |
| | [ 48.344077] 7981@C12L1,set_wapp_cmm_ie() 3454: Unknown IE(EID = 111) |
| | [ 48.350756] 7981@C12L1,set_wapp_cmm_ie() 3454: Unknown IE(EID = 110) |
| | [ 48.389887] device ra4 left promiscuous mode |
| | [ 48.394311] br-lan: port 6(ra4) entered disabled state |
| | [ 48.414181] br-lan: port 6(ra4) entered blocking state |
| | [ 48.419347] br-lan: port 6(ra4) entered disabled state |
| | [ 48.424738] device ra4 entered promiscuous mode |
| | [ 48.429503] br-lan: port 6(ra4) entered blocking state |
| | [ 48.434660] br-lan: port 6(ra4) entered forwarding state |
| | [ 48.487699] br-lan: port 9(apcli0) entered blocking state |
| | [ 48.493138] br-lan: port 9(apcli0) entered disabled state |
| | [ 48.498801] device apcli0 entered promiscuous mode |
| | [ 48.548621] Set_Fh_Bss_Proc rai4 wdev->MAPCfg.DevOwnRole 0x0 |
| | [ 48.561520] Set_Fh_Bss_Proc rai4 wdev->MAPCfg.DevOwnRole 0x20 |
| | [ 48.575852] 7981@C12L1,RTMPAPPrivIoctlSet() 3568: IOCTL::(iwpriv) Command not Support [MapChannelEn=0] |
| | [ 48.593409] Set_Fh_Bss_Proc rai0 wdev->MAPCfg.DevOwnRole 0x0 |
| | [ 48.601419] Set_Fh_Bss_Proc rai0 wdev->MAPCfg.DevOwnRole 0x20 |
| | [ 48.610357] 7981@C12L1,RTMPAPPrivIoctlSet() 3568: IOCTL::(iwpriv) Command not Support [MapChannelEn=0] |
| | [ 48.619829] device rai0 left promiscuous mode |
| | [ 48.624338] br-lan: port 7(rai0) entered disabled state |
| | [ 48.636403] br-lan: port 7(rai0) entered blocking state |
| | [ 48.641655] br-lan: port 7(rai0) entered disabled state |
| | [ 48.647130] device rai0 entered promiscuous mode |
| | [ 48.651916] br-lan: port 7(rai0) entered blocking state |
| | [ 48.657157] br-lan: port 7(rai0) entered forwarding state |
| | [ 48.662960] Set_Fh_Bss_Proc ra0 wdev->MAPCfg.DevOwnRole 0x0 |
| | [ 48.673090] Set_Fh_Bss_Proc ra0 wdev->MAPCfg.DevOwnRole 0x20 |
| | [ 48.681531] 7981@C12L1,RTMPAPPrivIoctlSet() 3568: IOCTL::(iwpriv) Command not Support [MapChannelEn=0] |
| | [ 48.695638] Set_Fh_Bss_Proc ra4 wdev->MAPCfg.DevOwnRole 0x0 |
| | [ 48.703807] Set_Fh_Bss_Proc ra4 wdev->MAPCfg.DevOwnRole 0x20 |
| | [ 48.714737] 7981@C12L1,RTMPAPPrivIoctlSet() 3568: IOCTL::(iwpriv) Command not Support [MapChannelEn=0] |
| | [ 48.734751] device rai4 left promiscuous mode |
| | [ 48.739308] br-lan: port 8(rai4) entered disabled state |
| | [ 48.760322] br-lan: port 8(rai4) entered blocking state |
| | [ 48.765565] br-lan: port 8(rai4) entered disabled state |
| | [ 48.771027] device rai4 entered promiscuous mode |
| | [ 48.775792] br-lan: port 8(rai4) entered blocking state |
| | [ 48.781028] br-lan: port 8(rai4) entered forwarding state |
| | [ 48.823748] br-lan: port 10(apclii0) entered blocking state |
| | [ 48.829355] br-lan: port 10(apclii0) entered disabled state |
| | [ 48.835176] device apclii0 entered promiscuous mode |
| | [ 49.219947] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT |
| | [ 49.228104] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP |
| | [ 49.236232] WiFi@C01L3,wifi_sys_open() 840: wdev idx = 16 |
| | [ 49.241939] 7981@C18L3,BuildChannelList() 475: |
| | [ 49.246800] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] |
| | [ 49.254970] wdev_attr_update(): wdevId16 = e6:ef:02:63:71:22 |
| | [ 49.260749] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=16 |
| | [ 49.267155] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] |
| | [ 49.274617] mtk_ppe_dev_register_hook : ineterface apcli0 register (5) |
| | [ 49.281397] br-lan: port 9(apcli0) entered blocking state |
| | [ 49.286820] br-lan: port 9(apcli0) entered forwarding state |
| | [ 49.292774] br-lan: port 9(apcli0) entered disabled state |
| | [ 49.735649] led_log: pid 10539 ppid 5992 role_type unknown |
| | [ 49.735649] |
| | [ 49.744152] led_log: pid 10540 ppid 5992 wifi_result unknown |
| | [ 49.744152] |
| | [ 50.303419] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT |
| | [ 50.311628] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP |
| | [ 50.319674] WiFi@C01L3,wifi_sys_open() 840: wdev idx = 17 |
| | [ 50.325361] 7981@C18L3,BuildChannelList() 475: |
| | [ 50.329990] 7981@C08L3,DfsCacNormalStart() 3380: [RDM] TX80/RX160 mode, CAC 65 seconds start |
| | [ 50.338628] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=36, ctrl_ch2=0, cent_ch=42 DBDCIdx=1, ChBand=1, BW=2, TXStream=3, RXStream=3, scan(0) |
| | [ 50.361847] 7981@C08L3,DfsCacNormalStart() 3380: [RDM] TX80/RX160 mode, CAC 65 seconds start |
| | [ 50.370604] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] |
| | [ 50.378673] wdev_attr_update(): wdevId17 = ea:ef:02:63:71:22 |
| | [ 50.384355] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=17 |
| | [ 50.391534] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] |
| | [ 50.398996] mtk_ppe_dev_register_hook : ineterface apclii0 register (6) |
| | [ 50.405845] br-lan: port 10(apclii0) entered blocking state |
| | [ 50.411427] br-lan: port 10(apclii0) entered forwarding state |
| | [ 50.417508] br-lan: port 10(apclii0) entered disabled state |
| | [ 50.495957] -->mtfwd_exit() |
| | [ 50.496000] <--mtfwd_exit() |
| | [ 50.533125] Current mapfilter version v3.0.1.2 |
| | [ 50.568968] Set_Map_Proc current MAP MODE is 1 |
| | [ 50.574907] SetApCliEnableByWdev: I/F(apcli0) (enable = 0) |
| | [ 50.596643] Set_Map_Proc current MAP MODE is 1 |
| | [ 50.602543] SetApCliEnableByWdev: I/F(apcli1) (enable = 0) |
| | [ 51.784977] led_log: pid 10638 ppid 5992 role_type unknown |
| | [ 51.784977] |
| | [ 51.793638] led_log: pid 10639 ppid 5992 wifi_result unknown |
| | [ 51.793638] |
| | remove br_guest module=guest_network_separation |
| | [ 53.799603] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 4 |
| | [ 53.808909] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 53.821080] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 4 |
| | [ 53.830405] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 53.833421] led_log: pid 10714 ppid 5992 role_type unknown |
| | [ 53.833421] |
| | [ 53.847118] led_log: pid 10716 ppid 5992 wifi_result unknown |
| | [ 53.847118] |
| | [ 53.848106] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 4 |
| | [ 53.863519] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 53.875371] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 4 |
| | [ 53.884532] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 53.960528] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 4 |
| | [ 53.978578] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 4 |
| | [ 53.987847] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 53.998549] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 54.009061] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 54.115815] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 4 |
| | [ 54.136941] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 4 |
| | [ 54.146815] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 54.157421] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 54.167959] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 54.904331] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 4 |
| | [ 54.913559] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 54.952130] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 4 |
| | [ 54.961348] 7981@C12L3,Set_VLAN_Policy_Proc() 14349: Set the VLAN checking policy : 2 |
| | [ 55.887100] led_log: pid 11163 ppid 5992 role_type unknown |
| | [ 55.887100] |
| | [ 55.895527] led_log: pid 11164 ppid 5992 wifi_result unknown |
| | [ 55.895527] |
| | [iptv]iptv_delete_rule:[604] old config:enable:0, vlan_id:45, mask:0 |
| | [ 57.189781] SetApCliEnableByWdev: I/F(apcli0) (enable = 0) |
| | [ 57.198499] SetApCliEnableByWdev: I/F(apcli1) (enable = 0) |
| | [ 57.307290] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 57.315277] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 57.323143] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 57.331001] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 57.338857] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 57.346703] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 57.424910] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [1905Daemon][mai[ 57.433102] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | n] Current Versi[ 57.443018] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | on v3.0.1.2 |
| | [19[ 57.451376] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 57.460506] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 57.468468] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [1905Daemon][map_read_config_file] map_agent_alid = e0:ef:02:63:71:21 |
| | [1905Daemon][map_read_config_file] br_inf = br-lan |
| | [1905Daemon][map_read_config_file] bss_config_priority: ra4;ra0;rai4;rai0;apcli0;apclii0 |
| | [1905Daemon][map_read_config_file] lan = eth0.1 |
| | [1905Daemon][map_read_config_file] lan = eth0.2 |
| | [1905Daemon][map_read_config_file] lan = eth0.3 |
| | [1905Daemon][map_read_config_file] wan = eth1 |
| | [1905Daemon][map_read_config_file] set discovery_cnt to defaut value(11) |
| | cmdu_init set send buffer size 458752 |
| | cmdu_init set recv buffer size 458752 |
| | [ 57.545461] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 57.545517] do_map_set_ctl==>cmd(1905) |
| | [ 57.553325] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | [ 57.557051] do_map_set_ctl==>almac(e0:ef:02:63:71:21) |
| | [1905Daemon][cmd[ 57.557055] sp update own almac toe0:ef:02:63:71:21 |
| | u_init] br mac a[ 57.576249] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | ddr e0:ef:02:63:[ 57.585743] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | 71:20_1905_inter[ 57.594679] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | face_open_sock s[ 57.604251] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | et send buffer size 458752 |
| | _1905_interface_open_sock set recv buffer size 458752 |
| | [1905Daemon][_1905_interface_set_sock_buf] alloc 1905 sock_buf :20480! |
| | [1905Daemon][read_con[ 57.627645] traffic separation is off |
| | fig_file] br_lan=br-lan |
| | [1905Daemon][parse_eth_lan_interface] lan_interface[0]=eth0.1 |
| | [1905Daemon][parse_eth_lan_interface] lan_interface[1]=eth0.2 |
| | [1905Daemon][parse_eth_lan_interface] lan_interface[2]=eth0.3 |
| | [1905Daemon][read_config_file] unknown config line lan_vid |
| | [1905Daemon][read_config_file] unknown config line wan_vid |
| | [1905Daemon][read_config_file] unknown config line ethernet_dev_name |
| | [1905Daemon][read_config_file] parse ext phy port |
| | [1905Daemon][parse_ext_phy_port] ext_phy_port[0]=0 |
| | [1905Daemon][parse_ext_phy_port] ext_phy_port[1]=1 |
| | [1905Daemon][parse_ext_phy_port] [ 57.681961] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | ext_phy_port[2]=[ 57.691765] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | 2 |
| | [1905Daemon][[ 57.700996] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | parse_ext_phy_po[ 57.709744] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | rt] ext_phy_port[ 57.719122] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:8 |
| | [3]=3 |
| | [1905Daem[ 57.726486] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | on][get_port_no][ 57.735665] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! |
| | eth0.1 (1) |
| | [19[ 57.745122] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:0 |
| | 05Daemon][get_po[ 57.752563] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:1 |
| | rt_no] eth0.2 (2[ 57.759987] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:2 |
| | ) |
| | [1905Daemon][[ 57.767418] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:3 |
| | get_port_no] eth0.3 (3) |
| | [1905Daemon][eth_layer_port_init] MAX_LAN_PORT_NUM=7 |
| | [1905Daemon][eth_layer_port_init] init eth_data[0]=0 |
| | [1905Daemon][eth_layer_port_init] init eth_data[1]=1 |
| | [1905Daemon][eth_layer_port_init] init eth_data[2]=2 |
| | [1905Daemon][eth_layer_port_init] init eth_data[3]=3 |
| | [1905Daemon][eth_layer_port_init] init eth_data[4]=4 |
| | [1905Daemon][eth_layer_port_init] init eth_data[5]=[ 57.808430] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:8 |
| | 5 |
| | [1905Daemon][[ 57.815588] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:0 |
| | eth_layer_port_i[ 57.823007] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:1 |
| | nit] init eth_da[ 57.830479] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:2 |
| | ta[6]=6 |
| | [1905Da[ 57.837930] 7981@C14L1,set_wapp_param() 3310: Unknown Parameter:3 |
| | emon][get_port_t[ 57.845445] 7981@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3558: Unknown OUIType = 16 |
| | ype] lan_port=00[ 57.853940] 7981@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3558: Unknown OUIType = 9 |
| | 000007, wan_port[ 57.862722] 7981@C12L1,set_wapp_cmm_ie() 3454: Unknown IE(EID = 111) |
| | =00000008 |
| | [1905[ 57.870132] 7981@C12L1,set_wapp_cmm_ie() 3454: Unknown IE(EID = 110) |
| | Daemon][eth_laye[ 57.877869] 7981@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3558: Unknown OUIType = 16 |
| | r_port_init] lan[ 57.886404] 7981@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3558: Unknown OUIType = 9 |
| | _port=00000007, [ 57.894835] 7981@C12L1,set_wapp_cmm_ie() 3454: Unknown IE(EID = 111) |
| | wan_port=0000000[ 57.902596] 7981@C12L1,set_wapp_cmm_ie() 3454: Unknown IE(EID = 110) |
| | 8 |
| | [1905Daemon][eth_layer_port_init] assign eth_data[0]=0 |
| | [1905Daemon][eth_layer_port_init] assign eth_data[1]=[ 57.918563] Set_Fh_Bss_Proc ra4 wdev->MAPCfg.DevOwnRole 0x0 |
| | 1 |
| | [1905Daemon][eth_layer_port_init] assign eth_data[2]=2 |
| | [1905Daemon][eth_layer_port_init] lan_finished=0 j=3 |
| | [1905Daemon][eth_layer_port_ini[ 57.936946] Set_Fh_Bss_Proc ra4 wdev->MAPCfg.DevOwnRole 0x20 |
| | t] assign eth_data[3]=3 wan_port = true |
| | [1905Daemon][main] p190[ 57.948944] 7981@C12L1,RTMPAPPrivIoctlSet() 3568: IOCTL::(iwpriv) Command not Support [MapChannelEn=1] |
| | 5_Manager Daemon Running |
| | [ 57.959865] [HNAT] LAN IP: 192.168.2.1 LAN MASK: 255.255.255.0 |
| | [ 57.962295] led_log: pid 11335 ppid 5992 role_type unknown |
| | [ 57.962295] |
| | [ 57.968730] Set_Fh_Bss_Proc ra0 wdev->MAPCfg.DevOwnRole 0x0 |
| | [ 57.981276] led_log: pid 11338 ppid 5992 wifi_result unknown |
| | [ 57.981276] |
| | [ 57.990655] Set_Fh_Bss_Proc ra0 wdev->MAPCfg.DevOwnRole 0x20 |
| | [ 58.001647] 7981@C12L1,RTMPAPPrivIoctlSet() 3568: IOCTL::(iwpriv) Command not Support [MapChannelEn=1] |
| | [ 58.013720] Set_Fh_Bss_Proc rai4 wdev->MAPCfg.DevOwnRole 0x0 |
| | [ 58.022808] Set_Fh_Bss_Proc rai4 wdev->MAPCfg.DevOwnRole 0x20 |
| | [ 58.031423] 7981@C12L1,RTMPAPPrivIoctlSet() 3568: IOCTL::(iwpriv) Command not Support [MapChannelEn=1] |
| | [ 58.043281] Set_Fh_Bss_Proc rai0 wdev->MAPCfg.DevOwnRole 0x0 |
| | [ 58.051277] Set_Fh_Bss_Proc rai0 wdev->MAPCfg.DevOwnRole 0x20 |
| | [ 58.059651] 7981@C12L1,RTMPAPPrivIoctlSet() 3568: IOCTL::(iwpriv) Command not Support [MapChannelEn=1] |
| | worker task status change, send to receiver port:0 0 |
| | [1905Daemon][eth_layer_port_data_update_and_notify] [TOPO]port [0] DOWN |
| | [1905Daemon][update_topology_tree] [TOPO]root leaf not exist, could not update topology tree |
| | worker task status change, send to receiver port:1 0 |
| | [1905Daemon][eth_layer_port_data_update_and_notify] [TOPO]port [1] DOWN |
| | [1905Daemon][update_topology_tree] [TOPO]root leaf not exist, could not update topology tree |
| | worker task status change, send to receiver port:2 0 |
| | [1905Daemon][eth_layer_port_data_update_and_notify] [TOPO]port [2] DOWN |
| | [1905Daemon][update_topology_tree] [TOPO]root leaf not exist, could not update topology tree |
| | worker task status change, send to receiver port:3 0 |
| | worker task status change, send to receiver port:4 0 |
| | [1905Daemon][eth_layer_port_data_update_and_notify] worker task status change, send to receiver port:5 0 |
| | [TOPO]port [3] DOWN |
| | [1905Daemon][update_topology_tree] [TOPO]root leaf not exist, could not update topology tree |
| | [1905Daemon][eth_layer_port_data_update_and_notify] [TOPO]port [4] DOWN |
| | [1905Daemon][update_topology_tree] [TOPO]root leaf not exist, could not update topology tree |
| | [1905Daemon][eth_layer_port_data_update_and_notify] [TOPO]port [5] DOWN |
| | [1905Daemon][update_topology_tree] [TOPO]root leaf not exist, could not update topology tree |
| | worker task status change, send to receiver port:6 0 |
| | [1905Daemon][eth_layer_port_data_update_and_notify] [TOPO]port [6] DOWN |
| | [1905Daemon][update_topology_tree] [TOPO]root leaf not exist, could not update topology tree |
| | [1905Daemon][map_event_handler] receive LIB_SYNC_RECV_BUF_SIZE (notify len:235, peer len:15360) from mapd, own real len:20480, default len:20480 |
| | [1905Daemon][_1905_interface_set_sock_buf] alloc 1905 sock_buf :20480! |
| | [1905Daemon][map_event_handler] change own real len success:20480 |
| | [1905Daemon][map_event_handler] change peer len success:15360 |
| | [1905Daemon][_1905_send_sync_recv_buf_size_rsp] _1905_SYNC_RECV_BUF_SIZE_RSP_EVENT send to mapd success, change_len:20480, rsp:1 |
| | [1905Daemon][init_wireless_interface] itf name = ra4 |
| | [1905Daemon][init_wireless_interface] itf name = ra0 |
| | [1905Daemon][init_wireless_interface] itf name = rai4 |
| | [1905Daemon][init_wireless_interface] itf name = rai0 |
| | [1905Daemon][init_wireless_interface] itf name = apcli0 |
| | [1905Daemon][init_wireless_interface] itf name = apclii0 |
| | [1905Daemon][lldpdu_init] create lldpdu on eth0.1-sock(22) success |
| | [1905Daemon][lldpdu_init] create lldpdu on eth0.2-sock(23) success |
| | [1905Daemon][lldpdu_init] create lldpdu on eth0.3-sock(24) success |
| | [1905Daemon][lldpdu_init] create lldpdu on eth1-sock(25) success |
| | [1905Daemon][lldpdu_init] create lldpdu on ra4-sock(26) success |
| | [1905Daemon][lldpdu_init] create lldpdu on ra0-sock(27) success |
| | [1905Daemon][lldpdu_init] create lldpdu on rai4-sock(28) success |
| | [1905Daemon][lldpdu_init] create lldpdu on rai0-sock(29) success |
| | [1905Daemon][lldpdu_init] create lldpdu on apcli0-sock(30) success |
| | [1905Daemon][lldpdu_init] create lldpdu on apclii0-sock(31) success |
| | [1905Daemon][set_bss_config_priority_by_str] bss intf(ra4) priority=1 |
| | [1905Daemon][set_bss_config_priority_by_str] bss intf(ra0) priority=2 |
| | [1905Daemon][set_bss_config_priority_by_str] bss intf(rai4) priority=3 |
| | [1905Daemon][set_bss_config_priority_by_str] bss intf(rai0) priority=4 |
| | [1905Daemon][set_bss_config_priority_by_str] bss intf(apcli0) priority=5 |
| | [1905Daemon][set_bss_config_priority_by_str] bss intf(apclii0) priority=6 |
| | [1905Daemon][common_info_init] eth0.1 is eth interface; enable all tx rx |
| | [1905Daemon][common_info_init] eth0.2 is eth interface; enable all tx rx |
| | [1905Daemon][common_info_init] eth0.3 is eth interface; enable all tx rx |
| | [1905Daemon][common_info_init] eth1 is eth interface; enable all tx rx |
| | [ 60.680592] dynamic load balance is off |
| | [ 60.684483] mapfilter: Start drop the specific ip packets now !! |
| | [ 60.684483] |
| | [ 60.696318] led_log: pid 11439 ppid 5992 role_type CAP |
| | [ 60.696318] |
| | [ 60.698237] ----->free map device rcu 00000000be11d493 |
| | [ 60.707019] led_log: pid 11440 ppid 5992 wifi_result connect_success_near |
| | [ 60.707019] |
| | [ 60.710500] ----->free map device rcu 000000005fcf0407 |
| | [ 60.710502] ----->free map device rcu 0000000042332621 |
| | Failed to connetct to generic netlink |
| | switch mt753x layer init fail |
| | netlink_phy_reg_read fail |
| | [1905Daemon][eth_get_port_status] fail to get_port_status index(2) |
| | worker task status -1 |
| | Failed to connetct to generic netlink |
| | switch mt753x layer init fail |
| | netlink_phy_reg_read fail |
| | [1905Daemon][eth_get_port_status] fail to get_port_status index(3) |
| | worker task status -1 |
| | [1905Daemon][auto_set_bh_bss_acl] controller lose, auto_set_bh_bss_acl. |
| | [ 62.657600] mapfilter: Stop drop the specific ip packets now !! |
| | [ 62.657600] |
| | [ 62.769694] led_log: pid 11504 ppid 5992 role_type NonCAP |
| | [ 62.769694] |
| | [ 62.785632] led_log: pid 11505 ppid 5992 wifi_result connect_fail |
| | [ 62.785632] |
| | </nowiki> |
| </WRAP>\\ | </WRAP>\\ |
| |
| ==== OpenWrt bootlog ==== | ==== OpenWrt bootlog ==== |
| <WRAP bootlog> | <WRAP bootlog> |
| <nowiki>COPY HERE THE BOOTLOG ONCE OPENWRT IS INSTALLED AND RUNNING</nowiki> | <nowiki> |
| | F0: 102B 0000 |
| | FA: 1040 0000 |
| | FA: 1040 0000 [0200] |
| | F9: 0000 0000 |
| | V0: 0000 0000 [0001] |
| | 00: 0000 0000 |
| | BP: 2400 0041 [0000] |
| | G0: 1190 0000 |
| | EC: 0000 0000 [1000] |
| | T0: 0000 0239 [010F] |
| | Jump to BL |
| | |
| | NOTICE: BL2: v2.7(release):OpenWrt v2022-08-31-75393484-1 (mt7981-spim-nand-ddr3) |
| | NOTICE: BL2: Built : 20:00:48, May 31 2023 |
| | NOTICE: WDT: disabled |
| | NOTICE: EMI: Using DDR3 settings |
| | NOTICE: EMI: Detected DRAM size: 256MB |
| | NOTICE: EMI: complex R/W mem test passed |
| | NOTICE: CPU: MT7981 (1300MHz) |
| | NOTICE: SPI_NAND parses attributes from parameter page. |
| | NOTICE: SPI_NAND Detected ID 0xc8 |
| | NOTICE: Page size 2048, Block size 131072, size 134217728 |
| | NOTICE: BL2: Booting BL31 |
| | NOTICE: BL31: v2.7(release):OpenWrt v2022-08-31-75393484-1 (mt7981-spim-nand-ddr3) |
| | NOTICE: BL31: Built : 20:00:48, May 31 2023 |
| | |
| | |
| | U-Boot 2023.04-OpenWrt-r23201-4c5a9da869 (May 31 2023 - 20:00:48 +0000) |
| | |
| | CPU: MediaTek MT7981 |
| | Model: Qihoo 360T7 |
| | DRAM: 256 MiB |
| | Core: 40 devices, 18 uclasses, devicetree: embed |
| | Loading Environment from UBI... spi-nand: spi_nand spi_nand@0: GigaDevice SPI NAND was found. |
| | spi-nand: spi_nand spi_nand@0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 |
| | Read 126976 bytes from volume ubootenv to 000000004f7c1c80 |
| | Read 126976 bytes from volume ubootenv2 to 000000004f7e0cc0 |
| | OK |
| | In: serial@11002000 |
| | Out: serial@11002000 |
| | Err: serial@11002000 |
| | reset button found |
| | Loading Environment from UBI... UBI partition 'ubi' already selected |
| | Read 126976 bytes from volume ubootenv to 000000004f7c1c80 |
| | Read 126976 bytes from volume ubootenv2 to 000000004f7e0cc0 |
| | OK |
| | Net: eth0: ethernet@15100000 |
| | No EFI system partition |
| | No EFI system partition |
| | Failed to persist EFI variables |
| | |
| | |
| | ( ( ( OpenWrt ) ) ) U-Boot 2023.04-OpenWrt-r23201-4c5a9da869 (May 31 2023 - 20:00:48 +0000) |
| | |
| | 1. Run default boot command. |
| | 2. Boot system via TFTP. |
| | 3. Boot production system from NAND. |
| | 4. Boot recovery system from NAND. |
| | 5. Load production system via TFTP then write to NAND. |
| | 6. Load recovery system via TFTP then write to NAND. |
| | 7. Load BL31+U-Boot FIP via TFTP then write to NAND. |
| | 8. Load BL2 preloader via TFTP then write to NAND. |
| | 9. Reboot. |
| | a. Reset all settings to factory defaults. |
| | 0. U-Boot console |
| | |
| | |
| | Press UP/DOWN to move, ENTER to select, ESC to quit |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | No size specified -> Using max size (9777152) |
| | Read 9777152 bytes from volume fit to 0000000046000000 |
| | |
| | ## Checking Image at 46000000 ... |
| | FIT image found |
| | FIT description: ARM64 OpenWrt FIT (Flattened Image Tree) |
| | Image 0 (kernel-1) |
| | Description: ARM64 OpenWrt Linux-5.15.114 |
| | Type: Kernel Image |
| | Compression: gzip compressed |
| | Data Start: 0x46001000 |
| | Data Size: 5260909 Bytes = 5 MiB |
| | Architecture: AArch64 |
| | OS: Linux |
| | Load Address: 0x48000000 |
| | Entry Point: 0x48000000 |
| | Hash algo: crc32 |
| | Hash value: 23dca11a |
| | Hash algo: sha1 |
| | Hash value: fc5a5d6e34cad1ca272effe15dc5d631c73de999 |
| | Image 1 (fdt-1) |
| | Description: ARM64 OpenWrt qihoo_360t7 device tree blob |
| | Type: Flat Device Tree |
| | Compression: uncompressed |
| | Data Start: 0x46506000 |
| | Data Size: 32768 Bytes = 32 KiB |
| | Architecture: AArch64 |
| | Hash algo: crc32 |
| | Hash value: 86810e23 |
| | Hash algo: sha1 |
| | Hash value: 37decafe69f87f0fecabb97e2e1db3a29f1cad99 |
| | Image 2 (rootfs-1) |
| | Description: ARM64 OpenWrt qihoo_360t7 rootfs |
| | Type: Filesystem Image |
| | Compression: uncompressed |
| | Data Start: 0x4650e000 |
| | Data Size: 4354048 Bytes = 4.2 MiB |
| | Hash algo: crc32 |
| | Hash value: 4768dc7d |
| | Hash algo: sha1 |
| | Hash value: bcb2ce46fe7631c08ba67448ac91667f09e0304b |
| | Default Configuration: 'config-1' |
| | Configuration 0 (config-1) |
| | Description: OpenWrt qihoo_360t7 |
| | Kernel: kernel-1 |
| | FDT: fdt-1 |
| | Loadables: rootfs-1 |
| | ## Checking hash(es) for FIT Image at 46000000 ... |
| | Hash(es) for Image 0 (kernel-1): crc32+ sha1+ |
| | Hash(es) for Image 1 (fdt-1): crc32+ sha1+ |
| | Hash(es) for Image 2 (rootfs-1): crc32+ sha1+ |
| | ## Loading kernel from FIT Image at 46000000 ... |
| | Using 'config-1' configuration |
| | Trying 'kernel-1' kernel subimage |
| | Description: ARM64 OpenWrt Linux-5.15.114 |
| | Type: Kernel Image |
| | Compression: gzip compressed |
| | Data Start: 0x46001000 |
| | Data Size: 5260909 Bytes = 5 MiB |
| | Architecture: AArch64 |
| | OS: Linux |
| | Load Address: 0x48000000 |
| | Entry Point: 0x48000000 |
| | Hash algo: crc32 |
| | Hash value: 23dca11a |
| | Hash algo: sha1 |
| | Hash value: fc5a5d6e34cad1ca272effe15dc5d631c73de999 |
| | Verifying Hash Integrity ... crc32+ sha1+ OK |
| | ## Loading fdt from FIT Image at 46000000 ... |
| | Using 'config-1' configuration |
| | Trying 'fdt-1' fdt subimage |
| | Description: ARM64 OpenWrt qihoo_360t7 device tree blob |
| | Type: Flat Device Tree |
| | Compression: uncompressed |
| | Data Start: 0x46506000 |
| | Data Size: 32768 Bytes = 32 KiB |
| | Architecture: AArch64 |
| | Hash algo: crc32 |
| | Hash value: 86810e23 |
| | Hash algo: sha1 |
| | Hash value: 37decafe69f87f0fecabb97e2e1db3a29f1cad99 |
| | Verifying Hash Integrity ... crc32+ sha1+ OK |
| | Booting using the fdt blob at 0x46506000 |
| | Working FDT set to 46506000 |
| | ## Loading loadables from FIT Image at 46000000 ... |
| | Trying 'rootfs-1' loadables subimage |
| | Description: ARM64 OpenWrt qihoo_360t7 rootfs |
| | Type: Filesystem Image |
| | Compression: uncompressed |
| | Data Start: 0x4650e000 |
| | Data Size: 4354048 Bytes = 4.2 MiB |
| | Hash algo: crc32 |
| | Hash value: 4768dc7d |
| | Hash algo: sha1 |
| | Hash value: bcb2ce46fe7631c08ba67448ac91667f09e0304b |
| | Verifying Hash Integrity ... crc32+ sha1+ OK |
| | Uncompressing Kernel Image |
| | Loading Device Tree to 000000004e7e2000, end 000000004e7ecfff ... OK |
| | Working FDT set to 4e7e2000 |
| | Add 'ramoops@42ff0000' node failed: FDT_ERR_EXISTS |
| | |
| | Starting kernel ... |
| | |
| | [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] |
| | [ 0.000000] Linux version 5.15.114 (gch981213@guoguo-thinkbook) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 12.3.0 r22396+773-95cae498b6) 12.3.0, GNU ld (GNU Binutils) 2.40.0) #0 SMP Wed May 31 20:00:48 2023 |
| | [ 0.000000] Machine model: Qihoo 360T7 |
| | [ 0.000000] Zone ranges: |
| | [ 0.000000] DMA [mem 0x0000000040000000-0x000000004fffffff] |
| | [ 0.000000] DMA32 empty |
| | [ 0.000000] Normal empty |
| | [ 0.000000] Movable zone start for each node |
| | [ 0.000000] Early memory node ranges |
| | [ 0.000000] node 0: [mem 0x0000000040000000-0x0000000042ffffff] |
| | [ 0.000000] node 0: [mem 0x0000000043000000-0x000000004302ffff] |
| | [ 0.000000] node 0: [mem 0x0000000043030000-0x0000000047c7ffff] |
| | [ 0.000000] node 0: [mem 0x0000000047c80000-0x0000000047ffffff] |
| | [ 0.000000] node 0: [mem 0x0000000048000000-0x000000004fffffff] |
| | [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000004fffffff] |
| | [ 0.000000] psci: probing for conduit method from DT. |
| | [ 0.000000] psci: PSCIv1.1 detected in firmware. |
| | [ 0.000000] psci: Using standard PSCI v0.2 function IDs |
| | [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. |
| | [ 0.000000] psci: SMC Calling Convention v1.2 |
| | [ 0.000000] percpu: Embedded 17 pages/cpu s29592 r8192 d31848 u69632 |
| | [ 0.000000] pcpu-alloc: s29592 r8192 d31848 u69632 alloc=17*4096 |
| | [ 0.000000] pcpu-alloc: [0] 0 [0] 1 |
| | [ 0.000000] Detected VIPT I-cache on CPU0 |
| | [ 0.000000] CPU features: detected: GIC system register CPU interface |
| | [ 0.000000] CPU features: kernel page table isolation disabled by kernel configuration |
| | [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 64512 |
| | [ 0.000000] Kernel command line: |
| | [ 0.000000] Dentry cache hash table entries: 32768 (order: 6, 262144 bytes, linear) |
| | [ 0.000000] Inode-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) |
| | [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off |
| | [ 0.000000] Memory: 240952K/262144K available (8128K kernel code, 894K rwdata, 2212K rodata, 448K init, 286K bss, 21192K reserved, 0K cma-reserved) |
| | [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 |
| | [ 0.000000] rcu: Hierarchical RCU implementation. |
| | [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2. |
| | [ 0.000000] Tracing variant of Tasks RCU enabled. |
| | [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. |
| | [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 |
| | [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 |
| | [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode |
| | [ 0.000000] GICv3: 640 SPIs implemented |
| | [ 0.000000] GICv3: 0 Extended SPIs implemented |
| | [ 0.000000] GICv3: Distributor has no Range Selector support |
| | [ 0.000000] Root IRQ handler: gic_handle_irq |
| | [ 0.000000] GICv3: 16 PPIs implemented |
| | [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000c080000 |
| | [ 0.000000] arch_timer: cp15 timer(s) running at 13.00MHz (phys). |
| | [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2ff89eacb, max_idle_ns: 440795202429 ns |
| | [ 0.000000] sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns |
| | [ 0.000128] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=130000) |
| | [ 0.000138] pid_max: default: 32768 minimum: 301 |
| | [ 0.000425] Mount-cache hash table entries: 512 (order: 0, 4096 bytes, linear) |
| | [ 0.000435] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes, linear) |
| | [ 0.001704] rcu: Hierarchical SRCU implementation. |
| | [ 0.002052] smp: Bringing up secondary CPUs ... |
| | [ 0.002365] Detected VIPT I-cache on CPU1 |
| | [ 0.002390] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 |
| | [ 0.002418] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] |
| | [ 0.002483] smp: Brought up 1 node, 2 CPUs |
| | [ 0.002497] SMP: Total of 2 processors activated. |
| | [ 0.002502] CPU features: detected: 32-bit EL0 Support |
| | [ 0.002506] CPU features: detected: CRC32 instructions |
| | [ 0.002533] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching |
| | [ 0.002595] CPU: All CPU(s) started at EL2 |
| | [ 0.002607] alternatives: patching kernel code |
| | [ 0.005576] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns |
| | [ 0.005599] futex hash table entries: 512 (order: 3, 32768 bytes, linear) |
| | [ 0.005734] pinctrl core: initialized pinctrl subsystem |
| | [ 0.006385] NET: Registered PF_NETLINK/PF_ROUTE protocol family |
| | [ 0.006691] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations |
| | [ 0.006720] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations |
| | [ 0.006744] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations |
| | [ 0.007078] thermal_sys: Registered thermal governor 'fair_share' |
| | [ 0.007082] thermal_sys: Registered thermal governor 'bang_bang' |
| | [ 0.007087] thermal_sys: Registered thermal governor 'step_wise' |
| | [ 0.007091] thermal_sys: Registered thermal governor 'user_space' |
| | [ 0.007253] ASID allocator initialised with 65536 entries |
| | [ 0.007674] pstore: Registered ramoops as persistent store backend |
| | [ 0.007681] ramoops: using 0x10000@0x42ff0000, ecc: 0 |
| | [ 0.017340] cryptd: max_cpu_qlen set to 1000 |
| | [ 0.019563] SCSI subsystem initialized |
| | [ 0.019720] libata version 3.00 loaded. |
| | [ 0.020825] clocksource: Switched to clocksource arch_sys_counter |
| | [ 0.021461] NET: Registered PF_INET protocol family |
| | [ 0.021551] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear) |
| | [ 0.021879] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear) |
| | [ 0.021896] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) |
| | [ 0.021905] TCP established hash table entries: 2048 (order: 2, 16384 bytes, linear) |
| | [ 0.021924] TCP bind hash table entries: 2048 (order: 3, 32768 bytes, linear) |
| | [ 0.021953] TCP: Hash tables configured (established 2048 bind 2048) |
| | [ 0.022023] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) |
| | [ 0.022041] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) |
| | [ 0.022150] NET: Registered PF_UNIX/PF_LOCAL protocol family |
| | [ 0.022172] PCI: CLS 0 bytes, default 64 |
| | [ 0.024619] workingset: timestamp_bits=46 max_order=16 bucket_order=0 |
| | [ 0.028159] squashfs: version 4.0 (2009/01/31) Phillip Lougher |
| | [ 0.028174] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. |
| | [ 0.062439] pwm-mediatek 10048000.pwm: clock: top fail: -517 |
| | [ 0.071469] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled |
| | [ 0.072319] printk: console [ttyS0] disabled |
| | [ 0.092488] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 18, base_baud = 2500000) is a ST16650V2 |
| | [ 0.706706] printk: console [ttyS0] enabled |
| | [ 0.711721] cacheinfo: Unable to detect cache hierarchy for CPU 0 |
| | [ 0.720771] loop: module loaded |
| | [ 0.725470] spi-nand spi0.0: ESMT SPI NAND was found. |
| | [ 0.730520] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 |
| | [ 0.738883] 8 fixed-partitions partitions found on MTD device spi0.0 |
| | [ 0.745257] Creating 8 MTD partitions on "spi0.0": |
| | [ 0.750039] 0x000000000000-0x000000100000 : "bl2" |
| | [ 0.755856] 0x000000100000-0x000000180000 : "u-boot-env" |
| | [ 0.761915] 0x000000180000-0x000000380000 : "Factory" |
| | [ 0.768725] 0x000000380000-0x000000580000 : "fip" |
| | [ 0.775362] 0x000000580000-0x000007180000 : "ubi" |
| | [ 0.846946] 0x000007180000-0x000007280000 : "config" |
| | [ 0.853081] 0x000007280000-0x000007300000 : "factory" |
| | [ 0.858906] 0x000007300000-0x000007a00000 : "log" |
| | [ 1.016225] mtk_soc_eth 15100000.ethernet: generated random MAC address 8a:40:d4:9c:26:7c |
| | [ 1.025205] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc009480000, irq 82 |
| | [ 1.034776] i2c_dev: i2c /dev entries driver |
| | [ 1.040268] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) |
| | [ 1.048970] NET: Registered PF_INET6 protocol family |
| | [ 1.054729] Segment Routing with IPv6 |
| | [ 1.058410] In-situ OAM (IOAM) with IPv6 |
| | [ 1.062401] NET: Registered PF_PACKET protocol family |
| | [ 1.067580] 8021q: 802.1Q VLAN Support v1.8 |
| | [ 1.072834] pstore: Using crash dump compression: deflate |
| | [ 1.126894] mt7530-mdio mdio-bus:1f: configuring for fixed/2500base-x link mode |
| | [ 1.136297] mt7530-mdio mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx |
| | [ 1.149540] mt7530-mdio mdio-bus:1f lan3 (uninitialized): PHY [mt7530-0:00] driver [MediaTek MT7531 PHY] (irq=91) |
| | [ 1.170084] mt7530-mdio mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7531 PHY] (irq=92) |
| | [ 1.190266] mt7530-mdio mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7531 PHY] (irq=93) |
| | [ 1.210414] mt7530-mdio mdio-bus:1f wan (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7531 PHY] (irq=94) |
| | [ 1.221908] DSA: tree 0 setup |
| | [ 1.225828] UBI: auto-attach mtd4 |
| | [ 1.229163] ubi0: default fastmap pool size: 40 |
| | [ 1.233713] ubi0: default fastmap WL pool size: 20 |
| | [ 1.238492] ubi0: attaching mtd4 |
| | [ 1.993880] ubi0: scanning is finished |
| | [ 2.008485] ubi0: attached mtd4 (name "ubi", size 108 MiB) |
| | [ 2.013986] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes |
| | [ 2.020853] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 |
| | [ 2.027628] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 |
| | [ 2.034581] ubi0: good PEBs: 864, bad PEBs: 0, corrupted PEBs: 0 |
| | [ 2.040575] ubi0: user volume: 4, internal volumes: 1, max. volumes count: 128 |
| | [ 2.047786] ubi0: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 0 |
| | [ 2.056125] ubi0: available PEBs: 0, total reserved PEBs: 864, PEBs reserved for bad PEB handling: 20 |
| | [ 2.065341] ubi0: background thread "ubi_bgt0d" started, PID 406 |
| | [ 2.067388] FIT: Selected configuration: "config-1" (OpenWrt qihoo_360t7) |
| | [ 2.078153] FIT: kernel sub-image 0x00001000..0x0050566c "kernel-1" (ARM64 OpenWrt Linux-5.15.114) |
| | [ 2.088072] FIT: flat_dt sub-image 0x00506000..0x0050dfff "fdt-1" (ARM64 OpenWrt qihoo_360t7 device tree blob) |
| | [ 2.098943] FIT: filesystem sub-image 0x0050e000..0x00934fff "rootfs-1" (ARM64 OpenWrt qihoo_360t7 rootfs) |
| | [ 2.109198] FIT: selecting configured loadable "rootfs-1" to be root filesystem |
| | [ 2.116494] ubiblock0_2: p1(rootfs-1) |
| | [ 2.116684] block ubiblock0_2: created from ubi0:2(fit) |
| | [ 2.132746] VFS: Mounted root (squashfs filesystem) readonly on device 259:0. |
| | [ 2.140058] Freeing unused kernel memory: 448K |
| | [ 2.170872] Run /sbin/init as init process |
| | [ 2.174958] with arguments: |
| | [ 2.177912] /sbin/init |
| | [ 2.180606] with environment: |
| | [ 2.183744] HOME=/ |
| | [ 2.186092] TERM=linux |
| | [ 2.409573] init: Console is alive |
| | [ 2.413165] init: - watchdog - |
| | [ 2.841817] kmodloader: loading kernel modules from /etc/modules-boot.d/* |
| | [ 2.872664] kmodloader: done loading kernel modules from /etc/modules-boot.d/* |
| | [ 2.890074] init: - preinit - |
| | [ 3.020850] random: crng init done |
| | [ 3.294378] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode |
| | [ 3.302906] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx |
| | [ 3.314183] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode |
| | Press the [f] key and hit [enter] to enter failsafe mode |
| | Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level |
| | [ 5.404514] UBIFS (ubi0:3): default file-system created |
| | [ 5.410614] UBIFS (ubi0:3): Mounting in unauthenticated mode |
| | [ 5.416372] UBIFS (ubi0:3): background thread "ubifs_bgt0_3" started, PID 489 |
| | [ 5.502068] UBIFS (ubi0:3): UBIFS: mounted UBI device 0, volume 3, name "rootfs_data" |
| | [ 5.509897] UBIFS (ubi0:3): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes |
| | [ 5.519818] UBIFS (ubi0:3): FS size: 92946432 bytes (88 MiB, 732 LEBs), max 743 LEBs, journal size 4698112 bytes (4 MiB, 37 LEBs) |
| | [ 5.531464] UBIFS (ubi0:3): reserved for root: 4390089 bytes (4287 KiB) |
| | [ 5.538065] UBIFS (ubi0:3): media format: w5/r0 (latest is w5/r0), UUID F2A900A9-503D-4997-B9F2-F6B23ECDC865, small LPT model |
| | [ 5.551559] mount_root: overlay filesystem has not been fully initialized yet |
| | [ 5.558893] mount_root: switching to ubifs overlay |
| | [ 5.567371] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off. |
| | [ 5.578484] urandom-seed: Seed file not found (/etc/urandom.seed) |
| | [ 5.635516] procd: - early - |
| | [ 5.638469] procd: - watchdog - |
| | [ 6.179070] procd: - watchdog - |
| | [ 6.182476] procd: - ubus - |
| | [ 6.238351] procd: - init - |
| | Please press Enter to activate this console. |
| | [ 6.433575] urngd: v1.0.2 started. |
| | [ 6.468118] kmodloader: loading kernel modules from /etc/modules.d/* |
| | [ 6.482426] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433(alg:7fcdfc00)/0/0/0 |
| | [ 6.497760] Loading modules backported from Linux version v6.1.24-0-g0102425ac76b |
| | [ 6.505340] Backport generated by backports.git v5.15.92-1-44-gd6ea70fafd36 |
| | [ 6.835214] mt7986-wmac 18000000.wifi: HW/SW Version: 0x8a108a10, Build Time: 20221208201745a |
| | [ 6.835214] |
| | [ 7.066131] mt7986-wmac 18000000.wifi: WM Firmware Version: ____000000, Build Time: 20221208201806 |
| | [ 7.180968] mt7986-wmac 18000000.wifi: WA Firmware Version: DEV_000000, Build Time: 20221208202048 |
| | [ 9.503313] PPP generic driver version 2.4.2 |
| | [ 9.509117] NET: Registered PF_PPPOX protocol family |
| | [ 9.518902] kmodloader: done loading kernel modules from /etc/modules.d/* |
| | [ 9.689189] mtdblock: MTD device 'factory' is NAND, please consider using UBI block devices instead. |
| | [ 10.596527] mtdblock: MTD device 'factory' is NAND, please consider using UBI block devices instead. |
| | [ 15.866511] mtk_soc_eth 15100000.ethernet eth0: Link is Down |
| | [ 15.885088] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode |
| | [ 15.895597] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx |
| | [ 15.904309] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready |
| | [ 15.911900] device eth0 entered promiscuous mode |
| | [ 15.917058] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode |
| | [ 15.928310] br-lan: port 1(lan1) entered blocking state |
| | [ 15.933619] br-lan: port 1(lan1) entered disabled state |
| | [ 15.940325] device lan1 entered promiscuous mode |
| | [ 15.955580] mt7530-mdio mdio-bus:1f lan2: configuring for phy/gmii link mode |
| | [ 15.967627] mt7530-mdio mdio-bus:1f lan2: Link is Up - 1Gbps/Full - flow control rx/tx |
| | [ 15.976064] br-lan: port 2(lan2) entered blocking state |
| | [ 15.981362] br-lan: port 2(lan2) entered disabled state |
| | [ 15.989017] device lan2 entered promiscuous mode |
| | [ 15.996966] br-lan: port 2(lan2) entered blocking state |
| | [ 16.002237] br-lan: port 2(lan2) entered forwarding state |
| | [ 16.007754] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready |
| | [ 16.017325] mt7530-mdio mdio-bus:1f lan3: configuring for phy/gmii link mode |
| | [ 16.028120] br-lan: port 3(lan3) entered blocking state |
| | [ 16.033390] br-lan: port 3(lan3) entered disabled state |
| | [ 16.040746] device lan3 entered promiscuous mode |
| | [ 16.052931] mt7530-mdio mdio-bus:1f wan: configuring for phy/gmii link mode |
| | </nowiki> |
| </WRAP>\\ | </WRAP>\\ |
| |