Arcadyan ARV752DPW22 (Vodafone EasyBox 803A)

In Germany also sold as Arcor/Vodafone DSL-EasyBox 803A.

USB ports bugged since kernel 4.19 (OpenWrt trunk) → Linux 4.19 bootlog dwc2_core_reset: HANG!

dwc2 1e101000.usb: dwc2_core_reset: HANG! Soft Reset timeout GRSTCTL GRSTCTL_CSFTRST
dwc2: probe of 1e101000.usb failed with error -16

USB ports working → kernel 4.14 (OpenWrt 19.07) → Linux 4.14 bootlog

?seems hardware related? (reproducible), 2 of 3 EasyBoxes behave like:

  • hang! persists if power device plug disconnect for a few seconds
  • hang! if USB not working & soft_reboot (no power disconnect)
  • sometimes no_hang if power device plug disconnect for more then ~60 seconds
  • no_hang if USB works & soft_reboot (no power disconnect)

Currently (December 2018) there is no factory image, which can be flashed from the webinterface of the original firmware.

Therefore, to install OpenWrt you have to:

  1. Establish a serial connection
  2. Backup the original firmware
  3. Install U-Boot as bootloader

Attention:
Make a full backup (see Backup) of the flash storage first. Instructions are at the bottom. You might need the configuration or your wifi will be unusable for all times. I didn't uploaded any configuration after flashing, my wifi just worked. But no guarantees that it will be same on yours. Better safe than sorry, make a backup!

Using a functional serial communication program like minicom makes running OpenWrt easier (and more understandable). You just need a running U-Boot and can do everything from there.

First, let's have a look about the available flash memory. This is from my device after flashing U-Boot permanently:

ARV752DPW22 # flinfo

Bank # 1: CFI conformant flash (16 x 16)  Size: 8 MB in 135 Sectors
  AMD Standard command set, Manufacturer ID: 0xC2, Device ID: 0x22CB
  Erase timeout: 16384 ms, write timeout: 1 ms

  Sector Start Addresses:
  B0000000   RO   B0002000   RO   B0004000   RO   B0006000   RO   B0008000   RO 
  B000A000   RO   B000C000   RO   B000E000   RO   B0010000   RO   B0020000   RO 
  B0030000   RO   B0040000        B0050000        B0060000        B0070000      
  B0080000        B0090000        B00A0000        B00B0000        B00C0000      
  B00D0000        B00E0000        B00F0000        B0100000        B0110000      
  B0120000        B0130000        B0140000        B0150000        B0160000      
  B0170000        B0180000        B0190000        B01A0000        B01B0000      
  B01C0000        B01D0000        B01E0000        B01F0000        B0200000      
  B0210000        B0220000        B0230000        B0240000        B0250000      
  B0260000        B0270000        B0280000        B0290000        B02A0000      
  B02B0000        B02C0000        B02D0000        B02E0000        B02F0000      
  B0300000        B0310000        B0320000        B0330000        B0340000      
  B0350000        B0360000        B0370000        B0380000        B0390000      
  B03A0000        B03B0000        B03C0000        B03D0000        B03E0000      
  B03F0000        B0400000        B0410000        B0420000        B0430000      
  B0440000        B0450000        B0460000        B0470000        B0480000      
  B0490000        B04A0000        B04B0000        B04C0000        B04D0000      
  B04E0000        B04F0000        B0500000        B0510000        B0520000      
  B0530000        B0540000        B0550000        B0560000        B0570000      
  B0580000        B0590000        B05A0000        B05B0000        B05C0000      
  B05D0000        B05E0000        B05F0000        B0600000        B0610000      
  B0620000        B0630000        B0640000        B0650000        B0660000      
  B0670000        B0680000        B0690000        B06A0000        B06B0000      
  B06C0000        B06D0000        B06E0000        B06F0000        B0700000      
  B0710000        B0720000        B0730000        B0740000        B0750000      
  B0760000        B0770000        B0780000        B0790000        B07A0000      
  B07B0000        B07C0000        B07D0000        B07E0000        B07F0000  

U-Boot tries to protect itself from overwriting and marks its blocks as read-only (“RO”). That's fine, we won't touch that. Let's upload our image via XMODEM:

ARV752DPW22 # loadx
## Ready for binary (xmodem) download to 0x81000000 at 115200 bps...                                                 
C## Total Size      = 0x00480004 = 4718596 Bytes

Unreliable serial connections can (and will) make your upload garbage. Let's check the CRC32 sum. U-Boot has a handy variable for the starting point of our upload:

ARV752DPW22 # crc32 ${loadaddr} 0x00480004
CRC32 for 81000000 ... 81480003 ==> 6d7b3595

Compare with the local copy, upload again if needed. Now we erase the blocks beginning from the first block after U-Boot up to the size of the uploaded image:

ARV752DPW22 # erase 0xB0040000 +0x00480004

......................................................................... done
Erased 73 sectors

And now copy from ram to flash. The syntax is a little confusing:

ARV752DPW22 # cp.b
cp - memory copy

Usage:
cp [.b, .w, .l] source target count

ARV752DPW22 # cp.b ${loadaddr} 0xB0040000 0x00480004
Copy to Flash... done

Let's see if U-Boot can boot this:

ARV752DPW22 # iminfo 0xB0040000

## Checking Image at b0040000 ...
   Legacy image found
   Image Name:   MIPS OpenWrt Linux-3.18.20
   Created:      2015-09-11  17:02:01 UTC
   Image Type:   MIPS Linux Kernel Image (lzma compressed)
   Data Size:    1445133 Bytes = 1.4 MiB
   Load Address: 80002000
   Entry Point:  80002000
   Verifying Checksum ... OK

Looks good! Now boot this:

ARV752DPW22 # bootm ${kernel_addr} ${bootargs} 

Attention:
In this paragraph you have to take action on bootloader [bl] cmd line and sometimes on u-boot [ub] cmd line and sometimes local [lo].
Don't mix up!

Download the squash image openwrt-lantiq-danube-ARV752DPW22-squashfs.image.

At first create a flash image that doesn't destroy the original bootloader.

To do this take a copy of the original bootloader code (first 128k of the backup firmware) and attach the squash image to it:

[lo]: cat ARV752DPW22_boot.dump openwrt-lantiq-danube-ARV752DPW22-squashfs.image > flash.img

Then erase all flash blocks not needed on the u-boot command line:

[ub]: ARV752DPW22 ⇒ erase 1:9-134

This takes some time.

Then reset and write the just created flash.img via XMODEM to the flash at area 5 (whole flash):

choose
[bl]: [U] Upload to Flash
[bl]: [5] Flash Image 0xB0000000 8192K and transmit via
[lo]: sx flash.img </dev/ttyUSB0 >/dev/ttyUSB0

This takes some more time to transmit and then takes some time again to get written to the flash. Be patient!!

Wait until the bootloader command line is interactive again. Be patient!!

The openwrt image is on the flash but it doesn't start automatically because u-boot isn't on flash yet.

To boot OpenWrt put u-boot into ram again and start it. That's it.

OpenWrt can also be compiled on your own. There are some bugs and patches to bear in mind.

Non-working failsafe mode

Currently the failsafe mode on the router doesn't work. Looking through the serial console one can see that it actually can boot into failsafe mode but it doesn't bring up the network. The patch for this behavior if simple and can be found in https://dev.openwrt.org/ticket/21480.

Making u-boot env writable from OpenWrt

The /dev/mtd? are usually read-only from linux. This makes editing the uboot environment impossible from inside OpenWrt even if the tools are correctly configured as in Accessing_U-Boot_environment_variables_in_OpenWrt.

The information about /dev/mtd? being ro or rw is in the dts files. For arv752dpw22 this file is in ./target/linux/lantiq/dts/ARV752DPW22.dts and the relevant section is

