Siemens Gigaset 604 IL

The Gigaset 604 IL is a fully featured Lantiq Danube XWAY-based IAD.

The board is labled PORTA 2.0, it's probably very similar to the BTHOMEHUBV2B

Known alternative product name is Orange Siemens smart box

The bootloader is locked with a password (but you can get around it easily) and it seems to run Jungo's OpenRG firmware.

The device is not fully supported yet (but about to be)

CPU Ram Flash Network WiFi USB POTS Serial JTag
Lantiq Danube-S XWAY@333MHz 64MiB 0.5MiB NOR + 32MiB NAND 4x ETH, ADSL2+ 802.11bgn 2T2R 1x USB2.0 2xFXS, 1xFXO Yes EJTAG 3.1

Working:

  • serial :)
  • Ethernet (tested)
  • USB (tested)
  • NAND (tested)
  • TAPI/VoIP (probed ok, not tested)
  • ADSL (driver loads, not tested)

Not working yet:

  • NOR support is somehow still disturbed: Even though JEDEC probe is enabled and added to lantiq-flash, it won't find the flash chip. From the code it already looks like some byte-swapping quirk is needed for the probe to work... Maybe something goes wrong there... Users of the BTHOMEHUBV2B reported similar problems, apparently the flash worked in 3.3.8 but stopped working with more recent kernels.
  • WiFi: I figured this can be done in user-space, similar to how it works on the Netgear DGN3500B
  • Rebooting: The board just halts instead of rebooting.

Unsupportable:

  • DECT: Will probably never work (unless someone wants to implement a driver for it)
Architecture MIPS
Vendor Lantiq
bootloader U-Boot
System-On-Chip Lantiq Danube-S XWAY 1.3
CPU/Speed 24KEc, 333MHz
Flash-Chips Spansion S29AL004D, Samsung K9F5608U0D
Flash size 512 KiB NOR + 32 MiB NAND
RAM 64 MiB
Wireless Atheros AR9160-B 2.4GHz 802.11bgn
POTS 2x FXS Infineon PEF 4268F
1x FXO Teridian 73M1866B
DECT SiTel SC14488
Ethernet Lantiq/Infineon XWAY TANTOS PSB6973
Internet ADSL2+
USB Yes, 1 x USB2.0 (IFXUSB)
Serial Yes
JTAG Yes

The board got an 3.3V TTL as shown on the picture below. It runs on 115200 8n1.

PIN 1 and PIN 2 are aparently BOOTSELECT signals. If you short them, you can run an UART loader (useful in case you bricked the board).

The procedure is the same as described in the page of ARV7518PW

ROM VER: 1.0.3                                                                                            
CFG 04                                                                                                    
Read EEPROMX                                                                                              
 X                                                                                                        
UART

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

The board provides a EJTAG pads, see the 14-pins underneath the serial port on the left. After adding minimal support code to UrJTAG and OpenOCD, both MIPS cores are detected:

jtag> detect
IR length: 10
Chain length: 2
Device Id: 00000000000000000000000110000011 (0x00000183)
  Manufacturer: Lantiq (0x183)
  Part(0):      MIPS SoC (0x000)
  Stepping:     NoDoc
  Filename:     /usr/share/urjtag/lantiq/mips/danube
Device Id: 00000000000000000000000110000011 (0x00000183)
  Manufacturer: Lantiq (0x183)
  Part(1):      MIPS SoC (0x000)
  Stepping:     NoDoc
  Filename:     /usr/share/urjtag/lantiq/mips/danube
Initialized bus 1, active bus 0
ImpCode=01100000010000010100000000000000 60414000
EJTAG version: 3.1
EJTAG Implementation flags: R4k ASID_8 MIPS16 NoDMA MIPS32
error: illegal state: Failed to enter debug mode, ctrl=100000000000000011010000000

However, neither remote gdb nor direct flash access is yet possible.

