You are not logged in.

#1 2016-03-22 12:54:47

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

[Solved] Point of sale keyboard shows up as usb hub and doesn't work

I have a rare point of sale keyboard here is their website. I bought it on ebay and they are not sold commercially so no chance of getting support from the manufacturer. I tried and they just ignored me when they found out I was not a customer. They only seem to support windows.

On windows the device works right away and just shows up as

HID Keyboard Device

In arch when I plugged the keyboard into a usb port I got an error message in the terminal saying:

config failed hub has too many ports err 19

I think the message of it being a hub is misleading and I think it has something to do with it being a programmable keyboard maybe. I also tried with unbuntu live cd to see if it might just be arch but it didn't work on there either.

I searched that error message online and found nothing useful. I did however find another person in the same spot as me who had been having the exact same issue- same keyboard on linux, same error. To my chagrin the thread ended fruitlessly with him having found no solution.

When I did lsusb the device shows up as Access-IS but I get no functionality.

What can I do now?

I really want to go to purely linux but this is the only thing that has stymied that. I'm currently having to use windows and arch within a vm. The keyboard is new and I love it so much; it was hard to get hold of so just using another keyboard is out of the question.

Last edited by MarthaParkin (2017-08-16 18:03:06)

Offline

#2 2016-03-22 13:55:51

mich41
Member
Registered: 2012-06-22
Posts: 796

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

Maybe the keyboard contains some USB hub which happens to claim to have stupid number of ports? It seems that Linux hub driver allocates memory only for 31 ports.

Can you post the part of lspci -v output relevant to this device? Run it as root, it prints more information then.

Offline

#3 2016-03-22 14:46:15

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

mich41 wrote:

Maybe the keyboard contains some USB hub which happens to claim to have stupid number of ports? It seems that Linux hub driver allocates memory only for 31 ports.

Can you post the part of lspci -v output relevant to this device? Run it as root, it prints more information then.

Don't you mean lsusb? because lspci had nothing pertaining to the keyboard that I could see and lsusb -v yielded:

Bus 003 Device 003: ID 0db5:0119 Access IS
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.10
  bDeviceClass            9 Hub
  bDeviceSubClass         0
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0         8
  idVendor           0x0db5 Access IS
  idProduct          0x0119
  bcdDevice            0.01
  iManufacturer           1 Access Keyboards Ltd.
  iProduct                4 (error)
  iSerial                 0
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          4 (error)
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0001  1x 1 bytes
        bInterval             255
Hub Descriptor:
  bLength              34
  bDescriptorType       3
  nNbrPorts            85
  wHubCharacteristic 0x5300
    Ganged power switching
    Ganged overcurrent protection
  bPwrOn2PwrGood        0 * 2 milli seconds
  bHubContrCurrent     66 milli Ampere
  DeviceRemovable    0x00 0x20 0x00
  PortPwrCtrlMask    0x00 0x00 0xb7
 Hub Port Status:
   Port 1: 0000.0000
   Port 2: 0000.0000
   Port 3: 0000.0000
   Port 4: 0000.0000
   Port 5: 0000.0000
cannot read port 6 status, Resource temporarily unavailable (11)
can't get debug descriptor: Resource temporarily unavailable
Device Status:     0x0000
  (Bus Powered)

Offline

#4 2016-03-22 15:09:57

alphaniner
Member
From: Ancapistan
Registered: 2010-07-12
Posts: 2,810

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

The keyboard isn't in the USB database (/usr/share/hwdata/usb.ids):

0db5  Access IS
        0139  Barcode Module - CDC serial
        013a  Barcode Module - Virtual Keyboard
        013b  Barcode Module - HID
        0160  NFC and Smartcard Module (NSM)

But that has no effect on functionality; the db is just for translation between ids and human readable device names. However, the fact that it's not in the db suggests that it hasn't seen much use in Linux... getting it to work may be an uphill battle.


But whether the Constitution really be one thing, or another, this much is certain - that it has either authorized such a government as we have had, or has been powerless to prevent it. In either case, it is unfit to exist.
-Lysander Spooner

Offline

#5 2016-03-22 15:16:34

R00KIE
Forum Fellow
From: Between a computer and a chair
Registered: 2008-09-14
Posts: 4,734

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

You might want to seek help upstream. I'm not sure exactly where you should ask but if the keyboard doesn't work at all then you want the kernel devs, otherwise I'd say Xorg devs. In either case you want to provide as much information as possible and if you show that you have done your homework and are willing to test patches you may get this to work faster.


R00KIE
Tm90aGluZyB0byBzZWUgaGVyZSwgbW92ZSBhbG9uZy4K

Offline

#6 2016-03-22 15:23:06

alphaniner
Member
From: Ancapistan
Registered: 2010-07-12
Posts: 2,810

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

alphaniner wrote:

But that has no effect on functionality; the db is just for translation between ids and human readable device names.

While this is true of the db AFAICT, the IDs are important. According to this the "IDs are used by the USB core to decide which driver to give a device to."

Last edited by alphaniner (2016-03-22 15:24:34)


But whether the Constitution really be one thing, or another, this much is certain - that it has either authorized such a government as we have had, or has been powerless to prevent it. In either case, it is unfit to exist.
-Lysander Spooner

Offline

#7 2016-03-22 16:00:25

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

Well I'm only wanting it for terminal use so Xorg is not pertinent for that is it? So who should I contact on that front?

Last edited by MarthaParkin (2016-03-22 16:01:00)

Offline

#8 2016-03-22 16:21:44

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,774

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

I am almost certain the keyboard contains a hub.  The various devices that can be integrated (biometrics scanner, bar code reader, magnetic stripe reader, keyboard) are all probably individual USB devices.
I have never seen that too many ports message before.  It might mean there are two many hubs cascaded together.  What is the output of lsusb.py -I -e      (That is an uppercase i)


ewaller@turing/home/ewaller/devel/python % pacman -Qo lsusb.py               
/usr/bin/lsusb.py is owned by usbutils 008-1                                                       
ewaller@turing/home/ewaller/devel/python % 

Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#9 2016-03-22 17:07:36

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

ewaller wrote:

I am almost certain the keyboard contains a hub.  The various devices that can be integrated (biometrics scanner, bar code reader, magnetic stripe reader, keyboard) are all probably individual USB devices.
I have never seen that too many ports message before.  It might mean there are two many hubs cascaded together.  What is the output of lsusb.py -I -e      (That is an uppercase i)

usb1             1d6b:0001 09  1.10   12MBit/s 0mA 1IF  (Lin                                      ux 4.4.5-1-ARCH ohci_hcd OHCI PCI host controller 0000:00:02                                      .0)
                   (EP) 00: Control  attr 00 len 07 max 040
 1-0:1.0          (IF) 09:00:00 1EP  (Hub::Full speed (or ro                                      ot) hub) hub
                   (EP) 81: Interrupt (255ms) attr 03 len 07                                       max 002
usb2             1d6b:0002 09  2.00  480MBit/s 0mA 1IF  (ehc                                      i_hcd 0000:00:02.2)
                   (EP) 00: Control  attr 00 len 07 max 040
 2-0:1.0          (IF) 09:00:00 1EP  (Hub::Full speed (or ro                                      ot) hub) hub
                   (EP) 81: Interrupt (256ms) attr 03 len 07                                       max 004
 2-6             05e3:0608 09  2.00  480MBit/s 100mA 1IF  (G                                      enesys Logic, Inc. Hub)
                   (EP) 00: Control  attr 00 len 07 max 040
  2-6:1.0         (IF) 09:00:00 1EP  (Hub::Full speed (or ro                                      ot) hub) hub
                   (EP) 81: Interrupt (256ms) attr 03 len 07                                       max 001
usb3             1d6b:0001 09  1.10   12MBit/s 0mA 1IF  (Lin                                      ux 4.4.5-1-ARCH ohci_hcd OHCI PCI host controller 0000:00:02                                      .1)
                   (EP) 00: Control  attr 00 len 07 max 040
 3-0:1.0          (IF) 09:00:00 1EP  (Hub::Full speed (or ro                                      ot) hub) hub
                   (EP) 81: Interrupt (255ms) attr 03 len 07                                       max 002
 3-2             0db5:0119 09  1.10   12MBit/s 100mA 1IF  (A                                      ccess IS)
                   (EP) 00: Control  attr 00 len 07 max 008
  3-2:1.0         (IF) 09:00:00 1EP  (Hub::Full speed (or ro                                      ot) hub)
                   (EP) 81: Interrupt (255ms) attr 03 len 07                                       max 001

