From: Andreas Noever <andreas.noever@gmail.com>
To: "Bruno Prémont" <bonbons@linux-vserver.org>
Cc: Matthew Garrett <matthew.garrett@nebula.com>,
Linux PCI <linux-pci@vger.kernel.org>,
DRI mailing list <dri-devel@lists.freedesktop.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Bjorn Helgaas <bhelgaas@google.com>
Subject: Re: [PATCH 0/2] x86, ia64: Move EFI_FB vga_default_device() initialization to pci_vga_fixup()
Date: Thu, 21 Aug 2014 17:55:20 +0200 [thread overview]
Message-ID: <CAMxnaaUodONkqmdPWedN-Q1qheHiJAScFcG_XbX1--ZmiOQZDg@mail.gmail.com> (raw)
In-Reply-To: <20140820091152.76cd4e1a@pluto>
[-- Attachment #1: Type: text/plain, Size: 4166 bytes --]
dmesg with your patches and vga_set_default_device commented out
(after "vgaarb: Boot video device...") as otherwise the system won't
boot.
dmesg | grep vgaarb
[ 1.340118] vgaarb: PCI:0000:00:02.0 PCI_COMMAND=0007
[ 1.340119] vgaarb: Boot video device: PCI:0000:00:02.0
[ 1.340120] vgaarb: device added:
PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 1.340130] vgaarb: PCI:0000:01:00.0 PCI_COMMAND=0006
[ 1.340132] vgaarb: PCI:0000:01:00.0, bridge PCI:0000:00:01.0
PCI_BRIDGE_CONTROL=0000
[ 1.340133] vgaarb: device added:
PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[ 1.340135] vgaarb: loaded
[ 1.340136] vgaarb: bridge control possible 0000:01:00.0
[ 1.340136] vgaarb: no bridge control possible 0000:00:02.0
[ 3.798430] vgaarb: device changed decodes:
PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
If the line is not commented out then vgaarb simply declares the first
(enabled) device to be the default one, which is incorrect. And the
overwrite logic in pci_fixup_video is not triggered, since a default
device has already been set.
On Wed, Aug 20, 2014 at 9:11 AM, Bruno Prémont
<bonbons@linux-vserver.org> wrote:
> On Wed, 20 Aug 2014 07:55:08 +0200 Bruno Prémont wrote:
>> On Tue, 19 Aug 2014 17:45:00 +0200 Andreas Noever wrote:
>> > On Sat, Aug 16, 2014 at 7:21 PM, Bruno Prémont wrote:
>> > > This series improves on commit 20cde694027e (x86, ia64: Move EFI_FB
>> > > vga_default_device() initialization to pci_vga_fixup()):
>> > > - cleanup remaining but always-true #ifndefs
>> > > - fix boot regression on dual-GPU Macs
>> > >
>> > > Andreas, can you please test this series? It is a modification from
>> > > previous testing patch that should still work fine for you.
>> > > That testing patch would have been failing X startup on old BIOS systems
>> > > booted with vga=normal (or otherwise in VGA text mode).
>> > >
>> > >
>> > > Greg, in case you have scheduled above-mentioned commit for your next
>> > > stable iteration, please hold it back in the queue until this follow-up
>> > > has landed and can be included within the same stable update as alone
>> > > that patch regresses for Macs with dual-GPU and using efifb.
>> > >
>> > > Bruno
>> >
>> > Fails again (with and without efifb).
>> >
>> > The vga_set_default_device in vga_arbiter_add_pci_device is at fault.
>> > It sets the boot video device to intel. Removing it makes the system
>> > bootable again.
>>
>> Could you provide your whole kernel log? I would like to understand
>> how your vga devices are setup and why it starts the wrong way.
>>
>> If you can grab kernel log from both working and failing setups it
>> would be even better. The failing one is interesting for where exactly it
>> starts failing at boot.
>
> While collecting debug logs, please apply following patch to get
> PCI command and bridge control registers as configured when vgaarb looks
> at them.
>
>
>
> diff --git a/drivers/gpu/vga/vgaarb.c b/drivers/gpu/vga/vgaarb.c
> index af02597..8c8e7af 100644
> --- a/drivers/gpu/vga/vgaarb.c
> +++ b/drivers/gpu/vga/vgaarb.c
> @@ -554,6 +554,7 @@ static bool vga_arbiter_add_pci_device(struct pci_dev *pdev)
> * clear that below if the bridge isn't forwarding
> */
> pci_read_config_word(pdev, PCI_COMMAND, &cmd);
> + pr_info("vgaarb: PCI:%s PCI_COMMAND=%04x\n", pci_name(pdev), (unsigned int)cmd);
> if (cmd & PCI_COMMAND_IO)
> vgadev->owns |= VGA_RSRC_LEGACY_IO;
> if (cmd & PCI_COMMAND_MEMORY)
> @@ -567,6 +568,7 @@ static bool vga_arbiter_add_pci_device(struct pci_dev *pdev)
> u16 l;
> pci_read_config_word(bridge, PCI_BRIDGE_CONTROL,
> &l);
> + pr_info("vgaarb: PCI:%s, bridge PCI:%s PCI_BRIDGE_CONTROL=%04x\n", pci_name(pdev), pci_name(bridge), (unsigned int)l);
> if (!(l & PCI_BRIDGE_CTL_VGA)) {
> vgadev->owns = 0;
> break;
[-- Attachment #2: dmesg --]
[-- Type: application/octet-stream, Size: 110603 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.17.0-rc1-hdev-00002-g0d1f272-dirty (anoever@linuxbook) (gcc version 4.9.1 (GCC) ) #257 SMP PREEMPT Thu Aug 21 17:37:54 CEST 2014
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-hdev root=UUID=555026f1-7426-49a7-80aa-3d2bf31d5cc8 rw quiet systemd.unit=graphical.target resume=/dev/sda5
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x000000008ad13fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008ad14000-0x000000008ad52fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000008ad53000-0x000000008ad68fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008ad69000-0x000000008ad8efff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000008ad8f000-0x000000008ae39fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008ae3a000-0x000000008ae8efff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008ae8f000-0x000000008aecdfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008aece000-0x000000008aefefff] type 20
[ 0.000000] BIOS-e820: [mem 0x000000008aeff000-0x000000008af91fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008af92000-0x000000008affefff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008afff000-0x000000008affffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008b000000-0x000000008f9fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffe70000-0x00000000ffe9ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046f5fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] efi: EFI v1.10 by Apple
[ 0.000000] efi: ACPI=0x8ad8e000 ACPI 2.0=0x8ad8e014 SMBIOS=0x8ad1b000
[ 0.000000] efi: mem00: type=7, attr=0x80000000000000f, range=[0x0000000000000000-0x000000000008e000) (0MB)
[ 0.000000] efi: mem01: type=0, attr=0x80000000000000f, range=[0x000000000008e000-0x0000000000090000) (0MB)
[ 0.000000] efi: mem02: type=7, attr=0x80000000000000f, range=[0x0000000000090000-0x00000000000a0000) (0MB)
[ 0.000000] efi: mem03: type=2, attr=0xf, range=[0x0000000000100000-0x0000000000efb000) (13MB)
[ 0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000efb000-0x0000000020000000) (497MB)
[ 0.000000] efi: mem05: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[ 0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000020200000-0x0000000036c96000) (362MB)
[ 0.000000] efi: mem07: type=2, attr=0xf, range=[0x0000000036c96000-0x0000000037643000) (9MB)
[ 0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000037643000-0x0000000040004000) (137MB)
[ 0.000000] efi: mem09: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[ 0.000000] efi: mem10: type=7, attr=0xf, range=[0x0000000040005000-0x000000006456f000) (581MB)
[ 0.000000] efi: mem11: type=2, attr=0xf, range=[0x000000006456f000-0x0000000085c2c000) (534MB)
[ 0.000000] efi: mem12: type=1, attr=0xf, range=[0x0000000085c2c000-0x0000000085c4a000) (0MB)
[ 0.000000] efi: mem13: type=7, attr=0xf, range=[0x0000000085c4a000-0x0000000085c68000) (0MB)
[ 0.000000] efi: mem14: type=4, attr=0xf, range=[0x0000000085c68000-0x000000008937b000) (55MB)
[ 0.000000] efi: mem15: type=7, attr=0xf, range=[0x000000008937b000-0x0000000089386000) (0MB)
[ 0.000000] efi: mem16: type=4, attr=0xf, range=[0x0000000089386000-0x000000008946b000) (0MB)
[ 0.000000] efi: mem17: type=3, attr=0xf, range=[0x000000008946b000-0x0000000089484000) (0MB)
[ 0.000000] efi: mem18: type=4, attr=0xf, range=[0x0000000089484000-0x0000000089547000) (0MB)
[ 0.000000] efi: mem19: type=2, attr=0xf, range=[0x0000000089547000-0x0000000089548000) (0MB)
[ 0.000000] efi: mem20: type=4, attr=0xf, range=[0x0000000089548000-0x0000000089562000) (0MB)
[ 0.000000] efi: mem21: type=3, attr=0xf, range=[0x0000000089562000-0x000000008956b000) (0MB)
[ 0.000000] efi: mem22: type=4, attr=0xf, range=[0x000000008956b000-0x0000000089581000) (0MB)
[ 0.000000] efi: mem23: type=2, attr=0xf, range=[0x0000000089581000-0x0000000089582000) (0MB)
[ 0.000000] efi: mem24: type=4, attr=0xf, range=[0x0000000089582000-0x0000000089588000) (0MB)
[ 0.000000] efi: mem25: type=3, attr=0xf, range=[0x0000000089588000-0x000000008958a000) (0MB)
[ 0.000000] efi: mem26: type=4, attr=0xf, range=[0x000000008958a000-0x0000000089591000) (0MB)
[ 0.000000] efi: mem27: type=3, attr=0xf, range=[0x0000000089591000-0x0000000089599000) (0MB)
[ 0.000000] efi: mem28: type=4, attr=0xf, range=[0x0000000089599000-0x000000008959b000) (0MB)
[ 0.000000] efi: mem29: type=2, attr=0xf, range=[0x000000008959b000-0x000000008959c000) (0MB)
[ 0.000000] efi: mem30: type=4, attr=0xf, range=[0x000000008959c000-0x000000008959d000) (0MB)
[ 0.000000] efi: mem31: type=3, attr=0xf, range=[0x000000008959d000-0x000000008959e000) (0MB)
[ 0.000000] efi: mem32: type=4, attr=0xf, range=[0x000000008959e000-0x00000000895a3000) (0MB)
[ 0.000000] efi: mem33: type=3, attr=0xf, range=[0x00000000895a3000-0x00000000895a8000) (0MB)
[ 0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000895a8000-0x00000000895bf000) (0MB)
[ 0.000000] efi: mem35: type=3, attr=0xf, range=[0x00000000895bf000-0x00000000895c3000) (0MB)
[ 0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000895c3000-0x00000000895c7000) (0MB)
[ 0.000000] efi: mem37: type=2, attr=0xf, range=[0x00000000895c7000-0x00000000895c8000) (0MB)
[ 0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000895c8000-0x00000000895c9000) (0MB)
[ 0.000000] efi: mem39: type=3, attr=0xf, range=[0x00000000895c9000-0x00000000895ca000) (0MB)
[ 0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000895ca000-0x00000000895cb000) (0MB)
[ 0.000000] efi: mem41: type=3, attr=0xf, range=[0x00000000895cb000-0x00000000895d6000) (0MB)
[ 0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000895d6000-0x00000000895dc000) (0MB)
[ 0.000000] efi: mem43: type=3, attr=0xf, range=[0x00000000895dc000-0x00000000895de000) (0MB)
[ 0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000895de000-0x00000000895f8000) (0MB)
[ 0.000000] efi: mem45: type=3, attr=0xf, range=[0x00000000895f8000-0x0000000089634000) (0MB)
[ 0.000000] efi: mem46: type=4, attr=0xf, range=[0x0000000089634000-0x000000008964a000) (0MB)
[ 0.000000] efi: mem47: type=3, attr=0xf, range=[0x000000008964a000-0x000000008964d000) (0MB)
[ 0.000000] efi: mem48: type=4, attr=0xf, range=[0x000000008964d000-0x000000008964f000) (0MB)
[ 0.000000] efi: mem49: type=2, attr=0xf, range=[0x000000008964f000-0x0000000089650000) (0MB)
[ 0.000000] efi: mem50: type=4, attr=0xf, range=[0x0000000089650000-0x0000000089685000) (0MB)
[ 0.000000] efi: mem51: type=3, attr=0xf, range=[0x0000000089685000-0x0000000089693000) (0MB)
[ 0.000000] efi: mem52: type=4, attr=0xf, range=[0x0000000089693000-0x0000000089697000) (0MB)
[ 0.000000] efi: mem53: type=3, attr=0xf, range=[0x0000000089697000-0x00000000896ab000) (0MB)
[ 0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000896ab000-0x00000000896b0000) (0MB)
[ 0.000000] efi: mem55: type=3, attr=0xf, range=[0x00000000896b0000-0x00000000896b1000) (0MB)
[ 0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000896b1000-0x00000000896b4000) (0MB)
[ 0.000000] efi: mem57: type=2, attr=0xf, range=[0x00000000896b4000-0x00000000896b5000) (0MB)
[ 0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000896b5000-0x00000000896b9000) (0MB)
[ 0.000000] efi: mem59: type=3, attr=0xf, range=[0x00000000896b9000-0x00000000896bb000) (0MB)
[ 0.000000] efi: mem60: type=4, attr=0xf, range=[0x00000000896bb000-0x00000000896bf000) (0MB)
[ 0.000000] efi: mem61: type=3, attr=0xf, range=[0x00000000896bf000-0x00000000896d9000) (0MB)
[ 0.000000] efi: mem62: type=4, attr=0xf, range=[0x00000000896d9000-0x00000000896dc000) (0MB)
[ 0.000000] efi: mem63: type=2, attr=0xf, range=[0x00000000896dc000-0x00000000896dd000) (0MB)
[ 0.000000] efi: mem64: type=3, attr=0xf, range=[0x00000000896dd000-0x00000000896de000) (0MB)
[ 0.000000] efi: mem65: type=4, attr=0xf, range=[0x00000000896de000-0x00000000896e0000) (0MB)
[ 0.000000] efi: mem66: type=3, attr=0xf, range=[0x00000000896e0000-0x00000000896e1000) (0MB)
[ 0.000000] efi: mem67: type=4, attr=0xf, range=[0x00000000896e1000-0x00000000896e2000) (0MB)
[ 0.000000] efi: mem68: type=3, attr=0xf, range=[0x00000000896e2000-0x00000000896e3000) (0MB)
[ 0.000000] efi: mem69: type=4, attr=0xf, range=[0x00000000896e3000-0x00000000896e5000) (0MB)
[ 0.000000] efi: mem70: type=3, attr=0xf, range=[0x00000000896e5000-0x00000000896ea000) (0MB)
[ 0.000000] efi: mem71: type=4, attr=0xf, range=[0x00000000896ea000-0x00000000896eb000) (0MB)
[ 0.000000] efi: mem72: type=2, attr=0xf, range=[0x00000000896eb000-0x00000000896ec000) (0MB)
[ 0.000000] efi: mem73: type=4, attr=0xf, range=[0x00000000896ec000-0x00000000896ed000) (0MB)
[ 0.000000] efi: mem74: type=3, attr=0xf, range=[0x00000000896ed000-0x00000000896ee000) (0MB)
[ 0.000000] efi: mem75: type=4, attr=0xf, range=[0x00000000896ee000-0x00000000896ef000) (0MB)
[ 0.000000] efi: mem76: type=3, attr=0xf, range=[0x00000000896ef000-0x00000000896f0000) (0MB)
[ 0.000000] efi: mem77: type=4, attr=0xf, range=[0x00000000896f0000-0x00000000896f2000) (0MB)
[ 0.000000] efi: mem78: type=3, attr=0xf, range=[0x00000000896f2000-0x00000000896f4000) (0MB)
[ 0.000000] efi: mem79: type=2, attr=0xf, range=[0x00000000896f4000-0x00000000896f5000) (0MB)
[ 0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000896f5000-0x00000000896f8000) (0MB)
[ 0.000000] efi: mem81: type=3, attr=0xf, range=[0x00000000896f8000-0x00000000896fc000) (0MB)
[ 0.000000] efi: mem82: type=4, attr=0xf, range=[0x00000000896fc000-0x00000000896fd000) (0MB)
[ 0.000000] efi: mem83: type=3, attr=0xf, range=[0x00000000896fd000-0x00000000896fe000) (0MB)
[ 0.000000] efi: mem84: type=4, attr=0xf, range=[0x00000000896fe000-0x00000000896ff000) (0MB)
[ 0.000000] efi: mem85: type=2, attr=0xf, range=[0x00000000896ff000-0x0000000089700000) (0MB)
[ 0.000000] efi: mem86: type=4, attr=0xf, range=[0x0000000089700000-0x0000000089701000) (0MB)
[ 0.000000] efi: mem87: type=3, attr=0xf, range=[0x0000000089701000-0x0000000089708000) (0MB)
[ 0.000000] efi: mem88: type=4, attr=0xf, range=[0x0000000089708000-0x0000000089709000) (0MB)
[ 0.000000] efi: mem89: type=3, attr=0xf, range=[0x0000000089709000-0x000000008970a000) (0MB)
[ 0.000000] efi: mem90: type=4, attr=0xf, range=[0x000000008970a000-0x000000008970b000) (0MB)
[ 0.000000] efi: mem91: type=3, attr=0xf, range=[0x000000008970b000-0x000000008970c000) (0MB)
[ 0.000000] efi: mem92: type=4, attr=0xf, range=[0x000000008970c000-0x000000008970f000) (0MB)
[ 0.000000] efi: mem93: type=3, attr=0xf, range=[0x000000008970f000-0x000000008971f000) (0MB)
[ 0.000000] efi: mem94: type=4, attr=0xf, range=[0x000000008971f000-0x0000000089723000) (0MB)
[ 0.000000] efi: mem95: type=2, attr=0xf, range=[0x0000000089723000-0x0000000089724000) (0MB)
[ 0.000000] efi: mem96: type=4, attr=0xf, range=[0x0000000089724000-0x000000008972b000) (0MB)
[ 0.000000] efi: mem97: type=3, attr=0xf, range=[0x000000008972b000-0x0000000089730000) (0MB)
[ 0.000000] efi: mem98: type=4, attr=0xf, range=[0x0000000089730000-0x0000000089739000) (0MB)
[ 0.000000] efi: mem99: type=3, attr=0xf, range=[0x0000000089739000-0x0000000089752000) (0MB)
[ 0.000000] efi: mem100: type=4, attr=0xf, range=[0x0000000089752000-0x0000000089754000) (0MB)
[ 0.000000] efi: mem101: type=3, attr=0xf, range=[0x0000000089754000-0x0000000089762000) (0MB)
[ 0.000000] efi: mem102: type=4, attr=0xf, range=[0x0000000089762000-0x0000000089763000) (0MB)
[ 0.000000] efi: mem103: type=3, attr=0xf, range=[0x0000000089763000-0x0000000089766000) (0MB)
[ 0.000000] efi: mem104: type=4, attr=0xf, range=[0x0000000089766000-0x0000000089769000) (0MB)
[ 0.000000] efi: mem105: type=3, attr=0xf, range=[0x0000000089769000-0x0000000089778000) (0MB)
[ 0.000000] efi: mem106: type=4, attr=0xf, range=[0x0000000089778000-0x0000000089779000) (0MB)
[ 0.000000] efi: mem107: type=3, attr=0xf, range=[0x0000000089779000-0x000000008977d000) (0MB)
[ 0.000000] efi: mem108: type=2, attr=0xf, range=[0x000000008977d000-0x000000008977e000) (0MB)
[ 0.000000] efi: mem109: type=4, attr=0xf, range=[0x000000008977e000-0x0000000089783000) (0MB)
[ 0.000000] efi: mem110: type=3, attr=0xf, range=[0x0000000089783000-0x0000000089787000) (0MB)
[ 0.000000] efi: mem111: type=4, attr=0xf, range=[0x0000000089787000-0x000000008978c000) (0MB)
[ 0.000000] efi: mem112: type=2, attr=0xf, range=[0x000000008978c000-0x000000008978d000) (0MB)
[ 0.000000] efi: mem113: type=4, attr=0xf, range=[0x000000008978d000-0x000000008978f000) (0MB)
[ 0.000000] efi: mem114: type=3, attr=0xf, range=[0x000000008978f000-0x0000000089790000) (0MB)
[ 0.000000] efi: mem115: type=4, attr=0xf, range=[0x0000000089790000-0x0000000089791000) (0MB)
[ 0.000000] efi: mem116: type=3, attr=0xf, range=[0x0000000089791000-0x0000000089793000) (0MB)
[ 0.000000] efi: mem117: type=4, attr=0xf, range=[0x0000000089793000-0x0000000089795000) (0MB)
[ 0.000000] efi: mem118: type=3, attr=0xf, range=[0x0000000089795000-0x0000000089797000) (0MB)
[ 0.000000] efi: mem119: type=2, attr=0xf, range=[0x0000000089797000-0x0000000089798000) (0MB)
[ 0.000000] efi: mem120: type=4, attr=0xf, range=[0x0000000089798000-0x000000008979b000) (0MB)
[ 0.000000] efi: mem121: type=3, attr=0xf, range=[0x000000008979b000-0x00000000897cb000) (0MB)
[ 0.000000] efi: mem122: type=4, attr=0xf, range=[0x00000000897cb000-0x00000000897ce000) (0MB)
[ 0.000000] efi: mem123: type=3, attr=0xf, range=[0x00000000897ce000-0x00000000897d3000) (0MB)
[ 0.000000] efi: mem124: type=4, attr=0xf, range=[0x00000000897d3000-0x00000000897d7000) (0MB)
[ 0.000000] efi: mem125: type=3, attr=0xf, range=[0x00000000897d7000-0x00000000897e5000) (0MB)
[ 0.000000] efi: mem126: type=4, attr=0xf, range=[0x00000000897e5000-0x00000000897e8000) (0MB)
[ 0.000000] efi: mem127: type=3, attr=0xf, range=[0x00000000897e8000-0x00000000897eb000) (0MB)
[ 0.000000] efi: mem128: type=4, attr=0xf, range=[0x00000000897eb000-0x00000000897ef000) (0MB)
[ 0.000000] efi: mem129: type=2, attr=0xf, range=[0x00000000897ef000-0x00000000897f0000) (0MB)
[ 0.000000] efi: mem130: type=4, attr=0xf, range=[0x00000000897f0000-0x00000000897f3000) (0MB)
[ 0.000000] efi: mem131: type=3, attr=0xf, range=[0x00000000897f3000-0x00000000897fa000) (0MB)
[ 0.000000] efi: mem132: type=4, attr=0xf, range=[0x00000000897fa000-0x00000000897fd000) (0MB)
[ 0.000000] efi: mem133: type=3, attr=0xf, range=[0x00000000897fd000-0x00000000897fe000) (0MB)
[ 0.000000] efi: mem134: type=4, attr=0xf, range=[0x00000000897fe000-0x0000000089800000) (0MB)
[ 0.000000] efi: mem135: type=2, attr=0xf, range=[0x0000000089800000-0x0000000089801000) (0MB)
[ 0.000000] efi: mem136: type=4, attr=0xf, range=[0x0000000089801000-0x0000000089802000) (0MB)
[ 0.000000] efi: mem137: type=3, attr=0xf, range=[0x0000000089802000-0x0000000089804000) (0MB)
[ 0.000000] efi: mem138: type=4, attr=0xf, range=[0x0000000089804000-0x0000000089807000) (0MB)
[ 0.000000] efi: mem139: type=2, attr=0xf, range=[0x0000000089807000-0x0000000089808000) (0MB)
[ 0.000000] efi: mem140: type=3, attr=0xf, range=[0x0000000089808000-0x0000000089809000) (0MB)
[ 0.000000] efi: mem141: type=4, attr=0xf, range=[0x0000000089809000-0x000000008980d000) (0MB)
[ 0.000000] efi: mem142: type=3, attr=0xf, range=[0x000000008980d000-0x0000000089810000) (0MB)
[ 0.000000] efi: mem143: type=4, attr=0xf, range=[0x0000000089810000-0x0000000089811000) (0MB)
[ 0.000000] efi: mem144: type=3, attr=0xf, range=[0x0000000089811000-0x000000008981c000) (0MB)
[ 0.000000] efi: mem145: type=4, attr=0xf, range=[0x000000008981c000-0x000000008981e000) (0MB)
[ 0.000000] efi: mem146: type=3, attr=0xf, range=[0x000000008981e000-0x0000000089820000) (0MB)
[ 0.000000] efi: mem147: type=4, attr=0xf, range=[0x0000000089820000-0x0000000089823000) (0MB)
[ 0.000000] efi: mem148: type=2, attr=0xf, range=[0x0000000089823000-0x0000000089824000) (0MB)
[ 0.000000] efi: mem149: type=4, attr=0xf, range=[0x0000000089824000-0x0000000089825000) (0MB)
[ 0.000000] efi: mem150: type=3, attr=0xf, range=[0x0000000089825000-0x0000000089826000) (0MB)
[ 0.000000] efi: mem151: type=4, attr=0xf, range=[0x0000000089826000-0x000000008982a000) (0MB)
[ 0.000000] efi: mem152: type=3, attr=0xf, range=[0x000000008982a000-0x000000008982b000) (0MB)
[ 0.000000] efi: mem153: type=4, attr=0xf, range=[0x000000008982b000-0x0000000089832000) (0MB)
[ 0.000000] efi: mem154: type=3, attr=0xf, range=[0x0000000089832000-0x0000000089834000) (0MB)
[ 0.000000] efi: mem155: type=4, attr=0xf, range=[0x0000000089834000-0x000000008983b000) (0MB)
[ 0.000000] efi: mem156: type=3, attr=0xf, range=[0x000000008983b000-0x000000008983c000) (0MB)
[ 0.000000] efi: mem157: type=2, attr=0xf, range=[0x000000008983c000-0x000000008983d000) (0MB)
[ 0.000000] efi: mem158: type=4, attr=0xf, range=[0x000000008983d000-0x000000008983e000) (0MB)
[ 0.000000] efi: mem159: type=3, attr=0xf, range=[0x000000008983e000-0x000000008983f000) (0MB)
[ 0.000000] efi: mem160: type=4, attr=0xf, range=[0x000000008983f000-0x000000008985c000) (0MB)
[ 0.000000] efi: mem161: type=3, attr=0xf, range=[0x000000008985c000-0x0000000089861000) (0MB)
[ 0.000000] efi: mem162: type=4, attr=0xf, range=[0x0000000089861000-0x00000000898c6000) (0MB)
[ 0.000000] efi: mem163: type=2, attr=0xf, range=[0x00000000898c6000-0x00000000898c7000) (0MB)
[ 0.000000] efi: mem164: type=4, attr=0xf, range=[0x00000000898c7000-0x00000000898c8000) (0MB)
[ 0.000000] efi: mem165: type=3, attr=0xf, range=[0x00000000898c8000-0x00000000898db000) (0MB)
[ 0.000000] efi: mem166: type=4, attr=0xf, range=[0x00000000898db000-0x0000000089921000) (0MB)
[ 0.000000] efi: mem167: type=3, attr=0xf, range=[0x0000000089921000-0x0000000089938000) (0MB)
[ 0.000000] efi: mem168: type=4, attr=0xf, range=[0x0000000089938000-0x0000000089953000) (0MB)
[ 0.000000] efi: mem169: type=3, attr=0xf, range=[0x0000000089953000-0x0000000089958000) (0MB)
[ 0.000000] efi: mem170: type=4, attr=0xf, range=[0x0000000089958000-0x0000000089959000) (0MB)
[ 0.000000] efi: mem171: type=2, attr=0xf, range=[0x0000000089959000-0x000000008995a000) (0MB)
[ 0.000000] efi: mem172: type=4, attr=0xf, range=[0x000000008995a000-0x0000000089960000) (0MB)
[ 0.000000] efi: mem173: type=3, attr=0xf, range=[0x0000000089960000-0x0000000089961000) (0MB)
[ 0.000000] efi: mem174: type=4, attr=0xf, range=[0x0000000089961000-0x0000000089963000) (0MB)
[ 0.000000] efi: mem175: type=3, attr=0xf, range=[0x0000000089963000-0x0000000089964000) (0MB)
[ 0.000000] efi: mem176: type=4, attr=0xf, range=[0x0000000089964000-0x0000000089965000) (0MB)
[ 0.000000] efi: mem177: type=3, attr=0xf, range=[0x0000000089965000-0x0000000089968000) (0MB)
[ 0.000000] efi: mem178: type=4, attr=0xf, range=[0x0000000089968000-0x000000008997e000) (0MB)
[ 0.000000] efi: mem179: type=3, attr=0xf, range=[0x000000008997e000-0x00000000899a1000) (0MB)
[ 0.000000] efi: mem180: type=4, attr=0xf, range=[0x00000000899a1000-0x00000000899a2000) (0MB)
[ 0.000000] efi: mem181: type=2, attr=0xf, range=[0x00000000899a2000-0x00000000899a3000) (0MB)
[ 0.000000] efi: mem182: type=4, attr=0xf, range=[0x00000000899a3000-0x00000000899a4000) (0MB)
[ 0.000000] efi: mem183: type=3, attr=0xf, range=[0x00000000899a4000-0x00000000899a6000) (0MB)
[ 0.000000] efi: mem184: type=4, attr=0xf, range=[0x00000000899a6000-0x00000000899a7000) (0MB)
[ 0.000000] efi: mem185: type=3, attr=0xf, range=[0x00000000899a7000-0x00000000899aa000) (0MB)
[ 0.000000] efi: mem186: type=2, attr=0xf, range=[0x00000000899aa000-0x00000000899ab000) (0MB)
[ 0.000000] efi: mem187: type=4, attr=0xf, range=[0x00000000899ab000-0x0000000089dcc000) (4MB)
[ 0.000000] efi: mem188: type=3, attr=0xf, range=[0x0000000089dcc000-0x0000000089dd6000) (0MB)
[ 0.000000] efi: mem189: type=4, attr=0xf, range=[0x0000000089dd6000-0x0000000089e60000) (0MB)
[ 0.000000] efi: mem190: type=3, attr=0xf, range=[0x0000000089e60000-0x0000000089e63000) (0MB)
[ 0.000000] efi: mem191: type=4, attr=0xf, range=[0x0000000089e63000-0x0000000089e65000) (0MB)
[ 0.000000] efi: mem192: type=2, attr=0xf, range=[0x0000000089e65000-0x0000000089e66000) (0MB)
[ 0.000000] efi: mem193: type=4, attr=0xf, range=[0x0000000089e66000-0x0000000089e67000) (0MB)
[ 0.000000] efi: mem194: type=3, attr=0xf, range=[0x0000000089e67000-0x0000000089e6c000) (0MB)
[ 0.000000] efi: mem195: type=4, attr=0xf, range=[0x0000000089e6c000-0x0000000089e6d000) (0MB)
[ 0.000000] efi: mem196: type=3, attr=0xf, range=[0x0000000089e6d000-0x0000000089e70000) (0MB)
[ 0.000000] efi: mem197: type=4, attr=0xf, range=[0x0000000089e70000-0x0000000089e72000) (0MB)
[ 0.000000] efi: mem198: type=3, attr=0xf, range=[0x0000000089e72000-0x0000000089e73000) (0MB)
[ 0.000000] efi: mem199: type=4, attr=0xf, range=[0x0000000089e73000-0x0000000089e75000) (0MB)
[ 0.000000] efi: mem200: type=3, attr=0xf, range=[0x0000000089e75000-0x0000000089e76000) (0MB)
[ 0.000000] efi: mem201: type=4, attr=0xf, range=[0x0000000089e76000-0x000000008a355000) (4MB)
[ 0.000000] efi: mem202: type=2, attr=0xf, range=[0x000000008a355000-0x000000008a356000) (0MB)
[ 0.000000] efi: mem203: type=4, attr=0xf, range=[0x000000008a356000-0x000000008a440000) (0MB)
[ 0.000000] efi: mem204: type=2, attr=0xf, range=[0x000000008a440000-0x000000008a441000) (0MB)
[ 0.000000] efi: mem205: type=4, attr=0xf, range=[0x000000008a441000-0x000000008acfa000) (8MB)
[ 0.000000] efi: mem206: type=2, attr=0xf, range=[0x000000008acfa000-0x000000008acfb000) (0MB)
[ 0.000000] efi: mem207: type=4, attr=0xf, range=[0x000000008acfb000-0x000000008ad03000) (0MB)
[ 0.000000] efi: mem208: type=7, attr=0xf, range=[0x000000008ad03000-0x000000008ad14000) (0MB)
[ 0.000000] efi: mem209: type=10, attr=0xf, range=[0x000000008ad14000-0x000000008ad53000) (0MB)
[ 0.000000] efi: mem210: type=7, attr=0xf, range=[0x000000008ad53000-0x000000008ad69000) (0MB)
[ 0.000000] efi: mem211: type=9, attr=0xf, range=[0x000000008ad69000-0x000000008ad8f000) (0MB)
[ 0.000000] efi: mem212: type=7, attr=0xf, range=[0x000000008ad8f000-0x000000008ae3a000) (0MB)
[ 0.000000] efi: mem213: type=6, attr=0x800000000000000f, range=[0x000000008ae3a000-0x000000008ae8f000) (0MB)
[ 0.000000] efi: mem214: type=7, attr=0xf, range=[0x000000008ae8f000-0x000000008aece000) (0MB)
[ 0.000000] efi: mem215: type=5, attr=0x800000000000000f, range=[0x000000008aece000-0x000000008aeff000) (0MB)
[ 0.000000] efi: mem216: type=7, attr=0xf, range=[0x000000008aeff000-0x000000008af86000) (0MB)
[ 0.000000] efi: mem217: type=2, attr=0xf, range=[0x000000008af86000-0x000000008af92000) (0MB)
[ 0.000000] efi: mem218: type=0, attr=0xf, range=[0x000000008af92000-0x000000008afff000) (0MB)
[ 0.000000] efi: mem219: type=2, attr=0xf, range=[0x000000008afff000-0x000000008b000000) (0MB)
[ 0.000000] efi: mem220: type=7, attr=0xf, range=[0x0000000100000000-0x000000046f600000) (14070MB)
[ 0.000000] efi: mem221: type=0, attr=0x8000000000000000, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[ 0.000000] efi: mem222: type=0, attr=0x8000000000000000, range=[0x000000008b000000-0x000000008fa00000) (74MB)
[ 0.000000] efi: mem223: type=11, attr=0x8000000000000000, range=[0x00000000e00f8000-0x00000000e00f9000) (0MB)
[ 0.000000] efi: mem224: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[ 0.000000] efi: mem225: type=11, attr=0x8000000000000000, range=[0x00000000ffe70000-0x00000000ffea0000) (0MB)
[ 0.000000] SMBIOS 2.4 present.
[ 0.000000] DMI: Apple Inc. MacBookPro10,1/Mac-C3EC7CD22292981F, BIOS MBP101.88Z.00EE.B03.1212211437 12/21/2012
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x46f600 max_arch_pfn = 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-DFFFF write-protect
[ 0.000000] E0000-FFFFF uncachable
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0C0000000 mask FC0000000 uncachable
[ 0.000000] 1 base 0A0000000 mask FE0000000 uncachable
[ 0.000000] 2 base 090000000 mask FF0000000 uncachable
[ 0.000000] 3 base 08C000000 mask FFC000000 uncachable
[ 0.000000] 4 base 08B000000 mask FFF000000 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 enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] e820: last_pfn = 0x8b000 max_arch_pfn = 0x400000000
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] BRK [0x01ae8000, 0x01ae8fff] PGTABLE
[ 0.000000] BRK [0x01ae9000, 0x01ae9fff] PGTABLE
[ 0.000000] BRK [0x01aea000, 0x01aeafff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x46f400000-0x46f5fffff]
[ 0.000000] [mem 0x46f400000-0x46f5fffff] page 2M
[ 0.000000] BRK [0x01aeb000, 0x01aebfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x46c000000-0x46f3fffff]
[ 0.000000] [mem 0x46c000000-0x46f3fffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x400000000-0x46bffffff]
[ 0.000000] [mem 0x400000000-0x46bffffff] page 2M
[ 0.000000] BRK [0x01aec000, 0x01aecfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[ 0.000000] [mem 0x00100000-0x001fffff] page 4k
[ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
[ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
[ 0.000000] [mem 0x40000000-0x40003fff] page 4k
[ 0.000000] BRK [0x01aed000, 0x01aedfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x40005000-0x8ad13fff]
[ 0.000000] [mem 0x40005000-0x401fffff] page 4k
[ 0.000000] [mem 0x40200000-0x8abfffff] page 2M
[ 0.000000] [mem 0x8ac00000-0x8ad13fff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x8ad53000-0x8ad68fff]
[ 0.000000] [mem 0x8ad53000-0x8ad68fff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x8ad8f000-0x8ae39fff]
[ 0.000000] [mem 0x8ad8f000-0x8ae39fff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x8ae8f000-0x8aecdfff]
[ 0.000000] [mem 0x8ae8f000-0x8aecdfff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x8aeff000-0x8af91fff]
[ 0.000000] [mem 0x8aeff000-0x8af91fff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x8afff000-0x8affffff]
[ 0.000000] [mem 0x8afff000-0x8affffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
[ 0.000000] [mem 0x100000000-0x3ffffffff] page 2M
[ 0.000000] RAMDISK: [mem 0x36c96000-0x37642fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x000000008AD8E014 000024 (v02 APPLE )
[ 0.000000] ACPI: XSDT 0x000000008AD8E1C0 0000B4 (v01 APPLE Apple00 00000000 01000013)
[ 0.000000] ACPI: FACP 0x000000008AD8C000 0000F4 (v04 APPLE Apple00 00000000 Loki 0000005F)
[ 0.000000] ACPI: DSDT 0x000000008AD82000 004D5C (v01 APPLE MacBookP 00100001 INTL 20100915)
[ 0.000000] ACPI: FACS 0x000000008AD1E000 000040
[ 0.000000] ACPI: HPET 0x000000008AD8B000 000038 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: APIC 0x000000008AD8A000 0000BC (v02 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: SBST 0x000000008AD88000 000030 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: ECDT 0x000000008AD87000 000053 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: SSDT 0x000000008AD7F000 00053A (v01 APPLE SataAhci 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 0x000000008AD7E000 000024 (v01 APPLE SmcDppt 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 0x000000008AD79000 000D3E (v01 APPLE UsbPpt 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 0x000000008AD77000 000159 (v02 APPLE IGHda 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 0x000000008AD75000 000032 (v01 APPLE SsdtS3 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 0x000000008AD73000 0015EB (v02 APPLE SsdtIGPU 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 0x000000008AD6E000 0019AA (v01 APPLE TbtPEG11 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 0x000000008AD6D000 00071D (v01 PmRef Cpu0Ist 00003000 INTL 20100915)
[ 0.000000] ACPI: SSDT 0x000000008AD6C000 000B3D (v01 PmRef CpuPm 00003000 INTL 20100915)
[ 0.000000] ACPI: SSDT 0x000000008AD6B000 000315 (v01 PmRef Cpu0Tst 00003000 INTL 20100915)
[ 0.000000] ACPI: SSDT 0x000000008AD6A000 00037A (v01 PmRef ApTst 00003000 INTL 20100915)
[ 0.000000] ACPI: DMAR 0x000000008AD69000 000088 (v01 APPLE IVB 00000001 AAPL 00000001)
[ 0.000000] ACPI: MCFG 0x000000008AD89000 00003C (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000046f5fffff]
[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x46f5fffff]
[ 0.000000] NODE_DATA [mem 0x46f5ec000-0x46f5effff]
[ 0.000000] [ffffea0000000000-ffffea0011bfffff] PMD -> [ffff88045ec00000-ffff88046ebfffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x46f5fffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0008dfff]
[ 0.000000] node 0: [mem 0x00090000-0x0009ffff]
[ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
[ 0.000000] node 0: [mem 0x20200000-0x40003fff]
[ 0.000000] node 0: [mem 0x40005000-0x8ad13fff]
[ 0.000000] node 0: [mem 0x8ad53000-0x8ad68fff]
[ 0.000000] node 0: [mem 0x8ad8f000-0x8ae39fff]
[ 0.000000] node 0: [mem 0x8ae8f000-0x8aecdfff]
[ 0.000000] node 0: [mem 0x8aeff000-0x8af91fff]
[ 0.000000] node 0: [mem 0x8afff000-0x8affffff]
[ 0.000000] node 0: [mem 0x100000000-0x46f5fffff]
[ 0.000000] On node 0 totalpages: 4170308
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 25 pages reserved
[ 0.000000] DMA zone: 3997 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 8819 pages used for memmap
[ 0.000000] DMA32 zone: 564391 pages, LIFO batch:31
[ 0.000000] Normal zone: 56280 pages used for memmap
[ 0.000000] Normal zone: 3601920 pages, LIFO batch:31
[ 0.000000] Reserving Intel graphics stolen memory at 0x8ba00000-0x8f9fffff
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[ 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] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 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 level)
[ 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 8 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x0008e000-0x0008ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x8ad14000-0x8ad52fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x8ad69000-0x8ad8efff]
[ 0.000000] PM: Registered nosave memory: [mem 0x8ae3a000-0x8ae8efff]
[ 0.000000] PM: Registered nosave memory: [mem 0x8aece000-0x8aefefff]
[ 0.000000] PM: Registered nosave memory: [mem 0x8af92000-0x8affefff]
[ 0.000000] PM: Registered nosave memory: [mem 0x8b000000-0x8f9fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x8fa00000-0xe00f7fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xffe6ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xffe70000-0xffe9ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xffea0000-0xffffffff]
[ 0.000000] e820: [mem 0x8fa00000-0xe00f7fff] available for PCI devices
[ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88046f200000 s82432 r8192 d24064 u262144
[ 0.000000] pcpu-alloc: s82432 r8192 d24064 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4105120
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-hdev root=UUID=555026f1-7426-49a7-80aa-3d2bf31d5cc8 rw quiet systemd.unit=graphical.target resume=/dev/sda5
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[ 0.000000] Memory: 16248216K/16681232K available (4728K kernel code, 843K rwdata, 1536K rodata, 976K init, 1128K bss, 433016K reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
[ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.000000] NR_IRQS:8448 nr_irqs:488 0
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 67108864 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2693.799 MHz processor
[ 0.000029] Calibrating delay loop (skipped), value calculated using timer frequency.. 5389.08 BogoMIPS (lpj=8979330)
[ 0.000031] pid_max: default: 32768 minimum: 301
[ 0.000037] ACPI: Core revision 20140724
[ 0.006749] ACPI: All ACPI Tables successfully acquired
[ 0.014625] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.018215] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.019824] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.019841] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.020042] Initializing cgroup subsys memory
[ 0.020046] Initializing cgroup subsys devices
[ 0.020048] Initializing cgroup subsys freezer
[ 0.020050] Initializing cgroup subsys net_cls
[ 0.020051] Initializing cgroup subsys blkio
[ 0.020068] CPU: Physical Processor ID: 0
[ 0.020069] CPU: Processor Core ID: 0
[ 0.020419] mce: CPU supports 9 MCE banks
[ 0.020431] CPU0: Thermal monitoring enabled (TM1)
[ 0.020438] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.020532] Freeing SMP alternatives memory: 16K (ffffffff819c8000 - ffffffff819cc000)
[ 0.022436] ftrace: allocating 18428 entries in 72 pages
[ 0.030665] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.063657] smpboot: CPU0: Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz (fam: 06, model: 3a, stepping: 09)
[ 0.063665] TSC deadline timer enabled
[ 0.063682] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[ 0.063699] ... version: 3
[ 0.063700] ... bit width: 48
[ 0.063701] ... generic registers: 4
[ 0.063702] ... value mask: 0000ffffffffffff
[ 0.063702] ... max period: 0000ffffffffffff
[ 0.063703] ... fixed-purpose events: 3
[ 0.063704] ... event mask: 000000070000000f
[ 0.087088] x86: Booting SMP configuration:
[ 0.087089] .... node #0, CPUs: #1
[ 0.100585] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.107260] #2 #3 #4 #5 #6 #7
[ 0.218815] x86: Booted up 1 node, 8 CPUs
[ 0.218818] smpboot: Total of 8 processors activated (43118.65 BogoMIPS)
[ 0.224529] devtmpfs: initialized
[ 0.227424] PM: Registering ACPI NVS region [mem 0x8ad14000-0x8ad52fff] (258048 bytes)
[ 0.228152] RTC time: 15:38:51, date: 08/21/14
[ 0.228223] NET: Registered protocol family 16
[ 0.228319] cpuidle: using governor ladder
[ 0.228321] cpuidle: using governor menu
[ 0.228345] ACPI: bus type PCI registered
[ 0.228346] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.228394] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[ 0.228396] PCI: not using MMCONFIG
[ 0.228397] PCI: Using configuration type 1 for base access
[ 0.241296] ACPI: Added _OSI(Module Device)
[ 0.241297] ACPI: Added _OSI(Processor Device)
[ 0.241298] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.241299] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.242398] ACPI : EC: EC description table is found, configuring boot EC
[ 0.246040] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.246456] ACPI: Dynamic OEM Table Load:
[ 0.246465] ACPI: SSDT 0xFFFF880458BA8000 0008AD (v01 PmRef Cpu0Cst 00003001 INTL 20100915)
[ 0.254548] ACPI: Dynamic OEM Table Load:
[ 0.254554] ACPI: SSDT 0xFFFF880458B3B000 0003A4 (v01 PmRef ApIst 00003000 INTL 20100915)
[ 0.267775] ACPI: Dynamic OEM Table Load:
[ 0.267780] ACPI: SSDT 0xFFFF880458B5D600 000119 (v01 PmRef ApCst 00003000 INTL 20100915)
[ 0.281905] ACPI: Interpreter enabled
[ 0.281911] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
[ 0.281914] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
[ 0.281924] ACPI: (supports S0 S3 S4 S5)
[ 0.281925] ACPI: Using IOAPIC for interrupt routing
[ 0.281939] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[ 0.282253] PCI: MMCONFIG at [mem 0xe0000000-0xe9bfffff] reserved in ACPI motherboard resources
[ 0.282363] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.288597] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.288602] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.288693] acpi PNP0A08:00: _OSC: platform does not support [PME]
[ 0.288767] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug AER PCIeCapability]
[ 0.288919] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-9b] only partially covers this bridge
[ 0.289021] PCI host bridge to bus 0000:00
[ 0.289023] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.289025] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.289026] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 0.289027] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.289028] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
[ 0.289030] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
[ 0.289031] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
[ 0.289032] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
[ 0.289033] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[ 0.289035] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[ 0.289036] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[ 0.289037] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[ 0.289038] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[ 0.289039] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[ 0.289041] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
[ 0.289042] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
[ 0.289043] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
[ 0.289044] pci_bus 0000:00: root bus resource [mem 0x8fa00000-0xfeafffff]
[ 0.289046] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[ 0.289047] pci_bus 0000:00: scanning bus
[ 0.289053] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[ 0.289061] pci 0000:00:00.0: calling quirk_mmio_always_on+0x0/0x10
[ 0.289126] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[ 0.289141] pci 0000:00:01.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 0.289159] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.289162] pci 0000:00:01.0: PME# disabled
[ 0.289183] pci 0000:00:01.0: System wakeup disabled by ACPI
[ 0.289212] pci 0000:00:01.1: [8086:0155] type 01 class 0x060400
[ 0.289225] pci 0000:00:01.1: calling pci_fixup_transparent_bridge+0x0/0x30
[ 0.289241] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.289243] pci 0000:00:01.1: PME# disabled
[ 0.289263] pci 0000:00:01.1: System wakeup disabled by ACPI
[ 0.289300] pci 0000:00:01.2: [8086:0159] type 01 class 0x060400
[ 0.289328] pci 0000:00:01.2: calling pci_fixup_transparent_bridge+0x0/0x30
[ 0.289380] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[ 0.289383] pci 0000:00:01.2: PME# disabled
[ 0.289410] pci 0000:00:01.2: System wakeup disabled by ACPI
[ 0.289446] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[ 0.289455] pci 0000:00:02.0: reg 0x10: [mem 0xc1400000-0xc17fffff 64bit]
[ 0.289460] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
[ 0.289464] pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
[ 0.289543] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[ 0.289562] pci 0000:00:14.0: reg 0x10: [mem 0xc1c00000-0xc1c0ffff 64bit]
[ 0.289621] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.289625] pci 0000:00:14.0: PME# disabled
[ 0.289648] pci 0000:00:14.0: System wakeup disabled by ACPI
[ 0.289686] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[ 0.289708] pci 0000:00:16.0: reg 0x10: [mem 0xc1c17100-0xc1c1710f 64bit]
[ 0.289783] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.289787] pci 0000:00:16.0: PME# disabled
[ 0.289855] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[ 0.289876] pci 0000:00:1a.0: reg 0x10: [mem 0xc1c16c00-0xc1c16fff]
[ 0.289962] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.289967] pci 0000:00:1a.0: PME# disabled
[ 0.289992] pci 0000:00:1a.0: System wakeup disabled by ACPI
[ 0.290027] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[ 0.290041] pci 0000:00:1b.0: reg 0x10: [mem 0xc1c10000-0xc1c13fff 64bit]
[ 0.290105] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.290108] pci 0000:00:1b.0: PME# disabled
[ 0.290134] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.290171] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[ 0.290235] pci 0000:00:1c.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 0.290310] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.290314] pci 0000:00:1c.0: PME# disabled
[ 0.290349] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.290389] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[ 0.290452] pci 0000:00:1c.1: calling pci_fixup_transparent_bridge+0x0/0x30
[ 0.290526] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.290530] pci 0000:00:1c.1: PME# disabled
[ 0.290567] pci 0000:00:1c.1: System wakeup disabled by ACPI
[ 0.290610] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[ 0.290630] pci 0000:00:1d.0: reg 0x10: [mem 0xc1c16800-0xc1c16bff]
[ 0.290717] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.290721] pci 0000:00:1d.0: PME# disabled
[ 0.290746] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 0.290780] pci 0000:00:1f.0: [8086:1e57] type 00 class 0x060100
[ 0.290931] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[ 0.290949] pci 0000:00:1f.2: reg 0x10: [io 0x3098-0x309f]
[ 0.290956] pci 0000:00:1f.2: reg 0x14: [io 0x30bc-0x30bf]
[ 0.290963] pci 0000:00:1f.2: reg 0x18: [io 0x3090-0x3097]
[ 0.290970] pci 0000:00:1f.2: reg 0x1c: [io 0x30b8-0x30bb]
[ 0.290978] pci 0000:00:1f.2: reg 0x20: [io 0x3060-0x307f]
[ 0.290986] pci 0000:00:1f.2: reg 0x24: [mem 0xc1c16000-0xc1c167ff]
[ 0.291029] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.291033] pci 0000:00:1f.2: PME# disabled
[ 0.291091] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[ 0.291104] pci 0000:00:1f.3: reg 0x10: [mem 0xc1c17000-0xc1c170ff 64bit]
[ 0.291119] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
[ 0.291175] pci_bus 0000:00: fixups for bus
[ 0.291178] pci 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 0
[ 0.291220] pci_bus 0000:01: scanning bus
[ 0.291232] pci 0000:01:00.0: [10de:0fd5] type 00 class 0x030000
[ 0.291243] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xc0ffffff]
[ 0.291254] pci 0000:01:00.0: reg 0x14: [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.291263] pci 0000:01:00.0: reg 0x1c: [mem 0xa0000000-0xa1ffffff 64bit pref]
[ 0.291270] pci 0000:01:00.0: reg 0x24: [io 0x2000-0x207f]
[ 0.291278] pci 0000:01:00.0: reg 0x30: [mem 0xc1000000-0xc107ffff pref]
[ 0.291334] pci 0000:01:00.0: System wakeup disabled by ACPI
[ 0.291376] pci 0000:01:00.1: [10de:0e1b] type 00 class 0x040300
[ 0.291385] pci 0000:01:00.1: reg 0x10: [mem 0xc1080000-0xc1083fff]
[ 1.297946] pci 0000:00:01.0: ASPM: Could not configure common clock
[ 1.297974] pci_bus 0000:01: fixups for bus
[ 1.297977] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 1.297982] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 1.297995] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xc10fffff]
[ 1.297998] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[ 1.297999] pci_bus 0000:01: bus scan returning with max=01
[ 1.298001] pci 0000:00:01.1: scanning [bus 05-6b] behind bridge, pass 0
[ 1.298038] pci_bus 0000:05: scanning bus
[ 1.298050] pci 0000:05:00.0: [8086:1547] type 01 class 0x060400
[ 1.298077] pci 0000:05:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.298115] pci 0000:05:00.0: supports D1 D2
[ 1.298116] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.298119] pci 0000:05:00.0: PME# disabled
[ 1.304623] pci_bus 0000:05: fixups for bus
[ 1.304627] pci 0000:00:01.1: PCI bridge to [bus 05-6b]
[ 1.304631] pci 0000:00:01.1: bridge window [io 0x4000-0x6fff]
[ 1.304635] pci 0000:00:01.1: bridge window [mem 0xc1d00000-0xce0fffff]
[ 1.304641] pci 0000:00:01.1: bridge window [mem 0xce100000-0xda1fffff 64bit pref]
[ 1.304645] pci 0000:05:00.0: scanning [bus 06-6b] behind bridge, pass 0
[ 1.304702] pci_bus 0000:06: dev 03, created physical slot 2
[ 1.304708] pci_bus 0000:06: dev 04, created physical slot 3
[ 1.304714] pci_bus 0000:06: dev 05, created physical slot 4
[ 1.304722] pci_bus 0000:06: dev 06, created physical slot 5
[ 1.304755] pci_bus 0000:06: scanning bus
[ 1.304768] pci 0000:06:00.0: [8086:1547] type 01 class 0x060400
[ 1.304797] pci 0000:06:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.304837] pci 0000:06:00.0: supports D1 D2
[ 1.304838] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.304841] pci 0000:06:00.0: PME# disabled
[ 1.304895] pci 0000:06:03.0: [8086:1547] type 01 class 0x060400
[ 1.304924] pci 0000:06:03.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.304964] pci 0000:06:03.0: supports D1 D2
[ 1.304966] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.304968] pci 0000:06:03.0: PME# disabled
[ 1.305020] pci 0000:06:04.0: [8086:1547] type 01 class 0x060400
[ 1.305048] pci 0000:06:04.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.305088] pci 0000:06:04.0: supports D1 D2
[ 1.305090] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.305092] pci 0000:06:04.0: PME# disabled
[ 1.305145] pci 0000:06:05.0: [8086:1547] type 01 class 0x060400
[ 1.305169] pci 0000:06:05.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.305209] pci 0000:06:05.0: supports D1 D2
[ 1.305211] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.305213] pci 0000:06:05.0: PME# disabled
[ 1.305266] pci 0000:06:06.0: [8086:1547] type 01 class 0x060400
[ 1.305290] pci 0000:06:06.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.305330] pci 0000:06:06.0: supports D1 D2
[ 1.305331] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.305334] pci 0000:06:06.0: PME# disabled
[ 1.305396] pci_bus 0000:06: fixups for bus
[ 1.305398] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[ 1.305402] pci 0000:05:00.0: bridge window [io 0x4000-0x5fff]
[ 1.305405] pci 0000:05:00.0: bridge window [mem 0xc1d00000-0xca0fffff]
[ 1.305409] pci 0000:05:00.0: bridge window [mem 0xce100000-0xd61fffff 64bit pref]
[ 1.305411] pci 0000:06:00.0: scanning [bus 07-07] behind bridge, pass 0
[ 1.305458] pci_bus 0000:07: dev 00, created physical slot 1
[ 1.305463] acpiphp: Slot [1] registered
[ 1.305465] pci_bus 0000:07: scanning bus
[ 1.305483] pci 0000:07:00.0: [8086:1547] type 00 class 0x088000
[ 1.305497] pci 0000:07:00.0: reg 0x10: [mem 0xc1f00000-0xc1f3ffff]
[ 1.305506] pci 0000:07:00.0: reg 0x14: [mem 0xc1f40000-0xc1f40fff]
[ 1.305613] pci 0000:07:00.0: supports D1 D2
[ 1.305614] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.305617] pci 0000:07:00.0: PME# disabled
[ 1.311298] pci_bus 0000:07: fixups for bus
[ 1.311301] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 1.311311] pci 0000:06:00.0: bridge window [mem 0xc1f00000-0xc1ffffff]
[ 1.311318] pci_bus 0000:07: bus scan returning with max=07
[ 1.311332] pci 0000:06:03.0: scanning [bus 08-38] behind bridge, pass 0
[ 1.311422] pci_bus 0000:08: scanning bus
[ 1.311447] pci 0000:08:00.0: [8086:1549] type 01 class 0x060400
[ 1.311514] pci 0000:08:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.311611] pci 0000:08:00.0: supports D1 D2
[ 1.311612] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.311617] pci 0000:08:00.0: PME# disabled
[ 1.317967] pci_bus 0000:08: fixups for bus
[ 1.317971] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[ 1.317978] pci 0000:06:03.0: bridge window [io 0x4000-0x4fff]
[ 1.317983] pci 0000:06:03.0: bridge window [mem 0xc2000000-0xc60fffff]
[ 1.318001] pci 0000:06:03.0: bridge window [mem 0xce100000-0xd21fffff 64bit pref]
[ 1.318004] pci 0000:08:00.0: scanning [bus 09-0a] behind bridge, pass 0
[ 1.318072] pci_bus 0000:09: scanning bus
[ 1.318097] pci 0000:09:00.0: [8086:1549] type 01 class 0x060400
[ 1.318168] pci 0000:09:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[ 1.318267] pci 0000:09:00.0: supports D1 D2
[ 1.318269] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.318274] pci 0000:09:00.0: PME# disabled
[ 1.318387] pci_bus 0000:09: fixups for bus
[ 1.318388] pci 0000:08:00.0: PCI bridge to [bus 09-0a]
[ 1.318401] pci 0000:08:00.0: bridge window [mem 0xc2000000-0xc20fffff]
[ 1.318410] pci 0000:08:00.0: bridge window [mem 0xce100000-0xce1fffff 64bit pref]
[ 1.318413] pci 0000:09:00.0: scanning [bus 0a-0a] behind bridge, pass 0
[ 1.318480] pci_bus 0000:0a: scanning bus
[ 1.318536] pci 0000:0a:00.0: [14e4:1682] type 00 class 0x020000
[ 1.318582] pci 0000:0a:00.0: reg 0x10: [mem 0xce100000-0xce10ffff 64bit pref]
[ 1.318611] pci 0000:0a:00.0: reg 0x18: [mem 0xce110000-0xce11ffff 64bit pref]
[ 1.318659] pci 0000:0a:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[ 1.318872] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold
[ 1.318879] pci 0000:0a:00.0: PME# disabled
[ 1.324652] pci_bus 0000:0a: fixups for bus
[ 1.324656] pci 0000:09:00.0: PCI bridge to [bus 0a]
[ 1.324679] pci 0000:09:00.0: bridge window [mem 0xc2000000-0xc20fffff]
[ 1.324689] pci 0000:09:00.0: bridge window [mem 0xce100000-0xce1fffff 64bit pref]
[ 1.324690] pci_bus 0000:0a: bus scan returning with max=0a
[ 1.324695] pci 0000:09:00.0: scanning [bus 0a-0a] behind bridge, pass 1
[ 1.324702] pci_bus 0000:09: bus scan returning with max=0a
[ 1.324707] pci 0000:08:00.0: scanning [bus 09-0a] behind bridge, pass 1
[ 1.324714] pci_bus 0000:08: bus scan returning with max=0a
[ 1.324717] pci 0000:06:04.0: scanning [bus 39-69] behind bridge, pass 0
[ 1.324807] pci_bus 0000:39: scanning bus
[ 1.324809] pci_bus 0000:39: fixups for bus
[ 1.324810] pci 0000:06:04.0: PCI bridge to [bus 39-69]
[ 1.324815] pci 0000:06:04.0: bridge window [io 0x5000-0x5fff]
[ 1.324817] pci 0000:06:04.0: bridge window [mem 0xc6100000-0xca0fffff]
[ 1.324822] pci 0000:06:04.0: bridge window [mem 0xd2200000-0xd61fffff 64bit pref]
[ 1.324823] pci_bus 0000:39: bus scan returning with max=39
[ 1.324826] pci 0000:06:05.0: scanning [bus 6a-6a] behind bridge, pass 0
[ 1.324864] pci_bus 0000:6a: scanning bus
[ 1.324865] pci_bus 0000:6a: fixups for bus
[ 1.324867] pci 0000:06:05.0: PCI bridge to [bus 6a]
[ 1.324872] pci 0000:06:05.0: bridge window [mem 0xc1e00000-0xc1efffff]
[ 1.324876] pci_bus 0000:6a: bus scan returning with max=6a
[ 1.324879] pci 0000:06:06.0: scanning [bus 6b-6b] behind bridge, pass 0
[ 1.324919] pci_bus 0000:6b: scanning bus
[ 1.324921] pci_bus 0000:6b: fixups for bus
[ 1.324922] pci 0000:06:06.0: PCI bridge to [bus 6b]
[ 1.324927] pci 0000:06:06.0: bridge window [mem 0xc1d00000-0xc1dfffff]
[ 1.324931] pci_bus 0000:6b: bus scan returning with max=6b
[ 1.324934] pci 0000:06:00.0: scanning [bus 07-07] behind bridge, pass 1
[ 1.324938] pci 0000:06:03.0: scanning [bus 08-38] behind bridge, pass 1
[ 1.324943] pci 0000:06:04.0: scanning [bus 39-69] behind bridge, pass 1
[ 1.324947] pci 0000:06:05.0: scanning [bus 6a-6a] behind bridge, pass 1
[ 1.324951] pci 0000:06:06.0: scanning [bus 6b-6b] behind bridge, pass 1
[ 1.324954] pci_bus 0000:06: bus scan returning with max=6b
[ 1.324957] pci 0000:05:00.0: scanning [bus 06-6b] behind bridge, pass 1
[ 1.324960] pci_bus 0000:05: bus scan returning with max=6b
[ 1.324963] pci 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 0
[ 1.325014] pci_bus 0000:02: scanning bus
[ 1.325016] pci_bus 0000:02: fixups for bus
[ 1.325017] pci 0000:00:01.2: PCI bridge to [bus 02]
[ 1.325023] pci 0000:00:01.2: bridge window [mem 0xc1b00000-0xc1bfffff]
[ 1.325028] pci_bus 0000:02: bus scan returning with max=02
[ 1.325036] pci 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 0
[ 1.325159] pci_bus 0000:03: scanning bus
[ 1.325197] pci 0000:03:00.0: [14e4:16a3] type 00 class 0x020000
[ 1.325236] pci 0000:03:00.0: reg 0x10: [mem 0xc1800000-0xc180ffff 64bit pref]
[ 1.325260] pci 0000:03:00.0: reg 0x18: [mem 0xc1810000-0xc181ffff 64bit pref]
[ 1.325301] pci 0000:03:00.0: reg 0x30: [mem 0xfffff800-0xffffffff pref]
[ 1.325449] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 1.325456] pci 0000:03:00.0: PME# disabled
[ 1.325590] pci 0000:03:00.1: [14e4:16bc] type 00 class 0x080501
[ 1.325628] pci 0000:03:00.1: reg 0x10: [mem 0xc1820000-0xc182ffff 64bit pref]
[ 1.325824] pci 0000:03:00.1: PME# supported from D0 D3hot D3cold
[ 1.325829] pci 0000:03:00.1: PME# disabled
[ 1.325863] pci 0000:03:00.1: System wakeup disabled by ACPI
[ 1.331411] pci_bus 0000:03: fixups for bus
[ 1.331412] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 1.331418] pci 0000:00:1c.0: bridge window [mem 0xc1a00000-0xc1afffff]
[ 1.331427] pci 0000:00:1c.0: bridge window [mem 0xc1800000-0xc18fffff 64bit pref]
[ 1.331428] pci_bus 0000:03: bus scan returning with max=03
[ 1.331433] pci 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 0
[ 1.331539] pci_bus 0000:04: scanning bus
[ 1.331570] pci 0000:04:00.0: [14e4:4331] type 00 class 0x028000
[ 1.331600] pci 0000:04:00.0: reg 0x10: [mem 0xc1900000-0xc1903fff 64bit]
[ 1.331760] pci 0000:04:00.0: supports D1 D2
[ 1.331761] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[ 1.331766] pci 0000:04:00.0: PME# disabled
[ 1.331802] pci 0000:04:00.0: System wakeup disabled by ACPI
[ 1.338035] pci_bus 0000:04: fixups for bus
[ 1.338037] pci 0000:00:1c.1: PCI bridge to [bus 04]
[ 1.338044] pci 0000:00:1c.1: bridge window [mem 0xc1900000-0xc19fffff]
[ 1.338052] pci_bus 0000:04: bus scan returning with max=04
[ 1.338056] pci 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 1
[ 1.338059] pci 0000:00:01.1: scanning [bus 05-6b] behind bridge, pass 1
[ 1.338062] pci 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 1
[ 1.338068] pci 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 1
[ 1.338076] pci 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 1
[ 1.338083] pci_bus 0000:00: bus scan returning with max=6b
[ 1.338485] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 1.338532] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 1.338576] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 1.338620] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 1.338663] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 1.338703] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 1.338747] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 1.338790] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 1.339984] ACPI: Enabled 3 GPEs in block 00 to 3F
[ 1.340060] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 1.340118] vgaarb: PCI:0000:00:02.0 PCI_COMMAND=3D0007
[ 1.340119] vgaarb: Boot video device: PCI:0000:00:02.0
[ 1.340120] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 1.340130] vgaarb: PCI:0000:01:00.0 PCI_COMMAND=3D0006
[ 1.340132] vgaarb: PCI:0000:01:00.0, bridge PCI:0000:00:01.0 PCI_BRIDGE_CONTROL=3D0000
[ 1.340133] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[ 1.340135] vgaarb: loaded
[ 1.340136] vgaarb: bridge control possible 0000:01:00.0
[ 1.340136] vgaarb: no bridge control possible 0000:00:02.0
[ 1.340192] PCI: Using ACPI for IRQ routing
[ 1.345209] PCI: pci_cache_line_size set to 64 bytes
[ 1.345226] pci 0000:01:00.0: BAR 0: reserving [mem 0xc0000000-0xc0ffffff flags 0x40200] (d=0, p=0)
[ 1.345228] pci 0000:01:00.0: BAR 1: reserving [mem 0x90000000-0x9fffffff flags 0x14220c] (d=0, p=0)
[ 1.345229] pci 0000:01:00.0: BAR 3: reserving [mem 0xa0000000-0xa1ffffff flags 0x14220c] (d=0, p=0)
[ 1.345235] pci 0000:07:00.0: BAR 0: reserving [mem 0xc1f00000-0xc1f3ffff flags 0x40200] (d=0, p=0)
[ 1.345237] pci 0000:07:00.0: BAR 1: reserving [mem 0xc1f40000-0xc1f40fff flags 0x40200] (d=0, p=0)
[ 1.345255] pci 0000:00:02.0: BAR 0: reserving [mem 0xc1400000-0xc17fffff flags 0x140204] (d=0, p=0)
[ 1.345257] pci 0000:00:02.0: BAR 2: reserving [mem 0xb0000000-0xbfffffff flags 0x14220c] (d=0, p=0)
[ 1.345259] pci 0000:00:02.0: BAR 4: reserving [io 0x3000-0x303f flags 0x40101] (d=0, p=0)
[ 1.345265] pci 0000:00:16.0: BAR 0: reserving [mem 0xc1c17100-0xc1c1710f flags 0x140204] (d=0, p=0)
[ 1.345269] pci 0000:00:1a.0: BAR 0: reserving [mem 0xc1c16c00-0xc1c16fff flags 0x40200] (d=0, p=0)
[ 1.345341] pci 0000:00:1d.0: BAR 0: reserving [mem 0xc1c16800-0xc1c16bff flags 0x40200] (d=0, p=0)
[ 1.345346] pci 0000:00:1f.2: BAR 0: reserving [io 0x3098-0x309f flags 0x40101] (d=0, p=0)
[ 1.345347] pci 0000:00:1f.2: BAR 1: reserving [io 0x30bc-0x30bf flags 0x40101] (d=0, p=0)
[ 1.345349] pci 0000:00:1f.2: BAR 2: reserving [io 0x3090-0x3097 flags 0x40101] (d=0, p=0)
[ 1.345350] pci 0000:00:1f.2: BAR 3: reserving [io 0x30b8-0x30bb flags 0x40101] (d=0, p=0)
[ 1.345352] pci 0000:00:1f.2: BAR 4: reserving [io 0x3060-0x307f flags 0x40101] (d=0, p=0)
[ 1.345353] pci 0000:00:1f.2: BAR 5: reserving [mem 0xc1c16000-0xc1c167ff flags 0x40200] (d=0, p=0)
[ 1.345369] pci 0000:01:00.0: BAR 5: reserving [io 0x2000-0x207f flags 0x40101] (d=1, p=1)
[ 1.345372] pci 0000:01:00.1: BAR 0: reserving [mem 0xc1080000-0xc1083fff flags 0x40200] (d=1, p=1)
[ 1.346616] pci 0000:0a:00.0: BAR 0: reserving [mem 0xce100000-0xce10ffff flags 0x14220c] (d=1, p=1)
[ 1.346617] pci 0000:0a:00.0: BAR 2: reserving [mem 0xce110000-0xce11ffff flags 0x14220c] (d=1, p=1)
[ 1.346628] pci 0000:00:14.0: BAR 0: reserving [mem 0xc1c00000-0xc1c0ffff flags 0x140204] (d=1, p=1)
[ 1.346633] pci 0000:00:1b.0: BAR 0: reserving [mem 0xc1c10000-0xc1c13fff flags 0x140204] (d=1, p=1)
[ 1.346678] pci 0000:03:00.0: BAR 0: reserving [mem 0xc1800000-0xc180ffff flags 0x14220c] (d=1, p=1)
[ 1.346679] pci 0000:03:00.0: BAR 2: reserving [mem 0xc1810000-0xc181ffff flags 0x14220c] (d=1, p=1)
[ 1.346683] pci 0000:03:00.1: BAR 0: reserving [mem 0xc1820000-0xc182ffff flags 0x14220c] (d=1, p=1)
[ 1.346708] pci 0000:04:00.0: BAR 0: reserving [mem 0xc1900000-0xc1903fff flags 0x140204] (d=1, p=1)
[ 1.346714] pci 0000:00:1f.3: BAR 0: reserving [mem 0xc1c17000-0xc1c170ff flags 0x140204] (d=1, p=1)
[ 1.346716] pci 0000:00:1f.3: BAR 4: reserving [io 0xefa0-0xefbf flags 0x40101] (d=1, p=1)
[ 1.346719] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[ 1.346720] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[ 1.346721] e820: reserve RAM buffer [mem 0x8ad14000-0x8bffffff]
[ 1.346723] e820: reserve RAM buffer [mem 0x8ad69000-0x8bffffff]
[ 1.346725] e820: reserve RAM buffer [mem 0x8ae3a000-0x8bffffff]
[ 1.346726] e820: reserve RAM buffer [mem 0x8aece000-0x8bffffff]
[ 1.346727] e820: reserve RAM buffer [mem 0x8af92000-0x8bffffff]
[ 1.346728] e820: reserve RAM buffer [mem 0x8b000000-0x8bffffff]
[ 1.346730] e820: reserve RAM buffer [mem 0x46f600000-0x46fffffff]
[ 1.346842] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 1.346846] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 1.348877] Switched to clocksource hpet
[ 1.352389] pnp: PnP ACPI init
[ 1.352571] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
[ 1.352574] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[ 1.352609] system 00:01: [io 0x1000-0x100f] has been reserved
[ 1.352612] system 00:01: [io 0x0400-0x047f] could not be reserved
[ 1.352613] system 00:01: [io 0x0500-0x057f] has been reserved
[ 1.352615] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 1.352633] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 1.352679] pnp 00:03: Plug and Play ACPI device, IDs APP000b (active)
[ 1.352791] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 1.352792] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[ 1.352794] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[ 1.352795] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[ 1.352797] system 00:04: [mem 0xe0000000-0xefffffff] could not be reserved
[ 1.352799] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 1.352800] system 00:04: [mem 0xfed90000-0xfed93fff] has been reserved
[ 1.352801] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 1.352803] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
[ 1.352804] system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
[ 1.352806] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 1.355137] system 00:05: [mem 0x20000000-0x201fffff] has been reserved
[ 1.355139] system 00:05: [mem 0x40000000-0x401fffff] could not be reserved
[ 1.355140] system 00:05: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 1.355147] pnp: PnP ACPI: found 6 devices
[ 1.361573] pci 0000:0a:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[ 1.361576] pci 0000:03:00.0: can't claim BAR 6 [mem 0xfffff800-0xffffffff pref]: no compatible bridge window
[ 1.361601] pci 0000:09:00.0: bridge window [io 0x1000-0x0fff] to [bus 0a] add_size 1000
[ 1.361615] pci 0000:09:00.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.361616] pci 0000:08:00.0: bridge window [io 0x1000-0x0fff] to [bus 09-0a] add_size 1000
[ 1.361631] pci 0000:06:05.0: bridge window [io 0x1000-0x0fff] to [bus 6a] add_size 1000
[ 1.361633] pci 0000:06:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 6a] add_size 200000
[ 1.361639] pci 0000:06:06.0: bridge window [io 0x1000-0x0fff] to [bus 6b] add_size 1000
[ 1.361641] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 6b] add_size 200000
[ 1.361681] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 1.361683] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 1.361686] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xc10fffff]
[ 1.361688] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[ 1.361692] pci 0000:06:05.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 1.361694] pci 0000:06:06.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 1.361695] pci 0000:06:05.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.361696] pci 0000:06:06.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.361700] pci 0000:06:05.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
[ 1.361702] pci 0000:06:05.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[ 1.361704] pci 0000:06:06.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
[ 1.361706] pci 0000:06:06.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[ 1.361707] pci 0000:06:05.0: BAR 13: no space for [io size 0x1000]
[ 1.361709] pci 0000:06:05.0: BAR 13: failed to assign [io size 0x1000]
[ 1.361710] pci 0000:06:06.0: BAR 13: no space for [io size 0x1000]
[ 1.361711] pci 0000:06:06.0: BAR 13: failed to assign [io size 0x1000]
[ 1.361714] pci 0000:06:06.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
[ 1.361715] pci 0000:06:06.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[ 1.361717] pci 0000:06:06.0: BAR 13: no space for [io size 0x1000]
[ 1.361718] pci 0000:06:06.0: BAR 13: failed to assign [io size 0x1000]
[ 1.361720] pci 0000:06:05.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
[ 1.361722] pci 0000:06:05.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[ 1.361723] pci 0000:06:05.0: BAR 13: no space for [io size 0x1000]
[ 1.361724] pci 0000:06:05.0: BAR 13: failed to assign [io size 0x1000]
[ 1.361726] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 1.361729] pci 0000:06:00.0: bridge window [mem 0xc1f00000-0xc1ffffff]
[ 1.361735] pci 0000:08:00.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.361737] pci 0000:08:00.0: BAR 13: assigned [io 0x4000-0x4fff]
[ 1.361739] pci 0000:09:00.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 1.361740] pci 0000:09:00.0: BAR 13: assigned [io 0x4000-0x4fff]
[ 1.361743] pci 0000:0a:00.0: BAR 6: assigned [mem 0xc2000000-0xc200ffff pref]
[ 1.361744] pci 0000:09:00.0: PCI bridge to [bus 0a]
[ 1.361747] pci 0000:09:00.0: bridge window [io 0x4000-0x4fff]
[ 1.361755] pci 0000:09:00.0: bridge window [mem 0xc2000000-0xc20fffff]
[ 1.361760] pci 0000:09:00.0: bridge window [mem 0xce100000-0xce1fffff 64bit pref]
[ 1.361769] pci 0000:08:00.0: PCI bridge to [bus 09-0a]
[ 1.361772] pci 0000:08:00.0: bridge window [io 0x4000-0x4fff]
[ 1.361779] pci 0000:08:00.0: bridge window [mem 0xc2000000-0xc20fffff]
[ 1.361784] pci 0000:08:00.0: bridge window [mem 0xce100000-0xce1fffff 64bit pref]
[ 1.361793] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[ 1.361795] pci 0000:06:03.0: bridge window [io 0x4000-0x4fff]
[ 1.361798] pci 0000:06:03.0: bridge window [mem 0xc2000000-0xc60fffff]
[ 1.361801] pci 0000:06:03.0: bridge window [mem 0xce100000-0xd21fffff 64bit pref]
[ 1.361805] pci 0000:06:04.0: PCI bridge to [bus 39-69]
[ 1.361807] pci 0000:06:04.0: bridge window [io 0x5000-0x5fff]
[ 1.361811] pci 0000:06:04.0: bridge window [mem 0xc6100000-0xca0fffff]
[ 1.361813] pci 0000:06:04.0: bridge window [mem 0xd2200000-0xd61fffff 64bit pref]
[ 1.361818] pci 0000:06:05.0: PCI bridge to [bus 6a]
[ 1.361821] pci 0000:06:05.0: bridge window [mem 0xc1e00000-0xc1efffff]
[ 1.361826] pci 0000:06:06.0: PCI bridge to [bus 6b]
[ 1.361830] pci 0000:06:06.0: bridge window [mem 0xc1d00000-0xc1dfffff]
[ 1.361836] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[ 1.361837] pci 0000:05:00.0: bridge window [io 0x4000-0x5fff]
[ 1.361841] pci 0000:05:00.0: bridge window [mem 0xc1d00000-0xca0fffff]
[ 1.361843] pci 0000:05:00.0: bridge window [mem 0xce100000-0xd61fffff 64bit pref]
[ 1.361847] pci 0000:00:01.1: PCI bridge to [bus 05-6b]
[ 1.361849] pci 0000:00:01.1: bridge window [io 0x4000-0x6fff]
[ 1.361851] pci 0000:00:01.1: bridge window [mem 0xc1d00000-0xce0fffff]
[ 1.361853] pci 0000:00:01.1: bridge window [mem 0xce100000-0xda1fffff 64bit pref]
[ 1.361856] pci 0000:00:01.2: PCI bridge to [bus 02]
[ 1.361860] pci 0000:00:01.2: bridge window [mem 0xc1b00000-0xc1bfffff]
[ 1.361868] pci 0000:03:00.0: BAR 6: assigned [mem 0xc1a00000-0xc1a007ff pref]
[ 1.361869] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 1.361879] pci 0000:00:1c.0: bridge window [mem 0xc1a00000-0xc1afffff]
[ 1.361884] pci 0000:00:1c.0: bridge window [mem 0xc1800000-0xc18fffff 64bit pref]
[ 1.361892] pci 0000:00:1c.1: PCI bridge to [bus 04]
[ 1.361899] pci 0000:00:1c.1: bridge window [mem 0xc1900000-0xc19fffff]
[ 1.361911] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 1.361912] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 1.361913] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 1.361915] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
[ 1.361916] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
[ 1.361917] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
[ 1.361919] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
[ 1.361920] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
[ 1.361921] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
[ 1.361922] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
[ 1.361924] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
[ 1.361925] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
[ 1.361926] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
[ 1.361928] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
[ 1.361929] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
[ 1.361930] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff]
[ 1.361931] pci_bus 0000:00: resource 20 [mem 0x8fa00000-0xfeafffff]
[ 1.361933] pci_bus 0000:00: resource 21 [mem 0xfed40000-0xfed44fff]
[ 1.361934] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 1.361936] pci_bus 0000:01: resource 1 [mem 0xc0000000-0xc10fffff]
[ 1.361937] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa1ffffff 64bit pref]
[ 1.361939] pci_bus 0000:05: resource 0 [io 0x4000-0x6fff]
[ 1.361940] pci_bus 0000:05: resource 1 [mem 0xc1d00000-0xce0fffff]
[ 1.361941] pci_bus 0000:05: resource 2 [mem 0xce100000-0xda1fffff 64bit pref]
[ 1.361943] pci_bus 0000:06: resource 0 [io 0x4000-0x5fff]
[ 1.361944] pci_bus 0000:06: resource 1 [mem 0xc1d00000-0xca0fffff]
[ 1.361945] pci_bus 0000:06: resource 2 [mem 0xce100000-0xd61fffff 64bit pref]
[ 1.361946] pci_bus 0000:07: resource 1 [mem 0xc1f00000-0xc1ffffff]
[ 1.361948] pci_bus 0000:08: resource 0 [io 0x4000-0x4fff]
[ 1.361949] pci_bus 0000:08: resource 1 [mem 0xc2000000-0xc60fffff]
[ 1.361950] pci_bus 0000:08: resource 2 [mem 0xce100000-0xd21fffff 64bit pref]
[ 1.361952] pci_bus 0000:09: resource 0 [io 0x4000-0x4fff]
[ 1.361953] pci_bus 0000:09: resource 1 [mem 0xc2000000-0xc20fffff]
[ 1.361954] pci_bus 0000:09: resource 2 [mem 0xce100000-0xce1fffff 64bit pref]
[ 1.361956] pci_bus 0000:0a: resource 0 [io 0x4000-0x4fff]
[ 1.361957] pci_bus 0000:0a: resource 1 [mem 0xc2000000-0xc20fffff]
[ 1.361958] pci_bus 0000:0a: resource 2 [mem 0xce100000-0xce1fffff 64bit pref]
[ 1.361960] pci_bus 0000:39: resource 0 [io 0x5000-0x5fff]
[ 1.361961] pci_bus 0000:39: resource 1 [mem 0xc6100000-0xca0fffff]
[ 1.361962] pci_bus 0000:39: resource 2 [mem 0xd2200000-0xd61fffff 64bit pref]
[ 1.361964] pci_bus 0000:6a: resource 1 [mem 0xc1e00000-0xc1efffff]
[ 1.361965] pci_bus 0000:6b: resource 1 [mem 0xc1d00000-0xc1dfffff]
[ 1.361966] pci_bus 0000:02: resource 1 [mem 0xc1b00000-0xc1bfffff]
[ 1.361968] pci_bus 0000:03: resource 1 [mem 0xc1a00000-0xc1afffff]
[ 1.361969] pci_bus 0000:03: resource 2 [mem 0xc1800000-0xc18fffff 64bit pref]
[ 1.361971] pci_bus 0000:04: resource 1 [mem 0xc1900000-0xc19fffff]
[ 1.361992] NET: Registered protocol family 2
[ 1.362147] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 1.362356] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 1.362455] TCP: Hash tables configured (established 131072 bind 65536)
[ 1.362467] TCP: reno registered
[ 1.362482] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[ 1.362528] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[ 1.362595] NET: Registered protocol family 1
[ 1.362613] pci 0000:00:02.0: calling pci_fixup_video+0x0/0x160
[ 1.362619] pci 0000:00:14.0: calling quirk_usb_early_handoff+0x0/0x6e0
[ 1.362627] pci 0000:00:14.0: enabling device (0000 -> 0002)
[ 1.362679] pci 0000:00:14.0: can't derive routing for PCI INT A
[ 1.362681] pci 0000:00:14.0: PCI INT A: no GSI
[ 1.362761] pci 0000:00:14.0: can't derive routing for PCI INT A
[ 1.362771] pci 0000:00:1a.0: calling quirk_usb_early_handoff+0x0/0x6e0
[ 1.362891] pci 0000:00:1d.0: calling quirk_usb_early_handoff+0x0/0x6e0
[ 1.363006] pci 0000:01:00.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0x30
[ 1.363024] pci 0000:01:00.0: calling pci_fixup_video+0x0/0x160
[ 1.363025] pci 0000:01:00.0: Boot video device
[ 1.363029] pci 0000:01:00.1: calling nv_msi_ht_cap_quirk_leaf+0x0/0x30
[ 1.363039] PCI: CLS mismatch (256 != 128), using 64 bytes
[ 1.363081] Unpacking initramfs...
[ 1.515718] Freeing initrd memory: 9908K (ffff880036c96000 - ffff880037643000)
[ 1.515727] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.515729] software IO TLB [mem 0x81c68000-0x85c68000] (64MB) mapped at [ffff880081c68000-ffff880085c67fff]
[ 1.516065] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[ 1.516108] Scanning for low memory corruption every 60 seconds
[ 1.516366] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 1.516395] audit: initializing netlink subsys (disabled)
[ 1.516407] audit: type=2000 audit(1408635531.516:1): initialized
[ 1.516682] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 1.517740] zpool: loaded
[ 1.517742] zbud: loaded
[ 1.517900] VFS: Disk quotas dquot_6.5.2
[ 1.517927] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.518026] msgmni has been set to 31915
[ 1.518072] Key type big_key registered
[ 1.518324] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 1.518375] io scheduler noop registered
[ 1.518377] io scheduler deadline registered
[ 1.518400] io scheduler cfq registered (default)
[ 1.518525] pcieport 0000:00:01.0: irq 24 for MSI/MSI-X
[ 1.518608] pcieport 0000:00:01.1: irq 25 for MSI/MSI-X
[ 1.518641] pcieport 0000:00:01.2: enabling device (0000 -> 0002)
[ 1.518690] pcieport 0000:00:01.2: enabling bus mastering
[ 1.518703] pcieport 0000:00:01.2: irq 26 for MSI/MSI-X
[ 1.519046] pcieport 0000:05:00.0: irq 27 for MSI/MSI-X
[ 1.519139] pcieport 0000:06:00.0: irq 28 for MSI/MSI-X
[ 1.519233] pcieport 0000:06:03.0: irq 29 for MSI/MSI-X
[ 1.519335] pcieport 0000:06:04.0: irq 30 for MSI/MSI-X
[ 1.519404] pcieport 0000:06:05.0: enabling device (0000 -> 0002)
[ 1.519433] pcieport 0000:06:05.0: enabling bus mastering
[ 1.519443] pcieport 0000:06:05.0: irq 31 for MSI/MSI-X
[ 1.519512] pcieport 0000:06:06.0: enabling device (0000 -> 0002)
[ 1.519541] pcieport 0000:06:06.0: enabling bus mastering
[ 1.519551] pcieport 0000:06:06.0: irq 32 for MSI/MSI-X
[ 1.519676] pcieport 0000:08:00.0: irq 33 for MSI/MSI-X
[ 1.519857] pcieport 0000:09:00.0: irq 34 for MSI/MSI-X
[ 1.520001] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.520089] pciehp 0000:06:03.0:pcie24: Slot #3 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep+
[ 1.520117] pci_bus 0000:08: dev 00, created physical slot 3-1
[ 1.918715] pciehp 0000:06:03.0:pcie24: Timeout on hotplug command 0x00000000 (issued 0 msec ago)
[ 1.918726] pciehp 0000:06:03.0:pcie24: service driver pciehp loaded
[ 1.918754] pciehp 0000:06:04.0:pcie24: Slot #4 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep+
[ 1.918784] pci_bus 0000:39: dev 00, created physical slot 4-1
[ 2.318584] pciehp 0000:06:04.0:pcie24: Timeout on hotplug command 0x00000000 (issued 0 msec ago)
[ 2.318592] pciehp 0000:06:04.0:pcie24: service driver pciehp loaded
[ 2.318606] pciehp 0000:06:05.0:pcie24: Slot #5 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep+
[ 2.318640] pci_bus 0000:6a: dev 00, created physical slot 5-1
[ 2.518522] tsc: Refined TSC clocksource calibration: 2693.880 MHz
[ 2.718458] pciehp 0000:06:05.0:pcie24: Timeout on hotplug command 0x00000000 (issued 0 msec ago)
[ 2.718466] pciehp 0000:06:05.0:pcie24: service driver pciehp loaded
[ 2.718491] pciehp 0000:06:06.0:pcie24: Slot #6 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep+
[ 2.718514] pci_bus 0000:6b: dev 00, created physical slot 6
[ 3.118331] pciehp 0000:06:06.0:pcie24: Timeout on hotplug command 0x00000000 (issued 0 msec ago)
[ 3.118339] pciehp 0000:06:06.0:pcie24: service driver pciehp loaded
[ 3.118367] pciehp 0000:09:00.0:pcie24: Slot #9 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl- LLActRep+
[ 3.118390] pci_bus 0000:0a: dev 00, created physical slot 9
[ 3.518211] pciehp 0000:09:00.0:pcie24: Timeout on hotplug command 0x00000000 (issued 0 msec ago)
[ 3.518237] pciehp 0000:09:00.0:pcie24: service driver pciehp loaded
[ 3.518248] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 3.518269] Switched to clocksource tsc
[ 3.519004] efifb: probing for efifb
[ 3.519031] efifb: framebuffer at 0x90020000, mapped to 0xffffc9000b800000, using 28800k, total 28800k
[ 3.519032] efifb: mode is 2880x1800x32, linelength=16384, pages=1
[ 3.519033] efifb: scrolling: redraw
[ 3.519034] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 3.533796] Console: switching to colour frame buffer device 360x112
[ 3.548389] fb0: EFI VGA frame buffer device
[ 3.548397] intel_idle: MWAIT substates: 0x21120
[ 3.548398] intel_idle: v0.4 model 0x3A
[ 3.548399] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 3.548653] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[ 3.548689] ACPI: AC Adapter [ADP1] (on-line)
[ 3.548757] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[ 3.548766] ACPI: Lid Switch [LID0]
[ 3.548794] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 3.548797] ACPI: Power Button [PWRB]
[ 3.548822] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[ 3.548824] ACPI: Sleep Button [SLPB]
[ 3.548850] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 3.548851] ACPI: Power Button [PWRF]
[ 3.550624] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 3.550934] hpet: probe of PNP0103:00 failed with error -22
[ 3.550942] Linux agpgart interface v0.103
[ 3.551011] rtc_cmos 00:02: RTC can wake from S4
[ 3.551135] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[ 3.551166] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 3.551174] Intel P-state driver initializing.
[ 3.551184] Intel pstate controlling: cpu 0
[ 3.551199] Intel pstate controlling: cpu 1
[ 3.551211] Intel pstate controlling: cpu 2
[ 3.551221] Intel pstate controlling: cpu 3
[ 3.551236] Intel pstate controlling: cpu 4
[ 3.551246] Intel pstate controlling: cpu 5
[ 3.551256] Intel pstate controlling: cpu 6
[ 3.551266] Intel pstate controlling: cpu 7
[ 3.551302] EFI Variables Facility v0.08 2004-May-17
[ 3.652391] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[ 3.652394] ACPI: Battery Slot [BAT0] (battery present)
[ 3.723055] pstore: Registered efi as persistent store backend
[ 3.723065] drop_monitor: Initializing network drop monitor service
[ 3.723107] TCP: cubic registered
[ 3.723185] NET: Registered protocol family 10
[ 3.723326] NET: Registered protocol family 17
[ 3.723333] Key type dns_resolver registered
[ 3.723692] registered taskstats version 1
[ 3.724442] Magic number: 10:761:639
[ 3.724555] rtc_cmos 00:02: setting system clock to 2014-08-21 15:38:54 UTC (1408635534)
[ 3.724608] PM: Checking hibernation image partition /dev/sda5
[ 3.724611] PM: Hibernation image not present or could not be loaded.
[ 3.725097] Freeing unused kernel memory: 976K (ffffffff818d4000 - ffffffff819c8000)
[ 3.725098] Write protecting the kernel read-only data: 8192k
[ 3.727290] Freeing unused kernel memory: 1404K (ffff8800014a1000 - ffff880001600000)
[ 3.728079] Freeing unused kernel memory: 512K (ffff880001780000 - ffff880001800000)
[ 3.732252] random: systemd-tmpfile urandom read with 11 bits of entropy available
[ 3.733028] systemd-udevd[87]: starting version 215
[ 3.734565] [drm] Initialized drm 1.1.0 20060810
[ 3.738725] [drm] Memory usable by graphics device = 2048M
[ 3.738730] [drm] Replacing VGA console driver
[ 3.738736] checking generic (90020000 1c20000) vs hw (b0000000 10000000)
[ 3.798257] i915 0000:00:02.0: irq 35 for MSI/MSI-X
[ 3.798276] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 3.798278] [drm] Driver supports precise vblank timestamp query.
[ 3.798286] i915 0000:00:02.0: BAR 6: can't assign [??? 0x00000000 flags 0x20000000] (bogus alignment)
[ 3.798287] [drm] failed to find VBIOS tables
[ 3.798430] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[ 3.821429] [drm] failed to retrieve link info, disabling eDP
[ 3.894741] [drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[ 3.908090] i915 0000:00:02.0: No connectors reported connected with modes
[ 3.908093] [drm] Cannot find any crtc or sizes - going 1024x768
[ 3.908475] checking generic (90020000 1c20000) vs hw (b0000000 10000000)
[ 3.908531] i915 0000:00:02.0: fb1: inteldrmfb frame buffer device
[ 3.908533] i915 0000:00:02.0: registered panic notifier
[ 3.941571] [Firmware Bug]: ACPI(GFX0) defines _DOD but not _DOS
[ 3.941588] ACPI: Video Device [GFX0] (multi-head: yes rom: yes post: no)
[ 3.942770] acpi device:02: registered as cooling_device8
[ 3.942836] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input4
[ 3.968558] ACPI: Video Device [IGPU] (multi-head: yes rom: no post: no)
[ 3.968760] acpi device:20: registered as cooling_device9
[ 3.968816] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input5
[ 3.968837] [drm] Initialized i915 1.6.0 20140725 for 0000:00:02.0 on minor 0
[ 3.969684] wmi: Mapper loaded
[ 3.974672] ACPI Warning: \_SB_.PCI0.IGPU._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 3.974685] ACPI: \_SB_.PCI0.IGPU: failed to evaluate _DSM
[ 3.974699] ACPI Warning: \_SB_.PCI0.P0P2.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 3.974717] ACPI: \_SB_.PCI0.P0P2.GFX0: failed to evaluate _DSM
[ 3.974732] checking generic (90020000 1c20000) vs hw (90000000 10000000)
[ 3.974733] fb: switching to nouveaufb from EFI VGA
[ 3.974750] Console: switching to colour dummy device 80x25
[ 3.974881] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[ 3.975073] nouveau [ DEVICE][0000:01:00.0] BOOT0 : 0x0e7150a2
[ 3.975075] nouveau [ DEVICE][0000:01:00.0] Chipset: GK107 (NVE7)
[ 3.975076] nouveau [ DEVICE][0000:01:00.0] Family : NVE0
[ 3.975097] nouveau [ VBIOS][0000:01:00.0] checking PRAMIN for image...
[ 4.061794] nouveau [ VBIOS][0000:01:00.0] ... appears to be valid
[ 4.061795] nouveau [ VBIOS][0000:01:00.0] using image from PRAMIN
[ 4.061889] nouveau [ VBIOS][0000:01:00.0] BIT signature found
[ 4.061891] nouveau [ VBIOS][0000:01:00.0] version 80.07.26.04.01
[ 4.062569] nouveau 0000:01:00.0: irq 36 for MSI/MSI-X
[ 4.062576] nouveau [ PMC][0000:01:00.0] MSI interrupts enabled
[ 4.062618] nouveau [ PFB][0000:01:00.0] RAM type: GDDR5
[ 4.062620] nouveau [ PFB][0000:01:00.0] RAM size: 1024 MiB
[ 4.062621] nouveau [ PFB][0000:01:00.0] ZCOMP: 0 tags
[ 4.097393] nouveau [ PTHERM][0000:01:00.0] FAN control: none / external
[ 4.097409] nouveau [ PTHERM][0000:01:00.0] fan management: automatic
[ 4.097419] nouveau [ PTHERM][0000:01:00.0] internal sensor: yes
[ 4.097454] nouveau [ CLK][0000:01:00.0] 07: core 270-405 MHz memory 838 MHz
[ 4.097532] nouveau [ CLK][0000:01:00.0] 0a: core 270-900 MHz memory 1560 MHz
[ 4.097589] nouveau [ CLK][0000:01:00.0] 0e: core 270-900 MHz memory 4000 MHz
[ 4.097625] nouveau [ CLK][0000:01:00.0] 0f: core 270-900 MHz memory 5016 MHz
[ 4.097768] nouveau [ CLK][0000:01:00.0] --: core 405 MHz memory 680 MHz
[ 4.121605] [TTM] Zone kernel: Available graphics memory: 8171710 kiB
[ 4.121606] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
[ 4.121607] [TTM] Initializing pool allocator
[ 4.121610] [TTM] Initializing DMA pool allocator
[ 4.121616] nouveau [ DRM] VRAM: 1024 MiB
[ 4.121617] nouveau [ DRM] GART: 1048576 MiB
[ 4.121618] nouveau [ DRM] TMDS table version 2.0
[ 4.121619] nouveau [ DRM] DCB version 4.0
[ 4.121621] nouveau [ DRM] DCB outp 00: 048101b6 0f230010
[ 4.121622] nouveau [ DRM] DCB outp 01: 018212d6 0f220020
[ 4.121622] nouveau [ DRM] DCB outp 02: 01021212 00020020
[ 4.121623] nouveau [ DRM] DCB outp 03: 088324c6 0f220010
[ 4.121624] nouveau [ DRM] DCB outp 04: 08032402 00020010
[ 4.121625] nouveau [ DRM] DCB outp 05: 02843862 00020010
[ 4.121626] nouveau [ DRM] DCB conn 00: 00020047
[ 4.121627] nouveau [ DRM] DCB conn 01: 02208146
[ 4.121628] nouveau [ DRM] DCB conn 02: 01104246
[ 4.121629] nouveau [ DRM] DCB conn 03: 00410361
[ 4.129913] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 4.129914] [drm] Driver supports precise vblank timestamp query.
[ 4.134671] nouveau [ DRM] MM: using COPY for buffer copies
[ 4.322867] nouveau [ DRM] allocated 2880x1800 fb: 0x80000, bo ffff880037135000
[ 4.322939] fbcon: nouveaufb (fb0) is primary device
[ 4.974143] Console: switching to colour frame buffer device 240x75
[ 4.976890] nouveau 0000:01:00.0: fb0: nouveaufb frame buffer device
[ 4.976892] [drm] Initialized nouveau 1.2.0 20120801 for 0000:01:00.0 on minor 1
[ 5.017387] sdhci: Secure Digital Host Controller Interface driver
[ 5.017389] sdhci: Copyright(c) Pierre Ossman
[ 5.018000] sdhci-pci 0000:03:00.1: SDHCI controller found [14e4:16bc] (rev 10)
[ 5.018057] sdhci-pci 0000:03:00.1: enabling device (0000 -> 0002)
[ 5.018063] ACPI: bus type USB registered
[ 5.018089] usbcore: registered new interface driver usbfs
[ 5.018099] usbcore: registered new interface driver hub
[ 5.018114] SCSI subsystem initialized
[ 5.018145] usbcore: registered new device driver usb
[ 5.018217] sdhci-pci 0000:03:00.1: enabling bus mastering
[ 5.018225] sdhci-pci 0000:03:00.1: No vmmc regulator found
[ 5.018227] sdhci-pci 0000:03:00.1: No vqmmc regulator found
[ 5.018337] mmc0: SDHCI controller on PCI [0000:03:00.1] using ADMA
[ 5.018579] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 5.018722] ehci-pci: EHCI PCI platform driver
[ 5.018836] ehci-pci 0000:00:1a.0: enabling bus mastering
[ 5.018850] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 5.018856] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 5.018872] ehci-pci 0000:00:1a.0: debug port 2
[ 5.019677] libata version 3.00 loaded.
[ 5.022773] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 5.022787] ehci-pci 0000:00:1a.0: irq 23, io mem 0xc1c16c00
[ 5.031063] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 5.031192] hub 1-0:1.0: USB hub found
[ 5.031197] hub 1-0:1.0: 2 ports detected
[ 5.031344] ehci-pci 0000:00:1d.0: enabling bus mastering
[ 5.031352] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 5.031355] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 5.031368] ehci-pci 0000:00:1d.0: debug port 2
[ 5.035252] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 5.035261] ehci-pci 0000:00:1d.0: irq 22, io mem 0xc1c16800
[ 5.044416] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 5.044542] hub 2-0:1.0: USB hub found
[ 5.044546] hub 2-0:1.0: 2 ports detected
[ 5.044689] xhci_hcd 0000:00:14.0: can't derive routing for PCI INT A
[ 5.044691] xhci_hcd 0000:00:14.0: PCI INT A: no GSI
[ 5.044708] xhci_hcd 0000:00:14.0: enabling bus mastering
[ 5.044713] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 5.044720] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 5.044813] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 5.044833] xhci_hcd 0000:00:14.0: irq 37 for MSI/MSI-X
[ 5.044977] hub 3-0:1.0: USB hub found
[ 5.044988] hub 3-0:1.0: 4 ports detected
[ 5.045111] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 5.045113] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 5.045231] hub 4-0:1.0: USB hub found
[ 5.045241] hub 4-0:1.0: 4 ports detected
[ 5.045340] ahci 0000:00:1f.2: version 3.0
[ 5.045417] ahci 0000:00:1f.2: irq 38 for MSI/MSI-X
[ 5.045453] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode
[ 5.045455] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
[ 5.045958] scsi host0: ahci
[ 5.046119] scsi host1: ahci
[ 5.046253] scsi host2: ahci
[ 5.046346] scsi host3: ahci
[ 5.046425] scsi host4: ahci
[ 5.046500] scsi host5: ahci
[ 5.046531] ata1: SATA max UDMA/133 abar m2048@0xc1c16000 port 0xc1c16100 irq 38
[ 5.046532] ata2: DUMMY
[ 5.046533] ata3: DUMMY
[ 5.046533] ata4: DUMMY
[ 5.046534] ata5: DUMMY
[ 5.046534] ata6: DUMMY
[ 5.337771] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 5.364369] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 5.364804] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 5.364926] ata1.00: ATA-8: APPLE SSD SD512E, 1027AP, max UDMA/133
[ 5.364931] ata1.00: 977105060 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[ 5.365427] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 5.365550] ata1.00: configured for UDMA/133
[ 5.365846] scsi 0:0:0:0: Direct-Access ATA APPLE SSD SD512E AP PQ: 0 ANSI: 5
[ 5.368558] sd 0:0:0:0: [sda] 977105060 512-byte logical blocks: (500 GB/465 GiB)
[ 5.368563] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 5.368632] sd 0:0:0:0: [sda] Write Protect is off
[ 5.368634] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 5.368644] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.371972] sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[ 5.372828] sd 0:0:0:0: [sda] Attached SCSI disk
[ 5.402467] PM: Starting manual resume from disk
[ 5.402471] PM: Hibernation image partition 8:5 present
[ 5.402472] PM: Looking for hibernation image.
[ 5.402697] PM: Image not found (code -22)
[ 5.402699] PM: Hibernation image not present or could not be loaded.
[ 5.444152] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[ 5.462080] hub 1-1:1.0: USB hub found
[ 5.462264] hub 1-1:1.0: 6 ports detected
[ 5.567654] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 5.691730] hub 2-1:1.0: USB hub found
[ 5.691913] hub 2-1:1.0: 8 ports detected
[ 5.771070] usb 1-1.1: new high-speed USB device number 3 using ehci-pci
[ 6.017775] usb 2-1.8: new high-speed USB device number 3 using ehci-pci
[ 6.101862] hub 2-1.8:1.0: USB hub found
[ 6.102075] hub 2-1.8:1.0: 2 ports detected
[ 6.275095] systemd[1]: Cannot add dependency job for unit hddtemp.service, ignoring: Unit hddtemp.service failed to load: No such file or directory.
[ 6.305694] EXT4-fs (sda7): re-mounted. Opts: data=ordered,discard
[ 6.339468] systemd-udevd[198]: starting version 215
[ 6.380783] usb 2-1.8.1: new full-speed USB device number 4 using ehci-pci
[ 6.480257] hub 2-1.8.1:1.0: USB hub found
[ 6.480505] hub 2-1.8.1:1.0: 3 ports detected
[ 6.560721] usb 2-1.8.2: new full-speed USB device number 5 using ehci-pci
[ 6.561969] apple_gmux: Found gmux version 3.2.19 [indexed]
[ 6.581665] thunderbolt 0000:07:00.0: irq 39 for MSI/MSI-X
[ 6.581711] thunderbolt 0000:07:00.0: NHI initialized, starting thunderbolt
[ 6.581720] thunderbolt 0000:07:00.0: allocating TX ring 0 of size 10
[ 6.581724] thunderbolt 0000:07:00.0: allocating RX ring 0 of size 10
[ 6.581728] thunderbolt 0000:07:00.0: control channel created
[ 6.581729] thunderbolt 0000:07:00.0: control channel starting...
[ 6.581730] thunderbolt 0000:07:00.0: starting TX ring 0
[ 6.581735] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 6.581736] thunderbolt 0000:07:00.0: starting RX ring 0
[ 6.581740] thunderbolt 0000:07:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 6.581860] thunderbolt 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 5)
[ 6.581862] thunderbolt 0000:07:00.0: old switch config:
[ 6.581864] thunderbolt 0000:07:00.0: Switch: 8086:1547 (Revision: 3, TB Version: 1)
[ 6.581867] thunderbolt 0000:07:00.0: Max Port Number: 12
[ 6.581868] thunderbolt 0000:07:00.0: Config:
[ 6.581871] thunderbolt 0000:07:00.0: Upstream Port Number: 5 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 255ms
[ 6.581873] thunderbolt 0000:07:00.0: unknown1: 0x0 unknown4: 0x0
[ 6.585660] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140724/utaddress-258)
[ 6.585668] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 6.585672] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140724/utaddress-258)
[ 6.585676] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 6.585678] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140724/utaddress-258)
[ 6.585682] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 6.585684] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140724/utaddress-258)
[ 6.585687] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 6.585689] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 6.589318] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
[ 6.591373] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 6.593164] i801_smbus 0000:00:1f.3: enabling device (0000 -> 0003)
[ 6.593258] ACPI Warning: SystemIO range 0x000000000000efa0-0x000000000000efbf conflicts with OpRegion 0x000000000000efa0-0x000000000000efaf (\_SB_.PCI0.SBUS.SMBI) (20140724/utaddress-258)
[ 6.593263] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 6.597315] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[ 6.599909] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[ 6.599924] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[ 6.599938] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[ 6.599953] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[ 6.599975] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[ 6.599989] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[ 6.600000] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[ 6.600077] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 6.604468] iTCO_vendor_support: vendor-support=0
[ 6.605686] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 6.605735] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[ 6.614557] thunderbolt 0000:07:00.0: 0: uid: 0x1000000000000
[ 6.614660] thunderbolt 0000:07:00.0: Port 0: 8086:1547 (Revision: 3, TB Version: 1, Type: Port (0x1))
[ 6.614662] thunderbolt 0000:07:00.0: Max hop id (in/out): 7/7
[ 6.614663] thunderbolt 0000:07:00.0: Max counters: 8
[ 6.614664] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 6.615157] thunderbolt 0000:07:00.0: Port 1: 8086:1547 (Revision: 3, TB Version: 1, Type: Port (0x1))
[ 6.615159] thunderbolt 0000:07:00.0: Max hop id (in/out): 15/15
[ 6.615160] thunderbolt 0000:07:00.0: Max counters: 16
[ 6.615162] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 6.615652] thunderbolt 0000:07:00.0: Port 2: 8086:1547 (Revision: 3, TB Version: 1, Type: Port (0x1))
[ 6.615653] thunderbolt 0000:07:00.0: Max hop id (in/out): 15/15
[ 6.615654] thunderbolt 0000:07:00.0: Max counters: 16
[ 6.615656] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 6.616152] thunderbolt 0000:07:00.0: Port 3: 8086:1547 (Revision: 3, TB Version: 1, Type: Port (0x1))
[ 6.616153] thunderbolt 0000:07:00.0: Max hop id (in/out): 15/15
[ 6.616154] thunderbolt 0000:07:00.0: Max counters: 16
[ 6.616155] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 6.616665] thunderbolt 0000:07:00.0: Port 4: 8086:1547 (Revision: 3, TB Version: 1, Type: Port (0x1))
[ 6.616668] thunderbolt 0000:07:00.0: Max hop id (in/out): 15/15
[ 6.616670] thunderbolt 0000:07:00.0: Max counters: 16
[ 6.616672] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 6.616753] thunderbolt 0000:07:00.0: Port 5: 8086:1547 (Revision: 3, TB Version: 1, Type: NHI (0x2))
[ 6.616755] thunderbolt 0000:07:00.0: Max hop id (in/out): 11/11
[ 6.616757] thunderbolt 0000:07:00.0: Max counters: 16
[ 6.616759] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 6.616853] thunderbolt 0000:07:00.0: Port 6: 8086:1547 (Revision: 3, TB Version: 1, Type: PCIe (0x100101))
[ 6.616855] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 6.616856] thunderbolt 0000:07:00.0: Max counters: 2
[ 6.616857] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 6.616957] thunderbolt 0000:07:00.0: Port 7: 8086:1547 (Revision: 3, TB Version: 1, Type: PCIe (0x100101))
[ 6.616958] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 6.616959] thunderbolt 0000:07:00.0: Max counters: 2
[ 6.616960] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 6.617053] thunderbolt 0000:07:00.0: Port 8: 8086:1547 (Revision: 3, TB Version: 1, Type: PCIe (0x100101))
[ 6.617055] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 6.617056] thunderbolt 0000:07:00.0: Max counters: 2
[ 6.617057] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 6.617178] thunderbolt 0000:07:00.0: Port 9: 8086:1547 (Revision: 3, TB Version: 1, Type: PCIe (0x100101))
[ 6.617180] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 6.617181] thunderbolt 0000:07:00.0: Max counters: 2
[ 6.617182] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 6.617259] thunderbolt 0000:07:00.0: Port 10: ffff:ffff (Revision: 3, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 6.617261] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 6.617263] thunderbolt 0000:07:00.0: Max counters: 2
[ 6.617264] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 6.617352] thunderbolt 0000:07:00.0: Port 11: 8086:1547 (Revision: 3, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 6.617354] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 6.617356] thunderbolt 0000:07:00.0: Max counters: 2
[ 6.617357] thunderbolt 0000:07:00.0: NFC Credits: 0xf00000
[ 6.617461] thunderbolt 0000:07:00.0: Port 12: 8086:1547 (Revision: 3, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 6.617464] thunderbolt 0000:07:00.0: Max hop id (in/out): 9/9
[ 6.617465] thunderbolt 0000:07:00.0: Max counters: 2
[ 6.617467] thunderbolt 0000:07:00.0: NFC Credits: 0xf00000
[ 6.617852] thunderbolt 0000:07:00.0: 0:1: is unplugged (state: 7)
[ 6.617949] thunderbolt 0000:07:00.0: 0:3: is connected, link is up (state: 2)
[ 6.618150] thunderbolt 0000:07:00.0: initializing Switch at 0x3 (depth: 1, up port: 1)
[ 6.618152] thunderbolt 0000:07:00.0: old switch config:
[ 6.618153] thunderbolt 0000:07:00.0: Switch: 8086:1549 (Revision: 0, TB Version: 1)
[ 6.618154] thunderbolt 0000:07:00.0: Max Port Number: 2
[ 6.618155] thunderbolt 0000:07:00.0: Config:
[ 6.618157] thunderbolt 0000:07:00.0: Upstream Port Number: 1 Depth: 1 Route String: 0x3 Enabled: 1, PlugEventsDelay: 255ms
[ 6.618158] thunderbolt 0000:07:00.0: unknown1: 0x0 unknown4: 0x0
[ 6.618638] Adding 8388604k swap on /dev/sda6. Priority:-1 extents:1 across:8388604k SSFS
[ 6.623103] AVX version of gcm_enc/dec engaged.
[ 6.623105] AES CTR mode by8 optimization enabled
[ 6.631955] thunderbolt 0000:07:00.0: 3: reading drom (length: 0x7b)
[ 6.640544] random: nonblocking pool is initialized
[ 6.650656] vga_switcheroo: enabled
[ 6.656070] applesmc: key=493 fan=2 temp=44 index=43 acc=0 lux=2 kbd=1
[ 6.672850] input: bcm5974 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.8/2-1.8.2/2-1.8.2:1.2/input/input7
[ 6.672927] usbcore: registered new interface driver bcm5974
[ 6.675765] hidraw: raw HID events driver (C) Jiri Kosina
[ 6.682700] usbcore: registered new interface driver usbhid
[ 6.682702] usbhid: USB HID core driver
[ 6.686821] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.8/2-1.8.2/2-1.8.2:1.0/0003:05AC:0262.0001/input/input8
[ 6.686880] apple 0003:05AC:0262.0001: input,hidraw0: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-1.8.2/input0
[ 6.686921] mousedev: PS/2 mouse device common for all mice
[ 6.690447] systemd-journald[178]: Received request to flush runtime journal from PID 1
[ 6.747461] usb 2-1.8.1.1: new full-speed USB device number 6 using ehci-pci
[ 6.793107] apple 0003:05AC:0262.0002: hidraw1: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.0-1.8.2/input1
[ 6.820038] thunderbolt 0000:07:00.0: resetting error on 0:c.
[ 6.820142] thunderbolt 0000:07:00.0: resetting error on 0:3.
[ 6.900599] usb 2-1.8.1.2: new full-speed USB device number 7 using ehci-pci
[ 6.963382] thunderbolt 0000:07:00.0: 3: uid: 0x1000200641bb0
[ 6.963480] thunderbolt 0000:07:00.0: Port 0: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 6.963482] thunderbolt 0000:07:00.0: Max hop id (in/out): 7/7
[ 6.963483] thunderbolt 0000:07:00.0: Max counters: 8
[ 6.963485] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 6.963980] thunderbolt 0000:07:00.0: Port 1: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 6.963982] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 6.963984] thunderbolt 0000:07:00.0: Max counters: 4
[ 6.963985] thunderbolt 0000:07:00.0: NFC Credits: 0x3c00000
[ 6.964077] thunderbolt 0000:07:00.0: Port 2: 8086:1549 (Revision: 0, TB Version: 1, Type: PCIe (0x100102))
[ 6.964079] thunderbolt 0000:07:00.0: Max hop id (in/out): 8/8
[ 6.964080] thunderbolt 0000:07:00.0: Max counters: 2
[ 6.964082] thunderbolt 0000:07:00.0: NFC Credits: 0x700000
[ 6.964702] thunderbolt 0000:07:00.0: 3:2: PCIe port already activated, aborting
[ 6.964709] thunderbolt 0000:07:00.0: 0:c: hotplug: scanning
[ 6.964710] thunderbolt 0000:07:00.0: 0:c: hotplug: no switch found
[ 6.964712] thunderbolt 0000:07:00.0: 0:3: got plug event for connected port, ignoring
[ 7.060549] usb 2-1.8.1.3: new full-speed USB device number 8 using ehci-pci
[ 7.150991] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.8/2-1.8.1/2-1.8.1.1/2-1.8.1.1:1.0/0003:05AC:820A.0003/input/input9
[ 7.151067] hid-generic 0003:05AC:820A.0003: input,hidraw2: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1d.0-1.8.1.1/input0
[ 7.151151] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.8/2-1.8.1/2-1.8.1.2/2-1.8.1.2:1.0/0003:05AC:820B.0004/input/input10
[ 7.151234] hid-generic 0003:05AC:820B.0004: input,hidraw3: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1d.0-1.8.1.2/input0
[ 7.159056] Bluetooth: Core ver 2.19
[ 7.159071] NET: Registered protocol family 31
[ 7.159073] Bluetooth: HCI device and connection manager initialized
[ 7.159078] Bluetooth: HCI socket layer initialized
[ 7.159080] Bluetooth: L2CAP socket layer initialized
[ 7.159088] Bluetooth: SCO socket layer initialized
[ 7.164359] usbcore: registered new interface driver btusb
[ 7.214618] usb 2-1.8.1.1: USB disconnect, device number 6
[ 7.447441] usb 2-1.8.1.2: USB disconnect, device number 7
[ 9.430869] fuse init (API version 7.23)
[ 13.781894] traps: gnome-shell[1182] trap int3 ip:7f8e2a4a1993 sp:7fffc6f5d860 error:0
[-- Attachment #3: Type: text/plain, Size: 159 bytes --]
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2014-08-21 15:55 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-14 20:43 [Patch] x86, ia64, efifb: Move boot_vga fixup from pci to vgaarb Bruno Prémont
2014-05-27 23:42 ` Bjorn Helgaas
2014-06-02 18:16 ` Bruno Prémont
2014-06-02 18:19 ` [PATCH 2/2] x86, ia64: Merge common vga fixup code Bruno Prémont
2014-06-02 18:19 ` [PATCH 1/2] x86, ia64: Move EFI_FB vga_default_device() initialization to pci_vga_fixup() Bruno Prémont
2014-06-17 22:35 ` Bjorn Helgaas
2014-06-18 6:09 ` Bruno Prémont
2014-06-24 20:41 ` Bruno Prémont
2014-06-24 22:55 ` [PATCH 1/2 v2] " Bruno Prémont
2014-06-24 22:58 ` [PATCH 2/2 v2] x86, ia64: Merge common vga fixup code Bruno Prémont
2014-06-24 23:02 ` [PATCH 1/2 v2] x86, ia64: Move EFI_FB vga_default_device() initialization to pci_vga_fixup() Matthew Garrett
2014-07-05 17:15 ` Bjorn Helgaas
2014-08-10 0:21 ` Andreas Noever
2014-08-10 0:36 ` Andreas Noever
2014-08-10 9:26 ` Bruno Prémont
2014-08-10 9:56 ` Andreas Noever
2014-08-10 16:34 ` Bruno Prémont
2014-08-14 0:40 ` Andreas Noever
2014-08-16 17:21 ` [PATCH 0/2] " Bruno Prémont
2014-08-16 17:25 ` [PATCH 1/2] vgaarb: Drop obsolete #ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE Bruno Prémont
2014-08-16 17:30 ` [PATCH 2/2] x86, ia64: Don't default to first video device Bruno Prémont
2014-08-19 15:45 ` [PATCH 0/2] x86, ia64: Move EFI_FB vga_default_device() initialization to pci_vga_fixup() Andreas Noever
2014-08-20 5:55 ` Bruno Prémont
2014-08-20 7:11 ` Bruno Prémont
2014-08-21 15:55 ` Andreas Noever [this message]
2014-08-21 21:34 ` Bruno Prémont
2014-08-22 4:39 ` Bjorn Helgaas
2014-08-22 6:23 ` Bruno Prémont
2014-08-22 20:30 ` Andreas Noever
2014-08-23 11:06 ` Bruno Prémont
2014-08-24 21:09 ` [PATCH 1/2 v2] vgaarb: Don't default exclusively to first video device with mem+io Bruno Prémont
2014-08-26 15:32 ` Andreas Noever
2014-08-28 20:47 ` Bruno Prémont
2014-09-12 11:19 ` Bruno Prémont
2014-09-12 14:28 ` Bjorn Helgaas
2014-09-18 23:26 ` Dave Airlie
2014-09-19 5:18 ` Bjorn Helgaas
2014-08-24 21:13 ` [PATCH 2/2 v2] vgaarb: Drop obsolete #ifndef Bruno Prémont
2014-08-25 12:16 ` [PATCH 0/2] x86, ia64: Move EFI_FB vga_default_device() initialization to pci_vga_fixup() Daniel Vetter
2014-08-25 12:39 ` Bruno Prémont
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAMxnaaUodONkqmdPWedN-Q1qheHiJAScFcG_XbX1--ZmiOQZDg@mail.gmail.com \
--to=andreas.noever@gmail.com \
--cc=bhelgaas@google.com \
--cc=bonbons@linux-vserver.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-pci@vger.kernel.org \
--cc=matthew.garrett@nebula.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).