The bootloader is locked with a password, however, we were generously provided with a bug/feature: If PIN 2 (next to RX) is pulled down, NAND fails. Once that happens during a normal (non-interrupted) firmware load, (i.e. while it's counting up from 0% to 100% in the boot phase) we are dropped onto an u-boot shell. Unfortunately, this U-Boot doesn't support LZMA compression (thus I'm for now testing with uncompressed uImages).

Support for a fully-featured and recent version of U-Boot is in the making.

/dts-v1/;

/include/ "danube.dtsi"

/ {
	model = "PORTA2 - Siemens Gigaset 604";

	chosen {
		bootargs = "console=ttyLTQ0,115200 init=/etc/preinit ubi.mtd=linux";
	};

	memory@0 {
		reg = <0x0 0x4000000>;
	};

	sram@1F000000 {
		vmmc@107000 {
			status = "okay";
			gpios = <&gpio 31 0>;
		};
	};

	fpi@10000000 {
		#address-cells = <1>;
		#size-cells = <1>;
		localbus@0 {
			#address-cells = <2>;
			#size-cells = <1>;
			ranges = <0 0 0x0 0x3ffffff /* addrsel0 */
			  1 0 0x4000000 0x4000010>; /* addsel1 */
			compatible = "lantiq,localbus", "simple-bus";

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

				partition@0 {
					label = "uboot";
					reg = <0x0 0x70000>;
				};

				partition@60000 {
					label = "uboot_env";
					reg = <0x60000 0x10000>;
				};

				partition@70000 {
					label = "art";
					reg = <0x70000 0x10000>;
				};

			};

			nand-parts@0 {
				compatible = "gen_nand", "lantiq,nand-xway";
				lantiq,cs = <1>;
				bank-width = <2>;
				reg = <1 0x0 0x2000000>;
				#address-cells = <1>;
				#size-cells = <1>;

				partition@4000 {
					label = "linux";
					reg = <0x4000 0x1FFC000>;
				};
			};

			gpiomm: gpiomm@4000000 {
				compatible = "lantiq,gpio-mm";
				reg = <1 0x0 0x10 >;
				#address-cells = <1>;
				#size-cells = <1>;
				#gpio-cells = <2>;
				gpio-controller;
				lantiq,shadow = <0x0>;
			};

			mac_addr {
				compatible = "lantiq,eth-mac";
				reg = <0 0x4000016 0x6>;
				mac-increment = <2>;
			};

			ath9k_eep {
				compatible = "ath9k,eeprom";
				reg = <0 0x4000000 0x800
				       0 0x4000016 0x6>;
				ath,mac-increment = <1>;
				ath,pci-slot = <14>;
				ath,eep-swap;
			};
		};

		gpio: pinmux@E100B10 {
			compatible = "lantiq,pinctrl-xway";
			pinctrl-names = "default";
			pinctrl-0 = <&state_default>;

			#gpio-cells = <2>;
			gpio-controller;
			reg = <0xE100B10 0xA0>;

			state_default: pinmux {
				stp {
					lantiq,groups = "stp";
					lantiq,function = "stp";
				};
				ebu {
					lantiq,groups = "ebu cs1";
					lantiq,function = "ebu";
				};
				nand_out {
					lantiq,groups = "nand cle", "nand ale",
						"ebu a24", "ebu a23", "ebu cs1";
					lantiq,function = "ebu";
					lantiq,direction = <1>;
					lantiq,pull = <0>;
				};
				nand_in {
					lantiq,groups = "nand cs1";
					lantiq,function = "ebu";
					lantiq,direction = <0>;
					lantiq,open-drain = <1>;
					lantiq,pull = <2>;
				};
				exin {
					lantiq,groups = "exin1";
					lantiq,function = "exin";
				};
				pci {
					lantiq,groups = "gnt1";
					lantiq,function = "pci";
				};
				conf_out {
					lantiq,pins = "io4", "io5", "io6";
					lantiq,open-drain;
					lantiq,pull = <0>;
				};
			};
		};

		etop@E180000 {
			phy-mode = "rmii";
		};

		ifxhcd@E101000 {
			status = "okay";
			gpios = <&gpio 14 0>;
		};

		stp0: stp@E100BB0 {
			#gpio-cells = <2>;
			compatible = "lantiq,gpio-stp-xway";
			gpio-controller;
			reg = <0xE100BB0 0x40>;
			lantiq,shadow = <0xfff>;
			lantiq,groups = <0x3>;
		};

		pci@E105400 {
			status = "okay";
			lantiq,bus-clock = <33333333>;
			gpio-reset = <&gpio 21 0>;
			req-mask = <0x1>;
		};
	};
};

OpenWrt boots off an uncompressed uImage transfered via TFTP:

## Booting image at 81000000 ... Image Name: OpenWrt ramdisk image Created: 2013-02-28 16:33:32 UTC Image Type: MIPS Linux Kernel Image (uncompressed) Data Size: 9579932 Bytes = 9.1 MB Load Address: 80002000 Entry Point: 80002000 Verifying Checksum ... OK OK Starting kernel ... [ 0.000000] Linux version 3.7.9 (daniel@earthship) (gcc version 4.6.4 20121210 (prerelease) (Linaro GCC 4.6-2012.12) ) #6 Thu Feb 28 18:30:54 IST 2013 [ 0.000000] SoC: Danube rev 1.3 [ 0.000000] bootconsole [early0] enabled [ 0.000000] CPU revision is: 00019641 (MIPS 24KEc) [ 0.000000] Board: PORTA2 - Siemens Gigaset 604 [ 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] __ex_table already sorted, skipping sort [ 0.000000] Writing ErrCtl register=00052538 [ 0.000000] Readback ErrCtl register=00052538 [ 0.000000] Memory: 55308k/65536k available (2527k kernel code, 10228k reserved, 778k data, 6092k init, 0k highmem) [ 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: 512 [ 0.044000] pinctrl core: initialized pinctrl subsystem [ 0.048000] NET: Registered protocol family 16 [ 0.068000] pinctrl-xway 1e100b10.pinmux: Init done [ 0.072000] dma-xway 1e104100.dma: Init done - hw rev: 3, ports: 5, channels: 20 [ 0.080000] ath9k,eeprom 107f0400.ath9k_eep: endian check enabled. [ 0.084000] ath9k,eeprom 107f0400.ath9k_eep: checksum fixed. [ 0.088000] ath9k,eeprom 107f0400.ath9k_eep: pci slot: 14 [ 0.092000] ath9k,eeprom 107f0400.ath9k_eep: loaded ath9k eeprom [ 0.096000] PCI host bridge /fpi@10000000/pci@E105400 ranges: [ 0.100000] MEM 0x0000000018000000..0x0000000019ffffff [ 0.104000] IO 0x000000001ae00000..0x000000001affffff [ 0.128000] 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.164000] Switching to clocksource MIPS [ 0.172000] NET: Registered protocol family 2 [ 0.180000] TCP established hash table entries: 2048 (order: 2, 16384 bytes) [ 0.184000] TCP bind hash table entries: 2048 (order: 1, 8192 bytes) [ 0.192000] TCP: Hash tables configured (established 2048 bind 2048) [ 0.200000] TCP: reno registered [ 0.200000] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.208000] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.216000] NET: Registered protocol family 1 [ 0.428000] gptu: totally 6 16-bit timers/counters [ 0.432000] gptu: misc_register on minor 63 [ 0.436000] gptu: succeeded to request irq 126 [ 0.440000] gptu: succeeded to request irq 127 [ 0.444000] gptu: succeeded to request irq 128 [ 0.452000] gptu: succeeded to request irq 129 [ 0.456000] gptu: succeeded to request irq 130 [ 0.460000] gptu: succeeded to request irq 131 [ 0.472000] lantiq,vmmc 1f103000.vmmc: requested GPIO 255 [ 0.476000] lantiq,vmmc 1f103000.vmmc: reserved 1MB at 0x02d00000 [ 0.488000] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.496000] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.504000] msgmni has been set to 108 [ 0.508000] io scheduler noop registered [ 0.512000] io scheduler deadline registered (default) [ 0.520000] 1e100c00.serial: ttyLTQ0 at MMIO 0x1e100c00 (irq = 112) is a lantiq,asc [ 0.528000] console [ttyLTQ0] enabled, bootconsole disabled [ 0.528000] console [ttyLTQ0] enabled, bootconsole disabled [ 0.544000] ltq-nor 10000000.nor-boot: probing failed [ 0.548000] NAND device: Manufacturer ID: 0xec, Chip ID: 0x75 (Samsung NAND 32MiB 3,3V 8-bit), page size: 512, OOB size: 16 [ 0.556000] Scanning device for bad blocks [ 0.660000] 2 ofpart partitions found on MTD device 14000000.nand-parts [ 0.664000] Creating 2 MTD partitions on "14000000.nand-parts": [ 0.668000] 0x000000000000-0x000000004000 : "art" [ 0.676000] 0x000000004000-0x000002000000 : "linux" [ 0.684000] Creating 2 MTD partitions on "14000000.nand-parts": [ 0.688000] 0x000000004000-0x0000009ec000 : "kernel" [ 0.696000] 0x0000009ec000-0x000002000000 : "rootfs" [ 0.704000] mtd: partition "rootfs" set to be root filesystem [ 0.708000] split_squashfs: no squashfs found in "14000000.nand-parts" [ 0.724000] etop: invalid MAC, using random [ 0.756000] libphy: ltq_mii: probed [ 0.756000] eth0: psb6970 switch driver attached. [ 0.764000] eth0: attached PHY [Lantiq PSB6970] (phy_addr=1e180000.etop-ff:00, irq=-1) [ 0.776000] wdt 1f8803f0.watchdog: Init done [ 0.780000] TCP: cubic registered [ 0.780000] NET: Registered protocol family 17 [ 0.784000] 8021q: 802.1Q VLAN Support v1.8 [ 0.832000] Freeing unused kernel memory: 6092k freed - preinit - Press the [f] key and hit [enter] to enter failsafe mode - regular preinit - - init - Please press Enter to activate this console. [ 5.916000] IFXOS, Version 1.5.14 (c) Copyright 2009, Lantiq Deutschland GmbH [ 5.936000] Compat-drivers backport release: compat-drivers-2013-01-21-1 [ 5.940000] Backport based on wireless-testing.git master-2013-02-22 [ 5.948000] compat.git: wireless-testing.git [ 5.984000] cfg80211: Calling CRDA to update world regulatory domain [ 5.988000] cfg80211: World regulatory domain updated: [ 5.992000] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp) [ 6.000000] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) [ 6.008000] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) [ 6.016000] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm) [ 6.024000] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) [ 6.028000] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm) [ 6.132000] Lantiq TAPI device driver, version 3.13.0.2, (c) 2001-2010 Lantiq Deutschland GmbH [ 6.176000] SCSI subsystem initialized [ 6.252000] Lantiq MIPS24KEc MPS driver, version 2.2.2.5, (c) 2006-2010 Lantiq Deutschland GmbH [ 6.256000] request_timer(3, 0x000001AE, 1)...successful! [ 6.264000] Lantiq VMMC device driver, version 1.9.0.3, (c) 2006-2010 Lantiq Deutschland GmbH [ 6.396000] NET: Registered protocol family 8 [ 6.396000] NET: Registered protocol family 20 [ 6.544000] IFX MEI Version 5.00.00 [ 6.568000] IFXUSB: ifxusb_hcd: version 3.2 B110801 [ 7.076000] IFXUSB: USB core #0 soft-reset [ 7.276000] IFXUSB: USB core #0 soft-reset [ 7.280000] ifxusb_hcd ifxusb_hcd: IFX USB Controller [ 7.284000] ifxusb_hcd ifxusb_hcd: new USB bus registered, assigned bus number 1 [ 7.292000] ifxusb_hcd ifxusb_hcd: irq 62, io mem 0xbe101000 [ 7.296000] IFXUSB: Mode Mismatch Interrupt: currently in Host mode [ 7.304000] IFXUSB: Mode Mismatch Interrupt: currently in Host mode [ 7.308000] IFXUSB: Init: Power Port (0) [ 7.316000] hub 1-0:1.0: USB hub found [ 7.316000] hub 1-0:1.0: 1 port detected [ 7.320000] ifxusb_hcd ifxusb_hcd: requested GPIO 238 [ 7.368000] [ 7.368000] [ 7.368000] Infineon CPE API Driver version: DSL CPE API V3.24.4.4 [ 7.416000] ATM1.0.26 ATM (A1) firmware version 0.17 [ 7.420000] ifxmips_atm: ATM init succeed [ 7.516000] Initializing USB Mass Storage driver... [ 7.520000] usbcore: registered new interface driver usb-storage [ 7.524000] USB Mass Storage support registered. [ 10.324000] device eth0 entered promiscuous mode [ 10.332000] br-lan: port 1(eth0) entered forwarding state [ 10.336000] br-lan: port 1(eth0) entered forwarding state [ 12.340000] br-lan: port 1(eth0) entered forwarding state


U-Boot 1.3.1 (Feb 3 2009 - 16:06:52) Board: DANUBE (0x3012b083) Chip V1.3 CPU Speed 333 MHz DR Speed 166 MHz FPI Speed 83 MHz Setting up clock generators... DRAM: 64 MB Flash: 512 kB In: serial Out: serial Err: serial danube Switch NAND: 32 MiB Hit any key to stop autoboot: 3  2  1  0 Enter username: Enter password: Enter username: Enter password: Enter username: Enter password: Looking for active section/image: 0. section: type:0 not an image 1. section: type:4 not an image 2. section: type:3 not an image 3. section: type:3 not an image 4. section: type:1 not an image 5. section: type:2 Reading data from 0x4000 -- [...] complete.Reading data from 0xe03e00 -- 100% complete. checking ... ok: 'Image downloaded from: ftp://192.118.8.178/3_1_openrg_porta2_62_1_20.rmt' 0x9e4040@0xa0500000 count:0x1ac7 6. section: type:6 not an image 7. section: type:2 Reading data from 0xf00000 -- [...] 100% complete. checking ... ok: 'Image downloaded from: ftp://192.118.8.178/3_1_openrg_62.1.9.rmt' 0x9d8040@0xa1300000 count:0x373 8. section: type:7 not an image Active section/image: 0xa0500000 count:0x1ac7. ## Booting image at a0500000 ... Image Name: OpenRG Created: 2010-06-24 9:20:25 UTC Image Type: MIPS Linux Kernel Image (uncompressed) Data Size: 10371072 Bytes = 9.9 MB Load Address: 80002000 Entry Point: 80002790 Verifying Checksum ... OK OK Starting kernel ... TODO: chip version memsize=64M Reserving memory for CP1 @0xa3f00000 memsize=63M Reserving memory for Crash Logger @0xa3ec0000 memsize=64256K CPU revision is: 00019641 Primary instruction cache 16kB, physically tagged, 4-way, linesize 32 bytes. Primary data cache 16kB, 4-way, linesize 32 bytes. Linux version 2.4.31 #2 Thu Jun 24 12:20:15 IDT 2010 Determined physical RAM map: memory: 00100000 @ 03f00000 (reserved) memory: 00040000 @ 03ec0000 (reserved) User-defined physical RAM map: memory: 03ec0000 @ 00000000 (usable) On node 0 totalpages: 16064 zone(0): 16064 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=64256K mips_hpt_frequency:166666667 r4k_offset: 00196e6a(1666666) Using 166.667 MHz high precision timer. Calibrating delay loop... 222.00 BogoMIPS Memory: 52704k/64256k available (2295k kernel code, 11552k reserved, 7808k data, 8k init, 0k highmem) Dentry cache hash table entries: 8192 (order: 4, 65536 bytes) Inode cache hash table entries: 4096 (order: 3, 32768 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 1024 (order: 0, 4096 bytes) Page-cache hash table entries: 16384 (order: 4, 65536 bytes) Checking for 'wait' instruction... available. POSIX conformance testing by UNIFIX PCI: Probing PCI hardware on host bus 0. Autoconfig PCI channel 0x80264e30 Scanning bus 00, I/O 0x1ae00000:0x1b000001, Mem 0x18000000:0x1a000001 00:0e.0 Class 0200: 168c:ff1d (rev 01) Mem at 0x18000000 [size=0x10000] Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd Journalled Block Device driver loaded fs/cramfs_block_uncompressed created fuse init (API version 7.5) Initializing Cryptographic API loop: loaded (max 8 devices) SCSI subsystem driver Revision: 1.00 NET4: Linux TCP/IP 1.0 for NET4.0 IP Protocols: ICMP, UDP, TCP, IGMP IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 4096 bind 8192) NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com> All bugs added by David S. Miller <davem@redhat.com> usb.c: registered new driver usbdevfs usb.c: registered new driver hub usb.c: registered new driver usblp printer.c: v0.13: USB Printer Device Class driver Initializing USB Mass Storage driver... usb.c: registered new driver usb-storage USB Mass Storage support registered. cgu: misc_register on minor = 63 PORTA2: CPLD interrupts configured. PORTA2: CPLD access enabled. PORTA2: CPLD directs SPI CS line to FXO. ppe: ATM init succeeded (firmware version 1.1.0.2.1.13) danube MAC driver loaded! gptu: totally 6 16-bit timers/counters gptu: misc_register on minor 62 gptu: succeeded to request irq 118 gptu: succeeded to request irq 119 gptu: succeeded to request irq 120 gptu: succeeded to request irq 121 gptu: succeeded to request irq 122 gptu: succeeded to request irq 123 DANUBE MIPS24KEc MPS mailbox driver, Version 1.2.6 (c) Copyright 2006, Infineon Technologies AG ifx_mps_init_gpt_danube() - attaching to falling edge... ifx_mps_init_gpt_danube() - calibration done, waited 97 loops! IFX_MPS: using proc fs NAND device: Manufacturer ID: 0xec, Chip ID: 0x75 (Samsung NAND 32MiB 3,3V 8-bit) Scanning device for bad blocks Creating 3 MTD partitions on "Danube Nand Controller": 0x00000000-0x02000000 : "OpenRG (Entire NAND)" 0x01e00000-0x02000000 : "Dect configuration" 0x00000000-0x00004000 : "Atheros EEPROM" Init NAND controller succeeded! oamk: init_module() called. Opening oam kernel socket oamk: init_module() returned. Danube Port Initialization ttyS0 at MEM 0xbe100400 (irq = 2) is a IFX_ASC ttyS1 at MEM 0xbe100c00 (irq = 9) is a IFX_ASC VFS: Mounted root (tmpfs filesystem). Mount of initial cramfs successful Freeing init cramfs memory: 64k freed Freeing unused kernel memory: 8k freed Mounting cramfs imageAlgorithmics/MIPS FPU Emulator v1.5 Version: 4.10.4.2.7.1.62.1.20 Platform: SHC PORTA V2.0 board based on Infineon Danube Compilation Time: 24-Jun-10 09:14:59 Tag: Ntag-4_10_4_2_7_1_62_1_20 Compilation Flags: DIST=PORTA2_PARTNER User Information: bat@marco /home/bat/bat/porta2_partner_support_4_10_4_2_7_1_62_1/rg insmod: add-symbol-file build/debug/be_pppoa_mod.o 0xc0000060 -s .data 0xc0000f30 -s .bss 0xc0000f30 insmod: add-symbol-file build/debug/mei.o 0xc0002060 -s .data 0xc00116b0 -s .bss 0xc0012070 Danube MEI version:1.00.09 Danube MEI MIB version:0.90.04 Jan 1 00:00:05 10.unknown[15]: sock_socket_dev:1492: created fd 0 for ip 0.0.0.0 port 0 Jan 1 00:00:05 10.unknown[15]: Failed ipc connect Network is unreachable insmod: add-symbol-file build/debug/one_module.o 0xc0014060 -s .main_flow 0xc0059f80 -s .data 0xc00651d0 -s .bss 0xc0067100 Loading license 643d3aff8c13be080a7e71bea0cddc20acfb409647f0c79a77acb5f0.jungo_rnd loading license key: jungo_rnd insmod: add-sklog: Using RAM buffer at address 0xa3ec0000 size 0x40000 klog: Invalid magic or checksum, reseting all information. memsize=64M Reserving memory for CP1 @0xa3f00000 memsize=63M Reserving memory for Crash Logger @0xa3ec0000 memsize=64256K CPU revision is: 00019641 Primary instruction cache 16kB, physically tagged, 4-way, linesize 32 bytes. Primary data cache 16kB, 4-way, linesize 32 bytes. Linux version 2.4.31 #2 Thu Jun 24 12:20:15 IDT 2010 Determined physical RAM map: memory: 00100000 @ 03f00000 (reserved) memory: 00040000 @ 03ec0000 (reserved) User-defined physical RAM map: memory: 03ec0000 @ 00000000 (usable) On node 0 totalpages: 16064 zone(0): 16064 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=64256K mips_hpt_frequency:166666667 r4k_offset: 00196e6a(1666666) Using 166.667 MHz high precision timer. Calibrating delay loop... 222.00 BogoMIPS Memory: 52704k/64256k available (2295k kernel code, 11552k reserved, 7808k data, 8k init, 0k highmem) Dentry cache hash table entries: 8192 (order: 4, 65536 bytes) Inode cache hash table entries: 4096 (order: 3, 32768 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 1024 (order: 0, 4096 bytes) Page-cache hash table entries: 16384 (order: 4, 65536 bytes) Checking for 'wait' instruction... available. POSIX conformance testing by UNIFIX PCI: Probing PCI hardware on host bus 0. Autoconfig PCI channel 0x80264e30 Scanning bus 00, I/O 0x1ae00000:0x1b000001, Mem 0x18000000:0x1a000001 00:0e.0 Class 0200: 168c:ff1d (rev 01) Mem at 0x18000000 [size=0x10000] Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd Journalled Block Device driver loaded fs/cramfs_block_uncompressed created fuse init (API version 7.5) Initializing Cryptographic API loop: loaded (max 8 devices) SCSI subsystem driver Revision: 1.00 NET4: Linux TCP/IP 1.0 for NET4.0 IP Protocols: ICMP, UDP, TCP, IGMP IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 4096 bind 8192) NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com> All bugs added by David S. Miller <davem@redhat.com> usb.c: registered new driver usbdevfs usb.c: registered new driver hub usb.c: registered new driver usblp printer.c: v0.13: USB Printer Device Class driver Initializing USB Mass Storage driver... usb.c: registered new driver usb-storage USB Mass Storage support registered. cgu: misc_register on minor = 63 PORTA2: CPLD interrupts configured. PORTA2: CPLD access enabled. PORTA2: CPLD directs SPI CS line to FXO. ppe: ATM init succeeded (firmware version 1.1.0.2.1.13) danube MAC driver loaded! gptu: totally 6 16-bit timers/counters gptu: misc_register on minor 62 gptu: succeeded to request irq 118 gptu: succeeded to request irq 119 gptu: succeeded to request irq 120 gptu: succeeded to request irq 121 gptu: succeeded to request irq 122 gptu: succeeded to request irq 123 DANUBE MIPS24KEc MPS mailbox driver, Version 1.2.6 (c) Copyright 2006, Infineon Technologies AG ifx_mps_init_gpt_danube() - attaching to falling edge... ifx_mps_init_gpt_danube() - calibration done, waited 97 loops! IFX_MPS: using proc fs NAND device: Manufacturer ID: 0xec, Chip ID: 0x75 (Samsung NAND 32MiB 3,3V 8-bit) Scanning device for bad blocks Creating 3 MTD partitions on "Danube Nand Controller": 0x00000000-0x02000000 : "OpenRG (Entire NAND)" 0x01e00000-0x02000000 : "Dect configuration" 0x00000000-0x00004000 : "Atheros EEPROM" Init NAND controller succeeded! oamk: init_module() called. Opening oam kernel socket oamk: init_module() returned. Danube Port Initialization ttyS0 at MEM 0xbe100400 (irq = 2) is a IFX_ASC ttyS1 at MEM 0xbe100c00 (irq = 9) is a IFX_ASC VFS: Mounted root (tmpfs filesystem). Mount of initial cramfs successful Freeing init cramfs memory: 64k freed Freeing unused kernel memory: 8k freed Mounting cramfs image at 'cramfs' Algorithmics/MIPS FPU Emulator v1.5 Danube MEI version:1.00.09 Danube MEI MIB version:0.90.04 Loading license 643d3aff8c13be080a7e71bea0cddc20acfb409647f0c79a77acb5f0.jungo_rnd loading license key: jungo_rnd klog: Using RAM buffer at address 0xa3ec0000 size 0x40000 klog: Invalid magic or checksum, reseting all information. klog chardev initialized. klog initialization succeeded ymbol-file build/debug/rg_klog.o 0xc00a2060 -s .data 0xc00a2ff0 -s .bss 0xc00a3070 insmod: add-symbol-file build/debug/switch_port_dev.o 0xc00a5060 -s .data 0xc00a6080 -s .bss 0xc00a60b0 loading license key: jungo_rnd insmod: add-symbol-file build/debug/dev_flash_module.o 0xc00a8060 -s .data 0xc00a8d10 -s .bss 0xc00a8eb0 insmod: add-symbol-file build/debug/jffs2.o 0xc00aa060 -s .data 0xc00c3b30 -s .bss 0xc00c4830 JFFS2 version 2.2. (NAND) (C) 2001-2003 Red Hat, Inc. insmod: add-symbol-file build/debug/kleds_mod.o 0xc0136060 -s .data 0xc0136890 -s .bss 0xc0136940 insmod: add-symbol-file build/debug/ath_hal.o 0xc0138060 -s .data 0xc01679d0 -s .bss 0xc016fa20 ath_hal: 0.9.14.25 (AR5416, REGOPS_FUNC) insmod: add-symbol-file build/debug/wlan.o 0xc0172060 -s .data 0xc019aa30 -s .bss 0xc019af60 wlan: 0.8.4.2 (Atheros/multi-bss) insmod: add-symbol-file build/debug/ath_ath_rate_atheros: Version 2.0.1 Copyright (c) 2001-2004 Atheros Communications, Inc, All Rights Reserved rate_atheros.o 0xc019d060 -s .data 0xc01a18b0 -s .bss 0xc01aa230 insmod: add-symbol-file build/debug/ath_dfs.o 0xc01ac0ath_dfs: Version 2.0.0 Copyright (c) 2005-2006 Atheros Communications, Inc. All Rights Reserved 60 -s .data 0xc01b35e0 -s .bss 0xc01b35f0 insmod: add-symbol-file build/debug/wlan_wep.o 0xc01b5060 -s .data 0xc01b5f60 -s .bss 0xc01b5f70 insmod: add-symbol-file build/debug/wlan_tkip.o 0xc01b7060 -s .data 0xc01b9840 -s .bss 0xc01b9850 insmod: add-symbol-file build/debug/wlan_ccmp.o 0xc01bb060 -s .data 0xc01bc5f0 -s .bss 0xc01bc600 insmod: add-symbol-file build/debug/wlan_xauth.o 0xc01be060 -s .data 0xc01be160 -s .bss 0xc01be170 insmod: wlan: mac acl policy registered add-symbol-file build/debug/wlan_acl.o 0xc01c0060 -s .data 0xc01c0820 -s .bss 0xc01c0830 insmod: add-symbol-file build/debug/ath_pci.o 0xc01c2060 -s .data 0xc01e1300 -s .bss 0xc01e1c00 ath_pci: 0.9.4.5 (Atheros/multi-bss) ath_pci: CR-LSDK-1.3.1.115 Changelist :0 Date: 0 Chan Freq RegPwr HT CTL CTL_U CTL_L DFS 1 2412n 20 HT20 1 0 1 N 1 2412n 20 HT40 1 0 1 N 2 2417n 20 HT40 1 0 1 N 3 2422n 20 HT40 1 1 1 N 4 2427n 20 HT40 1 1 1 N 5 2432n 20 HT40 1 1 1 N 6 2437n 20 HT40 1 1 1 N 7 2442n 20 HT40 1 1 1 N 8 2447n 20 HT40 1 1 1 N 9 2452n 20 HT40 1 1 1 N 10 2457n 20 HT40 1 1 1 N 11 2462n 20 HT40 1 1 1 N 12 2467n 20 HT40 1 1 0 N 13 2472n 20 HT40 1 1 0 N dfs_init_radar_filters: dfs->dfs_rinfo.rn_numradars: 0 DFS min filter rssiThresh = 21 DFS max pulse dur = 131 ticks Jan 1 00:00:08 10.unknown[wifi0: 11ng rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps wifi0: 11ng MCS: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 wifi0: mac 31.1 phy 11.0 radio 13.0 wifi0: Use hw queue 1 for WME_AC_BE traffic wifi0: Use hw queue 0 for WME_AC_BK traffic wifi0: Use hw queue 2 for WME_AC_VI traffic wifi0: Use hw queue 3 for WME_AC_VO traffic wifi0: Use hw queue 8 for CAB traffic wifi0: Use hw queue 9 for beacons wifi0: Use hw queue 7 for UAPSD wifi0: Atheros 5416 Owl emulation: mem=0x18000000, irq=162 hw_base=0xb8000000 33]: sock_socket_dev:1492: created fd 0 for ip 0.0.0.0 port 0 Jan 1 00:00:08 10.unknown[33]: Failed ipc connect Network is unreachable insmod: add-symbol-file build/debug/ath_pktlog.o 0xc01e3060 -s .data 0xc01e55f0 -s .bss 0xc01e56b0 Press ESC to enter BOOT MENU mode. MAPS: 00400000-00847000 r-xp 00000000 00:07 2016500 /mnt/cramfs/bin/openrg 10000000-10089000 rw-p 00447000 00:07 2016500 /mnt/cramfs/bin/openrg 10089000-10242000 rwxp 00000000 00:00 0 2aaa8000-2aaae000 r-xp 00000000 00:07 5738820 /mnt/cramfs/lib/ld-uClibc-0.9.29.so 2aaae000-2aaaf000 rw-p 00000000 00:00 0 2aaed000-2aaee000 rw-p 00005000 00:07 5738820 /mnt/cramfs/lib/ld-uClibc-0.9.29.so 2aaee000-2aafd000 r-xp 00000000 00:07 6292904 /mnt/cramfs/lib/libopenrg.so 2aafd000-2ab3c000 ---p 0000f000 00:00 0 2ab3c000-2ab3d000 rw-p 0000e000 00:07 6292904 /mnt/cramfs/lib/libopenrg.so 2ab3d000-2ab89000 r-xp 00000000 00:07 6095240 /mnt/cramfs/lib/libjutil.so 2ab89000-2abc8000 ---p 0004c000 00:00 0 2abc8000-2abcd000 rw-p 0004b000 00:07 6095240 /mnt/cramfs/lib/libjutil.so 2abcd000-2abd4000 rw-p 00000000 00:00 0 2abd4000-2ac12000 r-xp 00000000 00:07 6385156 /mnt/cramfs/lib/libssl.so 2ac12000-2ac51000 ---p 0003e000 00:00 0 2ac51000-2ac55000 rw-p 0003d000 00:07 6385156 /mnt/cramfs/lib/libssl.so 2ac55000-2ad68000 r-xp 00000000 00:07 5752524 /mnt/cramfs/lib/libcrypto.so 2ad68000-2ada7000 ---p 00113000 00:00 0 2ada7000-2adba000 rw-p 00112000 00:07 5752524 /mnt/cramfs/lib/libcrypto.so 2adba000-2adbd000 rw-p 00000000 00:00 0 2adbd000-2adbf000 r-xp 00000000 00:07 6063404 /mnt/cramfs/lib/libdl-0.9.29.so 2adbf000-2adfe000 ---p 00002000 00:00 0 2adfe000-2adff000 rw-p 00001000 00:07 6063404 /mnt/cramfs/lib/libdl-0.9.29.so 2adff000-2ae12000 r-xp 00000000 00:07 6366112 /mnt/cramfs/lib/librg_config.so 2ae12000-2ae51000 ---p 00013000 00:00 0 2ae51000-2ae53000 rw-p 00012000 00:07 6366112 /mnt/cramfs/lib/librg_config.so 2ae53000-2ae54000 rw-p 00000000 00:00 0 2ae54000-2ae64000 r-xp 00000000 00:07 6186356 /mnt/cramfs/lib/libm-0.9.29.so 2ae64000-2aea3000 ---p 00010000 00:00 0 2aea3000-2aea4000 rw-p 0000f000 00:07 6186356 /mnt/cramfs/lib/libm-0.9.29.so 2aea4000-2aea6000 r-xp 00000000 00:07 6612576 /mnt/cramfs/lib/libutil-0.9.29.so 2aea6000-2aee5000 ---p 00002000 00:00 0 2aee5000-2aee6000 rw-p 00001000 00:07 6612576 /mnt/cramfs/lib/libutil-0.9.29.so 2aee6000-2af3f000 r-xp 00000000 00:07 6501752 /mnt/cramfs/lib/libuClibc-0.9.29.so 2af3f000-2af7e000 ---p 00059000 00:00 0 2af7e000-2af80000 rw-p 00058000 00:07 6501752 /mnt/cramfs/lib/libuClibc-0.9.29.so 2af80000-2af85000 rw-p 00000000 00:00 0 7fff7000-7fff8000 rwxp 00000000 00:00 0 insmod: add-symbol-file build/debug/log_chardev.o 0xc01e7060 -s .data 0xc01e7940 -s .bss 0xc01e79c0 insmod: add-symbol-file build/debug/igmp_proxy_mod.o 0xc01e9060 -s .data 0xc01eef00 -s .bss 0xc01ef000 insmod: add-symbol-file build/debug/tcp_mss.o 0xc01f1060 -s .data 0IPV4 device driver registered xc01f16b0 -s .bss 0xc01f16e0 insmod: add-symbol-file build/debug/rg_ipv4.o 0xc01f3060 -s .data 0xc01f3290 -s .bss 0xc01f32e0 insmod: add-symbol-file build/debug/pppoe_relay.o 0xc01f5060 -s .data 0xc01f7b80 -s .bss 0xc01f7b80 insmod: add-symbol-file build/debug/rg_pppoe_relay.o 0xc020c060 -s .data 0xc020c7a0 -s .bss 0xc020c830 insmod: add-symbol-file build/debug/drv_tapi.o 0xc020e060 -s .data 0xc0226fe0 -s .bss 0xc0227040 IFX TAPI, version 3.6.1.11, (c) 2007 Infineon Technologies AG insmod: add-symbol-file build/debug/drv_vmmc.o 0xc0234060 -s .data 0xc02529e0 -s .bss 0xc0253ed0 IFX VMMC device driver, version 1.2.1.9, (c) 2007 Infineon Technologies AG <7>vmmc: using proc fs insmod: add-symbol-file build/debug/73m1966_mod.o 0xc0257060 -s 73M1966 Low Lvl, version 1.3.11, (c) 2007 Teridian Semiconductor Corp. .data 0xc025d1f0 -s .bss 0xc025e0f0 insmod: add-sy73M1966 TAPI CTL, version 1.3.11, (c) 2007 Teridian Semiconductor Corp. m1966_tapi_ctl_init: ucmd: 0x8356d5a0 m1966_tapi_ctl_init: Registered w 73m1966 hdwr driver: handle: 0x83586C00 m1966_tapi_ctl_init: CHRDEV registration completed successfully mbol-file build/debug/73m1966_tapi_ctl_mod.o 0xc0260060 -s .data 0xc02618e0 -s .bss 0xc0261940 insmod: add-symbol-file build/debug/rtp.o 0xc0263060 -s .data 0xc02654b0 -s .bss 0xc02654e0 insmod: add-symbol-file build/debug/phone_mod.o 0xc0267060 -s .data 0xc0268dc0 -s .bss 0xc0268e40 insmod: add-symbol-file build/debug/jtimer.o 0xc026a060 -s .data 0xc026a510 -s .bss 0xc026a570 insmod: add-symbol-file build/debug/vinetic_mod.o 0xc026c060 -s .data 0xc0278410 -s .bss 0xc0278730 insmod: add-symbol-file build/debug/btn.o 0xc032b060 -s .data 0xc032b9b0 -s .bss 0xc032ba70 insmod: add-symbol-file build/debug/qos_ingress.o 0xc032d060 -s .data 0xc032dc20 -s .bss 0xc032dcc0 insmod: add-symbol-file build/debug/danube_igmp_mod.o 0xc032f060 -s .data 0xc03305e0 -s .bss 0xc03307e0 insmod: add-symbol-file build/debug/psb6973_mod.o 0xc0332060 -s .data 0xc0333e10 -s .bss 0xc0334040 insmod: add-symbol-file build/debug/wlan_scan_ap.o 0xc0336060 -s .data 0xc0337ee0 -s .bss 0xc0337f20 insmod: add-symbol-file dwc3884-hcd: irq 54, addr be101000 usb.c: new USB bus registered, assigned bus number 1 build/debug/dwc3884.o 0xc0339060 -s .data 0xc033c3b0 -s .bss 0xc033c3e0 hw_buttons_arch.c:41 RESET button state changed to 0 hw_buttons_arch.c:56 WPS button state changed to 0 hw_buttons_arch.c:70 DECT button state changed to 0 hub.c: USB hub found hub.c: 1 port detected Jan 1 00:00:23 10.unknown[59]: sock_socket_dev:1492: created fd 0 for ip 0.0.0.0 port 0 Jan 1 00:00:23 10.unknown[59]: Failed ipc connect Network is unreachable insmod: add-symbol-file build/debug/mps_buffer_control.o 0xc033e060 -s .data 0xc033e480 -s .bss 0xc033e500 starting DVA kernel.core_pattern = /tmp/core kernel.core_uses_pid = 1 Using Asterisk version 1.2.4 Vinetic: Using BBD file ETSI_0DB_FXS.bin Nov 30 00:00:01 640.[69]: sock_socket: created fd 6 for ip 127.0.0.1 port 7016 ok! Version 11.3.0.1.3 up and running... <7>adding Signal COD0-Out to <7>SIG<7> (Out-Sig SIG0-OutA) [input:1] <7>INFO: IFX_TAPI_LL_COD_VAD_Cfg: VMMC0,Ch0: IFX_TAPI_ENC_VAD_NOVAD <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x200071C2 <7>adding Signal SIG1-OutA to <7>COD<7> (Out-Sig COD1-Out) [input:0] <7>adding Signal COD1-Out to <7>SIG<7> (Out-Sig SIG1-OutA) [input:1] <7>INFO: IFX_TAPI_LL_COD_VAD_Cfg: VMMC0,Ch1: IFX_TAPI_ENC_VAD_NOVAD <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x200071C2 <7>adding Signal SIG2-OutA to <7>COD<7> (Out-Sig COD2-Out) [input:0] <7>adding Signal COD2-Out to <7>SIG<7> (Out-Sig SIG2-OutA) [input:1] <7>INFO: IFX_TAPI_LL_COD_VAD_Cfg: VMMC0,Ch2: IFX_TAPI_ENC_VAD_NOVAD <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x200071C2 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x20007111 <7>adding Signal SIG3-OutA to <7>COD<7> (Out-Sig COD3-Out) [input:0] <7>adding Signal COD3-Out to <7>SIG<7> (Out-Sig SIG3-OutA) [input:1] <7>INFO: IFX_TAPI_LL_COD_VAD_Cfg: VMMC0,Ch3: IFX_TAPI_ENC_VAD_NOVAD <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x200071C2 <7>adding Signal SIG4-OutA to <7>COD<7> (Out-Sig COD4-Out) [input:0] <7>adding Signal COD4-Out to <7>SIG<7> (Out-Sig SIG4-OutA) [input:1] <7>INFO: IFX_TAPI_LL_COD_VAD_Cfg: VMMC0,Ch4: IFX_TAPI_ENC_VAD_NOVAD <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x200071C2 m1966_tapi_open: Open processing completed successfully SPI_INIT Teridian FXO on DANUBE... >>>>>switch to SPI mode 3 Perform FXO reset... m1966_process_ctl: Initial Battery Voltage: 8 cpld emptry irq <7>adding Signal PCM2-Out to <7>PCM<7> (Out-Sig PCM6-Out) [input:0] Vinetic ERROR vinetic_hook_state_set(): no DC allocated for line 2! VINETIC chip capabilities: Type: 0 Specific: 0 Description: INFINEON TECHNOLOGIES Type: 1 Specific: 6 Description: VMMC Type: 2 Specific: 0 Description: POTS Type: 2 Specific: 1 Description: PSTN Type: 11 Specific: 6 Description: DEVICE TYPE Type: 10 Specific: 258 Description: DEVICE VERSION Type: 4 Specific: 0 Description: DSP Type: 3 Specific: 12 Description: G.726 16 kbps Type: 3 Specific: 13 Description: G.726 24 kbps Type: 3 Specific: 14 Description: G.726 32 kbps Type: 3 Specific: 15 Description: G.726 40 kbps Type: 3 Specific: 8 Description: u-LAW Type: 3 Specific: 9 Description: A-LAW Type: 3 Specific: 1 Description: G.723 6.3kbps Type: 3 Specific: 2 Description: G.723 5.3kbps Type: 3 Specific: 7 Description: G.729 Type: 3 Specific: 17 Description: iLBC 13.3 kbps Type: 3 Specific: 18 Description: iLBC 15.2 kbps Type: 3 Specific: 31 Description: G.722 64 kbps Type: 3 Specific: 32 Description: G.722 24 kbps Type: 3 Specific: 19 Description: Lin 16 Bit 8 KHz Type: 3 Specific: 20 Description: Lin 16 Bit 16 KHz Type: 9 Specific: 5 Description: T.38 Type: 6 Specific: 5 Description: Coder Type: 5 Specific: 8 Description: PCM Type: 7 Specific: 2 Description: Phones Type: 12 Specific: 6 Description: DECT <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch0), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch1), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch2), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch3), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 <7>Warning: dev ioctl issued on channel fd (ch4), tolerated, 0x80047136 wifi0:ath_resetinternal for not running device date: 26, month: 1, hour: 56, minute: 7 eth1: MAC Address: XX:XX:XX:XX:XX:XX device eth0 entered promiscuous mode eth1: MAC Address: XX:XX:XX:XX:XX:XX Starting DVA with '/bin/dva -nml -dsl 3' dva_msg_send:380: sendto failed; msg = 'voip/trunk'; Connection refused dva_msg_send:380: sendto failed; msg = 'dect'; Connection refused dva_msg_send:380: sendto failed; msg = 'voip/extension'; Connection refused dva_msg_send:380: sendto failed; msg = 'voip/dial_plan'; Connection refused kernel.core_pattern = /tmp/core kernel.core_uses_pid = 1 <7>DTMF receiver coefficients written (success): LEVEL=d8(-40dB), TWIST=1c(9dB), GAIN=0x2000(0dB) Loading Asterisk (manager): ... done. Vinetic ERROR vinetic_hook_state_set(): no DC allocated for line 2! mt_cwmp: session error: Could not resolve host failed queueing 278 messagesRegistered process monitor dummy client (handle = 0x10104cb8)


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: 2020/09/12 18:13
  • by michaelts