Bear in mind I had to plug it in again and not sure whether it is plugged iinto the same usb socket it was for the previous outputs.

pacman -Qo lsusb.py
/usr/bin/lsusb.py is owned by usbutils 008-1

Last edited by MarthaParkin (2016-03-22 17:13:26)

Offline

#10 2016-03-22 17:12:03

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,774

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

Well heck.   If you unplug the device, does 2.6  and its endpoint 2-6:1:0 go away?


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#11 2016-03-22 17:14:27

mich41
Member
Registered: 2012-06-22
Posts: 796

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

MarthaParkin wrote:

Don't you mean lsusb?

Sorry, typo.

iProduct                4 (error)
iConfiguration          4 (error)

This is no good, either there should be something else than 4 in those fields or some USB communication failed for no sensible reason.

Hub Descriptor:
  bLength              34
  bDescriptorType       3
  nNbrPorts            85
  wHubCharacteristic 0x5300
    Ganged power switching
    Ganged overcurrent protection
  bPwrOn2PwrGood        0 * 2 milli seconds
  bHubContrCurrent     66 milli Ampere
  DeviceRemovable    0x00 0x20 0x00
  PortPwrCtrlMask    0x00 0x00 0xb7

And this is plain ugly. Descriptor type 3 is string descriptor, not hub descriptor. Furthermore, the next few bytes of this output, interpreted as UTF-16 string, decode as "USB ".

Either this device's firmware is broken (and works on Windows only by accident) or there is some bug in Linux USB subsystem.

BTW, what dmesg has to say about this device?

Also, can you open Windows Device Manager, click "sort devices by connection" or whatever it's called nowadays and check:
1. if this device really contains internal hub
2. if Windows is able to read its textual manufacturer and product name

Offline

#12 2016-03-22 17:16:10

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

ewaller wrote:

Well heck.   If you unplug the device, does 2.6  and its endpoint 2-6:1:0 go away?

Ah the good ol process of deduction eh smile

here it is after unplugging:

usb1             1d6b:0001 09  1.10   12MBit/s 0mA 1IF  (Linux 4.4.5-1-ARCH ohci_hcd OHCI PCI host controller 0000:00:02.0)
                   (EP) 00: Control  attr 00 len 07 max 040
 1-0:1.0          (IF) 09:00:00 1EP  (Hub::Full speed (or root) hub) hub
                   (EP) 81: Interrupt (255ms) attr 03 len 07 max 002
usb2             1d6b:0002 09  2.00  480MBit/s 0mA 1IF  (ehci_hcd 0000:00:02.2)
                   (EP) 00: Control  attr 00 len 07 max 040
 2-0:1.0          (IF) 09:00:00 1EP  (Hub::Full speed (or root) hub) hub
                   (EP) 81: Interrupt (256ms) attr 03 len 07 max 004
 2-6             05e3:0608 09  2.00  480MBit/s 100mA 1IF  (Genesys Logic, Inc. Hub)
                   (EP) 00: Control  attr 00 len 07 max 040
  2-6:1.0         (IF) 09:00:00 1EP  (Hub::Full speed (or root) hub) hub
                   (EP) 81: Interrupt (256ms) attr 03 len 07 max 001
usb3             1d6b:0001 09  1.10   12MBit/s 0mA 1IF  (Linux 4.4.5-1-ARCH ohci_hcd OHCI PCI host controller 0000:00:02.1)
                   (EP) 00: Control  attr 00 len 07 max 040
 3-0:1.0          (IF) 09:00:00 1EP  (Hub::Full speed (or root) hub) hub
                   (EP) 81: Interrupt (255ms) attr 03 len 07 max 002

Offline

#13 2016-03-22 17:21:44

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

