Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision Next revisionBoth sides next revision | ||
| toh:mts:wg430223 [2022/06/14 15:29] – [OEM easy installation] csharper2005 | toh:mts:wg430223 [2023/05/17 16:54] – [Tags] csharper2005 | ||
|---|---|---|---|
| Line 5: | Line 5: | ||
| /* USE https:// | /* USE https:// | ||
| - | {{page> | + | /*****/ |
| + | /* {{page> | ||
| + | /*****/ | ||
| - | The MTS WG430223 is a wireless router based on the MT7621 platform. While it can be acquired for relatively low cost (especially on avito.ru) compared to other units with similar specifications. | + | The MTS WG430223 is a wireless router based on the MT7621 platform. While it can be acquired for relatively low cost (especially on avito.ru) compared to other units with similar specifications. |
| - | + | ||
| - | <WRAP BOX> | + | |
| - | FIXME Any text with a light background (like this one) provides instructions for creating the Details Page. When you have filled in correct/ | + | |
| - | </ | + | |
| /*****/ | /*****/ | ||
| Line 17: | Line 15: | ||
| /*****/ | /*****/ | ||
| - | {{media:example:genericrouter1.png?200|Generic Router}} | + | {{media:mts:wg430223_case_front.jpg?400|MTS WG430223}} |
| - | <WRAP BOX> | ||
| - | FIXME | ||
| - | ===== Getting started with a new Device Page ===== | ||
| - | - This is an empty template that suggests the information that should be present on a well-constructed Device Page. This means, that **you have to fill it with life and information.** | ||
| - | - There are several " | ||
| - | - When there are no more " | ||
| - | |||
| - | ===== Keep the articles modular ===== | ||
| - | * Please include only model specific information, | ||
| - | * If you have no time to write certain stuff, link to [[docs: | ||
| - | * [[docs: | ||
| - | * DO NOT provide a complete howto here! Instead //groom// the [[docs: | ||
| - | </ | ||
| ===== Supported Versions ===== | ===== Supported Versions ===== | ||
| Line 43: | Line 28: | ||
| ---- | ---- | ||
| + | ===== Experimental firmware ===== | ||
| + | |||
| + | * [[https:// | ||
| ===== Hardware Highlights ===== | ===== Hardware Highlights ===== | ||
| Line 52: | Line 40: | ||
| filter | filter | ||
| ---- | ---- | ||
| + | |||
| + | |||
| + | ===== Backup ===== | ||
| + | It's strongly recommended to make a backup before you start: | ||
| + | |||
| + | * Set up a tftp server (e.g. tftpd64 for windows) | ||
| + | |||
| + | * Connect to a router using Telnet and run the following commands: | ||
| + | <code bash> | ||
| + | cd /tmp | ||
| + | for i in 1 2 3 4 5 6 7 8 9 10 11 12; do nanddump -f mtd$i /dev/mtd$i; \ | ||
| + | tftp -l mtd$i -p 192.168.1.2; | ||
| + | tftp -l mtd.md5 -p 192.168.1.2 | ||
| + | </ | ||
| + | 192.168.1.2 - IP of the tftp server | ||
| + | |||
| + | * Check backups in your tftp root folder. | ||
| ===== Installation ===== | ===== Installation ===== | ||
| - | /* stable release */ | + | |
| - | /* uncomment once stable release is available | + | |
| ---- datatable ---- | ---- datatable ---- | ||
| cols : Model, Versions, Supported Current Rel, Firmware OpenWrt Install URL_url, Firmware OpenWrt Upgrade URL_url, Firmware OEM Stock URL_url | cols : Model, Versions, Supported Current Rel, Firmware OpenWrt Install URL_url, Firmware OpenWrt Upgrade URL_url, Firmware OEM Stock URL_url | ||
| Line 64: | Line 68: | ||
| filter | filter | ||
| ---- | ---- | ||
| - | */ | ||
| - | /* snapshot */ | + | -> [[docs: |
| - | /* delete once stable release is available */ | + | |
| - | ---- datatable ---- | + | |
| - | cols | + | |
| - | headers | + | |
| - | align : c,c,c | + | |
| - | filter | + | |
| - | filter | + | |
| - | ---- | + | |
| + | ==== OpenWrt installation ==== | ||
| - | -> [[docs:guide-user: | + | <WRAP round info 100%> |
| + | **CAUTION:** \\ | ||
| + | If you have any third-party firmware (e.g. Padavan, Keenetic, AsusWrt, non-official | ||
| + | </ | ||
| 1. Login to the router web interface (superadmin: | 1. Login to the router web interface (superadmin: | ||
| Line 86: | Line 85: | ||
| 3. Connect to the router using telnet (default admin: | 3. Connect to the router using telnet (default admin: | ||
| - | 4. Place *factory.trx on any web server | + | 4. Connect to the router using telnet shell (no password required) |
| - | 5. Connect | + | 5. Check the bootpartition: |
| + | <code bash> | ||
| + | uboot_env --get --name bootpartition | ||
| + | </ | ||
| + | If the result is //1// then go to the next step, otherwise | ||
| + | <code bash> | ||
| + | uboot_env --set --name bootpartition --value 1 | ||
| + | reboot | ||
| + | </ | ||
| - | 6. Save MAC adresses to U-Boot environment: | + | 6. Download and write the OpenWrt images: |
| - | uboot_env --set --name eth2macaddr --value $(ifconfig | grep eth2 | \ | + | <code bash> |
| - | awk ' | + | cd /tmp |
| - | uboot_env --set --name eth3macaddr --value $(ifconfig | grep eth3 | \ | + | wget https:// |
| - | awk ' | + | mtd_write erase /dev/mtd4 |
| - | | + | mtd_write write openwrt-22.03.0-ramips-mt7621-mts_wg430223-squashfs-factory.trx /dev/mtd4 |
| - | awk ' | + | </ |
| - | uboot_env | + | |
| - | awk ' | + | |
| - | 7. Ensure that MACs were saved correctly: | + | 7. Set 1st boot partition and reboot: |
| - | uboot_env --get --name eth2macaddr | + | <code bash> |
| - | | + | uboot_env --set --name |
| - | | + | reboot |
| - | uboot_env --get --name rax0macaddr | + | </ |
| - | 8. Download and write the OpenWrt images: | ||
| - | cd /tmp | ||
| - | wget https:// | ||
| - | | ||
| - | | ||
| - | 9. Set 1st boot partition and reboot: | + | ==== OEM easy installation ==== |
| - | | + | |
| + | Under development | ||
| + | |||
| + | ==== OEM installation using the TFTP method ==== | ||
| + | |||
| + | -> [[docs: | ||
| + | |||
| + | Not applicable | ||
| ===== Return to Stock ===== | ===== Return to Stock ===== | ||
| 1. Login as root via SSH on 192.168.1.1, | 1. Login as root via SSH on 192.168.1.1, | ||
| - | fw_setenv bootpartition 1 | + | <code bash> |
| - | | + | fw_setenv bootpartition 1 |
| + | reboot | ||
| + | </ | ||
| 2. Optional step. Upgrade the stock firmware with any version to overwrite the OpenWrt in Slot 1. | 2. Optional step. Upgrade the stock firmware with any version to overwrite the OpenWrt in Slot 1. | ||
| - | ==== Flash Layout ==== | + | ===== Flash Layout ===== |
| - | <WRAP BOX> | + | |
| - | FIXME // | + | |
| - | Please check out the article [[docs: | + | ^ mtd ^ partition |
| - | </ | + | | mtd0 | u-boot |
| + | | mtd1 | u-boot-env | ||
| + | | mtd2 | Factory | ||
| + | | mtd3 | firmware | ||
| + | | mtd4 | kernel | ||
| + | | mtd5 | ubiconcat0 | ||
| + | | mtd6 | Firmware2 | ||
| + | | mtd7 | glbcfg | ||
| + | | mtd8 | board_data | ||
| + | | mtd9 | glbcfg2 | ||
| + | | mtd10 | board_data2 | ||
| + | | mtd11 | ubiconcat1 | ||
| - | ==== OEM easy installation ==== | + | * MAC addresses hasn't been found neither in factory nor in other places |
| - | Under development | + | * / |
| - | ==== OEM installation using the TFTP method | + | * arccfg util unencrypts (cipher aes-128-cbc + some obfuscation) the configuration from mtd8(10) at every boot |
| + | <code bash> | ||
| + | ~ # arccfg | ||
| + | fgets partition name ok!the partition is [glbcfg] | ||
| + | fgets the second partition name ok!the the second partition is [glbcfg2] | ||
| + | The primary glbcfg is mtd8 | ||
| + | The second glbcfg is mtd10 | ||
| + | </ | ||
| + | |||
| + | * mtd9(11): **board_data** or **board_data2** also contain MAC address (only *base* MAC). Other addresses should be calculated | ||
| + | |||
| + | * @abyrga & @r3d5ky from telegram group [[https:// | ||
| + | <code bash> | ||
| + | $ dd status=none if=mtd9 bs=1 count=368 skip=256 | openssl aes-128-cbc -d -nopad \ | ||
| + | -K 2A4B303D7644395C3B2B7053553C5200 -iv 00000000000000000000000000000000 | ||
| + | mac=ec: | ||
| + | sn=AG########## | ||
| + | ssid=Beeline_2G_###### | ||
| + | psk=########### | ||
| + | ssid2=Beeline_5G_###### | ||
| + | psk2=########### | ||
| + | guest_ssid=Beeline_2G_###### | ||
| + | guest_psk=########### | ||
| + | guest_ssid2=Beeline_5G_###### | ||
| + | guest_psk2=########### | ||
| + | group_ssid=BH-Beeline_2G_###### | ||
| + | group_psk=########### | ||
| + | group_ssid2=BH-Beeline_5G_###### | ||
| + | group_psk2=########### | ||
| + | hw=01 | ||
| + | password=##### | ||
| + | </ | ||
| + | |||
| + | ===== OEM firmware trx format ===== | ||
| + | |||
| + | The same as [[: | ||
| + | <code bash> | ||
| + | +--------------+---------------+----------------------------------------+ | ||
| + | | Offset | ||
| + | +==============+===============+========================================+ | ||
| + | | 0x0 | 31 52 48 53 | TRX magic " | ||
| + | +--------------+---------------+----------------------------------------+ | ||
| + | </ | ||
| + | |||
| + | ===== Original bootloader ===== | ||
| + | -> [[docs: | ||
| + | |||
| + | * Ralink UBoot Version: 5.0.0.2 | ||
| + | |||
| + | * U-boot protected by unknown password (hash __95f9f8f58a972c3bb653854cc54e85b4__). Therefore, it isn't possible to load initramfs image or choose boot option except "3: Boot system code via Flash (default)." | ||
| + | |||
| + | * There is no any bootcounters | ||
| - | -> [[docs: | ||
| - | Not applicable | ||
| ===== Upgrading OpenWrt ===== | ===== Upgrading OpenWrt ===== | ||
| -> [[docs: | -> [[docs: | ||
| Line 161: | Line 227: | ||
| * Login as root via SSH on 192.168.1.1, | * Login as root via SSH on 192.168.1.1, | ||
| - | < | + | < |
| cd /tmp | cd /tmp | ||
| wget https:// | wget https:// | ||
| Line 173: | Line 239: | ||
| * Login as root via SSH on 192.168.1.1, | * Login as root via SSH on 192.168.1.1, | ||
| - | < | + | < |
| cd /tmp | cd /tmp | ||
| wget https:// | wget https:// | ||
| Line 192: | Line 258: | ||
| ===== Specific Configuration ===== | ===== Specific Configuration ===== | ||
| - | <WRAP BOX> | ||
| - | FIXME Please fill in real values for this device, then remove the EXAMPLEs | ||
| ==== Network interfaces ==== | ==== Network interfaces ==== | ||
| The default network configuration is: | The default network configuration is: | ||
| - | ^ Interface Name ^ Description | + | ^ Interface Name ^ Description |
| - | | br-lan | + | | br-lan |
| - | | vlan0 (eth0.0) | + | | lan1, lan2 | LAN ports (1 & 2) | br-lan |
| - | | vlan1 (eth0.1) | + | | wan |
| - | | wl0 | EXAMPLE WiFi | EXAMPLE Disabled | + | |
| - | </ | ||
| ==== Switch Ports (for VLANs) ==== | ==== Switch Ports (for VLANs) ==== | ||
| - | <WRAP BOX> | ||
| ^ Port ^ Switch port ^ | ^ Port ^ Switch port ^ | ||
| Line 213: | Line 275: | ||
| | LAN 2 | lan2 | | | LAN 2 | lan2 | | ||
| - | </ | ||
| ==== Buttons ==== | ==== Buttons ==== | ||
| Line 242: | Line 303: | ||
| // | // | ||
| - | **Insert photo of front of the casing** | + | {{: |
| //Back://\\ | //Back://\\ | ||
| - | **Insert photo of back of the casing** | + | {{: |
| - | //Backside label://\\ | + | //Top://\\ |
| - | **Insert photo of backside label** | + | {{: |
| + | |||
| + | // | ||
| + | {{: | ||
| + | |||
| + | // | ||
| + | {{: | ||
| ==== Opening the case ==== | ==== Opening the case ==== | ||
| Line 254: | Line 321: | ||
| **Note:** This will void your warranty! | **Note:** This will void your warranty! | ||
| - | <WRAP BOX> | + | There are 2 crews at the bottom. There are also clips around the edge of the case you will need to prize open, using, for example, a plastic card. |
| - | FIXME //Describe what needs to be done to open the device, e.g. remove rubber feet, adhesive labels, screws, ...// | + | |
| - | * To remove the cover and open the device, do a/b/c | + | |
| - | </ | + | |
| //Main PCB://\\ | //Main PCB://\\ | ||
| - | **Insert photo of PCB** | + | {{media: |
| + | {{media: | ||
| ==== Serial ==== | ==== Serial ==== | ||
| -> [[docs: | -> [[docs: | ||
| - | How to connect to the Serial Port of this specific | + | How to connect to the Serial Port of this device:\\ |
| - | **Insert photo of PCB with markings for serial | + | |
| + | {{media: | ||
| + | |||
| + | < | ||
| + | # | ||
| + | |#-# .-. .-. .-. | | ||
| + | |#-# ' | ||
| + | # | ||
| + | | ||
| + | </ | ||
| ^ Serial connection parameters\\ for MTS WG430223 | 57600, 8N1, 3.3V | | ^ Serial connection parameters\\ for MTS WG430223 | 57600, 8N1, 3.3V | | ||
| Line 279: | Line 353: | ||
| -> [[docs: | -> [[docs: | ||
| - | ==== Breed bootloader ==== | ||
| - | Original Breed for Xiaomi R3G can be used, but breedenter utility is required to enter the Breed. Breed web interface shouldn' | ||
| - | See //Notes -> Breed bootloader// | ||
| - | |||
| - | Breed settings for Beeline Smartbox Flash: | ||
| - | |||
| - | ^ Setting | ||
| - | | autoboot.command | ||
| ===== Hardware mods ===== | ===== Hardware mods ===== | ||
| Line 298: | Line 364: | ||
| ==== OEM bootlog ==== | ==== OEM bootlog ==== | ||
| <WRAP bootlog> | <WRAP bootlog> | ||
| - | < | + | < |
| + | =================================================================== | ||
| + | MT7621 | ||
| + | CPU=50000000 HZ BUS=16666666 HZ | ||
| + | ================================================================== | ||
| + | Change MPLL source from XTAL to CR... | ||
| + | do MEMPLL setting.. | ||
| + | MEMPLL Config : 0x11100000 | ||
| + | 3PLL mode + External loopback | ||
| + | === XTAL-40Mhz === DDR-1200Mhz === | ||
| + | PLL4 FB_DL: 0x4, 1/0 = 542/482 11000000 | ||
| + | PLL3 FB_DL: 0x9, 1/0 = 604/420 25000000 | ||
| + | PLL2 FB_DL: 0x14, 1/0 = 630/394 51000000 | ||
| + | do DDR setting..[00320381] | ||
| + | Apply DDR3 Setting...(use customer AC) | ||
| + | 0 8 | ||
| + | -------------------------------------------------------------------------------- | ||
| + | 0000: | ||
| + | 0001: | ||
| + | 0002: | ||
| + | 0003: | ||
| + | 0004: | ||
| + | 0005: | ||
| + | 0006: | ||
| + | 0007: | ||
| + | 0008: | ||
| + | 0009: | ||
| + | 000A: | ||
| + | 000B: | ||
| + | 000C: | ||
| + | 000D: | ||
| + | 000E: | ||
| + | 000F: | ||
| + | 0010: | ||
| + | 0011: | ||
| + | 0012: | ||
| + | 0013: | ||
| + | 0014: | ||
| + | 0015: | ||
| + | 0016: | ||
| + | 0017: | ||
| + | 0018: | ||
| + | 0019: | ||
| + | 001A: | ||
| + | 001B: | ||
| + | 001C: | ||
| + | 001D: | ||
| + | 001E: | ||
| + | 001F: | ||
| + | rank 0 coarse = 15 | ||
| + | rank 0 fine = 72 | ||
| + | B:| 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 | ||
| + | opt_dle value:9 | ||
| + | DRAMC_R0DELDLY[018]=00002120 | ||
| + | ================================================================== | ||
| + | RX DQS perbit delay software calibration | ||
| + | ================================================================== | ||
| + | 1.0-15 bit dq delay value | ||
| + | ================================================================== | ||
| + | bit| | ||
| + | -------------------------------------- | ||
| + | 0 | 7 7 7 10 6 8 8 6 3 6 | ||
| + | 10 | 7 7 7 9 7 7 | ||
| + | -------------------------------------- | ||
| + | |||
| + | ================================================================== | ||
| + | 2.dqs window | ||
| + | x=pass dqs delay value (min~max)center | ||
| + | y=0-7bit DQ of every group | ||
| + | input delay:DQS0 =32 DQS1 = 33 | ||
| + | ================================================================== | ||
| + | bit | ||
| + | 0 (2~59)30 | ||
| + | 1 (1~63)32 | ||
| + | 2 (1~61)31 | ||
| + | 3 (1~63)32 | ||
| + | 4 (1~60)30 | ||
| + | 5 (1~60)30 | ||
| + | 6 (1~61)31 | ||
| + | 7 (1~63)32 | ||
| + | ================================================================== | ||
| + | 3.dq delay value last | ||
| + | ================================================================== | ||
| + | bit| 0 1 2 3 4 5 6 7 8 9 | ||
| + | -------------------------------------- | ||
| + | 0 | 9 7 8 10 8 10 9 6 7 7 | ||
| + | 10 | 9 9 7 11 7 10 | ||
| + | ================================================================== | ||
| + | ================================================================== | ||
| + | | ||
| + | ================================================================== | ||
| + | DQS loop = 15, cmp_err_1 = ffff0000 | ||
| + | dqs_perbyte_dly.last_dqsdly_pass[0]=15, | ||
| + | dqs_perbyte_dly.last_dqsdly_pass[1]=15, | ||
| + | DQ loop=15, cmp_err_1 = ffff0000 | ||
| + | dqs_perbyte_dly.last_dqdly_pass[0]=15, | ||
| + | dqs_perbyte_dly.last_dqdly_pass[1]=15, | ||
| + | byte:0, (DQS, | ||
| + | byte:1, (DQS, | ||
| + | 20, | ||
| + | [EMI] DRAMC calibration passed | ||
| + | |||
| + | =================================================================== | ||
| + | MT7621 | ||
| + | CPU=50000000 HZ BUS=16666666 HZ | ||
| + | =================================================================== | ||
| + | |||
| + | |||
| + | U-Boot 1.1.3 (Nov 2 2020 - 17:27:10) 0.00 | ||
| + | |||
| + | Board: Ralink APSoC DRAM: 128 MB | ||
| + | relocate_code Pointer at: 87f88000 | ||
| + | |||
| + | Config XHCI 40M PLL | ||
| + | ****************************** | ||
| + | Software System Reset Occurred | ||
| + | ****************************** | ||
| + | Allocate 16 byte aligned buffer: 87fc85d0 | ||
| + | Enable NFI Clock | ||
| + | # MTK NAND # : Use HW ECC | ||
| + | NAND ID [EF F1 00 95 00] | ||
| + | Device found in MTK table, ID: eff1, EXT_ID: 9500 | ||
| + | Support this Device in MTK table! eff1 | ||
| + | select_chip | ||
| + | [NAND]select ecc bit:4, sparesize :64 spare_per_sector=16 | ||
| + | Signature matched and data read! | ||
| + | load_fact_bbt success 1023 | ||
| + | load fact bbt success | ||
| + | [mtk_nand] probe successfully! | ||
| + | mtd-> | ||
| + | ..============================================ | ||
| + | Ralink UBoot Version: 5.0.0.4 | ||
| + | -------------------------------------------- | ||
| + | ASIC MT7621A DualCore (MAC to MT7530 Mode) | ||
| + | DRAM_CONF_FROM: | ||
| + | DRAM_TYPE: DDR3 | ||
| + | DRAM bus: 16 bit | ||
| + | Xtal Mode=3 OCP Ratio=1/3 | ||
| + | Flash component: NAND Flash | ||
| + | Date: | ||
| + | ============================================ | ||
| + | icache: sets:256, ways:4, linesz:32 , | ||
| + | dcache: sets:256, ways:4, linesz:32 , | ||
| + | |||
| + | ##### The CPU freq = 880 MHZ #### | ||
| + | | ||
| + | # | ||
| + | set LAN/WAN LLLLW | ||
| + | |||
| + | Please choose the operation: | ||
| + | 1: Load system code to SDRAM via TFTP. | ||
| + | 2: Load system code then write to Flash via TFTP. | ||
| + | 3: Boot system code via Flash (default). | ||
| + | 4: Entr boot command line interface. | ||
| + | 7: Load Boot Loader code then write to Flash via Serial. | ||
| + | 9: Load Boot Loader code then write to Flash via TFTP. | ||
| + | default: 3 | ||
| + | 0 | ||
| + | |||
| + | 3: System Boot system code via Flash[1]. | ||
| + | ## Booting image at be300000 ... | ||
| + | | ||
| + | Image Name: Linux Kernel Image | ||
| + | Image Type: MIPS Linux Kernel Image (lzma compressed) | ||
| + | Data Size: 4232464 Bytes = 4 MB | ||
| + | Load Address: 81001000 | ||
| + | Entry Point: | ||
| + | ................................................................. | ||
| + | | ||
| + | No initrd | ||
| + | ## Transferring control to Linux (at address 81801ae0) ... | ||
| + | ## Giving linux memsize in MB, 128 | ||
| + | |||
| + | Starting kernel ... | ||
| + | |||
| + | for led test (red off) ... | ||
| + | |||
| + | LINUX started... | ||
| + | |||
| + | THIS IS ASIC | ||
| + | |||
| + | SDK 5.0.S.0 | ||
| + | Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled | ||
| + | serial8250: ttyS0 at MMIO 0x1e000d00 (irq = 27) is a 16550A | ||
| + | serial8250: ttyS1 at MMIO 0x1e000c00 (irq = 26) is a 16550A | ||
| + | Ralink gpio driver initialized | ||
| + | SSFDC read-only Flash Translation layer | ||
| + | MediaTek Nand driver init, version v2.1 Fix AHB virt2phys error | ||
| + | Allocate 16 byte aligned buffer: 81b644b0 | ||
| + | Enable NFI Clock | ||
| + | # MTK NAND # : Use HW ECC | ||
| + | NAND ID [EF F1 00 95 00, 00009500] | ||
| + | Device found in MTK table, ID: eff1, EXT_ID: 9500 | ||
| + | Support this Device in MTK table! eff1 | ||
| + | NAND device: Manufacturer ID: 0xef, Chip ID: 0xf1 (Unknown NAND 128MiB 3,3V 8-bit), 128MiB, page size: 2048, OOB size: 64 | ||
| + | [NAND]select ecc bit:4, sparesize :64 spare_per_sector=16 | ||
| + | Scanning device for bad blocks | ||
| + | Signature matched and data read! | ||
| + | load_fact_bbt success 1023 | ||
| + | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | ||
| + | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | ||
| + | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | ||
| + | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | ||
| + | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | ||
| + | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | ||
| + | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | ||
| + | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | ||
| + | in find_rootfs_partitions | ||
| + | The trx header magic offset 0x00420000 | ||
| + | MT7621-NAND: | ||
| + | Found image1 partition off 0x00720000 size 0x01be0000 | ||
| + | in find_rootfs_partitions | ||
| + | The trx header magic offset 0x00420000 | ||
| + | MT7621-NAND: | ||
| + | Found image2 partition off 0x02720000 size 0x01be0000 | ||
| + | Creating 13 MTD partitions on " | ||
| + | 0x000000000000-0x000007f80000 : " | ||
| + | 0x000000000000-0x000000100000 : " | ||
| + | 0x000000100000-0x000000200000 : " | ||
| + | 0x000000200000-0x000000300000 : " | ||
| + | 0x000000300000-0x000002300000 : " | ||
| + | 0x000000720000-0x000002300000 : " | ||
| + | 0x000002300000-0x000004300000 : " | ||
| + | 0x000002720000-0x000004300000 : " | ||
| + | 0x000004300000-0x000004500000 : " | ||
| + | 0x000004500000-0x000004600000 : " | ||
| + | 0x000004600000-0x000004800000 : " | ||
| + | 0x000004800000-0x000004900000 : " | ||
| + | 0x000004900000-0x000007f80000 : " | ||
| + | [mtk_nand] probe successfully! | ||
| + | IMQ driver loaded successfully. (numdevs = 16, numqueues = 1) | ||
| + | Hooking IMQ after NAT on PREROUTING. | ||
| + | Hooking IMQ before NAT on POSTROUTING. | ||
| + | PPP generic driver version 2.4.2 | ||
| + | PPP BSD Compression module registered | ||
| + | NET: Registered protocol family 24 | ||
| + | PPTP driver version 0.8.5 | ||
| + | register mt_drv | ||
| + | |||
| + | == pAd = c0281000, size = 7712896, Status=0 == | ||
| + | pAd-> | ||
| + | RTMPInitPCIeDevice(): | ||
| + | mt_pci_chip_cfg(): | ||
| + | mt_pci_chip_cfg(): | ||
| + | AP Driver version-5.0.4.0 | ||
| + | RtmpChipOpsHook(223): | ||
| + | mt7615_init()--> | ||
| + | Use the default ePAeLNA bin image! | ||
| + | Use the default / | ||
| + | < | ||
| + | <-- RTMPAllocTxRxRingMemory, | ||
| + | rdm_major = 253 | ||
| + | GMAC1_MAC_ADRH -- : 0x0000000c | ||
| + | GMAC1_MAC_ADRL -- : 0x43288036 | ||
| + | Ralink APSoC Ethernet Driver Initilization. v3.1 1024 rx/tx descriptors allocated, mtu = 1500! | ||
| + | GMAC1_MAC_ADRH -- : 0x0000000c | ||
| + | GMAC1_MAC_ADRL -- : 0x43288036 | ||
| + | PROC INIT OK! | ||
| + | ehci_hcd: USB 2.0 ' | ||
| + | ehci-pci: EHCI PCI platform driver | ||
| + | ehci-platform: | ||
| + | ohci_hcd: USB 1.1 ' | ||
| + | *****run project phy. | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | FM_OUT value: u4FmOut = 0(0x00000000) | ||
| + | xhci-hcd xhci-hcd: xHCI Host Controller | ||
| + | xhci-hcd xhci-hcd: new USB bus registered, assigned bus number 1 | ||
| + | xhci-hcd xhci-hcd: irq 22, io mem 0x1e1c0000 | ||
| + | usb usb1: New USB device found, idVendor=1d6b, | ||
| + | usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 | ||
| + | usb usb1: Product: xHCI Host Controller | ||
| + | usb usb1: Manufacturer: | ||
| + | usb usb1: SerialNumber: | ||
| + | hub 1-0:1.0: USB hub found | ||
| + | hub 1-0:1.0: 2 ports detected | ||
| + | xhci-hcd xhci-hcd: xHCI Host Controller | ||
| + | xhci-hcd xhci-hcd: new USB bus registered, assigned bus number 2 | ||
| + | usb usb2: New USB device found, idVendor=1d6b, | ||
| + | usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 | ||
| + | usb usb2: Product: xHCI Host Controller | ||
| + | usb usb2: Manufacturer: | ||
| + | usb usb2: SerialNumber: | ||
| + | hub 2-0:1.0: USB hub found | ||
| + | hub 2-0:1.0: 1 port detected | ||
| + | usbcore: registered new interface driver usb-storage | ||
| + | usbcore: registered new interface driver ums-alauda | ||
| + | usbcore: registered new interface driver ums-sddr09 | ||
| + | usbcore: registered new interface driver ums-sddr55 | ||
| + | GACT probability on | ||
| + | Mirror/ | ||
| + | netem: version 1.3 | ||
| + | u32 classifier | ||
| + | Performance counters on | ||
| + | input device check on | ||
| + | Actions configured | ||
| + | Netfilter messages via NETLINK v0.30. | ||
| + | nfnl_acct: registering with nfnetlink. | ||
| + | nf_conntrack version 0.5.0 (1843 buckets, 7372 max) | ||
| + | ctnetlink v0.93: registering with nfnetlink. | ||
| + | xt_time: kernel timezone is -0000 | ||
| + | ip_set: protocol 6 | ||
| + | ipip: IPv4 over IPv4 tunneling driver | ||
| + | gre: GRE over IPv4 demultiplexor driver | ||
| + | ip_gre: GRE over IPv4 tunneling driver | ||
| + | ip_tables: (C) 2000-2006 Netfilter Core Team | ||
| + | Type=Restricted Cone | ||
| + | ipt_CLUSTERIP: | ||
| + | arp_tables: (C) 2002 David S. Miller | ||
| + | TCP: cubic registered | ||
| + | Initializing XFRM netlink socket | ||
| + | NET: Registered protocol family 10 | ||
| + | ip6_tables: (C) 2000-2006 Netfilter Core Team | ||
| + | sit: IPv6 over IPv4 tunneling driver | ||
| + | ip6_gre: GRE over IPv6 tunneling driver | ||
| + | NET: Registered protocol family 17 | ||
| + | Ebtables v2.0 registered | ||
| + | l2tp_core: L2TP core driver, V2.0 | ||
| + | l2tp_ppp: PPPoL2TP kernel driver, V2.0 | ||
| + | l2tp_ip: L2TP IP encapsulation support (L2TPv3) | ||
| + | l2tp_netlink: | ||
| + | l2tp_eth: L2TP ethernet pseudowire support (L2TPv3) | ||
| + | l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3) | ||
| + | 8021q: 802.1Q VLAN Support v1.8 | ||
| + | Key type dns_resolver registered | ||
| + | boot_part=1 / | ||
| + | Boot from / | ||
| + | VFS: Mounted root (squashfs filesystem) readonly on device 31:7. | ||
| + | devtmpfs: mounted | ||
| + | Freeing unused kernel memory: 236K (81b15000 - 81b50000) | ||
| + | Arcadyan the primary config checkout succeed. | ||
| + | Arcadyan the second config checkout succeed. | ||
| + | arca.dbus.mng: | ||
| + | agent_handler(236): | ||
| + | |||
| + | Please press Enter to activate this console. MD5=[5db6aaf17d024c20b5025cbedbda1ef9] | ||
| + | FFFFFFA4: | ||
| + | Raeth v3.1 (Tasklet) | ||
| + | set CLK_CFG_0 = 0x40a00020!!!!!!!!!!!!!!!!!!1 | ||
| + | phy_free_head is 0xc1c000!!! | ||
| + | phy_free_tail_phy is 0xc1dff0!!! | ||
| + | txd_pool=a0c20000 phy_txd_pool=00C20000 | ||
| + | ei_local-> | ||
| + | free_txd: 00c20010, ei_local-> | ||
| + | | ||
| + | ----------------+---------+-------- | ||
| + | | ||
| + | |||
| + | phy_qrx_ring = 0x00c1e000, qrx_ring = 0xa0c1e000 | ||
| + | |||
| + | phy_rx_ring0 = 0x00c28000, rx_ring[0] = 0xa0c28000 | ||
| + | MT7530 Reset Completed!! | ||
| + | change HW-TRAP to 0x17c8f | ||
| + | set LAN/WAN LLLLW | ||
| + | GMAC1_MAC_ADRH -- : 0x0000a4ce | ||
| + | GMAC1_MAC_ADRL -- : 0xda654321 | ||
| + | GDMA2_MAC_ADRH -- : 0x0000000c | ||
| + | GDMA2_MAC_ADRL -- : 0x4328803a | ||
| + | eth3: ===> VirtualIF_open | ||
| + | MT7621 GE2 link rate to 1G | ||
| + | CDMA_CSG_CFG = 81000000 | ||
| + | GDMA1_FWD_CFG = 20710000 | ||
| + | GDMA2_FWD_CFG = 20710000 | ||
| + | GDMA2_MAC_ADRH -- : 0x0000a4ce | ||
| + | GDMA2_MAC_ADRL -- : 0xda4c5a54 | ||
| + | eth3: ===> VirtualIF_open | ||
| + | ra0: ===> main_virtual_if_open | ||
| + | load l1profile succeed! | ||
| + | driver_own():: | ||
| + | driver_own():: | ||
| + | multi-profile merge success, en: | ||
| + | Speed 100 | ||
| + | ESW: Link Status Changed - Port3 Link UP , IF Name (eth2) , Speed (100) , Duplex (FULL) | ||
| + | Open file "/ | ||
| + | RT_CfgSetMacAddress : invalid length (0) | ||
| + | RT_CfgSetMacAddress : invalid length (0) | ||
| + | RT_CfgSetMacAddress : invalid length (0) | ||
| + | RT_CfgSetMacAddress : invalid length (0) | ||
| + | RT_CfgSetMacAddress : invalid length (0) | ||
| + | E2pAccessMode=2 | ||
| + | SSID[0]=MTSRouter_2.4G_654321, | ||
| + | SSID[1]=MTSRouter_2G_654321-Guest, | ||
| + | SSID[2]=MTSRouter_5G_654321, | ||
| + | SSID[3]=MTSRouter_5G_654321-Guest, | ||
| + | SSID[4]=MTSRouter_5G_Public2, | ||
| + | SSID[5]=MTSRouter_5G_Public3, | ||
| + | DBDC Mode=1, eDBDC_mode = 1 | ||
| + | BSS0 PhyMode=14 | ||
| + | wmode_band_equal(): | ||
| + | BSS1 PhyMode=14 | ||
| + | BSS2 PhyMode=49 | ||
| + | BSS3 PhyMode=49 | ||
| + | BSS4 PhyMode=49 | ||
| + | BSS5 PhyMode=49 | ||
| + | auto_ch_select_set_cfg(): | ||
| + | auto_ch_select_set_cfg(): | ||
| + | BandSteering=0 | ||
| + | BndStrgBssIdx=0; | ||
| + | [TxPower] BAND0: 100, BAND1: 100 | ||
| + | Power Boost (CCK, OFDM): RTMPSetProfileParameters[PowerUpCckOfdm] BAND1: (0)-(0)-(0)-(0)-(0)-(0)-(0) | ||
| + | Power Boost (HT20): RTMPSetProfileParametersPower Boost (HT40): RTMPSetProfileParametersPower Boost (VHT20): RTMPSetProfileParametersPower Boost (VHT40): RTMPSetProfileParametersPower Boost (VHT80): RTMPSetProfileParametersPower Boost (VHT160): RTMPSetProfileParameters[PERCENTAGEenable] BAND0: 1, BAND1: 1 | ||
| + | [BFBACKOFFenable] BAND0: 0, BAND1: 0 | ||
| + | CalCacheApply = 0 | ||
| + | FragThreshold[0]=2346 | ||
| + | FragThreshold[1]=2346 | ||
| + | FragThreshold[2]=2346 | ||
| + | FragThreshold[3]=2346 | ||
| + | FragThreshold[4]=2346 | ||
| + | FragThreshold[5]=2346 | ||
| + | Valid=1 | ||
| + | APAifsn[0]=3 | ||
| + | APAifsn[1]=7 | ||
| + | APAifsn[2]=1 | ||
| + | APAifsn[3]=1 | ||
| + | Valid=1 | ||
| + | APAifsn[0]=3 | ||
| + | APAifsn[1]=7 | ||
| + | APAifsn[2]=1 | ||
| + | APAifsn[3]=1 | ||
| + | BSSAifsn[0]=3 | ||
| + | BSSAifsn[1]=7 | ||
| + | BSSAifsn[2]=2 | ||
| + | BSSAifsn[3]=2 | ||
| + | BSSAifsn[0]=3 | ||
| + | BSSAifsn[1]=7 | ||
| + | BSSAifsn[2]=2 | ||
| + | BSSAifsn[3]=2 | ||
| + | BSSAifsn[0]=3 | ||
| + | BSSAifsn[1]=7 | ||
| + | BSSAifsn[2]=2 | ||
| + | BSSAifsn[3]=2 | ||
| + | BSSAifsn[0]=3 | ||
| + | BSSAifsn[1]=7 | ||
| + | BSSAifsn[2]=2 | ||
| + | BSSAifsn[3]=2 | ||
| + | BSSAifsn[0]=3 | ||
| + | BSSAifsn[1]=7 | ||
| + | BSSAifsn[2]=2 | ||
| + | BSSAifsn[3]=2 | ||
| + | BSSAifsn[0]=3 | ||
| + | BSSAifsn[1]=7 | ||
| + | BSSAifsn[2]=2 | ||
| + | BSSAifsn[3]=2 | ||
| + | read_dscp_pri_param Setting Pri 7 for Dscp=52 | ||
| + | read_dscp_pri_param Setting Pri 7 for Dscp=52 | ||
| + | DfsZeroWait Support=0/ | ||
| + | DfsZeroWaitCacTime=255/ | ||
| + | RTMPSetProfileParameters(): | ||
| + | RTMPSetProfileParameters(): | ||
| + | read_etxbf: ETxBfEnCond = 0 | ||
| + | read_etxbf: BSSID[0] | ||
| + | read_etxbf: MBSS[0] ETxBfEnCond = 0 | ||
| + | read_etxbf: ETxBfEnCond = 0 | ||
| + | read_etxbf: BSSID[1] | ||
| + | read_etxbf: MBSS[1] ETxBfEnCond = 0 | ||
| + | read_etxbf: ETxBfEnCond = 1 | ||
| + | read_etxbf: BSSID[2] | ||
| + | read_etxbf: MBSS[2] ETxBfEnCond = 1 | ||
| + | read_etxbf: ETxBfEnCond = 1 | ||
| + | read_etxbf: BSSID[3] | ||
| + | read_etxbf: MBSS[3] ETxBfEnCond = 1 | ||
| + | read_etxbf: ETxBfEnCond = 1 | ||
| + | read_etxbf: BSSID[4] | ||
| + | read_etxbf: MBSS[4] ETxBfEnCond = 1 | ||
| + | read_etxbf: ETxBfEnCond = 1 | ||
| + | read_etxbf: BSSID[5] | ||
| + | read_etxbf: MBSS[5] ETxBfEnCond = 1 | ||
| + | [rtmp_read_ap_client_from_file] pf1=2 pf2=4 | ||
| + | AndesSendCmdMsg: | ||
| + | AndesSendCmdMsg: | ||
| + | HT: WDEV[0] Ext Channel = ABOVE | ||
| + | HT: WDEV[1] Ext Channel = ABOVE | ||
| + | HT: WDEV[2] Ext Channel = ABOVE | ||
| + | HT: WDEV[3] Ext Channel = ABOVE | ||
| + | HT: WDEV[4] Ext Channel = ABOVE | ||
| + | HT: WDEV[5] Ext Channel = ABOVE | ||
| + | HT: greenap_cap = 0 | ||
| + | ICapMode = 0 | ||
| + | WtcSetMaxStaNum: | ||
| + | Top Init Done! | ||
| + | Use alloc_skb | ||
| + | RX[0] DESC a0c14000 size = 16384 | ||
| + | RX[1] DESC a0c12000 size = 8192 | ||
| + | cut_through_init(): | ||
| + | cut_through_token_list_init(): | ||
| + | cut_through_token_list_init(): | ||
| + | cut_through_token_list_init(): | ||
| + | cut_through_token_list_init(): | ||
| + | Hif Init Done! | ||
| + | ctl->txq = c09d67b8 | ||
| + | ctl->rxq = c09d67c4 | ||
| + | ctl-> | ||
| + | ctl-> | ||
| + | ctl-> | ||
| + | ctl-> | ||
| + | Parsing patch header | ||
| + | Built date: 20180518100604a | ||
| + | |||
| + | Platform: ALPS | ||
| + | HW/SW version: 0x8a108a10 | ||
| + | Patch version: 0x00000010 | ||
| + | Target address: 0x80000, length: 11072 | ||
| + | patch is not ready && get semaphore success | ||
| + | EventGenericEventHandler: | ||
| + | MtCmdPatchFinishReq | ||
| + | EventGenericEventHandler: | ||
| + | release patch semaphore | ||
| + | WfMcuHwInit: | ||
| + | Parsing CPU 0 fw tailer | ||
| + | Chip ID: 0x04 | ||
| + | Eco version: 0x00 | ||
| + | Region number: 0x00 | ||
| + | Format version: 0x00 | ||
| + | Ram version: _reserved_ | ||
| + | Built date: 20191220015534 | ||
| + | Common crc: 0x0 | ||
| + | Parsing tailer region 0 | ||
| + | Feature set: 0x01 | ||
| + | Target address: 0x84000, Download size: 409600 | ||
| + | Parsing tailer region 1 | ||
| + | Feature set: 0x01 | ||
| + | Target address: 0x209c400, Download size: 48320 | ||
| + | EventGenericEventHandler: | ||
| + | EventGenericEventHandler: | ||
| + | MtCmdFwStartReq: | ||
| + | EventGenericEventHandler: | ||
| + | Parsing CPU 1 fw tailer | ||
| + | Chip ID: 0x04 | ||
| + | Eco version: 0x00 | ||
| + | Region number: 0x00Speed 1000 | ||
| + | ESW: Link Status Changed - Port4 Link UP , IF Name (eth2) , Speed (1000) , Duplex (FULL) | ||
| + | |||
| + | Format version: 0x00 | ||
| + | Ram version: _reserved_ | ||
| + | Built date: 20190415154149 | ||
| + | Common crc: 0x0 | ||
| + | Parsing tailer region 0 | ||
| + | Feature set: 0x01 | ||
| + | Target address: 0x90000000, Download size: 122608 | ||
| + | EventGenericEventHandler: | ||
| + | MtCmdFwStartReq: | ||
| + | EventGenericEventHandler: | ||
| + | MCU Init Done! | ||
| + | efuse_probe: | ||
| + | RtmpChipOpsEepromHook:: | ||
| + | RtmpEepromGetDefault:: | ||
| + | RtmpChipOpsEepromHook: | ||
| + | NVM is FLASH mode. dev_idx [0] FLASH OFFSET [0x0] | ||
| + | NICReadEEPROMParameters: | ||
| + | NICReadEEPROMParameters: | ||
| + | Country Region from e2p = 101 | ||
| + | mt7615_antenna_default_reset(): | ||
| + | mt7615_antenna_default_reset(): | ||
| + | mt7615_antenna_default_reset(): | ||
| + | RcRadioInit(): | ||
| + | RcRadioInit(): | ||
| + | RcRadioInit(): | ||
| + | rcUpdateBandForBFMU | ||
| + | rcUpdateBandForBFMU | ||
| + | TxBfModuleEnCtrl: | ||
| + | TxBfModuleEnCtrl: | ||
| + | TxBfModuleEnCtrl: | ||
| + | MtCmdSetDbdcCtrl: | ||
| + | MtSingleSkuLoadParam: | ||
| + | MtBfBackOffLoadParam: | ||
| + | EEPROM Init Done! | ||
| + | mt_mac_init()--> | ||
| + | mt7615_init_mac_cr()--> | ||
| + | mt7615_init_mac_cr(): | ||
| + | mt7615_init_mac_cr(): | ||
| + | < | ||
| + | CmdRxHdrTransBLUpdateRsp:: | ||
| + | CmdRxHdrTransBLUpdateRsp:: | ||
| + | CmdRxHdrTransBLUpdateRsp:: | ||
| + | MAC Init Done! | ||
| + | MT7615BBPInit(): | ||
| + | Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/ | ||
| + | Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/ | ||
| + | MT7615BBPInit() todo | ||
| + | PHY Init Done! | ||
| + | MtCmdSetMacTxRx: | ||
| + | MtCmdSetMacTxRx: | ||
| + | WifiFwdSet:: | ||
| + | ap_ftkd> Initialize FT KDP Module... | ||
| + | Main bssid = 00: | ||
| + | MtCmdSetMacTxRx: | ||
| + | MtCmdSetMacTxRx: | ||
| + | MtCmdSetMacTxRx: | ||
| + | MtCmdSetMacTxRx: | ||
| + | <==== mt_wifi_init, | ||
| + | TxBfModuleEnCtrl: | ||
| + | TxBfModuleEnCtrl: | ||
| + | TxBfModuleEnCtrl: | ||
| + | MtCmdEDCCACtrl: | ||
| + | MtCmdEDCCACtrl: | ||
| + | WtcSetMaxStaNum: | ||
| + | RedInit: set CR4/N9 RED Enable to 1. | ||
| + | RedInit: RED Initiailize Done. | ||
| + | cp_support_is_enabled: | ||
| + | RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP | ||
| + | wifi_sys_open(), | ||
| + | wdev_attr_update(): | ||
| + | rcUpdateBandForBFMU | ||
| + | rcUpdateBandForBFMU | ||
| + | TxBfModuleEnCtrl: | ||
| + | TxBfModuleEnCtrl: | ||
| + | TxBfModuleEnCtrl: | ||
| + | MtCmdSetDbdcCtrl: | ||
| + | | ||
| + | mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload | ||
| + | mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload | ||
| + | MtCmdChannelSwitch: | ||
| + | BW = 1,TXStream = 2, RXStream = 2, scan(0) | ||
| + | [DfsCacNormalStart] Normal start. Enable MAC TX | ||
| + | Caller: wlan_operate_init+0xa4/ | ||
| + | phy_mode=14, | ||
| + | ht_cap-> | ||
| + | ht_cap-> | ||
| + | AP inf up for ra_0(func_idx) OmacIdx=0 | ||
| + | AsicRadioOnOffCtrl(): | ||
| + | ApAutoChannelAtBootUp-----------------> | ||
| + | ApAutoChannelAtBootUp: | ||
| + | ApAutoChannelAtBootUp< | ||
| + | | ||
| + | [PMF]APPMFInit:: | ||
| + | wifi_sys_linkup(), | ||
| + | wtc_acquire_groupkey_wcid: | ||
| + | | ||
| + | bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), | ||
| + | MtCmdSetDbdcCtrl: | ||
| + | UpdateBeaconHandler, | ||
| + | APStartUpForMbss: | ||
| + | MtCmdTxPowerDropCtrl: | ||
| + | [update_mgmt_frame_power] disable mgmt pwr ctrl | ||
| + | apidx 0 for WscUUIDInit | ||
| + | Generate UUID for apidx(0) | ||
| + | ExtEventBeaconLostHandler:: | ||
| + | Beacon lost - AP disabled!!! | ||
| + | APStop(), oper(1) bssid(0)=a4: | ||
| + | wifi_sys_linkdown(), | ||
| + | ExtEventBeaconLostHandler:: | ||
| + | Beacon lost - AP disabled!!! | ||
| + | bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), | ||
| + | wifi_sys_close(), | ||
| + | MtCmdFdFrameOffloadSet(): | ||
| + | <=== APStop() | ||
| + | AsicRadioOnOffCtrl(): | ||
| + | rax0: ===> mbss_virtual_if_open | ||
| + | RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP | ||
| + | wifi_sys_open(), | ||
| + | wdev_attr_update(): | ||
| + | rcUpdateBandForBFMU | ||
| + | rcUpdateBandForBFMU | ||
| + | TxBfModuleEnCtrl: | ||
| + | TxBfModuleEnCtrl: | ||
| + | TxBfModuleEnCtrl: | ||
| + | MtCmdSetDbdcCtrl: | ||
| + | | ||
| + | mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload | ||
| + | mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload | ||
| + | MtCmdChannelSwitch: | ||
| + | BW = 2,TXStream = 2, RXStream = 2, scan(0) | ||
| + | [DfsCacNormalStart] Normal start. Enable MAC TX | ||
| + | Caller: wlan_operate_init+0xa4/ | ||
| + | phy_mode=49, | ||
| + | ht_cap-> | ||
| + | ht_cap-> | ||
| + | HcGetEdca(): | ||
| + | : | ||
| + | AP inf up for ra_2(func_idx) OmacIdx=18 | ||
| + | AsicRadioOnOffCtrl(): | ||
| + | ApAutoChannelAtBootUp-----------------> | ||
| + | ApAutoChannelAtBootUp: | ||
| + | ApAutoChannelAtBootUp< | ||
| + | | ||
| + | [PMF]APPMFInit:: | ||
| + | wifi_sys_linkup(), | ||
| + | wtc_acquire_groupkey_wcid: | ||
| + | | ||
| + | bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), | ||
| + | MtCmdSetDbdcCtrl: | ||
| + | UpdateBeaconHandler, | ||
| + | APStartUpForMbss: | ||
| + | MtCmdTxPowerDropCtrl: | ||
| + | [update_mgmt_frame_power] disable mgmt pwr ctrl | ||
| + | apidx 2 for WscUUIDInit | ||
| + | Generate UUID for apidx(2) | ||
| + | ExtEventBeaconLostHandler:: | ||
| + | Beacon lost - AP disabled!!! | ||
| + | APStop(), oper(1) bssid(2)=a6: | ||
| + | wifi_sys_linkdown(), | ||
| + | ExtEventBeaconLostHandler:: | ||
| + | Beacon lost - AP disabled!!! | ||
| + | bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), | ||
| + | wifi_sys_close(), | ||
| + | MtCmdFdFrameOffloadSet(): | ||
| + | <=== APStop() | ||
| + | AsicRadioOnOffCtrl(): | ||
| + | device eth2 entered promiscuous mode | ||
| + | device eth3 entered promiscuous mode | ||
| + | device ra0 entered promiscuous mode | ||
| + | device rax0 entered promiscuous mode | ||
| + | br0: port 4(rax0) entered forwarding state | ||
| + | br0: port 4(rax0) entered forwarding state | ||
| + | br0: port 3(ra0) entered forwarding state | ||
| + | br0: port 3(ra0) entered forwarding state | ||
| + | br0: port 2(eth3) entered forwarding state | ||
| + | br0: port 2(eth3) entered forwarding state | ||
| + | br0: port 1(eth2) entered forwarding state | ||
| + | br0: port 1(eth2) entered forwarding state | ||
| + | telnetd starting ... | ||
| + | [as_load_key_cert] load CERT/KEY files OK | ||
| + | [as_load_key_cert] load CERT/KEY files OK | ||
| + | [as_load_key_cert] load CERT/KEY files OK | ||
| + | [as_load_key_cert] load CERT/KEY files OK | ||
| + | [as_load_key_cert] load CERT/KEY files OK | ||
| + | [as_load_key_cert] load CERT/KEY files OK | ||
| + | [as_load_key_cert] load CERT/KEY files OK | ||
| + | [as_load_key_cert] load CERT/KEY files OK | ||
| + | [as_load_key_cert] load CERT/KEY files OK | ||
| + | [as_load_key_cert] load CERT/KEY files OK | ||
| + | nf_conntrack: | ||
| + | |||
| + | |||
| + | |||
| + | BusyBox v1.18.5 (2020-11-13 16:25:23 CST) built-in shell (ash) | ||
| + | Enter ' | ||
| + | |||
| + | ~ # echo " | ||
| + | )" | ||
| + | FW=2.00.18MT201113 | ||
| + | ~ # echo " | ||
| + | FWdate=Fri Nov 13 16:26:46 CST 2020 | ||
| + | ~ # echo " | ||
| + | Slot=1 | ||
| + | ~ # echo " | ||
| + | bootversion=5.0.0.4 | ||
| + | ~ # echo " | ||
| + | HW=01 | ||
| + | </ | ||
| </ | </ | ||
| Line 304: | Line 1126: | ||
| <WRAP bootlog> | <WRAP bootlog> | ||
| < | < | ||
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: [ 0.000000] Linux version 5.10.120 (builder@buildhost) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 11.3.0 r19796-498c15376b) 11.3.0, GNU ld (GNU Binutils) 2.37) #0 SMP Mon Jun 13 07:26:23 2022 | + | =================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | MT7621 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | CPU=50000000 HZ BUS=16666666 HZ |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Change MPLL source from XTAL to CR... |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | do MEMPLL setting.. |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | MEMPLL Config : 0x11100000 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 3PLL mode + External loopback |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | === XTAL-40Mhz === DDR-1200Mhz === |
| - | Mon Jun 13 21:04:29 2022 kern.warn kernel: | + | PLL4 FB_DL: 0x4, 1/0 = 641/383 11000000 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | PLL3 FB_DL: 0x9, 1/0 = 550/474 25000000 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | PLL2 FB_DL: 0x14, 1/0 = 643/381 51000000 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | do DDR setting..[00320381] |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Apply DDR3 Setting...(use customer AC) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0 8 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | -------------------------------------------------------------------------------- |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0000: |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ 0.000000] On node 0 totalpages: 32768 | + | 0001: |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ 0.000000] | + | 0002: |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ 0.000000] | + | 0003: |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ 0.000000] | + | 0004: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0005: |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ 0.000000] pcpu-alloc: s30256 r8192 d22992 u61440 alloc=15*4096 | + | 0006: |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 | + | 0007: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0008: |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | 0009: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 000A: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 000B: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 000C: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 000D: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 000E: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 000F: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0010: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0011: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0012: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0013: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0014: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0015: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0016: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0017: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0018: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0019: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 001A: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 001B: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 001C: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 001D: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 001E: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 001F: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | rank 0 coarse = 15 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | rank 0 fine = 80 |
| - | Mon Jun 13 21:04:29 2022 kern.warn kernel: | + | B:| 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | opt_dle value:11 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | DRAMC_R0DELDLY[018]=00002121 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | RX DQS perbit delay software calibration |
| - | Mon Jun 13 21:04:29 2022 kern.warn kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 1.0-15 bit dq delay value |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | bit| |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | -------------------------------------- |
| - | Mon Jun 13 21:04:29 2022 kern.warn kernel: | + | 0 | 7 7 7 10 6 8 8 6 3 6 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 10 | 7 7 7 9 7 7 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | -------------------------------------- |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 2.dqs window |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | x=pass dqs delay value (min~max)center |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | y=0-7bit DQ of every group |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | input delay:DQS0 =33 DQS1 = 33 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: | + | bit |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0 (1~60)30 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 1 (1~62)31 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 2 (1~62)31 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 3 (1~65)33 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 4 (1~61)31 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 5 (1~61)31 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 6 (1~62)31 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 7 (1~64)32 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 3.dq delay value last |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | bit| 0 1 2 3 4 5 6 7 8 9 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | -------------------------------------- |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0 | 10 9 9 10 8 10 10 7 7 7 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 10 | 8 9 7 12 8 9 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | DQS loop = 15, cmp_err_1 = ffff0000 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | dqs_perbyte_dly.last_dqsdly_pass[0]=15, |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: [ 0.957306] printk: console [ttyS0] enabled | + | dqs_perbyte_dly.last_dqsdly_pass[1]=15, |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: [ 0.973849] printk: bootconsole [early0] disabled | + | DQ loop=15, cmp_err_1 = ffff0000 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: [ | + | dqs_perbyte_dly.last_dqdly_pass[0]=15, |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | dqs_perbyte_dly.last_dqdly_pass[1]=15, |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | byte:0, (DQS, |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | byte:1, (DQS, |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: [ 1.043304] 10 fixed-partitions partitions found on MTD device mt7621-nand | + | 20, |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [EMI] DRAMC calibration passed |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | =================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | MT7621 |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | CPU=50000000 HZ BUS=16666666 HZ |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | =================================================================== |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | U-Boot 1.1.3 (Nov 2 2020 - 17:27:10) 0.00 |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | Board: Ralink APSoC DRAM: 128 MB |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | relocate_code Pointer at: 87f88000 |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | Config XHCI 40M PLL |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | ****************************** |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | Software System Reset Occurred |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | ****************************** |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | Allocate 16 byte aligned buffer: 87fc85d0 |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | Enable NFI Clock |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | # MTK NAND # : Use HW ECC |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | NAND ID [EF F1 00 95 00] |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | Device found in MTK table, ID: eff1, EXT_ID: 9500 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Support this Device in MTK table! eff1 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | select_chip |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: [ 2.589667] i2c /dev entries driver | + | [NAND]select ecc bit:4, sparesize :64 spare_per_sector=16 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Signature matched and data read! |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | load_fact_bbt success 1023 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | load fact bbt success |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [mtk_nand] probe successfully! |
| - | Mon Jun 13 21:04:29 2022 kern.err kernel: | + | mtd-> |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ..============================================ |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Ralink UBoot Version: 5.0.0.4 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | -------------------------------------------- |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ASIC MT7621A DualCore (MAC to MT7530 Mode) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | DRAM_CONF_FROM: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | DRAM_TYPE: DDR3 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | DRAM bus: 16 bit |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Xtal Mode=3 OCP Ratio=1/3 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Flash component: NAND Flash |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: [ 2.843049] mt7530 mdio-bus: | + | Date: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ============================================ |
| - | Mon Jun 13 21:04:29 2022 kern.err kernel: | + | icache: sets:256, ways:4, linesz:32 , |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | dcache: sets:256, ways:4, linesz:32 , |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ##### The CPU freq = 880 MHZ #### |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | # |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | set LAN/WAN LLLLW |
| - | Mon Jun 13 21:04:29 2022 kern.err kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Please choose the operation: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 1: Load system code to SDRAM via TFTP. |
| - | Mon Jun 13 21:04:29 2022 kern.err kernel: | + | 2: Load system code then write to Flash via TFTP. |
| - | Mon Jun 13 21:04:29 2022 kern.err kernel: | + | 3: Boot system code via Flash (default). |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 4: Entr boot command line interface. |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 7: Load Boot Loader code then write to Flash via Serial. |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 9: Load Boot Loader code then write to Flash via TFTP. |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | default: 3 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 0 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | 3: System Boot system code via Flash[0]. |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ## Booting image at bc300000 ... |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Image Name: MIPS OpenWrt Linux-5.10.127 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Image Type: MIPS Linux Kernel Image (uncompressed) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Data Size: 2679498 Bytes = 2.6 MB |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Load Address: 80001000 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Entry Point: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ......................................... |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | OK |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | No initrd |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ## Transferring control to Linux (at address 80001000) ... |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | ## Giving linux memsize in MB, 128 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: [ 3.514383] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 | + | Starting kernel ... |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | for led test (red off) ... |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | OpenWrt kernel loader for MIPS based SoC |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: [ 3.596118] pci 0000: | + | Copyright (C) 2011 Gabor Juhos < |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Decompressing kernel... done! |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | Starting kernel at 80001000... |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.000000] Linux version 5.10.127 (builder@buildhost) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 11.2.0 r19523-bfd070e7fa) 11.2.0, GNU ld (GNU Binutils) 2.37) #0 SMP Wed Jul 6 19:09:39 2022 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.000000] SoC Type: MediaTek MT7621 ver:1 eco:3 |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: [ 3.678600] UBI: auto-attach mtd12 | + | [ 0.000000] printk: bootconsole [early0] enabled |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] CPU0 revision is: 0001992f (MIPS 1004Kc) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.000000] MIPS: machine is MTS WG430223 |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] Initrd not found or empty - disabling initrd |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] VPE topology {2,2} total 4 |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] Zone ranges: |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] Movable zone start for each node |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] Early memory node ranges |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.000000] |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff] |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.000000] percpu: Embedded 15 pages/cpu s30256 r8192 d22992 u61440 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32480 |
| - | Mon Jun 13 21:04:29 2022 kern.warn kernel: | + | [ 0.000000] Kernel command line: console=ttyS0, |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: | + | [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ 5.169025] | + | [ 0.000000] Writing ErrCtl register=00068800 |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ 5.169030] | + | [ 0.000000] Readback ErrCtl register=00068800 |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ 5.169035] | + | [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ 5.169040] | + | [ 0.000000] Memory: |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: [ 5.753042] init: Console is alive | + | [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.000000] rcu: Hierarchical RCU implementation. |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.000000] |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.000000] NR_IRQS: 256 |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] CPU Clock: 880MHz |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000000] clocksource: |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.000013] sched_clock: |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.015856] clocksource: |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: [ 8.740239] random: jshn: uninitialized urandom read (4 bytes read) | + | [ 0.033806] Calibrating delay loop... 586.13 BogoMIPS (lpj=2930688) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: [ 8.933592] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode | + | [ 0.106127] pid_max: default: 32768 minimum: 301 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.115434] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.129838] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.148118] rcu: Hierarchical SRCU implementation. |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.157927] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: [ 13.220523] UBIFS (ubi0:1): Mounting in unauthenticated mode | + | [ 0.173495] smp: Bringing up secondary CPUs ... |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.183235] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.183245] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.183256] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.183333] CPU1 revision is: 0001992f (MIPS 1004Kc) |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.243340] Synchronize counters for CPU 1: done. |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.305504] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.305513] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.305520] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.305568] CPU2 revision is: 0001992f (MIPS 1004Kc) |
| - | Mon Jun 13 21:04:29 2022 user.warn kernel: | + | [ 0.364467] Synchronize counters for CPU 2: done. |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: [ 13.850846] procd: - early - | + | [ 0.424802] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.424811] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.424819] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.424871] CPU3 revision is: 0001992f (MIPS 1004Kc) |
| - | Mon Jun 13 21:04:29 2022 kern.warn kernel: | + | [ 0.484049] Synchronize counters for CPU 3: done. |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: [ 14.622137] random: ubusd: uninitialized urandom read (4 bytes read) | + | [ 0.543658] smp: Brought up 1 node, 4 CPUs |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.556001] clocksource: |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.575510] futex hash table entries: 1024 (order: 3, 32768 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.589338] pinctrl core: initialized pinctrl subsystem |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.602048] NET: Registered protocol family 16 |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.612031] thermal_sys: |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.613370] cpuidle: using governor teo |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.636006] rt2880-pinmux pinctrl: there is not valid maps for state default |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: | + | [ 0.684099] clocksource: |
| - | Mon Jun 13 21:04:29 2022 kern.notice kernel: [ | + | [ 0.695857] NET: Registered protocol family 2 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: [ 16.128587] mt7621-pci 1e140000.pcie: | + | [ 0.704836] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.720276] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: [ 16.150728] mt7615e 0000: | + | [ 0.736965] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: | + | [ 0.752111] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 kern.debug kernel: [ | + | [ 0.766080] TCP: Hash tables configured (established 1024 bind 1024) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.778848] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.791749] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.805861] NET: Registered protocol family 1 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.814455] PCI: CLS 0 bytes, default 32 |
| - | Mon Jun 13 21:04:29 2022 user.info kernel: | + | [ 0.824605] workingset: timestamp_bits=14 max_order=15 bucket_order=1 |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.841651] squashfs: version 4.0 (2009/ |
| - | Mon Jun 13 21:04:29 2022 kern.info kernel: | + | [ 0.853131] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. |
| - | Mon Jun 13 21:04:30 2022 authpriv.info dropbear[1129]: | + | [ 0.873441] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) |
| - | Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: bonding | + | [ 0.889822] mt7621_gpio 1e000600.gpio: |
| - | Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: 8021ad | + | [ 0.901199] mt7621_gpio 1e000600.gpio: |
| - | Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: 8021q | + | [ 0.912557] mt7621_gpio 1e000600.gpio: |
| - | Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: macvlan | + | [ 0.924619] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled |
| - | Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: veth | + | [ 0.941446] printk: console [ttyS0] disabled |
| - | Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: bridge | + | [ 0.949925] 1e000c00.uartlite: |
| - | Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: Network device | + | [ 0.967835] printk: console [ttyS0] enabled |
| - | Mon Jun 13 21:04:32 2022 user.notice : Added device handler type: tunnel | + | [ 0.967835] printk: console [ttyS0] enabled |
| - | Mon Jun 13 21:04:32 2022 cron.err crond[1396]: | + | [ 0.984384] printk: bootconsole [early0] disabled |
| - | Mon Jun 13 21:04:32 2022 daemon.notice wpa_supplicant[1250]: | + | [ 0.984384] printk: bootconsole [early0] disabled |
| - | Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up / | + | [ 1.005801] mt7621-nand 1e003000.nand: Using programmed access timing: 31c07388 |
| - | Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up / | + | [ |
| - | Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up / | + | [ 1.033368] nand: Winbond W29N01HV |
| - | Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up / | + | [ 1.040219] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 |
| - | Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up / | + | [ 1.055300] mt7621-nand 1e003000.nand: |
| - | Mon Jun 13 21:04:33 2022 user.notice ucitrack: Setting up / | + | [ 1.068336] mt7621-nand 1e003000.nand: Using programmed access timing: 21005134 |
| - | Mon Jun 13 21:04:34 2022 user.notice ucitrack: Setting up non-init / | + | [ 1.082890] mt7621-nand 1e003000.nand: Using programmed access timing: 21005134 |
| - | Mon Jun 13 21:04:34 2022 user.notice ucitrack: Setting up / | + | [ 1.097445] Scanning device for bad blocks |
| - | Mon Jun 13 21:04:34 2022 user.notice ucitrack: Setting up / | + | [ 1.749717] 10 fixed-partitions partitions found on MTD device mt7621-nand |
| - | Mon Jun 13 21:04:34 2022 user.notice ucitrack: Setting up / | + | [ 1.763406] Creating 10 MTD partitions on " |
| - | Mon Jun 13 21:04:34 2022 daemon.warn netifd: You have delegated IPv6-prefixes but haven' | + | [ 1.773988] 0x000000000000-0x000000100000 : " |
| - | Mon Jun 13 21:04:34 2022 kern.info kernel: | + | [ 1.784891] 0x000000100000-0x000000200000 : " |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ 1.796612] 0x000000200000-0x000000300000 : " |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ 1.807797] 0x000000300000-0x000002300000 : " |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: [ | + | [ 1.819121] 2 fixed-partitions partitions found on MTD device firmware |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ 1.832145] Creating 2 MTD partitions on " |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ 1.842035] 0x000000000000-0x000000440000 : " |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ 1.852865] 0x000000440000-0x000002000000 : " |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: [ 23.183364] br-lan: port 1(lan1) entered blocking state | + | [ 1.864565] 0x000002300000-0x000004300000 : " |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ 1.876076] 0x000004300000-0x000004500000 : " |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ 1.886959] 0x000004500000-0x000004600000 : " |
| - | Mon Jun 13 21:04:35 2022 daemon.notice netifd: Interface ' | + | [ 1.898520] 0x000004600000-0x000004800000 : " |
| - | Mon Jun 13 21:04:35 2022 daemon.notice netifd: Interface ' | + | [ 1.909684] 0x000004800000-0x000004900000 : " |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ 1.921478] 0x000004900000-0x000007f80000 : " |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ |
| - | Mon Jun 13 21:04:35 2022 kern.info kernel: | + | [ |
| - | Mon Jun 13 21:04:35 2022 daemon.notice netifd: Interface ' | + | [ |
| - | Mon Jun 13 21:04:35 2022 daemon.notice netifd: Interface ' | + | [ |
| - | Mon Jun 13 21:04:35 2022 daemon.notice netifd: Interface ' | + | [ |
| - | Mon Jun 13 21:04:35 2022 daemon.notice netifd: Network device ' | + | [ 2.045676] mt7530 mdio-bus: |
| - | Mon Jun 13 21:04:35 2022 daemon.notice netifd: Network device ' | + | [ 2.063488] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 21 |
| - | Mon Jun 13 21:04:35 2022 daemon.notice netifd: Interface ' | + | [ 2.081045] mtk_soc_eth 1e100000.ethernet wan: mediatek frame engine at 0xbe100000, irq 21 |
| + | [ 2.098496] i2c /dev entries driver | ||
| + | [ 2.108177] mt7621-pci 1e140000.pcie: | ||
| + | [ 2.121571] mt7621-pci 1e140000.pcie: | ||
| + | [ 2.139098] mt7621-pci 1e140000.pcie: | ||
| + | [ 2.155416] mt7621-pci 1e140000.pcie: | ||
| + | [ 2.171803] mt7621-pci 1e140000.pcie: | ||
| + | [ 2.184680] NET: Registered protocol family 10 | ||
| + | [ 2.195421] Segment Routing with IPv6 | ||
| + | [ 2.202811] NET: Registered protocol family 17 | ||
| + | [ 2.211821] bridge: filtering via arp/ | ||
| + | [ 2.238040] 8021q: 802.1Q VLAN Support v1.8 | ||
| + | [ 2.249822] mt7530 mdio-bus: | ||
| + | [ 2.286096] mt7530 mdio-bus:1f lan2 (uninitialized): | ||
| + | [ 2.308183] mt7530 mdio-bus:1f lan1 (uninitialized): | ||
| + | [ 2.331062] mt7530 mdio-bus: | ||
| + | [ 2.347860] DSA: tree 0 setup | ||
| + | [ 2.354127] rt2880-pinmux pinctrl: pcie is already enabled | ||
| + | [ 2.365148] mt7621-pci 1e140000.pcie: | ||
| + | [ 2.378510] mt7621-pci 1e140000.pcie: | ||
| + | [ 2.396046] mt7621-pci 1e140000.pcie: | ||
| + | [ 2.412336] mt7621-pci 1e140000.pcie: | ||
| + | [ 2.428734] mt7621-pci-phy 1e149000.pcie-phy: | ||
| + | [ 2.443828] mt7621-pci-phy 1e14a000.pcie-phy: | ||
| + | [ 2.458824] mt7621-pci 1e140000.pcie: | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ 3.000272] pci 0000: | ||
| + | [ 3.013446] pci 0000: | ||
| + | [ 3.027323] pci 0000: | ||
| + | [ 3.040840] pci 0000: | ||
| + | [ 3.054368] pci 0000: | ||
| + | [ 3.067892] pci 0000: | ||
| + | [ 3.082455] pci 0000: | ||
| + | [ 3.092348] pci 0000: | ||
| + | [ 3.105869] pci 0000: | ||
| + | [ 3.121700] UBI: auto-attach mtd12 | ||
| + | [ 3.128554] ubi0: attaching mtd12 | ||
| + | [ 3.135509] mt7530 mdio-bus: | ||
| + | [ | ||
| + | [ 4.000811] ubi0: attached mtd12 (name " | ||
| + | [ 4.011808] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes | ||
| + | [ 4.025513] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 | ||
| + | [ 4.039037] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ | ||
| + | [ 7.447872] random: procd: uninitialized urandom read (4 bytes read) | ||
| + | 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 | ||
| + | [ 8.982859] mt7530 mdio-bus:1f lan1: Link is Up - 100Mbps/ | ||
| + | [ 8.998033] IPv6: ADDRCONF(NETDEV_CHANGE): | ||
| + | [ 11.722083] UBIFS (ubi0:1): Mounting in unauthenticated mode | ||
| + | [ 11.733681] UBIFS (ubi0:1): background thread " | ||
| + | [ 11.816839] UBIFS (ubi0:1): recovery needed | ||
| + | [ 11.980728] UBIFS (ubi0:1): recovery completed | ||
| + | [ 11.989767] UBIFS (ubi0:1): UBIFS: mounted UBI device 0, volume 1, name " | ||
| + | [ 12.005377] UBIFS (ubi0:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes | ||
| + | [ 12.025116] UBIFS (ubi0:1): FS size: 75804672 | ||
| + | [ 12.045890] UBIFS (ubi0:1): reserved for root: 3580441 | ||
| + | [ 12.059066] UBIFS (ubi0:1): media format: w5/r0 (latest is w5/r0), UUID D3C4510B-B083-480C-9882-6C01CF484DB4, small LPT model | ||
| + | [ 12.089020] mount_root: switching to ubifs overlay | ||
| + | [ 12.120313] urandom-seed: | ||
| + | [ | ||
| + | [ 12.338103] procd: - early - | ||
| + | [ 12.344231] procd: - watchdog - | ||
| + | [ 13.024319] procd: - watchdog - | ||
| + | [ 13.136577] procd: - ubus - | ||
| + | [ 13.281049] random: ubusd: uninitialized urandom read (4 bytes read) | ||
| + | [ 13.305006] random: ubusd: uninitialized urandom read (4 bytes read) | ||
| + | [ 13.318188] random: ubusd: uninitialized urandom read (4 bytes read) | ||
| + | [ 13.334620] procd: - init - | ||
| + | Please press Enter to activate this console. | ||
| + | [ 14.167262] kmodloader: loading kernel modules from / | ||
| + | [ 14.589228] urngd: v1.0.2 started. | ||
| + | [ 14.602838] Loading modules backported from Linux version v5.15.33-0-g06f50ca83ace | ||
| + | [ 14.618046] Backport generated by backports.git v5.15.33-1-0-g183c4ab2 | ||
| + | [ 14.855362] mt7621-pci 1e140000.pcie: | ||
| + | [ 14.866243] pci 0000: | ||
| + | [ 14.871429] random: crng init done | ||
| + | [ 14.877544] mt7615e 0000: | ||
| + | [ 14.896357] random: 29 urandom warning(s) missed due to ratelimiting | ||
| + | [ 14.925737] mt7615e 0000: | ||
| + | [ 14.925737] | ||
| + | [ 14.963493] PPP generic driver version 2.4.2 | ||
| + | [ 14.974335] NET: Registered protocol family 24 | ||
| + | [ 14.992409] kmodloader: done loading kernel modules from / | ||
| + | [ 15.196245] mt7615e 0000: | ||
| + | [ 15.335265] mt7615e 0000: | ||
| + | [ 23.884142] mtk_soc_eth 1e100000.ethernet eth0: Link is Down | ||
| + | [ 23.910357] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode | ||
| + | [ 23.926568] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx | ||
| + | [ 23.937607] device eth0 entered promiscuous mode | ||
| + | [ 23.953262] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode | ||
| + | [ 23.967757] 8021q: adding VLAN 0 to HW filter on device lan1 | ||
| + | [ | ||
| + | [ 23.996117] br-lan: port 1(lan1) entered blocking state | ||
| + | [ 24.007007] br-lan: port 1(lan1) entered disabled state | ||
| + | [ 24.018607] device lan1 entered promiscuous mode | ||
| + | [ 24.052261] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode | ||
| + | [ 24.066341] 8021q: adding VLAN 0 to HW filter on device lan2 | ||
| + | [ 24.082678] br-lan: port 2(lan2) entered blocking state | ||
| + | [ 24.093295] br-lan: port 2(lan2) entered disabled state | ||
| + | [ 24.105952] device lan2 entered promiscuous mode | ||
| + | [ | ||
| + | [ | ||
| + | [ 25.611394] mt7530 mdio-bus:1f lan1: Link is Up - 100Mbps/ | ||
| + | [ | ||
| + | [ | ||
| + | [ 25.650280] IPv6: ADDRCONF(NETDEV_CHANGE): | ||
| + | [ | ||
| + | [ | ||
| + | |||
| + | |||
| + | |||
| + | BusyBox v1.35.0 (2022-07-06 19:09:39 UTC) built-in shell (ash) | ||
| + | |||
| + | _______ | ||
| + | | ||
| + | | ||
| + | | ||
| + | |__| W I R E L E S S F R E E D O M | ||
| + | | ||
| + | | ||
| + | | ||
| + | === WARNING! ===================================== | ||
| + | There is no root password defined on this device! | ||
| + | Use the " | ||
| + | in order to prevent unauthorized SSH logins. | ||
| + | -------------------------------------------------- | ||
| + | root@OpenWrt:/# ubus call system board | ||
| + | { | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | " | ||
| + | } | ||
| + | } | ||
| </ | </ | ||
| </ | </ | ||
| Line 616: | Line 1626: | ||
| === Online OpenWrt builder === | === Online OpenWrt builder === | ||
| - | * [[https://chef.libremesh.org/? | + | * [[https://firmware-selector.openwrt.org/? |
| - | === Breed bootloader | + | === Common |
| - | * [[https://github.com/legale/breed-mt7621-xiaomi-r3g.bin-reset-button-changer/tree/main/ | + | * [[https://mega.nz/folder/xoBklZTZ# |
| - | * [[https:// | + | |
| - | * [[https:// | + | |
| - | * [[https:// | + | |
| ===== Tags ===== | ===== Tags ===== | ||
| [[meta: | [[meta: | ||
| - | {{tag> | + | {{tag> |