From owner-freebsd-mobile@freebsd.org Wed Aug 30 13:37:03 2017 Return-Path: Delivered-To: freebsd-mobile@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 753FAE0259D for ; Wed, 30 Aug 2017 13:37:03 +0000 (UTC) (envelope-from Scoobi_doo@yahoo.com) Received: from nm44-vm6.bullet.mail.bf1.yahoo.com (nm44-vm6.bullet.mail.bf1.yahoo.com [216.109.115.30]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 189326DA72 for ; Wed, 30 Aug 2017 13:37:02 +0000 (UTC) (envelope-from Scoobi_doo@yahoo.com) Received: from [66.196.81.174] by nm44.bullet.mail.bf1.yahoo.com with NNFMP; 30 Aug 2017 13:33:42 -0000 Received: from [98.139.211.200] by tm20.bullet.mail.bf1.yahoo.com with NNFMP; 30 Aug 2017 13:33:42 -0000 Received: from [127.0.0.1] by smtp209.mail.bf1.yahoo.com with NNFMP; 30 Aug 2017 13:33:42 -0000 X-Yahoo-Newman-Id: 283094.96532.bm@smtp209.mail.bf1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: xrnyPeEVM1kTVxfgpUSYfguZ6omGCx1yUQburYD6WInO6eR rcMdyFMx9JijYW48z6Nveb8Upf8Ff_gTMspDePov4DaUm98hhONYebR6UZQV IWqtT7D4uLFDxraGMNXLUKAYb1CSXL7kPyJOrLFmV2znYG6vCgobpTc0esF6 ZEcXK5KgefJLD0AoYCh0OUkbSE5y_umrelRH0.NfKHJuUVOkIVNUSUuopW6P GNNUdD4wM4PGqZKdlmxl3eSBAZk2pu23sD3filV1O_fVJWwGvsq_9hzOfDQ2 Zrj.99b50h45qmIPELivCsKoHMlgLmjLnJ7fljZyyxz5k4zwLKgtXHnEv2o1 AHoyok1S5We53gjMv0tIPznF2XpbBXZG5h_I1xjxmdot_idDwv0YfN9tkOLZ jBGvhAlZhU9bG48O9_elJvOcderdHR8hlFjouTSsarRnbO7zVrh5ZZr6O7t3 LlJGoUH4b.g3Yol2bQJvzPMpc5maRwwxbn2RsxNt6LP3zVzdncx85VzRPHxO hlBL.POfTRZN7gZ0OKPbkarSNgrOu_bsTZKV0fEq4ZjGDZl_awYmaoeObWrN qr74JzfMNk9_ksARkj4j.Sg-- X-Yahoo-SMTP: 9sPoSQ2swBBlERuQ.0vs8XLc_MeClW0- Subject: Re: Elantech touch pad not found on ASUS UX430U laptop To: Paul Koch Cc: freebsd-mobile@freebsd.org References: <20170826131944.26081005@splash.akips.com> <20170830164649.5c4cc070@splash.akips.com> From: Anthony Jenkins Message-ID: <04223ae4-47e9-1026-0da6-3908fb7e718d@yahoo.com> Date: Wed, 30 Aug 2017 09:34:24 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <20170830164649.5c4cc070@splash.akips.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Language: en-US X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2017 13:37:03 -0000 On 08/30/2017 02:46 AM, Paul Koch wrote: >> Your Elantech touchpad is probably connected over I2C, and FreeBSD doe= sn't >> support I2C touchpads. Support could probably be ported from Linux, I= just >> don't have the time, hardware or desire to do it. I think the hard = part >> would be probing I2C controllers in the system and then probing each o= ne >> for your touchpad. >> >> If you'd like to take a stab at adding support, I might be able to hol= d >> your hand a little. Having access to Linux kernel logs would at least= make >> it easier to add support for your particular system. >> >> Anthony Jenkins > Hi, > > I booted Linux and it is a I2C touchpad. But I suppose the first probl= em is > the I2C controller doesn't seem to be supported by as no driver gets at= tached. > > ... > none2@pci0:0:21:0: class=3D0x118000 card=3D0x17401043 chip=3D0x9d60808= 6 > rev=3D0x21 hdr=3D0x00 vendor =3D 'Intel Corporation' > device =3D 'Sunrise Point-LP Serial IO I2C Controller' > class =3D dasp > > none3@pci0:0:21:1: class=3D0x118000 card=3D0x17401043 chip=3D0x9d61808= 6 > rev=3D0x21 hdr=3D0x00 vendor =3D 'Intel Corporation' > device =3D 'Sunrise Point-LP Serial IO I2C Controller' > class =3D dasp > ... > > > What commands do I need to run on Linux to dump more info ? Looks like the 2nd PCI device above is the I2C controller to which your I2C touchpad is connected. Linux is attaching driver i2c-designware to that PCI device. http://elixir.free-electrons.com/linux/v3.1/source/drivers/i2c/busses/i2c= -designware.c Presumably that would have to be ported to FreeBSD (no idea if we have one already). I could try to toss a FreeBSD driver together, but I have no way to test it (except remotely). I used to do Linux SMBus drivers a long time ago in a galaxy far away (linux 2.4 had just come out). Anthony > > I tried the i2cdetect command, but doesn't seem to be useful. > > > This is from the linux boot messages: > > hid-multitouch 0018:04F3:304A.0001: Ignoring the extra HID_DG_INPUTMODE= > input: ELAN1200:00 04F3:304A Touchpad as /devices/pci0000:00/0000:00:15= =2E1/i2c_designware.1/i2c-9/i2c-ELAN1200:00/0018:04F3:304A.0001/input/inp= ut15 > hid-multitouch 0018:04F3:304A.0001: input,hidraw0: I2C HID v1.00 Mouse = [ELAN1200:00 04F3:304A] on i2c-ELAN1200:00 > > > Entire boot messages > > [ 0.000000] Linux version 4.10.0-19-generic (buildd@lcy01-13) (gcc v= ersion 6.3.0 20170321 (Ubuntu 6.3.0-10ubuntu1) ) #21-Ubuntu SMP Thu Apr 6= 17:04:57 UTC 2017 (Ubuntu 4.10.0-19.21-generic 4.10.8) > [ 0.000000] Command line: BOOT_IMAGE=3D/casper/vmlinuz.efi file=3D/c= drom/preseed/xubuntu.seed boot=3Dcasper quiet splash --- > [ 0.000000] KERNEL supported cpus: > [ 0.000000] Intel GenuineIntel > [ 0.000000] AMD AuthenticAMD > [ 0.000000] Centaur CentaurHauls > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating p= oint registers' > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'= > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'= > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds reg= isters' > [ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR' > [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 > [ 0.000000] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64 > [ 0.000000] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64 > [ 0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 9= 60 bytes, using 'compacted' format. > [ 0.000000] e820: BIOS-provided physical RAM map: > [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] u= sable > [ 0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] u= sable > [ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000848c5fff] u= sable > [ 0.000000] BIOS-e820: [mem 0x00000000848c6000-0x00000000848c6fff] A= CPI NVS > [ 0.000000] BIOS-e820: [mem 0x00000000848c7000-0x00000000848c7fff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x00000000848c8000-0x0000000089927fff] u= sable > [ 0.000000] BIOS-e820: [mem 0x0000000089928000-0x000000008a652fff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x000000008a653000-0x000000008a699fff] A= CPI data > [ 0.000000] BIOS-e820: [mem 0x000000008a69a000-0x000000008aeb0fff] A= CPI NVS > [ 0.000000] BIOS-e820: [mem 0x000000008aeb1000-0x000000008b2fffff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x000000008b300000-0x000000008b37efff] t= ype 20 > [ 0.000000] BIOS-e820: [mem 0x000000008b37f000-0x000000008b3fefff] u= sable > [ 0.000000] BIOS-e820: [mem 0x000000008b3ff000-0x000000008fffffff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] r= eserved > [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046effffff] u= sable > [ 0.000000] NX (Execute Disable) protection: active > [ 0.000000] efi: EFI v2.50 by American Megatrends > [ 0.000000] efi: ACPI 2.0=3D0x8a661000 ACPI=3D0x8a661000 SMBIOS=3D= 0x8b26f000 SMBIOS 3.0=3D0x8b26e000 MPS=3D0xfca10 ESRT=3D0x886551d8=20 > [ 0.000000] SMBIOS 3.0.0 present. > [ 0.000000] DMI: ASUSTeK COMPUTER INC. UX430UQ/UX430UQ, BIOS UX430UQ= =2E201 12/16/2016 > [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable =3D=3D> = reserved > [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable > [ 0.000000] e820: last_pfn =3D 0x46f000 max_arch_pfn =3D 0x400000000= > [ 0.000000] MTRR default type: write-back > [ 0.000000] MTRR fixed ranges enabled: > [ 0.000000] 00000-9FFFF write-back > [ 0.000000] A0000-BFFFF uncachable > [ 0.000000] C0000-FFFFF write-protect > [ 0.000000] MTRR variable ranges enabled: > [ 0.000000] 0 base 00C0000000 mask 7FC0000000 uncachable > [ 0.000000] 1 base 00A0000000 mask 7FE0000000 uncachable > [ 0.000000] 2 base 0090000000 mask 7FF0000000 uncachable > [ 0.000000] 3 base 008C000000 mask 7FFC000000 uncachable > [ 0.000000] 4 base 008B800000 mask 7FFF800000 uncachable > [ 0.000000] 5 disabled > [ 0.000000] 6 disabled > [ 0.000000] 7 disabled > [ 0.000000] 8 disabled > [ 0.000000] 9 disabled > [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC= - WT =20 > [ 0.000000] e820: last_pfn =3D 0x8b3ff max_arch_pfn =3D 0x400000000 > [ 0.000000] found SMP MP-table at [mem 0x000fcc30-0x000fcc3f] mapped= at [ffff957e000fcc30] > [ 0.000000] esrt: Reserving ESRT space from 0x00000000886551d8 to 0x= 0000000088655210. > [ 0.000000] Scanning 1 areas for low memory corruption > [ 0.000000] Base memory trampoline at [ffff957e00095000] 95000 size = 24576 > [ 0.000000] Using GB pages for direct mapping > [ 0.000000] BRK [0x378e28000, 0x378e28fff] PGTABLE > [ 0.000000] BRK [0x378e29000, 0x378e29fff] PGTABLE > [ 0.000000] BRK [0x378e2a000, 0x378e2afff] PGTABLE > [ 0.000000] BRK [0x378e2b000, 0x378e2bfff] PGTABLE > [ 0.000000] BRK [0x378e2c000, 0x378e2cfff] PGTABLE > [ 0.000000] BRK [0x378e2d000, 0x378e2dfff] PGTABLE > [ 0.000000] BRK [0x378e2e000, 0x378e2efff] PGTABLE > [ 0.000000] BRK [0x378e2f000, 0x378e2ffff] PGTABLE > [ 0.000000] BRK [0x378e30000, 0x378e30fff] PGTABLE > [ 0.000000] BRK [0x378e31000, 0x378e31fff] PGTABLE > [ 0.000000] RAMDISK: [mem 0x3458d000-0x362bdfff] > [ 0.000000] ACPI: Early table checksum verification disabled > [ 0.000000] ACPI: RSDP 0x000000008A661000 000024 (v02 _ASUS_) > [ 0.000000] ACPI: XSDT 0x000000008A6610B0 0000E4 (v01 _ASUS_ Noteboo= k 01072009 AMI 00010013) > [ 0.000000] ACPI: FACP 0x000000008A68C128 000114 (v06 _ASUS_ Noteboo= k 01072009 AMI 00010013) > [ 0.000000] ACPI: DSDT 0x000000008A661228 02AEFC (v02 _ASUS_ Noteboo= k 01072009 INTL 20160422) > [ 0.000000] ACPI: FACS 0x000000008AE7FC40 000040 > [ 0.000000] ACPI: APIC 0x000000008A68C240 000084 (v03 _ASUS_ Noteboo= k 01072009 AMI 00010013) > [ 0.000000] ACPI: FPDT 0x000000008A68C2C8 000044 (v01 _ASUS_ Noteboo= k 01072009 AMI 00010013) > [ 0.000000] ACPI: ECDT 0x000000008A68C310 0000C1 (v01 _ASUS_ Noteboo= k 01072009 AMI. 00000005) > [ 0.000000] ACPI: MCFG 0x000000008A68C3D8 00003C (v01 _ASUS_ Noteboo= k 01072009 MSFT 00000097) > [ 0.000000] ACPI: SSDT 0x000000008A68C418 000372 (v01 SataRe SataTab= l 00001000 INTL 20160422) > [ 0.000000] ACPI: FIDT 0x000000008A68C790 00009C (v01 _ASUS_ Noteboo= k 01072009 AMI 00010013) > [ 0.000000] ACPI: SSDT 0x000000008A68C830 006008 (v02 DptfTa DptfTab= l 00001000 INTL 20160422) > [ 0.000000] ACPI: MSDM 0x000000008A692838 000055 (v03 _ASUS_ Noteboo= k 01072009 ASUS 00000001) > [ 0.000000] ACPI: SSDT 0x000000008A692890 003159 (v02 SaSsdt SaSsdt = 00003000 INTL 20160422) > [ 0.000000] ACPI: HPET 0x000000008A6959F0 000038 (v01 INTEL KBL-ULT= 00000001 MSFT 0000005F) > [ 0.000000] ACPI: UEFI 0x000000008A695A28 000042 (v01 INTEL EDK2 = 00000002 01000013) > [ 0.000000] ACPI: SSDT 0x000000008A695A70 000EDE (v02 CpuRef CpuSsdt= 00003000 INTL 20160422) > [ 0.000000] ACPI: LPIT 0x000000008A696950 000094 (v01 INTEL KBL-ULT= 00000000 MSFT 0000005F) > [ 0.000000] ACPI: WSMT 0x000000008A6969E8 000028 (v01 INTEL KBL-ULT= 00000000 MSFT 0000005F) > [ 0.000000] ACPI: SSDT 0x000000008A696A10 00029F (v02 INTEL sensrhu= b 00000000 INTL 20160422) > [ 0.000000] ACPI: DBGP 0x000000008A696CB0 000034 (v01 INTEL = 00000002 MSFT 0000005F) > [ 0.000000] ACPI: DBG2 0x000000008A696CE8 000054 (v00 INTEL = 00000002 MSFT 0000005F) > [ 0.000000] ACPI: SSDT 0x000000008A696D40 00039B (v02 SgRef SgUlt = 00001000 INTL 20160422) > [ 0.000000] ACPI: SSDT 0x000000008A6970E0 000829 (v02 SgRef SgPch = 00001000 INTL 20160422) > [ 0.000000] ACPI: DMAR 0x000000008A697910 0000F0 (v01 INTEL KBL = 00000001 INTL 00000001) > [ 0.000000] ACPI: TPM2 0x000000008A697A00 000034 (v03 Tpm2Tab= l 00000001 AMI 00000000) > [ 0.000000] ACPI: BGRT 0x000000008A697A38 000038 (v01 _ASUS_ Noteboo= k 01072009 AMI 00010013) > [ 0.000000] ACPI: SSDT 0x000000008A697A70 001F0F (v01 OptRef OptTabl= 00001000 INTL 20160422) > [ 0.000000] ACPI: Local APIC address 0xfee00000 > [ 0.000000] No NUMA configuration found > [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000046efff= fff] > [ 0.000000] NODE_DATA(0) allocated [mem 0x46efd5000-0x46effffff] > [ 0.000000] Zone ranges: > [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff] > [ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] > [ 0.000000] Normal [mem 0x0000000100000000-0x000000046effffff] > [ 0.000000] Device empty > [ 0.000000] Movable zone start for each node > [ 0.000000] Early memory node ranges > [ 0.000000] node 0: [mem 0x0000000000001000-0x0000000000057fff] > [ 0.000000] node 0: [mem 0x0000000000059000-0x000000000009efff] > [ 0.000000] node 0: [mem 0x0000000000100000-0x00000000848c5fff] > [ 0.000000] node 0: [mem 0x00000000848c8000-0x0000000089927fff] > [ 0.000000] node 0: [mem 0x000000008b37f000-0x000000008b3fefff] > [ 0.000000] node 0: [mem 0x0000000100000000-0x000000046effffff] > [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000046= effffff] > [ 0.000000] On node 0 totalpages: 4163907 > [ 0.000000] DMA zone: 64 pages used for memmap > [ 0.000000] DMA zone: 27 pages reserved > [ 0.000000] DMA zone: 3997 pages, LIFO batch:0 > [ 0.000000] DMA32 zone: 8743 pages used for memmap > [ 0.000000] DMA32 zone: 559526 pages, LIFO batch:31 > [ 0.000000] Normal zone: 56256 pages used for memmap > [ 0.000000] Normal zone: 3600384 pages, LIFO batch:31 > [ 0.000000] Reserving Intel graphics memory at 0x000000008c000000-0x= 000000008fffffff > [ 0.000000] ACPI: PM-Timer IO Port: 0x1808 > [ 0.000000] ACPI: Local APIC address 0xfee00000 > [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) > [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) > [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) > [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) > [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GS= I 0-119 > [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)= > [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high lev= el) > [ 0.000000] ACPI: IRQ0 used by override. > [ 0.000000] ACPI: IRQ9 used by override. > [ 0.000000] Using ACPI (MADT) for SMP configuration information > [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 > [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs > [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x000fffff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x848c6000-0x848c6fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x848c7000-0x848c7fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x89928000-0x8a652fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x8a653000-0x8a699fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x8a69a000-0x8aeb0fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x8aeb1000-0x8b2fffff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x8b300000-0x8b37efff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x8b3ff000-0x8fffffff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0x90000000-0xefffffff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf7ffffff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfdffffff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfedfffff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff= ] > [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff= ] > [ 0.000000] e820: [mem 0x90000000-0xefffffff] available for PCI devi= ces > [ 0.000000] Booting paravirtualized kernel on bare hardware > [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycle= s: 0xffffffff, max_idle_ns: 7645519600211568 ns > [ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:= 4 nr_node_ids:1 > [ 0.000000] percpu: Embedded 36 pages/cpu @ffff95826ec00000 s107800 = r8192 d31464 u524288 > [ 0.000000] pcpu-alloc: s107800 r8192 d31464 u524288 alloc=3D1*20971= 52 > [ 0.000000] pcpu-alloc: [0] 0 1 2 3=20 > [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. = Total pages: 4098817 > [ 0.000000] Policy zone: Normal > [ 0.000000] Kernel command line: BOOT_IMAGE=3D/casper/vmlinuz.efi fi= le=3D/cdrom/preseed/xubuntu.seed boot=3Dcasper quiet splash --- > [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) > [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area > [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bai= ling! > [ 0.000000] Memory: 16175728K/16655628K available (9061K kernel code= , 1666K rwdata, 3816K rodata, 2228K init, 2364K bss, 479900K reserved, 0K= cma-reserved) > [ 0.000000] SLUB: HWalign=3D64, Order=3D0-3, MinObjects=3D0, CPUs=3D= 4, Nodes=3D1 > [ 0.000000] Hierarchical RCU implementation. > [ 0.000000] Build-time adjustment of leaf fanout to 64. > [ 0.000000] RCU restricting CPUs from NR_CPUS=3D8192 to nr_cpu_ids=3D= 4. > [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=3D64, nr_cpu= _ids=3D4 > [ 0.000000] NR_IRQS:524544 nr_irqs:1024 16 > [ 0.000000] Console: colour dummy device 80x25 > [ 0.000000] console [tty0] enabled > [ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffff= ff, max_idle_ns: 79635855245 ns > [ 0.000000] hpet clockevent registered > [ 0.000000] tsc: Detected 2900.000 MHz processor > [ 0.000022] Calibrating delay loop (skipped), value calculated using= timer frequency.. 5808.00 BogoMIPS (lpj=3D11616000) > [ 0.000024] pid_max: default: 32768 minimum: 301 > [ 0.000032] ACPI: Core revision 20160930 > [ 0.037250] ACPI: 9 ACPI AML tables successfully acquired and loaded= > [ 0.037883] Security Framework initialized > [ 0.037884] Yama: becoming mindful. > [ 0.037895] AppArmor: AppArmor initialized > [ 0.038585] Dentry cache hash table entries: 2097152 (order: 12, 167= 77216 bytes) > [ 0.041240] Inode-cache hash table entries: 1048576 (order: 11, 8388= 608 bytes) > [ 0.042388] Mount-cache hash table entries: 32768 (order: 6, 262144 = bytes) > [ 0.042399] Mountpoint-cache hash table entries: 32768 (order: 6, 26= 2144 bytes) > [ 0.042647] CPU: Physical Processor ID: 0 > [ 0.042648] CPU: Processor Core ID: 0 > [ 0.042651] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' > [ 0.042652] ENERGY_PERF_BIAS: View and update with x86_energy_perf_p= olicy(8) > [ 0.042657] mce: CPU supports 8 MCE banks > [ 0.042665] CPU0: Thermal monitoring enabled (TM1) > [ 0.042680] process: using mwait in idle threads > [ 0.042682] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8 > [ 0.042683] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4 > [ 0.043398] Freeing SMP alternatives memory: 32K > [ 0.057845] ftrace: allocating 34175 entries in 134 pages > [ 0.072241] smpboot: Max logical packages: 2 > [ 0.072246] DMAR: Host address width 39 > [ 0.072247] DMAR: DRHD base: 0x000000fed90000 flags: 0x0 > [ 0.072253] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c4= 0660462 ecap 19e2ff0505e > [ 0.072254] DMAR: DRHD base: 0x000000fed91000 flags: 0x1 > [ 0.072258] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40= 660462 ecap f050da > [ 0.072259] DMAR: RMRR base: 0x00000089de3000 end: 0x00000089e02fff > [ 0.072259] DMAR: RMRR base: 0x0000008b800000 end: 0x0000008fffffff > [ 0.072262] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0 > [ 0.072262] DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1 > [ 0.072264] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1= > [ 0.072264] DMAR-IR: HPET id 0 under DRHD base 0xfed91000 > [ 0.072265] DMAR-IR: Queued invalidation will be enabled to support = x2apic and Intr-remapping. > [ 0.073670] DMAR-IR: Enabled IRQ remapping in x2apic mode > [ 0.073671] x2apic enabled > [ 0.073682] Switched APIC routing to cluster x2apic. > [ 0.077758] ..TIMER: vector=3D0x30 apic1=3D0 pin1=3D2 apic2=3D-1 pin= 2=3D-1 > [ 0.117452] TSC deadline timer enabled > [ 0.117460] smpboot: CPU0: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz = (family: 0x6, model: 0x8e, stepping: 0x9) > [ 0.117511] Performance Events: PEBS fmt3+, Skylake events, 32-deep = LBR, full-width counters, Intel PMU driver. > [ 0.117538] ... version: 4 > [ 0.117539] ... bit width: 48 > [ 0.117539] ... generic registers: 4 > [ 0.117539] ... value mask: 0000ffffffffffff > [ 0.117540] ... max period: 00007fffffffffff > [ 0.117540] ... fixed-purpose events: 3 > [ 0.117541] ... event mask: 000000070000000f > [ 0.118258] NMI watchdog: enabled on all CPUs, permanently consumes = one hw-PMU counter. > [ 0.118269] smp: Bringing up secondary CPUs ... > [ 0.118323] x86: Booting SMP configuration: > [ 0.118324] .... node #0, CPUs: #1 #2 #3 > [ 0.119846] smp: Brought up 1 node, 4 CPUs > [ 0.119847] smpboot: Total of 4 processors activated (23232.00 BogoM= IPS) > [ 0.124149] devtmpfs: initialized > [ 0.124195] x86/mm: Memory block size: 128MB > [ 0.126427] evm: security.selinux > [ 0.126428] evm: security.SMACK64 > [ 0.126428] evm: security.SMACK64EXEC > [ 0.126428] evm: security.SMACK64TRANSMUTE > [ 0.126429] evm: security.SMACK64MMAP > [ 0.126429] evm: security.ima > [ 0.126429] evm: security.capability > [ 0.126477] PM: Registering ACPI NVS region [mem 0x848c6000-0x848c6f= ff] (4096 bytes) > [ 0.126478] PM: Registering ACPI NVS region [mem 0x8a69a000-0x8aeb0f= ff] (8482816 bytes) > [ 0.126616] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xfff= fffff, max_idle_ns: 7645041785100000 ns > [ 0.126623] futex hash table entries: 1024 (order: 4, 65536 bytes) > [ 0.126658] pinctrl core: initialized pinctrl subsystem > [ 0.126813] RTC time: 3:38:45, date: 12/20/16 > [ 0.126884] NET: Registered protocol family 16 > [ 0.139759] cpuidle: using governor ladder > [ 0.151794] cpuidle: using governor menu > [ 0.151795] PCCT header not found. > [ 0.151828] ACPI FADT declares the system doesn't support PCIe ASPM,= so disable it > [ 0.151828] ACPI: bus type PCI registered > [ 0.151829] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.= 5 > [ 0.151880] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf000= 0000-0xf7ffffff] (base 0xf0000000) > [ 0.151881] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in= E820 > [ 0.151889] PCI: Using configuration type 1 for base access > [ 0.167912] HugeTLB registered 1 GB page size, pre-allocated 0 pages= > [ 0.167912] HugeTLB registered 2 MB page size, pre-allocated 0 pages= > [ 0.168106] ACPI: Added _OSI(Module Device) > [ 0.168106] ACPI: Added _OSI(Processor Device) > [ 0.168107] ACPI: Added _OSI(3.0 _SCP Extensions) > [ 0.168107] ACPI: Added _OSI(Processor Aggregator Device) > [ 0.168109] ACPI : EC: EC started > [ 0.169801] ACPI: \: Used as first EC > [ 0.169802] ACPI: \: GPE=3D0x50, EC_CMD/EC_SC=3D0x66, EC_DATA=3D0x62= > [ 0.169803] ACPI: \: Used as boot ECDT EC to handle transactions > [ 0.171223] ACPI: Executed 33 blocks of module-level executable AML = code > [ 0.181297] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored > [ 0.187221] ACPI: Dynamic OEM Table Load: > [ 0.187227] ACPI: SSDT 0xFFFF95825C325800 0006F6 (v02 PmRef Cpu0Ist= 00003000 INTL 20160422) > [ 0.187382] ACPI: Executed 1 blocks of module-level executable AML c= ode > [ 0.187451] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked > [ 0.188704] ACPI: Dynamic OEM Table Load: > [ 0.188709] ACPI: SSDT 0xFFFF95825BD83400 0003FF (v02 PmRef Cpu0Cst= 00003001 INTL 20160422) > [ 0.188846] ACPI: Executed 1 blocks of module-level executable AML c= ode > [ 0.188991] ACPI: Dynamic OEM Table Load: > [ 0.188995] ACPI: SSDT 0xFFFF95825BE1E600 000115 (v02 PmRef Cpu0Hwp= 00003000 INTL 20160422) > [ 0.189112] ACPI: Executed 1 blocks of module-level executable AML c= ode > [ 0.189176] ACPI: Dynamic OEM Table Load: > [ 0.189179] ACPI: SSDT 0xFFFF95825BE1F400 0001A4 (v02 PmRef HwpLvt = 00003000 INTL 20160422) > [ 0.189293] ACPI: Executed 1 blocks of module-level executable AML c= ode > [ 0.189606] ACPI: Dynamic OEM Table Load: > [ 0.189611] ACPI: SSDT 0xFFFF95825C327000 00065C (v02 PmRef ApIst = 00003000 INTL 20160422) > [ 0.189926] ACPI: Executed 1 blocks of module-level executable AML c= ode > [ 0.190057] ACPI: Dynamic OEM Table Load: > [ 0.190061] ACPI: SSDT 0xFFFF95825BE1FE00 000197 (v02 PmRef ApHwp = 00003000 INTL 20160422) > [ 0.190197] ACPI: Executed 1 blocks of module-level executable AML c= ode > [ 0.190339] ACPI: Dynamic OEM Table Load: > [ 0.190342] ACPI: SSDT 0xFFFF95825BE1F000 00018A (v02 PmRef ApCst = 00003000 INTL 20160422) > [ 0.190477] ACPI: Executed 1 blocks of module-level executable AML c= ode > [ 0.192079] ACPI : EC: EC stopped > [ 0.192080] ACPI : EC: EC started > [ 0.192222] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC > [ 0.192223] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=3D0x50, EC_CMD/EC_SC=3D0= x66, EC_DATA=3D0x62 > [ 0.192224] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to hand= le transactions > [ 0.192224] ACPI: Interpreter enabled > [ 0.192265] ACPI: (supports S0 S3 S4 S5) > [ 0.192265] ACPI: Using IOAPIC for interrupt routing > [ 0.192298] PCI: Using host bridge windows from ACPI; if necessary, = use "pci=3Dnocrs" and report a bug > [ 0.196442] ACPI: Power Resource [WRST] (on) > [ 0.196583] ACPI: Power Resource [WRST] (on) > [ 0.196721] ACPI: Power Resource [WRST] (on) > [ 0.196861] ACPI: Power Resource [WRST] (on) > [ 0.196998] ACPI: Power Resource [WRST] (on) > [ 0.197042] ACPI: Power Resource [PC09] (on) > [ 0.197927] ACPI: Power Resource [WRST] (on) > [ 0.198067] ACPI: Power Resource [WRST] (on) > [ 0.198207] ACPI: Power Resource [WRST] (on) > [ 0.198344] ACPI: Power Resource [WRST] (on) > [ 0.198983] ACPI: Power Resource [WRST] (on) > [ 0.199122] ACPI: Power Resource [WRST] (on) > [ 0.199259] ACPI: Power Resource [WRST] (on) > [ 0.199397] ACPI: Power Resource [WRST] (on) > [ 0.199536] ACPI: Power Resource [WRST] (on) > [ 0.199674] ACPI: Power Resource [WRST] (on) > [ 0.199816] ACPI: Power Resource [WRST] (on) > [ 0.200160] ACPI: Power Resource [WRST] (on) > [ 0.200300] ACPI: Power Resource [WRST] (on) > [ 0.200437] ACPI: Power Resource [WRST] (on) > [ 0.208859] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e]) > [ 0.208863] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM = ClockPM Segments MSI] > [ 0.210330] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME = AER PCIeCapability] > [ 0.210330] acpi PNP0A08:00: FADT indicates ASPM is unsupported, usi= ng BIOS configuration > [ 0.211001] PCI host bridge to bus 0000:00 > [ 0.211003] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 wi= ndow] > [ 0.211004] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff wi= ndow] > [ 0.211005] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000= bffff window] > [ 0.211006] pci_bus 0000:00: root bus resource [mem 0x90000000-0xeff= fffff window] > [ 0.211007] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7= fffff window] > [ 0.211008] pci_bus 0000:00: root bus resource [bus 00-7e] > [ 0.211015] pci 0000:00:00.0: [8086:5904] type 00 class 0x060000 > [ 0.211337] pci 0000:00:02.0: [8086:5916] type 00 class 0x030000 > [ 0.211346] pci 0000:00:02.0: reg 0x10: [mem 0xed000000-0xedffffff 6= 4bit] > [ 0.211352] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 6= 4bit pref] > [ 0.211356] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f] > [ 0.211488] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 > [ 0.211498] pci 0000:00:04.0: reg 0x10: [mem 0xef220000-0xef227fff 6= 4bit] > [ 0.211700] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330 > [ 0.211719] pci 0000:00:14.0: reg 0x10: [mem 0xef210000-0xef21ffff 6= 4bit] > [ 0.211792] pci 0000:00:14.0: PME# supported from D3hot D3cold > [ 0.211955] pci 0000:00:14.0: System wakeup disabled by ACPI > [ 0.211989] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000 > [ 0.212008] pci 0000:00:14.2: reg 0x10: [mem 0xef238000-0xef238fff 6= 4bit] > [ 0.212261] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000 > [ 0.212469] pci 0000:00:15.0: reg 0x10: [mem 0xef237000-0xef237fff 6= 4bit] > [ 0.213428] pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000 > [ 0.213636] pci 0000:00:15.1: reg 0x10: [mem 0xef236000-0xef236fff 6= 4bit] > [ 0.214534] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000 > [ 0.214556] pci 0000:00:16.0: reg 0x10: [mem 0xef235000-0xef235fff 6= 4bit] > [ 0.214633] pci 0000:00:16.0: PME# supported from D3hot > [ 0.214780] pci 0000:00:17.0: [8086:9d03] type 00 class 0x010601 > [ 0.214795] pci 0000:00:17.0: reg 0x10: [mem 0xef230000-0xef231fff] > [ 0.214803] pci 0000:00:17.0: reg 0x14: [mem 0xef234000-0xef2340ff] > [ 0.214810] pci 0000:00:17.0: reg 0x18: [io 0xf090-0xf097] > [ 0.214818] pci 0000:00:17.0: reg 0x1c: [io 0xf080-0xf083] > [ 0.214826] pci 0000:00:17.0: reg 0x20: [io 0xf060-0xf07f] > [ 0.214833] pci 0000:00:17.0: reg 0x24: [mem 0xef233000-0xef2337ff] > [ 0.214877] pci 0000:00:17.0: PME# supported from D3hot > [ 0.215015] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400 > [ 0.215082] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold > [ 0.215204] pci 0000:00:1c.0: System wakeup disabled by ACPI > [ 0.215249] pci 0000:00:1c.5: [8086:9d15] type 01 class 0x060400 > [ 0.215322] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold > [ 0.215445] pci 0000:00:1c.5: System wakeup disabled by ACPI > [ 0.215489] pci 0000:00:1f.0: [8086:9d58] type 00 class 0x060100 > [ 0.215718] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000 > [ 0.215728] pci 0000:00:1f.2: reg 0x10: [mem 0xef22c000-0xef22ffff] > [ 0.215897] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040300 > [ 0.215919] pci 0000:00:1f.3: reg 0x10: [mem 0xef228000-0xef22bfff 6= 4bit] > [ 0.215945] pci 0000:00:1f.3: reg 0x20: [mem 0xef200000-0xef20ffff 6= 4bit] > [ 0.215994] pci 0000:00:1f.3: PME# supported from D3hot D3cold > [ 0.216158] pci 0000:00:1f.3: System wakeup disabled by ACPI > [ 0.216191] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500 > [ 0.216239] pci 0000:00:1f.4: reg 0x10: [mem 0xef232000-0xef2320ff 6= 4bit] > [ 0.216310] pci 0000:00:1f.4: reg 0x20: [io 0xf040-0xf05f] > [ 0.216554] pci 0000:01:00.0: [10de:134d] type 00 class 0x030200 > [ 0.216568] pci 0000:01:00.0: reg 0x10: [mem 0xee000000-0xeeffffff] > [ 0.216581] pci 0000:01:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 6= 4bit pref] > [ 0.216593] pci 0000:01:00.0: reg 0x1c: [mem 0xe0000000-0xe1ffffff 6= 4bit pref] > [ 0.216601] pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f] > [ 0.216610] pci 0000:01:00.0: reg 0x30: [mem 0xef000000-0xef07ffff p= ref] > [ 0.216736] pci 0000:01:00.0: System wakeup disabled by ACPI > [ 0.231866] pci 0000:00:1c.0: PCI bridge to [bus 01] > [ 0.231868] pci 0000:00:1c.0: bridge window [io 0xe000-0xefff] > [ 0.231871] pci 0000:00:1c.0: bridge window [mem 0xee000000-0xef0f= ffff] > [ 0.231875] pci 0000:00:1c.0: bridge window [mem 0xd0000000-0xe1ff= ffff 64bit pref] > [ 0.232232] pci 0000:02:00.0: [8086:24f3] type 00 class 0x028000 > [ 0.232311] pci 0000:02:00.0: reg 0x10: [mem 0xef100000-0xef101fff 6= 4bit] > [ 0.232808] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold > [ 0.233004] pci 0000:02:00.0: System wakeup disabled by ACPI > [ 0.248453] pci 0000:00:1c.5: PCI bridge to [bus 02] > [ 0.248457] pci 0000:00:1c.5: bridge window [mem 0xef100000-0xef1f= ffff] > [ 0.250614] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 = 14 15) > [ 0.250657] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 = 14 15) > [ 0.250697] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 = 14 15) > [ 0.250737] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 = 14 15) > [ 0.250777] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 = 14 15) > [ 0.250817] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 = 14 15) > [ 0.250858] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 = 14 15) > [ 0.250898] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 = 14 15) > [ 0.251338] ACPI: Enabled 4 GPEs in block 00 to 7F > [ 0.251418] ACPI : EC: event unblocked > [ 0.251431] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=3D0x50, EC_CMD/EC_SC=3D0= x66, EC_DATA=3D0x62 > [ 0.251432] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to hand= le transactions and events > [ 0.251655] SCSI subsystem initialized > [ 0.251683] libata version 3.00 loaded. > [ 0.251710] pci 0000:00:02.0: vgaarb: setting as boot VGA device > [ 0.251711] pci 0000:00:02.0: vgaarb: VGA device added: decodes=3Dio= +mem,owns=3Dio+mem,locks=3Dnone > [ 0.251714] pci 0000:00:02.0: vgaarb: bridge control possible > [ 0.251714] vgaarb: loaded > [ 0.251727] ACPI: bus type USB registered > [ 0.251739] usbcore: registered new interface driver usbfs > [ 0.251744] usbcore: registered new interface driver hub > [ 0.251755] usbcore: registered new device driver usb > [ 0.251803] Registered efivars operations > [ 0.272462] PCI: Using ACPI for IRQ routing > [ 0.286689] PCI: pci_cache_line_size set to 64 bytes > [ 0.287346] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff] > [ 0.287347] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff] > [ 0.287348] e820: reserve RAM buffer [mem 0x848c6000-0x87ffffff] > [ 0.287348] e820: reserve RAM buffer [mem 0x89928000-0x8bffffff] > [ 0.287349] e820: reserve RAM buffer [mem 0x8b3ff000-0x8bffffff] > [ 0.287350] e820: reserve RAM buffer [mem 0x46f000000-0x46fffffff] > [ 0.287419] NetLabel: Initializing > [ 0.287420] NetLabel: domain hash size =3D 128 > [ 0.287420] NetLabel: protocols =3D UNLABELED CIPSOv4 CALIPSO > [ 0.287432] NetLabel: unlabeled traffic allowed by default > [ 0.287531] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 > [ 0.287535] hpet0: 8 comparators, 64-bit 24.000000 MHz counter > [ 0.289580] clocksource: Switched to clocksource hpet > [ 0.295586] VFS: Disk quotas dquot_6.6.0 > [ 0.295597] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 = bytes) > [ 0.295675] AppArmor: AppArmor Filesystem Enabled > [ 0.295703] pnp: PnP ACPI init > [ 0.295925] system 00:00: [io 0x0680-0x069f] has been reserved > [ 0.295926] system 00:00: [io 0xffff] has been reserved > [ 0.295927] system 00:00: [io 0xffff] has been reserved > [ 0.295928] system 00:00: [io 0xffff] has been reserved > [ 0.295929] system 00:00: [io 0x1800-0x18fe] has been reserved > [ 0.295930] system 00:00: [io 0x164e-0x164f] has been reserved > [ 0.295932] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (ac= tive) > [ 0.296025] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (activ= e) > [ 0.296062] system 00:02: [io 0x1854-0x1857] has been reserved > [ 0.296063] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP= 0c02 (active) > [ 0.296202] pnp 00:03: Plug and Play ACPI device, IDs ATK3001 PNP030= b (active) > [ 0.296403] system 00:04: [mem 0xfed10000-0xfed17fff] has been reser= ved > [ 0.296404] system 00:04: [mem 0xfed18000-0xfed18fff] has been reser= ved > [ 0.296405] system 00:04: [mem 0xfed19000-0xfed19fff] has been reser= ved > [ 0.296406] system 00:04: [mem 0xf0000000-0xf7ffffff] has been reser= ved > [ 0.296407] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reser= ved > [ 0.296408] system 00:04: [mem 0xfed90000-0xfed93fff] could not be r= eserved > [ 0.296409] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reser= ved > [ 0.296410] system 00:04: [mem 0xff000000-0xffffffff] has been reser= ved > [ 0.296411] system 00:04: [mem 0xfee00000-0xfeefffff] could not be r= eserved > [ 0.296412] system 00:04: [mem 0xeffe0000-0xefffffff] has been reser= ved > [ 0.296413] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (ac= tive) > [ 0.296445] system 00:05: [mem 0xfd000000-0xfdabffff] has been reser= ved > [ 0.296446] system 00:05: [mem 0xfdad0000-0xfdadffff] has been reser= ved > [ 0.296447] system 00:05: [mem 0xfdb00000-0xfdffffff] has been reser= ved > [ 0.296448] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be r= eserved > [ 0.296448] system 00:05: [mem 0xfe036000-0xfe03bfff] has been reser= ved > [ 0.296449] system 00:05: [mem 0xfe03d000-0xfe3fffff] has been reser= ved > [ 0.296450] system 00:05: [mem 0xfe410000-0xfe7fffff] has been reser= ved > [ 0.296452] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (ac= tive) > [ 0.296735] system 00:06: [io 0xff00-0xfffe] has been reserved > [ 0.296736] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (ac= tive) > [ 0.297827] system 00:07: [mem 0xfe029000-0xfe029fff] has been reser= ved > [ 0.297828] system 00:07: [mem 0xfe028000-0xfe028fff] has been reser= ved > [ 0.297829] system 00:07: [mem 0xfdaf0000-0xfdafffff] has been reser= ved > [ 0.297830] system 00:07: [mem 0xfdae0000-0xfdaeffff] has been reser= ved > [ 0.297831] system 00:07: [mem 0xfdac0000-0xfdacffff] has been reser= ved > [ 0.297832] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (ac= tive) > [ 0.298813] pnp: PnP ACPI: found 8 devices > [ 0.305545] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xfffff= f, max_idle_ns: 2085701024 ns > [ 0.305565] pci 0000:00:1c.0: PCI bridge to [bus 01] > [ 0.305567] pci 0000:00:1c.0: bridge window [io 0xe000-0xefff] > [ 0.305570] pci 0000:00:1c.0: bridge window [mem 0xee000000-0xef0f= ffff] > [ 0.305572] pci 0000:00:1c.0: bridge window [mem 0xd0000000-0xe1ff= ffff 64bit pref] > [ 0.305577] pci 0000:00:1c.5: PCI bridge to [bus 02] > [ 0.305601] pci 0000:00:1c.5: bridge window [mem 0xef100000-0xef1f= ffff] > [ 0.305608] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] > [ 0.305609] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] > [ 0.305610] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff w= indow] > [ 0.305610] pci_bus 0000:00: resource 7 [mem 0x90000000-0xefffffff w= indow] > [ 0.305611] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff w= indow] > [ 0.305612] pci_bus 0000:01: resource 0 [io 0xe000-0xefff] > [ 0.305613] pci_bus 0000:01: resource 1 [mem 0xee000000-0xef0fffff] > [ 0.305614] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xe1ffffff 6= 4bit pref] > [ 0.305615] pci_bus 0000:02: resource 1 [mem 0xef100000-0xef1fffff] > [ 0.305742] NET: Registered protocol family 2 > [ 0.305884] TCP established hash table entries: 131072 (order: 8, 10= 48576 bytes) > [ 0.306041] TCP bind hash table entries: 65536 (order: 8, 1048576 by= tes) > [ 0.306153] TCP: Hash tables configured (established 131072 bind 655= 36) > [ 0.306174] UDP hash table entries: 8192 (order: 6, 262144 bytes) > [ 0.306211] UDP-Lite hash table entries: 8192 (order: 6, 262144 byte= s) > [ 0.306262] NET: Registered protocol family 1 > [ 0.306272] pci 0000:00:02.0: Video device with shadowed ROM at [mem= 0x000c0000-0x000dffff] > [ 0.306841] PCI: CLS 64 bytes, default 64 > [ 0.306876] Unpacking initramfs... > [ 5.625091] Freeing initrd memory: 29892K > [ 5.625117] DMAR: ACPI device "device:70" under DMAR at fed91000 as = 00:15.0 > [ 5.625120] DMAR: ACPI device "device:71" under DMAR at fed91000 as = 00:15.1 > [ 5.625131] PCI-DMA: Using software bounce buffering for IO (SWIOTLB= ) > [ 5.625133] software IO TLB [mem 0x7f60e000-0x8360e000] (64MB) mappe= d at [ffff957e7f60e000-ffff957e8360dfff] > [ 5.625162] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0= x29dc05e54fc, max_idle_ns: 440795291716 ns > [ 5.625269] Scanning for low memory corruption every 60 seconds > [ 5.625545] audit: initializing netlink subsys (disabled) > [ 5.625623] audit: type=3D2000 audit(1482205130.612:1): initialized > [ 5.625929] Initialise system trusted keyrings > [ 5.626015] workingset: timestamp_bits=3D36 max_order=3D22 bucket_or= der=3D0 > [ 5.627125] zbud: loaded > [ 5.627511] squashfs: version 4.0 (2009/01/31) Phillip Lougher > [ 5.627669] fuse init (API version 7.26) > [ 5.629350] Key type asymmetric registered > [ 5.629351] Asymmetric key parser 'x509' registered > [ 5.629384] Block layer SCSI generic (bsg) driver version 0.4 loaded= (major 248) > [ 5.629422] io scheduler noop registered > [ 5.629422] io scheduler deadline registered > [ 5.629428] io scheduler cfq registered (default) > [ 5.629991] pcieport 0000:00:1c.0: AER enabled with IRQ 122 > [ 5.630015] pcieport 0000:00:1c.5: AER enabled with IRQ 123 > [ 5.630025] pcieport 0000:00:1c.0: Signaling PME with IRQ 122 > [ 5.630034] pcieport 0000:00:1c.5: Signaling PME with IRQ 123 > [ 5.630067] efifb: probing for efifb > [ 5.630076] efifb: framebuffer at 0xc0000000, using 1920k, total 192= 0k > [ 5.630077] efifb: mode is 800x600x32, linelength=3D3200, pages=3D1 > [ 5.630077] efifb: scrolling: redraw > [ 5.630078] efifb: Truecolor: size=3D8:8:8:8, shift=3D24:16:8:0 > [ 5.630965] Console: switching to colour frame buffer device 100x37 > [ 5.631749] fb0: EFI VGA frame buffer device > [ 5.631754] intel_idle: MWAIT substates: 0x11142120 > [ 5.631755] intel_idle: v0.4.1 model 0x8E > [ 5.631942] intel_idle: lapic_timer_reliable_states 0xffffffff > [ 5.632013] ACPI: AC Adapter [AC0] (off-line) > [ 5.633094] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PN= P0A08:00/device:1b/PNP0C09:01/PNP0C0D:00/input/input0 > [ 5.634105] ACPI: Lid Switch [LID] > [ 5.634142] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/= PNP0C0E:00/input/input1 > [ 5.634144] ACPI: Sleep Button [SLPB] > [ 5.634169] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/= PNP0C0C:00/input/input2 > [ 5.634170] ACPI: Power Button [PWRB] > [ 5.634194] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/= input/input3 > [ 5.634195] ACPI: Power Button [PWRF] > [ 5.634981] (NULL device *): hwmon_device_register() is deprecated. = Please convert the driver to use hwmon_device_register_with_info(). > [ 5.635050] thermal LNXTHERM:00: registered as thermal_zone0 > [ 5.635050] ACPI: Thermal Zone [THRM] (49 C) > [ 5.635077] GHES: HEST is not enabled! > [ 5.635139] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled= > [ 5.637647] Linux agpgart interface v0.103 > [ 5.642262] ACPI: Battery Slot [BAT0] (battery present) > [ 5.643591] loop: module loaded > [ 5.643711] libphy: Fixed MDIO Bus: probed > [ 5.643712] tun: Universal TUN/TAP device driver, 1.6 > [ 5.643712] tun: (C) 1999-2004 Max Krasnyansky > [ 5.643740] PPP generic driver version 2.4.2 > [ 5.643775] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driv= er > [ 5.643776] ehci-pci: EHCI PCI platform driver > [ 5.643783] ehci-platform: EHCI generic platform driver > [ 5.643789] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver > [ 5.643790] ohci-pci: OHCI PCI platform driver > [ 5.643796] ohci-platform: OHCI generic platform driver > [ 5.643800] uhci_hcd: USB Universal Host Controller Interface driver= > [ 5.643920] xhci_hcd 0000:00:14.0: xHCI Host Controller > [ 5.643925] xhci_hcd 0000:00:14.0: new USB bus registered, assigned = bus number 1 > [ 5.645010] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version= 0x100 quirks 0x00109810 > [ 5.645016] xhci_hcd 0000:00:14.0: cache line size of 64 is not supp= orted > [ 5.645094] usb usb1: New USB device found, idVendor=3D1d6b, idProdu= ct=3D0002 > [ 5.645095] usb usb1: New USB device strings: Mfr=3D3, Product=3D2, = SerialNumber=3D1 > [ 5.645096] usb usb1: Product: xHCI Host Controller > [ 5.645097] usb usb1: Manufacturer: Linux 4.10.0-19-generic xhci-hcd= > [ 5.645098] usb usb1: SerialNumber: 0000:00:14.0 > [ 5.645181] hub 1-0:1.0: USB hub found > [ 5.645195] hub 1-0:1.0: 12 ports detected > [ 5.652674] xhci_hcd 0000:00:14.0: xHCI Host Controller > [ 5.652676] xhci_hcd 0000:00:14.0: new USB bus registered, assigned = bus number 2 > [ 5.652698] usb usb2: New USB device found, idVendor=3D1d6b, idProdu= ct=3D0003 > [ 5.652699] usb usb2: New USB device strings: Mfr=3D3, Product=3D2, = SerialNumber=3D1 > [ 5.652700] usb usb2: Product: xHCI Host Controller > [ 5.652701] usb usb2: Manufacturer: Linux 4.10.0-19-generic xhci-hcd= > [ 5.652701] usb usb2: SerialNumber: 0000:00:14.0 > [ 5.652779] hub 2-0:1.0: USB hub found > [ 5.652788] hub 2-0:1.0: 6 ports detected > [ 5.656667] i8042: PNP: PS/2 Controller [PNP030b:PS2K] at 0x60,0x64 = irq 1 > [ 5.656667] i8042: PNP: PS/2 appears to have AUX port disabled, if t= his is incorrect please boot with i8042.nopnp > [ 5.658202] serio: i8042 KBD port at 0x60,0x64 irq 1 > [ 5.658283] mousedev: PS/2 mouse device common for all mice > [ 5.658440] rtc_cmos 00:01: RTC can wake from S4 > [ 5.658817] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0 > [ 5.658900] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes n= vram, hpet irqs > [ 5.658905] i2c /dev entries driver > [ 5.658944] device-mapper: uevent: version 1.0.3 > [ 5.658994] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initiali= sed: dm-devel@redhat.com > [ 5.658996] intel_pstate: Intel P-state driver initializing > [ 5.659424] intel_pstate: HWP enabled > [ 5.659510] ledtrig-cpu: registered to indicate activity on CPUs > [ 5.659511] EFI Variables Facility v0.08 2004-May-17 > [ 5.682622] intel_pmc_core 0000:00:1f.2: enabling device (0000 -> 00= 02) > [ 5.682743] NET: Registered protocol family 10 > [ 5.684784] Segment Routing with IPv6 > [ 5.684795] NET: Registered protocol family 17 > [ 5.684803] Key type dns_resolver registered > [ 5.685041] microcode: sig=3D0x806e9, pf=3D0x80, revision=3D0x42 > [ 5.685078] microcode: Microcode Update Driver: v2.2. > [ 5.685173] registered taskstats version 1 > [ 5.685180] Loading compiled-in X.509 certificates > [ 5.686542] Loaded X.509 cert 'Build time autogenerated kernel key: = 8e99ee5b0fead84880b7849b477f2b92957907bc' > [ 5.686552] zswap: loaded using pool lzo/zbud > [ 5.694112] Key type big_key registered > [ 5.694114] Key type trusted registered > [ 5.695076] Key type encrypted registered > [ 5.695077] AppArmor: AppArmor sha1 policy hashing enabled > [ 5.695079] ima: No TPM chip found, activating TPM-bypass! (rc=3D-19= ) > [ 5.695088] evm: HMAC attrs: 0x1 > [ 5.696134] Magic number: 12:436:614 > [ 5.696325] rtc_cmos 00:01: setting system clock to 2016-12-20 03:38= :50 UTC (1482205130) > [ 5.696371] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found > [ 5.696372] EDD information not available. > [ 5.696405] PM: Hibernation image not present or could not be loaded= =2E > [ 5.697391] Freeing unused kernel memory: 2228K > [ 5.697392] Write protecting the kernel read-only data: 14336k > [ 5.697608] Freeing unused kernel memory: 1164K > [ 5.697942] Freeing unused kernel memory: 280K > [ 5.702397] x86/mm: Checked W+X mappings: passed, no W+X pages found= =2E > [ 5.705245] input: AT Translated Set 2 keyboard as /devices/platform= /i8042/serio0/input/input4 > [ 5.709788] random: systemd-udevd: uninitialized urandom read (16 by= tes read) > [ 5.709831] random: systemd-udevd: uninitialized urandom read (16 by= tes read) > [ 5.709836] random: systemd-udevd: uninitialized urandom read (16 by= tes read) > [ 5.709841] random: systemd-udevd: uninitialized urandom read (16 by= tes read) > [ 5.710143] random: udevadm: uninitialized urandom read (16 bytes re= ad) > [ 5.710159] random: udevadm: uninitialized urandom read (16 bytes re= ad) > [ 5.710881] random: udevadm: uninitialized urandom read (16 bytes re= ad) > [ 5.710889] random: udevadm: uninitialized urandom read (16 bytes re= ad) > [ 5.711053] random: udevadm: uninitialized urandom read (16 bytes re= ad) > [ 5.711079] random: udevadm: uninitialized urandom read (16 bytes re= ad) > [ 5.727684] FUJITSU Extended Socket Network Device Driver - version = 1.2 - Copyright (c) 2015 FUJITSU LIMITED > [ 5.734609] wmi: Mapper loaded > [ 5.744775] hidraw: raw HID events driver (C) Jiri Kosina > [ 5.751350] ahci 0000:00:17.0: version 3.0 > [ 5.751569] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 1 ports 6 Gbp= s 0x4 impl SATA mode > [ 5.751571] ahci 0000:00:17.0: flags: 64bit ncq pm led clo only pio = slum part deso sadm sds apst=20 > [ 5.752612] [drm] Initialized > [ 5.755177] scsi host0: ahci > [ 5.758625] scsi host1: ahci > [ 5.762907] scsi host2: ahci > [ 5.762961] ata1: DUMMY > [ 5.762961] ata2: DUMMY > [ 5.762966] ata3: SATA max UDMA/133 abar m2048@0xef233000 port 0xef2= 33200 irq 125 > [ 5.779556] [drm] Memory usable by graphics device =3D 4096M > [ 5.779558] checking generic (c0000000 1e0000) vs hw (c0000000 10000= 000) > [ 5.779558] fb: switching to inteldrmfb from EFI VGA > [ 5.779574] Console: switching to colour dummy device 80x25 > [ 5.781656] [drm] Replacing VGA console driver > [ 5.782108] MXM: GUID detected in BIOS > [ 5.782254] ACPI Warning: \_SB.PCI0.GFX0._DSM: Argument #4 type mism= atch - Found [Buffer], ACPI requires [Package] (20160930/nsarguments-95) > [ 5.782299] ACPI Warning: \_SB.PCI0.RP01.PEGP._DSM: Argument #4 type= mismatch - Found [Buffer], ACPI requires [Package] (20160930/nsarguments= -95) > [ 5.782344] ACPI Warning: \_SB.PCI0.RP01.PEGP._DSM: Argument #4 type= mismatch - Found [Buffer], ACPI requires [Package] (20160930/nsarguments= -95) > [ 5.782510] pci 0000:01:00.0: optimus capabilities: enabled, status = dynamic power, hda bios codec supported > [ 5.782513] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.R= P01.PEGP handle > [ 5.782513] nouveau: detected PR support, will not use DSM > [ 5.782535] nouveau 0000:01:00.0: enabling device (0006 -> 0007) > [ 5.782705] nouveau 0000:01:00.0: NVIDIA GM108 (1180d0a2) > [ 5.788942] [drm] Supports vblank timestamp caching Rev 2 (21.10.201= 3). > [ 5.788942] [drm] Driver supports precise vblank timestamp query. > [ 5.796145] nouveau 0000:01:00.0: bios: version 82.08.64.00.12 > [ 5.798298] [drm] Finished loading i915/kbl_dmc_ver1_01.bin (v1.1) > [ 5.798685] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecod= es=3Dio+mem,decodes=3Dio+mem:owns=3Dio+mem > [ 5.805054] [drm] GuC firmware load skipped > [ 5.883009] nouveau 0000:01:00.0: priv: HUB0: 6013d4 badf573f (1b408= 200) > [ 5.883061] nouveau 0000:01:00.0: fb: 2048 MiB DDR3 > [ 5.883214] nouveau 0000:01:00.0: bus: MMIO read of 00000000 FAULT a= t 6013d4 [ IBUS ] > [ 5.883410] nouveau 0000:01:00.0: priv: HUB0: 10ecc0 ffffffff (18408= 22c) > [ 5.981647] usb 1-2: new high-speed USB device number 2 using xhci_h= cd > [ 6.076863] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300) > [ 6.078088] ata3.00: ATA-9: SanDisk SD8SN8U512G1002, X4131002, max U= DMA/133 > [ 6.078089] ata3.00: 1000215216 sectors, multi 1: LBA48 NCQ (depth 3= 1/32), AA > [ 6.079848] ata3.00: configured for UDMA/133 > [ 6.080213] scsi 2:0:0:0: Direct-Access ATA SanDisk SD8SN8U= 5 1002 PQ: 0 ANSI: 5 > [ 6.162446] usb 1-2: New USB device found, idVendor=3D0781, idProduc= t=3D5583 > [ 6.162447] usb 1-2: New USB device strings: Mfr=3D1, Product=3D2, S= erialNumber=3D3 > [ 6.162448] usb 1-2: Product: Ultra Fit > [ 6.162449] usb 1-2: Manufacturer: SanDisk > [ 6.162449] usb 1-2: SerialNumber: 4C531001390412122404 > [ 6.164584] usb-storage 1-2:1.0: USB Mass Storage device detected > [ 6.164776] scsi host3: usb-storage 1-2:1.0 > [ 6.164832] usbcore: registered new interface driver usb-storage > [ 6.165700] usbcore: registered new interface driver uas > [ 6.165739] sd 2:0:0:0: Attached scsi generic sg0 type 0 > [ 6.165946] sd 2:0:0:0: [sda] 1000215216 512-byte logical blocks: (5= 12 GB/477 GiB) > [ 6.165963] sd 2:0:0:0: [sda] Write Protect is off > [ 6.165963] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00 > [ 6.166006] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enab= led, doesn't support DPO or FUA > [ 6.168004] sda: sda1 sda2 sda3 sda4 > [ 6.168501] sd 2:0:0:0: [sda] Attached SCSI disk > [ 6.281922] usb 2-1: new SuperSpeed USB device number 2 using xhci_h= cd > [ 6.308416] usb 2-1: New USB device found, idVendor=3D2001, idProduc= t=3D4a00 > [ 6.308417] usb 2-1: New USB device strings: Mfr=3D1, Product=3D2, S= erialNumber=3D3 > [ 6.308417] usb 2-1: Product: D-Link DUB-1312 > [ 6.308418] usb 2-1: Manufacturer: D-Link Elec. Corp. > [ 6.308419] usb 2-1: SerialNumber: 0000000000161B > [ 6.421604] usb 1-6: new high-speed USB device number 3 using xhci_h= cd > [ 6.595764] usb 1-6: New USB device found, idVendor=3D0bda, idProduc= t=3D58e4 > [ 6.595766] usb 1-6: New USB device strings: Mfr=3D3, Product=3D1, S= erialNumber=3D2 > [ 6.595767] usb 1-6: Product: USB2.0 HD UVC WebCam > [ 6.595768] usb 1-6: Manufacturer: 04081-0009800017121008915 > [ 6.595768] usb 1-6: SerialNumber: 200901010001 > [ 6.637627] clocksource: Switched to clocksource tsc > [ 6.717586] usb 1-8: new full-speed USB device number 4 using xhci_h= cd > [ 6.825894] [drm] RC6 on > [ 6.858412] usb 1-8: New USB device found, idVendor=3D8087, idProduc= t=3D0a2b > [ 6.858412] usb 1-8: New USB device strings: Mfr=3D0, Product=3D0, S= erialNumber=3D0 > [ 7.165764] vga_switcheroo: enabled > [ 7.165888] [TTM] Zone kernel: Available graphics memory: 8154720 k= iB > [ 7.165889] [TTM] Zone dma32: Available graphics memory: 2097152 k= iB > [ 7.165889] [TTM] Initializing pool allocator > [ 7.165892] [TTM] Initializing DMA pool allocator > [ 7.165906] nouveau 0000:01:00.0: DRM: VRAM: 2048 MiB > [ 7.165907] nouveau 0000:01:00.0: DRM: GART: 1048576 MiB > [ 7.165909] nouveau 0000:01:00.0: DRM: Pointer to TMDS table invalid= > [ 7.165910] nouveau 0000:01:00.0: DRM: DCB version 4.0 > [ 7.165911] nouveau 0000:01:00.0: DRM: Pointer to flat panel table i= nvalid > [ 7.177815] random: fast init done > [ 7.178375] scsi 3:0:0:0: Direct-Access SanDisk Ultra Fit = 1.00 PQ: 0 ANSI: 6 > [ 7.244964] sd 3:0:0:0: Attached scsi generic sg1 type 0 > [ 7.245559] sd 3:0:0:0: [sdb] 30031250 512-byte logical blocks: (15.= 4 GB/14.3 GiB) > [ 7.246874] sd 3:0:0:0: [sdb] Write Protect is off > [ 7.246875] sd 3:0:0:0: [sdb] Mode Sense: 43 00 00 00 > [ 7.247265] sd 3:0:0:0: [sdb] Write cache: disabled, read cache: ena= bled, doesn't support DPO or FUA > [ 7.252024] sdb: sdb1 sdb2 > [ 7.253531] sd 3:0:0:0: [sdb] Attached SCSI removable disk > [ 7.264627] nouveau 0000:01:00.0: hwmon_device_register() is depreca= ted. Please convert the driver to use hwmon_device_register_with_info(). > [ 7.366437] nouveau 0000:01:00.0: DRM: MM: using COPY for buffer cop= ies > [ 7.366446] [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.= 0 on minor 1 > [ 7.368321] ACPI: Video Device [GFX0] (multi-head: yes rom: no pos= t: no) > [ 7.368558] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP= 0A08:00/LNXVIDEO:00/input/input5 > [ 7.368628] ACPI: Video Device [PEGP] (multi-head: no rom: yes pos= t: no) > [ 7.368650] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP= 0A08:00/device:26/LNXVIDEO:01/input/input6 > [ 7.368704] [drm] Initialized i915 1.6.0 20161121 for 0000:00:02.0 o= n minor 0 > [ 7.563509] fbcon: inteldrmfb (fb0) is primary device > [ 8.840856] Console: switching to colour frame buffer device 240x67 > [ 8.860057] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device > [ 9.504238] ISO 9660 Extensions: Microsoft Joliet Level 3 > [ 9.506368] ISO 9660 Extensions: RRIP_1991A > [ 9.515014] aufs 4.x-rcN-20170206 > [ 11.163122] random: crng init done > [ 13.399764] ip_tables: (C) 2000-2006 Netfilter Core Team > [ 13.451477] systemd[1]: systemd 232 running in system mode. (+PAM +A= UDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYP= T +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN) > [ 13.451558] systemd[1]: Detected architecture x86-64. > [ 13.451689] systemd[1]: Set hostname to . > [ 13.451789] systemd[1]: Initializing machine ID from random generato= r. > [ 13.534296] systemd[1]: Listening on Journal Socket. > [ 13.534369] systemd[1]: Listening on Journal Audit Socket. > [ 13.534390] systemd[1]: Listening on Device-mapper event daemon FIFO= s. > [ 13.534406] systemd[1]: Listening on LVM2 metadata daemon socket. > [ 13.534412] systemd[1]: Reached target Swap. > [ 13.534437] systemd[1]: Started Forward Password Requests to Wall Di= rectory Watch. > [ 13.691571] systemd-journald[1024]: Received request to flush runtim= e journal from PID 1 > [ 13.724117] lp: driver loaded but no devices found > [ 13.736970] ppdev: user-space parallel port driver > [ 13.868260] shpchp: Standard Hot Plug PCI Controller Driver version:= 0.4 > [ 13.883739] (NULL device *): hwmon_device_register() is deprecated. = Please convert the driver to use hwmon_device_register_with_info(). > [ 13.884657] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002) > [ 13.885332] tpm_crb MSFT0101:00: can't request region for resource [= mem 0xfed40080-0xfed40fff] > [ 13.885380] tpm_crb: probe of MSFT0101:00 failed with error -16 > [ 13.943867] input: Asus Wireless Radio Control as /devices/LNXSYSTM:= 00/LNXSYBUS:00/ATK4002:00/input/input7 > [ 13.966514] idma64 idma64.0: Found Intel integrated DMA 64-bit > [ 13.966995] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002) > [ 13.967199] idma64 idma64.1: Found Intel integrated DMA 64-bit > [ 13.967437] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002= ) > [ 13.968262] mei_me 0000:00:16.0: enabling device (0000 -> 0002) > [ 14.001645] Bluetooth: Core ver 2.22 > [ 14.001659] NET: Registered protocol family 31 > [ 14.001660] Bluetooth: HCI device and connection manager initialized= > [ 14.001662] Bluetooth: HCI socket layer initialized > [ 14.001663] Bluetooth: L2CAP socket layer initialized > [ 14.001666] Bluetooth: SCO socket layer initialized > [ 14.065427] Bluetooth: HCI UART driver ver 2.3 > [ 14.065428] Bluetooth: HCI UART protocol H4 registered > [ 14.065429] Bluetooth: HCI UART protocol BCSP registered > [ 14.065429] Bluetooth: HCI UART protocol LL registered > [ 14.065430] Bluetooth: HCI UART protocol ATH3K registered > [ 14.065430] Bluetooth: HCI UART protocol Three-wire (H5) registered > [ 14.065456] Bluetooth: HCI UART protocol Intel registered > [ 14.065468] Bluetooth: HCI UART protocol Broadcom registered > [ 14.065468] Bluetooth: HCI UART protocol QCA registered > [ 14.065469] Bluetooth: HCI UART protocol AG6XX registered > [ 14.065469] Bluetooth: HCI UART protocol Marvell registered > [ 14.075383] usbcore: registered new interface driver btusb > [ 14.076161] Bluetooth: hci0: Bootloader revision 0.0 build 2 week 52= 2014 > [ 14.083166] Bluetooth: hci0: Device revision is 5 > [ 14.083167] Bluetooth: hci0: Secure boot is enabled > [ 14.083167] Bluetooth: hci0: OTP lock is enabled > [ 14.083168] Bluetooth: hci0: API lock is enabled > [ 14.083168] Bluetooth: hci0: Debug lock is disabled > [ 14.083169] Bluetooth: hci0: Minimum firmware build 1 week 10 2014 > [ 14.215028] media: Linux media interface: v0.10 > [ 14.292717] Intel(R) Wireless WiFi driver for Linux > [ 14.292717] Copyright(c) 2003- 2015 Intel Corporation > [ 14.293028] iwlwifi 0000:02:00.0: enabling device (0000 -> 0002) > [ 14.295617] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-8= 000C-26.ucode failed with error -2 > [ 14.295640] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-8= 000C-25.ucode failed with error -2 > [ 14.295661] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-8= 000C-24.ucode failed with error -2 > [ 14.295681] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-8= 000C-23.ucode failed with error -2 > [ 14.334346] Linux video capture interface: v2.00 > [ 14.365932] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 000= 2) > [ 14.366078] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915= _audio_component_bind_ops [i915]) > [ 14.410789] Bluetooth: hci0: Found device firmware: intel/ibt-11-5.s= fi > [ 14.414162] AVX2 version of gcm_enc/dec engaged. > [ 14.414162] AES CTR mode by8 optimization enabled > [ 14.436747] uvcvideo: Found UVC 1.00 device USB2.0 HD UVC WebCam (0b= da:58e4) > [ 14.440987] uvcvideo 1-6:1.0: Entity type for entity Realtek Extende= d Controls Unit was not initialized! > [ 14.440989] uvcvideo 1-6:1.0: Entity type for entity Extension 4 was= not initialized! > [ 14.440990] uvcvideo 1-6:1.0: Entity type for entity Processing 2 wa= s not initialized! > [ 14.440991] uvcvideo 1-6:1.0: Entity type for entity Camera 1 was no= t initialized! > [ 14.441567] input: USB2.0 HD UVC WebCam as /devices/pci0000:00/0000:= 00:14.0/usb1/1-6/1-6:1.0/input/input8 > [ 14.442073] usbcore: registered new interface driver uvcvideo > [ 14.442073] USB Video Class driver (1.1.1) > [ 14.618306] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC295= : line_outs=3D1 (0x17/0x0/0x0/0x0/0x0) type:speaker > [ 14.618307] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=3D0 (= 0x0/0x0/0x0/0x0/0x0) > [ 14.618308] snd_hda_codec_realtek hdaudioC0D0: hp_outs=3D1 (0x21/= 0x0/0x0/0x0/0x0) > [ 14.618309] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=3D0= x0 > [ 14.618309] snd_hda_codec_realtek hdaudioC0D0: inputs: > [ 14.618310] snd_hda_codec_realtek hdaudioC0D0: Mic=3D0x12 > [ 14.641188] ax88179_178a 2-1:1.0 eth0: register 'ax88179_178a' at us= b-0000:00:14.0-1, D-Link DUB-1312 USB 3.0 to Gigabit Ethernet Adapter, ec= :22:80:a3:3c:93 > [ 14.641947] usbcore: registered new interface driver ax88179_178a > [ 14.753930] input: HDA Intel PCH Headphone as /devices/pci0000:00/00= 00:00:1f.3/sound/card0/input9 > [ 14.753964] input: HDA Intel PCH HDMI/DP,pcm=3D3 as /devices/pci0000= :00/0000:00:1f.3/sound/card0/input10 > [ 14.753992] input: HDA Intel PCH HDMI/DP,pcm=3D7 as /devices/pci0000= :00/0000:00:1f.3/sound/card0/input11 > [ 14.754020] input: HDA Intel PCH HDMI/DP,pcm=3D8 as /devices/pci0000= :00/0000:00:1f.3/sound/card0/input12 > [ 14.801268] iwlwifi 0000:02:00.0: loaded firmware version 22.391740.= 0 op_mode iwlmvm > [ 15.005269] asus_wmi: ASUS WMI generic driver loaded > [ 15.006663] asus_wmi: Initialization: 0x1 > [ 15.006683] asus_wmi: BIOS WMI version: 9.0 > [ 15.006702] asus_wmi: SFUN value: 0x2021 > [ 15.007155] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi= /input/input13 > [ 15.007221] asus_wmi: Number of fans: 0 > [ 15.221254] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wirele= ss AC 8260, REV=3D0x208 > [ 15.223741] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled > [ 15.224714] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled > [ 15.231402] intel_rapl: Found RAPL domain package > [ 15.231403] intel_rapl: Found RAPL domain core > [ 15.231404] intel_rapl: Found RAPL domain uncore > [ 15.231404] intel_rapl: Found RAPL domain dram > [ 15.286660] ax88179_178a 2-1:1.0 enxec2280a33c93: renamed from eth0 > [ 15.362374] hid-multitouch 0018:04F3:304A.0001: Ignoring the extra H= ID_DG_INPUTMODE > [ 15.362416] input: ELAN1200:00 04F3:304A Touchpad as /devices/pci000= 0:00/0000:00:15.1/i2c_designware.1/i2c-9/i2c-ELAN1200:00/0018:04F3:304A.0= 001/input/input15 > [ 15.362525] hid-multitouch 0018:04F3:304A.0001: input,hidraw0: I2C H= ID v1.00 Mouse [ELAN1200:00 04F3:304A] on i2c-ELAN1200:00 > [ 15.377296] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm= -rs' > [ 15.377513] (NULL device *): hwmon_device_register() is deprecated. = Please convert the driver to use hwmon_device_register_with_info(). > [ 15.377528] thermal thermal_zone6: failed to read out thermal zone (= -5) > [ 15.414677] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0 > [ 15.538765] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 > [ 15.538766] Bluetooth: BNEP filters: protocol multicast > [ 15.538769] Bluetooth: BNEP socket layer initialized > [ 15.778267] Bluetooth: hci0: Waiting for firmware download to comple= te > [ 15.779139] Bluetooth: hci0: Firmware loaded in 1663827 usecs > [ 15.779158] Bluetooth: hci0: Waiting for device to boot > [ 15.790198] Bluetooth: hci0: Device booted in 10764 usecs > [ 15.818984] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-1= 1-5.ddc > [ 15.823144] Bluetooth: hci0: Applying Intel DDC parameters completed= > [ 15.890879] IPv6: ADDRCONF(NETDEV_UP): enxec2280a33c93: link is not = ready > [ 16.217086] IPv6: ADDRCONF(NETDEV_UP): enxec2280a33c93: link is not = ready > [ 16.219509] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready > [ 16.221733] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled > [ 16.222133] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled > [ 16.350193] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled > [ 16.350547] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled > [ 16.443522] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready > [ 16.452855] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled > [ 16.453851] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled > [ 16.584363] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled > [ 16.585435] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled > [ 16.683137] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready > [ 16.915349] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready > [ 18.926141] ax88179_178a 2-1:1.0 enxec2280a33c93: ax88179 - Link sta= tus is: 1 > [ 18.931732] IPv6: ADDRCONF(NETDEV_CHANGE): enxec2280a33c93: link bec= omes ready > [ 21.957883] nouveau 0000:01:00.0: DRM: evicting buffers... > [ 21.978036] nouveau 0000:01:00.0: DRM: waiting for kernel channels t= o go idle... > [ 21.978069] nouveau 0000:01:00.0: DRM: suspending client object tree= s... > [ 21.982537] nouveau 0000:01:00.0: DRM: suspending kernel object tree= =2E.. > > _______________________________________________ > freebsd-mobile@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-mobile > To unsubscribe, send any mail to "freebsd-mobile-unsubscribe@freebsd.or= g" --=20 Anthony Jenkins