BTW, what dmesg has to say about this device?

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.5-1-ARCH (builduser@tobias) (gcc version 5.3.0 (GCC) ) #1 SMP PREEMPT Thu Mar 10 07:54:30 CET 2016
[    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-0x000000005ffeffff] usable
[    0.000000] BIOS-e820: [mem 0x000000005fff0000-0x000000005fff2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000005fff3000-0x000000005fffffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffff0000-0x00000000ffffffff] reserved
[    0.000000] Notice: NX (Execute Disable) protection missing in CPU!
[    0.000000] SMBIOS 2.3 present.
[    0.000000] DMI:    /nVidia-nForce2, BIOS FJ 10/11/2004
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x5fff0 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-AFFFF uncachable
[    0.000000]   B0000-BFFFF write-combining
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask FC0000000 write-back
[    0.000000]   1 base 040000000 mask FE0000000 write-back
[    0.000000]   2 base 0E0000000 mask FFC000000 write-combining
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT
[    0.000000] found SMP MP-table at [mem 0x000f5350-0x000f535f] mapped at [c00f5350]
[    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] BRK [0x01855000, 0x01855fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x37896000-0x37c42fff]
[    0.000000] Allocated new RAMDISK: [mem 0x37451000-0x377fdfd3]
[    0.000000] Move RAMDISK from [mem 0x37896000-0x37c42fd3] to [mem 0x37451000-0x377fdfd3]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F6E80 000014 (v00 Nvidia)
[    0.000000] ACPI: RSDT 0x000000005FFF3000 00002C (v01 Nvidia AWRDACPI 42302E31 AWRD 01010101)
[    0.000000] ACPI: FACP 0x000000005FFF3040 000074 (v01 Nvidia AWRDACPI 42302E31 AWRD 01010101)
[    0.000000] ACPI: DSDT 0x000000005FFF30C0 00464A (v01 NVIDIA AWRDACPI 00001000 MSFT 0100000C)
[    0.000000] ACPI: FACS 0x000000005FFF0000 000040
[    0.000000] ACPI: APIC 0x000000005FFF7740 00005A (v01 Nvidia AWRDACPI 42302E31 AWRD 01010101)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 647MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] BRK [0x01856000, 0x01856fff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   Normal   [mem 0x0000000001000000-0x00000000377fdfff]
[    0.000000]   HighMem  [mem 0x00000000377fe000-0x000000005ffeffff]
[    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-0x000000005ffeffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000005ffeffff]
[    0.000000] On node 0 totalpages: 393102
[    0.000000] free_area_init_node: node 0, pgdat c16c8680, node_mem_map f6551028
[    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: 2180 pages used for memmap
[    0.000000]   Normal zone: 223230 pages, LIFO batch:31
[    0.000000]   HighMem zone: 165874 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] Nvidia board detected. Ignoring ACPI timer override.
[    0.000000] If you got timer trouble try acpi_use_timer_override
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: BIOS IRQ0 override ignored.
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    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 0x60000000-0xfebfffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] PERCPU: Embedded 17 pages/cpu @f6537000 s40140 r0 d29492 u69632
[    0.000000] pcpu-alloc: s40140 r0 d29492 u69632 alloc=17*4096
[    0.000000] pcpu-alloc: [0] 0
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 390882
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=3fdd1f57-7df8-4c5d-b9c4-e83eb926cdcb rw quiet
[    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] Initializing HighMem for node 0 (000377fe:0005fff0)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 1543768K/1572408K available (5091K kernel code, 518K rwdata, 1412K rodata, 608K init, 836K bss, 28640K reserved, 0K cma-reserved, 663496K highmem)
[    0.000000] virtual kernel memory layout:
                   fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
                   pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
                   vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
                   lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
                     .init : 0xc16df000 - 0xc1777000   ( 608 kB)
                     .data : 0xc14f9282 - 0xc16dd880   (1937 kB)
                     .text : 0xc1000000 - 0xc14f9282   (5092 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 32.
[    0.000000]  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=32, nr_cpu_ids=1
[    0.000000] NR_IRQS:2304 nr_irqs:256 16
[    0.000000] CPU 0 irqstacks, hard=f6030000 soft=f6032000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2290.763 MHz processor
[    0.003345] Calibrating delay loop (skipped), value calculated using timer frequency.. 4583.42 BogoMIPS (lpj=7635876)
[    0.003351] pid_max: default: 32768 minimum: 301
[    0.003362] ACPI: Core revision 20150930
[    0.010357] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.010380] Security Framework initialized
[    0.010384] Yama: becoming mindful.
[    0.010403] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.010407] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.010737] Initializing cgroup subsys io
[    0.010745] Initializing cgroup subsys memory
[    0.010759] Initializing cgroup subsys devices
[    0.010765] Initializing cgroup subsys freezer
[    0.010771] Initializing cgroup subsys net_cls
[    0.010775] Initializing cgroup subsys pids
[    0.010801] mce: CPU supports 4 MCE banks
[    0.010816] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.010818] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.014167] Freeing SMP alternatives memory: 20K (c1777000 - c177c000)
[    0.015673] ftrace: allocating 21478 entries in 42 pages
[    0.023496] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.023934] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[    0.059999] smpboot: CPU0: AMD Athlon(tm) (family: 0x6, model: 0xa, stepping: 0x0)
[    0.059999] Performance Events: AMD PMU driver.
[    0.059999] ... version:                0
[    0.059999] ... bit width:              48
[    0.059999] ... generic registers:      4
[    0.059999] ... value mask:             0000ffffffffffff
[    0.059999] ... max period:             00007fffffffffff
[    0.059999] ... fixed-purpose events:   0
[    0.059999] ... event mask:             000000000000000f
[    0.076673] x86: Booted up 1 node, 1 CPUs
[    0.076677] smpboot: Total of 1 processors activated (4583.42 BogoMIPS)
[    0.077083] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.077176] devtmpfs: initialized
[    0.080051] PM: Registering ACPI NVS region [mem 0x5fff0000-0x5fff2fff] (12288 bytes)
[    0.080174] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.083385] pinctrl core: initialized pinctrl subsystem
[    0.083440] RTC time:  2:39:30, date: 01/01/04
[    0.083638] NET: Registered protocol family 16
[    0.093341] cpuidle: using governor ladder
[    0.103340] cpuidle: using governor menu
[    0.103431] ACPI: bus type PCI registered
[    0.103435] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.145658] PCI: PCI BIOS revision 2.10 entry at 0xfaff0, last bus=2
[    0.145660] PCI: Using configuration type 1 for base access
[    0.173415] ACPI: Added _OSI(Module Device)
[    0.173418] ACPI: Added _OSI(Processor Device)
[    0.173420] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.173422] ACPI: Added _OSI(Processor Aggregator Device)
[    0.177871] ACPI: Interpreter enabled
[    0.177888] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150930/hwxface-580)
[    0.177894] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150930/hwxface-580)
[    0.177907] ACPI: (supports S0 S1 S4 S5)
[    0.177909] ACPI: Using IOAPIC for interrupt routing
[    0.177948] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.186066] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.186075] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.186082] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.186088] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.186142] acpi PNP0A03:00: host bridge window expanded to [io  0x0000-0x0cf7]; [io  0x0000-0x0cf7 window] ignored
[    0.186147] acpi PNP0A03:00: host bridge window [io  0x0cf8-0x0cff] (ignored)
[    0.186149] acpi PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.186152] acpi PNP0A03:00: host bridge window [io  0x0d00-0xffff window] (ignored)
[    0.186155] acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff window] (ignored)
[    0.186158] acpi PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff window] (ignored)
[    0.186161] acpi PNP0A03:00: host bridge window [mem 0x60000000-0xfebfffff window] (ignored)
[    0.186163] PCI: root bus 00: using default resources
[    0.186433] PCI host bridge to bus 0000:00
[    0.186438] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    0.186441] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
[    0.186445] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.186458] pci 0000:00:00.0: [10de:01e0] type 00 class 0x060000
[    0.186473] pci 0000:00:00.0: reg 0x10: [mem 0xe0000000-0xe3ffffff pref]
[    0.186493] pci 0000:00:00.0: nForce2 C1 Halt Disconnect fixup
[    0.186631] pci 0000:00:00.1: [10de:01eb] type 00 class 0x050000
[    0.186777] pci 0000:00:00.2: [10de:01ee] type 00 class 0x050000
[    0.186913] pci 0000:00:00.3: [10de:01ed] type 00 class 0x050000
[    0.187050] pci 0000:00:00.4: [10de:01ec] type 00 class 0x050000
[    0.187185] pci 0000:00:00.5: [10de:01ef] type 00 class 0x050000
[    0.187326] pci 0000:00:01.0: [10de:0060] type 00 class 0x060100
[    0.187520] pci 0000:00:01.1: [10de:0064] type 00 class 0x0c0500
[    0.187539] pci 0000:00:01.1: reg 0x10: [io  0xe000-0xe01f]
[    0.187593] pci 0000:00:01.1: PME# supported from D3hot D3cold
[    0.187737] pci 0000:00:02.0: [10de:0067] type 00 class 0x0c0310
[    0.187756] pci 0000:00:02.0: reg 0x10: [mem 0xe8003000-0xe8003fff]
[    0.187809] pci 0000:00:02.0: supports D1 D2
[    0.187812] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.187884] pci 0000:00:02.0: System wakeup disabled by ACPI
[    0.187961] pci 0000:00:02.1: [10de:0067] type 00 class 0x0c0310
[    0.187979] pci 0000:00:02.1: reg 0x10: [mem 0xe8004000-0xe8004fff]
[    0.188033] pci 0000:00:02.1: supports D1 D2
[    0.188036] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.188109] pci 0000:00:02.1: System wakeup disabled by ACPI
[    0.188187] pci 0000:00:02.2: [10de:0068] type 00 class 0x0c0320
[    0.188208] pci 0000:00:02.2: reg 0x10: [mem 0xe8005000-0xe80050ff]
[    0.188266] pci 0000:00:02.2: supports D1 D2
[    0.188269] pci 0000:00:02.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.188366] pci 0000:00:02.2: System wakeup disabled by ACPI
[    0.188451] pci 0000:00:06.0: [10de:006a] type 00 class 0x040100
[    0.188469] pci 0000:00:06.0: reg 0x10: [io  0xd000-0xd0ff]
[    0.188478] pci 0000:00:06.0: reg 0x14: [io  0xd400-0xd47f]
[    0.188487] pci 0000:00:06.0: reg 0x18: [mem 0xe8001000-0xe8001fff]
[    0.188529] pci 0000:00:06.0: supports D1 D2
[    0.188659] pci 0000:00:08.0: [10de:006c] type 01 class 0x060400
[    0.188757] pci 0000:00:08.0: System wakeup disabled by ACPI
[    0.188831] pci 0000:00:09.0: [10de:0065] type 00 class 0x01018a
[    0.188871] pci 0000:00:09.0: reg 0x20: [io  0xf000-0xf00f]
[    0.188888] pci 0000:00:09.0: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.188891] pci 0000:00:09.0: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.188893] pci 0000:00:09.0: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.188896] pci 0000:00:09.0: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.189052] pci 0000:00:1e.0: [10de:01e8] type 01 class 0x060400
[    0.189258] pci 0000:01:08.0: [1102:0002] type 00 class 0x040100
[    0.189284] pci 0000:01:08.0: reg 0x10: [io  0x8000-0x801f]
[    0.189362] pci 0000:01:08.0: supports D1 D2
[    0.189436] pci 0000:01:08.1: [1102:7002] type 00 class 0x098000
[    0.189460] pci 0000:01:08.1: reg 0x10: [io  0x8400-0x8407]
[    0.189538] pci 0000:01:08.1: supports D1 D2
[    0.189615] pci 0000:01:09.0: [168c:0013] type 00 class 0x020000
[    0.189642] pci 0000:01:09.0: reg 0x10: [mem 0xe7000000-0xe700ffff]
[    0.189794] pci 0000:01:0b.0: [10ec:8169] type 00 class 0x020000
[    0.189820] pci 0000:01:0b.0: reg 0x10: [io  0x8800-0x88ff]
[    0.189831] pci 0000:01:0b.0: reg 0x14: [mem 0xe7016000-0xe70160ff]
[    0.189878] pci 0000:01:0b.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    0.189904] pci 0000:01:0b.0: supports D1 D2
[    0.189907] pci 0000:01:0b.0: PME# supported from D1 D2 D3hot D3cold
[    0.189996] pci 0000:01:0d.0: [1095:3512] type 00 class 0x018000
[    0.190027] pci 0000:01:0d.0: reg 0x10: [io  0xa000-0xa007]
[    0.190039] pci 0000:01:0d.0: reg 0x14: [io  0xa400-0xa403]
[    0.190050] pci 0000:01:0d.0: reg 0x18: [io  0xa800-0xa807]
[    0.190062] pci 0000:01:0d.0: reg 0x1c: [io  0xac00-0xac03]
[    0.190073] pci 0000:01:0d.0: reg 0x20: [io  0xb000-0xb00f]
[    0.190085] pci 0000:01:0d.0: reg 0x24: [mem 0xe7014000-0xe70141ff]
[    0.190097] pci 0000:01:0d.0: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[    0.190124] pci 0000:01:0d.0: supports D1 D2
[    0.190197] pci 0000:01:0e.0: [104c:8024] type 00 class 0x0c0010
[    0.190224] pci 0000:01:0e.0: reg 0x10: [mem 0xe7015000-0xe70157ff]
[    0.190236] pci 0000:01:0e.0: reg 0x14: [mem 0xe7010000-0xe7013fff]
[    0.190307] pci 0000:01:0e.0: supports D1 D2
[    0.190310] pci 0000:01:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.190410] pci 0000:00:08.0: PCI bridge to [bus 01]
[    0.190416] pci 0000:00:08.0:   bridge window [io  0x8000-0xbfff]
[    0.190420] pci 0000:00:08.0:   bridge window [mem 0xe6000000-0xe7ffffff]
[    0.190491] pci 0000:02:00.0: [1002:9495] type 00 class 0x030000
[    0.190520] pci 0000:02:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
[    0.190530] pci 0000:02:00.0: reg 0x14: [io  0xc000-0xc0ff]
[    0.190540] pci 0000:02:00.0: reg 0x18: [mem 0xe5000000-0xe500ffff]
[    0.190572] pci 0000:02:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.190603] pci 0000:02:00.0: supports D1 D2
[    0.190691] pci 0000:02:00.1: [1002:aa38] type 00 class 0x040300
[    0.190715] pci 0000:02:00.1: reg 0x10: [mem 0xe5010000-0xe5013fff]
[    0.190782] pci 0000:02:00.1: supports D1 D2
[    0.190884] pci 0000:00:1e.0: PCI bridge to [bus 02]
[    0.190889] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    0.190893] pci 0000:00:1e.0:   bridge window [mem 0xe4000000-0xe5ffffff]
[    0.190897] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xdfffffff pref]
[    0.190907] pci_bus 0000:00: on NUMA node 0
[    0.191034] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
[    0.191115] ACPI: PCI Interrupt Link [LNK2] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
[    0.191192] ACPI: PCI Interrupt Link [LNK3] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
[    0.191269] ACPI: PCI Interrupt Link [LNK4] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
[    0.191345] ACPI: PCI Interrupt Link [LNK5] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    0.191423] ACPI: PCI Interrupt Link [LUBA] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
[    0.191500] ACPI: PCI Interrupt Link [LUBB] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
[    0.191582] ACPI: PCI Interrupt Link [LMAC] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    0.191658] ACPI: PCI Interrupt Link [LAPU] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    0.191736] ACPI: PCI Interrupt Link [LACI] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
[    0.191815] ACPI: PCI Interrupt Link [LMCI] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    0.191892] ACPI: PCI Interrupt Link [LSMB] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
[    0.191973] ACPI: PCI Interrupt Link [LUB2] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
[    0.192050] ACPI: PCI Interrupt Link [LFIR] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    0.192126] ACPI: PCI Interrupt Link [L3CM] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    0.192202] ACPI: PCI Interrupt Link [LIDE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    0.192281] ACPI: PCI Interrupt Link [APC1] (IRQs *16), disabled.
[    0.192348] ACPI: PCI Interrupt Link [APC2] (IRQs *17), disabled.
[    0.192414] ACPI: PCI Interrupt Link [APC3] (IRQs *18), disabled.
[    0.192481] ACPI: PCI Interrupt Link [APC4] (IRQs *19), disabled.
[    0.192546] ACPI: PCI Interrupt Link [APC5] (IRQs *16), disabled.
[    0.192642] ACPI: PCI Interrupt Link [APCF] (IRQs 20 21 22) *0, disabled.
[    0.192738] ACPI: PCI Interrupt Link [APCG] (IRQs 20 21 22) *0, disabled.
[    0.192833] ACPI: PCI Interrupt Link [APCH] (IRQs 20 21 22) *0, disabled.
[    0.192928] ACPI: PCI Interrupt Link [APCI] (IRQs 20 21 22) *0, disabled.
[    0.193023] ACPI: PCI Interrupt Link [APCJ] (IRQs 20 21 22) *0, disabled.
[    0.193117] ACPI: PCI Interrupt Link [APCK] (IRQs 20 21 22) *0, disabled.
[    0.193185] ACPI: PCI Interrupt Link [APCS] (IRQs *23), disabled.
[    0.193278] ACPI: PCI Interrupt Link [APCL] (IRQs 20 21 22) *0, disabled.
[    0.193383] ACPI: PCI Interrupt Link [APCM] (IRQs 20 21 22) *0, disabled.
[    0.193478] ACPI: PCI Interrupt Link [AP3C] (IRQs 20 21 22) *0, disabled.
[    0.193573] ACPI: PCI Interrupt Link [APCZ] (IRQs 20 21 22) *0, disabled.
[    0.194629] vgaarb: setting as boot device: PCI:0000:02:00.0
[    0.194632] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.194635] vgaarb: loaded
[    0.194637] vgaarb: bridge control possible 0000:02:00.0
[    0.196689] PCI: Using ACPI for IRQ routing
[    0.196695] PCI: pci_cache_line_size set to 32 bytes
[    0.196748] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.196752] e820: reserve RAM buffer [mem 0x5fff0000-0x5fffffff]
[    0.196982] NetLabel: Initializing
[    0.196984] NetLabel:  domain hash size = 128
[    0.196986] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.197005] NetLabel:  unlabeled traffic allowed by default
[    0.197073] clocksource: Switched to clocksource refined-jiffies
[    0.208454] pnp: PnP ACPI init
[    0.208842] system 00:00: [io  0x1000-0x107f] has been reserved
[    0.208847] system 00:00: [io  0x1080-0x10ff] has been reserved
[    0.208851] system 00:00: [io  0x1400-0x147f] has been reserved
[    0.208854] system 00:00: [io  0x1480-0x14ff] has been reserved
[    0.208857] system 00:00: [io  0x1800-0x187f] has been reserved
[    0.208860] system 00:00: [io  0x1880-0x18ff] has been reserved
[    0.208867] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.208929] system 00:01: [io  0x1c00-0x1c3f] has been reserved
[    0.208933] system 00:01: [io  0x2000-0x203f] has been reserved
[    0.208938] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.209134] system 00:02: [mem 0x000f0000-0x000f3fff] could not be reserved
[    0.209139] system 00:02: [mem 0x000f4000-0x000f7fff] could not be reserved
[    0.209142] system 00:02: [mem 0x000f8000-0x000fbfff] could not be reserved
[    0.209145] system 00:02: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.209149] system 00:02: [mem 0x5fff0000-0x5fffffff] could not be reserved
[    0.209152] system 00:02: [mem 0xffff0000-0xffffffff] has been reserved
[    0.209155] system 00:02: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.209159] system 00:02: [mem 0x00100000-0x5ffeffff] could not be reserved
[    0.209162] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.209165] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.209170] system 00:02: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.209800] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.209804] system 00:03: [io  0x0800-0x0805] has been reserved
[    0.209807] system 00:03: [io  0x0290-0x029f] has been reserved
[    0.209812] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.209873] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.210061] pnp 00:05: [dma 2]
[    0.210122] pnp 00:05: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.210414] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.210711] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.211152] pnp 00:08: [dma 3]
[    0.211233] pnp 00:08: Plug and Play ACPI device, IDs PNP0401 (active)
[    0.211604] pnp 00:09: Plug and Play ACPI device, IDs PNPb02f (active)
[    0.211613] pnp: PnP ACPI: found 10 devices
[    0.249388] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.249408] clocksource: Switched to clocksource acpi_pm
[    0.249444] pci 0000:00:08.0: BAR 15: assigned [mem 0x60000000-0x600fffff pref]
[    0.249451] pci 0000:01:0d.0: BAR 6: assigned [mem 0x60000000-0x6007ffff pref]
[    0.249456] pci 0000:01:0b.0: BAR 6: assigned [mem 0x60080000-0x6008ffff pref]
[    0.249460] pci 0000:00:08.0: PCI bridge to [bus 01]
[    0.249464] pci 0000:00:08.0:   bridge window [io  0x8000-0xbfff]
[    0.249471] pci 0000:00:08.0:   bridge window [mem 0xe6000000-0xe7ffffff]
[    0.249476] pci 0000:00:08.0:   bridge window [mem 0x60000000-0x600fffff pref]
[    0.249484] pci 0000:02:00.0: BAR 6: assigned [mem 0xe4000000-0xe401ffff pref]
[    0.249488] pci 0000:00:1e.0: PCI bridge to [bus 02]
[    0.249491] pci 0000:00:1e.0:   bridge window [io  0xc000-0xcfff]
[    0.249496] pci 0000:00:1e.0:   bridge window [mem 0xe4000000-0xe5ffffff]
[    0.249500] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xdfffffff pref]
[    0.249507] pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
[    0.249510] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
[    0.249513] pci_bus 0000:01: resource 0 [io  0x8000-0xbfff]
[    0.249516] pci_bus 0000:01: resource 1 [mem 0xe6000000-0xe7ffffff]
[    0.249519] pci_bus 0000:01: resource 2 [mem 0x60000000-0x600fffff pref]
[    0.249522] pci_bus 0000:02: resource 0 [io  0xc000-0xcfff]
[    0.249525] pci_bus 0000:02: resource 1 [mem 0xe4000000-0xe5ffffff]
[    0.249528] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xdfffffff pref]
[    0.249576] NET: Registered protocol family 2
[    0.249868] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.249912] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.249985] TCP: Hash tables configured (established 8192 bind 8192)
[    0.249985] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.249985] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.249985] NET: Registered protocol family 1
[    0.400075] pci 0000:02:00.0: Video device with shadowed ROM
[    0.400083] PCI: CLS 32 bytes, default 32
[    0.400174] Unpacking initramfs...
[    0.498908] Freeing initrd memory: 3764K (f7451000 - f77fe000)
[    0.499046] apm: BIOS not found.
[    0.499132] Scanning for low memory corruption every 60 seconds
[    0.499695] futex hash table entries: 256 (order: 2, 16384 bytes)
[    0.500058] Initialise system trusted keyring
[    0.503605] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.506793] zbud: loaded
[    0.507033] VFS: Disk quotas dquot_6.6.0
[    0.507099] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.507396] Key type big_key registered
[    0.507739] bounce: pool size: 64 pages
[    0.507808] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.511203] io scheduler noop registered
[    0.511208] io scheduler deadline registered
[    0.511275] io scheduler cfq registered (default)
[    0.511484] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.511502] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.511525] vesafb: mode is 640x480x32, linelength=2560, pages=0
[    0.511527] vesafb: scrolling: redraw
[    0.511530] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[    0.511548] vesafb: framebuffer at 0xd0000000, mapped to 0xf8200000, using 1216k, total 1216k
[    0.536687] Console: switching to colour frame buffer device 80x30
[    0.561568] fb0: VESA VGA frame buffer device
[    0.561646] GHES: HEST is not enabled!
[    0.561672] isapnp: Scanning for PnP cards...
[    0.874873] isapnp: No Plug & Play device found
[    0.874941] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.895571] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.916243] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    0.916767] Failed to find cpu0 device node
[    0.917270] Unable to detect cache hierarchy from DT for CPU 0
[    0.917370] rtc_cmos 00:04: RTC can wake from S4
[    0.917550] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.917582] rtc_cmos 00:04: alarms up to one year, y3k, 242 bytes nvram
[    0.917634] ledtrig-cpu: registered to indicate activity on CPUs
[    0.918144] NET: Registered protocol family 10
[    0.921833] NET: Registered protocol family 17
[    0.922018] microcode: AMD CPU family 0x6 not supported
[    0.922036] Using IPI No-Shortcut mode
[    0.922283] registered taskstats version 1
[    0.922302] Loading compiled-in X.509 certificates
[    0.922327] zswap: loaded using pool lzo/zbud
[    0.929442]   Magic number: 4:383:661
[    0.929545] rtc_cmos 00:04: setting system clock to 2004-01-01 02:39:31 UTC (1072924771)
[    0.929645] PM: Hibernation image not present or could not be loaded.
[    0.930299] Freeing unused kernel memory: 608K (c16df000 - c1777000)
[    0.930338] Write protecting the kernel text: 5096k
[    0.930368] Write protecting the kernel read-only data: 1416k
[    0.942704] random: systemd-tmpfile urandom read with 0 bits of entropy available
[    1.037000] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.041084] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.050241] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.070224] Floppy drive(s): fd0 is 1.44M
[    1.071902] ACPI: bus type USB registered
[    1.071986] usbcore: registered new interface driver usbfs
[    1.072009] usbcore: registered new interface driver hub
[    1.074850] usbcore: registered new device driver usb
[    1.075760] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.076254] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.076464] ohci-pci: OHCI PCI platform driver
[    1.077052] ehci-pci: EHCI PCI platform driver
[    1.077966] ACPI: PCI Interrupt Link [APCF] enabled at IRQ 22
[    1.078033] ohci-pci 0000:00:02.0: OHCI PCI host controller
[    1.078048] ohci-pci 0000:00:02.0: new USB bus registered, assigned bus number 1
[    1.078109] ohci-pci 0000:00:02.0: irq 22, io mem 0xe8003000
[    1.082924] SCSI subsystem initialized
[    1.087191] FDC 0 is a post-1991 82077
[    1.100222] libata version 3.00 loaded.
[    1.101188] ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18
[    1.101213] sata_sil 0000:01:0d.0: version 2.4
[    1.101289] sata_sil 0000:01:0d.0: Applying R_ERR on DMA activate FIS errata fix
[    1.106757] scsi host0: sata_sil
[    1.113260] scsi host1: sata_sil
[    1.113456] ata1: SATA max UDMA/100 mmio m512@0xe7014000 tf 0xe7014080 irq 18
[    1.113461] ata2: SATA max UDMA/100 mmio m512@0xe7014000 tf 0xe70140c0 irq 18
[    1.113873] ACPI: PCI Interrupt Link [APC1] enabled at IRQ 16
[    1.132390] hub 1-0:1.0: USB hub found
[    1.132408] hub 1-0:1.0: 3 ports detected
[    1.132907] ACPI: PCI Interrupt Link [APCL] enabled at IRQ 21
[    1.133068] ehci-pci 0000:00:02.2: EHCI Host Controller
[    1.133079] ehci-pci 0000:00:02.2: new USB bus registered, assigned bus number 2
[    1.133091] ehci-pci 0000:00:02.2: debug port 1
[    1.133136] ehci-pci 0000:00:02.2: cache line size of 32 is not supported
[    1.133158] ehci-pci 0000:00:02.2: irq 21, io mem 0xe8005000
[    1.140043] ehci-pci 0000:00:02.2: USB 2.0 started, EHCI 1.00
[    1.140364] hub 2-0:1.0: USB hub found
[    1.140379] hub 2-0:1.0: 6 ports detected
[    1.166737] firewire_ohci 0000:01:0e.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
[    1.196793] hub 1-0:1.0: USB hub found
[    1.196810] hub 1-0:1.0: 3 ports detected
[    1.197094] pata_amd 0000:00:09.0: version 0.4.1
[    1.203646] scsi host2: pata_amd
[    1.207313] scsi host3: pata_amd
[    1.207408] ata3: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[    1.207412] ata4: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[    1.207735] ACPI: PCI Interrupt Link [APCG] enabled at IRQ 20
[    1.207790] ohci-pci 0000:00:02.1: OHCI PCI host controller
[    1.207801] ohci-pci 0000:00:02.1: new USB bus registered, assigned bus number 3
[    1.207851] ohci-pci 0000:00:02.1: irq 20, io mem 0xe8004000
[    1.262332] hub 3-0:1.0: USB hub found
[    1.262349] hub 3-0:1.0: 3 ports detected
[    1.367121] ata3.00: HPA detected: current 234486847, native 234493056
[    1.367129] ata3.00: ATA-7: SAMSUNG SP1203N, TL100-24, max UDMA/100
[    1.367132] ata3.00: 234486847 sectors, multi 16: LBA48
[    1.367142] ata3: nv_mode_filter: 0x3f39f&0x3f39f->0x3f39f, BIOS=0x3f000 (0xc600c000) ACPI=0x3f01f (20:600:0x13)
[    1.373693] ata3.00: configured for UDMA/100
[    1.433368] ata1: SATA link down (SStatus 0 SControl 310)
[    1.446687] usb 2-6: new high-speed USB device number 2 using ehci-pci
[    1.500281] tsc: Refined TSC clocksource calibration: 2290.827 MHz
[    1.500286] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x21055be474d, max_idle_ns: 440795263051 ns
[    1.572186] hub 2-6:1.0: USB hub found
[    1.572475] hub 2-6:1.0: 4 ports detected
[    1.666802] firewire_core 0000:01:0e.0: created device fw0: GUID 000fea00005260b5, S400
[    1.753370] ata2: SATA link down (SStatus 0 SControl 310)
[    1.756984] scsi 2:0:0:0: Direct-Access     ATA      SAMSUNG SP1203N  0-24 PQ: 0 ANSI: 5
[    1.917004] ata4.00: ATAPI: LITE-ON LTR-24102B, 5S5A, max UDMA/33
[    1.917015] ata4: nv_mode_filter: 0x739f&0x739f->0x739f, BIOS=0x7000 (0xc600c000) ACPI=0x701f (60:600:0x13)
[    1.923588] ata4.00: configured for UDMA/33
[    1.927499] scsi 3:0:0:0: CD-ROM            LITE-ON  LTR-24102B       5S5A PQ: 0 ANSI: 5
[    1.943993] sd 2:0:0:0: [sda] 234486847 512-byte logical blocks: (120 GB/112 GiB)
[    1.944079] sd 2:0:0:0: [sda] Write Protect is off
[    1.944084] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.944121] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.954066] sr 3:0:0:0: [sr0] scsi3-mmc drive: 148x/40x writer cd/rw xa/form2 cdda tray
[    1.954074] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.954761] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    1.954852]  sda: sda1 sda2
[    1.955327] sd 2:0:0:0: [sda] Attached SCSI disk
[    2.500105] clocksource: Switched to clocksource tsc
[    2.837753] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    3.638225] systemd[1]: System time before build time, advancing clock.
[    3.786240] random: nonblocking pool is initialized
[    3.845897] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.916519] systemd[1]: systemd 229 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    3.916745] systemd[1]: Detected architecture x86.
[    3.945878] systemd[1]: Set hostname to <athlonlinux>.
[    5.313514] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    5.313778] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    5.313868] systemd[1]: Listening on udev Control Socket.
[    5.313892] systemd[1]: Reached target Encrypted Volumes.
[    5.313937] systemd[1]: Listening on udev Kernel Socket.
[    5.324033] systemd[1]: Listening on Process Core Dump Socket.
[    5.369469] systemd[1]: Reached target Remote File Systems.
[    5.369580] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    5.369604] systemd[1]: Reached target Paths.
[    5.370160] systemd[1]: Created slice User and Session Slice.
[    5.370185] systemd[1]: Reached target Swap.
[    5.370245] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    5.370334] systemd[1]: Listening on Journal Socket.
[    5.370411] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    5.370459] systemd[1]: Listening on LVM2 metadata daemon socket.
[    5.370619] systemd[1]: Created slice System Slice.
[    5.370818] systemd[1]: Created slice system-netctl.slice.
[    5.371627] systemd[1]: Mounting Huge Pages File System...
[    5.403030] systemd[1]: Starting Apply Kernel Variables...
[    5.404121] systemd[1]: Mounting Configuration File System...
[    5.405270] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    5.406240] systemd[1]: Starting Setup Virtual Console...
[    5.406354] systemd[1]: Listening on Journal Socket (/dev/log).
[    5.411130] systemd[1]: Starting Journal Service...
[    5.443599] systemd[1]: Reached target Slices.
[    5.444589] systemd[1]: Starting Remount Root and Kernel File Systems...
[    5.444878] systemd[1]: Created slice system-getty.slice.
[    5.445809] systemd[1]: Mounting POSIX Message Queue File System...
[    5.447050] systemd[1]: Mounting Debug File System...
[    5.510682] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    5.668117] systemd[1]: Started Setup Virtual Console.
[    5.686977] EXT4-fs (sda1): re-mounted. Opts: data=ordered
[    5.687988] systemd[1]: Mounted POSIX Message Queue File System.
[    5.688052] systemd[1]: Mounted Huge Pages File System.
[    5.688086] systemd[1]: Mounted Configuration File System.
[    5.688119] systemd[1]: Mounted Debug File System.
[    5.689242] systemd[1]: Started Remount Root and Kernel File Systems.
[    5.694828] systemd[1]: Starting Load/Save Random Seed...
[    5.710778] systemd[1]: Starting udev Coldplug all Devices...
[    5.711990] systemd[1]: Starting Create Static Device Nodes in /dev...
[    5.889157] systemd[1]: Started Load/Save Random Seed.
[    5.935213] systemd[1]: Started Apply Kernel Variables.
[    6.006574] systemd[1]: Starting CLI Netfilter Manager...
[    6.177042] systemd[1]: Started udev Coldplug all Devices.
[    6.413185] systemd[1]: Started Create Static Device Nodes in /dev.
[    6.413385] systemd[1]: Reached target Local File Systems (Pre).
[    6.413412] systemd[1]: Reached target Local File Systems.
[    6.414460] systemd[1]: Starting udev Kernel Device Manager...
[    7.475505] systemd[1]: Started Journal Service.
[    7.606161] systemd-journald[155]: Received request to flush runtime journal from PID 1
[    7.847295] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    7.978888] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[    7.978897] ACPI: Power Button [PWRB]
[    7.979025] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    7.979029] ACPI: Power Button [PWRF]
[    8.087221] parport_pc 00:08: reported by Plug and Play ACPI
[    8.087351] parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE]
[    8.165654] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    8.418986] FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
[    8.691046] Linux agpgart interface v0.103
[    8.692036] agpgart: Detected NVIDIA nForce2 chipset
[    8.699368] agpgart-nvidia 0000:00:00.0: AGP aperture is 64M @ 0xe0000000
[    8.881194] ACPI: PCI Interrupt Link [APCS] enabled at IRQ 23
[    8.881298] i2c i2c-0: nForce2 SMBus adapter at 0x1c00
[    8.881343] i2c i2c-1: nForce2 SMBus adapter at 0x2000
[    8.972885] cpufreq-nforce2: Detected nForce2 chipset revision C1
[    8.972891] cpufreq-nforce2: FSB changing is maybe unstable and can lead to crashes and data loss.
[    8.972903] cpufreq-nforce2: FSB currently at 198 MHz, FID 11.5
[    8.972941] cpufreq: ondemand governor failed, too long transition latency of HW, fallback to performance governor
[    8.972953] tsc: Marking TSC unstable due to cpufreq changes
[    8.976574] clocksource: Switched to clocksource acpi_pm
[    9.024953] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    9.081629] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    9.165234] MPU-401 device not found or device busy
[    9.166205] gameport gameport0: NS558 PnP Gameport is pnp00:09/gameport0, io 0x201, speed 699kHz
[    9.320410] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    9.320466] r8169 0000:01:0b.0 (unnamed net_device) (uninitialized): not PCI Express
[    9.320890] r8169 0000:01:0b.0 eth0: RTL8110s at 0xf8008000, 00:0f:ea:55:a8:11, XID 04000000 IRQ 16
[    9.320894] r8169 0000:01:0b.0 eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
[    9.327369] ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 22
[    9.646700] snd_intel8x0 0000:00:06.0: intel8x0_measure_ac97_clock: measured 50515 usecs (2456 samples)
[    9.646708] snd_intel8x0 0000:00:06.0: clocking to 47388
[    9.816478] gameport gameport1: EMU10K1 is pci0000:01:08.1/gameport0, io 0x8400, speed 852kHz
[    9.953598] pci 0000:00:1e.0: can't derive routing for PCI INT B
[    9.953606] snd_hda_intel 0000:02:00.1: PCI INT B: no GSI
[    9.953655] snd_hda_intel 0000:02:00.1: Handle vga_switcheroo audio client
[   10.107810] [drm] Initialized drm 1.1.0 20060810
[   10.277583] ppdev: user-space parallel port driver
[   10.537025] r8169 0000:01:0b.0 enp1s11: renamed from eth0
[   10.562716] ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
[   10.562829] ath5k 0000:01:09.0: registered as 'phy0'
[   10.688288] [drm] radeon kernel modesetting enabled.
[   10.688741] ACPI: PCI Interrupt Link [APC4] enabled at IRQ 19
[   10.688779] checking generic (d0000000 130000) vs hw (d0000000 10000000)
[   10.688793] fb: switching to radeondrmfb from VESA VGA
[   10.688867] Console: switching to colour dummy device 80x25
[   10.700772] [drm] initializing kernel modesetting (RV730 0x1002:0x9495 0x1682:0x0028).
[   10.700821] [drm] register mmio base: 0xE5000000
[   10.700823] [drm] register mmio size: 65536
[   10.701904] ATOM BIOS: 113
[   10.702036] agpgart-nvidia 0000:00:00.0: AGP 3.0 bridge
[   10.702061] agpgart-nvidia 0000:00:00.0: putting AGP V3 device into 8x mode
[   10.702150] radeon 0000:02:00.0: putting AGP V3 device into 8x mode
[   10.702159] radeon 0000:02:00.0: GTT: 64M 0xE0000000 - 0xE3FFFFFF
[   10.702180] radeon 0000:02:00.0: VRAM: 1024M 0xA0000000 - 0xDFFFFFFF (1024M used)
[   10.702183] [drm] Detected VRAM RAM=1024M, BAR=256M
[   10.702184] [drm] RAM width 128bits DDR
[   10.709198] [TTM] Zone  kernel: Available graphics memory: 442332 kiB
[   10.709216] [TTM] Zone highmem: Available graphics memory: 774080 kiB
[   10.709218] [TTM] Initializing pool allocator
[   10.709240] [TTM] Initializing DMA pool allocator
[   10.709312] [drm] radeon: 1024M of VRAM memory ready
[   10.709327] [drm] radeon: 64M of GTT memory ready.
[   10.709382] [drm] Loading RV730 Microcode
[   10.772614] [drm] Internal thermal controller with fan control
[   10.775418] [drm] radeon: dpm initialized
[   10.780396] [drm] GART: num cpu pages 16384, num gpu pages 16384
[   10.828757] radeon 0000:02:00.0: WB disabled
[   10.828780] radeon 0000:02:00.0: fence driver on ring 0 use gpu addr 0x00000000e0000004 and cpu addr 0xf8074004
[   10.828784] radeon 0000:02:00.0: fence driver on ring 3 use gpu addr 0x00000000e0000c0c and cpu addr 0xf8074c0c
[   10.856151] radeon 0000:02:00.0: fence driver on ring 5 use gpu addr 0x00000000a005c598 and cpu addr 0xf8c1c598
[   10.856171] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   10.856173] [drm] Driver supports precise vblank timestamp query.
[   10.856244] [drm] radeon: irq initialized.
[   10.940639] [drm] ring test on 0 succeeded in 0 usecs
[   10.941029] [drm] ring test on 3 succeeded in 1 usecs
[   11.335621] [drm] ring test on 5 succeeded in 1 usecs
[   11.335681] [drm] UVD initialized successfully.
[   11.342092] [drm] ib test on ring 0 succeeded in 0 usecs
[   11.342575] [drm] ib test on ring 3 succeeded in 0 usecs
[   11.519101] [drm] ib test on ring 5 succeeded
[   11.528797] [drm] Radeon Display Connectors
[   11.528816] [drm] Connector 0:
[   11.528817] [drm]   DVI-I-1
[   11.528819] [drm]   HPD2
[   11.528822] [drm]   DDC: 0x7f10 0x7f10 0x7f14 0x7f14 0x7f18 0x7f18 0x7f1c 0x7f1c
[   11.528823] [drm]   Encoders:
[   11.528825] [drm]     CRT2: INTERNAL_KLDSCP_DAC2
[   11.528827] [drm]     DFP2: INTERNAL_UNIPHY1
[   11.528839] [drm] Connector 1:
[   11.528841] [drm]   DIN-1
[   11.528842] [drm]   Encoders:
[   11.528843] [drm]     TV1: INTERNAL_KLDSCP_DAC2
[   11.528845] [drm] Connector 2:
[   11.528846] [drm]   DVI-I-2
[   11.528848] [drm]   HPD1
[   11.528850] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
[   11.528851] [drm]   Encoders:
[   11.528853] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   11.528854] [drm]     DFP1: INTERNAL_UNIPHY
[   11.565677] radeon 0000:02:00.0: No connectors reported connected with modes
[   11.565688] [drm] Cannot find any crtc or sizes - going 1024x768
[   11.614271] [drm] fb mappable at 0xD027F000
[   11.614277] [drm] vram apper at 0xD0000000
[   11.614279] [drm] size 3145728
[   11.614280] [drm] fb depth is 24
[   11.614282] [drm]    pitch is 4096
[   11.618024] fbcon: radeondrmfb (fb0) is primary device
[   11.618977] Console: switching to colour frame buffer device 128x48
[   11.637337] ath: EEPROM regdomain: 0x0
[   11.637338] ath: EEPROM indicates default country code should be used
[   11.637339] ath: doing EEPROM country->regdmn map search
[   11.637341] ath: country maps to regdmn code: 0x3a
[   11.637342] ath: Country alpha2 being used: US
[   11.637343] ath: Regpair used: 0x3a
[   11.674676] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   11.676075] ath5k: phy0: Atheros AR2414 chip found (MAC: 0x79, PHY: 0x45)
[   11.681779] radeon 0000:02:00.0: fb0: radeondrmfb frame buffer device
[   11.687239] [drm] Initialized radeon 2.43.0 20080528 for 0000:02:00.0 on minor 0
[   11.800940] ath5k 0000:01:09.0 wlp1s9: renamed from wlan0
[   12.416484] IPv6: ADDRCONF(NETDEV_UP): wlp1s9: link is not ready
[   12.970035] snd_hda_intel 0000:02:00.1: azx_get_response timeout, switching to polling mode: last cmd=0x000f0001
[   12.989771] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1e.0/0000:02:00.1/sound/card1/input6
[   13.290498] wlp1s9: authenticate with c0:3e:0f:3b:8a:49
[   13.299219] wlp1s9: send auth to c0:3e:0f:3b:8a:49 (try 1/3)
[   13.402335] wlp1s9: authenticated
[   13.403505] wlp1s9: associate with c0:3e:0f:3b:8a:49 (try 1/3)
[   13.407480] wlp1s9: RX AssocResp from c0:3e:0f:3b:8a:49 (capab=0x1411 status=0 aid=1)
[   13.407593] wlp1s9: associated
[   13.407622] IPv6: ADDRCONF(NETDEV_CHANGE): wlp1s9: link becomes ready
[   13.490598] wlp1s9: Limiting TX power to 20 (20 - 0) dBm as advertised by c0:3e:0f:3b:8a:49
[   99.046677] usb 3-2: new full-speed USB device number 2 using ohci-pci
[   99.275501] hub 3-2:1.0: USB hub found
[   99.278419] hub 3-2:1.0: config failed, hub has too many ports! (err -19)
[  114.195949] [UFW BLOCK] IN=wlp1s9 OUT= MAC=01:00:5e:00:00:01:c0:3e:0f:3b:8a:48:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2
[  239.207287] [UFW BLOCK] IN=wlp1s9 OUT= MAC=01:00:5e:00:00:01:c0:3e:0f:3b:8a:48:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2
[  347.168539] nf_conntrack: automatic helper assignment is deprecated and it will be removed soon. Use the iptables CT target to attach helpers instead.
[  364.214708] [UFW BLOCK] IN=wlp1s9 OUT= MAC=01:00:5e:00:00:01:c0:3e:0f:3b:8a:48:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2
[  489.223954] [UFW BLOCK] IN=wlp1s9 OUT= MAC=01:00:5e:00:00:01:c0:3e:0f:3b:8a:48:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2
[  614.234392] [UFW BLOCK] IN=wlp1s9 OUT= MAC=01:00:5e:00:00:01:c0:3e:0f:3b:8a:48:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2
[  662.556640] usb 3-2: USB disconnect, device number 2
[  739.245174] [UFW BLOCK] IN=wlp1s9 OUT= MAC=01:00:5e:00:00:01:c0:3e:0f:3b:8a:48:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2
[  864.256066] [UFW BLOCK] IN=wlp1s9 OUT= MAC=01:00:5e:00:00:01:c0:3e:0f:3b:8a:48:08:00 SRC=192.168.0.1 DST=224.0.0.1 LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=0 DF PROTO=2
[  903.203263] usb 3-1: new full-speed USB device number 3 using ohci-pci
[  903.434102] hub 3-1:1.0: USB hub found
[  903.437127] hub 3-1:1.0: config failed, hub has too many ports! (err -19)

Will have to hold a little for windows info as I have to switch between computers.

Last edited by MarthaParkin (2016-03-22 17:22:52)

Offline

#14 2016-03-22 17:37:46

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

mich41 wrote:

Also, can you open Windows Device Manager, click "sort devices by connection" or whatever it's called nowadays and check:
1. if this device really contains internal hub
2. if Windows is able to read its textual manufacturer and product name

I'm not sure how I get the info of the second of those questions?

Extended on right as it didn't fit on page:

http://postimg.org/image/f5srh6h51/

Interesting..it does show as an error on windows as well yet it works still. I removed the device and the exclamation under usb root hub went away. Since it has a magnetic card reader maybe that is what causes the issue. Anyway regardless it works even with the error on windows whereas not so for linux.

Last edited by MarthaParkin (2016-03-22 17:43:02)

Offline

#15 2016-03-22 17:44:59

mich41
Member
Registered: 2012-06-22
Posts: 796

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

And where's the USB HID device? Are "generic USB hub" and "USB composite device" parts of this keyboard?

I see no exclamation mark on the root hub, only on this "unknown USB device".

If this "generic USB hub" is a part of the keyboard, open properties and see if there is anything weird there, like:

66mA of current consumption (100mA would be more typical)
85 ports (yeah, right)

Maybe this is our silly hub and Windows just ignores its weirdness.

Last edited by mich41 (2016-03-22 17:51:55)

Offline

#16 2016-03-22 18:28:26

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

mich41 wrote:

And where's the USB HID device? Are "generic USB hub" and "USB composite device" parts of this keyboard?

I see no exclamation mark on the root hub, only on this "unknown USB device".

If this "generic USB hub" is a part of the keyboard, open properties and see if there is anything weird there, like:

66mA of current consumption (100mA would be more typical)
85 ports (yeah, right)

Maybe this is our silly hub and Windows just ignores its weirdness.

I meant unknown usb device. Yes it is the only thing with an exclamation mark in the pic I showed which is corresponding to the keyboard since it goes and reappears when I unplug/plug it in. Here is its info tab:

Device USB\VID_0000&PID_0002\6&cd8d9fc&0&2 was configured.

Driver Name: usb.inf
Class Guid: {36FC9E60-C465-11CF-8056-444553540000}
Driver Date: 06/21/2006
Driver Version: 6.3.9600.16384
Driver Provider: Microsoft
Driver Section: BADDEVICE.Dev.NT
Driver Rank: 0xFF0000
Matching Device Id: USB\DEVICE_DESCRIPTOR_FAILURE
Outranked Drivers: usb.inf:USB\DEVICE_DESCRIPTOR_FAILURE:00FF2000
Device Updated: false

