[OpenWrt-Devel] [PATCH v2] ath79: add support for TP-Link Archer A7
Karl-Felix Glatzer
karl.glatzer at gmx.de
Sun Nov 25 10:43:00 EST 2018
On 2018-11-24 10:30:59, Rafał Miłecki wrote:
> On Fri, 23 Nov 2018 at 22:03, Karl-Felix Glatzer <karl.glatzer at gmx.de> wrote:
> > This patch adds support for TP-Link Archer A7
> >
> > Specification:
> > - SOC: QCA9563
> > - Flash: 16 MiB (SPI)
> > - RAM: 128 MiB (DDR2)
> > - Ethernet: 4x 1Gbps LAN + 1x 1Gbps WAN
> > - Wireless:
> > - 2.4GHz (bgn) SoC internal
> > - 5GHz (ac) QCA988x
> > - USB: 1x USB 2.0 port
> > - Button: 1x power, 1x reset, 1x wps
> > - LED: 10x LEDs
> > - UART: holes in PCB
> > - Vcc, GND, RX, TX from ethernet port side
> > - 115200n8
> >
> > Flash instructions:
> >
> > Upload openwrt-ath79-generic-tplink_archer-a7-v5-squashfs-factory.bin
> > via the Webinterface.
> >
> > Flash instruction using tftp recovery:
> >
> > 1. Connect the computer to one of the LAN ports of the Archer A7
> > 2. Set the computer IP to 192.168.0.66
> > 3. Start a tftp server with the OpenWrt factory image in the tftp
> > root directory renamed to ArcherC7v5_tp_recovery.bin
> > 2. Connect power cable to Archer A7, press and hold the reset button
> > and turn the router on
> > 3. Keep the reset button pressed for ~5 seconds
> > 4. Wait ~150 seconds to complete flashing
> >
> > Changes since first revision:
> >
> > - Flash instructions using stock image webinterface
> > - Changed "Version 5" in model string to "v5"
> > - Split DTS file in qca9563_tplink_archer-x7-v5.dtsi
> > and qca9563_tplink_archer-a7-v5.dts
> > - Firmware image is now build with dynamic partitioning
> > - Default to ath10k-ct
>
> Looks pretty nice.
>
> Could you provide me a boot log with mtd partitioning messages? I'd
> like to see how mtd creates partitions on this device.
>
Sure. I've attached the output of dmesg as dmesg.log.
These seem to be all the messages related to the spi flash and mtd partitioning:
[ 0.391041] m25p80 spi0.0: w25q128 (16384 Kbytes)
[ 0.395992] 7 fixed-partitions partitions found on MTD device spi0.0
[ 0.402546] Creating 7 MTD partitions on "spi0.0":
[ 0.407521] 0x000000000000-0x000000020000 : "factory-uboot"
[ 0.414019] 0x000000020000-0x000000040000 : "u-boot"
[ 0.419760] 0x000000040000-0x000000f00000 : "firmware"
[ 0.451110] 2 uimage-fw partitions found on MTD device firmware
[ 0.457262] 0x000000040000-0x0000001c6955 : "kernel"
[ 0.462973] 0x0000001c6955-0x000000f00000 : "rootfs"
[ 0.468741] mtd: device 4 (rootfs) set to be root filesystem
[ 0.474676] 1 squashfs-split partitions found on MTD device rootfs
[ 0.481063] 0x0000004c0000-0x000000f00000 : "rootfs_data"
[ 0.487266] 0x000000f40000-0x000000f60000 : "info"
[ 0.492805] 0x000000f60000-0x000000fb0000 : "config"
[ 0.498596] 0x000000fc0000-0x000000fd0000 : "partition-table"
[ 0.505209] 0x000000ff0000-0x000001000000 : "art"
>
> > +&mtdparts {
> > + factory-uboot at 0 {
> > + label = "factory-uboot";
> > + reg = <0x000000 0x020000>;
> > + read-only;
> > + };
> > +
> > + uboot: u-boot at 0 {
> > + label = "u-boot";
> > + reg = <0x020000 0x020000>;
> > + read-only;
> > + };
>
> u-boot at 20000 but its' a minor thing, can be fixed later / by commiter.
-------------- next part --------------
[ 0.000000] Linux version 4.14.81 (kfg at kfg-g74s) (gcc version 7.3.0 (OpenWrt GCC 7.3.0 r8473+1-8184bdddc4)) #0 Wed Nov 21 13:57:08 2018
[ 0.000000] bootconsole [early0] enabled
[ 0.000000] CPU0 revision is: 00019750 (MIPS 74Kc)
[ 0.000000] MIPS: machine is TP-Link Archer A7 v5
[ 0.000000] SoC: Qualcomm Atheros QCA956X ver 1 rev 0
[ 0.000000] Determined physical RAM map:
[ 0.000000] memory: 08000000 @ 00000000 (usable)
[ 0.000000] Initrd not found or empty - disabling initrd
[ 0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes.
[ 0.000000] Primary data cache 32kB, 4-way, VIPT, cache aliases, linesize 32 bytes
[ 0.000000] Zone ranges:
[ 0.000000] Normal [mem 0x0000000000000000-0x0000000007ffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000000000-0x0000000007ffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff]
[ 0.000000] On node 0 totalpages: 32768
[ 0.000000] free_area_init_node: node 0, pgdat 805094a0, node_mem_map 81008ee0
[ 0.000000] Normal zone: 256 pages used for memmap
[ 0.000000] Normal zone: 0 pages reserved
[ 0.000000] Normal zone: 32768 pages, LIFO batch:7
[ 0.000000] random: get_random_bytes called from start_kernel+0x8c/0x474 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: 32512
[ 0.000000] Kernel command line: console=ttyS0,115200n8 rootfstype=squashfs,jffs2
[ 0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
[ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
[ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.000000] Writing ErrCtl register=00000000
[ 0.000000] Readback ErrCtl register=00000000
[ 0.000000] Memory: 123244K/131072K available (3729K kernel code, 146K rwdata, 900K rodata, 1232K init, 204K bss, 7828K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] NR_IRQS: 51
[ 0.000000] CPU clock: 775.000 MHz
[ 0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 4932285024 ns
[ 0.000007] sched_clock: 32 bits at 387MHz, resolution 2ns, wraps every 5541893118ns
[ 0.008222] Calibrating delay loop... 385.84 BogoMIPS (lpj=1929216)
[ 0.074768] pid_max: default: 32768 minimum: 301
[ 0.079786] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.086765] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.097813] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.108205] futex hash table entries: 256 (order: -1, 3072 bytes)
[ 0.114698] pinctrl core: initialized pinctrl subsystem
[ 0.121025] NET: Registered protocol family 16
[ 0.131346] PCI host bridge /ahb/apb/pcie-controller at 18250000 ranges:
[ 0.138142] MEM 0x0000000012000000..0x0000000013ffffff
[ 0.143677] IO 0x0000000000000000..0x0000000000000000
[ 0.164445] PCI host bridge to bus 0000:00
[ 0.168773] pci_bus 0000:00: root bus resource [mem 0x12000000-0x13ffffff]
[ 0.176054] pci_bus 0000:00: root bus resource [io 0x0000]
[ 0.181920] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0]
[ 0.189077] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
[ 0.197447] pci 0000:00:00.0: [168c:003c] type 00 class 0x028000
[ 0.197500] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x001fffff 64bit]
[ 0.197552] pci 0000:00:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[ 0.197622] pci 0000:00:00.0: supports D1 D2
[ 0.197796] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 00
[ 0.197820] pci 0000:00:00.0: BAR 0: assigned [mem 0x12000000-0x121fffff 64bit]
[ 0.205563] pci 0000:00:00.0: BAR 6: assigned [mem 0x12200000-0x1220ffff pref]
[ 0.213670] clocksource: Switched to clocksource MIPS
[ 0.219885] NET: Registered protocol family 2
[ 0.225122] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.232476] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.239226] TCP: Hash tables configured (established 1024 bind 1024)
[ 0.246055] UDP hash table entries: 256 (order: 0, 4096 bytes)
[ 0.252219] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[ 0.259073] NET: Registered protocol family 1
[ 0.263741] PCI: CLS 0 bytes, default 32
[ 0.267543] Crashlog allocated RAM at address 0x3f00000
[ 0.274216] workingset: timestamp_bits=30 max_order=15 bucket_order=0
[ 0.285097] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.291242] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[ 0.309422] io scheduler noop registered
[ 0.313556] io scheduler deadline registered (default)
[ 0.319265] ar7200-usb-phy usb-phy: phy reset is missing
[ 0.326325] pinctrl-single 1804002c.pinmux: 512 pins at pa b804002c size 64
[ 0.334137] gpio-export gpio-export: 1 gpio(s) exported
[ 0.340363] Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled
[ 0.347699] console [ttyS0] disabled
[ 0.351495] 18020000.uart: ttyS0 at MMIO 0x18020000 (irq = 8, base_baud = 1562500) is a 16550A
[ 0.360625] console [ttyS0] enabled
[ 0.368176] bootconsole [early0] disabled
[ 0.391041] m25p80 spi0.0: w25q128 (16384 Kbytes)
[ 0.395992] 7 fixed-partitions partitions found on MTD device spi0.0
[ 0.402546] Creating 7 MTD partitions on "spi0.0":
[ 0.407521] 0x000000000000-0x000000020000 : "factory-uboot"
[ 0.414019] 0x000000020000-0x000000040000 : "u-boot"
[ 0.419760] 0x000000040000-0x000000f00000 : "firmware"
[ 0.451110] 2 uimage-fw partitions found on MTD device firmware
[ 0.457262] 0x000000040000-0x0000001c6955 : "kernel"
[ 0.462973] 0x0000001c6955-0x000000f00000 : "rootfs"
[ 0.468741] mtd: device 4 (rootfs) set to be root filesystem
[ 0.474676] 1 squashfs-split partitions found on MTD device rootfs
[ 0.481063] 0x0000004c0000-0x000000f00000 : "rootfs_data"
[ 0.487266] 0x000000f40000-0x000000f60000 : "info"
[ 0.492805] 0x000000f60000-0x000000fb0000 : "config"
[ 0.498596] 0x000000fc0000-0x000000fd0000 : "partition-table"
[ 0.505209] 0x000000ff0000-0x000001000000 : "art"
[ 0.511629] libphy: Fixed MDIO Bus: probed
[ 0.854038] libphy: ag71xx_mdio: probed
[ 0.860978] switch0: Atheros AR8337 rev. 2 switch registered on mdio-bus.0
[ 1.854832] ag71xx 19000000.eth: connected to PHY at mdio-bus.0:00 [uid=004dd036, driver=Atheros AR8216/AR8236/AR8316]
[ 1.866423] eth0: Atheros AG71xx at 0xb9000000, irq 4, mode:SGMII
[ 1.875291] NET: Registered protocol family 10
[ 1.884295] Segment Routing with IPv6
[ 1.888162] NET: Registered protocol family 17
[ 1.892786] 8021q: 802.1Q VLAN Support v1.8
[ 1.903808] VFS: Mounted root (squashfs filesystem) readonly on device 31:4.
[ 1.917806] Freeing unused kernel memory: 1232K
[ 1.922485] This architecture does not have kernel memory protection.
[ 2.500516] init: Console is alive
[ 2.504272] init: - watchdog -
[ 2.543685] random: fast init done
[ 3.595539] kmodloader: loading kernel modules from /etc/modules-boot.d/*
[ 3.825996] usbcore: registered new interface driver usbfs
[ 3.831758] usbcore: registered new interface driver hub
[ 3.837355] usbcore: registered new device driver usb
[ 3.847946] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 3.856121] ehci-platform: EHCI generic platform driver
[ 3.861740] ehci-platform 1b000000.usb: EHCI Host Controller
[ 3.867665] ehci-platform 1b000000.usb: new USB bus registered, assigned bus number 1
[ 3.875851] ehci-platform 1b000000.usb: irq 12, io mem 0x1b000000
[ 3.903689] ehci-platform 1b000000.usb: USB 2.0 started, EHCI 1.00
[ 3.910744] hub 1-0:1.0: USB hub found
[ 3.914995] hub 1-0:1.0: 1 port detected
[ 3.920040] kmodloader: done loading kernel modules from /etc/modules-boot.d/*
[ 3.937911] init: - preinit -
[ 4.985290] random: jshn: uninitialized urandom read (4 bytes read)
[ 5.219326] random: jshn: uninitialized urandom read (4 bytes read)
[ 5.413412] random: jshn: uninitialized urandom read (4 bytes read)
[ 6.891463] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 6.897603] IPv6: ADDRCONF(NETDEV_UP): eth0.1: link is not ready
[ 6.939932] urandom_read: 4 callbacks suppressed
[ 6.939939] random: procd: uninitialized urandom read (4 bytes read)
[ 7.954990] eth0: link up (1000Mbps/Full duplex)
[ 7.959848] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 7.966650] IPv6: ADDRCONF(NETDEV_CHANGE): eth0.1: link becomes ready
[ 10.222576] jffs2: notice: (455) jffs2_build_xattr_subsystem: complete building xattr subsystem, 3 of xdatum (2 unchecked, 1 orphan) and 16 of xref (1 dead, 0 orphan) found.
[ 10.240309] mount_root: switching to jffs2 overlay
[ 10.271562] overlayfs: upper fs does not support tmpfile.
[ 10.283305] urandom-seed: Seeding with /etc/urandom.seed
[ 10.393071] procd: - early -
[ 10.396919] procd: - watchdog -
[ 11.000635] procd: - watchdog -
[ 11.004149] procd: - ubus -
[ 11.055460] random: ubusd: uninitialized urandom read (4 bytes read)
[ 11.065774] random: ubusd: uninitialized urandom read (4 bytes read)
[ 11.073512] procd: - init -
[ 11.237718] eth0: link down
[ 11.541863] kmodloader: loading kernel modules from /etc/modules.d/*
[ 11.555150] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 11.571845] Loading modules backported from Linux version v4.19-rc5-0-g6bf4ca7fbc85
[ 11.579797] Backport generated by backports.git v4.19-rc5-1-0-g05571dcd
[ 11.595905] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 11.608755] nf_conntrack version 0.5.0 (2048 buckets, 8192 max)
[ 11.658484] wireguard: WireGuard 0.0.20181119 loaded. See www.wireguard.com for information.
[ 11.667247] wireguard: Copyright (C) 2015-2018 Jason A. Donenfeld <Jason at zx2c4.com>. All Rights Reserved.
[ 11.698901] xt_time: kernel timezone is -0000
[ 11.765368] PPP generic driver version 2.4.2
[ 11.771920] NET: Registered protocol family 24
[ 11.801111] ath10k 4.16 driver, optimized for CT firmware, probing pci device: 0x3c.
[ 11.810532] PCI: Enabling device 0000:00:00.0 (0000 -> 0002)
[ 11.816572] ath10k_pci 0000:00:00.0: pci irq legacy oper_irq_mode 1 irq_mode 0 reset_mode 0
[ 12.097858] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/fwcfg-pci-0000:00:00.0.txt failed with error -2
[ 12.108762] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 12.244039] firmware ath10k!fwcfg-pci-0000:00:00.0.txt: firmware_loading_store: map pages failed
[ 12.253361] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/pre-cal-pci-0000:00:00.0.bin failed with error -2
[ 12.264448] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 12.432471] firmware ath10k!pre-cal-pci-0000:00:00.0.bin: firmware_loading_store: map pages failed
[ 12.523698] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/ct-firmware-5.bin failed with error -2
[ 12.535037] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 12.683542] firmware ath10k!QCA988X!hw2.0!ct-firmware-5.bin: firmware_loading_store: map pages failed
[ 12.693354] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/ct-firmware-2.bin failed with error -2
[ 12.704698] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 12.874140] firmware ath10k!QCA988X!hw2.0!ct-firmware-2.bin: firmware_loading_store: map pages failed
[ 12.883952] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/firmware-6.bin failed with error -2
[ 12.895026] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 13.063481] firmware ath10k!QCA988X!hw2.0!firmware-6.bin: firmware_loading_store: map pages failed
[ 13.073052] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/firmware-5.bin failed with error -2
[ 13.084129] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 13.253820] firmware ath10k!QCA988X!hw2.0!firmware-5.bin: firmware_loading_store: map pages failed
[ 13.263313] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/firmware-4.bin failed with error -2
[ 13.274399] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 13.444229] firmware ath10k!QCA988X!hw2.0!firmware-4.bin: firmware_loading_store: map pages failed
[ 13.453773] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/firmware-3.bin failed with error -2
[ 13.464834] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 13.632868] firmware ath10k!QCA988X!hw2.0!firmware-3.bin: firmware_loading_store: map pages failed
[ 13.831911] ath10k_pci 0000:00:00.0: qca988x hw2.0 target 0x4100016c chip_id 0x043202ff sub 0000:0000
[ 13.841487] ath10k_pci 0000:00:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 1 testmode 0
[ 13.853878] ath10k_pci 0000:00:00.0: firmware ver 10.1-ct-8x-__fW-021-e2174c5 api 2 features wmi-10.x,has-wmi-mgmt-tx,mfp,txstatus-noack,wmi-10.x-CT,ratemask-CT,get-temp-CT,tx-rc-CT,cust-stats-CT,retry-gt2-CT crc32 83fdb9cc
[ 13.902071] ath10k_pci 0000:00:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/board-2.bin failed with error -2
[ 13.912875] ath10k_pci 0000:00:00.0: Falling back to user helper
[ 14.007261] firmware ath10k!QCA988X!hw2.0!board-2.bin: firmware_loading_store: map pages failed
[ 14.016711] ath10k_pci 0000:00:00.0: board_file api 1 bmi_id N/A crc32 bebc7c08
[ 14.954023] ath10k_pci 0000:00:00.0: 10.1 wmi init: vdevs: 16 peers: 127 tid: 256
[ 14.971587] ath10k_pci 0000:00:00.0: wmi print 'P 128 V 8 T 410'
[ 14.978031] ath10k_pci 0000:00:00.0: wmi print 'msdu-desc: 1424 sw-crypt: 0 ct-sta: 0'
[ 14.986314] ath10k_pci 0000:00:00.0: wmi print 'alloc rem: 23868 iram: 26712'
[ 15.040377] ath10k_pci 0000:00:00.0: htt-ver 2.1 wmi-op 2 htt-op 2 cal file max-sta 128 raw 0 hwcrypto 1
[ 15.187181] ath: EEPROM regdomain: 0x0
[ 15.187186] ath: EEPROM indicates default country code should be used
[ 15.187189] ath: doing EEPROM country->regdmn map search
[ 15.187201] ath: country maps to regdmn code: 0x3a
[ 15.187206] ath: Country alpha2 being used: US
[ 15.187209] ath: Regpair used: 0x3a
[ 15.311256] ath: EEPROM regdomain: 0x0
[ 15.311264] ath: EEPROM indicates default country code should be used
[ 15.311267] ath: doing EEPROM country->regdmn map search
[ 15.311279] ath: country maps to regdmn code: 0x3a
[ 15.311284] ath: Country alpha2 being used: US
[ 15.311287] ath: Regpair used: 0x3a
[ 15.323618] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
[ 15.325207] ieee80211 phy1: Atheros AR9561 Rev:0 mem=0xb8100000, irq=2
[ 15.335361] kmodloader: done loading kernel modules from /etc/modules.d/*
[ 24.837307] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 24.844756] eth0: link up (1000Mbps/Full duplex)
[ 24.863747] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 24.885659] br-lan: port 1(eth0.1) entered blocking state
[ 24.891242] br-lan: port 1(eth0.1) entered disabled state
[ 24.897244] device eth0.1 entered promiscuous mode
[ 24.902199] device eth0 entered promiscuous mode
[ 24.974925] br-lan: port 1(eth0.1) entered blocking state
[ 24.980512] br-lan: port 1(eth0.1) entered forwarding state
[ 24.986457] IPv6: ADDRCONF(NETDEV_UP): br-lan: link is not ready
[ 25.873888] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
[ 27.654718] ath: EEPROM regdomain: 0x8114
[ 27.658867] ath: EEPROM indicates we should expect a country code
[ 27.665206] ath: doing EEPROM country->regdmn map search
[ 27.670684] ath: country maps to regdmn code: 0x37
[ 27.675642] ath: Country alpha2 being used: DE
[ 27.680225] ath: Regpair used: 0x37
[ 27.683829] ath: regdomain 0x8114 dynamically updated by user
[ 27.689832] ath: EEPROM regdomain: 0x8114
[ 27.693986] ath: EEPROM indicates we should expect a country code
[ 27.700269] ath: doing EEPROM country->regdmn map search
[ 27.705753] ath: country maps to regdmn code: 0x37
[ 27.710690] ath: Country alpha2 being used: DE
[ 27.715275] ath: Regpair used: 0x37
[ 27.718870] ath: regdomain 0x8114 dynamically updated by user
[ 31.440725] ath10k_pci 0000:00:00.0: 10.1 wmi init: vdevs: 16 peers: 127 tid: 256
[ 31.458348] ath10k_pci 0000:00:00.0: wmi print 'P 128 V 8 T 410'
[ 31.464847] ath10k_pci 0000:00:00.0: wmi print 'msdu-desc: 1424 sw-crypt: 0 ct-sta: 0'
[ 31.473124] ath10k_pci 0000:00:00.0: wmi print 'alloc rem: 23868 iram: 26712'
[ 31.549511] ath10k_pci 0000:00:00.0: set-coverage-class, phyclk: 88 value: 1
[ 31.557522] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 31.583751] IPv6: ADDRCONF(NETDEV_UP): wlan1: link is not ready
[ 31.616703] br-lan: port 2(wlan0) entered blocking state
[ 31.622199] br-lan: port 2(wlan0) entered disabled state
[ 31.628014] device wlan0 entered promiscuous mode
[ 31.650459] br-lan: port 3(wlan1) entered blocking state
[ 31.656011] br-lan: port 3(wlan1) entered disabled state
[ 31.661780] device wlan1 entered promiscuous mode
[ 31.666756] br-lan: port 3(wlan1) entered blocking state
[ 31.672241] br-lan: port 3(wlan1) entered forwarding state
[ 31.723623] ath10k_pci 0000:00:00.0: NOTE: Firmware DBGLOG output disabled in debug_mask: 0x10000000
[ 32.593777] br-lan: port 3(wlan1) entered disabled state
[ 33.192260] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 33.199046] br-lan: port 2(wlan0) entered blocking state
[ 33.204567] br-lan: port 2(wlan0) entered forwarding state
[ 33.334839] IPv6: ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready
[ 33.341599] br-lan: port 3(wlan1) entered blocking state
[ 33.347137] br-lan: port 3(wlan1) entered forwarding state
[ 64.423727] random: crng init done
-------------- next part --------------
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list