nor-boot@0 {
                                compatible = "lantiq,nor";
                                bank-width = <2>;
                                reg = <0 0x0 0x800000>;
                                #address-cells = <1>;
                                #size-cells = <1>;

                                partition@0 {
                                        label = "uboot";
                                        reg = <0x00000 0x30000>;
                                        read-only;
                                };

                                partition@10000 {
                                        label = "uboot_env";
                                        reg = <0x30000 0x10000>;
                                        read-only;
                                };

                                partition@20000 {
                                        label = "firmware";
                                        reg = <0x40000 0x7b0000>;
                                };

Removing the read-only directive to have

                                partition@10000 {
                                        label = "uboot_env";
                                        reg = <0x30000 0x10000>;
                                };

and recompiling everything fixes the problem. However be careful, for whatever reason I am not sure that make detects changes to dts files so be sure that if you are recompiling make actually notices the change and does everything. Maybe a

make clean

at the beginning can help.

  • U-Boot is compatible with ARV7518PW according to this article.

There are 3 different possibilities to run u-boot:

  1. uboot-arv752DPW22_brn meant to be loaded from brnboot (stock bootloader) as a 2nd stage bootloader into memory
  2. uboot-arv752DPW22_nor meant to be flashed into the unit as main bootloader (at 0xB0000000 +$filesize)
  3. uboot-arv752DPW22_ram meant to be uploaded via UART by serial if nor_bootloader got broken, for rescue purposes
    see below

Currently (December 2018) uboot is broken, see:
"EasyBox 803A stuck at Uncompressing Kernel Image ..."

Unless this is fixed, use an “older” working uboot to write to flash:

U-Boot 2013.10-openwrt4 (May 28 2014) (from SNK).

Running trunk uboot_ram works.

workaround:

  1. download u-boot.bin (not available anymore) → try archive.org or trunk
  2. get into administrative mode of bootloader
  3. choose
    [M] Upload to Memory
    at default address 0x80002000
  4. exit terminal (kill screen as mentioned above)
  5. send u-boot.bin via XMODEM protocoll (you may have to add your user to group dialout):
    sx u-boot.bin </dev/ttyUSB0 >/dev/ttyUSB0
  6. get to the console via terminal again & type [Return]
  7. choose
    [Y] Go to Memory
    to default address 0x80002000

u-boot starts like this:

[DANUBE Boot]:Y

Go to Memory Address: (default:0x80002000) : 0x
Jump to address 0x80002000 ...


U-Boot 2010.03 (Sep 29 2012 - 18:24:13)

Board: ARV752DPW22
SoC: Danube/Twinpass/Vinax-VE V1.5, DDR Speed 166 MHz, CPU Speed 333 MHz
DRAM:  64 MB
Flash:  8 MB
*** Warning - bad CRC, using default environment

Net:   bring up ebu gpio
initializing ar8216 switch... initialized
lq_cpe_eth
Hit any key to stop autoboot:  0
Wrong Image Format for bootm command
ERROR: can't get kernel image!
Failed to execute bootcmd (maybe invalid u-boot environment?), starting httpd to update firmware...
starting httpd server from server 192.168.1.1
http start
..........................................................................

You can hit [Ctrl] + [C] to get to the command line or hitting a key at the requested time.

Please backup your original firmware! Not only that you might want to go back to the original state later, but your firmware may also contain data that is unique to your device like MAC addresses (but not sure about that though).

You'll need: https://github.com/rvalles/brntool

A dump of the firmware is done in ~1 hour. Ro dump twice as recomended by the autor of brntool you have to plan 2 hours to backup your device.

First you have to enter the “Administrator Mode” in DANUBE Boot.

  1. plug in USB2serial adapter
  2. screen /dev/ttyUSB0 115200
  3. power on the device
  4. hurry press 3x space bar
  5. type an exclamation mark (!) to enter the administration mode
Press Space Bar 3 times to enter command mode ...123
Yes, Enter command mode ...


[DANUBE Boot]:!

Enter Administrator Mode !

======================
 [#] Set Serial Number
 [2] Use Normal Firmware
 [3] Use ART-Testing Firmware
 [9] Taggle ART Firmware Enable/Disable
 [A] Set MAC Address
 [E] Erase Flash
 [G] Run Runtime Code
 [H] Set Options
 [M] Upload to Memory
 [P] Print Boot Params
 [R] Read from Memory
 [T] Memory Test
 [U] Upload to Flash
 [V] Set Board Version
 [W] Write to Memory
 [Y] Go to Memory
 [Z] Dump DDR Ram Register
 [0] Primary = Image 0
 [1] Primary = Image 1
======================

[DANUBE Boot]:

Kill your serial terminal (screen: “[CTRL]+[A], [K]” and confirm exit with [Y]“). Now you are able to dump the original firmware as shown below.

# time ./brntool.py --read=ARV752DPW22_orig.dump --addr=0xB0000000 --verbose --size=0x800000
Waiting for a prompt... Ok.
.............................. [abbreviated version, you will see **many** more dots and hopefully no exclamation marks]
real	61m27.738s
user	1m18.327s
sys	0m47.164s

Powercycle the router, enter the “Admin Mode” of the bootloader and dump the firmware again:

# ./brntool.py --read=ARV752DPW22_orig2.dump --addr=0xB0000000 --verbose --size=0x800000

Compare the files. If everything is ok you will end with 2 identical files:

# ls -l ARV752DPW22_orig*.dump
-rw-r--r--. 1 root root 8388608 12. Feb 23:32 ARV752DPW22_orig.dump
-rw-r--r--. 1 root root 8388608 13. Feb 00:58 ARV752DPW22_orig2.dump
# diff ARV752DPW22_orig.dump ARV752DPW22_orig2.dump
# cmp ARV752DPW22_orig.dump ARV752DPW22_orig2.dump
# md5sum ARV752DPW22_orig*
7eeffb26ab4d23214b0bfd3e14a34812  ARV752DPW22_orig2.dump
7eeffb26ab4d23214b0bfd3e14a34812  ARV752DPW22_orig.dump

As you see, the two files are the same. If you compare your own output with this example you probably note the md5sums differ, thats ok: You have to end with md5sums different like shown here in this example, because my MAC Adress/Serial No./configuration its also saved in this dump.

For Wifi to work, you must preserve the original board config partition. It consists of the last sector of your flash: 0xb07f000 - 0xb07ffff. If your wifi doesn't work, you propably have accidently erased that data. Hopefully you created a backup of your original firmware. That backup should be 8MB (8388608 bytes) long. The last 65536 (0x10000) bytes are the ones we are needing here.

You can extract them using dd. Assuming you are on the machine where the original firmware backup is stored and it is named original.dump:

dd if=original.dump bs=1 skip=$((0x7f0000)) count=$((0x10000)) of=board_config.image

Now you need to get the contents of the new file board_config.image onto your device. You could use TFTP from the U-Boot prompt.

Once you have managed to load the data into the device memory (propably at $loadaddr), you erase the target flash memory from U-Boot:

erase 0xb07f0000 +0x10000

Then write the board config partition from memory to the flash:

cp.b $loadaddr 0xb07f0000 0x10000

I don't know if it actually helps overwriting it ever again, but it hopefully won't hurt to protect that part of the flash:

protect on 0xb07f0000 +0x10000

For me at this point wifi still wouldn't work after restarting the box. OpenWrt still needs to apply the wifi EEPROM data from that partition. I tried that manually without success. What did work for me was doing an OpenWrt “reset to defaults” from LuCI. I can now successfully scan for nearby wifi networks.

These links provide information for older versions of OpenWrt: https://lists.openwrt.org/pipermail/openwrt-devel/2014-January/023459.html https://lists.openwrt.org/pipermail/openwrt-devel/2014-January/023460.html

If you select ”[E] Erase Flash“ in the bootloader you can see the original flash layout:

[DANUBE Boot]:e

ERASE Flash
---------------------------------------
    Area            Address      Length 
--------------------------------------- 
[0] Boot            0xB0000000     128K
[1] Configuration   0xB0020000     512K
[2] Special Area    0xB00A0000      64K
[3] Code Image      0xB00B0000    7424K
[4] Boot Params     0xB07F0000      64K
[5] Flash Image     0xB0000000    8192K
---------------------------------------
Enter area to ERASE:

press [ESC]!!!

Explaination

these are the assumptions:

Area content
Boot brnboot
Configuration router OS parameters
Special Area
Code Image router OS
Boot Params WLAN Firmware

As with most Lantiq devices there is a boot mode allowing you to recover via the serial port even if the bootloader is broken.

You need to set the hardware into UART mode temporarily with access to some boot_selN pads on the bottom (mostly unpopulated side) of the board:

  • pull the right hand pad of R80 to ground (that's the pad under the '0'; the pad nearest the LEDs; the pad furthest from the network ports and serial header)
  • pull the left side of R65 to +3.3V (that's the side under the '5' of label 'R45'; the side furthest from the LEDs; the side nearest the network ports and serial header)

(R80's RHS is probably boot_sel0 and R65's LHS is probably boot_sel2.)

One convenient approach might be to use flying wires from the ground and 3V3 pins of the serial port, and temporarily (and carefully!) touch them to the correct resistor pads (with steady hands, and/or the steady hands of a patient friend) while powering on. If you expect to do this more than a few times, consider soldering wires going to header strips (for jumpers) or switches.

In this mode the device will output:

ROM VER: 1.0.3 
CFG 04 
Read EEPROMX 
X
UART

indicating that it's waiting for you to upload code. If you're making the connections manually, you may (carefully!) remove them once you see that prompt, to free your hands. With the connections removed, the device will remember this boot mode until power-cycled (soft reset will remain in UART mode).

(If part of the prompt is repeatedly displayed, double-check your connection to R80.)

Then you can submit a U-Boot image in ASCII-format (e.g. from uboot-lantiq-arv752DPW22_ramboot) with

HostPC:~# cat u-boot.asc > /dev/ttyUSB0 

which will run directly from memory (not flash). Be ready to interrupt normal boot by pressing space to get a U-Boot prompt.

This only puts U-Boot in memory until power-off. To make any permanent changes (replacing brnboot with U-Boot, upgrading U-Boot, or replacing the stock image with OpenWrt) you'll need to flash something using instructions elsewhere on the page. Be aware that U-Boot may be protecting some areas; if so you'll need to unprotect them before you can write to them, e.g.:

ARV752DPW22 => protect off 1:0-134
Un-Protect Flash Sectors 0-134 in Bank #1 

UART boot mode pin info originally came from the Arcor-User-Forum.

1. compile firmware- AND u-boot-loader-images (find recipes galore in this Wiki)

2. transfer new uboot into memory (find informations above - my example assumes, that's a running u-boot on the system avail)

3. write new uboot to flash

-REBOOT-

4. load new firmware into memory (tftp or bootp)

5. write uploaded firmware into flash (checksums may differ, addresses should be similiar)

-REBOOT-

Console log of the whole process:

HostPC:~# python ./ubootwrite.py --addr=0x80500000 --write=openwrt-lantiq-arv752dpw22_nor-u-boot.img --verbose ... ... ... Ok, prompt received Writing: mw 8052d4e0 ffffffff at: 0x8052d4e0 Waiting for prompt... Ok, prompt received File successfully written. You should run command 'crc32 80500000 0002d4e4' on the modem and the result must be 17ceed2d. HostPC:~# #################### from serial-console ############################################### crc32 80500000 0002d4e4 ##### check ! (17ceed2d in my case) protect off 0xb0000000 0xB002FFFF erase 0xb0000000 0xB002FFFF cp.b 0x80500000 0xb0000000 0x2d4e4 protect on 0xb0000000 0xB002FFFF ##################### REBOOT ################################## ARV752DPW22 # help ? - alias for 'help' base - print or set address offset bdinfo - print Board Info structure bootm - boot application image from memory bootp - boot image via network using BOOTP/TFTP protocol cmp - memory compare cp - memory copy crc32 - checksum calculation editenv - edit environment variable env - environment handling commands erase - erase FLASH memory exit - exit script false - do nothing, unsuccessfully flinfo - print FLASH memory information go - start application at address 'addr' help - print command description/usage iminfo - print header information for application image loadb - load binary file over serial line (kermit mode) loadx - load binary file over serial line (xmodem mode) loady - load binary file over serial line (ymodem mode) loop - infinite loop on address range md - memory display mdio - MDIO utility commands mii - MII utility commands mm - memory modify (auto-incrementing address) mw - memory write (fill) nm - memory modify (constant address) ping - send ICMP ECHO_REQUEST to network host printenv- print environment variables protect - enable or disable FLASH write protection reset - Perform RESET of the CPU run - run commands in an environment variable saveenv - save environment variables to persistent storage setenv - set environment variables showvar - print local hushshell variables test - minimal test like /bin/sh tftpboot- boot image via network using TFTP protocol true - do nothing, successfully version - print monitor, compiler and linker version ARV752DPW22 # version U-Boot 2013.10-openwrt4 (Oct 05 2014 - 01:17:14) ARV752DPW22 mips-openwrt-linux-uclibc-gcc (OpenWrt/Linaro GCC 4.8-2014.04 r42701) 4.8.3 GNU ld (GNU Binutils) 2.22 ARV752DPW22 # printenv addconsole=setenv bootargs $bootargs console=$consoledev,$baudrate addeth=setenv bootargs $bootargs ethaddr=$ethaddr addip=setenv bootargs $bootargs ip=$ipaddr:$serverip::::$netdev:off addmachtype=setenv bootargs $bootargs machtype=ARV752DPW22 baudrate=115200 bootcmd=bootm ${kernel_addr} bootdelay=2 consoledev=ttyLTQ1 ethact=ltq-eth ethaddr=00:01:02:03:04:05 ipaddr=192.168.1.1 kernel_addr=0xB0040000 load-uboot-nor=tftpboot u-boot.bin load-uboot-norspl=tftpboot u-boot.ltq.norspl load-uboot-norspl-lzma=tftpboot u-boot.ltq.lzma.norspl load-uboot-norspl-lzo=tftpboot u-boot.ltq.lzo.norspl loadaddr=0x81000000 netdev=eth0 serverip=192.168.1.2 stderr=serial stdin=serial stdout=serial update-uboot-nor=run load-uboot-nor write-uboot-nor write-uboot-nor=protect off 0xB0000000 +$filesize && erase 0xB0000000 +$filesize && cp.b $fileaddr 0xB0000000 $filesize ARV752DPW22 # bootp BOOTP broadcast 1 Using ltq-eth device TFTP from server 192.168.1.50; our IP address is 192.168.1.21 Filename 'openwrt-lantiq-xway-ARV752DPW22-squashfs.image'. Load address: 0x81000000 Loading: ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ########################## 935.5 KiB/s done Bytes transferred = 4456452 (440004 hex) ARV752DPW22 # crc32 81000000 440004 CRC32 for 81000000 ... 81440003 ==> 6b5cb0b5 ARV752DPW22 # flinfo Bank # 1: CFI conformant flash (16 x 16) Size: 8 MB in 135 Sectors AMD Standard command set, Manufacturer ID: 0xC2, Device ID: 0x22CB Erase timeout: 16384 ms, write timeout: 1 ms Sector Start Addresses: B0000000 RO B0002000 RO B0004000 RO B0006000 RO B0008000 RO B000A000 RO B000C000 RO B000E000 RO B0010000 RO B0020000 RO B0030000 RO B0040000 B0050000 B0060000 B0070000 B0080000 B0090000 B00A0000 B00B0000 B00C0000 B00D0000 B00E0000 B00F0000 B0100000 B0110000 B0120000 B0130000 B0140000 B0150000 B0160000 B0170000 B0180000 B0190000 B01A0000 B01B0000 B01C0000 B01D0000 B01E0000 B01F0000 B0200000 B0210000 B0220000 B0230000 B0240000 B0250000 B0260000 B0270000 B0280000 B0290000 B02A0000 B02B0000 B02C0000 B02D0000 B02E0000 B02F0000 B0300000 B0310000 B0320000 B0330000 B0340000 B0350000 B0360000 B0370000 B0380000 B0390000 B03A0000 B03B0000 B03C0000 B03D0000 B03E0000 B03F0000 B0400000 B0410000 B0420000 B0430000 B0440000 B0450000 B0460000 B0470000 B0480000 B0490000 B04A0000 B04B0000 B04C0000 B04D0000 B04E0000 B04F0000 B0500000 B0510000 B0520000 B0530000 B0540000 B0550000 B0560000 B0570000 B0580000 B0590000 B05A0000 B05B0000 B05C0000 B05D0000 B05E0000 B05F0000 B0600000 B0610000 B0620000 B0630000 B0640000 B0650000 B0660000 B0670000 B0680000 B0690000 B06A0000 B06B0000 B06C0000 B06D0000 B06E0000 B06F0000 B0700000 B0710000 B0720000 B0730000 B0740000 B0750000 B0760000 B0770000 B0780000 B0790000 B07A0000 B07B0000 B07C0000 B07D0000 B07E0000 B07F0000 ARV752DPW22 # erase 0xB0040000 0xB048FFFF ..................................................................... done Erased 69 sectors ARV752DPW22 # cp.b 0x81000000 0xB0040000 0x440004 Copy to Flash... done ##################### REBOOT ################################## ARV752DPW22 # ROM VER: 1.0.3 CFG 01 Reaä ROM VER: 1.0.3 CFG 01 Read EEPROMX X U-Boot 2013.10-openwrt4 (Oct 05 2014 - 01:17:14) ARV752DPW22 Board: Arcadyan ARV752DPW22 SoC: Lantiq Danube-S v1.5 CPU: 333.333 MHz IO: 166.667 MHz BUS: 83.333 MHz BOOT: NOR DRAM: 64 MiB Flash: 8 MiB In: serial Out: serial Err: serial Net: ltq-eth Hit any key to stop autoboot: 0 ## Booting kernel from Legacy Image at b0040000 ... Image Name: MIPS OpenWrt Linux-3.14.18 Created: 2014-10-05 0:48:52 UTC Image Type: MIPS Linux Kernel Image (lzma compressed) Data Size: 1442704 Bytes = 1.4 MiB Load Address: 80002000 Entry Point: 80002000 Verifying Checksum ... OK Uncompressing Kernel Image ... OK Starting kernel ... [ 0.000000] Linux version 3.14.18 (zeissig@deb9470m) (gcc version 4.8.3 (OpenWrt/Linaro GCC 4.8-2014.04 r42701) ) #1 Sun Oct 5 01:48:43 BST 2014 [ 0.000000] SoC: Danube rev 1.5 [ 0.000000] bootconsole [early0] enabled [ 0.000000] CPU0 revision is: 00019641 (MIPS 24KEc) [ 0.000000] MIPS: machine is ARV752DPW22 - Arcor 803 [ 0.000000] Determined physical RAM map: [ 0.000000] memory: 04000000 @ 00000000 (usable) [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x00000000-0x03ffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x00000000-0x03ffffff] [ 0.000000] Primary instruction cache 16kB, VIPT, 4-way, linesize 32 bytes. [ 0.000000] Primary data cache 16kB, 4-way, VIPT, no aliases, linesize 32 bytes [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 16256 [ 0.000000] Kernel command line: console=ttyLTQ0,115200 init=/etc/preinit [ 0.000000] PID hash table entries: 256 (order: -2, 1024 bytes) [ 0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes) [ 0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes) [ 0.000000] Writing ErrCtl register=0007a008 [ 0.000000] Readback ErrCtl register=0007a008 [ 0.000000] Memory: 60484K/65536K available (3166K kernel code, 144K rwdata, 720K rodata, 176K init, 190K bss, 5052K reserved) [ 0.000000] NR_IRQS:256 [ 0.000000] CPU Clock: 333MHz [ 0.000000] Calibrating delay loop... 221.18 BogoMIPS (lpj=442368) [ 0.036000] pid_max: default: 32768 minimum: 301 [ 0.040000] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.044000] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.052000] pinctrl core: initialized pinctrl subsystem [ 0.056000] NET: Registered protocol family 16 [ 0.076000] pinctrl-xway 1e100b10.pinmux: Init done [ 0.080000] dma-xway 1e104100.dma: Init done - hw rev: 3, ports: 5, channels: 20 [ 0.092000] PCI host bridge /fpi@10000000/pci@E105400 ranges: [ 0.096000] MEM 0x0000000018000000..0x0000000019ffffff [ 0.100000] IO 0x000000001ae00000..0x000000001affffff [ 0.124000] bio: create slab <bio-0> at 0 [ 0.136000] usbcore: registered new interface driver usbfs [ 0.140000] usbcore: registered new interface driver hub [ 0.144000] usbcore: registered new device driver usb [ 0.148000] PCI host bridge to bus 0000:00 [ 0.152000] pci_bus 0000:00: root bus resource [mem 0x18000000-0x19ffffff] [ 0.156000] pci_bus 0000:00: root bus resource [io 0x1ae00000-0x1affffff] [ 0.160000] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] [ 0.168000] pci 0000:00:0e.0: BAR 0: assigned [mem 0x18000000-0x1800ffff] [ 0.172000] pci 0000:00:0f.2: BAR 0: assigned [mem 0x18010000-0x180100ff] [ 0.176000] pci 0000:00:0f.0: BAR 4: assigned [io 0x1ae00000-0x1ae0001f] [ 0.180000] pci 0000:00:0f.1: BAR 4: assigned [io 0x1ae00020-0x1ae0003f] [ 0.184000] Switched to clocksource MIPS [ 0.196000] NET: Registered protocol family 2 [ 0.200000] TCP established hash table entries: 1024 (order: 0, 4096 bytes) [ 0.208000] TCP bind hash table entries: 1024 (order: 0, 4096 bytes) [ 0.212000] TCP: Hash tables configured (established 1024 bind 1024) [ 0.220000] TCP: reno registered [ 0.224000] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.228000] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.236000] NET: Registered protocol family 1 [ 0.240000] PCI: Enabling device 0000:00:0f.0 (0000 -> 0001) [ 0.248000] PCI: Enabling device 0000:00:0f.1 (0000 -> 0001) [ 0.252000] PCI: Enabling device 0000:00:0f.2 (0000 -> 0002) [ 0.260000] gptu: totally 6 16-bit timers/counters [ 0.264000] gptu: misc_register on minor 63 [ 0.268000] gptu: succeeded to request irq 126 [ 0.272000] gptu: succeeded to request irq 127 [ 0.276000] gptu: succeeded to request irq 128 [ 0.280000] gptu: succeeded to request irq 129 [ 0.288000] gptu: succeeded to request irq 130 [ 0.292000] gptu: succeeded to request irq 131 [ 0.304000] lantiq,vmmc 1f103000.vmmc: requested GPIO 209 [ 0.308000] lantiq,vmmc 1f103000.vmmc: reserved 1MB at 0x03900000 [ 0.316000] ralink,eeprom ralink_eep.4: using RT2860.eeprom as eeprom [ 0.328000] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.336000] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.340000] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.352000] msgmni has been set to 118 [ 0.356000] io scheduler noop registered [ 0.360000] io scheduler deadline registered (default) [ 0.368000] 1e100c00.serial: ttyLTQ0 at MMIO 0x1e100c00 (irq = 112, base_baud = 0) is a lantiq,asc [ 0.376000] console [ttyLTQ0] enabled [ 0.376000] console [ttyLTQ0] enabled [ 0.384000] bootconsole [early0] disabled [ 0.384000] bootconsole [early0] disabled [ 0.396000] ltq_nor: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x0000c2 Chip ID 0x0022cb [ 0.404000] Amd/Fujitsu Extended Query Table at 0x0040 [ 0.408000] Amd/Fujitsu Extended Query version 1.1. [ 0.416000] number of CFI chips: 1 [ 0.416000] 4 ofpart partitions found on MTD device ltq_nor [ 0.424000] Creating 4 MTD partitions on "ltq_nor": [ 0.428000] 0x000000000000-0x000000030000 : "uboot" [ 0.436000] 0x000000030000-0x000000040000 : "uboot_env" [ 0.444000] 0x000000040000-0x0000007f0000 : "firmware" [ 0.460000] 2 uimage-fw partitions found on MTD device firmware [ 0.464000] 0x000000040000-0x0000001a03d0 : "kernel" [ 0.472000] mtd: partition "kernel" must either start or end on erase block boundary or be smaller than an erase block -- forcing read-only [ 0.488000] 0x0000001a03d0-0x0000007f0000 : "rootfs" [ 0.488000] mtd: partition "rootfs" must either start or end on erase block boundary or be smaller than an erase block -- forcing read-only [ 0.504000] mtd: device 4 (rootfs) set to be root filesystem [ 0.508000] mtd: partition "rootfs_data" created automatically, ofs=0x450000, len=0x3a0000 [ 0.516000] 0x000000450000-0x0000007f0000 : "rootfs_data" [ 0.572000] 0x0000007f0000-0x000000800000 : "board_config" [ 0.616000] switch0: Atheros AR8216 rev. 1 switch registered on 1e180000.etop-ff [ 0.652000] libphy: ltq_mii: probed [ 0.812000] eth0: attached PHY [Atheros AR8216/AR8236/AR8316] (phy_addr=1e180000.etop-ff:00, irq=-1) [ 0.824000] wdt 1f8803f0.watchdog: Init done [ 0.840000] TCP: cubic registered [ 0.844000] NET: Registered protocol family 17 [ 0.848000] 8021q: 802.1Q VLAN Support v1.8 [ 0.860000] UBIFS error (pid 1): ubifs_mount: cannot open "ubi0:rootfs", error -19 [ 0.876000] VFS: Mounted root (squashfs filesystem) readonly on device 31:4. [ 0.884000] Freeing unused kernel memory: 176K (803f4000 - 80420000) procd: Console is alive procd: - watchdog - [ 6.228000] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 6.232000] ehci-platform: EHCI generic platform driver [ 6.240000] ehci-pci: EHCI PCI platform driver [ 6.244000] ehci-pci 0000:00:0f.2: EHCI Host Controller [ 6.248000] ehci-pci 0000:00:0f.2: new USB bus registered, assigned bus number 1 [ 6.256000] ehci-pci 0000:00:0f.2: irq 135, io mem 0x18010000 [ 6.272000] ehci-pci 0000:00:0f.2: USB 2.0 started, EHCI 1.00 [ 6.276000] hub 1-0:1.0: USB hub found [ 6.280000] hub 1-0:1.0: 4 ports detected [ 6.288000] uhci_hcd: USB Universal Host Controller Interface driver [ 6.292000] uhci_hcd 0000:00:0f.0: UHCI Host Controller [ 6.300000] uhci_hcd 0000:00:0f.0: new USB bus registered, assigned bus number 2 [ 6.304000] uhci_hcd 0000:00:0f.0: irq 135, io base 0x1ae00000 [ 6.312000] hub 2-0:1.0: USB hub found [ 6.316000] hub 2-0:1.0: 2 ports detected [ 6.320000] uhci_hcd 0000:00:0f.1: UHCI Host Controller [ 6.324000] uhci_hcd 0000:00:0f.1: new USB bus registered, assigned bus number 3 [ 6.332000] uhci_hcd 0000:00:0f.1: irq 135, io base 0x1ae00020 [ 6.340000] hub 3-0:1.0: USB hub found [ 6.344000] hub 3-0:1.0: 2 ports detected [ 6.352000] IFXUSB: ifxusb_hcd: version 3.2 B110801 [ 6.860000] IFXUSB: USB core #0 soft-reset [ 7.064000] IFXUSB: USB core #0 soft-reset [ 7.068000] ifxusb_hcd ifxusb_hcd: IFX USB Controller [ 7.072000] ifxusb_hcd ifxusb_hcd: new USB bus registered, assigned bus number 4 [ 7.080000] ifxusb_hcd ifxusb_hcd: irq 62, io mem 0xbe101000 [ 7.084000] IFXUSB: Mode Mismatch Interrupt: currently in Host mode [ 7.092000] IFXUSB: Mode Mismatch Interrupt: currently in Host mode [ 7.096000] IFXUSB: Init: Power Port (0) [ 7.104000] hub 4-0:1.0: USB hub found [ 7.108000] hub 4-0:1.0: 1 port detected [ 7.112000] ifxusb_hcd ifxusb_hcd: requested GPIO 208 procd: - preinit - [ 7.428000] random: mktemp urandom read with 99 bits of entropy available 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 jffs2 is not ready - marker found procd: - early - procd: - watchdog - procd: - ubus - procd: - init - Please press Enter to activate this console. [ 12.904000] IFXOS, Version 1.5.14 (c) Copyright 2009, Lantiq Deutschland GmbH [ 12.936000] NET: Registered protocol family 10 [ 12.956000] Lantiq TAPI device driver, version 3.13.0.2, (c) 2001-2010 Lantiq Deutschland GmbH [ 12.968000] NET: Registered protocol family 8 [ 12.972000] NET: Registered protocol family 20 [ 12.988000] PPP generic driver version 2.4.2 [ 13.000000] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 13.020000] IFX MEI Version 5.00.00 [ 13.036000] Infineon CPE API Driver version: DSL CPE API V3.24.4.4 [ 13.048000] Loading modules backported from Linux version master-2014-09-26-0-g25e3efa [ 13.056000] Backport generated by backports.git backports-20140905-1-gde42785 [ 13.080000] Lantiq MIPS24KEc MPS driver, version 2.2.2.5, (c) 2006-2010 Lantiq Deutschland GmbH [ 13.088000] request_timer(3, 0x000001AE, 1)...successful! [ 13.092000] Lantiq VMMC device driver, version 1.9.0.3, (c) 2006-2010 Lantiq Deutschland GmbH [ 13.104000] ip_tables: (C) 2000-2006 Netfilter Core Team [ 13.128000] ATM1.0.26 ATM (A1) firmware version 0.17 [ 13.132000] ifxmips_atm: ATM init succeed [ 13.156000] nf_conntrack version 0.5.0 (947 buckets, 3788 max) [ 13.192000] NET: Registered protocol family 24 [ 13.236000] xt_time: kernel timezone is -0000 [ 13.252000] random: nonblocking pool is initialized [ 13.304000] cfg80211: Calling CRDA to update world regulatory domain [ 13.312000] cfg80211: World regulatory domain updated: [ 13.316000] cfg80211: DFS Master region: unset [ 13.320000] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ 13.328000] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 13.336000] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 13.344000] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ 13.352000] cfg80211: (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A) [ 13.360000] cfg80211: (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 13.368000] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 13.376000] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ 13.384000] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ 13.536000] PCI: Enabling device 0000:00:0e.0 (0000 -> 0002) [ 13.544000] rt2800pci 0000:00:0e.0: failed to load eeprom property [ 13.548000] ieee80211 phy0: rt2x00lib_request_eeprom_file: Info - Loading EEPROM data from 'RT2860.eeprom'. [ 13.556000] rt2800pci 0000:00:0e.0: Direct firmware load failed with error -2 [ 13.564000] rt2800pci 0000:00:0e.0: Falling back to user helper [ 13.728000] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3572, rev 0223 detected [ 13.736000] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0008 detected [ 26.976000] device eth0.1 entered promiscuous mode [ 26.980000] device eth0 entered promiscuous mode [ 26.992000] br-lan: port 1(eth0.1) entered forwarding state [ 26.996000] br-lan: port 1(eth0.1) entered forwarding state [ 29.000000] br-lan: port 1(eth0.1) entered forwarding state [ 31.232000] jffs2_scan_eraseblock(): End of filesystem marker found at 0x0 [ 31.248000] jffs2_build_filesystem(): unlocking the mtd device... done. [ 31.252000] jffs2_build_filesystem(): erasing all blocks after the end marker... done. [ 69.076000] jffs2: notice: (1110) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found. procd: - init complete - BusyBox v1.22.1 (2014-10-05 01:42:11 BST) built-in shell (ash) Enter 'help' for a list of built-in commands. _______ ________ __ | |.-----.-----.-----.| | | |.----.| |_ | - || _ | -__| || | | || _|| _| |_______|| __|_____|__|__||________||__| |____| |__| W I R E L E S S F R E E D O M ----------------------------------------------------- CHAOS CALMER (Bleeding Edge, r42701) ----------------------------------------------------- * 1 1/2 oz Gin Shake with a glassful * 1/4 oz Triple Sec of broken ice and pour * 3/4 oz Lime Juice unstrained into a goblet. * 1 1/2 oz Orange Juice * 1 tsp. Grenadine Syrup ----------------------------------------------------- root@OpenWrt:/#


for problems with wlan eeprom:

https://forum.openwrt.org/viewtopic.php?pid=223479#p223479

ubootwrite.py:

https://forum.openwrt.org/viewtopic.php?pid=183315#p183315

(don't forget to find and replace 8 spaces with 1 tab)

Architecture: MIPS
Target: Lantiq Xway Danube
Vendor: Arcadyan
Bootloader: brnboot
System-On-Chip:
CPU/Speed 333 Mhz
Flash-Chip:
Flash size: 8MB
RAM: 64MB
RAM Chip:
Wireless: RaLink RT3062F; 802.11b/g/n, 2 fixed internal antennas
Ethernet: Atheros AR8216; 4x LAN 100MBit/s
Internet: ADSL2+ (Annex A, B, J) (Firmware 30.05.225)
ADSL standard: G.992.1 (G.DMT), G.992.3 (ADSL2), G.992.5 (ADSL2+), G.992.3 (Annex J), G.992.5 (Annex J)
FXS: 2x POTS + 1x ISDN S0
ISDN: Infineon T-SMINTO PEF 80902, Cologne Chip XHFC-2SU ISDN 4511
USB: Yes 3 x 2.0
Serial: Yes 3.3V
JTAG: ?
Power: external PSU, 15V DC, max 1,6A (16W typical) polarity: -(+)

CPU

# cat /proc/cpuinfo 
system type             : Danube rev 1.5
machine                 : ARV752DPW22 - Arcor A803
processor               : 0
cpu model               : MIPS 24KEc V4.1
BogoMIPS                : 221.18
wait instruction        : yes
microsecond timers      : yes
tlb_entries             : 16
extra interrupt vector  : yes
hardware watchpoint     : yes, count: 4, address/irw mask: [0x0000, 0x07d0, 0x0b40, 0x0f50]
ASEs implemented        : mips16 dsp
shadow register sets    : 1
kscratch registers      : 0
core                    : 0
VCED exceptions         : not available
VCEI exceptions         : not available

PCI

# lspci
00:0e.0 Network controller: Ralink corp. Device 3592
00:0f.0 USB controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 62)
00:0f.1 USB controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 62)
00:0f.2 USB controller: VIA Technologies, Inc. USB 2.0 (rev 65)

USB

# lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

The external USB ports are connected to the USB 2.0 root hubs.
The port behind the small cover (meant for an UMTS stick) is connected to bus 001 the other two are connected to bus 002.

According to bug 18369, just the port behind the plastic cover is working in Chaos Calmer (and earlier?).

In OpenWrt 17.01.04 (LEDE) all three USB ports work fine.

LAN

eth0 is connected to port #0 of the Atheros AR8216 switch.
The switch has 6 ports. Port #1 is not connected.
The ports #2 to #5 are the ports LAN1 to LAN4 on the backside of the router.

The max MTU size of eth0 is 1500.

The switch can manage up to 16 VLANS.

# swconfig dev eth0 help
switch0: eth0(Atheros AR8216), ports: 6 (cpu @ 0), vlans: 16
     --switch
        Attribute 1 (int): enable_vlan (Enable VLAN mode)
        Attribute 2 (none): apply (Activate changes in the hardware)
        Attribute 3 (none): reset (Reset the switch)
     --vlan
        Attribute 1 (int): vid (VLAN ID (0-4094))
        Attribute 2 (ports): ports (VLAN port mapping)
     --port
        Attribute 1 (int): pvid (Primary VLAN ID)
        Attribute 2 (string): link (Get port link information)
# swconfig dev eth0 show
Global attributes:
        enable_vlan: 0
Port 0:
        pvid: 0
        link: port:0 link:up speed:100baseT full-duplex 
Port 1:
        pvid: 0
        link: port:1 link:down
Port 2:
        pvid: 0
        link: port:2 link:down
Port 3:
        pvid: 0
        link: port:3 link:down
Port 4:
        pvid: 0
        link: port:4 link:down
Port 5:
        pvid: 0
        link: port:5 link:down
ascii layout
                           _____________________________________________
                          /                 switch  AR8216              \
                         | port0   port1   port2   port3   port4   port5 |
                          \_____________________________________________/
                             |               |       |       |       |
WLAN---CPU---eth0-----------/              LAN 1   LAN 2   LAN 3   LAN 4

WLAN

ISDN

POTS

LEDs

SymbolColor
Power red + blue
WAN red + blue
VoIP red + blue
WLan red
UMTS USB
looks a bit like a mic symbol
red
Mail red
LAN1 green
LAN2 green
LAN3 green
LAN4 green
ISDN green
POTS 1 green
POTS 2 green

The following mapping is wrong [2012/10/11]:

[    0.748000] Registered led device: soc:blue:power
[    0.748000] Registered led device: soc:red:internet
[    0.748000] Registered led device: soc:red:power
[    0.748000] Registered led device: soc:red:wps
[    0.752000] Registered led device: soc:red:fxo
[    0.752000] Registered led device: soc:red:voice
[    0.752000] Registered led device: soc:green:usb
[    0.752000] Registered led device: soc:green:wifi
[    0.752000] Registered led device: soc:green:wifi1
[    0.752000] Registered led device: soc:blue:wifi
[    0.756000] Registered led device: soc:blue:wifi1
[    0.756000] Registered led device: soc:green:eth1
[    0.756000] Registered led device: soc:green:eth2
[    0.756000] Registered led device: soc:green:eth3
[    0.756000] Registered led device: soc:green:eth4

In OpenWrt 17.04.01 (LEDE), the LED mappings are correct.

Buttons

There are 4 buttons on the device.
One on the side was originally meant to switch the WLan on and off. Works with OpenWrt 17 (LEDE).
One on the back was meant as a reset button. It is labeled “RESTART”.
A protected one on the back side was meant to get back to the original configuration. Labeled “RESET”.
And then there is a 4th button above the DSL-port on the back side. It ls labeled with a ”?“. Not sure how to get it to work with OpenWrt 17 (LEDE).

Serial port

Board voltage is 3.3V so you will need a cheap usb to serial adapter which are already at 3.3v.

For compatible USB to serial cables see: port.serial.cables

Pinout:

4 GND
3 RX
2 TX
1 Vcc 3.3V

Parameters: 115200 Baud, 8N1

Note: This will void your warranty!

To get to the board you need:

  • unscrew 2 Phillips screws underneath the cover,
  • pull (strong!) the upper cover which is connected by click.

If you opened the box, please check electrolytic capacitor above CPU. It will be very good heaten all the time by the SoC. A defect leads to instabilities of the router. I had to change it and placed the new one on the other side of the PCB for longer life.

case

front back

PCB

WLan antennas

þ ROM VER: 1.0.3 CFG 01 Readà ROM VER: 1.0.3 CFG 01 Read EEPROMX X ======================================================================= Wireless ADSL Gateway DANUBE Loader V1.04.00 build Mar 19 2010 10:00:29 Arcadyan Technology Corporation ======================================================================= MXIC MX29LV640BB bottom boot 16-bit mode found Copying boot params.....DONE Press Space Bar 3 times to enter command mode ... Flash Checking Flash Checking - fw/ui... Passed. Image[1] at 0xb00b0000, len:1999780, type:0 Image[2] at 0xb0298400, len:968414, type:10 Image[3] at 0xb0384c00, len:272391, type:11 Image[4] at 0xb03c7800, len:259453, type:12 Image[5] at 0xb0407000, len:150508, type:60 Image[6] at 0xb042c000, len:452105, type:90 Firmware image at 0, ART image at -1 Run-up Normal Firmware... Unzipping firmware at 0x80002000 ... [ZIP 3] [ZIP 1] done Run-time code running ... In c_entry() function ... install_exception Co config = 80008483 [INIT] Interrupt ... DANUBE_BCU_CON:0x4009FFFF DANUBE_BCU_ECON:0x00000000 DANUBE_BCU_EADD:0x00000000 DANUBE_BCU_ECON:0x00000000 DANUBE_SLAVE_BCU_CON:0x4009FFFF DANUBE_SLAVE_BCU_ECON:0x00000000 DANUBE_SLAVE_BCU_EADD:0x00000000 DANUBE_SLAVE_BCU_EDAT:0x00000000##### _ftext = 0x80002000 ##### _fdata = 0x807989C0 ##### __bss_start = 0x808425E4 ##### end = 0x83467160 allocate_memory_after_end> len 695332, ptr 0x8346f160 ##### Backup Data from 0x807989C0 to 0x8346F160~0x83518D84 len 695332 ##### Backup Data completed ##### Backup Data verified [GPIO FLOW] SetGpio() Begin .. gptu: totally 6 16-bit timers/counters Init timer = 0 ************************ LED all ON ************************ LED all OFF [GPIO FLOW] SetGpio() End. [INIT] System Log Pool startup ... [INIT] MTinitialize .. [INIT] usrclk CPU Clock 333333334 Hz mips_counter_frequency:166666667 r4k_offset: 00028b0a(166666) init_US_counter : time1 = 260467 , time2 = 40260499, diff 40000032 US_counter = 48 cnt1 40987793 cnt2 40990037, diff 2244 Runtime code version: 30.05.211 System startup... [INIT] Memory COLOR 0, 5000000 bytes .. [INIT] Memory COLOR 1, 262144 bytes .. [INIT] Memory COLOR 2, 8516576 bytes .. danube pci startup... PCI clock 33.3MHz cut-off PCI internal clock DANUBE_GPIO_P1_ALTSEL0=65c7 DANUBE_GPIO_P1_ALTSEL1=0 DANUBE_GPIO_P1_DIR=c1fe [PCI-SCAN] get PCI dev-0e, func-00(0x70), class:0x0280, vid:0x1814, did:0x3592 [PCI-SCAN] get PCI dev-0f, func-00(0x78), class:0x0c03, vid:0x1106, did:0x3038 [PCI-SCAN] get PCI dev-0f, func-01(0x79), class:0x0c03, vid:0x1106, did:0x3038 [PCI-SCAN] get PCI dev-0f, func-02(0x7a), class:0x0c03, vid:0x1106, did:0x3104 Scanning bus 00 Found 00:70 [1814/3592] 000280 00 Found 00:78 [1106/3038] 000c03 00 Found 00:79 [1106/3038] 000c03 00 Found 00:7a [1106/3104] 000c03 00 Fixups for bus 00 Bus scan for 00 returning with max=00 [pcibios_init] PCI slot 0e, function 00... 35921814 04000007 02800000 00008000 18000000 00000000 00000000 00000000 00000000 00000000 00000000 35921814 00000000 00000040 00000000 04020100 [pcibios_init] PCI slot 0f, function 00... 30381106 02100000 0c030062 00801600 00000000 00000000 00000000 00000000 1ae00001 00000000 00000000 30381106 00000000 00000080 00000000 00000100 [pcibios_init] PCI slot 0f, function 01... 30381106 02100000 0c030062 00801600 00000000 00000000 00000000 00000000 1ae00021 00000000 00000000 30381106 00000000 00000080 00000000 00000200 [pcibios_init] PCI slot 0f, function 02... 31041106 02100000 0c032065 00801600 18010000 00000000 00000000 00000000 00000000 00000000 00000000 31041106 00000000 00000080 00000000 00000300 interrupt pin 2 not supported! wrong interrupt pin 2 interrupt pin 3 not supported! wrong interrupt pin 3 MXIC MX29LV640BB bottom boot 16-bit mode found Set flash memory layout to Boot Parameters found !!! Bootcode version: V1.04.00 Serial number: R0340020162 Hardware version: 01B 01.07.2011-10:36:41 [BUILD-PIN] PIN:R0340020162, MAC:88252C6207E0, Key:NULL [BUILD-WPA]: Key:6981010EE [BUILD-PIN]: PIN:23037601, len=8 MXIC MX29LV640BB bottom boot 16-bit mode found MXIC MX29LV640BB bottom boot 16-bit mode found read_config_from_flash> unknown config [CONFIG] read_config_from_flash ret=0 MXIC MX29LV640BB bottom boot 16-bit mode found nLen:98, Magic:0x33343536 my CFGVersionMagic = 33343536, old CFGVersionMagic on flash = 33343536 my CFGsize = 234464, my CFGDescSize = 38365 my Version = 30.05.211, Version on flash= 30.05.211 [CONFIG] old cfg version:[30.05.211], [3.0.5.2.11.100] source CFGsize = 234464, CFGDescSize = 38365 MXIC MX29LV640BB bottom boot 16-bit mode found OldCfgHexSize:12499 Unzipping from 816C2EB0 to 816B98C0 ... [ZIP 2] allocate_memory_after_end> len 81516, ptr 0x83518da0 done Uncompressed size = 38363 Tail1 : END_III_Config_t Size of Old CFG_DESC is :38363!!! useCfgDesc:1 MyCfgHexSize:12499 Unzipping from 816B67D4 to 816AD1E4 ... [ZIP 2] done Uncompressed size = 38363 My CFGDescSize:38365 useCfgDesc:1 Tail : END_III_Config_t useCfgDesc:3 Restore Config file from ver:30.05.211!!! [CONFIG] DS_Tail:[t_ARV752DPW] [CONFIG] load_config ret=1 [updateConfig] flash version:[30.05.211], [3.0.5.2.11.100] [updateConfig] code version:[30.05.211], [3.0.5.2.11.100] ##@@!! voip_generate_LACDN> accountidx=0, outboundProxy = 030.sip.arcor.de ##@@!! userId = 03080610473 ##@@!! local_area = 030 ##@@!! destination_number = 80610473 ##@@!! voip_generate_LACDN> accountidx=1, outboundProxy = ##@@!! userId = ##@@!! local_area = ##@@!! destination_number = ##@@!! voip_generate_LACDN> accountidx=2, outboundProxy = ##@@!! userId = ##@@!! local_area = ##@@!! destination_number = ##@@!! voip_generate_LACDN> accountidx=3, outboundProxy = ##@@!! userId = ##@@!! local_area = ##@@!! destination_number = ##@@!! voip_generate_LACDN> accountidx=4, outboundProxy = ##@@!! userId = ##@@!! local_area = ##@@!! destination_number = ##@@!! voip_generate_LACDN> accountidx=5, outboundProxy = ##@@!! userId = ##@@!! local_area = ##@@!! destination_number = ##@@!! voip_generate_LACDN> accountidx=6, outboundProxy = ##@@!! userId = ##@@!! local_area = ##@@!! destination_number = ##@@!! voip_generate_LACDN> accountidx=7, outboundProxy = ##@@!! userId = ##@@!! local_area = ##@@!! destination_number = ##@@!! voip_generate_LACDN> accountidx=8, outboundProxy = ##@@!! userId = ##@@!! local_area = ##@@!! destination_number = ##@@!! voip_generate_LACDN> accountidx=9, outboundProxy = ##@@!! userId = ##@@!! local_area = ##@@!! destination_number = !!! Invalid wireless channel range 0 ~ 0 !!! Use default value 1 ~ 13 update Ethernet Uplink related parameters default route: 0.0.0.0 [CheckUSBBackConf]Erase the garbage config in usbBackConf_s BufferInit: BUF_HDR_SZ=160 BUF_ALIGN_SZ=4 BUFFER_OFFSET=416 BUF_BUFSZ0=576 BUF_BUFSZ1=4352 NUM_OF_B0=0 NUM_OF_B1=2000 BUF_POOL0_SZ=0 BUF_POOL1_SZ=9024000 sizeof(BUFFER0)=736,sizeof(BUFFER1)=4512 *BUF0=0x82859be4 *BUF1=0x81fbe9c4 Altgn *BUF0=0x82859c00 *BUF1=0x81fbe9e0 End at BUF0:0x82859c00, BUF1:0x82859be0 BUF0[0]=0x82859c00 BUF1[0]=0x81fbe9e0 buffer0 pointer init OK! buffer1 pointer init OK! [qm_lnk_init] CLOCKHZ=1000 ... [qm_lnk_init] add if 3 into QM link 0 [qm_lnk_init] add if 4 into QM link 0 [qm_cbq_enable] no QM attached [qm_cbq_detach] no QM is attached at link 0 pkt_avgsz=250, pkt_maxsz=1600, mtu=1600 f=1054199/100000, ns_per_byte=758869/1000 ptime=2000000000/1000, cptime=0/1000, offtime=0/1000 New cls: id=0, bw=758 ns/byte, maxd=0 ms, maxb=32, minb=2, avgpktsz=250, maxpktsz=1600, offtime=0, parent=0, borrow=0 pri=0, maxidle=31, minidle=-2428, maxq=96, clsfg=17 pkt_avgsz=1600, pkt_maxsz=1600, mtu=1600 f=10542/100000, ns_per_byte=75886927/1000 ptime=18446744073709551615/1000, cptime=18446744073709551615/1000, offtime=18446744073709551615/1000 New cls: id=1, bw=75886 ns/byte, maxd=0 ms, maxb=16, minb=1, avgpktsz=1600, maxpktsz=1600, offtime=108619, parent=81203e50, borrow=81203e50 pri=5, maxidle=28942, minidle=-242838, maxq=48, clsfg=21 qm_cbq_attach(): cbqp->cbq_res=104 pkt_avgsz=250, pkt_maxsz=1600, mtu=1600 f=1043657/100000, ns_per_byte=766534/1000 ptime=2000000000/1000, cptime=0/1000, offtime=0/1000 New cls: id=2, bw=766 ns/byte, maxd=0 ms, maxb=32, minb=4, avgpktsz=250, maxpktsz=1600, offtime=0, parent=81203e50, borrow=81203e50 pri=5, maxidle=31, minidle=-2452, maxq=48, clsfg=21 pkt_avgsz=250, pkt_maxsz=1600, mtu=1600 f=1/100000, ns_per_byte=4294967295/1000 [qm_cbq_newcls] warning: bandwidth of the class may be low enough to cause INT overflow ptime=2000000000/1000, cptime=18446744073709551615/1000, offtime=18446744073709551615/1000 New cls: id=3, bw=1342177 ns/byte, maxd=0 ms, maxb=16, minb=4, avgpktsz=250, maxpktsz=1600, offtime=1366279, parent=81202850, borrow=81202850 pri=6, maxidle=0, minidle=-4294966, maxq=48, clsfg=20 pkt_avgsz=250, pkt_maxsz=1600, mtu=1600 f=1/100000, ns_per_byte=4294967295/1000 [qm_cbq_newcls] warning: bandwidth of the class may be low enough to cause INT overflow ptime=2000000000/1000, cptime=18446744073709551615/1000, offtime=18446744073709551615/1000 New cls: id=4, bw=1342177 ns/byte, maxd=0 ms, maxb=16, minb=4, avgpktsz=250, maxpktsz=1600, offtime=1366279, parent=81202850, borrow=81202850 pri=0, maxidle=0, minidle=-4294966, maxq=96, clsfg=21 pkt_avgsz=250, pkt_maxsz=1600, mtu=1600 f=1/100000, ns_per_byte=4294967295/1000 [qm_cbq_newcls] warning: bandwidth of the class may be low enough to cause INT overflow ptime=2000000000/1000, cptime=18446744073709551615/1000, offtime=18446744073709551615/1000 New cls: id=5, bw=1342177 ns/byte, maxd=0 ms, maxb=16, minb=4, avgpktsz=250, maxpktsz=1600, offtime=1366279, parent=81202850, borrow=81202850 pri=1, maxidle=0, minidle=-4294966, maxq=48, clsfg=23 pkt_avgsz=250, pkt_maxsz=1600, mtu=1600 f=1/100000, ns_per_byte=4294967295/1000 [qm_cbq_newcls] warning: bandwidth of the class may be low enough to cause INT overflow ptime=2000000000/1000, cptime=18446744073709551615/1000, offtime=18446744073709551615/1000 New cls: id=6, bw=1342177 ns/byte, maxd=0 ms, maxb=16, minb=4, avgpktsz=250, maxpktsz=1600, offtime=1366279, parent=81202850, borrow=81202850 pri=2, maxidle=0, minidle=-4294966, maxq=48, clsfg=23 pkt_avgsz=250, pkt_maxsz=1600, mtu=1600 f=1/100000, ns_per_byte=4294967295/1000 [qm_cbq_newcls] warning: bandwidth of the class may be low enough to cause INT overflow ptime=2000000000/1000, cptime=18446744073709551615/1000, offtime=18446744073709551615/1000 New cls: id=7, bw=1342177 ns/byte, maxd=0 ms, maxb=16, minb=4, avgpktsz=250, maxpktsz=1600, offtime=1366279, parent=81202850, borrow=81202850 pri=3, maxidle=0, minidle=-4294966, maxq=48, clsfg=23 pkt_avgsz=250, pkt_maxsz=1600, mtu=1600 f=1/100000, ns_per_byte=4294967295/1000 [qm_cbq_newcls] warning: bandwidth of the class may be low enough to cause INT overflow ptime=2000000000/1000, cptime=18446744073709551615/1000, offtime=18446744073709551615/1000 New cls: id=8, bw=1342177 ns/byte, maxd=0 ms, maxb=16, minb=4, avgpktsz=250, maxpktsz=1600, offtime=1366279, parent=81202850, borrow=81202850 pri=4, maxidle=0, minidle=-4294966, maxq=48, clsfg=23 pkt_avgsz=250, pkt_maxsz=1600, mtu=1600 f=1043657/100000, ns_per_byte=766534/1000 ptime=2000000000/1000, cptime=0/1000, offtime=0/1000 New cls: id=9, bw=766 ns/byte, maxd=0 ms, maxb=16, minb=4, avgpktsz=250, maxpktsz=1600, offtime=0, parent=81202850, borrow=81202850 pri=6, maxidle=31, minidle=-2452, maxq=48, clsfg=20 CLOCKHZ=1000 gConfig.Interface[0].IP_Addr = 127.0.0.1 gConfig.Interface[0].Subnet_Mask = 255.255.255.255 ***** [iput_IpLinkUp] ifno=0, link_type:12 TRAP(linkUp) : send ok! Interface 0 ip = 127.0.0.1 gConfig.Interface[1].IP_Addr = 192.168.2.1 gConfig.Interface[1].Subnet_Mask = 255.255.255.0 ifno=1, vlan=0, vid=1, port_mask=0xf DANUBE_RCU_RST_STAT Watchdog 0 reset cause flag 0 Watchdog 1 reset cause flag 0 DMA g_desc_list=0x816A7FA0 danube_sw_chip_init: in MII mode Probe switch chip....RTL8306 ver.series 0 ver.chipid 590 ver.revision 0 Atheros8216 detected chip_id = 2 init switch chip deriverdanube_sw_chip_init: switch_chip= 2 init QoS for switch enter athr_VLANInit [VLAN] port: 0x000f, ifCount=1 ------->add port 2 to vlan 1 ------->add port 3 to vlan 1 ------->add port 4 to vlan 1 ------->add port 5 to vlan 1 mac_0_init: interface 1 registered to VLAN 1, port_mask=f MAC Address: 88:25:2c:62:07:e0 ***** [iput_IpLinkUp] ifno=1, link_type:12 TRAP(linkUp) : send ok! Interface 1 ip = 192.168.2.1 gConfig.Interface[2].IP_Addr = 0.0.0.0 gConfig.Interface[2].Subnet_Mask = 0.0.0.0 [HWLAN] ifno=2 irno=7 port=0x00000000 pci_find_slot bus 0 devfn 70 dev->bus->number 0 dev->devfn 70 pci_find_slot bus 0 devfn 70 dev->bus->number 0 dev->devfn 70 pci_find_slot bus 0 devfn 70 dev->bus->number 0 dev->devfn 70 pci_find_slot bus 0 devfn 70 dev->bus->number 0 dev->devfn 70 pci_find_slot bus 0 devfn 70 dev->bus->number 0 dev->devfn 70 ===> rt2860_probe PCI: Enabling device 00:0e.0 (0007 -> 0006) pcibios_set_master> lat=0x80 --> RTMPAllocAdapterBlock RTMP_ADAPTER_mem : 80b009c4, sizeof(RTMP_ADAPTER) 415336 === pAd = FFFFFFFF80B009C4, size = 415336 === <-- RTMPAllocAdapterBlock, Status=0 pAd->CSRBaseAddress =0xffffffffb8000000 AP Driver version-2.2.5.0 NVM is EEPROM Allocate a net device with private data size=0! RtmpOSNetDevAttach()---> <---RtmpOSNetDevAttach(), ret=0 <=== rt2860_probe ***** [iput_IpLinkUp] ifno=2, link_type:12 TRAP(linkUp) : send ok! Interface 2 ip = 192.168.2.1 gConfig.Interface[3].IP_Addr = 0.0.0.0 gConfig.Interface[3].Subnet_Mask = 0.0.0.0 ppe: ATM init succeeded (firmware version 1.1.0.2.1.13) ATM_UBR Init SAR ifno:3 g_atm_vcc[0] CONN:1 VPI/VCI:1/32 MAC Address: 88:25:2c:62:07:e1 Interface 3 ip = 0.0.0.0 gConfig.Interface[4].IP_Addr = 0.0.0.0 gConfig.Interface[4].Subnet_Mask = 0.0.0.0 ATM_CBR Init SAR ifno:4 g_atm_vcc[1] CONN:2 VPI/VCI:2/32 MAC Address: 88:25:2c:62:07:e2 Interface 4 ip = 0.0.0.0 gConfig.Interface[11].IP_Addr = 0.0.0.0 gConfig.Interface[11].Subnet_Mask = 0.0.0.0 IFLNK_PPPOE init : (Linkp)ifno = 11 idx = 2 IFLNK_PPPOE init : (Driverp)ifno = 11 idx = 3 pppInit> set (PPPShutdownRequest[ifno] = 0) [pppoe_init] Interface 11 ip = 0.0.0.0 gConfig.Interface[12].IP_Addr = 0.0.0.0 gConfig.Interface[12].Subnet_Mask = 0.0.0.0 IFLNK_PPPOE init : (Linkp)ifno = 12 idx = 2 IFLNK_PPPOE init : (Driverp)ifno = 12 idx = 3 pppInit> set (PPPShutdownRequest[ifno] = 0) [pppoe_init] [PPPoE]gInitOk==1 , So Not Do pppoe_init Interface 12 ip = 0.0.0.0 gConfig.Interface[20].IP_Addr = 0.0.0.0 gConfig.Interface[20].Subnet_Mask = 0.0.0.0 [HWLAN] ifno=20 irno=7 port=0x00000000 ***** [iput_IpLinkUp] ifno=20, link_type:12 TRAP(linkUp) : send ok! Interface 20 ip = 192.168.2.1 gConfig.Interface[21].IP_Addr = 0.0.0.0 gConfig.Interface[21].Subnet_Mask = 0.0.0.0 [HWLAN] ifno=21 irno=7 port=0x00000000 ***** [iput_IpLinkUp] ifno=21, link_type:12 TRAP(linkUp) : send ok! Interface 21 ip = 192.168.2.1 gConfig.Interface[22].IP_Addr = 0.0.0.0 gConfig.Interface[22].Subnet_Mask = 0.0.0.0 [HWLAN] ifno=22 irno=7 port=0x00000000 ***** [iput_IpLinkUp] ifno=22, link_type:12 TRAP(linkUp) : send ok! Interface 22 ip = 192.168.2.1 gConfig.Interface[23].IP_Addr = 0.0.0.0 gConfig.Interface[23].Subnet_Mask = 0.0.0.0 [HWLAN] ifno=23 irno=7 port=0x00000000 ***** [iput_IpLinkUp] ifno=23, link_type:12 TRAP(linkUp) : send ok! Interface 23 ip = 192.168.2.1 gConfig.Interface[25].IP_Addr = 0.0.0.0 gConfig.Interface[25].Subnet_Mask = 0.0.0.0 pppInit> set (PPPShutdownRequest[ifno] = 0) if_umts_init() WAN interface 25, UMTS-COM1: baudrate=115200 if_umts_init() MAC:88:25:2C:62:07:E1 umtsReceQueueInit() Host controller disable, bypass queue init... RUNTASK id=2 umtsReceQueueTsk... RUNTASK id=3 umtsReceTsk... RUNTASK id=4 umtsWritTsk... Interface 25 ip = 0.0.0.0 ruleCheck()> Group: 0, Error: Useless rule index will be truncated, from idx:1 ruleCheck()> Group: 1, Error: Useless rule index will be truncated, from idx:27 ruleCheck()> Group: 2, Error: Useless rule index will be truncated, from idx:0 CBAC rule format check succeed !! reqCBACBuf()> init match pool, Have: 1000 Memory Address: 0xffffffff81166c90 ~ 0xffffffff8116da0c reqCBACBuf()> init timeGap pool, Have: 10000 Memory Address: 0xffffffff8116da0c ~ 0xffffffff8119e760 reqCBACBuf()> init sameHost pool, Have: 2000 Memory Address: 0xffffffff8119e760 ~ 0xffffffff811ae180 CBAC rule pool initialized !! [init_if] local_if_mask=0xf80007 [init_if] local_wiredif_mask=0x80002 [init_if] local_wirelessif_mask=0xf00004 [init_if] localorVPN_if_mask=0xf80007 Init NAT data structure RUNTASK id=5 if_task if0... RUNTASK id=6 if_task if1... RUNTASK id=7 if_task if2... RUNTASK id=8 if_task if3... RUNTASK id=9 if_task if4... RUNTASK id=10 if_task if20... RUNTASK id=11 if_task if21... RUNTASK id=12 if_task if22... RUNTASK id=13 if_task if23... RUNTASK id=14 if_task if25... RUNTASK id=15 timer_task... RUNTASK id=16 conn_mgr... RUNTASK id=17 main_8021x... Build Day = Jun 30 2011 RUNTASK id=18 saveRandomSeedTask... [VFS_init] Start... [VFS_init] vfsState:1 vfs_codepage_init() TimeZone:23, vfs_cp_idx:23, vfs_cp_ID:5 fat_codePageInit() TimeZone:23, codePage:CP850, cPID:5, cpSize:256, toUpSize:30 ntfs_codepage timezone:23, lan= 0 ntfs_codePageInit() TimeZone:23, codePage:5 ==[vfs_register_filesystem]============================ list size:7, Method:0x807ba324 1) Type:0x01, Name:FAT12 2) Type:0x04, Name:FAT16 3) Type:0x06, Name:FAT16 4) Type:0x0b, Name:FAT32 5) Type:0x0c, Name:FAT32 6) Type:0x0e, Name:FAT16 7) Type:0x81, Name:Minix ================================================================= [VFS_init] FAT init OK ==[vfs_register_filesystem]============================ list size:1, Method:0x807baee0 1) Type:0x07, Name:NTFS/HPFS ================================================================= [VFS_init] NTFS init OK [VFS_init]-[vfs_mount_root] Start... [VFS_init]-[vfs_mount_root] Init <root> OK... [VFS_init]-[vfs_mount_root] Init <dev> OK... [VFS_init]-[vfs_mount_root] Init <mnt> OK... [0-START]========================================= Node 000, DIR, MountFlag:0x00 [0-END]=========================================== [1-START]========================================= Node 001, DIR, MountFlag:0x00 [1-END]=========================================== [1-START]========================================= Node 002, DIR, MountFlag:0x00 [1-END]=========================================== dump_inode() freeCnt:77, usedCnt:3 [USB-INIT] main() ====== call UsbSysInit() ... [USB] UsbSPoolArray: 80C0F928H ~ 80D87D27, UsbSPool:80C0F980 [USB] UsbMPoolArray: 80D87D28H ~ 80E76127, UsbMPool:80D87D80 [USB] UsbLPoolArray: 80E76128H ~ 80ECE1A7, UsbLPool:80E76180 [USB] Small Un-Cached Memory(8025): 80C0F980 ~ 80D87C3F [USB] Medium Un-Cached Memory(230): 80D87D80 ~ 80E7507F [USB] Large Un-Cached Memory(21): 80E76180 ~ 80ECA17F 35921814 04000006 02800000 00008000 18000000 00000000 00000000 00000000 00000000 00000000 00000000 35921814 00000000 00000040 00000000 04020116 00030001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 30381106 02100000 0c030062 00801600 00000000 00000000 00000000 00000000 1ae00001 00000000 00000000 30381106 00000000 00000080 00000000 00000116 00031040 00000000 00000800 00000000 00000000 00000000 00000000 00000000 00000010 00000000 00000000 00000000 00000000 00000000 00000000 00000000 7e0a0001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00002000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 03000000 00000000 00000000 pci_find_slot bus 0 devfn 78 dev->bus->number 0 dev->devfn 70 dev->bus->number 0 dev->devfn 78 setUsbPciInfo() cpu_to_usb_addr_shift[0]:0x60000000, usb_to_cpu_addr_shift[0]:0xa0000000 usb_pci_probe() Found VIA UHCI-1 device in PCI slot 0x78, function 0, baseAddr:0xbae00000 30381106 02100000 0c030062 00801600 00000000 00000000 00000000 00000000 1ae00021 00000000 00000000 30381106 00000000 00000080 00000000 00000200 00031040 00000000 00000800 00000000 00000000 00000000 00000000 00000000 00000010 00000000 00000000 00000000 00000000 00000000 00000000 00000000 7e0a0001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00002000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 03000000 00000000 00000000 pci_find_slot bus 0 devfn 79 dev->bus->number 0 dev->devfn 70 dev->bus->number 0 dev->devfn 78 dev->bus->number 0 dev->devfn 79 setUsbPciInfo() cpu_to_usb_addr_shift[1]:0x60000000, usb_to_cpu_addr_shift[1]:0xa0000000 usb_pci_probe() Found VIA UHCI-2 device in PCI slot 0x79, function 1, baseAddr:0xbae00020 31041106 02100000 0c032065 00801600 18010000 00000000 00000000 00000000 00000000 00000000 00000000 31041106 00000000 00000080 00000000 00000300 000b0000 00000000 090020a0 ffff0000 80005a00 00000000 88880b04 00000033 00012020 00000000 00000001 80000000 00000000 00000000 00000000 00000000 7e0a0001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 03000000 00000000 00000000 pci_find_slot bus 0 devfn 7a dev->bus->number 0 dev->devfn 70 dev->bus->number 0 dev->devfn 78 dev->bus->number 0 dev->devfn 79 dev->bus->number 0 dev->devfn 7a setUsbPciInfo() cpu_to_usb_addr_shift[2]:0x60000000, usb_to_cpu_addr_shift[2]:0xa0000000 usb_pci_probe() Found VIA EHCI device in PCI slot 0x7a, function 2, baseAddr:0xb8010000 setUsbPciInfo() cpu_to_usb_addr_shift[3]:0x00000000, usb_to_cpu_addr_shift[3]:0x00000000 usb_pci_probe() Found Synopsis OTG, baseAddr:0xbe101000 usb_power_set() isOn:1 usb_power_set() Previous power off:0, current time:0 usb_power_set(1) min time delay:6000, current delay:0 usb_power_set() Need delay:6500 ********** usb_power_set(2) min time delay:6000, current delay:0 usb_hcd_init() func(0):1 localhc_init() install uhci driver(self->driver = 0x8081EDB0, uhci_driver=0x8081EDB0). usb_pci_attach_device() Enable PCI device...PCI: Enabling device 00:0f.0 (0000 -> 0001) OK usb_pci_attach_device() Set latency timer...OK usb_pci_attach_device() Set bus master...PCI: Enabling bus mastering for device 00:0f.0 pcibios_set_master> lat=0x16 OK usb_pci_attach_device() Set VIA-UHCI special parameters...OK usb_pci_attach_device(UHCI) Attach succ... 30381106 02100005 0c030062 00801600 00000000 00000000 00000000 00000000 1ae00001 00000000 00000000 30381106 00000000 00000080 00000000 00000116 00030040 00000000 00000800 00000000 00000000 00000000 00000000 00000000 00000010 00000000 00000000 00000000 00000000 00000000 00000000 00000000 7e0a0001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00002000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 03000000 00000000 00000000 usb_hcd_init() func(1):1 localhc_init() install uhci driver(self->driver = 0x8081EDB0, uhci_driver=0x8081EDB0). usb_pci_attach_device() Enable PCI device...PCI: Enabling device 00:0f.1 (0000 -> 0001) OK usb_pci_attach_device() Set latency timer...OK usb_pci_attach_device() Set bus master...PCI: Enabling bus mastering for device 00:0f.1 pcibios_set_master> lat=0x16 OK usb_pci_attach_device() Set VIA-UHCI special parameters...OK usb_pci_attach_device(UHCI) Attach succ... 30381106 02100005 0c030062 00801600 00000000 00000000 00000000 00000000 1ae00021 00000000 00000000 30381106 00000000 00000080 00000000 00000200 00030040 00000000 00000800 00000000 00000000 00000000 00000000 00000000 00000010 00000000 00000000 00000000 00000000 00000000 00000000 00000000 7e0a0001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00002000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 03000000 00000000 00000000 usb_hcd_init() func(2):1 localhc_init() install ehci driver(self->driver = 0x8081ED84, ehci_driver=0x8081ED84). usb_pci_attach_device() Enable PCI device...PCI: Enabling device 00:0f.2 (0000 -> 0002) OK usb_pci_attach_device() Set latency timer...OK usb_pci_attach_device() Set bus master...PCI: Enabling bus mastering for device 00:0f.2 pcibios_set_master> lat=0x16 OK usb_pci_attach_device() Set write invalidate...OK usb_pci_attach_device() Set VIA-EHCI special parameters...OK usb_pci_attach_device(EHCI) Attach succ... 31041106 02100016 0c032065 00801600 18010000 00000000 00000000 00000000 00000000 00000000 00000000 31041106 00000000 00000080 00000000 00000300 000b0000 00000000 290020a0 ffff0000 80005a00 00000000 88880b04 00000033 00012020 00000000 00000001 c0000000 00000000 00000000 00000000 00000000 7e0a0001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 03000000 00000000 00000000 usb_hcd_init() func(3):1 localhc_init() install otg driver(self->driver = 0x8081ED58, otg_driver=0x8081ED58). usb_hcd_init(): succ. [USB-INIT] main() ====== after call UsbSysInit() InitCommSys: RESOURCE_BASE = 113, NUMRES = 640 InitCommSys: EVENT_BASE = 239, NUMEVT = 768 InitCommSys: MAILBOX_BASE = 6, NUMMBX = 64 RUNTASK id=20 period_task... ========== ADSL Modem initialization OK ! ====== [Dhcpd_Start] RUNTASK id=21 dhcp_daemon... main()> usb:1, ftp:0 found signature: 78h 56h 34h 12h ulImgLens=1999780, LENGTH[3]-12=7602164, type:0 length checking OK [0]2 find End at 0xFFFFFFFFB0298000 len=1999780, type=0 found signature: 78h 56h 34h 12h ulImgLens=968414, LENGTH[3]-12=7602164, type:10 length checking OK [1]2 find End at 0xFFFFFFFFB0384800 len=968414, type=10 found signature: 78h 56h 34h 12h ulImgLens=272391, LENGTH[3]-12=7602164, type:11 length checking OK [2]2 find End at 0xFFFFFFFFB03C7400 len=272391, type=11 found signature: 78h 56h 34h 12h ulImgLens=259453, LENGTH[3]-12=7602164, type:12 length checking OK [3]2 find End at 0xFFFFFFFFB0406C00 len=259453, type=12 ---[ LZMA head start in 0xFFFFFFFFB0407000 ]--- found signature: 78h 56h 34h 12h ulImgLens=150508, LENGTH[3]-12=7602164, type:60 length checking OK [4]2 find End at 0xFFFFFFFFB042BC00 len=150508, type=60 ---[ LZMA head start in 0xFFFFFFFFB042C000 ]--- found signature: 78h 56h 34h 12h ulImgLens=452105, LENGTH[3]-12=7602164, type:90 length checking OK [5]2 find End at 0xFFFFFFFFB049A400 len=452105, type=90 Image[1] at 0xB00B0000, len=1999780, type=0 Image[2] at 0xB0298400, len=968414, type=10 Image[3] at 0xB0384C00, len=272391, type=11 Image[4] at 0xB03C7800, len=259453, type=12 Image[5] at 0xB0407000, len=150508, type=60 Image[6] at 0xB042C000, len=452105, type=90 [get_web_address] Web-0: addr:0xb0298400, len:968414, type:10 [get_web_address] Web-1: addr:0xb0384c00, len:272391, type:11 [get_web_address] Web-2: addr:0xb03c7800, len:259453, type:12 getUnZipFileLength: [ZIP 3] getUnZipFileLength: [ZIP 1] Unzipping from B0298400 to 83D88800 ... [ZIP 3] [ZIP 2] done Uncompressed size = 1471846 getUnZipFileLength: [ZIP 3] getUnZipFileLength: [ZIP 1] [absread] flash_init: pfs image found at ffffffffb0384c00, size is 1507881 bytes Unzipping from B0384C00 to 83C18200 ... [ZIP 3] [ZIP 2] done Uncompressed size = 1507881 RUNTASK httpd... RUNTASK id=24 SSLClient ... g_Client_Cert_Array=0x81f28800 RUNTASK id=25 dnsproxy... RUNTASK id=26 snmp_task... RUNTASK id=27 padmin_task_entry... RUNTASK id=28 dhcpd_mgmt_task... runDDNS(0) ddns_enable:0, DDNSTaskRun:0, needReRunDDNS:1 runDDNS(1) ddns_enable:0, DDNSTaskRun:0, needReRunDDNS:1 UPnP task run-up... upnpFunc:1 UPNP Device initialize success! slot=29 update_device_OUI: OUI_str=88252C [0] Allocate mailbox 6 [0] Allocate mailbox 7 FirstUseDate:2011-07-20T20:21:08 RUNTASK id=32 push_daemon... RUNTASK id=33 wscmain... RUNTASK id=34 wsc_Send_eap_packet... RUNTASK id=35 wsc_Send_UPNP_packet... RUNTASK id=36 WSC_WaitUserAction_Task... UART RX Output rzMemory start: 0x81DC8FF0, end 0x81F287F0, size 1439744[0] Allocate resource 113, FreeResource = 1 fpiclk=83333333, rmc=16, fpiclk/rmc=5208333 ifx_ssc_clock = 5208333, baud=2000000 ifx_ssc_set_baud: br = 0 call ifx_ssc_init() = 0 call ifx_ssc_open() = 0 SPI_Init! RUNTASK id=39 apAppInit... RUNTASK id=41 isdn_main... RUNTASK id=42 pppFailBackPeriodCheckTask()... RUNTASK id=43 detect_acs_connect_task... RUNTASK id=44 pid_cc_err_stats_task... start http redir. RUNTASK id=45 hr_daemon... RUNTASK id=46 hr_misc_daemon... RUNTASK id=47 ncidd_main..., in run_project_task() Starting Multitask... phy_change_check... pass enter adsl_disable_annex_j_b43_carrier_set() Danube MEI version:1.00.07 Image[1] at 0xB00B0000, len=1999780, type=0 Image[2] at 0xB0298400, len=968414, type=10 Image[3] at 0xB0384C00, len=272391, type=11 Image[4] at 0xB03C7800, len=259453, type=12 Image[5] at 0xB0407000, len=150508, type=60 Image[6] at 0xB042C000, len=452105, type=90 [get_datapump_address] Datapump for Annex A0:-1, B0:4, C0:-1 [get_datapump_address] Datapump for Annex A1:-1, B1:-1, C1:-1 [get_datapump_address] r_img=4, t_img=6 Unzip DSP firmware ... Unzipping from B0407000 to 81053400 ... [ZIP 2] xSpeedtsk priority is 80 done Uncompressed size = 302464 ifno2dot1x_if[2]=0 dot1x_wireless_if_mask=0x4 fwrite_specialConfigPara() Save random seed:1333391205 MXIC MX29LV640BB bottom boot 16-bit mode found init psock cnt=1 XHFC r16(CHIP ID)= 0x61 erase from location b00a0000. done write length 0x5b0 0update_img_hdr = FFFFFFFFA1053400 idx=0 mem_ptr=0xA1053400 size=65536 idx=1 mem_ptr=0xA1063400 size=65536 idx=2 mem_ptr=0xA1073400 size=65536 idx=3 mem_ptr=0xA1083400 size=65536 idx=4 mem_ptr=0xA1093400 size=40320 RUNTASK id=51 Atheros_NetTask .Got MODEM_READY_MSG .. <-- RTMPAllocTxRxRingMemory, Status=0 Channel=0 ADSL Firmware: 2.1.5.2.1.2 [Annex B:0x4208 0x0] rtmp_read_wds_from_file() is called !!! rtmp_read_wds_from_file : WDS disabled Magic No. in Boot Param check OK!!! sould check E2PROM MAC ????????????????? NICReadEEPROMParameters 882 NICReadEEPROMParameters 945 NICReadEEPROMParameters 970 Change w14 from 9 to 1 Change w14 from 99 to 91 Change w14 from a9 to a1 !! arcISDNIrqEnable: chipId=0 !! arcISDNIrqEnable: chipId=0 [41] Allocate resource 114, FreeResource = 2 [41] Allocate resource 115, FreeResource = 3 [41] Allocate resource 116, FreeResource = 4 [41] Allocate resource 117, FreeResource = 5 sizeof(struct ap_cm)=256 RUNTSK ISDN_ApCM 18 ### CAPI 2.0 / 2.024 ### Nbr. of ctrls = 2 ctrl 1: nbr. of B-chnls=2, global opts=0x451 B1 prots=0x3, B2 prots=0x2, B3 prots=0x1 ctrl 2: nbr. of B-chnls=2, global opts=0x451 B1 prots=0x3, B2 prots=0x2, B3 prots=0x1 >>> CAPI_REGISTER (2048/1/8/2048), applId=1 ce_l4_proc: 7h cause ah 1h >>> CAPI_REGISTER (2048/1/8/2048), applId=2 >>> CAPI_REGISTER (2048/1/8/2048), applId=3 >>> CAPI_REGISTER (2048/1/8/2048), applId=4 >>> CAPI_REGISTER (2048/1/8/2048), applId=5 ce_l4_proc: 7h cause ah 2h [24] SSLClient> SSLClient() run [24] sslc_conf_init> ssl client info: [24] PrivateKey= [24] MyCertificate= [24] CaCertificate= [24] SSL_method=31 [24] verify_mode=1 [24] cipher_suites=ADH:SHA1:HIGH:EXP [24] tftp_server_ip=140.92.61.131 [24] fn_myCerttificate=ServCert.pem [24] fn_privateKey=PrivKey.pem [24] fn_caCertificate=CaCert.pem [24] sslc_conf_init> ssl client info end: PKCS12_PBE_add> PKCS12_PBE_add> support RC4 PKCS12_PBE_add> support DES PKCS12_PBE_add> support RC2 [24] sslc_conf_init> pCtx=0x81da9a7c in ssld_conf_init [24] sslc_ctx_reset_cert> re-LoadCACertificate( 3rdCA ) ok!! [24] sslc_ctx_reset_cert> re-LoadCACertificate( 2ndCA ) ok!! [24] sslc_ctx_reset_cert> re-LoadCACertificate( 1stCA ) ok!!sslc_ctx_reset_cert> this is pkcs12 type certificate [24] sslc_ctx_reset_cert : re-LoadServerCertAndKey() ok!! [24] sslc_conf_init> sslc_conf_init() ok [24] SSLClient> want to bind socket for client application! TRAP(coldStart) : send ok! [USBLPT] Printer Initialize Fail : Plug Out !! padmin_task_entry() task running ********** upnp_main() Unsupportted UPnP root device[0]: UPnP upnp_main(1-0) Run-up UPnP device IGD... push_daemon> enter. (0, 0) pd_get_server_socket> listen_port=54999 ********************************************* ****Wi-Fi Simple Config Application***** Version: Build 2.02.2.DTM1.1, Jun 14 2011 15:01:58 ********************************************* hr_daemon> port 32769. hr_daemon> ssl port 32770. Init_SSLServer> input listen_protocol=6, nListenPort=32770 [ncidd]: [ncidd]: <Network Port: 3333> [ncidd]: lan ip=0xffffffffc0a80201 [ncidd]: ncidd_nwsk() sndlog_sock = 49 [HWLAN] [53] rapi_tmr_task running uhci_pci_attach: begin ... ptp Daemon task running TR069: The connection request port is 62718 lpd Daemon task running [USB ROOTHUB_LOOP] RUNTASK id=57 lpd_main ... [USB] lpd_init() End. [45] ssld_conf_init> ssl server info: [45] PrivateKey= [45] MyCertificate= [45] CaCertificate= [45] SSL_method=31 [45] verify_mode=0 [45] cipher_suites=ADH:SHA1:HIGH:EXP [45] tftp_server_ip=140.92.61.131 [45] fn_myCerttificate=ServCert.pem [45] fn_privateKey=PrivKey.pem [45] fn_caCertificate=CaCert.pem [45] ssld_conf_init> ssl server info end: [45] pCtx=0x81d94f04 in ssld_conf_init ssld_ctx_reset_cert> this is pkcs12 type certificate [45] ssld_ctx_reset_cert : re-LoadServerCertAndKey() ok!! [45] ssld_ctx_reset_cert> re-LoadCACertificate( 1stCA ) ok!![45] ssld_conf_init> ssld_conf_init() ok printer schedule task running upnp_Init(0) upnpGlobalInit[1]:0 SSDP Initialization completed... GenaInit : event_hook is NULL!! >> Parse Service 'urn:schemas-microsoft-com:service:OSInfo:1' : TRUE >> Parse Service 'urn:schemas-upnp-org:service:Layer3Forwarding:1' : TRUE >> Parse Service 'urn:schemas-upnp-org:service:WANCommonInterfaceConfig:1' : TRUE >> Parse Service 'urn:schemas-upnp-org:service:WANEthernetLinkConfig:1' : TRUE >> Parse Service 'urn:schemas-upnp-org:service:WANPPPConnection:1' : TRUE >> Parse Service 'urn:schemas-upnp-org:service:WANIPConnection:1' : TRUE >> Parse Device 'urn:schemas-upnp-org:device:WANConnectionDevice:1' : TRUE >> Parse Device 'urn:schemas-upnp-org:device:WANDevice:1' : TRUE >> Parse Device 'urn:schemas-upnp-org:device:InternetGatewayDevice:1' : TRUE ********** upnp_main1() Record pDevRoot[1]:81d7e3e8 >>>> UPNP init IGD device successfully ... ********** upnp_main() Unsupportted UPnP root device[2]: TR64 upnp_main(3-0) Run-up UPnP device WPS-WCN... upnp_Init(0) upnpGlobalInit[3]:0 >> Parse Service 'urn:schemas-wifialliance-org:service:WFAWLANConfig:1' : TRUE >> Parse Device 'urn:schemas-wifialliance-org:device:WFADevice:1' : TRUE ********** upnp_main1() Record pDevRoot[3]:81d53fb0 >>>> UPNP init WPS-WCN device successfully ... ********** upnp_main() Unsupportted UPnP root device[4]: AV Media Server ********** upnp_main() Unsupportted UPnP root device[5]: AV Media Renderer ********** upnp_main() Unsupportted UPnP root device[6]: Printer uhci_init() UHCI_FRAMELIST_COUNT=1024, alloc size:4096 uhci_init() UHCI_FLBASEADDR:0x00e77000, physicalMem:0x00e77000  >>>>>> usbd_new_device: adding unit bus:1, addr=1, rev=0100, class=9, subclass=0, protocol=0, maxpacket=64, len=18, speed=2 [40] Allocate resource 118, FreeResource = 6 Reset Duslic High begin Reset Duslic end IFX TAPI, version 3.7.1.5, (c) 2001-2008 Infineon Technologies AG [29] Allocate mailbox 8 TAPI_init_task_queue: enter loop..8 [40] Allocate resource 119, FreeResource = 7 IFX VMMC device driver, version 1.3.0.5, (c) 2006-2008 Infineon Technologies AG IFX MIPS24KEc MPS driver, version 2.0.0.0, (c) 2006-2008 Infineon Technologies AG 123ifx_mps_init_structures request_irq 1 146 ifx_mps_init_structures request_irq 2 147 ifx_mps_init_structures request_irq 3 0 142 ifx_mps_init_structures request_irq 3 1 143 ifx_mps_init_structures request_irq 3 2 144 ifx_mps_init_structures request_irq 3 3 145 VMMC_Open : Major 122 Minor 10 IFX_TAPI_Create_Device: ndev = 0, TapiDev 81D4C000 [40] Allocate resource 120, FreeResource = 8 [40] Allocate resource 121, FreeResource = 9 [40] Allocate resource 122, FreeResource = 10 [40] Allocate resource 123, FreeResource = 11 [40] Allocate resource 124, FreeResource = 12 [40] Allocate event 239 >>>>>>>>>> OS_GetEventNumber: event 239 VMMC_AddCaps: CODECS = 0 VMMC_AddCaps: CODECS = 0 ifx_tapi_Prepare_Ch: nChannel 0 [40] Allocate resource 125, FreeResource = 13 [40] Allocate resource 126, FreeResource = 14 [40] Allocate resource 127, FreeResource = 15 VMMC_Prepare_Ch: nChannel = 1 [40] Allocate resource 128, FreeResource = 16 [40] Allocate event 240 >>>>>>>>>> OS_GetEventNumber: event 240 ifx_tapi_Prepare_Ch: nChannel 1 [40] Allocate resource 129, FreeResource = 17 [40] Allocate resource 130, FreeResource = 18 [40] Allocate resource 131, FreeResource = 19 VMMC_Prepare_Ch: nChannel = 2 [40] Allocate resource 132, FreeResource = 20 [40] Allocate event 241 >>>>>>>>>> OS_GetEventNumber: event 241 ifx_tapi_Prepare_Ch: nChannel 2 [40] Allocate resource 133, FreeResource = 21 [40] Allocate resource 134, FreeResource = 22 [40] Allocate resource 135, FreeResource = 23 VMMC_Prepare_Ch: nChannel = 3 [40] Allocate resource 136, FreeResource = 24 [40] Allocate event 242 >>>>>>>>>> OS_GetEventNumber: event 242 ifx_tapi_Prepare_Ch: nChannel 3 [40] Allocate resource 137, FreeResource = 25 [40] Allocate resource 138, FreeResource = 26 [40] Allocate resource 139, FreeResource = 27 VMMC_Prepare_Ch: nChannel = 4 [40] Allocate resource 140, FreeResource = 28 [40] Allocate event 243 ADSL> READY >>>>>>>>>> OS_GetEventNumber: event 243 ifx_tapi_Prepare_Ch: nChannel 4 [40] Allocate resource 141, FreeResource = 29 [40] Allocate resource 142, FreeResource = 30 [40] Allocate resource 143, FreeResource = 31 VMMC_Prepare_Ch: nChannel = 5 [40] Allocate resource 144, FreeResource = 32 [40] Allocate event 244 >>>>>>>>>> OS_GetEventNumber: event 244 ifx_tapi_Prepare_Ch: nChannel 5 [40] Allocate resource 145, FreeResource = 33 [40] Allocate resource 146, FreeResource = 34 [40] Allocate resource 147, FreeResource = 35 VMMC_Prepare_Ch: nChannel = 6 [40] Allocate resource 148, FreeResource = 36 [40] Allocate event 245 >>>>>>>>>> OS_GetEventNumber: event 245 ifx_tapi_Prepare_Ch: nChannel 6 [40] Allocate resource 149, FreeResource = 37 [40] Allocate resource 150, FreeResource = 38 [40] Allocate resource 151, FreeResource = 39 VMMC_Prepare_Ch: nChannel = 7 [40] Allocate resource 152, FreeResource = 40 [40] Allocate event 246 >>>>>>>>>> OS_GetEventNumber: event 246 ifx_tapi_Prepare_Ch: nChannel 7 [40] Allocate resource 153, FreeResource = 41 [40] Allocate resource 154, FreeResource = 42 [40] Allocate resource 155, FreeResource = 43 VMMC_Prepare_Ch: nChannel = 8 [40] Allocate resource 156, FreeResource = 44 [40] Allocate event 247 >>>>>>>>>> OS_GetEventNumber: event 247 VMMC_LL_Open, nDev 0, inode 0 mpsCh 1 ifx_mps_open, inode 1 VMMC_Open --> 81d4c000 VMMC_handle[0] : 81d4c000 VMMC_Open : Major 122 Minor 11 VMMC_LL_Open, nDev 0, inode 1 mpsCh 2 ifx_mps_open, inode 2 VMMC_Open --> 81d49c90 VMMC_handle[1] : 81d49c90 VMMC_Open : Major 122 Minor 12 VMMC_LL_Open, nDev 0, inode 2 mpsCh 3 ifx_mps_open, inode 3 VMMC_Open --> 81d4a0fc VMMC_handle[2] : 81d4a0fc VMMC_Open : Major 122 Minor 13 VMMC_LL_Open, nDev 0, inode 3 mpsCh 4 ifx_mps_open, inode 4 VMMC_Open --> 81d4a568 VMMC_handle[3] : 81d4a568 VMMC_Open : Major 122 Minor 14 VMMC_LL_Open, nDev 0, inode 4 mpsCh 5 ifx_mps_open, inode 5 VMMC_Open --> 81d4a9d4 VMMC_handle[4] : 81d4a9d4 VMMC_Open : Major 122 Minor 15 VMMC_LL_Open, nDev 0, inode 5 mpsCh 6 ifx_mps_open, inode 6 VMMC_Open --> 81d4ae40 VMMC_handle[5] : 81d4ae40 VMMC_Open : Major 122 Minor 16 VMMC_LL_Open, nDev 0, inode 6 mpsCh 7 ifx_mps_open, inode 7 VMMC_Open --> 81d4b2ac VMMC_handle[6] : 81d4b2ac VMMC_Open : Major 122 Minor 17 VMMC_LL_Open, nDev 0, inode 7 mpsCh 8 VMMC_Open --> 81d4b718 VMMC_handle[7] : 81d4b718 VMMC_Open : Major 122 Minor 18 VMMC_LL_Open, nDev 0, inode 8 mpsCh 9 VMMC_Open --> 81d4bb84 VMMC_handle[8] : 81d4bb84 ===> Set PCM I/F 0 VMMC_handle:81d4c000 ifx_mps_ioctl: FIO_MPS_DOWNLOAD...1 [get_vcpufirmware_address] DSP firmware: [5 -1], dCnt:1 Unzipping from B042C000 to 82D6CD84 ... [ZIP 2] usbd_probe_and_attach,probe 1! uhci_pci_attach: begin ... uhci_init() UHCI_FRAMELIST_COUNT=1024, alloc size:4096 uhci_init() UHCI_FLBASEADDR:0x00ea3000, physicalMem:0x00ea3000  >>>>>> usbd_new_device: adding unit bus:2, addr=1, rev=0100, class=9, subclass=0, protocol=0, maxpacket=64, len=18, speed=2 usbd_probe_and_attach,probe 1! ehci_pci_attach: begin ... ehci_pci_attach: ioregs:0xb8010000, irq:95 ehci_init() flsize=1024, alloc size:4096 ehci_init() EHCI_PERIODICLISTBASE:0x00de1000, physicalMem:0x00de1900 ehci_init() sqh->physaddr:0x00c227c2 ehci_init() EHCI_ASYNCLISTADDR:0x00c227c0, physicalMem:0x00c227c0  >>>>>> usbd_new_device: adding unit bus:3, addr=1, rev=0200, class=9, subclass=0, protocol=1, maxpacket=64, len=18, speed=3 done Uncompressed size = 642816 IFX_MPS: Download firmware (size 642816 bytes)... 123ok! Version 11.2.4.1.0 up and running... usbd_probe_and_attach,probe 1! [USB] dwc3884_start() DWC3884 core version:0x4F54220A, 2.20a [USB] dwc3884_reset() DANUBE_RCU_UBSCFG:0xBF203018, var:0x00000400 [USB] dwc3884_reset() rstctl:0xBE101010 [USB] dwc3884_start() intsts:0xBE101014, var:0x04008829  >>>>>> usbd_new_device: adding unit bus:4, addr=1, rev=0200, class=9, subclass=0, protocol=1, maxpacket=64, len=18, speed=3 usbd_probe_and_attach(Hub)> Reopen STATIC default pipe OK scan channel 1 rssi -67 max_rssi[0] -67 scan channel 4 rssi -54 max_rssi[3] -54 scan channel 6 rssi -61 max_rssi[5] -61 scan channel 11 rssi -65 max_rssi[10] -65 Dirtyness = 13.2.3.14.2.13.2.2.2.1.12.1.1. APAutoSelectChannel_ARCOR pick up ch#1 <==== rt28xx_init, Status=0 0x1300 = 00064320 ND 2 ??? ND 1 ??? pAd->VirtualIfCnt 1 usbd_probe_and_attach,probe 1! startExplore() usb explore task run-up, slot:0, tsk_id:63, reason:0 usb_hc_install_interrupt() Interrupt disable usb_hc_install_interrupt() Interrupt disable usb_hc_install_interrupt() Install EHCI interrupt 95 usb_hc_install_interrupt() Install OTG interrupt 54 USB Module: Version 2.0.0 build Jun 30 2011 02:33:47 usb_explore_task() Begin ... [reset_802dot1x] wireless module ready config->enablePreAuthen=1 install group key to Mac ASIC ???????????????????????? [reset_802dot1x] 802.1Xv2 ready [htf_dbg] - OnlineActiveWirless() 1334 WirelessMode 9 BasicRate 15 AutochannelSelect 0 Channel 0 autoChannel : 1 NEW : channel 1, BW 0(20MHZ), EXTCHA 3(BELOW) Set_PreAuth_Proc called, PreAuth=1 stopWlanG ... start ********************************************* ***Waiting for Registrar to connect...*** ********************************************* VMMC_AddCaps: CODECS = 7df [40] Allocate event 248 >>>>>>>>>> OS_GetEventNumber: event 248 [40] Allocate event 249 >>>>>>>>>> OS_GetEventNumber: event 249 ===> VMMC_Ioctl: Phone 1 IFX_TAPI_LINE_TYPE ok! VMMC_Ioctl: Phone 1 IFXPHONE_SET_LINEFEED ok! Set PCM I/F 1 VMMC_handle:81d49c90 ===> VMMC_Ioctl: Phone 2 IFX_TAPI_LINE_TYPE ok! VMMC_Ioctl: Phone 2 IFXPHONE_SET_LINEFEED ok! Set PCM I/F 2 VMMC_handle:81d4a0fc ===> Set PCM I/F 3 VMMC_handle:81d4a568 ===> Set PCM I/F 4 VMMC_handle:81d4a9d4 ===> Set PCM I/F 5 VMMC_handle:81d4ae40 ===> Set PCM I/F 6 VMMC_handle:81d4b2ac ===> Set PCM I/F 7 VMMC_handle:81d4b718 ===> Set PCM I/F 8 VMMC_handle:81d4bb84 Setting HOOK Related Parameters 0 Setting HOOKFLASH_TIME min 80 ms max 900 ms Setting HOOKON_TIME min 370 max 370 Setting HOOK Related Parameters 1 Setting HOOKFLASH_TIME min 80 ms max 900 ms Setting HOOKON_TIME min 370 max 370 Setting HOOK Related Parameters 2 Setting HOOK Related Parameters 3 RUNTASK id=33 VINETIC_DRV_Task... [68] Allocate mailbox 9 RUNTASK id=68 VINETIC_T38_Task... RUNTASK id=70 FXO_flash_task... RUNTASK id=69 VOICE_API_task... stopWlanG .. done >>>>>>>>>>>>>>>>>>>>>>tick 6837 Reset Duslic High begin Reset Duslic end ProDAAInitialize: begin now ProDAAInitialize: Line-Side Device Status 0 Port 2 sytem-side revision 45, line-side revision 6 init_DTMF_data: time 7693 force_daa_offhook ch 2 onoff 1 time 7693 ProDaaOffhook 0 2 onoff 1 CID_Detect CH 2 onoff 0 FXO_PolState_DTMFCID --> Disable DTMF CID force_daa_offhook ch 2 onoff 0 time 7752 ProDaaOffhook 1 2 onoff 0 CID_Detect CH 2 onoff 1 FXO_PolState_DTMFCID --> Detect Polarity Changed Enable DTMF CID When * the value is 60000 When * the value is 60000 When * the value is 60000 When * the value is 60000 sys_voip_cfg->cpt.reorder = 425@-230;20(0.24/0.24/1) TEL_DRV_TONE_REORDER duration = 480 When * the value is 60000 [40] Allocate resource 157, FreeResource = 45 [40] Allocate mailbox 10 TEL_MGR_Init [40] Allocate resource 158, FreeResource = 46 tel_mgr_mutex=158 [40] Allocate mailbox 11 TEL_DM_Init [40] Allocate resource 159, FreeResource = 47 [40] Allocate resource 160, FreeResource = 48 TEL_MGR_VoiceChannelInit TEL_MGR_SetVoiceChannel 1 !TEL_MGR_SetVoiceChannel: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneEC !TEL_MGR_SetPhoneEC: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneVAD !TEL_MGR_SetPhoneVAD: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneGain Gain Tx -2, Rx -9 TEL_MGR_SetPhoneJitter !TEL_MGR_SetPhoneJitter: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetVoiceChannel 2 !TEL_MGR_SetVoiceChannel: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneEC !TEL_MGR_SetPhoneEC: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneVAD !TEL_MGR_SetPhoneVAD: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneGain Gain Tx -2, Rx -9 TEL_MGR_SetPhoneJitter !TEL_MGR_SetPhoneJitter: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetVoiceChannel 3 !TEL_MGR_SetVoiceChannel: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneEC !TEL_MGR_SetPhoneEC: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneVAD !TEL_MGR_SetPhoneVAD: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneGain Gain Tx -2, Rx -9 TEL_MGR_SetPhoneJitter !TEL_MGR_SetPhoneJitter: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetVoiceChannel 4 !TEL_MGR_SetVoiceChannel: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneEC !TEL_MGR_SetPhoneEC: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneVAD !TEL_MGR_SetPhoneVAD: TEL_PORT_GetPhoneChannelId fail TEL_MGR_SetPhoneGain Gain Tx -2, Rx -9 TEL_MGR_SetPhoneJitter !TEL_MGR_SetPhoneJitter: TEL_PORT_GetPhoneChannelId fail [40] Allocate resource 161, FreeResource = 49 [40] Allocate mailbox 12 [71] Allocate resource 162, FreeResource = 50 [71] Allocate resource 163, FreeResource = 51 [SIP_CORE_Task] sip_core_ready TEL_MGR_SetVoipPhoneEvtHookFunc TEL_MGR_SetVoipPhoneEvtHookFunc TEL_MGR_SetVoipPhoneEvtHookFunc TEL_MGR_SetVoipPhoneEvtHookFunc [40] Allocate resource 164, FreeResource = 52 [40] Allocate mailbox 13 VOICE_IVR_Init: voice_ivr_channel[0].ivrQueueId = 13 [40] Allocate mailbox 14 VOICE_IVR_Init: voice_ivr_channel[1].ivrQueueId = 14 [40] Allocate mailbox 15 VOICE_IVR_Init: voice_ivr_channel[2].ivrQueueId = 15 [40] Allocate mailbox 16 VOICE_IVR_Init: voice_ivr_channel[3].ivrQueueId = 16 [40] Allocate mailbox 17 VOICE_IVR_Init: voice_ivr_channel[4].ivrQueueId = 17 [40] Allocate mailbox 18 VOICE_IVR_Init: voice_ivr_channel[5].ivrQueueId = 18 [40] Allocate mailbox 19 VOICE_IVR_Init: voice_ivr_channel[6].ivrQueueId = 19 [40] Allocate mailbox 20 VOICE_IVR_Init: voice_ivr_channel[7].ivrQueueId = 20 TEL_MGR_DisableDebug TEL_MGR_AutoDetection: End U high impedance state 8015 TEL_MGR_AutoDetection: Start calculate time 10015


booting from u-boot from original bootloader

[DANUBE Boot]:y Go to Memory Address: (default:0x80002000) : 0x Jump to address 0x80002000 ... U-Boot 2010.03 (Sep 29 2012 - 18:24:13) Board: ARV752DPW22 SoC: Danube/Twinpass/Vinax-VE V1.5, DDR Speed 166 MHz, CPU Speed 333 MHz DRAM: 64 MB Flash: 8 MB *** Warning - bad CRC, using default environment Net: bring up ebu gpio initializing ar8216 switch... initialized lq_cpe_eth Hit any key to stop autoboot: 0 ## Booting kernel from Legacy Image at b0020000 ... Image Name: MIPS OpenWrt Linux-3.3.8 Created: 2012-09-04 19:43:16 UTC Image Type: MIPS Linux Kernel Image (lzma compressed) Data Size: 1011964 Bytes = 988.2 kB Load Address: 80002000 Entry Point: 80002000 Verifying Checksum ... OK Uncompressing Kernel Image ... OK Starting kernel ... [ 0.000000] Linux version 3.3.8 (blogic@Debian-60-squeeze-64-minimal) (gcc version 4.6.3 20120201 (prerelease) (Linaro GCC 4.6-2012.02) ) #4 Fri Aug 31 16:20:51 UTC 2012 [ 0.000000] SoC: Danube rev 1.5 [ 0.000000] bootconsole [early0] enabled [ 0.000000] CPU revision is: 00019641 (MIPS 24KEc) [ 0.000000] Determined physical RAM map: [ 0.000000] memory: 04000000 @ 00000000 (usable) [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] Zone PFN ranges: [ 0.000000] Normal 0x00000000 -> 0x00004000 [ 0.000000] Movable zone start PFN for each node [ 0.000000] Early memory PFN ranges [ 0.000000] 0: 0x00000000 -> 0x00004000 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 16256 [ 0.000000] Kernel command line: console=ttyLTQ1,115200 rootfstype=squashfs,jffs2 machtype=ARV752DPW22 [ 0.000000] PID hash table entries: 256 (order: -2, 1024 bytes) [ 0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes) [ 0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes) [ 0.000000] Primary instruction cache 16kB, VIPT, 4-way, linesize 32 bytes. [ 0.000000] Primary data cache 16kB, 4-way, VIPT, no aliases, linesize 32 bytes [ 0.000000] Writing ErrCtl register=00074f68 [ 0.000000] Readback ErrCtl register=00074f68 [ 0.000000] Memory: 61832k/65536k available (2399k kernel code, 3704k reserved, 403k data, 176k init, 0k highmem) [ 0.000000] NR_IRQS:256 [ 0.000000] CPU Clock: 333MHz [ 0.000000] Calibrating delay loop... 221.18 BogoMIPS (lpj=442368) [ 0.040000] pid_max: default: 32768 minimum: 301 [ 0.044000] Mount-cache hash table entries: 512 [ 0.052000] NET: Registered protocol family 16 [ 0.060000] gpiochip_add: registered GPIOs 0 to 15 on device: ltq_gpio [ 0.064000] gpiochip_add: registered GPIOs 16 to 31 on device: ltq_gpio [ 0.068000] MIPS: machine is ARV752DPW22 - Arcor A803 [ 0.072000] gpiochip_add: registered GPIOs 100 to 115 on device: ltq_ebu [ 0.104000] bio: create slab <bio-0> at 0 [ 0.112000] PCI host bridge to bus 0000:00 [ 0.116000] pci_bus 0000:00: root bus resource [mem 0x18000000-0x19ffffff] [ 0.120000] pci_bus 0000:00: root bus resource [io 0x1ae00000-0x1affffff] [ 0.128000] pci 0000:00:0e.0: BAR 0: assigned [mem 0x18000000-0x1800ffff] [ 0.132000] pci 0000:00:0f.2: BAR 0: assigned [mem 0x18010000-0x180100ff] [ 0.136000] pci 0000:00:0f.0: BAR 4: assigned [io 0x1ae00000-0x1ae0001f] [ 0.140000] pci 0000:00:0f.1: BAR 4: assigned [io 0x1ae00020-0x1ae0003f] [ 0.144000] pci 0000:00:0e.0: SLOT:14 PIN:1 IRQ:30 [ 0.148000] pci 0000:00:0f.0: SLOT:15 PIN:1 IRQ:135 [ 0.152000] pci 0000:00:0f.1: SLOT:15 PIN:2 IRQ:135 [ 0.156000] pci 0000:00:0f.2: SLOT:15 PIN:3 IRQ:135 [ 0.160000] Switching to clocksource MIPS [ 0.168000] NET: Registered protocol family 2 [ 0.176000] IP route cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.180000] TCP established hash table entries: 2048 (order: 2, 16384 bytes) [ 0.188000] TCP bind hash table entries: 2048 (order: 1, 8192 bytes) [ 0.196000] TCP: Hash tables configured (established 2048 bind 2048) [ 0.200000] TCP reno registered [ 0.204000] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.212000] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.216000] NET: Registered protocol family 1 [ 0.220000] PCI: Enabling device 0000:00:0f.0 (0000 -> 0001) [ 0.228000] PCI: Enabling device 0000:00:0f.1 (0000 -> 0001) [ 0.232000] PCI: Enabling device 0000:00:0f.2 (0000 -> 0002) [ 0.240000] gptu: totally 6 16-bit timers/counters [ 0.244000] gptu: misc_register on minor 63 [ 0.248000] gptu: succeeded to request irq 126 [ 0.252000] gptu: succeeded to request irq 127 [ 0.260000] gptu: succeeded to request irq 128 [ 0.264000] gptu: succeeded to request irq 129 [ 0.268000] gptu: succeeded to request irq 130 [ 0.272000] gptu: succeeded to request irq 131 [ 0.280000] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.284000] JFFS2 version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.296000] msgmni has been set to 120 [ 0.300000] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254) [ 0.308000] io scheduler noop registered [ 0.312000] io scheduler deadline registered (default) [ 0.320000] ltq_asc.1: ttyLTQ1 at MMIO 0x1e100c00 (irq = 112) is a ltq_asc [ 0.324000] console [ttyLTQ1] enabled, bootconsole disabled [ 0.324000] console [ttyLTQ1] enabled, bootconsole disabled [ 0.340000] ltq_nor: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x0000c2 Chip ID 0x0022cb [ 0.348000] Amd/Fujitsu Extended Query Table at 0x0040 [ 0.352000] Amd/Fujitsu Extended Query version 1.1. [ 0.360000] number of CFI chips: 1 [ 0.360000] Creating 4 MTD partitions on "ltq_nor": [ 0.368000] 0x000000000000-0x000000010000 : "uboot" [ 0.376000] 0x000000010000-0x000000020000 : "uboot_env" [ 0.380000] 0x000000020000-0x0000007f0000 : "linux" [ 0.388000] found squashfs behind kernel [ 0.392000] Creating 2 MTD partitions on "ltq_nor": [ 0.396000] 0x000000020000-0x00000011713c : "kernel" [ 0.400000] mtd: partition "kernel" must either start or end on erase block boundary or be smaller than an erase block -- forcing read-only [ 0.416000] 0x00000011713c-0x0000007f0000 : "rootfs" [ 0.420000] mtd: partition "rootfs" must either start or end on erase block boundary or be smaller than an erase block -- forcing read-only [ 0.432000] mtd: partition "rootfs" set to be root filesystem [ 0.440000] mtd: partition "rootfs_data" created automatically, ofs=270000, len=580000 [ 0.444000] 0x000000270000-0x0000007f0000 : "rootfs_data" [ 0.456000] 0x0000007f0000-0x000000800000 : "board_config" [ 0.464000] etop: invalid MAC, using random [ 0.612000] ltq_mii: probed [ 0.636000] eth0: Atheros AR8216 switch driver attached. [ 0.736000] eth0: attached PHY [Atheros AR8216/AR8236/AR8316] (phy_addr=ltq_etop-fffffff:00, irq=-1) [ 0.760000] TCP cubic registered [ 0.760000] NET: Registered protocol family 17 [ 0.764000] 8021q: 802.1Q VLAN Support v[ 0.780000] VFS: Mounted root (squashfs filesystem) readonly on device 31:4. [ 0.788000] Freeing unused kernel memory: 176k freed - preinit - Press the [f] key and hit [enter] to enter failsafe mode - regular preinit - [ 7.352000] JFFS2 notice: (420) jffs2_build_xattr_subsystem: complete building xattr subsystem, 1 of xdatum (1 unchecked, 0 orphan) and 5 of xref (0 dead, 2 orphan) found. switching to jffs2 - init - Please press Enter to activate this console. [ 8.580000] usbcore: registered new interface driver usbfs [ 8.584000] usbcore: registered new interface driver hub [ 8.592000] usbcore: registered new device driver usb [ 8.732000] NET: Registered protocol family 8 [ 8.736000] NET: Registered protocol family 20 [ 8.772000] Button Hotplug driver version 0.4.1 [ 8.812000] PPP generic driver version 2.4.2 [ 9.132000] ip_tables: (C) 2000-2006 Netfilter Core Team [ 9.404000] NET: Registered protocol family 24 [ 9.428000] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 9.432000] ehci_hcd 0000:00:0f.2: EHCI Host Controller [ 9.440000] ehci_hcd 0000:00:0f.2: new USB bus registered, assigned bus number 1 [ 9.444000] ehci_hcd 0000:00:0f.2: irq 135, io mem 0x18010000 [ 9.464000] ehci_hcd 0000:00:0f.2: USB 2.0 started, EHCI 1.00 [ 9.468000] hub 1-0:1.0: USB hub found [ 9.468000] hub 1-0:1.0: 4 ports detected [ 9.500000] nf_conntrack version 0.5.0 (968 buckets, 3872 max) [ 10.396000] IFX MEI Version 5.00.00 [ 10.624000] [ 10.624000] Infineon CPE API Driver version: DSL CPE API V3.24.4.4 [ 10.788000] ATM (A1) firmware version 1.0.19 [ 10.792000] ifxmips_atm: ATM init succeed [ 10.824000] dwc_otg: version 2.60a 22-NOV-2006 [ 11.428000] DWC_otg: Using DMA mode [ 11.428000] dwc_otg dwc_otg.0: DWC OTG Controller [ 11.436000] dwc_otg dwc_otg.0: new USB bus registered, assigned bus number 2 [ 11.440000] dwc_otg dwc_otg.0: irq 62, io mem 0xffffffffbe101000 [ 11.452000] DWC_otg: Init: Port Power? op_state=1 [ 11.452000] DWC_otg: Init: Power Port (0) [ 11.460000] hub 2-0:1.0: USB hub found [ 11.460000] hub 2-0:1.0: 1 port detected [ 11.564000] DISCONNECTED PORT [ 11.568000] uhci_hcd: USB Universal Host Controller Interface driver [ 11.572000] uhci_hcd 0000:00:0f.0: UHCI Host Controller [ 11.580000] uhci_hcd 0000:00:0f.0: new USB bus registered, assigned bus number 3 [ 11.588000] uhci_hcd 0000:00:0f.0: irq 135, io base 0x1ae00000 [ 11.592000] hub 3-0:1.0: USB hub found [ 11.596000] hub 3-0:1.0: 2 ports detected [ 11.600000] uhci_hcd 0000:00:0f.1: UHCI Host Controller [ 11.604000] uhci_hcd 0000:00:0f.1: new USB bus registered, assigned bus number 4 [ 11.612000] uhci_hcd 0000:00:0f.1: irq 135, io base 0x1ae00020 [ 11.620000] hub 4-0:1.0: USB hub found [ 11.620000] hub 4-0:1.0: 2 ports detected [ 11.640000] input: gpio-keys-polled as /devices/platform/gpio-keys-polled/input/input0 [ 16.276000] device eth0 entered promiscuous mode [ 16.288000] br-lan: port 1(eth0) entered forwarding state [ 16.292000] br-lan: port 1(eth0) entered forwarding state [ 18.296000] br-lan: port 1(eth0) entered forwarding state


ROM VER: 1.0.3 CFG 01 Reaä ROM VER: 1.0.3 CFG 01 Read EEPROMX X U-Boot 2013.10-openwrt4 (May 28 2014 - 21:46:54) ARV752DPW22 Board: Arcadyan ARV752DPW22 SoC: Lantiq Danube-S v1.5 CPU: 333.333 MHz IO: 166.667 MHz BUS: 83.333 MHz BOOT: NOR DRAM: 64 MiB Flash: 8 MiB In: serial Out: serial Err: serial Net: ltq-eth Hit any key to stop autoboot: ## Booting kernel from Legacy Image at b0040000 ... Image Name: MIPS Freifunk Berlin Linux-4.14. Created: 2018-12-03 14:50:26 UTC Image Type: MIPS Linux Kernel Image (lzma compressed) Data Size: 1686955 Bytes = 1.6 MiB Load Address: 80002000 Entry Point: 80002000 Verifying Checksum ... OK Uncompressing Kernel Image ... OK Starting kernel ... [ 0.000000] Linux version 4.14.82 (human@rechenknecht15) (gcc version 7.3.0 (OpenWrt GCC 7.3.0 r6907+293-7e15e21)) #0 Mon Dec 3 14:50:26 2018 [ 0.000000] SoC: Danube rev 1.5 [ 0.000000] bootconsole [early0] enabled [ 0.000000] CPU0 revision is: 00019641 (MIPS 24KEc) [ 0.000000] MIPS: machine is Arcor 803 [ 0.000000] Determined physical RAM map: [ 0.000000] memory: 04000000 @ 00000000 (usable) [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] Primary instruction cache 16kB, VIPT, 4-way, linesize 32 bytes. [ 0.000000] Primary data cache 16kB, 4-way, VIPT, no aliases, linesize 32 bytes [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000000000-0x0000000003ffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000003ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff] [ 0.000000] random: get_random_bytes called from 0x804ff73c with crng_init=0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 16256 [ 0.000000] Kernel command line: console=ttyLTQ0,115200 [ 0.000000] PID hash table entries: 256 (order: -2, 1024 bytes) [ 0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes) [ 0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes) [ 0.000000] Writing ErrCtl register=0007d7e8 [ 0.000000] Readback ErrCtl register=0007d7e8 [ 0.000000] Memory: 58332K/65536K available (4399K kernel code, 184K rwdata, 516K rodata, 1220K init, 210K bss, 7204K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] NR_IRQS: 256 [ 0.000000] CPU Clock: 333MHz [ 0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11467562657 ns [ 0.000020] sched_clock: 32 bits at 166MHz, resolution 6ns, wraps every 12884901885ns [ 0.007984] Calibrating delay loop... 221.18 BogoMIPS (lpj=442368) [ 0.054251] pid_max: default: 32768 minimum: 301 [ 0.059419] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.065981] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.082537] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.092226] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.098531] pinctrl core: initialized pinctrl subsystem [ 0.105526] NET: Registered protocol family 16 [ 0.119277] pinctrl-xway 1e100b10.pinmux: Init done [ 0.125938] dma-xway 1e104100.dma: Init done - hw rev: 3, ports: 5, channels: 20 [ 0.136773] Can't analyze schedule() prologue at 8044891c [ 0.143590] PCI host bridge /fpi@10000000/pci@e105400 ranges: [ 0.149298] MEM 0x0000000018000000..0x0000000019ffffff [ 0.154564] IO 0x000000001ae00000..0x000000001affffff [ 0.220371] usbcore: registered new interface driver usbfs [ 0.225998] usbcore: registered new interface driver hub [ 0.231438] usbcore: registered new device driver usb [ 0.236954] PCI host bridge to bus 0000:00 [ 0.241006] pci_bus 0000:00: root bus resource [mem 0x18000000-0x19ffffff] [ 0.247930] pci_bus 0000:00: root bus resource [io 0x1ae00000-0x1affffff] [ 0.254872] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0] [ 0.261726] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] [ 0.272452] pci 0000:00:0e.0: BAR 0: assigned [mem 0x18000000-0x1800ffff] [ 0.279205] pci 0000:00:0f.2: BAR 0: assigned [mem 0x18010000-0x180100ff] [ 0.286049] pci 0000:00:0f.0: BAR 4: assigned [io 0x1ae00000-0x1ae0001f] [ 0.292905] pci 0000:00:0f.1: BAR 4: assigned [io 0x1ae00020-0x1ae0003f] [ 0.300949] clocksource: Switched to clocksource MIPS [ 0.308447] NET: Registered protocol family 2 [ 0.314361] TCP established hash table entries: 1024 (order: 0, 4096 bytes) [ 0.321321] TCP bind hash table entries: 1024 (order: 0, 4096 bytes) [ 0.327709] TCP: Hash tables configured (established 1024 bind 1024) [ 0.334398] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.340232] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.346923] NET: Registered protocol family 1 [ 0.351368] PCI: Enabling device 0000:00:0f.0 (0000 -> 0001) [ 0.357060] PCI: Enabling device 0000:00:0f.1 (0000 -> 0001) [ 0.362761] PCI: Enabling device 0000:00:0f.2 (0000 -> 0002) [ 0.385617] gptu: totally 6 16-bit timers/counters [ 0.390549] gptu: misc_register on minor 63 [ 0.394699] gptu: succeeded to request irq 126 [ 0.399201] gptu: succeeded to request irq 127 [ 0.403715] gptu: succeeded to request irq 128 [ 0.408229] gptu: succeeded to request irq 129 [ 0.412743] gptu: succeeded to request irq 130 [ 0.417258] gptu: succeeded to request irq 131 [ 0.428468] lantiq,vmmc 1f103000.vmmc: requested GPIO 465 [ 0.433823] lantiq,vmmc 1f103000.vmmc: reserved 1MB at 0x03a00000 [ 0.441739] Crashlog allocated RAM at address 0x3f00000 [ 0.451494] workingset: timestamp_bits=30 max_order=14 bucket_order=0 [ 0.469730] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.475504] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.513530] io scheduler noop registered [ 0.517397] io scheduler deadline registered (default) [ 0.525390] 1e100c00.serial: ttyLTQ0 at MMIO 0x1e100c00 (irq = 112, base_baud = 0) is a lantiq,asc [ 0.534362] console [ttyLTQ0] enabled [ 0.534362] console [ttyLTQ0] enabled [ 0.541467] bootconsole [early0] disabled [ 0.541467] bootconsole [early0] disabled [ 0.550175] cacheinfo: Failed to find cpu0 device node [ 0.553849] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.560403] lantiq nor flash device: 00800000 at 10000000 [ 0.565314] ltq_nor: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x0000c2 Chip ID 0x0022cb [ 0.574311] Amd/Fujitsu Extended Query Table at 0x0040 [ 0.579299] Amd/Fujitsu Extended Query version 1.1. [ 0.584168] number of CFI chips: 1 [ 0.587535] 4 fixed-partitions partitions found on MTD device ltq_nor [ 0.593720] Creating 4 MTD partitions on "ltq_nor": [ 0.598457] 0x000000000000-0x000000030000 : "uboot" [ 0.605023] 0x000000030000-0x000000040000 : "uboot_env" [ 0.610476] 0x000000040000-0x0000007f0000 : "firmware" [ 0.654611] 2 uimage-fw partitions found on MTD device firmware [ 0.659071] 0x000000040000-0x0000001dbdeb : "kernel" [ 0.665656] 0x0000001dbdeb-0x0000007f0000 : "rootfs" [ 0.670761] mtd: device 4 (rootfs) set to be root filesystem [ 0.675043] 1 squashfs-split partitions found on MTD device rootfs [ 0.681011] 0x0000006c0000-0x0000007f0000 : "rootfs_data" [ 0.687885] 0x0000007f0000-0x000000800000 : "board_config" [ 0.697664] libphy: Fixed MDIO Bus: probed [ 0.720812] switch0: Atheros AR8216 rev. 1 switch registered on 1e180000.etop-ffffffff [ 0.760235] libphy: ltq_mii: probed [ 0.802324] Atheros AR8216/AR8236/AR8316 1e180000.etop-ffffffff:00: attached PHY driver [Atheros AR8216/AR8236/AR8316] (mii_bus:phy_addr=1e180000.etop-ffffffff:00, irq=POLL) [ 0.818586] wdt 1f8803f0.watchdog: Init done [ 0.829411] NET: Registered protocol family 10 [ 0.850117] Segment Routing with IPv6 [ 0.852463] NET: Registered protocol family 17 [ 0.856798] 8021q: 802.1Q VLAN Support v1.8 [ 0.870332] OF: fdt: not creating '/sys/firmware/fdt': CRC check failed [ 0.875472] USB_VBUS: disabling [ 0.890593] VFS: Mounted root (squashfs filesystem) readonly on device 31:4. [ 0.903834] Freeing unused kernel memory: 1220K [ 0.906932] This architecture does not have kernel memory protection. [ 1.153002] random: fast init done [ 2.550314] init: Console is alive [ 2.552754] init: - watchdog - [ 5.623948] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 5.797174] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 5.805599] ehci-platform: EHCI generic platform driver [ 5.812368] ehci-pci: EHCI PCI platform driver [ 5.815709] ehci-pci 0000:00:0f.2: EHCI Host Controller [ 5.820521] ehci-pci 0000:00:0f.2: new USB bus registered, assigned bus number 1 [ 5.827841] ehci-pci 0000:00:0f.2: irq 135, io mem 0x18010000 [ 5.849021] ehci-pci 0000:00:0f.2: USB 2.0 started, EHCI 1.00 [ 5.855285] hub 1-0:1.0: USB hub found [ 5.858390] hub 1-0:1.0: 4 ports detected [ 5.867232] uhci_hcd: USB Universal Host Controller Interface driver [ 5.872380] uhci_hcd 0000:00:0f.0: UHCI Host Controller [ 5.877275] uhci_hcd 0000:00:0f.0: new USB bus registered, assigned bus number 2 [ 5.884423] uhci_hcd 0000:00:0f.0: irq 135, io base 0x1ae00000 [ 5.893222] hub 2-0:1.0: USB hub found [ 5.896302] hub 2-0:1.0: 2 ports detected [ 5.900906] uhci_hcd 0000:00:0f.1: UHCI Host Controller [ 5.904786] uhci_hcd 0000:00:0f.1: new USB bus registered, assigned bus number 3 [ 5.912027] uhci_hcd 0000:00:0f.1: irq 135, io base 0x1ae00020 [ 5.921138] hub 3-0:1.0: USB hub found [ 5.924184] hub 3-0:1.0: 2 ports detected [ 5.937718] dwc2 1e101000.usb: 1e101000.usb supply vusb_d not found, using dummy regulator [ 5.944704] dwc2 1e101000.usb: 1e101000.usb supply vusb_a not found, using dummy regulator [ 5.952786] dwc2 1e101000.usb: dwc2_core_reset() HANG! Soft Reset GRSTCTL=80000001 [ 6.097481] dwc2 1e101000.usb: DWC OTG Controller [ 6.100743] dwc2 1e101000.usb: new USB bus registered, assigned bus number 4 [ 6.107675] dwc2 1e101000.usb: irq 62, io mem 0x1e101000 [ 6.115590] hub 4-0:1.0: USB hub found [ 6.118728] hub 4-0:1.0: 1 port detected [ 6.126195] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 6.134795] init: - preinit - [ 7.757830] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 7.797890] 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.785301] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 11.280078] jffs2: notice: (477) jffs2_build_xattr_subsystem: complete building xattr subsystem, 3 of xdatum (0 unchecked, 1 orphan) and 4 of xref (1 dead, 0 orphan) found. [ 11.296673] mount_root: switching to jffs2 overlay [ 11.370966] overlayfs: upper fs does not support tmpfile. [ 11.391953] urandom-seed: Seeding with /etc/urandom.seed [ 11.629015] procd: - early - [ 11.630686] procd: - watchdog - [ 12.630532] procd: - watchdog - [ 12.633135] procd: - ubus - [ 12.841940] random: ubusd: uninitialized urandom read (4 bytes read) [ 12.854057] random: ubusd: uninitialized urandom read (4 bytes read) [ 12.859795] random: ubusd: uninitialized urandom read (4 bytes read) [ 12.868268] procd: - init - Please press Enter to activate this console. [ 13.779646] kmodloader: loading kernel modules from /etc/modules.d/* [ 13.790713] IFXOS, Version 1.5.19 (c) Copyright 2009, Lantiq Deutschland GmbH [ 13.809320] Lantiq TAPI device driver, version 3.13.0.2, (c) 2001-2010 Lantiq Deutschland GmbH [ 13.823717] NET: Registered protocol family 8 [ 13.826664] NET: Registered protocol family 20 [ 13.846123] ipip: IPv4 and MPLS over IPv4 tunneling driver [ 14.082009] PPP generic driver version 2.4.2 [ 14.097498] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 14.132522] IFX MEI Version 5.00.00 [ 14.161899] Infineon CPE API Driver version: DSL CPE API V3.24.4.4 [ 14.217268] u32 classifier [ 14.218520] input device check on [ 14.222122] Actions configured [ 14.258349] Mirror/redirect action on [ 14.288873] nf_conntrack version 0.5.0 (1024 buckets, 4096 max) [ 14.354908] Loading modules backported from Linux version v4.19-rc5-0-g6bf4ca7fbc85 [ 14.361061] Backport generated by backports.git v4.19-rc5-1-0-g05571dcd [ 14.408793] Lantiq MIPS24KEc MPS driver, version 2.2.2.5, (c) 2006-2010 Lantiq Deutschland GmbH [ 14.415994] request_timer(3, 0x000001AE, 1)... [ 14.416032] successful! [ 14.422930] Lantiq VMMC device driver, version 1.9.0.3, (c) 2006-2010 Lantiq Deutschland GmbH [ 14.464299] ip_tables: (C) 2000-2006 Netfilter Core Team [ 14.723013] NET: Registered protocol family 24 [ 14.837024] xt_time: kernel timezone is -0000 [ 15.149402] batman_adv: B.A.T.M.A.N. advanced openwrt-2018.4-0 (compatibility version 15) loaded [ 15.219722] PCI: Enabling device 0000:00:0e.0 (0000 -> 0002) [ 15.224879] rt2800pci 0000:00:0e.0: loaded eeprom from mtd device "board_config" [ 15.231133] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3572, rev 0223 detected [ 15.238717] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0008 detected [ 15.301402] kmodloader: done loading kernel modules from /etc/modules.d/* [ 17.800902] urandom_read: 5 callbacks suppressed [ 17.804105] random: jshn: uninitialized urandom read (4 bytes read) [ 39.738922] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 39.789731] br-lan: port 1(eth0.1) entered blocking state [ 39.793717] br-lan: port 1(eth0.1) entered disabled state [ 39.799552] device eth0.1 entered promiscuous mode [ 39.803572] device eth0 entered promiscuous mode [ 39.861376] IPv6: ADDRCONF(NETDEV_UP): br-lan: link is not ready [ 40.754222] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 40.760079] br-lan: port 1(eth0.1) entered blocking state [ 40.764278] br-lan: port 1(eth0.1) entered forwarding state [ 40.770476] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready [ 41.276473] IPv6: ADDRCONF(NETDEV_UP): ffuplink: link is not ready [ 41.459652] IPv6: ADDRCONF(NETDEV_CHANGE): ffuplink: link becomes ready [ 41.499489] br-wan: port 1(ffuplink_wan) entered blocking state [ 41.503963] br-wan: port 1(ffuplink_wan) entered disabled state [ 41.585148] device ffuplink_wan entered promiscuous mode [ 41.652782] br-wan: port 1(ffuplink_wan) entered blocking state [ 41.657252] br-wan: port 1(ffuplink_wan) entered forwarding state BusyBox v1.29.3 () built-in shell (ash) _____ _ __ _ | ___| (_)/ _| | | | |_ _ __ ___ _| |_ _ _ _ __ | | __ | _| '__/ _ \ | _| | | | '_ \| |/ / | | | | | __/ | | | |_| | | | | < \_| |_| \___|_|_| \__,_|_| |_|_|\_\ Firmware Freifunk Berlin (Dev-SAm0815 rev 5e2e390) Generic - lantiq/xway https://wiki.freifunk.net/Berlin:Firmware https://github.com/freifunk-berlin ----------------------------------------------------- If you find bugs please report them at: https://github.com/freifunk-berlin/firmware/issues For questions write a mail to <berlin@berlin.freifunk.net> or check https://berlin.freifunk.net/contact for our weekly meetings. root@gib-mir-einen-namen:/# [ 52.061116] random: crng init done root@gib-mir-einen-namen:/# iw list Wiphy phy0 max # scan SSIDs: 4 max scan IEs length: 2257 bytes max # sched scan SSIDs: 0 max # match sets: 0 max # scan plans: 1 max scan plan interval: -1 max scan plan iterations: 0 Retry short long limit: 2 Coverage class: 0 (up to 0m) Available Antennas: TX 0 RX 0 Supported interface modes: * IBSS * managed * AP * AP/VLAN * monitor * mesh point Band 1: Capabilities: 0x2fe HT20/HT40 SM Power Save disabled RX Greenfield RX HT20 SGI RX HT40 SGI TX STBC RX STBC 2-streams Max AMSDU length: 3839 bytes No DSSS/CCK HT40 Maximum RX AMPDU length 65535 bytes (exponent: 0x003) Minimum RX AMPDU time spacing: 2 usec (0x04) HT TX/RX MCS rate indexes supported: 0-15, 32 Frequencies: * 2412 MHz [1] (20.0 dBm) * 2417 MHz [2] (20.0 dBm) * 2422 MHz [3] (20.0 dBm) * 2427 MHz [4] (20.0 dBm) * 2432 MHz [5] (20.0 dBm) * 2437 MHz [6] (20.0 dBm) * 2442 MHz [7] (20.0 dBm) * 2447 MHz [8] (20.0 dBm) * 2452 MHz [9] (20.0 dBm) * 2457 MHz [10] (20.0 dBm) * 2462 MHz [11] (20.0 dBm) * 2467 MHz [12] (20.0 dBm) (no IR) * 2472 MHz [13] (20.0 dBm) (no IR) * 2484 MHz [14] (20.0 dBm) (no IR) valid interface combinations: * #{ managed, AP, mesh point } <= 8, total <= 8, #channels <= 1 HT Capability overrides: * MCS: ff ff ff ff ff ff ff ff ff ff * maximum A-MSDU length * supported channel width * short GI for 40 MHz * max A-MPDU length exponent * min MPDU start spacing Supported extended features: * [ RRM ]: RRM * [ CQM_RSSI_LIST ]: multiple CQM_RSSI_THOLD records * [ CONTROL_PORT_OVER_NL80211 ]: control port over nl80211


BusyBox v1.31.1 () built-in shell (ash) _______ ________ __ | |.-----.-----.-----.| | | |.----.| |_ | - || _ | -__| || | | || _|| _| |_______|| __|_____|__|__||________||__| |____| |__| W I R E L E S S F R E E D O M ----------------------------------------------------- OpenWrt SNAPSHOT, r12171-ae61d21ca3 ----------------------------------------------------- === WARNING! ===================================== There is no root password defined on this device! Use the "passwd" command to set up a new password in order to prevent unauthorized SSH logins. -------------------------------------------------- root@OpenWrt:~# dmesg [ 0.000000] Linux version 4.19.98 (builder@buildhost) (gcc version 8.3.0 (OpenWrt GCC 8.3.0 r12171-ae61d21ca3)) #0 Mon Feb 3 15:18:08 2020 [ 0.000000] SoC: Danube rev 1.5 [ 0.000000] bootconsole [early0] enabled [ 0.000000] CPU0 revision is: 00019641 (MIPS 24KEc) [ 0.000000] MIPS: machine is Arcor 803 [ 0.000000] Determined physical RAM map: [ 0.000000] memory: 04000000 @ 00000000 (usable) [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] Primary instruction cache 16kB, VIPT, 4-way, linesize 32 bytes. [ 0.000000] Primary data cache 16kB, 4-way, VIPT, no aliases, linesize 32 bytes [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000000000-0x0000000003ffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000003ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff] [ 0.000000] On node 0 totalpages: 16384 [ 0.000000] Normal zone: 144 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 16384 pages, LIFO batch:3 [ 0.000000] random: get_random_bytes called from start_kernel+0x98/0x4b0 with crng_init=0 [ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768 [ 0.000000] pcpu-alloc: [0] 0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 16240 [ 0.000000] Kernel command line: console=ttyLTQ0,115200 [ 0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes) [ 0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes) [ 0.000000] Writing ErrCtl register=00000bd0 [ 0.000000] Readback ErrCtl register=00000bd0 [ 0.000000] Memory: 56988K/65536K available (4984K kernel code, 219K rwdata, 1184K rodata, 1212K init, 215K bss, 8548K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] NR_IRQS: 256 [ 0.000000] CPU Clock: 333MHz [ 0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11467562657 ns [ 0.000018] sched_clock: 32 bits at 166MHz, resolution 6ns, wraps every 12884901885ns [ 0.007986] Calibrating delay loop... 221.18 BogoMIPS (lpj=442368) [ 0.054305] pid_max: default: 32768 minimum: 301 [ 0.059660] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.066223] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.086182] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.095887] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.102336] pinctrl core: initialized pinctrl subsystem [ 0.113733] NET: Registered protocol family 16 [ 0.136388] pinctrl-xway 1e100b10.pinmux: Init done [ 0.143206] dma-xway 1e104100.dma: Init done - hw rev: 3, ports: 5, channels: 20 [ 0.154166] PCI host bridge /fpi@10000000/pci@e105400 ranges: [ 0.159880] MEM 0x0000000018000000..0x0000000019ffffff [ 0.165148] IO 0x000000001ae00000..0x000000001affffff [ 0.243771] usbcore: registered new interface driver usbfs [ 0.249406] usbcore: registered new interface driver hub [ 0.254839] usbcore: registered new device driver usb [ 0.260628] PCI host bridge to bus 0000:00 [ 0.264690] pci_bus 0000:00: root bus resource [mem 0x18000000-0x19ffffff] [ 0.271615] pci_bus 0000:00: root bus resource [io 0x1ae00000-0x1affffff] [ 0.278557] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0] [ 0.285408] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] [ 0.294850] pci 0000:00:0e.0: [1814:3592] type 00 class 0x028000 [ 0.294930] pci 0000:00:0e.0: reg 0x10: [mem 0xffff0000-0xffffffff] [ 0.295626] pci 0000:00:0f.0: [1106:3038] type 00 class 0x0c0300 [ 0.295741] pci 0000:00:0f.0: reg 0x20: [io 0xfce0-0xfcff] [ 0.295850] pci 0000:00:0f.0: supports D1 D2 [ 0.295869] pci 0000:00:0f.0: PME# supported from D0 D1 D2 D3hot [ 0.296317] pci 0000:00:0f.1: [1106:3038] type 00 class 0x0c0300 [ 0.296430] pci 0000:00:0f.1: reg 0x20: [io 0xfce0-0xfcff] [ 0.296541] pci 0000:00:0f.1: supports D1 D2 [ 0.296560] pci 0000:00:0f.1: PME# supported from D0 D1 D2 D3hot [ 0.297011] pci 0000:00:0f.2: [1106:3104] type 00 class 0x0c0320 [ 0.297097] pci 0000:00:0f.2: reg 0x10: [mem 0x00000000-0x000000ff] [ 0.297234] pci 0000:00:0f.2: supports D1 D2 [ 0.297254] pci 0000:00:0f.2: PME# supported from D0 D1 D2 D3hot [ 0.299453] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 00 [ 0.299527] pci 0000:00:0e.0: BAR 0: assigned [mem 0x18000000-0x1800ffff] [ 0.306290] pci 0000:00:0f.2: BAR 0: assigned [mem 0x18010000-0x180100ff] [ 0.313137] pci 0000:00:0f.0: BAR 4: assigned [io 0x1ae00000-0x1ae0001f] [ 0.319994] pci 0000:00:0f.1: BAR 4: assigned [io 0x1ae00020-0x1ae0003f] [ 0.342656] clocksource: Switched to clocksource MIPS [ 0.350589] NET: Registered protocol family 2 [ 0.356813] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes) [ 0.364536] TCP established hash table entries: 1024 (order: 0, 4096 bytes) [ 0.371493] TCP bind hash table entries: 1024 (order: 0, 4096 bytes) [ 0.377894] TCP: Hash tables configured (established 1024 bind 1024) [ 0.384588] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.390429] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.397387] NET: Registered protocol family 1 [ 0.401848] pci 0000:00:0f.0: enabling device (0000 -> 0001) [ 0.407531] pci 0000:00:0f.1: enabling device (0000 -> 0001) [ 0.413250] pci 0000:00:0f.2: enabling device (0000 -> 0002) [ 0.418942] PCI: CLS 0 bytes, default 32 [ 0.425647] gptu: totally 6 16-bit timers/counters [ 0.430623] gptu: misc_register on minor 63 [ 0.434850] gptu: succeeded to request irq 126 [ 0.439372] gptu: succeeded to request irq 127 [ 0.443885] gptu: succeeded to request irq 128 [ 0.448399] gptu: succeeded to request irq 129 [ 0.452912] gptu: succeeded to request irq 130 [ 0.457426] gptu: succeeded to request irq 131 [ 0.468753] lantiq,vmmc 1f107000.vmmc: requested GPIO 465 [ 0.474109] lantiq,vmmc 1f107000.vmmc: reserved 1MB at 0x(ptrval) [ 0.482257] Crashlog allocated RAM at address 0x3f00000 [ 0.492668] workingset: timestamp_bits=14 max_order=14 bucket_order=0 [ 0.515729] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.521515] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.573550] io scheduler noop registered [ 0.577452] io scheduler deadline registered (default) [ 0.586927] 1e100c00.serial: ttyLTQ0 at MMIO 0x1e100c00 (irq = 112, base_baud = 0) is a lantiq,asc [ 0.595887] console [ttyLTQ0] enabled [ 0.603009] bootconsole [early0] disabled [ 0.612812] lantiq nor flash device: 00800000 at 10000000 [ 0.617062] ltq_nor: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x0000c2 Chip ID 0x0022cb [ 0.626060] Amd/Fujitsu Extended Query Table at 0x0040 [ 0.631058] Amd/Fujitsu Extended Query version 1.1. [ 0.635935] number of CFI chips: 1 [ 0.639282] 4 fixed-partitions partitions found on MTD device ltq_nor [ 0.645466] Creating 4 MTD partitions on "ltq_nor": [ 0.650212] 0x000000000000-0x000000030000 : "uboot" [ 0.656781] 0x000000030000-0x000000040000 : "uboot_env" [ 0.662429] 0x000000040000-0x0000007f0000 : "firmware" [ 0.714449] 2 uimage-fw partitions found on MTD device firmware [ 0.718915] 0x000000040000-0x00000023fd93 : "kernel" [ 0.725498] 0x00000023fd93-0x0000007f0000 : "rootfs" [ 0.730953] mtd: device 4 (rootfs) set to be root filesystem [ 0.735238] 1 squashfs-split partitions found on MTD device rootfs [ 0.741163] 0x000000530000-0x0000007f0000 : "rootfs_data" [ 0.748278] 0x0000007f0000-0x000000800000 : "board_config" [ 0.758251] libphy: Fixed MDIO Bus: probed [ 0.784686] switch0: Atheros AR8216 rev. 1 switch registered on 1e180000.etop-ffffffff [ 0.828570] libphy: ltq_mii: probed [ 0.872203] Atheros AR8216/AR8236/AR8316 1e180000.etop-ffffffff:00: attached PHY driver [Atheros AR8216/AR8236/AR8316] (mii_bus:phy_addr=1e180000.etop-ffffffff:00, irq=POLL) [ 0.888799] wdt 1f8803f0.watchdog: Init done [ 0.900905] NET: Registered protocol family 10 [ 0.925578] Segment Routing with IPv6 [ 0.928047] NET: Registered protocol family 17 [ 0.932298] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 0.944729] 8021q: 802.1Q VLAN Support v1.8 [ 0.959643] OF: fdt: not creating '/sys/firmware/fdt': CRC check failed [ 0.978879] VFS: Mounted root (squashfs filesystem) readonly on device 31:4. [ 0.992124] Freeing unused kernel memory: 1212K [ 0.995235] This architecture does not have kernel memory protection. [ 1.001454] Run /sbin/init as init process [ 1.166967] random: fast init done [ 2.648166] init: Console is alive [ 2.650737] init: - watchdog - [ 5.215691] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 5.493818] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 5.501694] ehci-platform: EHCI generic platform driver [ 5.509121] ehci-pci: EHCI PCI platform driver [ 5.512509] ehci-pci 0000:00:0f.2: EHCI Host Controller [ 5.517307] ehci-pci 0000:00:0f.2: new USB bus registered, assigned bus number 1 [ 5.524607] ehci-pci 0000:00:0f.2: irq 135, io mem 0x18010000 [ 5.542760] ehci-pci 0000:00:0f.2: USB 2.0 started, EHCI 1.00 [ 5.549103] hub 1-0:1.0: USB hub found [ 5.552430] hub 1-0:1.0: 4 ports detected [ 5.562049] uhci_hcd: USB Universal Host Controller Interface driver [ 5.567283] uhci_hcd 0000:00:0f.0: UHCI Host Controller [ 5.572069] uhci_hcd 0000:00:0f.0: new USB bus registered, assigned bus number 2 [ 5.579261] uhci_hcd 0000:00:0f.0: irq 135, io base 0x1ae00000 [ 5.588207] hub 2-0:1.0: USB hub found [ 5.591535] hub 2-0:1.0: 2 ports detected [ 5.596072] uhci_hcd 0000:00:0f.1: UHCI Host Controller [ 5.599956] uhci_hcd 0000:00:0f.1: new USB bus registered, assigned bus number 3 [ 5.607107] uhci_hcd 0000:00:0f.1: irq 135, io base 0x1ae00020 [ 5.616723] hub 3-0:1.0: USB hub found [ 5.620020] hub 3-0:1.0: 2 ports detected [ 5.635966] dwc2 1e101000.usb: 1e101000.usb supply vusb_d not found, using dummy regulator [ 5.642999] dwc2 1e101000.usb: Linked as a consumer to regulator.0 [ 5.648734] dwc2 1e101000.usb: 1e101000.usb supply vusb_a not found, using dummy regulator [ 5.669781] dwc2 1e101000.usb: dwc2_core_reset: HANG! Soft Reset timeout GRSTCTL GRSTCTL_CSFTRST [ 5.678409] dwc2: probe of 1e101000.usb failed with error -16 [ 5.684576] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 5.701115] init: - preinit - [ 7.657697] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 7.690888] random: procd: uninitialized urandom read (4 bytes read) [ 8.687027] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 12.084957] mount_root: jffs2 not ready yet, using temporary tmpfs overlay [ 12.140769] urandom-seed: Seed file not found (/etc/urandom.seed) [ 12.422588] procd: - early - [ 12.424350] procd: - watchdog - [ 13.223847] procd: - watchdog - [ 13.226406] procd: - ubus - [ 13.326622] random: ubusd: uninitialized urandom read (4 bytes read) [ 13.333268] random: ubusd: uninitialized urandom read (4 bytes read) [ 13.339161] random: ubusd: uninitialized urandom read (4 bytes read) [ 13.347825] procd: - init - [ 14.975607] kmodloader: loading kernel modules from /etc/modules.d/* [ 14.991124] IFXOS, Version 1.5.19 (c) Copyright 2009, Lantiq Deutschland GmbH [ 15.024681] Lantiq TAPI device driver, version 3.13.0.2, (c) 2001-2010 Lantiq Deutschland GmbH [ 15.060908] NET: Registered protocol family 8 [ 15.063860] NET: Registered protocol family 20 [ 15.099031] PPP generic driver version 2.4.2 [ 15.165914] IFX MEI Version 5.00.00 [ 15.201301] Infineon CPE API Driver version: DSL CPE API V3.24.4.4 [ 15.244670] Loading modules backported from Linux version v5.4-rc8-0-gaf42d3466bdc [ 15.250751] Backport generated by backports.git v5.4-rc8-1-0-g368e8c51 [ 15.292837] Lantiq MIPS24KEc MPS driver, version 2.2.2.5, (c) 2006-2010 Lantiq Deutschland GmbH [ 15.300045] request_timer(3, 0x000001AE, 1)... [ 15.300078] successful! [ 15.307015] Lantiq VMMC device driver, version 1.9.0.3, (c) 2006-2010 Lantiq Deutschland GmbH [ 15.396753] NET: Registered protocol family 24 [ 15.444494] xt_time: kernel timezone is -0000 [ 15.818152] rt2800pci 0000:00:0e.0: enabling device (0000 -> 0002) [ 15.824172] rt2800pci 0000:00:0e.0: loaded eeprom from mtd device "board_config" [ 15.830101] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3572, rev 0223 detected [ 15.837693] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0008 detected [ 15.845756] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht' [ 16.043044] kmodloader: done loading kernel modules from /etc/modules.d/* [ 16.101732] urngd: v1.0.2 started. [ 16.764537] random: crng init done [ 16.766464] random: 6 urandom warning(s) missed due to ratelimiting [ 31.790753] USB_VBUS: disabling [ 60.092946] jffs2_scan_eraseblock(): End of filesystem marker found at 0x0 [ 60.114146] jffs2_build_filesystem(): unlocking the mtd device... [ 60.114159] done. [ 60.120618] jffs2_build_filesystem(): erasing all blocks after the end marker... [ 65.040401] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 65.083574] br-lan: port 1(eth0.1) entered blocking state [ 65.087588] br-lan: port 1(eth0.1) entered disabled state [ 65.093511] device eth0.1 entered promiscuous mode [ 65.097429] device eth0 entered promiscuous mode [ 65.134031] IPv6: ADDRCONF(NETDEV_UP): br-lan: link is not ready [ 66.063127] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 66.069003] br-lan: port 1(eth0.1) entered blocking state [ 66.073191] br-lan: port 1(eth0.1) entered forwarding state [ 66.079411] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready [ 90.506824] done. [ 90.507362] jffs2: notice: (1286) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found. [ 90.865356] overlayfs: upper fs does not support tmpfile.


This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
  • Last modified: 2024/02/12 08:58
  • by 127.0.0.1