Or that isnt the info you wanted?

I guess that there are seperate drivers because it also shows as a HID compliant vendor defined device. So maybe windows ignores the screwed up usb bit and just uses the hid keyboard driver for the keyboard whereas linux also see the screwed up usb part yet maybe has no keyboard driver for it so it just doesn't work.

Last edited by MarthaParkin (2016-03-22 18:34:49)

Offline

#17 2016-03-22 18:52:39

mich41
Member
Registered: 2012-06-22
Posts: 796

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

I don't think that only this "unknown USB device" is a part of the keyboard. I suspect that the "generic USB hub" above also is, as well as the "composite device" below, which, if you expand it, probably contains some "USB HID device" (the actual keyboard) and maybe other things. Am I wrong?

As for properties, I was interested in the highest-level component of the keyboard, whatever it is - as I said, probably it is the "generic USB hub". I wanted to know if any of its names reported by Windows start with "USB ", because lsusb didn't manage to read its name and also got some "USB blahblahblah" instead of the hub descriptor. And, if the highest-level part of the keyboard is a hub, whether Windows reports wrong data about current consumption and number of ports for this hub, which would suggest that Windows also is getting "USB blahblah" instead of the hub descriptor. Makes sense? smile

Offline

#18 2016-03-22 20:26:38

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

