* Yesterdays kernel/git/kvalo/ath.git failes with COMPEX WLE600VX
[not found] <1749993920.7465237.1447934318588.JavaMail.yahoo.ref@mail.yahoo.com>
@ 2015-11-19 11:58 ` Joerg Pommnitz
2015-11-20 11:34 ` Kalle Valo
0 siblings, 1 reply; 5+ messages in thread
From: Joerg Pommnitz @ 2015-11-19 11:58 UTC (permalink / raw)
To: ath10k@lists.infradead.org
Hello all,
Kalles current git tree fails to initialize my COMPEX WLE600VX. The kernel log shows
[ 16.373978] ath10k_pci 0000:05:00.0: failed to wake up device : -110
[ 16.374118] ath10k_pci: probe of 0000:05:00.0 failed with error -110
For comparison, with 3.18.24 I get:
[ 16.083400] ath10k_pci 0000:05:00.0: irq 18 for MSI/MSI-X
[ 16.083443] ath10k_pci 0000:05:00.0: pci irq msi interrupts 1 irq_mode 0 reset_mode 0
[ 16.408686] ath10k_pci 0000:05:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/firmware-3.bin failed with error -2
[ 16.408697] ath10k_pci 0000:05:00.0: Falling back to user helper
[ 16.411071] ath10k_pci 0000:05:00.0: could not fetch firmware file 'ath10k/QCA988X/hw2.0/firmware-3.bin': -11
[ 17.845673] ath10k_pci 0000:05:00.0: qca988x hw2.0 (0x4100016c, 0x043222ff) fw 10.1.467.2-1 api 2 htt 2.1
[ 17.845685] ath10k_pci 0000:05:00.0: debug 1 debugfs 1 tracing 1 dfs 0 testmode 0
[ 18.426968] ath10k_pci 0000:05:00.0 ap: renamed from wlan0
[ 35.073267] ath10k_pci 0000:05:00.0: peer-unmap-event: unknown peer id 2
[ 39.294061] ath10k_pci 0000:05:00.0: peer-unmap-event: unknown peer id 2
[ 46.083727] ath10k_pci 0000:05:00.0: peer-unmap-event: unknown peer id 2
The problem with Kalles GIT tree is 100% reproducible. I don't know when this problem came up.
-- Regards Joerg
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Yesterdays kernel/git/kvalo/ath.git failes with COMPEX WLE600VX
2015-11-19 11:58 ` Yesterdays kernel/git/kvalo/ath.git failes with COMPEX WLE600VX Joerg Pommnitz
@ 2015-11-20 11:34 ` Kalle Valo
2015-11-20 13:31 ` Joerg Pommnitz
2015-11-20 13:49 ` Joerg Pommnitz
0 siblings, 2 replies; 5+ messages in thread
From: Kalle Valo @ 2015-11-20 11:34 UTC (permalink / raw)
To: Joerg Pommnitz; +Cc: ath10k@lists.infradead.org
Joerg Pommnitz <pommnitz@yahoo.com> writes:
> Hello all,
> Kalles current git tree fails to initialize my COMPEX WLE600VX. The kernel log shows
> [ 16.373978] ath10k_pci 0000:05:00.0: failed to wake up device : -110
> [ 16.374118] ath10k_pci: probe of 0000:05:00.0 failed with error -110
Can you send full dmesg, right from the beginning of the boot, please?
It might give some hints.
I have a similar problem in one of my laptop (lenovo thinkpad x230). The
patch below helps with that one, but I haven't investigated it more yet.
--- a/drivers/net/wireless/ath/ath10k/pci.c
+++ b/drivers/net/wireless/ath/ath10k/pci.c
@@ -2811,6 +2811,18 @@ static int ath10k_pci_claim(struct ath10k *ar)
pci_set_drvdata(pdev, ar);
+ /*
+ * Without any knowledge of the Host, the Target may have been
reset or
+ * power cycled and its Config Space may no longer reflect the
PCI
+ * address space that was assigned earlier by the PCI
infrastructure.
+ * Refresh it now.
+ */
+ ret = pci_assign_resource(pdev, BAR_NUM);
+ if (ret) {
+ ath10k_err(ar, "failed to assign PCI space: %d\n", ret);
+ return ret;
+ }
+
ret = pci_enable_device(pdev);
if (ret) {
ath10k_err(ar, "failed to enable pci device: %d\n",
ret);
--
Kalle Valo
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Yesterdays kernel/git/kvalo/ath.git failes with COMPEX WLE600VX
2015-11-20 11:34 ` Kalle Valo
@ 2015-11-20 13:31 ` Joerg Pommnitz
2015-11-25 12:21 ` Kalle Valo
2015-11-20 13:49 ` Joerg Pommnitz
1 sibling, 1 reply; 5+ messages in thread
From: Joerg Pommnitz @ 2015-11-20 13:31 UTC (permalink / raw)
To: Kalle Valo; +Cc: ath10k@lists.infradead.org
[-- Attachment #1: Type: text/plain, Size: 1789 bytes --]
Kalle,
attached are dmesg logs from 3.18.24 and your git tree. The patch from your mail is _NOT_ yet applied.
BTW, patch gives an offset of 99 lines when applying to your git tree. Is this relative to a branch?
--
Regards Joerg
> Kalle Valo <kvalo@qca.qualcomm.com> schrieb am 12:34 Freitag, 20.November 2015:
> > Joerg Pommnitz <pommnitz@yahoo.com> writes:
>
>
>> Hello all,
>> Kalles current git tree fails to initialize my COMPEX WLE600VX. The kernel
> log shows
>> [ 16.373978] ath10k_pci 0000:05:00.0: failed to wake up device : -110
>> [ 16.374118] ath10k_pci: probe of 0000:05:00.0 failed with error -110
>
> Can you send full dmesg, right from the beginning of the boot, please?
> It might give some hints.
>
> I have a similar problem in one of my laptop (lenovo thinkpad x230). The
> patch below helps with that one, but I haven't investigated it more yet.
>
> --- a/drivers/net/wireless/ath/ath10k/pci.c
> +++ b/drivers/net/wireless/ath/ath10k/pci.c
> @@ -2811,6 +2811,18 @@ static int ath10k_pci_claim(struct ath10k *ar)
>
> pci_set_drvdata(pdev, ar);
>
> + /*
> + * Without any knowledge of the Host, the Target may have been
> reset or
> + * power cycled and its Config Space may no longer reflect the
> PCI
> + * address space that was assigned earlier by the PCI
> infrastructure.
> + * Refresh it now.
> + */
> + ret = pci_assign_resource(pdev, BAR_NUM);
> + if (ret) {
> + ath10k_err(ar, "failed to assign PCI space: %d\n",
> ret);
> + return ret;
> + }
> +
> ret = pci_enable_device(pdev);
> if (ret) {
> ath10k_err(ar, "failed to enable pci device:
> %d\n",
> ret);
>
>
> --
> Kalle Valo
>
[-- Attachment #2: 3.18.24.log --]
[-- Type: application/octet-stream, Size: 39844 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.18.24-wifirouter-5492M (pommnitz@wifirouter-devel-007) (gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04) ) #3 Tue Nov 17 17:19:19 CET 2015
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] NSC Geode by NSC
[ 0.000000] Cyrix CyrixInstead
[ 0.000000] Disabled fast string operations
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003eeeffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000003eef0000-0x000000003eefffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[ 0.000000] SMBIOS 2.2 present.
[ 0.000000] DMI: embedded-logic DESIGN & MORE i855-W83627HF/ , BIOS 6.00 PG 03/20/2008
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x3eef0 max_arch_pfn = 0x100000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-CBFFF write-protect
[ 0.000000] CC000-EFFFF uncachable
[ 0.000000] F0000-FFFFF write-through
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask FC0000000 write-back
[ 0.000000] 1 base 03F000000 mask FFF000000 uncachable
[ 0.000000] 2 base 03FF00000 mask FFFF00000 write-back
[ 0.000000] 3 disabled
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] PAT not supported by CPU.
[ 0.000000] original variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 1GB, type WB
[ 0.000000] reg 1, base: 1008MB, range: 16MB, type UC
[ 0.000000] reg 2, base: 1023MB, range: 1MB, type WB
[ 0.000000] total RAM covered: 1008M
[ 0.000000] Found optimal setting for mtrr clean up
[ 0.000000] gran_size: 64K chunk_size: 32M num_reg: 2 lose cover RAM: 0G
[ 0.000000] New variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 1GB, type WB
[ 0.000000] reg 1, base: 1008MB, range: 16MB, type UC
[ 0.000000] Warning only 895MB will be used.
[ 0.000000] Use a HIGHMEM enabled kernel.
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
[ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x37800000-0x37bfffff]
[ 0.000000] [mem 0x37800000-0x37bfffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x30000000-0x377fffff]
[ 0.000000] [mem 0x30000000-0x377fffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x2fffffff]
[ 0.000000] [mem 0x00100000-0x003fffff] page 4k
[ 0.000000] [mem 0x00400000-0x2fffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x37c00000-0x37fa0fff]
[ 0.000000] [mem 0x37c00000-0x37fa0fff] page 4k
[ 0.000000] BRK [0x018f4000, 0x018f4fff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x3e83b000-0x3eeeffff]
[ 0.000000] Allocated new RAMDISK: [mem 0x378ec000-0x37fa03c1]
[ 0.000000] Move RAMDISK from [mem 0x3e83b000-0x3eeef3c1] to [mem 0x378ec000-0x37fa03c1]
[ 0.000000] 895MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 37fa1000
[ 0.000000] low ram: 0 - 37fa1000
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] Normal [mem 0x01000000-0x37fa0fff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0009efff]
[ 0.000000] node 0: [mem 0x00100000-0x3eeeffff]
[ 0.000000] Initmem setup node 0 [mem 0x00001000-0x3eeeffff]
[ 0.000000] On node 0 totalpages: 229183
[ 0.000000] DMA zone: 32 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3998 pages, LIFO batch:0
[ 0.000000] Normal zone: 1760 pages used for memmap
[ 0.000000] Normal zone: 225185 pages, LIFO batch:31
[ 0.000000] Using APIC driver default
[ 0.000000] Reserving Intel graphics stolen memory at 0x3ef00000-0x3fefffff
[ 0.000000] SFI: Simple Firmware Interface v0.81 http://simplefirmware.org
[ 0.000000] Found and enabled local APIC!
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] e820: [mem 0x3ff00000-0xfebfffff] available for PCI devices
[ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 227391
[ 0.000000] Kernel command line: BOOT_IMAGE=3.18 ro root=801 console=ttyS0,38400 console=tty0 libata.dma=0 acpi=off root=/dev/sda1
[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Initializing CPU#0
[ 0.000000] Memory: 891572K/916732K available (5269K kernel code, 543K rwdata, 2280K rodata, 632K init, 400K bss, 25160K reserved)
[ 0.000000] virtual kernel memory layout:
[ 0.000000] fixmap : 0xfffa3000 - 0xfffff000 ( 368 kB)
[ 0.000000] vmalloc : 0xf87a1000 - 0xfffa1000 ( 120 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xf7fa1000 ( 895 MB)
[ 0.000000] .init : 0xc17ea000 - 0xc1888000 ( 632 kB)
[ 0.000000] .data : 0xc1525982 - 0xc17e8c40 (2828 kB)
[ 0.000000] .text : 0xc1000000 - 0xc1525982 (5270 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] NR_IRQS:2304 nr_irqs:24 0
[ 0.000000] CPU 0 irqstacks, hard=f6c08000 soft=f6c0a000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] console [ttyS0] enabled
[ 0.000000] allocated 1835008 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 1000.047 MHz processor
[ 0.012015] Calibrating delay loop (skipped), value calculated using timer frequency.. 2000.09 BogoMIPS (lpj=4000188)
[ 0.020004] pid_max: default: 32768 minimum: 301
[ 0.024080] Security Framework initialized
[ 0.028031] Smack: Initializing.
[ 0.032027] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.036006] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.040491] Initializing cgroup subsys memory
[ 0.044024] Initializing cgroup subsys devices
[ 0.048009] Initializing cgroup subsys freezer
[ 0.052008] Initializing cgroup subsys net_cls
[ 0.056007] Initializing cgroup subsys blkio
[ 0.060006] Initializing cgroup subsys perf_event
[ 0.064007] Initializing cgroup subsys net_prio
[ 0.068007] Initializing cgroup subsys hugetlb
[ 0.072052] Disabled fast string operations
[ 0.076013] mce: CPU supports 5 MCE banks
[ 0.080018] CPU0: Thermal monitoring enabled (TM1)
[ 0.084020] Last level iTLB entries: 4KB 128, 2MB 0, 4MB 2
[ 0.084020] Last level dTLB entries: 4KB 128, 2MB 0, 4MB 8, 1GB 0
[ 0.088003] CPU: Intel(R) Celeron(R) M processor 1.00GHz (fam: 06, model: 0d, stepping: 08)
[ 0.104153] ftrace: allocating 23017 entries in 45 pages
[ 0.124217] Performance Events: p6 PMU driver.
[ 0.132007] ... version: 0
[ 0.136003] ... bit width: 32
[ 0.140003] ... generic registers: 2
[ 0.144003] ... value mask: 00000000ffffffff
[ 0.148003] ... max period: 000000007fffffff
[ 0.152003] ... fixed-purpose events: 0
[ 0.156003] ... event mask: 0000000000000003
[ 0.167023] Enabling APIC mode: Flat. Using 0 I/O APICs
[ 0.276043] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.280227] devtmpfs: initialized
[ 0.290361] pinctrl core: initialized pinctrl subsystem
[ 0.292228] regulator-dummy: no parameters
[ 0.296084] RTC time: 15:16:09, date: 11/20/15
[ 0.300298] NET: Registered protocol family 16
[ 0.304397] cpuidle: using governor ladder
[ 0.308007] cpuidle: using governor menu
[ 0.338233] PCI: PCI BIOS revision 2.10 entry at 0xfb110, last bus=6
[ 0.340002] PCI: Using configuration type 1 for base access
[ 0.349750] ACPI: Interpreter disabled.
[ 0.352156] vgaarb: loaded
[ 0.356231] SCSI subsystem initialized
[ 0.360081] libata version 3.00 loaded.
[ 0.360221] usbcore: registered new interface driver usbfs
[ 0.364039] usbcore: registered new interface driver hub
[ 0.368030] usbcore: registered new device driver usb
[ 0.372164] PCI: Probing PCI hardware
[ 0.376011] PCI: root bus 00: using default resources
[ 0.376015] PCI: Probing PCI hardware (bus 00)
[ 0.376108] PCI host bridge to bus 0000:00
[ 0.380010] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
[ 0.384005] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
[ 0.388004] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
[ 0.392020] pci 0000:00:00.0: [8086:3580] type 00 class 0x060000
[ 0.392172] pci 0000:00:00.1: [8086:3584] type 00 class 0x088000
[ 0.392303] pci 0000:00:00.3: [8086:3585] type 00 class 0x088000
[ 0.396110] pci 0000:00:02.0: [8086:3582] type 00 class 0x030000
[ 0.396127] pci 0000:00:02.0: reg 0x10: [mem 0xe0000000-0xe7ffffff pref]
[ 0.396138] pci 0000:00:02.0: reg 0x14: [mem 0xe8600000-0xe867ffff]
[ 0.396148] pci 0000:00:02.0: reg 0x18: [io 0xe900-0xe907]
[ 0.396186] pci 0000:00:02.0: supports D1
[ 0.396267] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.400000] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.400026] pci 0000:00:02.1: [8086:3582] type 00 class 0x038000
[ 0.400039] pci 0000:00:02.1: reg 0x10: [mem 0x00000000-0x07ffffff pref]
[ 0.400048] pci 0000:00:02.1: reg 0x14: [mem 0x00000000-0x0007ffff]
[ 0.400084] pci 0000:00:02.1: supports D1
[ 0.400218] pci 0000:00:1d.0: [8086:24c2] type 00 class 0x0c0300
[ 0.400265] pci 0000:00:1d.0: reg 0x20: [io 0xeb00-0xeb1f]
[ 0.400388] pci 0000:00:1d.1: [8086:24c4] type 00 class 0x0c0300
[ 0.400435] pci 0000:00:1d.1: reg 0x20: [io 0xed00-0xed1f]
[ 0.400554] pci 0000:00:1d.2: [8086:24c7] type 00 class 0x0c0300
[ 0.400600] pci 0000:00:1d.2: reg 0x20: [io 0xe800-0xe81f]
[ 0.400739] pci 0000:00:1d.7: [8086:24cd] type 00 class 0x0c0320
[ 0.400762] pci 0000:00:1d.7: reg 0x10: [mem 0xe8680000-0xe86803ff]
[ 0.400849] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.400977] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060400
[ 0.401109] pci 0000:00:1f.0: [8086:24c0] type 00 class 0x060100
[ 0.401116] * The chipset may have PM-Timer Bug. Due to workarounds for a bug,
[ 0.401116] * this clock source is slow. If you are sure your timer does not have
[ 0.401116] * this bug, please use "acpi_pm_good" to disable the workaround
[ 0.404071] pci 0000:00:1f.0: quirk: [io 0x0400-0x047f] claimed by ICH4 ACPI/GPIO/TCO
[ 0.408007] pci 0000:00:1f.0: quirk: [io 0x0480-0x04bf] claimed by ICH4 GPIO
[ 0.412112] pci 0000:00:1f.1: [8086:24cb] type 00 class 0x01018a
[ 0.412131] pci 0000:00:1f.1: reg 0x10: [io 0x0000-0x0007]
[ 0.412143] pci 0000:00:1f.1: reg 0x14: [io 0x0000-0x0003]
[ 0.412156] pci 0000:00:1f.1: reg 0x18: [io 0x0000-0x0007]
[ 0.412169] pci 0000:00:1f.1: reg 0x1c: [io 0x0000-0x0003]
[ 0.412182] pci 0000:00:1f.1: reg 0x20: [io 0xf000-0xf00f]
[ 0.412195] pci 0000:00:1f.1: reg 0x24: [mem 0x00000000-0x000003ff]
[ 0.412211] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.416005] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.420004] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.424004] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.428109] pci 0000:00:1f.3: [8086:24c3] type 00 class 0x0c0500
[ 0.428156] pci 0000:00:1f.3: reg 0x20: [io 0x0500-0x051f]
[ 0.428365] pci 0000:01:04.0: [12d8:e111] type 01 class 0x060400
[ 0.428565] pci 0000:01:04.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.432019] pci 0000:01:05.0: [168c:001b] type 00 class 0x020000
[ 0.432040] pci 0000:01:05.0: reg 0x10: [mem 0xe8400000-0xe840ffff]
[ 0.432203] pci 0000:01:04.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.436042] pci 0000:01:08.0: [8086:103a] type 00 class 0x020000
[ 0.436066] pci 0000:01:08.0: reg 0x10: [mem 0xe8410000-0xe8410fff]
[ 0.436079] pci 0000:01:08.0: reg 0x14: [io 0xd000-0xd03f]
[ 0.436145] pci 0000:01:08.0: supports D1 D2
[ 0.436151] pci 0000:01:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.436301] pci 0000:01:04.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.440032] pci 0000:00:1e.0: PCI bridge to [bus 01-06] (subtractive decode)
[ 0.444007] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff]
[ 0.444015] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xe85fffff]
[ 0.444023] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
[ 0.444029] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[ 0.444176] pci 0000:02:00.0: [104c:8232] type 01 class 0x060400
[ 0.444372] pci 0000:02:00.0: supports D1 D2
[ 0.444377] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.444555] pci 0000:01:04.0: PCI bridge to [bus 02-06]
[ 0.448013] pci 0000:01:04.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.448218] pci 0000:03:00.0: [104c:8233] type 01 class 0x060400
[ 0.448418] pci 0000:03:00.0: supports D1 D2
[ 0.448423] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.448607] pci 0000:03:01.0: [104c:8233] type 01 class 0x060400
[ 0.448807] pci 0000:03:01.0: supports D1 D2
[ 0.448813] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.449003] pci 0000:03:02.0: [104c:8233] type 01 class 0x060400
[ 0.449200] pci 0000:03:02.0: supports D1 D2
[ 0.449205] pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.449433] pci 0000:02:00.0: PCI bridge to [bus 03-06]
[ 0.452022] pci 0000:02:00.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.452192] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.456228] pci 0000:05:00.0: [168c:003c] type 00 class 0x028000
[ 0.456276] pci 0000:05:00.0: reg 0x10: [mem 0xe8000000-0xe81fffff 64bit]
[ 0.456387] pci 0000:05:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[ 0.456502] pci 0000:05:00.0: supports D1 D2
[ 0.456622] pci 0000:03:01.0: PCI bridge to [bus 05]
[ 0.460021] pci 0000:03:01.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.460198] pci 0000:03:02.0: PCI bridge to [bus 06]
[ 0.464097] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 06
[ 0.464189] pci 0000:00:1f.0: PIIX/ICH IRQ router [8086:24c0]
[ 0.468030] PCI: setting IRQ 5 as level-triggered
[ 0.468036] pci 0000:00:1f.1: found PCI INT A -> IRQ 5
[ 0.472013] pci 0000:00:1f.1: sharing IRQ 5 with 0000:00:1d.2
[ 0.476049] PCI: pci_cache_line_size set to 64 bytes
[ 0.476127] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[ 0.476133] e820: reserve RAM buffer [mem 0x3eef0000-0x3fffffff]
[ 0.476468] NetLabel: Initializing
[ 0.480004] NetLabel: domain hash size = 128
[ 0.484002] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.488031] NetLabel: unlabeled traffic allowed by default
[ 0.492317] Switched to clocksource refined-jiffies
[ 0.515532] pnp: PnP ACPI: disabled
[ 0.523366] pci 0000:03:00.0: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000
[ 0.523379] pci 0000:03:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
[ 0.523387] pci 0000:03:00.0: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000
[ 0.523411] pci 0000:03:01.0: bridge window [io 0x1000-0x0fff] to [bus 05] add_size 1000
[ 0.523419] pci 0000:03:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000
[ 0.523458] pci 0000:03:00.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 0.523465] pci 0000:03:01.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 0.523473] pci 0000:02:00.0: bridge window [io 0x1000-0x0fff] to [bus 03-06] add_size 2000
[ 0.523480] pci 0000:03:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 0.523487] pci 0000:03:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 0.523495] pci 0000:02:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03-06] add_size 400000
[ 0.523509] pci 0000:02:00.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 2000
[ 0.523516] pci 0000:01:04.0: bridge window [io 0x1000-0x0fff] to [bus 02-06] add_size 2000
[ 0.523523] pci 0000:02:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 400000
[ 0.523531] pci 0000:01:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02-06] add_size 400000
[ 0.523541] pci 0000:01:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 400000
[ 0.523549] pci 0000:00:1e.0: bridge window [mem 0x00100000-0x000fffff pref] to [bus 01-06] add_size 400000
[ 0.523568] pci 0000:00:1e.0: res[15]=[mem 0x00100000-0x000fffff pref] get_res_add_size add_size 400000
[ 0.523582] pci 0000:00:02.1: BAR 0: assigned [mem 0x40000000-0x47ffffff pref]
[ 0.524015] pci 0000:00:1e.0: BAR 15: assigned [mem 0x48000000-0x483fffff pref]
[ 0.528008] pci 0000:00:02.1: BAR 1: assigned [mem 0x48400000-0x4847ffff]
[ 0.532010] pci 0000:00:1f.1: BAR 5: assigned [mem 0x48480000-0x484803ff]
[ 0.536016] pci 0000:01:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 400000
[ 0.536022] pci 0000:01:04.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 2000
[ 0.536030] pci 0000:01:04.0: BAR 15: assigned [mem 0x48000000-0x483fffff 64bit pref]
[ 0.540012] pci 0000:01:04.0: BAR 13: assigned [io 0x1000-0x2fff]
[ 0.544012] pci 0000:02:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 400000
[ 0.544018] pci 0000:02:00.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 2000
[ 0.544025] pci 0000:02:00.0: BAR 15: assigned [mem 0x48000000-0x483fffff 64bit pref]
[ 0.548008] pci 0000:02:00.0: BAR 13: assigned [io 0x1000-0x2fff]
[ 0.552015] pci 0000:03:00.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[ 0.552021] pci 0000:03:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 0.552028] pci 0000:03:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 0.552034] pci 0000:03:00.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 0.552040] pci 0000:03:01.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 0.552047] pci 0000:03:00.0: BAR 14: no space for [mem size 0x00200000]
[ 0.556009] pci 0000:03:00.0: BAR 14: failed to assign [mem size 0x00200000]
[ 0.560011] pci 0000:03:00.0: BAR 15: assigned [mem 0x48000000-0x481fffff 64bit pref]
[ 0.564010] pci 0000:03:01.0: BAR 15: assigned [mem 0x48200000-0x483fffff 64bit pref]
[ 0.568010] pci 0000:03:00.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 0.572010] pci 0000:03:01.0: BAR 13: assigned [io 0x2000-0x2fff]
[ 0.576013] pci 0000:03:00.0: BAR 14: no space for [mem size 0x00200000]
[ 0.580010] pci 0000:03:00.0: BAR 14: failed to assign [mem size 0x00200000]
[ 0.584011] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.588013] pci 0000:03:00.0: bridge window [io 0x1000-0x1fff]
[ 0.592025] pci 0000:03:00.0: bridge window [mem 0x48000000-0x481fffff 64bit pref]
[ 0.596024] pci 0000:05:00.0: BAR 6: assigned [mem 0xe8200000-0xe820ffff pref]
[ 0.600011] pci 0000:03:01.0: PCI bridge to [bus 05]
[ 0.604014] pci 0000:03:01.0: bridge window [io 0x2000-0x2fff]
[ 0.608020] pci 0000:03:01.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.612017] pci 0000:03:01.0: bridge window [mem 0x48200000-0x483fffff 64bit pref]
[ 0.616023] pci 0000:03:02.0: PCI bridge to [bus 06]
[ 0.620036] pci 0000:02:00.0: PCI bridge to [bus 03-06]
[ 0.624015] pci 0000:02:00.0: bridge window [io 0x1000-0x2fff]
[ 0.628021] pci 0000:02:00.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.632019] pci 0000:02:00.0: bridge window [mem 0x48000000-0x483fffff 64bit pref]
[ 0.636023] pci 0000:01:04.0: PCI bridge to [bus 02-06]
[ 0.640014] pci 0000:01:04.0: bridge window [io 0x1000-0x2fff]
[ 0.644017] pci 0000:01:04.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.648017] pci 0000:01:04.0: bridge window [mem 0x48000000-0x483fffff 64bit pref]
[ 0.652019] pci 0000:00:1e.0: PCI bridge to [bus 01-06]
[ 0.656016] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff]
[ 0.660018] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xe85fffff]
[ 0.664034] pci 0000:00:1e.0: bridge window [mem 0x48000000-0x483fffff pref]
[ 0.668023] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
[ 0.668029] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
[ 0.668036] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
[ 0.668042] pci_bus 0000:01: resource 1 [mem 0xe8000000-0xe85fffff]
[ 0.668048] pci_bus 0000:01: resource 2 [mem 0x48000000-0x483fffff pref]
[ 0.668053] pci_bus 0000:01: resource 4 [io 0x0000-0xffff]
[ 0.668059] pci_bus 0000:01: resource 5 [mem 0x00000000-0xffffffff]
[ 0.668065] pci_bus 0000:02: resource 0 [io 0x1000-0x2fff]
[ 0.668071] pci_bus 0000:02: resource 1 [mem 0xe8000000-0xe83fffff]
[ 0.668077] pci_bus 0000:02: resource 2 [mem 0x48000000-0x483fffff 64bit pref]
[ 0.668083] pci_bus 0000:03: resource 0 [io 0x1000-0x2fff]
[ 0.668089] pci_bus 0000:03: resource 1 [mem 0xe8000000-0xe83fffff]
[ 0.668095] pci_bus 0000:03: resource 2 [mem 0x48000000-0x483fffff 64bit pref]
[ 0.668102] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff]
[ 0.668108] pci_bus 0000:04: resource 2 [mem 0x48000000-0x481fffff 64bit pref]
[ 0.668114] pci_bus 0000:05: resource 0 [io 0x2000-0x2fff]
[ 0.668119] pci_bus 0000:05: resource 1 [mem 0xe8000000-0xe83fffff]
[ 0.668125] pci_bus 0000:05: resource 2 [mem 0x48200000-0x483fffff 64bit pref]
[ 0.668208] NET: Registered protocol family 2
[ 0.672505] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.676060] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.680059] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.684082] TCP: reno registered
[ 0.688019] UDP hash table entries: 512 (order: 1, 8192 bytes)
[ 0.692026] UDP-Lite hash table entries: 512 (order: 1, 8192 bytes)
[ 0.696123] NET: Registered protocol family 1
[ 0.700066] pci 0000:00:02.0: Video device with shadowed ROM
[ 0.700087] PCI: setting IRQ 10 as level-triggered
[ 0.700094] pci 0000:00:1d.0: found PCI INT A -> IRQ 10
[ 0.704022] pci 0000:00:1d.0: sharing IRQ 10 with 0000:00:02.0
[ 0.708033] pci 0000:00:1d.0: sharing IRQ 10 with 0000:01:04.0
[ 0.712061] PCI: setting IRQ 9 as level-triggered
[ 0.712067] pci 0000:00:1d.1: found PCI INT B -> IRQ 9
[ 0.716076] pci 0000:00:1d.2: found PCI INT C -> IRQ 5
[ 0.720032] pci 0000:00:1d.2: sharing IRQ 5 with 0000:00:1f.1
[ 0.724062] PCI: setting IRQ 3 as level-triggered
[ 0.724068] pci 0000:00:1d.7: found PCI INT D -> IRQ 3
[ 0.728210] pci 0000:01:08.0: Firmware left e100 interrupts enabled; disabling
[ 0.732044] PCI: CLS 32 bytes, default 64
[ 0.732160] Trying to unpack rootfs image as initramfs...
[ 1.135794] Freeing initrd memory: 6868K (f78ec000 - f7fa1000)
[ 1.136399] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 1.140151] microcode: CPU0 sig=0x6d8, pf=0x20, revision=0x0
[ 1.144205] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 1.148117] Scanning for low memory corruption every 60 seconds
[ 1.152801] futex hash table entries: 256 (order: -1, 3072 bytes)
[ 1.156066] Initialise system trusted keyring
[ 1.160103] audit: initializing netlink subsys (disabled)
[ 1.164083] audit: type=2000 audit(1448032568.164:1): initialized
[ 1.168687] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 1.178208] zpool: loaded
[ 1.180051] zbud: loaded
[ 1.184237] VFS: Disk quotas dquot_6.5.2
[ 1.188177] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 1.193354] fuse init (API version 7.23)
[ 1.196335] msgmni has been set to 1754
[ 1.200221] Key type big_key registered
[ 1.204672] Key type asymmetric registered
[ 1.208071] Asymmetric key parser 'x509' registered
[ 1.212087] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 1.220098] io scheduler noop registered
[ 1.224058] io scheduler deadline registered (default)
[ 1.228162] io scheduler cfq registered
[ 1.232348] pci 0000:01:04.0: found PCI INT A -> IRQ 10
[ 1.236058] pci 0000:01:04.0: sharing IRQ 10 with 0000:00:02.0
[ 1.240053] pci 0000:01:04.0: sharing IRQ 10 with 0000:00:1d.0
[ 1.244255] pcieport 0000:03:00.0: irq 16 for MSI/MSI-X
[ 1.244477] pcieport 0000:03:01.0: irq 17 for MSI/MSI-X
[ 1.244821] intel_idle: does not run on family 6 model 13
[ 1.245156] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.252056] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 1.265978] brd: module loaded
[ 1.273248] loop: module loaded
[ 1.276270] ata_piix 0000:00:1f.1: version 2.13
[ 1.276297] ata_piix 0000:00:1f.1: found PCI INT A -> IRQ 5
[ 1.280068] ata_piix 0000:00:1f.1: sharing IRQ 5 with 0000:00:1d.2
[ 1.285019] scsi host0: ata_piix
[ 1.288284] scsi host1: ata_piix
[ 1.292194] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[ 1.296055] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[ 1.300436] libphy: Fixed MDIO Bus: probed
[ 1.304099] ata2: port disabled--ignoring
[ 1.304120] tun: Universal TUN/TAP device driver, 1.6
[ 1.308054] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.312211] PPP generic driver version 2.4.2
[ 1.316210] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.320077] ehci-pci: EHCI PCI platform driver
[ 1.324094] ehci-pci 0000:00:1d.7: found PCI INT D -> IRQ 3
[ 1.328133] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 1.332067] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 1.340309] ehci-pci 0000:00:1d.7: cache line size of 32 is not supported
[ 1.340328] ehci-pci 0000:00:1d.7: irq 3, io mem 0xe8680000
[ 1.356068] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 1.360173] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.364060] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.368059] usb usb1: Product: EHCI Host Controller
[ 1.372059] usb usb1: Manufacturer: Linux 3.18.24-wifirouter-5492M ehci_hcd
[ 1.376059] usb usb1: SerialNumber: 0000:00:1d.7
[ 1.384303] hub 1-0:1.0: USB hub found
[ 1.388075] hub 1-0:1.0: 6 ports detected
[ 1.396102] ehci-platform: EHCI generic platform driver
[ 1.400092] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.404071] ohci-pci: OHCI PCI platform driver
[ 1.408093] ohci-platform: OHCI generic platform driver
[ 1.412084] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.416118] uhci_hcd 0000:00:1d.0: found PCI INT A -> IRQ 10
[ 1.420068] uhci_hcd 0000:00:1d.0: sharing IRQ 10 with 0000:00:02.0
[ 1.424076] uhci_hcd 0000:00:1d.0: sharing IRQ 10 with 0000:01:04.0
[ 1.428096] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 1.432071] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 1.436072] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 1.440086] uhci_hcd 0000:00:1d.0: irq 10, io base 0x0000eb00
[ 1.444162] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.448065] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.452064] usb usb2: Product: UHCI Host Controller
[ 1.456067] usb usb2: Manufacturer: Linux 3.18.24-wifirouter-5492M uhci_hcd
[ 1.460065] usb usb2: SerialNumber: 0000:00:1d.0
[ 1.464583] hub 2-0:1.0: USB hub found
[ 1.468079] hub 2-0:1.0: 2 ports detected
[ 1.472332] ata1.00: CFA: InnoDisk Corp. - EDC4000 1GB, 081107, max UDMA/66
[ 1.476067] ata1.00: 2047248 sectors, multi 2: LBA
[ 1.480070] ata1.00: limited to UDMA/33 due to 40-wire cable
[ 1.484462] uhci_hcd 0000:00:1d.1: found PCI INT B -> IRQ 9
[ 1.488119] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 1.492129] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 1.496286] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 1.500089] uhci_hcd 0000:00:1d.1: irq 9, io base 0x0000ed00
[ 1.504218] ata1.00: configured for PIO4
[ 1.508250] scsi 0:0:0:0: Direct-Access ATA InnoDisk Corp. - 07 PQ: 0 ANSI: 5
[ 1.512191] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.516070] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.520069] usb usb3: Product: UHCI Host Controller
[ 1.524069] usb usb3: Manufacturer: Linux 3.18.24-wifirouter-5492M uhci_hcd
[ 1.528069] usb usb3: SerialNumber: 0000:00:1d.1
[ 1.532475] sd 0:0:0:0: [sda] 2047248 512-byte logical blocks: (1.04 GB/999 MiB)
[ 1.536234] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.540158] sd 0:0:0:0: [sda] Write Protect is off
[ 1.544072] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.544247] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 1.549354] sda: sda1 sda2
[ 1.556157] hub 3-0:1.0: USB hub found
[ 1.560103] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.564084] hub 3-0:1.0: 2 ports detected
[ 1.568342] uhci_hcd 0000:00:1d.2: found PCI INT C -> IRQ 5
[ 1.572088] uhci_hcd 0000:00:1d.2: sharing IRQ 5 with 0000:00:1f.1
[ 1.576108] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 1.580081] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 1.584126] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 1.588096] uhci_hcd 0000:00:1d.2: irq 5, io base 0x0000e800
[ 1.592171] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.596076] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.600074] usb usb4: Product: UHCI Host Controller
[ 1.604074] usb usb4: Manufacturer: Linux 3.18.24-wifirouter-5492M uhci_hcd
[ 1.608073] usb usb4: SerialNumber: 0000:00:1d.2
[ 1.612519] hub 4-0:1.0: USB hub found
[ 1.616113] hub 4-0:1.0: 2 ports detected
[ 1.620436] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.880423] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.884624] TCP: cubic registered
[ 1.888467] NET: Registered protocol family 10
[ 1.896120] NET: Registered protocol family 17
[ 1.900115] Key type dns_resolver registered
[ 1.904549] Using IPI Shortcut mode
[ 1.908417] Loading compiled-in X.509 certificates
[ 1.926412] usb 2-1: new low-speed USB device number 2 using uhci_hcd
[ 1.928776] Loaded X.509 cert 'Magrathea: Glacier signing key: dc54ad1627cbfa95b57a862c79b22b8909496b64'
[ 1.932143] registered taskstats version 1
[ 1.943429] Key type trusted registered
[ 1.954769] Key type encrypted registered
[ 1.956646] Magic number: 7:843:285
[ 1.960205] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.964095] EDD information not available.
[ 1.968237] PM: Hibernation image not present or could not be loaded.
[ 1.968773] Freeing unused kernel memory: 632K (c17ea000 - c1888000)
[ 1.972163] Write protecting the kernel text: 5272k
[ 1.976173] Write protecting the kernel read-only data: 2284k
[ 2.016387] systemd-udevd[94]: starting version 204
[ 2.114222] usb 2-1: New USB device found, idVendor=413c, idProduct=2107
[ 2.116117] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.120114] usb 2-1: Product: Dell USB Entry Keyboard
[ 2.124106] usb 2-1: Manufacturer: DELL
[ 2.140768] Switched to clocksource tsc
[ 2.234200] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[ 2.253051] e100: Copyright(c) 1999-2006 Intel Corporation
[ 2.345508] PCI: setting IRQ 11 as level-triggered
[ 2.345523] e100 0000:01:08.0: found PCI INT A -> IRQ 11
[ 2.462005] e100 0000:01:08.0 eth0: addr 0xe8410000, irq 11, MAC addr 00:16:27:00:90:fa
[ 2.629677] hidraw: raw HID events driver (C) Jiri Kosina
[ 2.689187] usbcore: registered new interface driver usbhid
[ 2.705939] usbhid: USB HID core driver
[ 2.733859] input: DELL Dell USB Entry Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:413C:2107.0001/input/input1
[ 2.770374] hid-generic 0003:413C:2107.0001: input,hidraw0: USB HID v1.11 Keyboard [DELL Dell USB Entry Keyboard] on usb-0000:00:1d.0-1/input0
[ 4.011836] EXT4-fs (sda1): INFO: recovery required on readonly filesystem
[ 4.033935] EXT4-fs (sda1): write access will be enabled during recovery
[ 5.189778] random: nonblocking pool is initialized
[ 5.347085] EXT4-fs (sda1): recovery complete
[ 5.381344] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 7.728389] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[ 7.761754] systemd-udevd[304]: starting version 204
[ 9.099205] e100 0000:01:08.0 lan1: renamed from eth0
[ 9.101708] systemd-udevd[335]: renamed network interface eth0 to lan1
[ 9.334981] wlan: module verification failed: signature and/or required key missing - tainting kernel
[ 9.807238] intel_rng: FWH not detected
[ 11.074377] PCI: setting IRQ 15 as level-triggered
[ 11.074392] ath_pci 0000:01:05.0: found PCI INT A -> IRQ 15
[ 11.074418] ath_pci 0000:01:05.0: sharing IRQ 15 with 0000:00:1f.3
[ 11.652190] cfg80211: Calling CRDA to update world regulatory domain
[ 11.652227] cfg80211: World regulatory domain updated:
[ 11.652231] cfg80211: DFS Master region: unset
[ 11.652234] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[ 11.652240] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 11.652246] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 11.652251] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[ 11.652257] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[ 11.652263] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[ 11.652269] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[ 11.652274] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[ 11.652279] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[ 12.729298] init: failsafe main process (430) killed by TERM signal
[ 13.411298] NET: Registered protocol family 15
[ 14.111818] MadWifi: ath_attach: Switching rfkill capability off.
[ 14.282594] wifi0: Atheros AR5413 chip found (MAC 10.4, PHY SChip 6.1, Radio 6.3)
[ 14.330869] ath_pci: wifi0: Atheros 5413: mem=0xe8400000, irq=15
[ 14.358625] ath_pci 0000:01:05.0 radio: renamed from ath0
[ 14.359155] systemd-udevd[327]: renamed network interface ath0 to radio
[ 14.877230] ath10k_pci 0000:05:00.0: irq 18 for MSI/MSI-X
[ 14.877272] ath10k_pci 0000:05:00.0: pci irq msi interrupts 1 irq_mode 0 reset_mode 0
[ 15.190944] ath10k_pci 0000:05:00.0: Direct firmware load for ath10k/QCA988X/hw2.0/firmware-3.bin failed with error -2
[ 15.190954] ath10k_pci 0000:05:00.0: Falling back to user helper
[ 15.193255] ath10k_pci 0000:05:00.0: could not fetch firmware file 'ath10k/QCA988X/hw2.0/firmware-3.bin': -11
[ 15.402697] ath10k_pci 0000:05:00.0: Unknown FW IE: 30
[ 17.031120] ath10k_pci 0000:05:00.0: qca988x hw2.0 (0x4100016c, 0x043222ff) fw 10.1.467-ct-com-full-015-7e95dc api 2 htt 2.1
[ 17.031132] ath10k_pci 0000:05:00.0: debug 1 debugfs 1 tracing 1 dfs 0 testmode 0
[ 17.571860] ath: EEPROM regdomain: 0x0
[ 17.571869] ath: EEPROM indicates default country code should be used
[ 17.571872] ath: doing EEPROM country->regdmn map search
[ 17.571876] ath: country maps to regdmn code: 0x3a
[ 17.571880] ath: Country alpha2 being used: 00
[ 17.571883] ath: Regpair used: 0x3a
[ 17.607408] ath10k_pci 0000:05:00.0 ap: renamed from wlan0
[ 17.607986] systemd-udevd[324]: renamed network interface wlan0 to ap
[ 19.021998] IPv6: ADDRCONF(NETDEV_UP): ap: link is not ready
[ 19.049627] IPv6: ADDRCONF(NETDEV_UP): lan1: link is not ready
[ 23.472647] _x_.dummy: renamed from dummy0
[ 23.473042] systemd-udevd[954]: renamed network interface dummy0 to _x_.dummy
[ 23.859708] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 24.132228] EXT4-fs (sda2): re-mounted. Opts: (null)
[ 24.137671] EXT4-fs (sda2): re-mounted. Opts: (null)
[ 24.153273] EXT4-fs (sda2): re-mounted. Opts: (null)
[ 24.566352] EXT4-fs (sda2): re-mounted. Opts: (null)
[ 24.622084] EXT4-fs (sda2): re-mounted. Opts: (null)
[ 24.629088] EXT4-fs (sda2): re-mounted. Opts: (null)
[ 26.702408] init: plymouth-upstart-bridge main process ended, respawning
[ 26.974924] softdog: Software Watchdog Timer: 0.08 initialized. soft_noboot=1 soft_margin=60 sec soft_panic=0 (nowayout=0)
[ 28.820930] u32 classifier
[ 28.820940] Actions configured
[ 29.625860] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 29.784609] xt_HIMONN_VLAN: module license 'Proprietary' taints kernel.
[ 29.784617] Disabling lock debugging due to kernel taint
[ 31.402721] device radio entered promiscuous mode
[ 34.430096] IPv6: ADDRCONF(NETDEV_UP): ap: link is not ready
[ 36.149412] IPv6: ADDRCONF(NETDEV_UP): ap: link is not ready
[ 38.449431] IPv6: ADDRCONF(NETDEV_UP): ap: link is not ready
[ 38.499699] IPv6: ADDRCONF(NETDEV_CHANGE): ap: link becomes ready
[ 43.165088] IPv6: ADDRCONF(NETDEV_UP): ap: link is not ready
[ 45.076533] IPv6: ADDRCONF(NETDEV_UP): ap: link is not ready
[ 45.128966] IPv6: ADDRCONF(NETDEV_CHANGE): ap: link becomes ready
[ 45.693496] EXT4-fs (sda2): re-mounted. Opts: (null)
[ 45.749085] EXT4-fs (sda2): re-mounted. Opts: (null)
[-- Attachment #3: 4.3.0.log --]
[-- Type: application/octet-stream, Size: 38045 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 4.3.0-wl-ath-wifirouter-5492M (pommnitz@wifirouter-devel-007) (gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04) ) #1 Fri Nov 20 13:23:51 CET 2015
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] NSC Geode by NSC
[ 0.000000] Cyrix CyrixInstead
[ 0.000000] Disabled fast string operations
[ 0.000000] x86/fpu: Legacy x87 FPU detected.
[ 0.000000] x86/fpu: Using 'lazy' FPU context switches.
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003eeeffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000003eef0000-0x000000003eefffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[ 0.000000] SMBIOS 2.2 present.
[ 0.000000] DMI: embedded-logic DESIGN & MORE i855-W83627HF/ , BIOS 6.00 PG 03/20/2008
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x3eef0 max_arch_pfn = 0x100000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-CBFFF write-protect
[ 0.000000] CC000-EFFFF uncachable
[ 0.000000] F0000-FFFFF write-through
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask FC0000000 write-back
[ 0.000000] 1 base 03F000000 mask FFF000000 uncachable
[ 0.000000] 2 base 03FF00000 mask FFFF00000 write-back
[ 0.000000] 3 disabled
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] x86/PAT: PAT not supported by CPU.
[ 0.000000] original variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 1GB, type WB
[ 0.000000] reg 1, base: 1008MB, range: 16MB, type UC
[ 0.000000] reg 2, base: 1023MB, range: 1MB, type WB
[ 0.000000] total RAM covered: 1008M
[ 0.000000] Found optimal setting for mtrr clean up
[ 0.000000] gran_size: 64K chunk_size: 32M num_reg: 2 lose cover RAM: 0G
[ 0.000000] New variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 1GB, type WB
[ 0.000000] reg 1, base: 1008MB, range: 16MB, type UC
[ 0.000000] Warning only 895MB will be used.
[ 0.000000] Use a HIGHMEM enabled kernel.
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
[ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x37800000-0x37bfffff]
[ 0.000000] [mem 0x37800000-0x37bfffff] page 4M
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x377fffff]
[ 0.000000] [mem 0x00100000-0x003fffff] page 4k
[ 0.000000] [mem 0x00400000-0x377fffff] page 4M
[ 0.000000] init_memory_mapping: [mem 0x37c00000-0x37fa0fff]
[ 0.000000] [mem 0x37c00000-0x37fa0fff] page 4k
[ 0.000000] BRK [0x0197b000, 0x0197bfff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x3e82e000-0x3eeeffff]
[ 0.000000] Allocated new RAMDISK: [mem 0x378df000-0x37fa0748]
[ 0.000000] Move RAMDISK from [mem 0x3e82e000-0x3eeef748] to [mem 0x378df000-0x37fa0748]
[ 0.000000] 895MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 37fa1000
[ 0.000000] low ram: 0 - 37fa1000
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] Normal [mem 0x0000000001000000-0x0000000037fa0fff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000003eeeffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003eeeffff]
[ 0.000000] On node 0 totalpages: 229183
[ 0.000000] DMA zone: 40 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3998 pages, LIFO batch:0
[ 0.000000] Normal zone: 2200 pages used for memmap
[ 0.000000] Normal zone: 225185 pages, LIFO batch:31
[ 0.000000] Using APIC driver default
[ 0.000000] Reserving Intel graphics stolen memory at 0x3ef00000-0x3fefffff
[ 0.000000] SFI: Simple Firmware Interface v0.81 http://simplefirmware.org
[ 0.000000] Found and enabled local APIC!
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] e820: [mem 0x3ff00000-0xfebfffff] available for PCI devices
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 226943
[ 0.000000] Kernel command line: BOOT_IMAGE=4.3.0 ro root=801 console=ttyS0,38400 console=tty0 libata.dma=0 acpi=off root=/dev/sda1
[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Initializing CPU#0
[ 0.000000] Memory: 888932K/916732K available (5635K kernel code, 646K rwdata, 2336K rodata, 640K init, 404K bss, 27800K reserved, 0K cma-reserved)
[ 0.000000] virtual kernel memory layout:
[ 0.000000] fixmap : 0xfffa3000 - 0xfffff000 ( 368 kB)
[ 0.000000] vmalloc : 0xf87a1000 - 0xfffa1000 ( 120 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xf7fa1000 ( 895 MB)
[ 0.000000] .init : 0xc186e000 - 0xc190e000 ( 640 kB)
[ 0.000000] .data : 0xc1581200 - 0xc186ca40 (2990 kB)
[ 0.000000] .text : 0xc1000000 - 0xc1581200 (5636 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] NR_IRQS:2304 nr_irqs:32 16
[ 0.000000] CPU 0 irqstacks, hard=f6832000 soft=f6834000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] console [ttyS0] enabled
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 1000.040 MHz processor
[ 0.012011] Calibrating delay loop (skipped), value calculated using timer frequency.. 2000.08 BogoMIPS (lpj=4000160)
[ 0.020004] pid_max: default: 32768 minimum: 301
[ 0.024047] Security Framework initialized
[ 0.028017] Smack: Initializing.
[ 0.032003] Smack: IPv6 port labeling enabled.
[ 0.036032] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.040005] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.044463] Initializing cgroup subsys io
[ 0.048016] Initializing cgroup subsys memory
[ 0.052020] Initializing cgroup subsys devices
[ 0.056007] Initializing cgroup subsys freezer
[ 0.060007] Initializing cgroup subsys net_cls
[ 0.064007] Initializing cgroup subsys perf_event
[ 0.068006] Initializing cgroup subsys net_prio
[ 0.072006] Initializing cgroup subsys hugetlb
[ 0.076039] Disabled fast string operations
[ 0.080011] mce: CPU supports 5 MCE banks
[ 0.084015] CPU0: Thermal monitoring enabled (TM1)
[ 0.088015] Last level iTLB entries: 4KB 128, 2MB 0, 4MB 2
[ 0.092004] Last level dTLB entries: 4KB 128, 2MB 0, 4MB 8, 1GB 0
[ 0.096003] CPU: Intel(R) Celeron(R) M processor 1.00GHz (family: 0x6, model: 0xd, stepping: 0x8)
[ 0.112351] ftrace: allocating 24092 entries in 48 pages
[ 0.132223] Performance Events: p6 PMU driver.
[ 0.140006] ... version: 0
[ 0.144003] ... bit width: 32
[ 0.148003] ... generic registers: 2
[ 0.152003] ... value mask: 00000000ffffffff
[ 0.156003] ... max period: 000000007fffffff
[ 0.160003] ... fixed-purpose events: 0
[ 0.164003] ... event mask: 0000000000000003
[ 0.172774] Enabling APIC mode: Flat. Using 0 I/O APICs
[ 0.284046] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.288193] devtmpfs: initialized
[ 0.292887] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.296173] pinctrl core: initialized pinctrl subsystem
[ 0.300306] RTC time: 15:21:40, date: 11/20/15
[ 0.304309] NET: Registered protocol family 16
[ 0.308392] cpuidle: using governor ladder
[ 0.312008] cpuidle: using governor menu
[ 0.340057] PCI: PCI BIOS revision 2.10 entry at 0xfb110, last bus=6
[ 0.344002] PCI: Using configuration type 1 for base access
[ 0.355534] ACPI: Interpreter disabled.
[ 0.356174] vgaarb: loaded
[ 0.360232] SCSI subsystem initialized
[ 0.364081] libata version 3.00 loaded.
[ 0.364213] usbcore: registered new interface driver usbfs
[ 0.368040] usbcore: registered new interface driver hub
[ 0.372033] usbcore: registered new device driver usb
[ 0.376190] PCI: Probing PCI hardware
[ 0.380009] PCI: root bus 00: using default resources
[ 0.380014] PCI: Probing PCI hardware (bus 00)
[ 0.380108] PCI host bridge to bus 0000:00
[ 0.384008] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
[ 0.388005] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
[ 0.392004] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
[ 0.396037] pci 0000:00:00.0: [8086:3580] type 00 class 0x060000
[ 0.396215] pci 0000:00:00.1: [8086:3584] type 00 class 0x088000
[ 0.396351] pci 0000:00:00.3: [8086:3585] type 00 class 0x088000
[ 0.396494] pci 0000:00:02.0: [8086:3582] type 00 class 0x030000
[ 0.396514] pci 0000:00:02.0: reg 0x10: [mem 0xe0000000-0xe7ffffff pref]
[ 0.396525] pci 0000:00:02.0: reg 0x14: [mem 0xe8600000-0xe867ffff]
[ 0.396535] pci 0000:00:02.0: reg 0x18: [io 0xe900-0xe907]
[ 0.396569] pci 0000:00:02.0: supports D1
[ 0.396652] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.400000] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.400025] pci 0000:00:02.1: [8086:3582] type 00 class 0x038000
[ 0.400042] pci 0000:00:02.1: reg 0x10: [mem 0x00000000-0x07ffffff pref]
[ 0.400051] pci 0000:00:02.1: reg 0x14: [mem 0x00000000-0x0007ffff]
[ 0.400082] pci 0000:00:02.1: supports D1
[ 0.400214] pci 0000:00:1d.0: [8086:24c2] type 00 class 0x0c0300
[ 0.400264] pci 0000:00:1d.0: reg 0x20: [io 0xeb00-0xeb1f]
[ 0.400388] pci 0000:00:1d.1: [8086:24c4] type 00 class 0x0c0300
[ 0.400437] pci 0000:00:1d.1: reg 0x20: [io 0xed00-0xed1f]
[ 0.400557] pci 0000:00:1d.2: [8086:24c7] type 00 class 0x0c0300
[ 0.400606] pci 0000:00:1d.2: reg 0x20: [io 0xe800-0xe81f]
[ 0.400742] pci 0000:00:1d.7: [8086:24cd] type 00 class 0x0c0320
[ 0.400771] pci 0000:00:1d.7: reg 0x10: [mem 0xe8680000-0xe86803ff]
[ 0.400846] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.400979] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060400
[ 0.401118] pci 0000:00:1f.0: [8086:24c0] type 00 class 0x060100
[ 0.401126] * The chipset may have PM-Timer Bug. Due to workarounds for a bug,
[ 0.401126] * this clock source is slow. If you are sure your timer does not have
[ 0.401126] * this bug, please use "acpi_pm_good" to disable the workaround
[ 0.404071] pci 0000:00:1f.0: quirk: [io 0x0400-0x047f] claimed by ICH4 ACPI/GPIO/TCO
[ 0.408007] pci 0000:00:1f.0: quirk: [io 0x0480-0x04bf] claimed by ICH4 GPIO
[ 0.412113] pci 0000:00:1f.1: [8086:24cb] type 00 class 0x01018a
[ 0.412134] pci 0000:00:1f.1: reg 0x10: [io 0x0000-0x0007]
[ 0.412147] pci 0000:00:1f.1: reg 0x14: [io 0x0000-0x0003]
[ 0.412160] pci 0000:00:1f.1: reg 0x18: [io 0x0000-0x0007]
[ 0.412172] pci 0000:00:1f.1: reg 0x1c: [io 0x0000-0x0003]
[ 0.412185] pci 0000:00:1f.1: reg 0x20: [io 0xf000-0xf00f]
[ 0.412198] pci 0000:00:1f.1: reg 0x24: [mem 0x00000000-0x000003ff]
[ 0.412215] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.416005] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.420004] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.424004] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.428111] pci 0000:00:1f.3: [8086:24c3] type 00 class 0x0c0500
[ 0.428161] pci 0000:00:1f.3: reg 0x20: [io 0x0500-0x051f]
[ 0.428373] pci 0000:01:04.0: [12d8:e111] type 01 class 0x060400
[ 0.428550] pci 0000:01:04.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.432017] pci 0000:01:05.0: [168c:001b] type 00 class 0x020000
[ 0.432043] pci 0000:01:05.0: reg 0x10: [mem 0xe8400000-0xe840ffff]
[ 0.432204] pci 0000:01:04.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.436018] pci 0000:01:08.0: [8086:103a] type 00 class 0x020000
[ 0.436042] pci 0000:01:08.0: reg 0x10: [mem 0xe8410000-0xe8410fff]
[ 0.436054] pci 0000:01:08.0: reg 0x14: [io 0xd000-0xd03f]
[ 0.436108] pci 0000:01:08.0: supports D1 D2
[ 0.436113] pci 0000:01:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.436233] pci 0000:01:04.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.440031] pci 0000:00:1e.0: PCI bridge to [bus 01-06] (subtractive decode)
[ 0.444007] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff]
[ 0.444015] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xe85fffff]
[ 0.444023] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
[ 0.444029] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[ 0.444154] pci 0000:02:00.0: [104c:8232] type 01 class 0x060400
[ 0.444318] pci 0000:02:00.0: supports D1 D2
[ 0.444323] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.444495] pci 0000:01:04.0: PCI bridge to [bus 02-06]
[ 0.448012] pci 0000:01:04.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.448179] pci 0000:03:00.0: [104c:8233] type 01 class 0x060400
[ 0.448350] pci 0000:03:00.0: supports D1 D2
[ 0.448355] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.448503] pci 0000:02:00.0: PCI bridge to [bus 03-06]
[ 0.452021] pci 0000:02:00.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.452239] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.456075] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 06
[ 0.456096] PCI: Discovered peer bus 05
[ 0.460003] PCI: root bus 05: using default resources
[ 0.460013] PCI: Probing PCI hardware (bus 05)
[ 0.460104] PCI host bridge to bus 0000:05
[ 0.464005] pci_bus 0000:05: root bus resource [io 0x0000-0xffff]
[ 0.468005] pci_bus 0000:05: root bus resource [mem 0x00000000-0xffffffff]
[ 0.472004] pci_bus 0000:05: No busn resource found for root bus, will use [bus 05-ff]
[ 0.476006] pci_bus 0000:05: busn_res: can not insert [bus 05-ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-06])
[ 0.476047] pci 0000:05:00.0: [168c:003c] type 00 class 0x028000
[ 0.476125] pci 0000:05:00.0: reg 0x10: [mem 0xe8000000-0xe81fffff 64bit]
[ 0.476234] pci 0000:05:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[ 0.476291] pci 0000:05:00.0: supports D1 D2
[ 0.476492] pci_bus 0000:05: busn_res: [bus 05-ff] end is updated to 05
[ 0.476500] pci_bus 0000:05: busn_res: can not insert [bus 05] under domain [bus 00-ff] (conflicts with (null) [bus 00-06])
[ 0.476659] pci 0000:00:1f.0: PIIX/ICH IRQ router [8086:24c0]
[ 0.480029] PCI: setting IRQ 5 as level-triggered
[ 0.480036] pci 0000:00:1f.1: found PCI INT A -> IRQ 5
[ 0.484013] pci 0000:00:1f.1: sharing IRQ 5 with 0000:00:1d.2
[ 0.488037] PCI: pci_cache_line_size set to 64 bytes
[ 0.488080] pci 0000:05:00.0: can't claim BAR 0 [mem 0xe8000000-0xe81fffff 64bit]: address conflict with PCI Bus 0000:01 [mem 0xe8000000-0xe85fffff]
[ 0.492031] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[ 0.492037] e820: reserve RAM buffer [mem 0x3eef0000-0x3fffffff]
[ 0.492391] NetLabel: Initializing
[ 0.496004] NetLabel: domain hash size = 128
[ 0.500002] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.504034] NetLabel: unlabeled traffic allowed by default
[ 0.512125] clocksource: Switched to clocksource refined-jiffies
[ 0.540725] pnp: PnP ACPI: disabled
[ 0.552907] pci 0000:03:00.0: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000
[ 0.552919] pci 0000:03:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[ 0.552927] pci 0000:03:00.0: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000 add_align 100000
[ 0.552951] pci 0000:03:00.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.552958] pci 0000:02:00.0: bridge window [io 0x1000-0x0fff] to [bus 03-06] add_size 1000
[ 0.552966] pci 0000:03:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.552973] pci 0000:03:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.552981] pci 0000:02:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03-06] add_size 200000 add_align 100000
[ 0.552996] pci 0000:02:00.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.553003] pci 0000:01:04.0: bridge window [io 0x1000-0x0fff] to [bus 02-06] add_size 1000
[ 0.553011] pci 0000:02:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.553018] pci 0000:02:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.553026] pci 0000:01:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02-06] add_size 200000 add_align 100000
[ 0.553036] pci 0000:01:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.553043] pci 0000:01:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.553053] pci 0000:00:1e.0: bridge window [mem 0x00100000-0x000fffff pref] to [bus 01-06] add_size 200000 add_align 100000
[ 0.553072] pci 0000:00:1e.0: res[15]=[mem 0x00100000-0x000fffff pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.553079] pci 0000:00:1e.0: res[15]=[mem 0x00100000-0x002fffff pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.553093] pci 0000:00:02.1: BAR 0: assigned [mem 0x40000000-0x47ffffff pref]
[ 0.556013] pci 0000:00:1e.0: BAR 15: assigned [mem 0x48000000-0x481fffff pref]
[ 0.560009] pci 0000:00:02.1: BAR 1: assigned [mem 0x48200000-0x4827ffff]
[ 0.564010] pci 0000:00:1f.1: BAR 5: assigned [mem 0x48280000-0x482803ff]
[ 0.568016] pci 0000:01:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.568023] pci 0000:01:04.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.568030] pci 0000:01:04.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.568037] pci 0000:01:04.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.568044] pci 0000:01:04.0: BAR 15: assigned [mem 0x48000000-0x481fffff 64bit pref]
[ 0.572012] pci 0000:01:04.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 0.576013] pci 0000:02:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.576020] pci 0000:02:00.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.576027] pci 0000:02:00.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.576033] pci 0000:02:00.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.576040] pci 0000:02:00.0: BAR 15: assigned [mem 0x48000000-0x481fffff 64bit pref]
[ 0.580010] pci 0000:02:00.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 0.584014] pci 0000:03:00.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.584020] pci 0000:03:00.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.584028] pci 0000:03:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.584034] pci 0000:03:00.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.584041] pci 0000:03:00.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.584048] pci 0000:03:00.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.584054] pci 0000:03:00.0: BAR 14: assigned [mem 0xe8000000-0xe81fffff]
[ 0.588010] pci 0000:03:00.0: BAR 15: assigned [mem 0x48000000-0x481fffff 64bit pref]
[ 0.592010] pci 0000:03:00.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 0.596011] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.600013] pci 0000:03:00.0: bridge window [io 0x1000-0x1fff]
[ 0.604019] pci 0000:03:00.0: bridge window [mem 0xe8000000-0xe81fffff]
[ 0.608016] pci 0000:03:00.0: bridge window [mem 0x48000000-0x481fffff 64bit pref]
[ 0.612021] pci 0000:02:00.0: PCI bridge to [bus 03-06]
[ 0.616013] pci 0000:02:00.0: bridge window [io 0x1000-0x1fff]
[ 0.620036] pci 0000:02:00.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.624017] pci 0000:02:00.0: bridge window [mem 0x48000000-0x481fffff 64bit pref]
[ 0.628023] pci 0000:01:04.0: PCI bridge to [bus 02-06]
[ 0.632013] pci 0000:01:04.0: bridge window [io 0x1000-0x1fff]
[ 0.636016] pci 0000:01:04.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.640015] pci 0000:01:04.0: bridge window [mem 0x48000000-0x481fffff 64bit pref]
[ 0.644018] pci 0000:00:1e.0: PCI bridge to [bus 01-06]
[ 0.648014] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff]
[ 0.652016] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xe85fffff]
[ 0.656016] pci 0000:00:1e.0: bridge window [mem 0x48000000-0x481fffff pref]
[ 0.660021] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
[ 0.660027] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
[ 0.660033] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
[ 0.660039] pci_bus 0000:01: resource 1 [mem 0xe8000000-0xe85fffff]
[ 0.660044] pci_bus 0000:01: resource 2 [mem 0x48000000-0x481fffff pref]
[ 0.660050] pci_bus 0000:01: resource 4 [io 0x0000-0xffff]
[ 0.660055] pci_bus 0000:01: resource 5 [mem 0x00000000-0xffffffff]
[ 0.660061] pci_bus 0000:02: resource 0 [io 0x1000-0x1fff]
[ 0.660066] pci_bus 0000:02: resource 1 [mem 0xe8000000-0xe83fffff]
[ 0.660072] pci_bus 0000:02: resource 2 [mem 0x48000000-0x481fffff 64bit pref]
[ 0.660077] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
[ 0.660083] pci_bus 0000:03: resource 1 [mem 0xe8000000-0xe83fffff]
[ 0.660088] pci_bus 0000:03: resource 2 [mem 0x48000000-0x481fffff 64bit pref]
[ 0.660094] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff]
[ 0.660100] pci_bus 0000:04: resource 1 [mem 0xe8000000-0xe81fffff]
[ 0.660105] pci_bus 0000:04: resource 2 [mem 0x48000000-0x481fffff 64bit pref]
[ 0.660123] pci 0000:05:00.0: BAR 0: assigned [mem 0x48400000-0x485fffff 64bit]
[ 0.664037] pci 0000:05:00.0: BAR 6: assigned [mem 0x48290000-0x4829ffff pref]
[ 0.668016] pci_bus 0000:05: resource 4 [io 0x0000-0xffff]
[ 0.668021] pci_bus 0000:05: resource 5 [mem 0x00000000-0xffffffff]
[ 0.668108] NET: Registered protocol family 2
[ 0.672449] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.676059] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.680057] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.684086] UDP hash table entries: 512 (order: 1, 8192 bytes)
[ 0.688025] UDP-Lite hash table entries: 512 (order: 1, 8192 bytes)
[ 0.692121] NET: Registered protocol family 1
[ 0.696061] pci 0000:00:02.0: Video device with shadowed ROM
[ 0.696300] pci 0000:01:08.0: Firmware left e100 interrupts enabled; disabling
[ 0.700033] PCI: CLS 32 bytes, default 64
[ 0.700168] Trying to unpack rootfs image as initramfs...
[ 1.107982] Freeing initrd memory: 6920K (f78df000 - f7fa1000)
[ 1.108402] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 1.112187] microcode: CPU0 sig=0x6d8, pf=0x20, revision=0x0
[ 1.116195] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 1.120122] Scanning for low memory corruption every 60 seconds
[ 1.124817] futex hash table entries: 256 (order: -1, 3072 bytes)
[ 1.128099] audit: initializing netlink subsys (disabled)
[ 1.132090] audit: type=2000 audit(1448032899.132:1): initialized
[ 1.136512] Initialise system trusted keyring
[ 1.140212] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 1.150838] zbud: loaded
[ 1.152225] VFS: Disk quotas dquot_6.6.0
[ 1.156171] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 1.164973] fuse init (API version 7.23)
[ 1.168533] Key type big_key registered
[ 1.172844] Key type asymmetric registered
[ 1.176071] Asymmetric key parser 'x509' registered
[ 1.180186] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 1.184109] io scheduler noop registered
[ 1.188056] io scheduler deadline registered (default)
[ 1.192154] io scheduler cfq registered
[ 1.196308] PCI: setting IRQ 10 as level-triggered
[ 1.196318] pcieport 0000:01:04.0: found PCI INT A -> IRQ 10
[ 1.200054] pcieport 0000:01:04.0: sharing IRQ 10 with 0000:00:02.0
[ 1.204050] pcieport 0000:01:04.0: sharing IRQ 10 with 0000:00:1d.0
[ 1.208461] intel_idle: does not run on family 6 model 13
[ 1.208829] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.216054] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 1.230864] brd: module loaded
[ 1.235648] loop: module loaded
[ 1.236259] ata_piix 0000:00:1f.1: found PCI INT A -> IRQ 5
[ 1.240064] ata_piix 0000:00:1f.1: sharing IRQ 5 with 0000:00:1d.2
[ 1.244097] ata_piix 0000:00:1f.1: version 2.13
[ 1.245079] scsi host0: ata_piix
[ 1.248289] scsi host1: ata_piix
[ 1.252186] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[ 1.256051] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[ 1.260429] libphy: Fixed MDIO Bus: probed
[ 1.264091] ata2: port disabled--ignoring
[ 1.264111] tun: Universal TUN/TAP device driver, 1.6
[ 1.268050] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.272216] PPP generic driver version 2.4.2
[ 1.276256] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.280063] ehci-pci: EHCI PCI platform driver
[ 1.284079] PCI: setting IRQ 3 as level-triggered
[ 1.284086] ehci-pci 0000:00:1d.7: found PCI INT D -> IRQ 3
[ 1.288128] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 1.292063] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 1.302813] ehci-pci 0000:00:1d.7: cache line size of 32 is not supported
[ 1.302831] ehci-pci 0000:00:1d.7: irq 3, io mem 0xe8680000
[ 1.316063] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 1.320166] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.324056] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.328055] usb usb1: Product: EHCI Host Controller
[ 1.332055] usb usb1: Manufacturer: Linux 4.3.0-wl-ath-wifirouter-5492M ehci_hcd
[ 1.336055] usb usb1: SerialNumber: 0000:00:1d.7
[ 1.340400] hub 1-0:1.0: USB hub found
[ 1.344068] hub 1-0:1.0: 6 ports detected
[ 1.348493] ehci-platform: EHCI generic platform driver
[ 1.352085] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.356065] ohci-pci: OHCI PCI platform driver
[ 1.360087] ohci-platform: OHCI generic platform driver
[ 1.364083] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.368106] uhci_hcd 0000:00:1d.0: found PCI INT A -> IRQ 10
[ 1.372063] uhci_hcd 0000:00:1d.0: sharing IRQ 10 with 0000:00:02.0
[ 1.376072] uhci_hcd 0000:00:1d.0: sharing IRQ 10 with 0000:01:04.0
[ 1.380089] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 1.384067] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 1.388065] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 1.392083] uhci_hcd 0000:00:1d.0: irq 10, io base 0x0000eb00
[ 1.396165] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.400061] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.404060] usb usb2: Product: UHCI Host Controller
[ 1.408060] usb usb2: Manufacturer: Linux 4.3.0-wl-ath-wifirouter-5492M uhci_hcd
[ 1.412060] usb usb2: SerialNumber: 0000:00:1d.0
[ 1.416587] hub 2-0:1.0: USB hub found
[ 1.420074] hub 2-0:1.0: 2 ports detected
[ 1.424331] ata1.00: CFA: InnoDisk Corp. - EDC4000 1GB, 081107, max UDMA/66
[ 1.428063] ata1.00: 2047248 sectors, multi 2: LBA
[ 1.432066] ata1.00: limited to UDMA/33 due to 40-wire cable
[ 1.436457] PCI: setting IRQ 9 as level-triggered
[ 1.436466] uhci_hcd 0000:00:1d.1: found PCI INT B -> IRQ 9
[ 1.440112] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 1.444071] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 1.448322] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 1.452087] uhci_hcd 0000:00:1d.1: irq 9, io base 0x0000ed00
[ 1.456216] ata1.00: configured for PIO4
[ 1.460235] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.464066] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.468064] usb usb3: Product: UHCI Host Controller
[ 1.472064] usb usb3: Manufacturer: Linux 4.3.0-wl-ath-wifirouter-5492M uhci_hcd
[ 1.476064] usb usb3: SerialNumber: 0000:00:1d.1
[ 1.480231] scsi 0:0:0:0: Direct-Access ATA InnoDisk Corp. - 07 PQ: 0 ANSI: 5
[ 1.484463] sd 0:0:0:0: [sda] 2047248 512-byte logical blocks: (1.04 GB/999 MiB)
[ 1.488244] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.492152] sd 0:0:0:0: [sda] Write Protect is off
[ 1.496068] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.496247] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 1.501321] sda: sda1 sda2
[ 1.504852] hub 3-0:1.0: USB hub found
[ 1.508170] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.512081] hub 3-0:1.0: 2 ports detected
[ 1.516344] uhci_hcd 0000:00:1d.2: found PCI INT C -> IRQ 5
[ 1.520084] uhci_hcd 0000:00:1d.2: sharing IRQ 5 with 0000:00:1f.1
[ 1.524102] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 1.528077] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 1.532074] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 1.536138] uhci_hcd 0000:00:1d.2: irq 5, io base 0x0000e800
[ 1.540165] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.544070] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.548071] usb usb4: Product: UHCI Host Controller
[ 1.552070] usb usb4: Manufacturer: Linux 4.3.0-wl-ath-wifirouter-5492M uhci_hcd
[ 1.556069] usb usb4: SerialNumber: 0000:00:1d.2
[ 1.560517] hub 4-0:1.0: USB hub found
[ 1.564109] hub 4-0:1.0: 2 ports detected
[ 1.568419] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.828418] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.836373] NET: Registered protocol family 10
[ 1.840573] NET: Registered protocol family 17
[ 1.844122] Key type dns_resolver registered
[ 1.848557] Using IPI Shortcut mode
[ 1.852479] registered taskstats version 1
[ 1.856110] Loading compiled-in X.509 certificates
[ 1.874813] Loaded X.509 cert 'Build time autogenerated kernel key: aa49002e6f51308e9d725a6578a022887126c191'
[ 1.876107] usb 2-1: new low-speed USB device number 2 using uhci_hcd
[ 1.880140] zswap: loaded using pool lzo/zbud
[ 1.889120] Key type trusted registered
[ 1.900510] Key type encrypted registered
[ 1.904543] Magic number: 7:946:386
[ 1.912112] usb usb4: hash matches
[ 1.916181] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.920090] EDD information not available.
[ 1.924223] PM: Hibernation image not present or could not be loaded.
[ 1.924790] Freeing unused kernel memory: 640K (c186e000 - c190e000)
[ 1.928195] Write protecting the kernel text: 5640k
[ 1.932171] Write protecting the kernel read-only data: 2340k
[ 1.972385] systemd-udevd[115]: starting version 204
[ 2.068158] usb 2-1: New USB device found, idVendor=413c, idProduct=2107
[ 2.072113] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.076110] usb 2-1: Product: Dell USB Entry Keyboard
[ 2.080102] usb 2-1: Manufacturer: DELL
[ 2.108483] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0xe6a3ce4f0d, max_idle_ns: 440795252659 ns
[ 2.116329] clocksource: Switched to clocksource tsc
[ 2.209187] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[ 2.228108] e100: Copyright(c) 1999-2006 Intel Corporation
[ 2.376115] PCI: setting IRQ 11 as level-triggered
[ 2.376129] e100 0000:01:08.0: found PCI INT A -> IRQ 11
[ 2.549348] e100 0000:01:08.0 eth0: addr 0xe8410000, irq 11, MAC addr 00:16:27:00:90:fa
[ 2.586364] hidraw: raw HID events driver (C) Jiri Kosina
[ 2.648587] usbcore: registered new interface driver usbhid
[ 2.665347] usbhid: USB HID core driver
[ 2.693339] input: DELL Dell USB Entry Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:413C:2107.0001/input/input1
[ 2.784200] hid-generic 0003:413C:2107.0001: input,hidraw0: USB HID v1.11 Keyboard [DELL Dell USB Entry Keyboard] on usb-0000:00:1d.0-1/input0
[ 4.024583] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 4.690131] random: nonblocking pool is initialized
[ 6.393329] systemd-udevd[325]: starting version 204
[ 6.399369] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[ 7.692600] e100 0000:01:08.0 lan1: renamed from eth0
[ 7.694297] systemd-udevd[345]: renamed network interface eth0 to lan1
[ 8.231442] intel_rng: FWH not detected
[ 10.166662] init: failsafe main process (449) killed by TERM signal
[ 10.416293] cfg80211: World regulatory domain updated:
[ 10.416303] cfg80211: DFS Master region: unset
[ 10.416307] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[ 10.416313] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 10.416318] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 10.416323] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[ 10.416329] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[ 10.416336] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[ 10.416341] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[ 10.416346] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[ 10.416350] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[ 10.735534] NET: Registered protocol family 15
[ 12.024446] ath10k_pci 0000:05:00.0: failed to wake up device : -110
[ 12.045345] ath10k_pci: probe of 0000:05:00.0 failed with error -110
[ 29.736886] usb 1-4: new high-speed USB device number 3 using ehci-pci
[ 29.872832] usb 1-4: New USB device found, idVendor=0951, idProduct=1665
[ 29.872858] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 29.872864] usb 1-4: Product: DataTraveler 2.0
[ 29.872870] usb 1-4: Manufacturer: Kingston
[ 29.872875] usb 1-4: SerialNumber: 001A928EED05FE1069495FD8
[ 30.075775] usb-storage 1-4:1.0: USB Mass Storage device detected
[ 30.084529] scsi host2: usb-storage 1-4:1.0
[ 30.085321] usbcore: registered new interface driver usb-storage
[ 30.142051] usbcore: registered new interface driver uas
[ 31.113045] scsi 2:0:0:0: Direct-Access Kingston DataTraveler 2.0 1.00 PQ: 0 ANSI: 4
[ 31.118593] sd 2:0:0:0: Attached scsi generic sg1 type 0
[ 31.119259] sd 2:0:0:0: [sdb] 15131636 512-byte logical blocks: (7.74 GB/7.21 GiB)
[ 31.119877] sd 2:0:0:0: [sdb] Write Protect is off
[ 31.119889] sd 2:0:0:0: [sdb] Mode Sense: 45 00 00 00
[ 31.121144] sd 2:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 31.125879] sdb: sdb1
[ 31.128397] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[ 31.550698] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 38.528625] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[-- Attachment #4: Type: text/plain, Size: 146 bytes --]
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Yesterdays kernel/git/kvalo/ath.git failes with COMPEX WLE600VX
2015-11-20 11:34 ` Kalle Valo
2015-11-20 13:31 ` Joerg Pommnitz
@ 2015-11-20 13:49 ` Joerg Pommnitz
1 sibling, 0 replies; 5+ messages in thread
From: Joerg Pommnitz @ 2015-11-20 13:49 UTC (permalink / raw)
To: Kalle Valo; +Cc: ath10k@lists.infradead.org
[-- Attachment #1: Type: text/plain, Size: 1902 bytes --]
Kalle,
your patch did not really make a difference. ath10k now says:
[ 13.098404] ath10k_pci 0000:05:00.0: BAR 0: assigned [mem 0x48400000-0x485fffff 64bit]
[ 13.128788] ath10k_pci 0000:05:00.0: failed to wake up device : -110
[ 13.146877] ath10k_pci: probe of 0000:05:00.0 failed with error -110
dmesg log is attached.
--
Regards Joerg
> Kalle Valo <kvalo@qca.qualcomm.com> schrieb am 12:35 Freitag, 20.November 2015:
> > Joerg Pommnitz <pommnitz@yahoo.com> writes:
>
>
>> Hello all,
>> Kalles current git tree fails to initialize my COMPEX WLE600VX. The kernel
> log shows
>> [ 16.373978] ath10k_pci 0000:05:00.0: failed to wake up device : -110
>> [ 16.374118] ath10k_pci: probe of 0000:05:00.0 failed with error -110
>
> Can you send full dmesg, right from the beginning of the boot, please?
> It might give some hints.
>
> I have a similar problem in one of my laptop (lenovo thinkpad x230). The
> patch below helps with that one, but I haven't investigated it more yet.
>
> --- a/drivers/net/wireless/ath/ath10k/pci.c
> +++ b/drivers/net/wireless/ath/ath10k/pci.c
> @@ -2811,6 +2811,18 @@ static int ath10k_pci_claim(struct ath10k *ar)
>
> pci_set_drvdata(pdev, ar);
>
> + /*
> + * Without any knowledge of the Host, the Target may have been
> reset or
> + * power cycled and its Config Space may no longer reflect the
> PCI
> + * address space that was assigned earlier by the PCI
> infrastructure.
> + * Refresh it now.
> + */
> + ret = pci_assign_resource(pdev, BAR_NUM);
> + if (ret) {
> + ath10k_err(ar, "failed to assign PCI space: %d\n",
> ret);
> + return ret;
> + }
> +
> ret = pci_enable_device(pdev);
> if (ret) {
> ath10k_err(ar, "failed to enable pci device:
> %d\n",
> ret);
>
>
> --
> Kalle Valo
>
[-- Attachment #2: 4.3.0-patched.log --]
[-- Type: application/octet-stream, Size: 38084 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 4.3.0-wl-ath-wifirouter-5492M (pommnitz@wifirouter-devel-007) (gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04) ) #1 Fri Nov 20 13:23:51 CET 2015
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] NSC Geode by NSC
[ 0.000000] Cyrix CyrixInstead
[ 0.000000] Disabled fast string operations
[ 0.000000] x86/fpu: Legacy x87 FPU detected.
[ 0.000000] x86/fpu: Using 'lazy' FPU context switches.
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003eeeffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000003eef0000-0x000000003eefffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
[ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[ 0.000000] SMBIOS 2.2 present.
[ 0.000000] DMI: embedded-logic DESIGN & MORE i855-W83627HF/ , BIOS 6.00 PG 03/20/2008
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x3eef0 max_arch_pfn = 0x100000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-CBFFF write-protect
[ 0.000000] CC000-EFFFF uncachable
[ 0.000000] F0000-FFFFF write-through
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask FC0000000 write-back
[ 0.000000] 1 base 03F000000 mask FFF000000 uncachable
[ 0.000000] 2 base 03FF00000 mask FFFF00000 write-back
[ 0.000000] 3 disabled
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] x86/PAT: PAT not supported by CPU.
[ 0.000000] original variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 1GB, type WB
[ 0.000000] reg 1, base: 1008MB, range: 16MB, type UC
[ 0.000000] reg 2, base: 1023MB, range: 1MB, type WB
[ 0.000000] total RAM covered: 1008M
[ 0.000000] Found optimal setting for mtrr clean up
[ 0.000000] gran_size: 64K chunk_size: 32M num_reg: 2 lose cover RAM: 0G
[ 0.000000] New variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 1GB, type WB
[ 0.000000] reg 1, base: 1008MB, range: 16MB, type UC
[ 0.000000] Warning only 895MB will be used.
[ 0.000000] Use a HIGHMEM enabled kernel.
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
[ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x37800000-0x37bfffff]
[ 0.000000] [mem 0x37800000-0x37bfffff] page 4M
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x377fffff]
[ 0.000000] [mem 0x00100000-0x003fffff] page 4k
[ 0.000000] [mem 0x00400000-0x377fffff] page 4M
[ 0.000000] init_memory_mapping: [mem 0x37c00000-0x37fa0fff]
[ 0.000000] [mem 0x37c00000-0x37fa0fff] page 4k
[ 0.000000] BRK [0x0197b000, 0x0197bfff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x3e82e000-0x3eeeffff]
[ 0.000000] Allocated new RAMDISK: [mem 0x378df000-0x37fa077d]
[ 0.000000] Move RAMDISK from [mem 0x3e82e000-0x3eeef77d] to [mem 0x378df000-0x37fa077d]
[ 0.000000] 895MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 37fa1000
[ 0.000000] low ram: 0 - 37fa1000
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] Normal [mem 0x0000000001000000-0x0000000037fa0fff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000003eeeffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003eeeffff]
[ 0.000000] On node 0 totalpages: 229183
[ 0.000000] DMA zone: 40 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3998 pages, LIFO batch:0
[ 0.000000] Normal zone: 2200 pages used for memmap
[ 0.000000] Normal zone: 225185 pages, LIFO batch:31
[ 0.000000] Using APIC driver default
[ 0.000000] Reserving Intel graphics stolen memory at 0x3ef00000-0x3fefffff
[ 0.000000] SFI: Simple Firmware Interface v0.81 http://simplefirmware.org
[ 0.000000] Found and enabled local APIC!
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] e820: [mem 0x3ff00000-0xfebfffff] available for PCI devices
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 226943
[ 0.000000] Kernel command line: BOOT_IMAGE=4.3.0 ro root=801 console=ttyS0,38400 console=tty0 libata.dma=0 acpi=off root=/dev/sda1
[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Initializing CPU#0
[ 0.000000] Memory: 888932K/916732K available (5635K kernel code, 646K rwdata, 2336K rodata, 640K init, 404K bss, 27800K reserved, 0K cma-reserved)
[ 0.000000] virtual kernel memory layout:
[ 0.000000] fixmap : 0xfffa3000 - 0xfffff000 ( 368 kB)
[ 0.000000] vmalloc : 0xf87a1000 - 0xfffa1000 ( 120 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xf7fa1000 ( 895 MB)
[ 0.000000] .init : 0xc186e000 - 0xc190e000 ( 640 kB)
[ 0.000000] .data : 0xc1581200 - 0xc186ca40 (2990 kB)
[ 0.000000] .text : 0xc1000000 - 0xc1581200 (5636 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] NR_IRQS:2304 nr_irqs:32 16
[ 0.000000] CPU 0 irqstacks, hard=f6832000 soft=f6834000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] console [ttyS0] enabled
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 1000.002 MHz processor
[ 0.012012] Calibrating delay loop (skipped), value calculated using timer frequency.. 2000.00 BogoMIPS (lpj=4000008)
[ 0.020004] pid_max: default: 32768 minimum: 301
[ 0.024047] Security Framework initialized
[ 0.028006] Smack: Initializing.
[ 0.032003] Smack: IPv6 port labeling enabled.
[ 0.036020] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.040005] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.044461] Initializing cgroup subsys io
[ 0.048016] Initializing cgroup subsys memory
[ 0.052020] Initializing cgroup subsys devices
[ 0.056007] Initializing cgroup subsys freezer
[ 0.060007] Initializing cgroup subsys net_cls
[ 0.064007] Initializing cgroup subsys perf_event
[ 0.068006] Initializing cgroup subsys net_prio
[ 0.072007] Initializing cgroup subsys hugetlb
[ 0.076039] Disabled fast string operations
[ 0.080011] mce: CPU supports 5 MCE banks
[ 0.084014] CPU0: Thermal monitoring enabled (TM1)
[ 0.088014] Last level iTLB entries: 4KB 128, 2MB 0, 4MB 2
[ 0.092004] Last level dTLB entries: 4KB 128, 2MB 0, 4MB 8, 1GB 0
[ 0.096002] CPU: Intel(R) Celeron(R) M processor 1.00GHz (family: 0x6, model: 0xd, stepping: 0x8)
[ 0.112352] ftrace: allocating 24092 entries in 48 pages
[ 0.132226] Performance Events: p6 PMU driver.
[ 0.140007] ... version: 0
[ 0.144003] ... bit width: 32
[ 0.148003] ... generic registers: 2
[ 0.152003] ... value mask: 00000000ffffffff
[ 0.156003] ... max period: 000000007fffffff
[ 0.160003] ... fixed-purpose events: 0
[ 0.164003] ... event mask: 0000000000000003
[ 0.172986] Enabling APIC mode: Flat. Using 0 I/O APICs
[ 0.284046] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.288192] devtmpfs: initialized
[ 0.292887] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.296174] pinctrl core: initialized pinctrl subsystem
[ 0.300306] RTC time: 15:42:50, date: 11/20/15
[ 0.304312] NET: Registered protocol family 16
[ 0.308389] cpuidle: using governor ladder
[ 0.312008] cpuidle: using governor menu
[ 0.340061] PCI: PCI BIOS revision 2.10 entry at 0xfb110, last bus=6
[ 0.344002] PCI: Using configuration type 1 for base access
[ 0.355536] ACPI: Interpreter disabled.
[ 0.356173] vgaarb: loaded
[ 0.360231] SCSI subsystem initialized
[ 0.364080] libata version 3.00 loaded.
[ 0.364213] usbcore: registered new interface driver usbfs
[ 0.368039] usbcore: registered new interface driver hub
[ 0.372033] usbcore: registered new device driver usb
[ 0.376188] PCI: Probing PCI hardware
[ 0.380009] PCI: root bus 00: using default resources
[ 0.380014] PCI: Probing PCI hardware (bus 00)
[ 0.380110] PCI host bridge to bus 0000:00
[ 0.384008] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
[ 0.388005] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
[ 0.392004] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
[ 0.396019] pci 0000:00:00.0: [8086:3580] type 00 class 0x060000
[ 0.396174] pci 0000:00:00.1: [8086:3584] type 00 class 0x088000
[ 0.396310] pci 0000:00:00.3: [8086:3585] type 00 class 0x088000
[ 0.396453] pci 0000:00:02.0: [8086:3582] type 00 class 0x030000
[ 0.396472] pci 0000:00:02.0: reg 0x10: [mem 0xe0000000-0xe7ffffff pref]
[ 0.396482] pci 0000:00:02.0: reg 0x14: [mem 0xe8600000-0xe867ffff]
[ 0.396492] pci 0000:00:02.0: reg 0x18: [io 0xe900-0xe907]
[ 0.396525] pci 0000:00:02.0: supports D1
[ 0.396608] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.400000] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.400025] pci 0000:00:02.1: [8086:3582] type 00 class 0x038000
[ 0.400042] pci 0000:00:02.1: reg 0x10: [mem 0x00000000-0x07ffffff pref]
[ 0.400051] pci 0000:00:02.1: reg 0x14: [mem 0x00000000-0x0007ffff]
[ 0.400082] pci 0000:00:02.1: supports D1
[ 0.400215] pci 0000:00:1d.0: [8086:24c2] type 00 class 0x0c0300
[ 0.400264] pci 0000:00:1d.0: reg 0x20: [io 0xeb00-0xeb1f]
[ 0.400389] pci 0000:00:1d.1: [8086:24c4] type 00 class 0x0c0300
[ 0.400439] pci 0000:00:1d.1: reg 0x20: [io 0xed00-0xed1f]
[ 0.400558] pci 0000:00:1d.2: [8086:24c7] type 00 class 0x0c0300
[ 0.400608] pci 0000:00:1d.2: reg 0x20: [io 0xe800-0xe81f]
[ 0.404108] pci 0000:00:1d.7: [8086:24cd] type 00 class 0x0c0320
[ 0.404137] pci 0000:00:1d.7: reg 0x10: [mem 0xe8680000-0xe86803ff]
[ 0.404213] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.404347] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060400
[ 0.404484] pci 0000:00:1f.0: [8086:24c0] type 00 class 0x060100
[ 0.404493] * The chipset may have PM-Timer Bug. Due to workarounds for a bug,
[ 0.404493] * this clock source is slow. If you are sure your timer does not have
[ 0.404493] * this bug, please use "acpi_pm_good" to disable the workaround
[ 0.408070] pci 0000:00:1f.0: quirk: [io 0x0400-0x047f] claimed by ICH4 ACPI/GPIO/TCO
[ 0.412007] pci 0000:00:1f.0: quirk: [io 0x0480-0x04bf] claimed by ICH4 GPIO
[ 0.416113] pci 0000:00:1f.1: [8086:24cb] type 00 class 0x01018a
[ 0.416134] pci 0000:00:1f.1: reg 0x10: [io 0x0000-0x0007]
[ 0.416147] pci 0000:00:1f.1: reg 0x14: [io 0x0000-0x0003]
[ 0.416159] pci 0000:00:1f.1: reg 0x18: [io 0x0000-0x0007]
[ 0.416172] pci 0000:00:1f.1: reg 0x1c: [io 0x0000-0x0003]
[ 0.416185] pci 0000:00:1f.1: reg 0x20: [io 0xf000-0xf00f]
[ 0.416198] pci 0000:00:1f.1: reg 0x24: [mem 0x00000000-0x000003ff]
[ 0.416215] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.420005] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.424004] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.428004] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.432112] pci 0000:00:1f.3: [8086:24c3] type 00 class 0x0c0500
[ 0.432161] pci 0000:00:1f.3: reg 0x20: [io 0x0500-0x051f]
[ 0.432373] pci 0000:01:04.0: [12d8:e111] type 01 class 0x060400
[ 0.432550] pci 0000:01:04.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.436017] pci 0000:01:05.0: [168c:001b] type 00 class 0x020000
[ 0.436043] pci 0000:01:05.0: reg 0x10: [mem 0xe8400000-0xe840ffff]
[ 0.436204] pci 0000:01:04.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.440039] pci 0000:01:08.0: [8086:103a] type 00 class 0x020000
[ 0.440069] pci 0000:01:08.0: reg 0x10: [mem 0xe8410000-0xe8410fff]
[ 0.440081] pci 0000:01:08.0: reg 0x14: [io 0xd000-0xd03f]
[ 0.440139] pci 0000:01:08.0: supports D1 D2
[ 0.440145] pci 0000:01:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.440291] pci 0000:01:04.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 0.444031] pci 0000:00:1e.0: PCI bridge to [bus 01-06] (subtractive decode)
[ 0.448007] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff]
[ 0.448015] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xe85fffff]
[ 0.448023] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
[ 0.448029] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[ 0.448161] pci 0000:02:00.0: [104c:8232] type 01 class 0x060400
[ 0.448326] pci 0000:02:00.0: supports D1 D2
[ 0.448332] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.448504] pci 0000:01:04.0: PCI bridge to [bus 02-06]
[ 0.452013] pci 0000:01:04.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.452181] pci 0000:03:00.0: [104c:8233] type 01 class 0x060400
[ 0.452352] pci 0000:03:00.0: supports D1 D2
[ 0.452358] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.452506] pci 0000:02:00.0: PCI bridge to [bus 03-06]
[ 0.456021] pci 0000:02:00.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.456239] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.460077] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 06
[ 0.460099] PCI: Discovered peer bus 05
[ 0.464003] PCI: root bus 05: using default resources
[ 0.464013] PCI: Probing PCI hardware (bus 05)
[ 0.464105] PCI host bridge to bus 0000:05
[ 0.468005] pci_bus 0000:05: root bus resource [io 0x0000-0xffff]
[ 0.472005] pci_bus 0000:05: root bus resource [mem 0x00000000-0xffffffff]
[ 0.476004] pci_bus 0000:05: No busn resource found for root bus, will use [bus 05-ff]
[ 0.480007] pci_bus 0000:05: busn_res: can not insert [bus 05-ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-06])
[ 0.480047] pci 0000:05:00.0: [168c:003c] type 00 class 0x028000
[ 0.480127] pci 0000:05:00.0: reg 0x10: [mem 0xe8000000-0xe81fffff 64bit]
[ 0.480238] pci 0000:05:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[ 0.480296] pci 0000:05:00.0: supports D1 D2
[ 0.480497] pci_bus 0000:05: busn_res: [bus 05-ff] end is updated to 05
[ 0.480504] pci_bus 0000:05: busn_res: can not insert [bus 05] under domain [bus 00-ff] (conflicts with (null) [bus 00-06])
[ 0.480663] pci 0000:00:1f.0: PIIX/ICH IRQ router [8086:24c0]
[ 0.484029] PCI: setting IRQ 5 as level-triggered
[ 0.484035] pci 0000:00:1f.1: found PCI INT A -> IRQ 5
[ 0.488013] pci 0000:00:1f.1: sharing IRQ 5 with 0000:00:1d.2
[ 0.492037] PCI: pci_cache_line_size set to 64 bytes
[ 0.492082] pci 0000:05:00.0: can't claim BAR 0 [mem 0xe8000000-0xe81fffff 64bit]: address conflict with PCI Bus 0000:01 [mem 0xe8000000-0xe85fffff]
[ 0.496032] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[ 0.496037] e820: reserve RAM buffer [mem 0x3eef0000-0x3fffffff]
[ 0.496391] NetLabel: Initializing
[ 0.500004] NetLabel: domain hash size = 128
[ 0.504001] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.508034] NetLabel: unlabeled traffic allowed by default
[ 0.516259] clocksource: Switched to clocksource refined-jiffies
[ 0.544741] pnp: PnP ACPI: disabled
[ 0.556907] pci 0000:03:00.0: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000
[ 0.556920] pci 0000:03:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[ 0.556928] pci 0000:03:00.0: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000 add_align 100000
[ 0.556951] pci 0000:03:00.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.556959] pci 0000:02:00.0: bridge window [io 0x1000-0x0fff] to [bus 03-06] add_size 1000
[ 0.556966] pci 0000:03:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.556974] pci 0000:03:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.556982] pci 0000:02:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03-06] add_size 200000 add_align 100000
[ 0.556996] pci 0000:02:00.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.557003] pci 0000:01:04.0: bridge window [io 0x1000-0x0fff] to [bus 02-06] add_size 1000
[ 0.557011] pci 0000:02:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.557018] pci 0000:02:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.557026] pci 0000:01:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02-06] add_size 200000 add_align 100000
[ 0.557037] pci 0000:01:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.557044] pci 0000:01:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.557053] pci 0000:00:1e.0: bridge window [mem 0x00100000-0x000fffff pref] to [bus 01-06] add_size 200000 add_align 100000
[ 0.557072] pci 0000:00:1e.0: res[15]=[mem 0x00100000-0x000fffff pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.557079] pci 0000:00:1e.0: res[15]=[mem 0x00100000-0x002fffff pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.557093] pci 0000:00:02.1: BAR 0: assigned [mem 0x40000000-0x47ffffff pref]
[ 0.560013] pci 0000:00:1e.0: BAR 15: assigned [mem 0x48000000-0x481fffff pref]
[ 0.564009] pci 0000:00:02.1: BAR 1: assigned [mem 0x48200000-0x4827ffff]
[ 0.568010] pci 0000:00:1f.1: BAR 5: assigned [mem 0x48280000-0x482803ff]
[ 0.572016] pci 0000:01:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.572023] pci 0000:01:04.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.572030] pci 0000:01:04.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.572037] pci 0000:01:04.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.572044] pci 0000:01:04.0: BAR 15: assigned [mem 0x48000000-0x481fffff 64bit pref]
[ 0.576012] pci 0000:01:04.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 0.580013] pci 0000:02:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.580020] pci 0000:02:00.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.580027] pci 0000:02:00.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.580033] pci 0000:02:00.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.580040] pci 0000:02:00.0: BAR 15: assigned [mem 0x48000000-0x481fffff 64bit pref]
[ 0.584009] pci 0000:02:00.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 0.588014] pci 0000:03:00.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.588020] pci 0000:03:00.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[ 0.588028] pci 0000:03:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.588034] pci 0000:03:00.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 0.588041] pci 0000:03:00.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.588048] pci 0000:03:00.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 0.588054] pci 0000:03:00.0: BAR 14: assigned [mem 0xe8000000-0xe81fffff]
[ 0.592010] pci 0000:03:00.0: BAR 15: assigned [mem 0x48000000-0x481fffff 64bit pref]
[ 0.596010] pci 0000:03:00.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 0.600011] pci 0000:03:00.0: PCI bridge to [bus 04]
[ 0.604013] pci 0000:03:00.0: bridge window [io 0x1000-0x1fff]
[ 0.608019] pci 0000:03:00.0: bridge window [mem 0xe8000000-0xe81fffff]
[ 0.612016] pci 0000:03:00.0: bridge window [mem 0x48000000-0x481fffff 64bit pref]
[ 0.616021] pci 0000:02:00.0: PCI bridge to [bus 03-06]
[ 0.620013] pci 0000:02:00.0: bridge window [io 0x1000-0x1fff]
[ 0.624019] pci 0000:02:00.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.628017] pci 0000:02:00.0: bridge window [mem 0x48000000-0x481fffff 64bit pref]
[ 0.632022] pci 0000:01:04.0: PCI bridge to [bus 02-06]
[ 0.636013] pci 0000:01:04.0: bridge window [io 0x1000-0x1fff]
[ 0.640016] pci 0000:01:04.0: bridge window [mem 0xe8000000-0xe83fffff]
[ 0.644015] pci 0000:01:04.0: bridge window [mem 0x48000000-0x481fffff 64bit pref]
[ 0.648017] pci 0000:00:1e.0: PCI bridge to [bus 01-06]
[ 0.652014] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff]
[ 0.656016] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xe85fffff]
[ 0.660016] pci 0000:00:1e.0: bridge window [mem 0x48000000-0x481fffff pref]
[ 0.664019] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
[ 0.664025] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
[ 0.664031] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
[ 0.664037] pci_bus 0000:01: resource 1 [mem 0xe8000000-0xe85fffff]
[ 0.664042] pci_bus 0000:01: resource 2 [mem 0x48000000-0x481fffff pref]
[ 0.664047] pci_bus 0000:01: resource 4 [io 0x0000-0xffff]
[ 0.664053] pci_bus 0000:01: resource 5 [mem 0x00000000-0xffffffff]
[ 0.664059] pci_bus 0000:02: resource 0 [io 0x1000-0x1fff]
[ 0.664064] pci_bus 0000:02: resource 1 [mem 0xe8000000-0xe83fffff]
[ 0.664070] pci_bus 0000:02: resource 2 [mem 0x48000000-0x481fffff 64bit pref]
[ 0.664075] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
[ 0.664081] pci_bus 0000:03: resource 1 [mem 0xe8000000-0xe83fffff]
[ 0.664086] pci_bus 0000:03: resource 2 [mem 0x48000000-0x481fffff 64bit pref]
[ 0.664092] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff]
[ 0.664097] pci_bus 0000:04: resource 1 [mem 0xe8000000-0xe81fffff]
[ 0.664103] pci_bus 0000:04: resource 2 [mem 0x48000000-0x481fffff 64bit pref]
[ 0.664115] pci 0000:05:00.0: BAR 0: assigned [mem 0x48400000-0x485fffff 64bit]
[ 0.668037] pci 0000:05:00.0: BAR 6: assigned [mem 0x48290000-0x4829ffff pref]
[ 0.672015] pci_bus 0000:05: resource 4 [io 0x0000-0xffff]
[ 0.672021] pci_bus 0000:05: resource 5 [mem 0x00000000-0xffffffff]
[ 0.672105] NET: Registered protocol family 2
[ 0.676479] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.680074] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.684058] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.688095] UDP hash table entries: 512 (order: 1, 8192 bytes)
[ 0.692025] UDP-Lite hash table entries: 512 (order: 1, 8192 bytes)
[ 0.696144] NET: Registered protocol family 1
[ 0.700061] pci 0000:00:02.0: Video device with shadowed ROM
[ 0.700299] pci 0000:01:08.0: Firmware left e100 interrupts enabled; disabling
[ 0.704034] PCI: CLS 32 bytes, default 64
[ 0.704166] Trying to unpack rootfs image as initramfs...
[ 1.111983] Freeing initrd memory: 6920K (f78df000 - f7fa1000)
[ 1.112404] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 1.116186] microcode: CPU0 sig=0x6d8, pf=0x20, revision=0x0
[ 1.120195] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 1.124121] Scanning for low memory corruption every 60 seconds
[ 1.128816] futex hash table entries: 256 (order: -1, 3072 bytes)
[ 1.132100] audit: initializing netlink subsys (disabled)
[ 1.136090] audit: type=2000 audit(1448034169.136:1): initialized
[ 1.140511] Initialise system trusted keyring
[ 1.144211] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 1.154834] zbud: loaded
[ 1.156226] VFS: Disk quotas dquot_6.6.0
[ 1.160171] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 1.168975] fuse init (API version 7.23)
[ 1.172532] Key type big_key registered
[ 1.176846] Key type asymmetric registered
[ 1.180070] Asymmetric key parser 'x509' registered
[ 1.184186] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 1.188109] io scheduler noop registered
[ 1.192056] io scheduler deadline registered (default)
[ 1.196153] io scheduler cfq registered
[ 1.200311] PCI: setting IRQ 10 as level-triggered
[ 1.200320] pcieport 0000:01:04.0: found PCI INT A -> IRQ 10
[ 1.204054] pcieport 0000:01:04.0: sharing IRQ 10 with 0000:00:02.0
[ 1.208050] pcieport 0000:01:04.0: sharing IRQ 10 with 0000:00:1d.0
[ 1.212460] intel_idle: does not run on family 6 model 13
[ 1.212827] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.220054] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 1.234873] brd: module loaded
[ 1.239642] loop: module loaded
[ 1.240259] ata_piix 0000:00:1f.1: found PCI INT A -> IRQ 5
[ 1.244063] ata_piix 0000:00:1f.1: sharing IRQ 5 with 0000:00:1d.2
[ 1.248096] ata_piix 0000:00:1f.1: version 2.13
[ 1.249078] scsi host0: ata_piix
[ 1.252287] scsi host1: ata_piix
[ 1.256186] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[ 1.260051] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[ 1.264429] libphy: Fixed MDIO Bus: probed
[ 1.268092] ata2: port disabled--ignoring
[ 1.268112] tun: Universal TUN/TAP device driver, 1.6
[ 1.272050] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.276216] PPP generic driver version 2.4.2
[ 1.280254] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.284063] ehci-pci: EHCI PCI platform driver
[ 1.288078] PCI: setting IRQ 3 as level-triggered
[ 1.288086] ehci-pci 0000:00:1d.7: found PCI INT D -> IRQ 3
[ 1.292127] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 1.296063] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 1.306854] ehci-pci 0000:00:1d.7: cache line size of 32 is not supported
[ 1.306872] ehci-pci 0000:00:1d.7: irq 3, io mem 0xe8680000
[ 1.320063] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 1.324168] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.328056] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.332055] usb usb1: Product: EHCI Host Controller
[ 1.336055] usb usb1: Manufacturer: Linux 4.3.0-wl-ath-wifirouter-5492M ehci_hcd
[ 1.340055] usb usb1: SerialNumber: 0000:00:1d.7
[ 1.344400] hub 1-0:1.0: USB hub found
[ 1.348069] hub 1-0:1.0: 6 ports detected
[ 1.352493] ehci-platform: EHCI generic platform driver
[ 1.356085] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.360065] ohci-pci: OHCI PCI platform driver
[ 1.364087] ohci-platform: OHCI generic platform driver
[ 1.368082] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.372106] uhci_hcd 0000:00:1d.0: found PCI INT A -> IRQ 10
[ 1.376063] uhci_hcd 0000:00:1d.0: sharing IRQ 10 with 0000:00:02.0
[ 1.380072] uhci_hcd 0000:00:1d.0: sharing IRQ 10 with 0000:01:04.0
[ 1.384090] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 1.388066] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 1.392065] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 1.396083] uhci_hcd 0000:00:1d.0: irq 10, io base 0x0000eb00
[ 1.400165] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.404061] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.408060] usb usb2: Product: UHCI Host Controller
[ 1.412060] usb usb2: Manufacturer: Linux 4.3.0-wl-ath-wifirouter-5492M uhci_hcd
[ 1.416060] usb usb2: SerialNumber: 0000:00:1d.0
[ 1.420590] hub 2-0:1.0: USB hub found
[ 1.424074] hub 2-0:1.0: 2 ports detected
[ 1.428330] ata1.00: CFA: InnoDisk Corp. - EDC4000 1GB, 081107, max UDMA/66
[ 1.432062] ata1.00: 2047248 sectors, multi 2: LBA
[ 1.436066] ata1.00: limited to UDMA/33 due to 40-wire cable
[ 1.440456] PCI: setting IRQ 9 as level-triggered
[ 1.440464] uhci_hcd 0000:00:1d.1: found PCI INT B -> IRQ 9
[ 1.444111] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 1.448071] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 1.452321] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 1.456087] uhci_hcd 0000:00:1d.1: irq 9, io base 0x0000ed00
[ 1.460215] ata1.00: configured for PIO4
[ 1.464234] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.468066] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.472064] usb usb3: Product: UHCI Host Controller
[ 1.476064] usb usb3: Manufacturer: Linux 4.3.0-wl-ath-wifirouter-5492M uhci_hcd
[ 1.480064] usb usb3: SerialNumber: 0000:00:1d.1
[ 1.484230] scsi 0:0:0:0: Direct-Access ATA InnoDisk Corp. - 07 PQ: 0 ANSI: 5
[ 1.488463] sd 0:0:0:0: [sda] 2047248 512-byte logical blocks: (1.04 GB/999 MiB)
[ 1.492243] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.496152] sd 0:0:0:0: [sda] Write Protect is off
[ 1.500068] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.500248] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 1.505321] sda: sda1 sda2
[ 1.508854] hub 3-0:1.0: USB hub found
[ 1.512171] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.516081] hub 3-0:1.0: 2 ports detected
[ 1.520343] uhci_hcd 0000:00:1d.2: found PCI INT C -> IRQ 5
[ 1.524084] uhci_hcd 0000:00:1d.2: sharing IRQ 5 with 0000:00:1f.1
[ 1.528102] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 1.532076] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 1.536074] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 1.540139] uhci_hcd 0000:00:1d.2: irq 5, io base 0x0000e800
[ 1.544165] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.548070] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.552071] usb usb4: Product: UHCI Host Controller
[ 1.556070] usb usb4: Manufacturer: Linux 4.3.0-wl-ath-wifirouter-5492M uhci_hcd
[ 1.560069] usb usb4: SerialNumber: 0000:00:1d.2
[ 1.564516] hub 4-0:1.0: USB hub found
[ 1.568109] hub 4-0:1.0: 2 ports detected
[ 1.572418] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.832367] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.840297] NET: Registered protocol family 10
[ 1.844570] NET: Registered protocol family 17
[ 1.848122] Key type dns_resolver registered
[ 1.852558] Using IPI Shortcut mode
[ 1.856477] registered taskstats version 1
[ 1.860110] Loading compiled-in X.509 certificates
[ 1.878765] Loaded X.509 cert 'Build time autogenerated kernel key: aa49002e6f51308e9d725a6578a022887126c191'
[ 1.880107] usb 2-1: new low-speed USB device number 2 using uhci_hcd
[ 1.884139] zswap: loaded using pool lzo/zbud
[ 1.893082] Key type trusted registered
[ 1.904482] Key type encrypted registered
[ 1.908543] Magic number: 7:808:740
[ 1.916150] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.920090] EDD information not available.
[ 1.924225] PM: Hibernation image not present or could not be loaded.
[ 1.924795] Freeing unused kernel memory: 640K (c186e000 - c190e000)
[ 1.928194] Write protecting the kernel text: 5640k
[ 1.932171] Write protecting the kernel read-only data: 2340k
[ 1.972349] systemd-udevd[115]: starting version 204
[ 2.075038] usb 2-1: New USB device found, idVendor=413c, idProduct=2107
[ 2.076114] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.080110] usb 2-1: Product: Dell USB Entry Keyboard
[ 2.084102] usb 2-1: Manufacturer: DELL
[ 2.112138] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0xe6a18fa7eb, max_idle_ns: 440795203190 ns
[ 2.120131] clocksource: Switched to clocksource tsc
[ 2.202654] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[ 2.220998] e100: Copyright(c) 1999-2006 Intel Corporation
[ 2.354433] PCI: setting IRQ 11 as level-triggered
[ 2.354864] e100 0000:01:08.0: found PCI INT A -> IRQ 11
[ 2.551399] e100 0000:01:08.0 eth0: addr 0xe8410000, irq 11, MAC addr 00:16:27:00:90:fa
[ 2.589966] hidraw: raw HID events driver (C) Jiri Kosina
[ 2.649803] usbcore: registered new interface driver usbhid
[ 2.666583] usbhid: USB HID core driver
[ 2.694706] input: DELL Dell USB Entry Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:413C:2107.0001/input/input1
[ 2.784565] hid-generic 0003:413C:2107.0001: input,hidraw0: USB HID v1.11 Keyboard [DELL Dell USB Entry Keyboard] on usb-0000:00:1d.0-1/input0
[ 4.017615] EXT4-fs (sda1): INFO: recovery required on readonly filesystem
[ 4.039524] EXT4-fs (sda1): write access will be enabled during recovery
[ 4.900960] random: nonblocking pool is initialized
[ 5.105288] EXT4-fs (sda1): recovery complete
[ 5.137953] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 7.460638] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[ 7.495062] systemd-udevd[325]: starting version 204
[ 9.044857] e100 0000:01:08.0 lan1: renamed from eth0
[ 9.045661] systemd-udevd[351]: renamed network interface eth0 to lan1
[ 9.187301] intel_rng: FWH not detected
[ 10.501322] cfg80211: World regulatory domain updated:
[ 10.501330] cfg80211: DFS Master region: unset
[ 10.501334] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[ 10.501340] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 10.501345] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 10.501350] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[ 10.501356] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[ 10.501362] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[ 10.501367] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[ 10.501372] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[ 10.501377] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[ 11.572429] init: failsafe main process (449) killed by TERM signal
[ 12.364800] NET: Registered protocol family 15
[ 13.098404] ath10k_pci 0000:05:00.0: BAR 0: assigned [mem 0x48400000-0x485fffff 64bit]
[ 13.128788] ath10k_pci 0000:05:00.0: failed to wake up device : -110
[ 13.146877] ath10k_pci: probe of 0000:05:00.0 failed with error -110
[ 47.207624] usb 1-4: new high-speed USB device number 3 using ehci-pci
[ 47.343434] usb 1-4: New USB device found, idVendor=0951, idProduct=1665
[ 47.343445] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 47.343451] usb 1-4: Product: DataTraveler 2.0
[ 47.343456] usb 1-4: Manufacturer: Kingston
[ 47.343461] usb 1-4: SerialNumber: 001A928EED05FE1069495FD8
[ 47.546543] usb-storage 1-4:1.0: USB Mass Storage device detected
[ 47.554843] scsi host2: usb-storage 1-4:1.0
[ 47.555514] usbcore: registered new interface driver usb-storage
[ 47.606212] usbcore: registered new interface driver uas
[ 48.580806] scsi 2:0:0:0: Direct-Access Kingston DataTraveler 2.0 1.00 PQ: 0 ANSI: 4
[ 48.588144] sd 2:0:0:0: Attached scsi generic sg1 type 0
[ 48.588390] sd 2:0:0:0: [sdb] 15131636 512-byte logical blocks: (7.74 GB/7.21 GiB)
[ 48.589034] sd 2:0:0:0: [sdb] Write Protect is off
[ 48.589045] sd 2:0:0:0: [sdb] Mode Sense: 45 00 00 00
[ 48.589934] sd 2:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 48.594779] sdb: sdb1
[ 48.598076] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[-- Attachment #3: Type: text/plain, Size: 146 bytes --]
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Yesterdays kernel/git/kvalo/ath.git failes with COMPEX WLE600VX
2015-11-20 13:31 ` Joerg Pommnitz
@ 2015-11-25 12:21 ` Kalle Valo
0 siblings, 0 replies; 5+ messages in thread
From: Kalle Valo @ 2015-11-25 12:21 UTC (permalink / raw)
To: Joerg Pommnitz; +Cc: ath10k@lists.infradead.org
Joerg Pommnitz <pommnitz@yahoo.com> writes:
> Kalle, attached are dmesg logs from 3.18.24 and your git tree. The
> patch from your mail is _NOT_ yet applied.
Thanks. So the ath10k board is on slot 0000:05:00.0. In 4.3 log I saw
this warning:
[ 0.488080] pci 0000:05:00.0: can't claim BAR 0 [mem
0xe8000000-0xe81fffff 64bit]: address conflict with PCI Bus 0000:01
[mem 0xe8000000-0xe85fffff]
Also the BAR configurations look different, 3.18 has:
[ 0.596024] pci 0000:05:00.0: BAR 6: assigned [mem 0xe8200000-0xe820ffff pref]
but 4.3 has:
[ 0.660123] pci 0000:05:00.0: BAR 0: assigned [mem 0x48400000-0x485fffff 64bit]
[ 0.664037] pci 0000:05:00.0: BAR 6: assigned [mem 0x48290000-0x4829ffff pref]
The chances are that this has something to do with your problem. Also in
a private email[1] you mentioned that latest ath10k works with 3.18
kernel, right? This makes me suspect that this is a problem outside
ath10k, but I'm not a PCI bus expert so I'm not really sure.
I recommend that next you try other major kernel versions (3.19, 4.0,
4.1 and so on) and find out what release first introduced the
regression. Remember always to take full dmesg logs like you have done
now. And once you have that send a mail to proper lists asking for help,
for example at least linux-wireless and linux-pci. But please continue
to CC ath10k list also, it's interesting to know what is causing this.
And even better is that if you can run full bisect to find the offending
commit, but that takes a quite long time.
> BTW, patch gives an offset of 99 lines when applying to your git tree.
> Is this relative to a branch?
The patch was few weeks old, I haven't rebased it since so that's
normal. I just hope it applied to the change to the correct location.
[1] Please do not send private email, the discussions should happen on
the list.
--
Kalle Valo
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-11-25 12:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1749993920.7465237.1447934318588.JavaMail.yahoo.ref@mail.yahoo.com>
2015-11-19 11:58 ` Yesterdays kernel/git/kvalo/ath.git failes with COMPEX WLE600VX Joerg Pommnitz
2015-11-20 11:34 ` Kalle Valo
2015-11-20 13:31 ` Joerg Pommnitz
2015-11-25 12:21 ` Kalle Valo
2015-11-20 13:49 ` Joerg Pommnitz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox