Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
toh:t-com:spw303v-b [2020/01/08 13:53] – add OEM bootlog everlooptoh:t-com:spw303v-b [2021/10/15 08:21] – ↷ Links adapted because of a move operation bobafetthotmail
Line 6: Line 6:
  
 There are 2 models of it, "Typ A" and "Typ B" having completely different hardware. There are 2 models of it, "Typ A" and "Typ B" having completely different hardware.
-[[spw303v|Click here for "Typ A"]].+[[speedport_w_303v|Click here for "Typ A"]].
  
 ===== Supported Versions ===== ===== Supported Versions =====
Line 30: Line 30:
 ---- ----
  
 +===== Bugs =====
  
 +==== Wifi broken - SPROM workaround exists, please scroll down====
 +
 +  * Wifi working kernel 3.10.49 (OpenWrt 14.07) -> [[toh:t-com:spw303v-b#openwrt_1407|OpenWrt 14.07 bootlog]]
 +  * Wifi not working since kernel 4.x (OpenWrt 15.05) -> [[toh:t-com:spw303v-b#openwrt_snapshot_08012020|OpenWrt snapshot (08.01.2020) bootlog]]
 +
 +<code>
 +PCI: Enabling device 0000:00:01.0 (0000 -> 0002)
 +ssb: Found chip with id 0x4322, rev 0x01 and package 0x09
 +ssb: WARNING: Using fallback SPROM failed (err -2)
 +ssb: Failed to register PCI version of SSB with error -2
 +b43-pci-bridge: probe of 0000:00:01.0 failed with error -2
 +</code>
 +
 +tried fixes:
 +
 +change "nvram" to OpenWrt 14.07 setting in ''/openwrt/target/linux/brcm63xx/dts/spw303v.dts'' did not help.
 +
 +OpenWrt 14.07
 +<code>
 +0x0000007e0000-0x000000800000 : "nvram" > 20000
 +0x000000010000-0x0000007e0000 : "linux"
 +</code>
 +
 +OpenWrt trunk
 +<code>
 +0x000000000100-0x0000001d7c5c : "kernel"
 +0x0000001d7c5c-0x0000007e0000 : "rootfs"
 +mtd: device 3 (rootfs) set to be root filesystem
 +1 squashfs-split partitions found on MTD device rootfs
 +0x0000003f0000-0x0000007e0000 : "rootfs_data"
 +0x0000007f0000-0x000000800000 : "nvram" > 10000 -> smaller
 +</code>
 ===== Installation ===== ===== Installation =====
 ---- datatable ---- ---- datatable ----
Line 97: Line 130:
 ^ [[docs:techref:hardware:soc|System-On-Chip]]  | BCM6358 | ^ [[docs:techref:hardware:soc|System-On-Chip]]  | BCM6358 |
 ^ [[docs:techref:hardware:cpu|CPU]]/Speed       | BMIPS4350 V1.0 / 300 MHz [[docs:techref:hardware:soc:soc.broadcom.bcm63xx:smp|BMIPS Dual Core]] | ^ [[docs:techref:hardware:cpu|CPU]]/Speed       | BMIPS4350 V1.0 / 300 MHz [[docs:techref:hardware:soc:soc.broadcom.bcm63xx:smp|BMIPS Dual Core]] |
-^ Flash-Chip      | :?: |+^ Flash-Chip      | AM29LV320MT |
 ^ Flash size      | 8 MiB | ^ Flash size      | 8 MiB |
 ^ RAM size        | 32 MiB | ^ RAM size        | 32 MiB |
Line 152: Line 185:
 Installation the proprietary Broadcom drivers Installation the proprietary Broadcom drivers
  
-<code>opkg install kmod-brcm-wl wlc</code>+<code>opkg install kmod-brcm-wl wlc nas</code>
  
 ==== Failsafe mode ==== ==== Failsafe mode ====
Line 172: Line 205:
  
 The Bootloader (CFE) is password protected. To abort autoboot you have to either hold the reset button long enough to enter recovery mode or enter ''TCO&'' when it counts down for autoboot. The Bootloader (CFE) is password protected. To abort autoboot you have to either hold the reset button long enough to enter recovery mode or enter ''TCO&'' when it counts down for autoboot.
 +
 +===== OpenWrt fixes =====
 +
 +==== Disable default boot to failsafe mode ====
 +
 +OpenWrt snapshot (08.01.2020) boots by default to failsafe mode.
 +
 +Workaround -> build your own image:
 +
 +  * [[docs:guide-developer:toolchain:install-buildsystem|Build system – Installation]]
 +  * [[/docs/guide-developer/build-system/use-buildsystem|Build system – Usage]]
 +
 +modify /openwrt/target/linux/brcm63xx/dts/spw303v.dts
 +
 +-> set reset: ''gpios = <&pinctrl 11 **0**>;'' to ''gpios = <&pinctrl 11 **1**>;''
 +
 + keys {
 + compatible = "gpio-keys-polled";
 + #address-cells = <1>;
 + #size-cells = <0>;
 + poll-interval = <20>;
 +
 + reset {
 + label = "reset";
 + gpios = <&pinctrl 11 1>;
 + linux,code = <KEY_RESTART>;
 + debounce-interval = <60>;
 + };
 +
 +==== set pci SPROM fallback to get wifi chip loaded since 21.02.0 ====
 +
 +
 +see https://github.com/hontz1/openwrt_readme_t-com-w303v-B for settings.
 +
 +modify /target/linux/bcm63xx/patches-5.10/516-board-bcm6358.patch
 +
 +modify /target/linux/bcm63xx/patches-5.4/516-board-bcm6358.patch 
 +
 +
 + /* T-Home Speedport W 303V Typ B */
 + static struct board_info __initdata board_spw303v = {
 + .name = "96358-502V",
 + .expected_cpu_id = 0x6358,
 +
 + .has_pci = 1,
 +
 + .has_enet0 = 1,
 + .enet0 = {
 + .has_phy = 1,
 + .use_internal_phy = 1,
 + },
 +
 + .use_fallback_sprom = 1,
 + .fallback_sprom = {
 + .type = SPROM_BCM4322,
 + .pci_bus = 0,
 + .pci_dev = 1,
 + },
 + };
 +
 +
  
 ===== Bootlogs ===== ===== Bootlogs =====
Line 811: Line 905:
 TecomBcmNtwk_getTr69cStartStatus -- 0 TecomBcmNtwk_getTr69cStartStatus -- 0
 </nowiki> </nowiki>
-</WRAP>+</WRAP>\\ 
 + 
 +==== OEM bootlog failsafe ==== 
 + 
 +reset button pressed during power up 
 + 
 +<WRAP bootlog> 
 +<nowiki> 
 +CFE version 1.0.38-8.19 for BCM96358 (32bit,SP,BE) 
 +Build Date: Mon Aug 11 09:50:01 CST 2008 (samuel@ubuntu) 
 +Copyright (C) 2000-2006 Broadcom Corporation. 
 + 
 +Boot Address 0xbe000000 
 + 
 +Initializing Arena. 
 +Initializing Devices. 
 +Parallel flash device: name AM29LV320MT, id 0x2201, size 8192KB 
 +100 MB Full-Duplex (auto-neg) 
 +CPU type 0x2A010: 300MHz, Bus: 133MHz, Ref: 64MHz 
 +CPU running TP0 
 +Total memory: 33554432 bytes (32MB) 
 + 
 +Total memory used by CFE:  0x80401000 - 0x80528600 (1209856) 
 +Initialized Data:          0x8041DE90 - 0x8041FDF0 (8032) 
 +BSS Area:                  0x8041FDF0 - 0x80426600 (26640) 
 +Local Heap:                0x80426600 - 0x80526600 (1048576) 
 +Stack Area:                0x80526600 - 0x80528600 (8192) 
 +Text (code) segment:       0x80401000 - 0x8041DE8C (118412) 
 +Boot area (physical):      0x00529000 - 0x00569000 
 +Relocation Factor:         I:00000000 - D:00000000 
 + 
 + 
 +*** Restore to Factory Default Setting *** 
 + 
 + 
 +*** Break into CFE console *** 
 + 
 +Board IP address                 : 192.168.2.1:ffffff00   
 +Host IP address                  : 192.168.2.100   
 +Gateway IP address               :    
 +Run from flash/host (f/h)        : f   
 +Default host run file name       : vmlinux   
 +Default host flash file name     : bcm963xx_fs_kernel   
 +Boot delay (0-9 seconds)         : 1   
 +Serial Number                    : xxxxxxxxxx   
 +Hardware Version                 : B   
 +Default Password                 : xxxx 
 +Board Id (0-7)                    : xxxxx-xxxx   
 +Number of MAC Addresses (1-32)    : 11   
 +Base MAC Address                  : xx:xx:xx:xx:xx:xx   
 +PSI Size (1-128) KBytes           : 128   
 +Main Thread Number [0|1]          : 0   
 + 
 +CFE> web info: Waiting for connection on socket 0.<0x1b>[J 
 +CFE> help 
 +Available commands: 
 + 
 +x                    
 +w                   Write the whole image start from beginning of the flash 
 +e                   Erase [n]vram or [a]ll flash except bootrom 
 +r                   Run program from flash image or from host depend on [f/h] flag 
 +p                   Print boot line and board parameter info 
 +c                   Change booline parameters 
 +f                   Write image to the flash  
 +i                   Erase persistent storage data 
 +b                   Change board parameters 
 +reset               Reset the board 
 +flashimage          Flashes a compressed image after the bootloader. 
 +help                Obtain help for CFE commands 
 + 
 +For more information about a command, enter 'help command-name' 
 +*** command status = 0 
 +CFE> cd /etc/firmware 
 +Invalid command: "cd" 
 +Available commands: x, w, e, r, p, c, f, i, b, reset, flashimage, help 
 + 
 +*** command status = -1 
 +CFE> 
 +</nowiki> 
 +</WRAP>\\ 
 + 
 +==== OpenWrt snapshot (08.01.2020) ==== 
 + 
 +OpenWrt GCC 8.3.0 r11931-41c19dd542, SMP, factory.bin 
 + 
 +Bugs: 
 +  * "default boot to failsafe mode" 
 +  * wifi not working -> bootlog: [0.511808] b43-pci-bridge: probe of 0000:00:01.0 failed with error -2 
 + 
 +<WRAP bootlog> 
 +<nowiki> 
 +CFE version 1.0.38-8.19 for BCM96358 (32bit,SP,BE) 
 +Build Date: Mon Aug 11 09:50:01 CST 2008 (samuel@ubuntu) 
 +Copyright (C) 2000-2006 Broadcom Corporation. 
 + 
 +Boot Address 0xbe000000 
 + 
 +Initializing Arena. 
 +Initializing Devices. 
 +Parallel flash device: name AM29LV320MT, id 0x2201, size 8192KB 
 +100 MB Full-Duplex (auto-neg) 
 +CPU type 0x2A010: 300MHz, Bus: 133MHz, Ref: 64MHz 
 +CPU running TP0 
 +Total memory: 33554432 bytes (32MB) 
 + 
 +Total memory used by CFE:  0x80401000 - 0x80528600 (1209856) 
 +Initialized Data:          0x8041DE90 - 0x8041FDF0 (8032) 
 +BSS Area:                  0x8041FDF0 - 0x80426600 (26640) 
 +Local Heap:                0x80426600 - 0x80526600 (1048576) 
 +Stack Area:                0x80526600 - 0x80528600 (8192) 
 +Text (code) segment:       0x80401000 - 0x8041DE8C (118412) 
 +Boot area (physical):      0x00529000 - 0x00569000 
 +Relocation Factor:         I:00000000 - D:00000000 
 + 
 +Board IP address                 : 192.168.2.1:ffffff00   
 +Host IP address                  : 192.168.2.100   
 +Gateway IP address               :    
 +Run from flash/host (f/h)        : f   
 +Default host run file name       : vmlinux   
 +Default host flash file name     : bcm963xx_fs_kernel   
 +Boot delay (0-9 seconds)         : 1   
 +Serial Number                    : xxxxxxxxxx   
 +Hardware Version                 : B   
 +Default Password                 : xxxx   
 +Board Id (0-7)                    : 96358-502V   
 +Number of MAC Addresses (1-32)    : 11   
 +Base MAC Address                  : xx:xx:xx:xx:xx:xx   
 +PSI Size (1-128) KBytes           : 128   
 +Main Thread Number [0|1]          : 0   
 + 
 +*** Press any key to stop auto run (1 seconds) *** 
 +Auto run second count down: 1<0x08>1<0x08>
 +Code Address: 0x80A00000, Entry Address: 0x80a00000 
 +Decompression OK! 
 +Entry at 0x80a00000 
 +Closing network. 
 +Starting program at 0x80a00000 
 +[    0.000000] Linux version 4.14.162 (builder@buildhost) (gcc version 8.3.0 (OpenWrt GCC 8.3.0 r11931-41c19dd542)) #0 SMP Tue Jan 7 19:53:31 2020 
 +[    0.000000] Detected Broadcom 0x6358 CPU revision a1 
 +[    0.000000] CPU frequency is 300 MHz 
 +[    0.000000] 32MB of RAM installed 
 +[    0.000000] board_bcm963xx: Boot address 0xbe000000 
 +[    0.000000] board_bcm963xx: CFE version: 1.0.38-8.19 
 +[    0.000000] bootconsole [early0] enabled 
 +[    0.000000] CPU0 revision is: 0002a010 (Broadcom BMIPS4350) 
 +[    0.000000] board: board name: 96358-502V 
 +[    0.000000] MIPS: machine is T-Com Speedport W303 V 
 +[    0.000000] Determined physical RAM map: 
 +[    0.000000]  memory: 02000000 @ 00000000 (usable) 
 +[    0.000000] Initrd not found or empty - disabling initrd 
 +[    0.000000] Primary instruction cache 32kB, VIPT, 2-way, linesize 16 bytes. 
 +[    0.000000] Primary data cache 16kB, 2-way, VIPT, cache aliases, linesize 16 bytes 
 +[    0.000000] Zone ranges: 
 +[    0.000000]   Normal   [mem 0x0000000000000000-0x0000000001ffffff] 
 +[    0.000000] Movable zone start for each node 
 +[    0.000000] Early memory node ranges 
 +[    0.000000]   node   0: [mem 0x0000000000000000-0x0000000001ffffff] 
 +[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000001ffffff] 
 +[    0.000000] random: get_random_bytes called from start_kernel+0x88/0x4e4 with crng_init=0 
 +[    0.000000] percpu: Embedded 14 pages/cpu s25824 r8192 d23328 u57344 
 +[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8120 
 +[    0.000000] Kernel command line: rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200 
 +[    0.000000] PID hash table entries: 128 (order: -3, 512 bytes) 
 +[    0.000000] Dentry cache hash table entries: 4096 (order: 2, 16384 bytes) 
 +[    0.000000] Inode-cache hash table entries: 2048 (order: 1, 8192 bytes) 
 +[    0.000000] Memory: 24896K/32768K available (4635K kernel code, 201K rwdata, 1028K rodata, 1296K init, 216K bss, 7872K reserved, 0K cma-reserved) 
 +[    0.000000] SLUB: HWalign=16, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 
 +[    0.000000] Hierarchical RCU implementation. 
 +[    0.000000] RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1. 
 +[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 
 +[    0.000000] NR_IRQS: 256 
 +[    0.000000] genirq: irq_chip bcm6345-periph-intc did not update eff. affinity mask of irq 33 
 +[    0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 12741736309 ns 
 +[    0.000021] sched_clock: 32 bits at 150MHz, resolution 6ns, wraps every 14316557820ns 
 +[    0.008211] Calibrating delay loop... 299.26 BogoMIPS (lpj=598528) 
 +[    0.050748] pid_max: default: 32768 minimum: 301 
 +[    0.056089] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) 
 +[    0.063024] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) 
 +[    0.076640] Hierarchical SRCU implementation. 
 +[    0.083979] smp: Bringing up secondary CPUs ... 
 +[    0.088730] smp: Brought up 1 node, 1 CPU 
 +[    0.101597] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 
 +[    0.111748] futex hash table entries: 256 (order: 0, 4096 bytes) 
 +[    0.118330] pinctrl core: initialized pinctrl subsystem 
 +[    0.128004] NET: Registered protocol family 16 
 +[    0.148214] registering PCI controller with io_map_base unset 
 +[    0.154217] registering PCI controller with io_map_base unset 
 +[    0.239964] PCI host bridge to bus 0000:00 
 +[    0.244442] pci_bus 0000:00: root bus resource [mem 0x30000000-0x37ffffff] 
 +[    0.251586] pci_bus 0000:00: root bus resource [io  0x8000000-0x8007fff] 
 +[    0.258527] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0] 
 +[    0.265549] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] 
 +[    0.282888] pci 0000:00:01.0: BAR 0: assigned [mem 0x30000000-0x30003fff] 
 +[    0.290798] PCI host bridge to bus 0000:01 
 +[    0.295094] pci_bus 0000:01: root bus resource [mem 0x38000000-0x3fffffff] 
 +[    0.302214] pci_bus 0000:01: root bus resource [io  0x8008000-0x800ffff] 
 +[    0.309147] pci_bus 0000:01: root bus resource [??? 0x00000000 flags 0x0] 
 +[    0.316169] pci_bus 0000:01: No busn resource found for root bus, will use [bus 01-ff] 
 +[    0.325087] pci 0000:01:1e.0: bridge configuration invalid ([bus 00-00]), reconfiguring 
 +[    0.333857] pci 0000:01:1e.0: BAR 10: assigned [mem 0x38000000-0x3fffffff] 
 +[    0.341027] pci 0000:01:1e.0: BAR 7: assigned [io  0x8008000-0x80080ff] 
 +[    0.347885] pci 0000:01:1e.0: BAR 8: assigned [io  0x8008400-0x80084ff] 
 +[    0.354742] pci 0000:01:1e.0: CardBus bridge to [bus 02-05] 
 +[    0.360510] pci 0000:01:1e.0:   bridge window [io  0x8008000-0x80080ff] 
 +[    0.367360] pci 0000:01:1e.0:   bridge window [io  0x8008400-0x80084ff] 
 +[    0.374207] pci 0000:01:1e.0:   bridge window [mem 0x38000000-0x3fffffff] 
 +[    0.395819] clocksource: Switched to clocksource MIPS 
 +[    0.404965] PCI: Enabling device 0000:00:01.0 (0000 -> 0002) 
 +[    0.440486] ssb: Found chip with id 0x4322, rev 0x01 and package 0x09 
 +[    0.496291] ssb: WARNING: Using fallback SPROM failed (err -2) 
 +[    0.504559] ssb: Failed to register PCI version of SSB with error -2 
 +[    0.511808] b43-pci-bridge: probe of 0000:00:01.0 failed with error -2 
 +[    0.519585] NET: Registered protocol family 2 
 +[    0.526538] TCP established hash table entries: 1024 (order: 0, 4096 bytes) 
 +[    0.533916] TCP bind hash table entries: 1024 (order: 1, 8192 bytes) 
 +[    0.540635] TCP: Hash tables configured (established 1024 bind 1024) 
 +[    0.547969] UDP hash table entries: 256 (order: 1, 8192 bytes) 
 +[    0.554231] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) 
 +[    0.561563] NET: Registered protocol family 1 
 +[    0.571503] Crashlog allocated RAM at address 0x1f00000 
 +[    0.582527] workingset: timestamp_bits=14 max_order=13 bucket_order=0 
 +[    0.605994] squashfs: version 4.0 (2009/01/31) Phillip Lougher 
 +[    0.612110] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. 
 +[    0.678308] io scheduler noop registered 
 +[    0.682487] io scheduler deadline registered (default) 
 +[    0.691062] bcm6358-pinctrl fffe0080.pin-controller: registered at mmio fffe0080 
 +[    0.701252] fffe0100.serial: ttyS0 at MMIO 0xfffe0100 (irq = 10, base_baud = 1562500) is a bcm63xx_uart 
 +[    0.711122] console [ttyS0] enabled 
 +[    0.711122] console [ttyS0] enabled 
 +[    0.718335] bootconsole [early0] disabled 
 +[    0.718335] bootconsole [early0] disabled 
 +[    0.746137] 1e000000.nor: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x000001 Chip ID 0x001001 
 +[    0.756848] Amd/Fujitsu Extended Query Table at 0x0040 
 +[    0.762222]   Amd/Fujitsu Extended Query version 1.3. 
 +[    0.767459] 1e000000.nor: Swapping erase regions for top-boot CFI table. 
 +[    0.774398] number of CFI chips: 1 
 +[    0.782421] Searching for RedBoot partition table in 1e000000.nor at offset 0x7f0000 
 +[    0.808528] No RedBoot partition table detected in 1e000000.nor 
 +[    0.814907] 3 fixed-partitions partitions found on MTD device 1e000000.nor 
 +[    0.822068] Creating 3 MTD partitions on "1e000000.nor": 
 +[    0.827594] 0x000000000000-0x000000010000 : "CFE" 
 +[    0.834909] 0x000000010000-0x0000007f0000 : "linux" 
 +[    0.848624] parser_imagetag: rootfs: CFE image tag found at 0x0 with version 6, board type 96358-502V 
 +[    0.858308] parser_imagetag: Partition 0 is kernel offset 100 and length 1d7b5c 
 +[    0.865896] parser_imagetag: Partition 1 is rootfs offset 1d7c5c and length 6083a4 
 +[    0.873733] parser_imagetag: Spare partition is offset 3f0004 and length 3efffc 
 +[    0.881371] 2 bcm963xx-imagetag partitions found on MTD device linux 
 +[    0.887988] Creating 2 MTD partitions on "linux": 
 +[    0.892893] 0x000000000100-0x0000001d7c5c : "kernel" 
 +[    0.900468] 0x0000001d7c5c-0x0000007e0000 : "rootfs" 
 +[    0.908038] mtd: device 3 (rootfs) set to be root filesystem 
 +[    0.914008] 1 squashfs-split partitions found on MTD device rootfs 
 +[    0.920450] 0x0000003f0000-0x0000007e0000 : "rootfs_data" 
 +[    0.928362] 0x0000007f0000-0x000000800000 : "nvram" 
 +[    0.952883] bcm63xx-spi fffe0800.spi: at [mem 0xfffe0800-0xfffe0f0b flags 0x200] (irq 9, FIFOs size 542) 
 +[    0.965508] libphy: Fixed MDIO Bus: probed 
 +[    0.987838] libphy: bcm63xx_enet MII bus: probed 
 +[    1.064248] Broadcom BCM63XX (2) bcm63xx_enet-0:01: attached PHY driver [Broadcom BCM63XX (2)] (mii_bus:phy_addr=bcm63xx_enet-0:01, irq=17) 
 +[    1.078113] bcm63xx-wdt bcm63xx-wdt:  started, timer margin: 30 sec 
 +[    1.091254] NET: Registered protocol family 10 
 +[    1.117009] Segment Routing with IPv6 
 +[    1.121101] NET: Registered protocol family 17 
 +[    1.125965] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. 
 +[    1.139410] 8021q: 802.1Q VLAN Support v1.8 
 +[    1.159683] VFS: Mounted root (squashfs filesystem) readonly on device 31:3. 
 +[    1.185622] Freeing unused kernel memory: 1296K 
 +[    1.190370] This architecture does not have kernel memory protection. 
 +[    1.251382] random: fast init done 
 +[    2.438735] init: Console is alive 
 +[    2.443115] init: - watchdog - 
 +[    4.177330] kmodloader: loading kernel modules from /etc/modules-boot.d/
 +[    4.346202] kmodloader: done loading kernel modules from /etc/modules-boot.d/
 +[    4.364803] init: - preinit - 
 +[    5.200572] random: procd: uninitialized urandom read (4 bytes read) 
 +[    6.504534] random: jshn: uninitialized urandom read (4 bytes read) 
 +[    6.609247] random: jshn: uninitialized urandom read (4 bytes read) 
 +[    6.705503] random: jshn: uninitialized urandom read (4 bytes read) 
 +[    6.967011] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready 
 +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.638890] eth0: link UP - 100/full - flow control rx&tx 
 +[    8.644669] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 
 +- failsafe button reset was pressed - 
 +- failsafe - 
 +[   11.683233] urandom_read: 2 callbacks suppressed 
 +[   11.683254] random: dropbearkey: uninitialized urandom read (32 bytes read) 
 +Generating 1024 [   11.700741] random: dropbearkey: uninitialized urandom read (32 bytes read) 
 +bit rsa key, this may take a while... 
 +[   18.052473] random: dropbearkey: uninitialized urandom read (32 bytes read) 
 +Public key portion is: 
 +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCTJdXbsHLtRqU94khl8Eur/o496AXooNozhfjyuE7RrruibnL8ci8gGOBbpCTPdZaqz8XZCxbvQxYtUI2InmAhRUYRQxSfe3NqrX3udg2tQWBb4RkOaE9Ej9rSWdtjsBo80ma3[   18.214289] random: dropbear: uninitialized urandom read (32 bytes read) 
 +HElv5lJcRPd8o05Rv+y4wmb+M3LKA8bauab73Q== root@(none) 
 +Fingerprint: sha1!! 92:bf:8d:bd:00:43:ba:98:c5:62:32:23:02:04:ae:e4:1c:5b:82:ed 
 + 
 + 
 +BusyBox v1.31.1 () built-in shell (ash) 
 + 
 +ash: can't access tty; job control turned off 
 +  _______                     ________        __ 
 +       |.-----.-----.-----.|  |  |  |.----.|  |_ 
 +     ||  _  |  -__|     ||  |  |  ||   _||   _| 
 + |_______||   __|_____|__|__||________||__|  |____| 
 +          |__| W I R E L E S S   F R E E D O M 
 + ----------------------------------------------------- 
 + OpenWrt SNAPSHOT, r11931-41c19dd542 
 + ----------------------------------------------------- 
 +================= FAILSAFE MODE active ================ 
 +special commands: 
 +* firstboot      reset settings to factory defaults 
 +* mount_root mount root-partition with config files 
 + 
 +after mount_root: 
 +* passwd change root's password 
 +* /etc/config     directory with config files 
 + 
 +for more help see: 
 +https://openwrt.org/docs/guide-user/troubleshooting/ 
 +- failsafe_and_factory_reset 
 +- root_password_reset 
 +======================================================= 
 + 
 +root@(none):/# 
 +</nowiki> 
 +</WRAP>\\ 
 + 
 +==== OpenWrt 14.07 ==== 
 + 
 +OpenWrt/Linaro GCC 4.8-2014.04 r42625, SMP, sysupgrade.bin 
 + 
 +Wifi working 
 + 
 +<WRAP bootlog> 
 +<nowiki> 
 +[    0.000000] Linux version 3.10.49 (bb@builder1) (gcc version 4.8.3 (OpenWrt/Linaro GCC 4.8-2014.04 r42625) ) #3 SMP Wed Oct 1 15:13:13 CEST 2014 
 +[    0.000000] Detected Broadcom 0x6358 CPU revision a1 
 +[    0.000000] CPU frequency is 300 MHz 
 +[    0.000000] 32MB of RAM installed 
 +[    0.000000] registering 40 GPIOs 
 +[    0.000000] board_bcm963xx: Boot address 0xbe000000 
 +[    0.000000] board_bcm963xx: CFE version: 1.0.38-8.19 
 +[    0.000000] bootconsole [early0] enabled 
 +[    0.000000] CPU revision is: 0002a010 (Broadcom BMIPS4350) 
 +[    0.000000] board: board name: 96358-502V 
 +[    0.000000] Determined physical RAM map: 
 +[    0.000000]  memory: 02000000 @ 00000000 (usable) 
 +[    0.000000] Initrd not found or empty - disabling initrd 
 +[    0.000000] Zone ranges: 
 +[    0.000000]   Normal   [mem 0x00000000-0x01ffffff] 
 +[    0.000000] Movable zone start for each node 
 +[    0.000000] Early memory node ranges 
 +[    0.000000]   node   0: [mem 0x00000000-0x01ffffff] 
 +[    0.000000] On node 0 totalpages: 8192 
 +[    0.000000] free_area_init_node: node 0, pgdat 80351ba0, node_mem_map 81000000 
 +[    0.000000]   Normal zone: 64 pages used for memmap 
 +[    0.000000]   Normal zone: 0 pages reserved 
 +[    0.000000]   Normal zone: 8192 pages, LIFO batch:0 
 +[    0.000000] Primary instruction cache 32kB, VIPT, 2-way, linesize 16 bytes. 
 +[    0.000000] Primary data cache 16kB, 2-way, VIPT, cache aliases, linesize 16 bytes 
 +[    0.000000] PERCPU: Embedded 7 pages/cpu @81043000 s6624 r8192 d13856 u32768 
 +[    0.000000] pcpu-alloc: s6624 r8192 d13856 u32768 alloc=8*4096 
 +[    0.000000] pcpu-alloc: [0] 0  
 +[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 8128 
 +[    0.000000] Kernel command line:  root=/dev/mtdblock2 rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200 
 +[    0.000000] PID hash table entries: 128 (order: -3, 512 bytes) 
 +[    0.000000] Dentry cache hash table entries: 4096 (order: 2, 16384 bytes) 
 +[    0.000000] Inode-cache hash table entries: 2048 (order: 1, 8192 bytes) 
 +[    0.000000] Memory: 28460k/32768k available (2667k kernel code, 4308k reserved, 745k data, 296k init, 0k highmem) 
 +[    0.000000] Hierarchical RCU implementation. 
 +[    0.000000] RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1. 
 +[    0.000000] NR_IRQS:256 
 +[    0.032000] Calibrating delay loop... 299.26 BogoMIPS (lpj=598528) 
 +[    0.036000] pid_max: default: 32768 minimum: 301 
 +[    0.040000] Mount-cache hash table entries: 512 
 +[    0.048000] Brought up 1 CPUs 
 +[    0.080000] NET: Registered protocol family 16 
 +[    0.096000] registering PCI controller with io_map_base unset 
 +[    0.100000] registering PCI controller with io_map_base unset 
 +[    0.128000] bio: create slab <bio-0> at 0 
 +[    0.136000] PCI host bridge to bus 0000:00 
 +[    0.140000] pci_bus 0000:00: root bus resource [mem 0x30000000-0x37ffffff] 
 +[    0.144000] pci_bus 0000:00: root bus resource [io  0x8000000-0x8007fff] 
 +[    0.148000] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] 
 +[    0.152000] pci 0000:00:01.0: [14e4:4322] type 00 class 0x028000 
 +[    0.152000] pci 0000:00:01.0: reg 10: [mem 0x00000000-0x00003fff] 
 +[    0.164000] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 00 
 +[    0.164000] pci 0000:00:01.0: BAR 0: assigned [mem 0x30000000-0x30003fff] 
 +[    0.168000] PCI host bridge to bus 0000:01 
 +[    0.172000] pci_bus 0000:01: root bus resource [mem 0x38000000-0x3fffffff] 
 +[    0.176000] pci_bus 0000:01: root bus resource [io  0x8008000-0x800ffff] 
 +[    0.180000] pci_bus 0000:01: No busn resource found for root bus, will use [bus 01-ff] 
 +[    0.184000] pci 0000:01:1e.0: [14e4:6358] type 02 class 0x060700 
 +[    0.184000] pci 0000:01:1e.0: bridge configuration invalid ([bus 00-00]), reconfiguring 
 +[    0.188000] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 05 
 +[    0.188000] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 05 
 +[    0.188000] pci 0000:01:1e.0: BAR 10: assigned [mem 0x38000000-0x3fffffff] 
 +[    0.192000] pci 0000:01:1e.0: BAR 7: assigned [io  0x8008000-0x80080ff] 
 +[    0.196000] pci 0000:01:1e.0: BAR 8: assigned [io  0x8008400-0x80084ff] 
 +[    0.200000] pci 0000:01:1e.0: CardBus bridge to [bus 02-05] 
 +[    0.204000] pci 0000:01:1e.0:   bridge window [io  0x8008000-0x80080ff] 
 +[    0.208000] pci 0000:01:1e.0:   bridge window [io  0x8008400-0x80084ff] 
 +[    0.212000] pci 0000:01:1e.0:   bridge window [mem 0x38000000-0x3fffffff] 
 +[    0.216000] PCI: Enabling device 0000:01:1e.0 (0000 -> 0003) 
 +[    0.220000] pci 0000:01:1e.0: setting latency timer to 64 
 +[    0.224000] Switching to clocksource MIPS 
 +[    0.236000] PCI: Enabling device 0000:00:01.0 (0000 -> 0002) 
 +[    0.244000] b43-pci-bridge 0000:00:01.0: setting latency timer to 64 
 +[    0.264000] ssb: Found chip with id 0x4322, rev 0x01 and package 0x09 
 +[    0.272000] ssb: Core 0 found: ChipCommon (cc 0x800, rev 0x17, vendor 0x4243) 
 +[    0.272000] ssb: Core 1 found: IEEE 802.11 (cc 0x812, rev 0x10, vendor 0x4243) 
 +[    0.272000] ssb: Core 2 found: PCI-E (cc 0x820, rev 0x0B, vendor 0x4243) 
 +[    0.272000] ssb: Core 3 found: PCI (cc 0x804, rev 0x0E, vendor 0x4243) 
 +[    0.272000] ssb: Core 4 found: USB 2.0 Device (cc 0x81A, rev 0x05, vendor 0x4243) 
 +[    0.272000] ssb: Core 5 found: ARM Cortex M3 (cc 0x82A, rev 0x00, vendor 0x4243) 
 +[    0.272000] ssb: Core 6 found: Internal Memory (cc 0x80E, rev 0x03, vendor 0x4243) 
 +[    0.336000] ssb: Sonics Silicon Backplane found on PCI device 0000:00:01.0 
 +[    0.344000] NET: Registered protocol family 2 
 +[    0.352000] TCP established hash table entries: 512 (order: 0, 4096 bytes) 
 +[    0.356000] TCP bind hash table entries: 512 (order: 0, 4096 bytes) 
 +[    0.364000] TCP: Hash tables configured (established 512 bind 512) 
 +[    0.372000] TCP: reno registered 
 +[    0.376000] UDP hash table entries: 256 (order: 1, 8192 bytes) 
 +[    0.380000] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) 
 +[    0.388000] NET: Registered protocol family 1 
 +[    0.392000] PCI: CLS 0 bytes, default 16 
 +[    0.400000] squashfs: version 4.0 (2009/01/31) Phillip Lougher 
 +[    0.404000] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. 
 +[    0.416000] msgmni has been set to 55 
 +[    0.420000] io scheduler noop registered 
 +[    0.424000] io scheduler deadline registered (default) 
 +[    0.436000] bcm63xx_uart.0: ttyS0 at MMIO 0xfffe0100 (irq = 10) is a bcm63xx_uart 
 +[    0.444000] console [ttyS0] enabled, bootconsole disabled 
 +[    0.460000] physmap platform flash device: 02000000 at 1e000000 
 +[    0.468000] physmap-flash.0: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x000001 Chip ID 0x001001 
 +[    0.476000] physmap-flash.0: Found an alias at 0x800000 for the chip at 0x0 
 +[    0.476000] physmap-flash.0: Found an alias at 0x1000000 for the chip at 0x0 
 +[    0.476000] physmap-flash.0: Found an alias at 0x1800000 for the chip at 0x0 
 +[    0.476000] Amd/Fujitsu Extended Query Table at 0x0040 
 +[    0.484000]   Amd/Fujitsu Extended Query version 1.3. 
 +[    0.488000] physmap-flash.0: Swapping erase regions for top-boot CFI table. 
 +[    0.496000] number of CFI chips: 1 
 +[    0.500000] bcm63xxpart: CFE boot tag found with version 6 and board type 96358-502V 
 +[    0.508000] bcm63xxpart: Partition 0 is CFE offset 0 and length 10000 
 +[    0.516000] bcm63xxpart: Partition 1 is kernel offset 10100 and length 12ff00 
 +[    0.520000] bcm63xxpart: Partition 2 is rootfs offset 140000 and length 6a0000 
 +[    0.528000] bcm63xxpart: Partition 3 is nvram offset 7e0000 and length 20000 
 +[    0.536000] bcm63xxpart: Partition 4 is linux offset 10000 and length 7d0000 
 +[    0.544000] bcm63xxpart: Spare partition is offset 370004 and length 46fffc 
 +[    0.552000] 5 bcm63xxpart partitions found on MTD device physmap-flash.0 
 +[    0.556000] Creating 5 MTD partitions on "physmap-flash.0": 
 +[    0.564000] 0x000000000000-0x000000010000 : "CFE" 
 +[    0.572000] 0x000000010100-0x000000140000 : "kernel" 
 +[    0.580000] mtd: partition "kernel" must either start or end on erase block boundary or be smaller than an erase block -- forcing read-only 
 +[    0.596000] 0x000000140000-0x0000007e0000 : "rootfs" 
 +[    0.604000] mtd: device 2 (rootfs) set to be root filesystem 
 +[    0.612000] mtd: partition "rootfs_data" created automatically, ofs=0x370000, len=0x470000 
 +[    0.620000] 0x000000370000-0x0000007e0000 : "rootfs_data" 
 +[    0.628000] 0x0000007e0000-0x000000800000 : "nvram" 
 +[    0.640000] 0x000000010000-0x0000007e0000 : "linux" 
 +[    0.652000] bcm63xx-spi bcm63xx-spi: at 0xfffe0800 (irq 9, FIFOs size 542) 
 +[    0.672000] libphy: bcm63xx_enet MII bus: probed 
 +[    0.676000] bcm63xx_enet bcm63xx_enet.0: attached PHY at address 1 [Broadcom BCM63XX (2)] 
 +[    0.692000] bcm63xx-wdt bcm63xx-wdt:  started, timer margin: 30 sec 
 +[    0.708000] TCP: cubic registered 
 +[    0.712000] NET: Registered protocol family 17 
 +[    0.716000] Bridge firewalling registered 
 +[    0.720000] 8021q: 802.1Q VLAN Support v1.8 
 +[    0.740000] VFS: Mounted root (squashfs filesystem) readonly on device 31:2. 
 +[    0.752000] Freeing unused kernel memory: 296K (80366000 - 803b0000) 
 +[    4.096000] Button Hotplug driver version 0.4.1 
 +[    4.108000] input: gpio-keys-polled as /devices/platform/gpio-keys-polled.0/input/input0 
 +[    7.064000] eth0: link UP - 100/full - flow control off 
 +[    8.724000] jffs2_scan_eraseblock(): End of filesystem marker found at 0x10000 
 +[    8.728000] jffs2_build_filesystem(): unlocking the mtd device... done. 
 +[    8.736000] jffs2_build_filesystem(): erasing all blocks after the end marker... done. 
 +[   46.136000] jffs2: notice: (230) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found. 
 +[   47.216000] eth0: link DOWN 
 +[   50.364000] NET: Registered protocol family 10 
 +[   50.400000] nf_conntrack version 0.5.0 (449 buckets, 1796 max) 
 +[   50.420000] ip6_tables: (C) 2000-2006 Netfilter Core Team 
 +[   50.444000] Loading modules backported from Linux version master-2014-05-22-0-gf2032ea 
 +[   50.452000] Backport generated by backports.git backports-20140320-37-g5c33da0 
 +[   50.468000] ip_tables: (C) 2000-2006 Netfilter Core Team 
 +[   50.560000] xt_time: kernel timezone is -0000 
 +[   50.652000] cfg80211: Calling CRDA to update world regulatory domain 
 +[   50.708000] cfg80211: World regulatory domain updated: 
 +[   50.712000] cfg80211:  DFS Master region: unset 
 +[   50.716000] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) 
 +[   50.728000] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) 
 +[   50.736000] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) 
 +[   50.744000] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) 
 +[   50.752000] cfg80211:   (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A) 
 +[   50.760000] cfg80211:   (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) 
 +[   50.768000] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) 
 +[   50.776000] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) 
 +[   50.784000] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) 
 +[   50.824000] PPP generic driver version 2.4.2 
 +[   50.844000] NET: Registered protocol family 24 
 +[   50.920000] b43-phy0: Broadcom 4322 WLAN found (core revision 16) 
 +[   50.960000] b43-phy0: Found PHY: Analog 8, Type 4 (N), Revision 4 
 +[   50.964000] b43-phy0: Found Radio: Manuf 0x17F, ID 0x2056, Revision 3, Version 0 
 +[   50.988000] Broadcom 43xx driver loaded [ Features: PNL ] 
 +[   50.996000] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht' 
 +[   68.996000] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready 
 +[   69.012000] device eth0 entered promiscuous mode 
 +[   69.024000] IPv6: ADDRCONF(NETDEV_UP): br-lan: link is not ready 
 +[   69.848000] eth0: link UP - 100/full - flow control off 
 +[   69.856000] br-lan: port 1(eth0) entered forwarding state 
 +[   69.860000] br-lan: port 1(eth0) entered forwarding state 
 +[   69.864000] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 
 +[   69.880000] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready 
 +[   71.864000] br-lan: port 1(eth0) entered forwarding state 
 +</nowiki> 
 +</WRAP>\\
 ===== Tags ===== ===== Tags =====
 [[meta:tags|How to add tags]] [[meta:tags|How to add tags]]
 {{tag>bcm63xx bcm6358 8flash 32ram}} {{tag>bcm63xx bcm6358 8flash 32ram}}
  • Last modified: 2024/02/12 08:58
  • by 127.0.0.1