mich41 wrote:

I don't think that only this "unknown USB device" is a part of the keyboard. I suspect that the "generic USB hub" above also is, as well as the "composite device" below, which, if you expand it, probably contains some "USB HID device" (the actual keyboard) and maybe other things. Am I wrong?

As for properties, I was interested in the highest-level component of the keyboard, whatever it is - as I said, probably it is the "generic USB hub". I wanted to know if any of its names reported by Windows start with "USB ", because lsusb didn't manage to read its name and also got some "USB blahblahblah" instead of the hub descriptor. And, if the highest-level part of the keyboard is a hub, whether Windows reports wrong data about current consumption and number of ports for this hub, which would suggest that Windows also is getting "USB blahblah" instead of the hub descriptor. Makes sense? smile

You're right that both the one above and below the exclamation are also realted to the keyboard.

The one above had some power data:


generic usb image

Last edited by MarthaParkin (2016-03-22 20:27:45)

Offline

#19 2016-03-22 22:50:15

R00KIE
Forum Fellow
From: Between a computer and a chair
Registered: 2008-09-14
Posts: 4,734

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

MarthaParkin wrote:

Well I'm only wanting it for terminal use so Xorg is not pertinent for that is it? So who should I contact on that front?

Definitely the kernel devs.

From what I can see in the thread you have a device that either doesn't follow all the usb specs to the letter or its firmware got damaged, I'm afraid I can't be of much help with either.

One thing did catch my eye though: USB\VID_0000&PID_0002\6&cd8d9fc&0&2, vendor id 0000, that does not look right. That and all the other weirdness might be getting the code responsible for probing usb detect things incorrectly.

Edit:
Typo.

Last edited by R00KIE (2016-03-22 22:50:53)


R00KIE
Tm90aGluZyB0byBzZWUgaGVyZSwgbW92ZSBhbG9uZy4K

Offline

#20 2016-03-23 09:00:47

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

R00KIE wrote:
MarthaParkin wrote:

Well I'm only wanting it for terminal use so Xorg is not pertinent for that is it? So who should I contact on that front?

Definitely the kernel devs.

From what I can see in the thread you have a device that either doesn't follow all the usb specs to the letter or its firmware got damaged, I'm afraid I can't be of much help with either.

One thing did catch my eye though: USB\VID_0000&PID_0002\6&cd8d9fc&0&2, vendor id 0000, that does not look right. That and all the other weirdness might be getting the code responsible for probing usb detect things incorrectly.

Edit:
Typo.


Ok so what is the best way to find/get in touch with them?

Offline

#21 2016-03-23 10:59:07

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

In the meantime do you guys know any workaround where I would be able to have arch installed as my main OS while still being able to use the keyboard somehow without needing two computers running at once?

I could install windows on my old computer and ssh into arch on my main computer with keyboard connected to the old one but it seems like a gross waste of electricity.

Offline

#22 2016-03-23 13:34:50

R00KIE
Forum Fellow
From: Between a computer and a chair
Registered: 2008-09-14
Posts: 4,734

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

MarthaParkin wrote:

Ok so what is the best way to find/get in touch with them?

That would be here: https://bugzilla.kernel.org/

You would file a bug report with as much useful information as possible. I can't say how long it will take for you to get a response but if you show you have done your homework I suppose someone will chime in and try to help you get things to work.

In any case I wouldn't expect a very quick resolution of the problem for two reasons, it's most probably not a regression, as in an update broke something, and it seems to be a niche application thus no kernel dev has the hardware to test and for the time and effort it might take to get to work it will not benefit a big percentage of users.

That said my personal experience so far is that people there are nice and helpful if you show you are willing to do your part in solving the problem.


R00KIE
Tm90aGluZyB0byBzZWUgaGVyZSwgbW92ZSBhbG9uZy4K

Offline

#23 2016-03-24 00:04:58

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

Here is the other thread by some other fellow in a similar situation if it adds to the discussion at all. Seems they got a bit further than me by being able to input some keys in Grub.

Offline

#24 2016-03-24 18:36:57

R00KIE
Forum Fellow
From: Between a computer and a chair
Registered: 2008-09-14
Posts: 4,734

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

That is actually an idea to test, check if from a cold boot you can get into the bios/uefi setup or if you can do anything in grub before it loads the kernel and the initramfs.

If that works you will have to dig into which driver is in charge of usb hubs and check if it accepts any quirks to either increase or ignore the number of allowed ports, maybe then the enumeration will be able to proceed and the keyboard part will start to work.


R00KIE
Tm90aGluZyB0byBzZWUgaGVyZSwgbW92ZSBhbG9uZy4K

Offline

#25 2016-03-26 18:47:00

MarthaParkin
Member
Registered: 2016-03-19
Posts: 232

Re: [Solved] Point of sale keyboard shows up as usb hub and doesn't work

R00KIE wrote:

That is actually an idea to test, check if from a cold boot you can get into the bios/uefi setup or if you can do anything in grub before it loads the kernel and the initramfs.

If that works you will have to dig into which driver is in charge of usb hubs and check if it accepts any quirks to either increase or ignore the number of allowed ports, maybe then the enumeration will be able to proceed and the keyboard part will start to work.

Someone replied this:

I find it odd that in the bbs.archlinux.org thread you linked, someone noted that:

    It seems that Linux hub driver allocates memory only for 31 ports.

And no one commented on the lsusb output:

    nNbrPorts 85

Makes me suspect that compiling an updated USB hub driver that actually allocates space for all of the 127 ports allowed by the USB specification might solve your problem. It might not, but it seems like it's worth a shot.

if it is at all related.
----
Your suggested test pending.

Offline

Board footer

Powered by FluxBB