All of lore.kernel.org
 help / color / mirror / Atom feed
* How to reserve pci bus numbers for hotplug?
@ 2013-12-11 23:37 Andreas Noever
  2013-12-12  0:21 ` Yinghai Lu
  2013-12-14 22:01 ` Greg KH
  0 siblings, 2 replies; 11+ messages in thread
From: Andreas Noever @ 2013-12-11 23:37 UTC (permalink / raw)
  To: linux-pci; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2921 bytes --]

Hi,

Context: I am working on a Thunderbolt driver for MacBooks (where the
firmware only handles cold plugged devices). The Thunderbolt part is
working but I have to boot the system with acpi_osi=Darwin as
otherwise the controller is powered down by the firmware. I know how
to reenable it (call a magic ACPI method), but Linux does not assign
enough resources to the hotplug ports.

After booting with acpi_osi=Darwin the relevant part of the PCI tree
looks like this (dmesg and lspci -vv attached):
           +-01.1-[05-9b]----00.0-[06-6b]--+-00.0-[07]----00.0  Intel
Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
           |                               +-03.0-[08-38]--
           |                               +-04.0-[39-69]--
           |                               +-05.0-[6a]--
           |                               \-06.0-[6b]--
Hotplugged Thunderbolt devices appear under 06.03 and 06.04
(theoretically also 06.03 and 06.06 but the firmware does not assign
any bus numbers). At this point everything works fine. If the system
is booted without acpi_osi=Darwin or enters suspend then ACPI cuts
power to everything below 01.1 (starting with 05).

I can reenable power by calling a magic ACPI method. The problem is
that the PCI config is gone. So after a manual sysfs rescan Linux
reassigns bus numbers like this:
           +-01.1-[05-9b]----00.0-[06-0b]--+-00.0-[07]----00.0  Intel
Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
           |                               +-03.0-[08]--
           |                               +-04.0-[09]--
           |                               +-05.0-[0a]--
           |                               \-06.0-[0b]--
And hotplug results in:
pci 0000:08:00.0: [8086:1549] type 01 class 0x060400
pci 0000:08:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
pci 0000:08:00.0: supports D1 D2
pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:08:00.0: PME# disabled
No bus number available for hot-added bridge 0000:08:00.0
pcieport 0000:06:03.0: bridge window [io  0x1000-0x0fff] to [bus 08]
add_size 1000
pcieport 0000:06:03.0: res[13]=[io  0x1000-0x0fff] get_res_add_size
add_size 1000
pcieport 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
pcieport 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
pcieport 0000:06:03.0: PCI bridge to [bus 08]
pcieport 0000:06:03.0:   bridge window [mem 0xc1e00000-0xc20fffff]
pcieport 0000:06:03.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
pci 0000:08:00.0: no hotplug settings from platform
pcieport 0000:08:00.0: enabling bus mastering
pcieport 0000:08:00.0: irq 56 for MSI/MSI-X

If I could get Linux to assign enough resources (bus numbers for now)
then I could drop the acpi_osi parameter and make thunderbolt work
after suspend... So, is there an easy way to fix this? (Quirks,
reconfiguring bus number assignments from a platform driver, ...?)

Thanks,
Andreas

[-- Attachment #2: dmesg_boot --]
[-- Type: application/octet-stream, Size: 112207 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.13.0-1-dirty (root@linuxbook) (gcc version 4.8.2 (GCC) ) #13 SMP PREEMPT Wed Dec 11 23:37:19 CET 2013
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux-git root=UUID=555026f1-7426-49a7-80aa-3d2bf31d5cc8 rw quiet systemd.unit=graphical.target acpi_osi=Darwin 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] reserved
[    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-0x0000000001a71000) (25MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000001a71000-0x0000000002000000) (5MB)
[    0.000000] efi: mem05: type=2, attr=0xf, range=[0x0000000002000000-0x0000000003971000) (25MB)
[    0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000003971000-0x0000000020000000) (454MB)
[    0.000000] efi: mem07: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000020200000-0x0000000032db2000) (299MB)
[    0.000000] efi: mem09: type=2, attr=0xf, range=[0x0000000032db2000-0x00000000356d1000) (41MB)
[    0.000000] efi: mem10: type=7, attr=0xf, range=[0x00000000356d1000-0x0000000040004000) (169MB)
[    0.000000] efi: mem11: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000040005000-0x000000005fa87000) (506MB)
[    0.000000] efi: mem13: type=2, attr=0xf, range=[0x000000005fa87000-0x000000007f846000) (509MB)
[    0.000000] efi: mem14: type=1, attr=0xf, range=[0x000000007f846000-0x000000007f864000) (0MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x000000007f864000-0x000000007f872000) (0MB)
[    0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000007f872000-0x000000007f873000) (0MB)
[    0.000000] efi: mem17: type=4, attr=0xf, range=[0x000000007f873000-0x000000007f87d000) (0MB)
[    0.000000] efi: mem18: type=2, attr=0xf, range=[0x000000007f87d000-0x000000007f87f000) (0MB)
[    0.000000] efi: mem19: type=4, attr=0xf, range=[0x000000007f87f000-0x0000000088017000) (135MB)
[    0.000000] efi: mem20: type=3, attr=0xf, range=[0x0000000088017000-0x000000008812e000) (1MB)
[    0.000000] efi: mem21: type=4, attr=0xf, range=[0x000000008812e000-0x000000008820f000) (0MB)
[    0.000000] efi: mem22: type=2, attr=0xf, range=[0x000000008820f000-0x0000000088210000) (0MB)
[    0.000000] efi: mem23: type=4, attr=0xf, range=[0x0000000088210000-0x0000000088217000) (0MB)
[    0.000000] efi: mem24: type=3, attr=0xf, range=[0x0000000088217000-0x000000008823a000) (0MB)
[    0.000000] efi: mem25: type=4, attr=0xf, range=[0x000000008823a000-0x000000008825c000) (0MB)
[    0.000000] efi: mem26: type=3, attr=0xf, range=[0x000000008825c000-0x0000000088263000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x0000000088263000-0x0000000088264000) (0MB)
[    0.000000] efi: mem28: type=3, attr=0xf, range=[0x0000000088264000-0x000000008826b000) (0MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x000000008826b000-0x000000008826e000) (0MB)
[    0.000000] efi: mem30: type=3, attr=0xf, range=[0x000000008826e000-0x000000008827c000) (0MB)
[    0.000000] efi: mem31: type=4, attr=0xf, range=[0x000000008827c000-0x000000008827d000) (0MB)
[    0.000000] efi: mem32: type=3, attr=0xf, range=[0x000000008827d000-0x0000000088286000) (0MB)
[    0.000000] efi: mem33: type=2, attr=0xf, range=[0x0000000088286000-0x0000000088287000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x0000000088287000-0x000000008828a000) (0MB)
[    0.000000] efi: mem35: type=3, attr=0xf, range=[0x000000008828a000-0x00000000882a3000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000882a3000-0x0000000088340000) (0MB)
[    0.000000] efi: mem37: type=3, attr=0xf, range=[0x0000000088340000-0x0000000088343000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x0000000088343000-0x0000000088344000) (0MB)
[    0.000000] efi: mem39: type=3, attr=0xf, range=[0x0000000088344000-0x0000000088345000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x0000000088345000-0x0000000088346000) (0MB)
[    0.000000] efi: mem41: type=3, attr=0xf, range=[0x0000000088346000-0x0000000088349000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x0000000088349000-0x000000008834c000) (0MB)
[    0.000000] efi: mem43: type=3, attr=0xf, range=[0x000000008834c000-0x0000000088352000) (0MB)
[    0.000000] efi: mem44: type=2, attr=0xf, range=[0x0000000088352000-0x0000000088353000) (0MB)
[    0.000000] efi: mem45: type=4, attr=0xf, range=[0x0000000088353000-0x0000000088356000) (0MB)
[    0.000000] efi: mem46: type=3, attr=0xf, range=[0x0000000088356000-0x000000008835a000) (0MB)
[    0.000000] efi: mem47: type=4, attr=0xf, range=[0x000000008835a000-0x000000008835b000) (0MB)
[    0.000000] efi: mem48: type=3, attr=0xf, range=[0x000000008835b000-0x000000008835c000) (0MB)
[    0.000000] efi: mem49: type=4, attr=0xf, range=[0x000000008835c000-0x0000000088360000) (0MB)
[    0.000000] efi: mem50: type=3, attr=0xf, range=[0x0000000088360000-0x0000000088381000) (0MB)
[    0.000000] efi: mem51: type=2, attr=0xf, range=[0x0000000088381000-0x0000000088382000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x0000000088382000-0x0000000088385000) (0MB)
[    0.000000] efi: mem53: type=3, attr=0xf, range=[0x0000000088385000-0x0000000088387000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x0000000088387000-0x000000008838b000) (0MB)
[    0.000000] efi: mem55: type=3, attr=0xf, range=[0x000000008838b000-0x00000000883ab000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000883ab000-0x00000000883ac000) (0MB)
[    0.000000] efi: mem57: type=3, attr=0xf, range=[0x00000000883ac000-0x00000000883af000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000883af000-0x00000000883b4000) (0MB)
[    0.000000] efi: mem59: type=3, attr=0xf, range=[0x00000000883b4000-0x00000000883c2000) (0MB)
[    0.000000] efi: mem60: type=2, attr=0xf, range=[0x00000000883c2000-0x00000000883c3000) (0MB)
[    0.000000] efi: mem61: type=4, attr=0xf, range=[0x00000000883c3000-0x00000000883cb000) (0MB)
[    0.000000] efi: mem62: type=3, attr=0xf, range=[0x00000000883cb000-0x00000000883d0000) (0MB)
[    0.000000] efi: mem63: type=4, attr=0xf, range=[0x00000000883d0000-0x00000000883d3000) (0MB)
[    0.000000] efi: mem64: type=3, attr=0xf, range=[0x00000000883d3000-0x00000000883d4000) (0MB)
[    0.000000] efi: mem65: type=4, attr=0xf, range=[0x00000000883d4000-0x00000000884e1000) (1MB)
[    0.000000] efi: mem66: type=2, attr=0xf, range=[0x00000000884e1000-0x00000000884e2000) (0MB)
[    0.000000] efi: mem67: type=4, attr=0xf, range=[0x00000000884e2000-0x0000000088bbb000) (6MB)
[    0.000000] efi: mem68: type=3, attr=0xf, range=[0x0000000088bbb000-0x0000000088bc0000) (0MB)
[    0.000000] efi: mem69: type=4, attr=0xf, range=[0x0000000088bc0000-0x0000000089548000) (9MB)
[    0.000000] efi: mem70: type=2, attr=0xf, range=[0x0000000089548000-0x0000000089549000) (0MB)
[    0.000000] efi: mem71: type=4, attr=0xf, range=[0x0000000089549000-0x0000000089565000) (0MB)
[    0.000000] efi: mem72: type=3, attr=0xf, range=[0x0000000089565000-0x000000008956e000) (0MB)
[    0.000000] efi: mem73: type=4, attr=0xf, range=[0x000000008956e000-0x0000000089587000) (0MB)
[    0.000000] efi: mem74: type=3, attr=0xf, range=[0x0000000089587000-0x0000000089589000) (0MB)
[    0.000000] efi: mem75: type=4, attr=0xf, range=[0x0000000089589000-0x0000000089591000) (0MB)
[    0.000000] efi: mem76: type=3, attr=0xf, range=[0x0000000089591000-0x0000000089598000) (0MB)
[    0.000000] efi: mem77: type=2, attr=0xf, range=[0x0000000089598000-0x0000000089599000) (0MB)
[    0.000000] efi: mem78: type=4, attr=0xf, range=[0x0000000089599000-0x000000008959a000) (0MB)
[    0.000000] efi: mem79: type=3, attr=0xf, range=[0x000000008959a000-0x000000008959b000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x000000008959b000-0x000000008959d000) (0MB)
[    0.000000] efi: mem81: type=3, attr=0xf, range=[0x000000008959d000-0x000000008959e000) (0MB)
[    0.000000] efi: mem82: type=4, attr=0xf, range=[0x000000008959e000-0x00000000895a3000) (0MB)
[    0.000000] efi: mem83: type=3, attr=0xf, range=[0x00000000895a3000-0x00000000895a8000) (0MB)
[    0.000000] efi: mem84: type=4, attr=0xf, range=[0x00000000895a8000-0x00000000895be000) (0MB)
[    0.000000] efi: mem85: type=3, attr=0xf, range=[0x00000000895be000-0x00000000895c2000) (0MB)
[    0.000000] efi: mem86: type=4, attr=0xf, range=[0x00000000895c2000-0x00000000895c5000) (0MB)
[    0.000000] efi: mem87: type=2, attr=0xf, range=[0x00000000895c5000-0x00000000895c6000) (0MB)
[    0.000000] efi: mem88: type=4, attr=0xf, range=[0x00000000895c6000-0x00000000895c8000) (0MB)
[    0.000000] efi: mem89: type=2, attr=0xf, range=[0x00000000895c8000-0x00000000895c9000) (0MB)
[    0.000000] efi: mem90: type=3, attr=0xf, range=[0x00000000895c9000-0x00000000895ca000) (0MB)
[    0.000000] efi: mem91: type=4, attr=0xf, range=[0x00000000895ca000-0x00000000895cb000) (0MB)
[    0.000000] efi: mem92: type=3, attr=0xf, range=[0x00000000895cb000-0x00000000895cc000) (0MB)
[    0.000000] efi: mem93: type=4, attr=0xf, range=[0x00000000895cc000-0x00000000895cd000) (0MB)
[    0.000000] efi: mem94: type=3, attr=0xf, range=[0x00000000895cd000-0x00000000895d7000) (0MB)
[    0.000000] efi: mem95: type=4, attr=0xf, range=[0x00000000895d7000-0x00000000895dc000) (0MB)
[    0.000000] efi: mem96: type=3, attr=0xf, range=[0x00000000895dc000-0x00000000895de000) (0MB)
[    0.000000] efi: mem97: type=4, attr=0xf, range=[0x00000000895de000-0x00000000895f8000) (0MB)
[    0.000000] efi: mem98: type=3, attr=0xf, range=[0x00000000895f8000-0x0000000089634000) (0MB)
[    0.000000] efi: mem99: type=4, attr=0xf, range=[0x0000000089634000-0x000000008964a000) (0MB)
[    0.000000] efi: mem100: type=3, attr=0xf, range=[0x000000008964a000-0x000000008964d000) (0MB)
[    0.000000] efi: mem101: type=4, attr=0xf, range=[0x000000008964d000-0x0000000089652000) (0MB)
[    0.000000] efi: mem102: type=2, attr=0xf, range=[0x0000000089652000-0x0000000089653000) (0MB)
[    0.000000] efi: mem103: type=4, attr=0xf, range=[0x0000000089653000-0x000000008967b000) (0MB)
[    0.000000] efi: mem104: type=3, attr=0xf, range=[0x000000008967b000-0x0000000089693000) (0MB)
[    0.000000] efi: mem105: type=4, attr=0xf, range=[0x0000000089693000-0x00000000896a1000) (0MB)
[    0.000000] efi: mem106: type=3, attr=0xf, range=[0x00000000896a1000-0x00000000896ab000) (0MB)
[    0.000000] efi: mem107: type=4, attr=0xf, range=[0x00000000896ab000-0x00000000896b0000) (0MB)
[    0.000000] efi: mem108: type=3, attr=0xf, range=[0x00000000896b0000-0x00000000896b1000) (0MB)
[    0.000000] efi: mem109: type=4, attr=0xf, range=[0x00000000896b1000-0x00000000896b4000) (0MB)
[    0.000000] efi: mem110: type=2, attr=0xf, range=[0x00000000896b4000-0x00000000896b5000) (0MB)
[    0.000000] efi: mem111: type=4, attr=0xf, range=[0x00000000896b5000-0x00000000896b9000) (0MB)
[    0.000000] efi: mem112: type=3, attr=0xf, range=[0x00000000896b9000-0x00000000896bb000) (0MB)
[    0.000000] efi: mem113: type=4, attr=0xf, range=[0x00000000896bb000-0x00000000896bf000) (0MB)
[    0.000000] efi: mem114: type=3, attr=0xf, range=[0x00000000896bf000-0x00000000896d9000) (0MB)
[    0.000000] efi: mem115: type=4, attr=0xf, range=[0x00000000896d9000-0x00000000896de000) (0MB)
[    0.000000] efi: mem116: type=3, attr=0xf, range=[0x00000000896de000-0x00000000896df000) (0MB)
[    0.000000] efi: mem117: type=2, attr=0xf, range=[0x00000000896df000-0x00000000896e0000) (0MB)
[    0.000000] efi: mem118: type=4, attr=0xf, range=[0x00000000896e0000-0x00000000896e1000) (0MB)
[    0.000000] efi: mem119: type=3, attr=0xf, range=[0x00000000896e1000-0x00000000896e3000) (0MB)
[    0.000000] efi: mem120: type=4, attr=0xf, range=[0x00000000896e3000-0x00000000896e5000) (0MB)
[    0.000000] efi: mem121: type=3, attr=0xf, range=[0x00000000896e5000-0x00000000896ea000) (0MB)
[    0.000000] efi: mem122: type=4, attr=0xf, range=[0x00000000896ea000-0x00000000896eb000) (0MB)
[    0.000000] efi: mem123: type=2, attr=0xf, range=[0x00000000896eb000-0x00000000896ec000) (0MB)
[    0.000000] efi: mem124: type=4, attr=0xf, range=[0x00000000896ec000-0x00000000896ed000) (0MB)
[    0.000000] efi: mem125: type=3, attr=0xf, range=[0x00000000896ed000-0x00000000896ee000) (0MB)
[    0.000000] efi: mem126: type=4, attr=0xf, range=[0x00000000896ee000-0x00000000896f0000) (0MB)
[    0.000000] efi: mem127: type=3, attr=0xf, range=[0x00000000896f0000-0x00000000896f1000) (0MB)
[    0.000000] efi: mem128: type=4, attr=0xf, range=[0x00000000896f1000-0x00000000896f2000) (0MB)
[    0.000000] efi: mem129: type=3, attr=0xf, range=[0x00000000896f2000-0x00000000896f4000) (0MB)
[    0.000000] efi: mem130: type=4, attr=0xf, range=[0x00000000896f4000-0x00000000896f6000) (0MB)
[    0.000000] efi: mem131: type=2, attr=0xf, range=[0x00000000896f6000-0x00000000896f7000) (0MB)
[    0.000000] efi: mem132: type=4, attr=0xf, range=[0x00000000896f7000-0x00000000896f8000) (0MB)
[    0.000000] efi: mem133: type=3, attr=0xf, range=[0x00000000896f8000-0x00000000896f9000) (0MB)
[    0.000000] efi: mem134: type=4, attr=0xf, range=[0x00000000896f9000-0x00000000896fa000) (0MB)
[    0.000000] efi: mem135: type=3, attr=0xf, range=[0x00000000896fa000-0x0000000089709000) (0MB)
[    0.000000] efi: mem136: type=4, attr=0xf, range=[0x0000000089709000-0x000000008970d000) (0MB)
[    0.000000] efi: mem137: type=3, attr=0xf, range=[0x000000008970d000-0x0000000089715000) (0MB)
[    0.000000] efi: mem138: type=4, attr=0xf, range=[0x0000000089715000-0x000000008971b000) (0MB)
[    0.000000] efi: mem139: type=3, attr=0xf, range=[0x000000008971b000-0x0000000089721000) (0MB)
[    0.000000] efi: mem140: type=4, attr=0xf, range=[0x0000000089721000-0x0000000089723000) (0MB)
[    0.000000] efi: mem141: type=2, attr=0xf, range=[0x0000000089723000-0x0000000089724000) (0MB)
[    0.000000] efi: mem142: type=4, attr=0xf, range=[0x0000000089724000-0x000000008972c000) (0MB)
[    0.000000] efi: mem143: type=3, attr=0xf, range=[0x000000008972c000-0x0000000089731000) (0MB)
[    0.000000] efi: mem144: type=4, attr=0xf, range=[0x0000000089731000-0x000000008973a000) (0MB)
[    0.000000] efi: mem145: type=3, attr=0xf, range=[0x000000008973a000-0x0000000089761000) (0MB)
[    0.000000] efi: mem146: type=4, attr=0xf, range=[0x0000000089761000-0x0000000089762000) (0MB)
[    0.000000] efi: mem147: type=3, attr=0xf, range=[0x0000000089762000-0x0000000089765000) (0MB)
[    0.000000] efi: mem148: type=4, attr=0xf, range=[0x0000000089765000-0x0000000089768000) (0MB)
[    0.000000] efi: mem149: type=3, attr=0xf, range=[0x0000000089768000-0x0000000089777000) (0MB)
[    0.000000] efi: mem150: type=4, attr=0xf, range=[0x0000000089777000-0x0000000089778000) (0MB)
[    0.000000] efi: mem151: type=3, attr=0xf, range=[0x0000000089778000-0x000000008977c000) (0MB)
[    0.000000] efi: mem152: type=4, attr=0xf, range=[0x000000008977c000-0x0000000089782000) (0MB)
[    0.000000] efi: mem153: type=3, attr=0xf, range=[0x0000000089782000-0x0000000089786000) (0MB)
[    0.000000] efi: mem154: type=4, attr=0xf, range=[0x0000000089786000-0x0000000089788000) (0MB)
[    0.000000] efi: mem155: type=2, attr=0xf, range=[0x0000000089788000-0x0000000089789000) (0MB)
[    0.000000] efi: mem156: type=4, attr=0xf, range=[0x0000000089789000-0x000000008978b000) (0MB)
[    0.000000] efi: mem157: type=2, attr=0xf, range=[0x000000008978b000-0x000000008978c000) (0MB)
[    0.000000] efi: mem158: type=4, attr=0xf, range=[0x000000008978c000-0x000000008978f000) (0MB)
[    0.000000] efi: mem159: type=3, attr=0xf, range=[0x000000008978f000-0x0000000089790000) (0MB)
[    0.000000] efi: mem160: type=4, attr=0xf, range=[0x0000000089790000-0x0000000089793000) (0MB)
[    0.000000] efi: mem161: type=3, attr=0xf, range=[0x0000000089793000-0x000000008979a000) (0MB)
[    0.000000] efi: mem162: type=4, attr=0xf, range=[0x000000008979a000-0x000000008979b000) (0MB)
[    0.000000] efi: mem163: type=3, attr=0xf, range=[0x000000008979b000-0x00000000897b2000) (0MB)
[    0.000000] efi: mem164: type=4, attr=0xf, range=[0x00000000897b2000-0x00000000897b3000) (0MB)
[    0.000000] efi: mem165: type=2, attr=0xf, range=[0x00000000897b3000-0x00000000897b4000) (0MB)
[    0.000000] efi: mem166: type=4, attr=0xf, range=[0x00000000897b4000-0x00000000897b5000) (0MB)
[    0.000000] efi: mem167: type=3, attr=0xf, range=[0x00000000897b5000-0x00000000897cb000) (0MB)
[    0.000000] efi: mem168: type=4, attr=0xf, range=[0x00000000897cb000-0x00000000897ce000) (0MB)
[    0.000000] efi: mem169: type=3, attr=0xf, range=[0x00000000897ce000-0x00000000897d3000) (0MB)
[    0.000000] efi: mem170: type=4, attr=0xf, range=[0x00000000897d3000-0x00000000897d6000) (0MB)
[    0.000000] efi: mem171: type=3, attr=0xf, range=[0x00000000897d6000-0x00000000897e4000) (0MB)
[    0.000000] efi: mem172: type=4, attr=0xf, range=[0x00000000897e4000-0x00000000897e8000) (0MB)
[    0.000000] efi: mem173: type=3, attr=0xf, range=[0x00000000897e8000-0x00000000897eb000) (0MB)
[    0.000000] efi: mem174: type=4, attr=0xf, range=[0x00000000897eb000-0x00000000897ef000) (0MB)
[    0.000000] efi: mem175: type=2, attr=0xf, range=[0x00000000897ef000-0x00000000897f0000) (0MB)
[    0.000000] efi: mem176: type=4, attr=0xf, range=[0x00000000897f0000-0x00000000897f2000) (0MB)
[    0.000000] efi: mem177: type=3, attr=0xf, range=[0x00000000897f2000-0x00000000897f9000) (0MB)
[    0.000000] efi: mem178: type=4, attr=0xf, range=[0x00000000897f9000-0x00000000897fc000) (0MB)
[    0.000000] efi: mem179: type=3, attr=0xf, range=[0x00000000897fc000-0x00000000897fd000) (0MB)
[    0.000000] efi: mem180: type=4, attr=0xf, range=[0x00000000897fd000-0x00000000897ff000) (0MB)
[    0.000000] efi: mem181: type=2, attr=0xf, range=[0x00000000897ff000-0x0000000089800000) (0MB)
[    0.000000] efi: mem182: type=4, attr=0xf, range=[0x0000000089800000-0x0000000089802000) (0MB)
[    0.000000] efi: mem183: type=3, attr=0xf, range=[0x0000000089802000-0x0000000089804000) (0MB)
[    0.000000] efi: mem184: type=4, attr=0xf, range=[0x0000000089804000-0x0000000089808000) (0MB)
[    0.000000] efi: mem185: type=3, attr=0xf, range=[0x0000000089808000-0x0000000089809000) (0MB)
[    0.000000] efi: mem186: type=4, attr=0xf, range=[0x0000000089809000-0x000000008980a000) (0MB)
[    0.000000] efi: mem187: type=2, attr=0xf, range=[0x000000008980a000-0x000000008980b000) (0MB)
[    0.000000] efi: mem188: type=4, attr=0xf, range=[0x000000008980b000-0x000000008980c000) (0MB)
[    0.000000] efi: mem189: type=3, attr=0xf, range=[0x000000008980c000-0x0000000089811000) (0MB)
[    0.000000] efi: mem190: type=4, attr=0xf, range=[0x0000000089811000-0x0000000089813000) (0MB)
[    0.000000] efi: mem191: type=3, attr=0xf, range=[0x0000000089813000-0x000000008981c000) (0MB)
[    0.000000] efi: mem192: type=4, attr=0xf, range=[0x000000008981c000-0x000000008981d000) (0MB)
[    0.000000] efi: mem193: type=2, attr=0xf, range=[0x000000008981d000-0x000000008981e000) (0MB)
[    0.000000] efi: mem194: type=4, attr=0xf, range=[0x000000008981e000-0x000000008981f000) (0MB)
[    0.000000] efi: mem195: type=3, attr=0xf, range=[0x000000008981f000-0x0000000089821000) (0MB)
[    0.000000] efi: mem196: type=4, attr=0xf, range=[0x0000000089821000-0x0000000089824000) (0MB)
[    0.000000] efi: mem197: type=3, attr=0xf, range=[0x0000000089824000-0x0000000089825000) (0MB)
[    0.000000] efi: mem198: type=4, attr=0xf, range=[0x0000000089825000-0x0000000089829000) (0MB)
[    0.000000] efi: mem199: type=3, attr=0xf, range=[0x0000000089829000-0x000000008982a000) (0MB)
[    0.000000] efi: mem200: type=4, attr=0xf, range=[0x000000008982a000-0x0000000089832000) (0MB)
[    0.000000] efi: mem201: type=3, attr=0xf, range=[0x0000000089832000-0x0000000089834000) (0MB)
[    0.000000] efi: mem202: type=4, attr=0xf, range=[0x0000000089834000-0x000000008983a000) (0MB)
[    0.000000] efi: mem203: type=3, attr=0xf, range=[0x000000008983a000-0x000000008983b000) (0MB)
[    0.000000] efi: mem204: type=2, attr=0xf, range=[0x000000008983b000-0x000000008983c000) (0MB)
[    0.000000] efi: mem205: type=4, attr=0xf, range=[0x000000008983c000-0x000000008983e000) (0MB)
[    0.000000] efi: mem206: type=3, attr=0xf, range=[0x000000008983e000-0x000000008983f000) (0MB)
[    0.000000] efi: mem207: type=4, attr=0xf, range=[0x000000008983f000-0x000000008985d000) (0MB)
[    0.000000] efi: mem208: type=3, attr=0xf, range=[0x000000008985d000-0x0000000089862000) (0MB)
[    0.000000] efi: mem209: type=4, attr=0xf, range=[0x0000000089862000-0x0000000089867000) (0MB)
[    0.000000] efi: mem210: type=2, attr=0xf, range=[0x0000000089867000-0x0000000089868000) (0MB)
[    0.000000] efi: mem211: type=4, attr=0xf, range=[0x0000000089868000-0x00000000898c9000) (0MB)
[    0.000000] efi: mem212: type=3, attr=0xf, range=[0x00000000898c9000-0x00000000898dc000) (0MB)
[    0.000000] efi: mem213: type=4, attr=0xf, range=[0x00000000898dc000-0x00000000898f6000) (0MB)
[    0.000000] efi: mem214: type=2, attr=0xf, range=[0x00000000898f6000-0x00000000898f7000) (0MB)
[    0.000000] efi: mem215: type=4, attr=0xf, range=[0x00000000898f7000-0x0000000089921000) (0MB)
[    0.000000] efi: mem216: type=3, attr=0xf, range=[0x0000000089921000-0x0000000089935000) (0MB)
[    0.000000] efi: mem217: type=4, attr=0xf, range=[0x0000000089935000-0x0000000089936000) (0MB)
[    0.000000] efi: mem218: type=3, attr=0xf, range=[0x0000000089936000-0x0000000089939000) (0MB)
[    0.000000] efi: mem219: type=4, attr=0xf, range=[0x0000000089939000-0x0000000089953000) (0MB)
[    0.000000] efi: mem220: type=3, attr=0xf, range=[0x0000000089953000-0x0000000089958000) (0MB)
[    0.000000] efi: mem221: type=4, attr=0xf, range=[0x0000000089958000-0x0000000089960000) (0MB)
[    0.000000] efi: mem222: type=2, attr=0xf, range=[0x0000000089960000-0x0000000089961000) (0MB)
[    0.000000] efi: mem223: type=3, attr=0xf, range=[0x0000000089961000-0x0000000089962000) (0MB)
[    0.000000] efi: mem224: type=4, attr=0xf, range=[0x0000000089962000-0x0000000089964000) (0MB)
[    0.000000] efi: mem225: type=3, attr=0xf, range=[0x0000000089964000-0x0000000089965000) (0MB)
[    0.000000] efi: mem226: type=4, attr=0xf, range=[0x0000000089965000-0x0000000089976000) (0MB)
[    0.000000] efi: mem227: type=3, attr=0xf, range=[0x0000000089976000-0x000000008997b000) (0MB)
[    0.000000] efi: mem228: type=4, attr=0xf, range=[0x000000008997b000-0x000000008997c000) (0MB)
[    0.000000] efi: mem229: type=3, attr=0xf, range=[0x000000008997c000-0x000000008997f000) (0MB)
[    0.000000] efi: mem230: type=4, attr=0xf, range=[0x000000008997f000-0x0000000089980000) (0MB)
[    0.000000] efi: mem231: type=3, attr=0xf, range=[0x0000000089980000-0x0000000089991000) (0MB)
[    0.000000] efi: mem232: type=4, attr=0xf, range=[0x0000000089991000-0x0000000089995000) (0MB)
[    0.000000] efi: mem233: type=3, attr=0xf, range=[0x0000000089995000-0x00000000899a2000) (0MB)
[    0.000000] efi: mem234: type=4, attr=0xf, range=[0x00000000899a2000-0x00000000899a3000) (0MB)
[    0.000000] efi: mem235: type=2, attr=0xf, range=[0x00000000899a3000-0x00000000899a4000) (0MB)
[    0.000000] efi: mem236: type=4, attr=0xf, range=[0x00000000899a4000-0x00000000899a5000) (0MB)
[    0.000000] efi: mem237: type=3, attr=0xf, range=[0x00000000899a5000-0x00000000899a7000) (0MB)
[    0.000000] efi: mem238: type=4, attr=0xf, range=[0x00000000899a7000-0x00000000899a8000) (0MB)
[    0.000000] efi: mem239: type=3, attr=0xf, range=[0x00000000899a8000-0x00000000899ab000) (0MB)
[    0.000000] efi: mem240: type=4, attr=0xf, range=[0x00000000899ab000-0x0000000089dcc000) (4MB)
[    0.000000] efi: mem241: type=3, attr=0xf, range=[0x0000000089dcc000-0x0000000089dd6000) (0MB)
[    0.000000] efi: mem242: type=4, attr=0xf, range=[0x0000000089dd6000-0x0000000089e60000) (0MB)
[    0.000000] efi: mem243: type=2, attr=0xf, range=[0x0000000089e60000-0x0000000089e61000) (0MB)
[    0.000000] efi: mem244: type=3, attr=0xf, range=[0x0000000089e61000-0x0000000089e64000) (0MB)
[    0.000000] efi: mem245: type=4, attr=0xf, range=[0x0000000089e64000-0x0000000089e66000) (0MB)
[    0.000000] efi: mem246: type=2, attr=0xf, range=[0x0000000089e66000-0x0000000089e67000) (0MB)
[    0.000000] efi: mem247: type=4, attr=0xf, range=[0x0000000089e67000-0x0000000089e68000) (0MB)
[    0.000000] efi: mem248: type=3, attr=0xf, range=[0x0000000089e68000-0x0000000089e6d000) (0MB)
[    0.000000] efi: mem249: type=4, attr=0xf, range=[0x0000000089e6d000-0x0000000089e6e000) (0MB)
[    0.000000] efi: mem250: type=3, attr=0xf, range=[0x0000000089e6e000-0x0000000089e71000) (0MB)
[    0.000000] efi: mem251: type=4, attr=0xf, range=[0x0000000089e71000-0x0000000089e72000) (0MB)
[    0.000000] efi: mem252: type=3, attr=0xf, range=[0x0000000089e72000-0x0000000089e73000) (0MB)
[    0.000000] efi: mem253: type=4, attr=0xf, range=[0x0000000089e73000-0x0000000089e76000) (0MB)
[    0.000000] efi: mem254: type=3, attr=0xf, range=[0x0000000089e76000-0x0000000089e77000) (0MB)
[    0.000000] efi: mem255: type=4, attr=0xf, range=[0x0000000089e77000-0x000000008a0af000) (2MB)
[    0.000000] efi: mem256: type=2, attr=0xf, range=[0x000000008a0af000-0x000000008a0b0000) (0MB)
[    0.000000] efi: mem257: type=4, attr=0xf, range=[0x000000008a0b0000-0x000000008a357000) (2MB)
[    0.000000] efi: mem258: type=2, attr=0xf, range=[0x000000008a357000-0x000000008a358000) (0MB)
[    0.000000] efi: mem259: type=4, attr=0xf, range=[0x000000008a358000-0x000000008acfa000) (9MB)
[    0.000000] efi: mem260: type=2, attr=0xf, range=[0x000000008acfa000-0x000000008acfb000) (0MB)
[    0.000000] efi: mem261: type=4, attr=0xf, range=[0x000000008acfb000-0x000000008ad03000) (0MB)
[    0.000000] efi: mem262: type=7, attr=0xf, range=[0x000000008ad03000-0x000000008ad14000) (0MB)
[    0.000000] efi: mem263: type=10, attr=0xf, range=[0x000000008ad14000-0x000000008ad53000) (0MB)
[    0.000000] efi: mem264: type=7, attr=0xf, range=[0x000000008ad53000-0x000000008ad69000) (0MB)
[    0.000000] efi: mem265: type=9, attr=0xf, range=[0x000000008ad69000-0x000000008ad8f000) (0MB)
[    0.000000] efi: mem266: type=7, attr=0xf, range=[0x000000008ad8f000-0x000000008ae3a000) (0MB)
[    0.000000] efi: mem267: type=6, attr=0x800000000000000f, range=[0x000000008ae3a000-0x000000008ae8f000) (0MB)
[    0.000000] efi: mem268: type=7, attr=0xf, range=[0x000000008ae8f000-0x000000008aece000) (0MB)
[    0.000000] efi: mem269: type=5, attr=0x800000000000000f, range=[0x000000008aece000-0x000000008aeff000) (0MB)
[    0.000000] efi: mem270: type=7, attr=0xf, range=[0x000000008aeff000-0x000000008af86000) (0MB)
[    0.000000] efi: mem271: type=2, attr=0xf, range=[0x000000008af86000-0x000000008af92000) (0MB)
[    0.000000] efi: mem272: type=0, attr=0xf, range=[0x000000008af92000-0x000000008afff000) (0MB)
[    0.000000] efi: mem273: type=2, attr=0xf, range=[0x000000008afff000-0x000000008b000000) (0MB)
[    0.000000] efi: mem274: type=7, attr=0xf, range=[0x0000000100000000-0x000000046f600000) (14070MB)
[    0.000000] efi: mem275: type=0, attr=0x8000000000000000, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem276: type=0, attr=0x8000000000000000, range=[0x000000008b000000-0x000000008fa00000) (74MB)
[    0.000000] efi: mem277: type=11, attr=0x8000000000000000, range=[0x00000000e00f8000-0x00000000e00f9000) (0MB)
[    0.000000] efi: mem278: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem279: 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] No AGP bridge found
[    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 [0x0354f000, 0x0354ffff] PGTABLE
[    0.000000] BRK [0x03550000, 0x03550fff] PGTABLE
[    0.000000] BRK [0x03551000, 0x03551fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x46f400000-0x46f5fffff]
[    0.000000]  [mem 0x46f400000-0x46f5fffff] page 4k
[    0.000000] BRK [0x03552000, 0x03552fff] PGTABLE
[    0.000000] BRK [0x03553000, 0x03553fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x46c000000-0x46f3fffff]
[    0.000000]  [mem 0x46c000000-0x46f3fffff] page 4k
[    0.000000] BRK [0x03554000, 0x03554fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x400000000-0x46bffffff]
[    0.000000]  [mem 0x400000000-0x46bffffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[    0.000000]  [mem 0x00100000-0x1fffffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
[    0.000000]  [mem 0x20200000-0x40003fff] page 4k
[    0.000000] init_memory_mapping: [mem 0x40005000-0x8ad13fff]
[    0.000000]  [mem 0x40005000-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 4k
[    0.000000] RAMDISK: [mem 0x32db2000-0x356d0fff]
[    0.000000] ACPI: RSDP 000000008ad8e014 000024 (v02 APPLE )
[    0.000000] ACPI: XSDT 000000008ad8e1c0 0000B4 (v01 APPLE   Apple00 00000000      01000013)
[    0.000000] ACPI: FACP 000000008ad8c000 0000F4 (v04 APPLE   Apple00 00000000 Loki 0000005F)
[    0.000000] ACPI: DSDT 000000008ad82000 004D5C (v01 APPLE  MacBookP 00100001 INTL 20100915)
[    0.000000] ACPI: FACS 000000008ad1e000 000040
[    0.000000] ACPI: HPET 000000008ad8b000 000038 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: APIC 000000008ad8a000 0000BC (v02 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: SBST 000000008ad88000 000030 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: ECDT 000000008ad87000 000053 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: SSDT 000000008ad7f000 00053A (v01 APPLE  SataAhci 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad7e000 000024 (v01 APPLE   SmcDppt 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad79000 000D3E (v01 APPLE    UsbPpt 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad77000 000159 (v02 APPLE     IGHda 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad75000 000032 (v01 APPLE    SsdtS3 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad73000 0015EB (v02 APPLE  SsdtIGPU 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad6e000 0019AA (v01 APPLE  TbtPEG11 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad6d000 00071D (v01  PmRef  Cpu0Ist 00003000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad6c000 000B3D (v01  PmRef    CpuPm 00003000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad6b000 000315 (v01  PmRef  Cpu0Tst 00003000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad6a000 00037A (v01  PmRef    ApTst 00003000 INTL 20100915)
[    0.000000] ACPI: DMAR 000000008ad69000 000088 (v01 APPLE      IVB  00000001 AAPL 00000001)
[    0.000000] ACPI: MCFG 000000008ad89000 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 0x46d61d000-0x46d621fff]
[    0.000000]  [ffffea0000000000-ffffea0011bfffff] PMD -> [ffff88045ce00000-ffff88046cdfffff] 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: 26 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] 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: IRQ2 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] nr_irqs_gsi: 40
[    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] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 29 pages/cpu @ffff88046d000000 s89600 r8192 d20992 u262144
[    0.000000] pcpu-alloc: s89600 r8192 d20992 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: 4105119
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-git root=UUID=555026f1-7426-49a7-80aa-3d2bf31d5cc8 rw quiet systemd.unit=graphical.target acpi_osi=Darwin resume=/dev/sda5
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 16069812K/16681232K available (5499K kernel code, 902K rwdata, 2420K rodata, 1200K init, 9444K bss, 611420K 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=64 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:4352 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8191
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     16384
[    0.000000] ... MAX_LOCKDEP_CHAINS:      32768
[    0.000000] ... CHAINHASH_SIZE:          16384
[    0.000000]  memory used by lock dependency info: 5823 kB
[    0.000000]  per task-struct memory footprint: 1920 bytes
[    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] ODEBUG: 31 of 31 active objects replaced
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.003333] tsc: Detected 2693.785 MHz processor
[    0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5389.05 BogoMIPS (lpj=8979283)
[    0.000005] pid_max: default: 32768 minimum: 301
[    0.000036] init_memory_mapping: [mem 0x8ae3a000-0x8ae8efff]
[    0.000038]  [mem 0x8ae3a000-0x8ae8efff] page 4k
[    0.000049] init_memory_mapping: [mem 0x8aece000-0x8aefefff]
[    0.000050]  [mem 0x8aece000-0x8aefefff] page 4k
[    0.000092] init_memory_mapping: [mem 0x8b000000-0x8f9fffff]
[    0.000093]  [mem 0x8b000000-0x8f9fffff] page 4k
[    0.022761] Security Framework initialized
[    0.022767] AppArmor: AppArmor disabled by boot time parameter
[    0.026711] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.031894] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.033495] Mount-cache hash table entries: 256
[    0.033858] Initializing cgroup subsys memory
[    0.033864] Initializing cgroup subsys devices
[    0.033870] Initializing cgroup subsys freezer
[    0.033876] Initializing cgroup subsys net_cls
[    0.033877] Initializing cgroup subsys blkio
[    0.033909] CPU: Physical Processor ID: 0
[    0.033910] CPU: Processor Core ID: 0
[    0.034244] mce: CPU supports 9 MCE banks
[    0.034255] CPU0: Thermal monitoring enabled (TM1)
[    0.034270] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
[    0.034366] debug: unmapping init [mem 0xffffffff81c0f000-0xffffffff81c13fff]
[    0.035323] ACPI: Core revision 20131115
[    0.051163] ACPI: All ACPI Tables successfully acquired
[    0.092059] ftrace: allocating 20518 entries in 81 pages
[    0.101097] dmar: Host address width 36
[    0.101099] dmar: DRHD base: 0x000000fed90000 flags: 0x0
[    0.101113] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a
[    0.101114] dmar: DRHD base: 0x000000fed91000 flags: 0x1
[    0.101120] dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a
[    0.101121] dmar: RMRR base: 0x0000008b800000 end: 0x0000008f9fffff
[    0.101196] IOAPIC id 0 under DRHD base  0xfed91000 IOMMU 1
[    0.101197] HPET id 0 under DRHD base 0xfed91000
[    0.101198] [Firmware Bug]: ioapic 2 has no mapping iommu, interrupt remapping will be disabled
[    0.101202] Not enable interrupt remapping
[    0.101203] Failed to enable irq remapping.  You are vulnerable to irq-injection attacks.
[    0.101613] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.134605] smpboot: CPU0: Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz (fam: 06, model: 3a, stepping: 09)
[    0.134614] TSC deadline timer enabled
[    0.134628] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[    0.134638] ... version:                3
[    0.134639] ... bit width:              48
[    0.134640] ... generic registers:      4
[    0.134641] ... value mask:             0000ffffffffffff
[    0.134642] ... max period:             0000ffffffffffff
[    0.134643] ... fixed-purpose events:   3
[    0.134644] ... event mask:             000000070000000f
[    0.161440] x86: Booting SMP configuration:
[    0.175009] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.161442] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.296769] x86: Booted up 1 node, 8 CPUs
[    0.296773] smpboot: Total of 8 processors activated (43117.41 BogoMIPS)
[    0.303489] devtmpfs: initialized
[    0.307546] PM: Registering ACPI NVS region [mem 0x8ad14000-0x8ad52fff] (258048 bytes)
[    0.308439] RTC time: 22:41:17, date: 12/11/13
[    0.308518] NET: Registered protocol family 16
[    0.308695] cpuidle: using governor ladder
[    0.308697] cpuidle: using governor menu
[    0.308719] ACPI: bus type PCI registered
[    0.308822] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.308824] PCI: not using MMCONFIG
[    0.308826] PCI: Using configuration type 1 for base access
[    0.310097] bio: create slab <bio-0> at 0
[    0.310299] ACPI: Added _OSI(Module Device)
[    0.310300] ACPI: Added _OSI(Processor Device)
[    0.310302] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.310303] ACPI: Added _OSI(Processor Aggregator Device)
[    0.310305] ACPI: Added _OSI(Darwin)
[    0.313751] ACPI : EC: EC description table is found, configuring boot EC
[    0.325131] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.325970] ACPI: SSDT 000000008ad19190 0008AD (v01  PmRef  Cpu0Cst 00003001 INTL 20100915)
[    0.326894] ACPI: Dynamic OEM Table Load:
[    0.326896] ACPI: SSDT           (null) 0008AD (v01  PmRef  Cpu0Cst 00003001 INTL 20100915)
[    0.336925] ACPI: SSDT 000000008ad1a710 0003A4 (v01  PmRef    ApIst 00003000 INTL 20100915)
[    0.337950] ACPI: Dynamic OEM Table Load:
[    0.337952] ACPI: SSDT           (null) 0003A4 (v01  PmRef    ApIst 00003000 INTL 20100915)
[    0.349949] ACPI: SSDT 000000008ad18d90 000119 (v01  PmRef    ApCst 00003000 INTL 20100915)
[    0.350858] ACPI: Dynamic OEM Table Load:
[    0.350860] ACPI: SSDT           (null) 000119 (v01  PmRef    ApCst 00003000 INTL 20100915)
[    0.365773] ACPI: Interpreter enabled
[    0.365779] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
[    0.365784] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[    0.365808] ACPI: (supports S0 S3 S4 S5)
[    0.365809] ACPI: Using IOAPIC for interrupt routing
[    0.365838] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.366675] PCI: MMCONFIG at [mem 0xe0000000-0xe9bfffff] reserved in ACPI motherboard resources
[    0.387907] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.388236] ACPI: No dock devices found.
[    0.403953] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.403959] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.404253] acpi PNP0A08:00: _OSC: platform does not support [PME]
[    0.404500] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug AER PCIeCapability]
[    0.404979] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-9b] only partially covers this bridge
[    0.405100] PCI host bridge to bus 0000:00
[    0.405102] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.405104] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.405106] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.405107] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.405109] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
[    0.405110] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
[    0.405112] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
[    0.405113] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
[    0.405115] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[    0.405116] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[    0.405118] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[    0.405119] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[    0.405121] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[    0.405122] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[    0.405124] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
[    0.405125] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
[    0.405127] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
[    0.405128] pci_bus 0000:00: root bus resource [mem 0x8fa00000-0xfeafffff]
[    0.405132] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    0.405134] pci_bus 0000:00: scanning bus
[    0.405149] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.405159] pci 0000:00:00.0: calling quirk_mmio_always_on+0x0/0x10
[    0.405301] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    0.405323] pci 0000:00:01.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    0.405348] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.405358] pci 0000:00:01.0: PME# disabled
[    0.405424] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.405470] pci 0000:00:01.1: [8086:0155] type 01 class 0x060400
[    0.405490] pci 0000:00:01.1: calling pci_fixup_transparent_bridge+0x0/0x30
[    0.405513] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.405515] pci 0000:00:01.1: PME# disabled
[    0.405577] pci 0000:00:01.1: System wakeup disabled by ACPI
[    0.405626] pci 0000:00:01.2: [8086:0159] type 01 class 0x060400
[    0.405658] pci 0000:00:01.2: calling pci_fixup_transparent_bridge+0x0/0x30
[    0.405710] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[    0.405714] pci 0000:00:01.2: PME# disabled
[    0.405784] pci 0000:00:01.2: System wakeup disabled by ACPI
[    0.405835] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.405848] pci 0000:00:02.0: reg 0x10: [mem 0xc1400000-0xc17fffff 64bit]
[    0.405855] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.405860] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.406017] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.406041] pci 0000:00:14.0: reg 0x10: [mem 0xc1c00000-0xc1c0ffff 64bit]
[    0.406112] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.406117] pci 0000:00:14.0: PME# disabled
[    0.406180] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.406228] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.406255] pci 0000:00:16.0: reg 0x10: [mem 0xc1c17100-0xc1c1710f 64bit]
[    0.406344] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.406348] pci 0000:00:16.0: PME# disabled
[    0.406468] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.406497] pci 0000:00:1a.0: reg 0x10: [mem 0xc1c16c00-0xc1c16fff]
[    0.406601] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.406606] pci 0000:00:1a.0: PME# disabled
[    0.406673] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.406719] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.406735] pci 0000:00:1b.0: reg 0x10: [mem 0xc1c10000-0xc1c13fff 64bit]
[    0.406806] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.406809] pci 0000:00:1b.0: PME# disabled
[    0.406876] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.406922] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.406984] pci 0000:00:1c.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    0.407055] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.407060] pci 0000:00:1c.0: PME# disabled
[    0.407135] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.407182] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.407245] pci 0000:00:1c.1: calling pci_fixup_transparent_bridge+0x0/0x30
[    0.407317] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.407322] pci 0000:00:1c.1: PME# disabled
[    0.407398] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.407450] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.407474] pci 0000:00:1d.0: reg 0x10: [mem 0xc1c16800-0xc1c16bff]
[    0.407577] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.407582] pci 0000:00:1d.0: PME# disabled
[    0.407648] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.407693] pci 0000:00:1f.0: [8086:1e57] type 00 class 0x060100
[    0.407908] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.407930] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
[    0.407940] pci 0000:00:1f.2: reg 0x14: [io  0x309c-0x309f]
[    0.407949] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
[    0.407960] pci 0000:00:1f.2: reg 0x1c: [io  0x3098-0x309b]
[    0.407969] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.407979] pci 0000:00:1f.2: reg 0x24: [mem 0xc1c16000-0xc1c167ff]
[    0.408033] pci 0000:00:1f.2: PME# supported from D3hot
[    0.408037] pci 0000:00:1f.2: PME# disabled
[    0.408135] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.408152] pci 0000:00:1f.3: reg 0x10: [mem 0xc1c17000-0xc1c170ff 64bit]
[    0.408170] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.408275] pci_bus 0000:00: fixups for bus
[    0.408279] pci 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 0
[    0.408326] pci_bus 0000:01: scanning bus
[    0.408353] pci 0000:01:00.0: [10de:0fd5] type 00 class 0x030000
[    0.408368] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xc0ffffff]
[    0.408385] pci 0000:01:00.0: reg 0x14: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.408402] pci 0000:01:00.0: reg 0x1c: [mem 0xa0000000-0xa1ffffff 64bit pref]
[    0.408413] pci 0000:01:00.0: reg 0x24: [io  0x2000-0x207f]
[    0.408425] pci 0000:01:00.0: reg 0x30: [mem 0xc1000000-0xc107ffff pref]
[    0.408520] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.408577] pci 0000:01:00.1: [10de:0e1b] type 00 class 0x040300
[    0.408590] pci 0000:01:00.1: reg 0x10: [mem 0xc1080000-0xc1083fff]
[    1.414183] pci 0000:00:01.0: ASPM: Could not configure common clock
[    1.414226] pci_bus 0000:01: fixups for bus
[    1.414227] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.414230] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    1.414233] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xc10fffff]
[    1.414237] pci 0000:00:01.0:   bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[    1.414239] pci_bus 0000:01: bus scan returning with max=01
[    1.414242] pci 0000:00:01.1: scanning [bus 05-9b] behind bridge, pass 0
[    1.414291] pci_bus 0000:05: scanning bus
[    1.414305] pci 0000:05:00.0: [8086:1547] type 01 class 0x060400
[    1.414338] pci 0000:05:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.414375] pci 0000:05:00.0: supports D1 D2
[    1.414376] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.414379] pci 0000:05:00.0: PME# disabled
[    1.420869] pci_bus 0000:05: fixups for bus
[    1.420873] pci 0000:00:01.1: PCI bridge to [bus 05-9b]
[    1.420879] pci 0000:00:01.1:   bridge window [io  0x4000-0x6fff]
[    1.420894] pci 0000:00:01.1:   bridge window [mem 0xc1d00000-0xcdffffff]
[    1.420898] pci 0000:00:01.1:   bridge window [mem 0xce000000-0xd9ffffff 64bit pref]
[    1.420901] pci 0000:05:00.0: scanning [bus 06-6b] behind bridge, pass 0
[    1.420966] pci_bus 0000:06: dev 03, created physical slot 2
[    1.420980] pci_bus 0000:06: dev 04, created physical slot 3
[    1.420991] pci_bus 0000:06: dev 05, created physical slot 4
[    1.421003] pci_bus 0000:06: dev 06, created physical slot 5
[    1.421006] pci_bus 0000:06: scanning bus
[    1.421021] pci 0000:06:00.0: [8086:1547] type 01 class 0x060400
[    1.421056] pci 0000:06:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.421094] pci 0000:06:00.0: supports D1 D2
[    1.421096] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.421099] pci 0000:06:00.0: PME# disabled
[    1.421180] pci 0000:06:03.0: [8086:1547] type 01 class 0x060400
[    1.421209] pci 0000:06:03.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.421247] pci 0000:06:03.0: supports D1 D2
[    1.421249] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.421252] pci 0000:06:03.0: PME# disabled
[    1.421328] pci 0000:06:04.0: [8086:1547] type 01 class 0x060400
[    1.421357] pci 0000:06:04.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.421395] pci 0000:06:04.0: supports D1 D2
[    1.421397] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.421400] pci 0000:06:04.0: PME# disabled
[    1.421481] pci 0000:06:05.0: [8086:1547] type 01 class 0x060400
[    1.421510] pci 0000:06:05.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.421548] pci 0000:06:05.0: supports D1 D2
[    1.421549] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.421553] pci 0000:06:05.0: PME# disabled
[    1.421630] pci 0000:06:06.0: [8086:1547] type 01 class 0x060400
[    1.421660] pci 0000:06:06.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.421698] pci 0000:06:06.0: supports D1 D2
[    1.421699] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.421702] pci 0000:06:06.0: PME# disabled
[    1.421794] pci_bus 0000:06: fixups for bus
[    1.421795] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    1.421800] pci 0000:05:00.0:   bridge window [io  0x4000-0x5fff]
[    1.421803] pci 0000:05:00.0:   bridge window [mem 0xc1d00000-0xc9ffffff]
[    1.421808] pci 0000:05:00.0:   bridge window [mem 0xce000000-0xd5ffffff 64bit pref]
[    1.421811] pci 0000:06:00.0: scanning [bus 07-07] behind bridge, pass 0
[    1.421871] pci_bus 0000:07: scanning bus
[    1.421891] pci 0000:07:00.0: [8086:1547] type 00 class 0x088000
[    1.421905] pci 0000:07:00.0: reg 0x10: [mem 0xc1f00000-0xc1f3ffff]
[    1.421916] pci 0000:07:00.0: reg 0x14: [mem 0xc1f40000-0xc1f40fff]
[    1.422022] pci 0000:07:00.0: supports D1 D2
[    1.422023] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.422027] pci 0000:07:00.0: PME# disabled
[    1.427549] pci_bus 0000:07: fixups for bus
[    1.427553] pci 0000:06:00.0: PCI bridge to [bus 07]
[    1.427572] pci 0000:06:00.0:   bridge window [mem 0xc1f00000-0xc1ffffff]
[    1.427577] pci_bus 0000:07: bus scan returning with max=07
[    1.427581] pci 0000:06:03.0: scanning [bus 08-38] behind bridge, pass 0
[    1.427671] pci_bus 0000:08: scanning bus
[    1.427674] pci_bus 0000:08: fixups for bus
[    1.427675] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    1.427680] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    1.427684] pci 0000:06:03.0:   bridge window [mem 0xc2000000-0xc5ffffff]
[    1.427689] pci 0000:06:03.0:   bridge window [mem 0xce000000-0xd1ffffff 64bit pref]
[    1.427690] pci_bus 0000:08: bus scan returning with max=08
[    1.427694] pci 0000:06:04.0: scanning [bus 39-69] behind bridge, pass 0
[    1.427779] pci_bus 0000:39: scanning bus
[    1.427781] pci_bus 0000:39: fixups for bus
[    1.427783] pci 0000:06:04.0: PCI bridge to [bus 39-69]
[    1.427788] pci 0000:06:04.0:   bridge window [io  0x5000-0x5fff]
[    1.427791] pci 0000:06:04.0:   bridge window [mem 0xc6000000-0xc9ffffff]
[    1.427796] pci 0000:06:04.0:   bridge window [mem 0xd2000000-0xd5ffffff 64bit pref]
[    1.427798] pci_bus 0000:39: bus scan returning with max=39
[    1.427801] pci 0000:06:05.0: scanning [bus 6a-6a] behind bridge, pass 0
[    1.427850] pci_bus 0000:6a: scanning bus
[    1.427853] pci_bus 0000:6a: fixups for bus
[    1.427854] pci 0000:06:05.0: PCI bridge to [bus 6a]
[    1.427861] pci 0000:06:05.0:   bridge window [mem 0xc1e00000-0xc1efffff]
[    1.427866] pci_bus 0000:6a: bus scan returning with max=6a
[    1.427869] pci 0000:06:06.0: scanning [bus 6b-6b] behind bridge, pass 0
[    1.427923] pci_bus 0000:6b: scanning bus
[    1.427925] pci_bus 0000:6b: fixups for bus
[    1.427926] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    1.427933] pci 0000:06:06.0:   bridge window [mem 0xc1d00000-0xc1dfffff]
[    1.427938] pci_bus 0000:6b: bus scan returning with max=6b
[    1.427942] pci 0000:06:00.0: scanning [bus 07-07] behind bridge, pass 1
[    1.427947] pci 0000:06:03.0: scanning [bus 08-38] behind bridge, pass 1
[    1.427952] pci 0000:06:04.0: scanning [bus 39-69] behind bridge, pass 1
[    1.427957] pci 0000:06:05.0: scanning [bus 6a-6a] behind bridge, pass 1
[    1.427962] pci 0000:06:06.0: scanning [bus 6b-6b] behind bridge, pass 1
[    1.427966] pci_bus 0000:06: bus scan returning with max=6b
[    1.427969] pci 0000:05:00.0: scanning [bus 06-6b] behind bridge, pass 1
[    1.427973] pci_bus 0000:05: bus scan returning with max=6b
[    1.427976] pci 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 0
[    1.428040] pci_bus 0000:02: scanning bus
[    1.428043] pci_bus 0000:02: fixups for bus
[    1.428044] pci 0000:00:01.2: PCI bridge to [bus 02]
[    1.428050] pci 0000:00:01.2:   bridge window [mem 0xc1b00000-0xc1bfffff]
[    1.428056] pci_bus 0000:02: bus scan returning with max=02
[    1.428064] pci 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 0
[    1.428146] pci_bus 0000:03: scanning bus
[    1.428228] pci 0000:03:00.0: [14e4:16a3] type 00 class 0x020000
[    1.428262] pci 0000:03:00.0: reg 0x10: [mem 0xc1800000-0xc180ffff 64bit pref]
[    1.428287] pci 0000:03:00.0: reg 0x18: [mem 0xc1810000-0xc181ffff 64bit pref]
[    1.428330] pci 0000:03:00.0: reg 0x30: [mem 0xfffff800-0xffffffff pref]
[    1.428445] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    1.428451] pci 0000:03:00.0: PME# disabled
[    1.428601] pci 0000:03:00.1: [14e4:16bc] type 00 class 0x080501
[    1.428641] pci 0000:03:00.1: reg 0x10: [mem 0xc1820000-0xc182ffff 64bit pref]
[    1.428839] pci 0000:03:00.1: PME# supported from D0 D3hot D3cold
[    1.428845] pci 0000:03:00.1: PME# disabled
[    1.428889] pci 0000:03:00.1: System wakeup disabled by ACPI
[    1.434328] pci_bus 0000:03: fixups for bus
[    1.434329] pci 0000:00:1c.0: PCI bridge to [bus 03]
[    1.434336] pci 0000:00:1c.0:   bridge window [mem 0xc1a00000-0xc1afffff]
[    1.434344] pci 0000:00:1c.0:   bridge window [mem 0xc1800000-0xc18fffff 64bit pref]
[    1.434346] pci_bus 0000:03: bus scan returning with max=03
[    1.434351] pci 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 0
[    1.434438] pci_bus 0000:04: scanning bus
[    1.434492] pci 0000:04:00.0: [14e4:4331] type 00 class 0x028000
[    1.434525] pci 0000:04:00.0: reg 0x10: [mem 0xc1900000-0xc1903fff 64bit]
[    1.434700] pci 0000:04:00.0: supports D1 D2
[    1.434702] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    1.434708] pci 0000:04:00.0: PME# disabled
[    1.434755] pci 0000:04:00.0: System wakeup disabled by ACPI
[    1.440957] pci_bus 0000:04: fixups for bus
[    1.440959] pci 0000:00:1c.1: PCI bridge to [bus 04]
[    1.440966] pci 0000:00:1c.1:   bridge window [mem 0xc1900000-0xc19fffff]
[    1.440974] pci_bus 0000:04: bus scan returning with max=04
[    1.440980] pci 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 1
[    1.440983] pci 0000:00:01.1: scanning [bus 05-9b] behind bridge, pass 1
[    1.440988] pci 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 1
[    1.440997] pci 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 1
[    1.441005] pci 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 1
[    1.441012] pci_bus 0000:00: bus scan returning with max=9b
[    1.442255] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    1.442369] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    1.442481] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    1.442591] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    1.442700] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    1.442811] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    1.442921] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    1.443029] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    1.444715] ACPI: Enabled 3 GPEs in block 00 to 3F
[    1.444723] ACPI: \_SB_.PCI0: notify handler is installed
[    1.444824] Found 1 acpi root devices
[    1.444866] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    1.445013] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    1.445027] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    1.445031] vgaarb: loaded
[    1.445032] vgaarb: bridge control possible 0000:01:00.0
[    1.445033] vgaarb: no bridge control possible 0000:00:02.0
[    1.445088] PCI: Using ACPI for IRQ routing
[    1.448625] PCI: pci_cache_line_size set to 64 bytes
[    1.448645] pci 0000:01:00.0: BAR 0: reserving [mem 0xc0000000-0xc0ffffff flags 0x40200] (d=0, p=0)
[    1.448647] pci 0000:01:00.0: BAR 1: reserving [mem 0x90000000-0x9fffffff flags 0x14220c] (d=0, p=0)
[    1.448649] pci 0000:01:00.0: BAR 3: reserving [mem 0xa0000000-0xa1ffffff flags 0x14220c] (d=0, p=0)
[    1.448657] pci 0000:07:00.0: BAR 0: reserving [mem 0xc1f00000-0xc1f3ffff flags 0x40200] (d=0, p=0)
[    1.448659] pci 0000:07:00.0: BAR 1: reserving [mem 0xc1f40000-0xc1f40fff flags 0x40200] (d=0, p=0)
[    1.448666] pci 0000:00:02.0: BAR 0: reserving [mem 0xc1400000-0xc17fffff flags 0x140204] (d=0, p=0)
[    1.448669] pci 0000:00:02.0: BAR 2: reserving [mem 0xb0000000-0xbfffffff flags 0x14220c] (d=0, p=0)
[    1.448671] pci 0000:00:02.0: BAR 4: reserving [io  0x3000-0x303f flags 0x40101] (d=0, p=0)
[    1.448679] pci 0000:00:16.0: BAR 0: reserving [mem 0xc1c17100-0xc1c1710f flags 0x140204] (d=0, p=0)
[    1.448683] pci 0000:00:1a.0: BAR 0: reserving [mem 0xc1c16c00-0xc1c16fff flags 0x40200] (d=0, p=0)
[    1.448732] pci 0000:03:00.1: BAR 0: reserving [mem 0xc1820000-0xc182ffff flags 0x14220c] (d=0, p=0)
[    1.448758] pci 0000:04:00.0: BAR 0: reserving [mem 0xc1900000-0xc1903fff flags 0x140204] (d=0, p=0)
[    1.448762] pci 0000:00:1d.0: BAR 0: reserving [mem 0xc1c16800-0xc1c16bff flags 0x40200] (d=0, p=0)
[    1.448768] pci 0000:00:1f.2: BAR 0: reserving [io  0x3088-0x308f flags 0x40101] (d=0, p=0)
[    1.448770] pci 0000:00:1f.2: BAR 1: reserving [io  0x309c-0x309f flags 0x40101] (d=0, p=0)
[    1.448772] pci 0000:00:1f.2: BAR 2: reserving [io  0x3080-0x3087 flags 0x40101] (d=0, p=0)
[    1.448774] pci 0000:00:1f.2: BAR 3: reserving [io  0x3098-0x309b flags 0x40101] (d=0, p=0)
[    1.448776] pci 0000:00:1f.2: BAR 4: reserving [io  0x3060-0x307f flags 0x40101] (d=0, p=0)
[    1.448777] pci 0000:00:1f.2: BAR 5: reserving [mem 0xc1c16000-0xc1c167ff flags 0x40200] (d=0, p=0)
[    1.448790] pci 0000:01:00.0: BAR 5: reserving [io  0x2000-0x207f flags 0x40101] (d=1, p=1)
[    1.448794] pci 0000:01:00.1: BAR 0: reserving [mem 0xc1080000-0xc1083fff flags 0x40200] (d=1, p=1)
[    1.448809] pci 0000:00:14.0: BAR 0: reserving [mem 0xc1c00000-0xc1c0ffff flags 0x140204] (d=1, p=1)
[    1.448816] pci 0000:00:1b.0: BAR 0: reserving [mem 0xc1c10000-0xc1c13fff flags 0x140204] (d=1, p=1)
[    1.448861] pci 0000:03:00.0: BAR 0: reserving [mem 0xc1800000-0xc180ffff flags 0x14220c] (d=1, p=1)
[    1.448863] pci 0000:03:00.0: BAR 2: reserving [mem 0xc1810000-0xc181ffff flags 0x14220c] (d=1, p=1)
[    1.448899] pci 0000:00:1f.3: BAR 0: reserving [mem 0xc1c17000-0xc1c170ff flags 0x140204] (d=1, p=1)
[    1.448901] pci 0000:00:1f.3: BAR 4: reserving [io  0xefa0-0xefbf flags 0x40101] (d=1, p=1)
[    1.448905] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    1.448907] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    1.448908] e820: reserve RAM buffer [mem 0x8ad14000-0x8bffffff]
[    1.448911] e820: reserve RAM buffer [mem 0x8ad69000-0x8bffffff]
[    1.448913] e820: reserve RAM buffer [mem 0x8ae3a000-0x8bffffff]
[    1.448915] e820: reserve RAM buffer [mem 0x8aece000-0x8bffffff]
[    1.448917] e820: reserve RAM buffer [mem 0x8af92000-0x8bffffff]
[    1.448918] e820: reserve RAM buffer [mem 0x8b000000-0x8bffffff]
[    1.448920] e820: reserve RAM buffer [mem 0x46f600000-0x46fffffff]
[    1.449063] NetLabel: Initializing
[    1.449064] NetLabel:  domain hash size = 128
[    1.449065] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.449087] NetLabel:  unlabeled traffic allowed by default
[    1.449116] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.449121] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.451167] Switched to clocksource hpet
[    1.462644] pnp: PnP ACPI init
[    1.462668] ACPI: bus type PNP registered
[    1.462894] pnp 00:00: [dma 4]
[    1.462942] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    1.462980] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    1.463175] system 00:02: [mem 0xfed00000-0xfed003ff] has been reserved
[    1.463179] system 00:02: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    1.463230] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    1.463287] system 00:04: [io  0x1000-0x100f] has been reserved
[    1.463290] system 00:04: [io  0x0400-0x047f] could not be reserved
[    1.463292] system 00:04: [io  0x0500-0x057f] has been reserved
[    1.463295] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.463336] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.463388] pnp 00:06: Plug and Play ACPI device, IDs APP0001 (active)
[    1.463502] pnp 00:07: Plug and Play ACPI device, IDs APP000b (active)
[    1.463771] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.463773] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
[    1.463775] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
[    1.463777] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
[    1.463780] system 00:08: [mem 0xe0000000-0xefffffff] could not be reserved
[    1.463782] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[    1.463784] system 00:08: [mem 0xfed90000-0xfed93fff] could not be reserved
[    1.463786] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[    1.463789] system 00:08: [mem 0xff000000-0xffffffff] could not be reserved
[    1.463790] system 00:08: [mem 0xfee00000-0xfeefffff] has been reserved
[    1.463793] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.466710] system 00:09: [mem 0x20000000-0x201fffff] has been reserved
[    1.466713] system 00:09: [mem 0x40000000-0x401fffff] could not be reserved
[    1.466717] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.466727] pnp: PnP ACPI: found 10 devices
[    1.466728] ACPI: bus type PNP unregistered
[    1.474160] pci 0000:03:00.0: no compatible bridge window for [mem 0xfffff800-0xffffffff pref]
[    1.474193] pci 0000:06:05.0: bridge window [io  0x1000-0x0fff] to [bus 6a] add_size 1000
[    1.474196] pci 0000:06:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 6a] add_size 200000
[    1.474203] pci 0000:06:06.0: bridge window [io  0x1000-0x0fff] to [bus 6b] add_size 1000
[    1.474205] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 6b] add_size 200000
[    1.474249] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.474252] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    1.474255] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xc10fffff]
[    1.474258] pci 0000:00:01.0:   bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[    1.474263] pci 0000:06:05.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    1.474265] pci 0000:06:06.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    1.474267] pci 0000:06:05.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.474268] pci 0000:06:06.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.474271] pci 0000:06:05.0: BAR 15: can't assign mem pref (size 0x200000)
[    1.474281] pci 0000:06:06.0: BAR 15: can't assign mem pref (size 0x200000)
[    1.474283] pci 0000:06:05.0: BAR 13: can't assign io (size 0x1000)
[    1.474284] pci 0000:06:06.0: BAR 13: can't assign io (size 0x1000)
[    1.474288] pci 0000:06:06.0: BAR 15: can't assign mem pref (size 0x200000)
[    1.474290] pci 0000:06:06.0: BAR 13: can't assign io (size 0x1000)
[    1.474292] pci 0000:06:05.0: BAR 15: can't assign mem pref (size 0x200000)
[    1.474294] pci 0000:06:05.0: BAR 13: can't assign io (size 0x1000)
[    1.474297] pci 0000:06:00.0: PCI bridge to [bus 07]
[    1.474301] pci 0000:06:00.0:   bridge window [mem 0xc1f00000-0xc1ffffff]
[    1.474308] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    1.474311] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    1.474315] pci 0000:06:03.0:   bridge window [mem 0xc2000000-0xc5ffffff]
[    1.474318] pci 0000:06:03.0:   bridge window [mem 0xce000000-0xd1ffffff 64bit pref]
[    1.474323] pci 0000:06:04.0: PCI bridge to [bus 39-69]
[    1.474326] pci 0000:06:04.0:   bridge window [io  0x5000-0x5fff]
[    1.474330] pci 0000:06:04.0:   bridge window [mem 0xc6000000-0xc9ffffff]
[    1.474333] pci 0000:06:04.0:   bridge window [mem 0xd2000000-0xd5ffffff 64bit pref]
[    1.474338] pci 0000:06:05.0: PCI bridge to [bus 6a]
[    1.474342] pci 0000:06:05.0:   bridge window [mem 0xc1e00000-0xc1efffff]
[    1.474349] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    1.474353] pci 0000:06:06.0:   bridge window [mem 0xc1d00000-0xc1dfffff]
[    1.474360] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    1.474362] pci 0000:05:00.0:   bridge window [io  0x4000-0x5fff]
[    1.474366] pci 0000:05:00.0:   bridge window [mem 0xc1d00000-0xc9ffffff]
[    1.474370] pci 0000:05:00.0:   bridge window [mem 0xce000000-0xd5ffffff 64bit pref]
[    1.474374] pci 0000:00:01.1: PCI bridge to [bus 05-9b]
[    1.474376] pci 0000:00:01.1:   bridge window [io  0x4000-0x6fff]
[    1.474379] pci 0000:00:01.1:   bridge window [mem 0xc1d00000-0xcdffffff]
[    1.474382] pci 0000:00:01.1:   bridge window [mem 0xce000000-0xd9ffffff 64bit pref]
[    1.474385] pci 0000:00:01.2: PCI bridge to [bus 02]
[    1.474390] pci 0000:00:01.2:   bridge window [mem 0xc1b00000-0xc1bfffff]
[    1.474400] pci 0000:03:00.0: BAR 6: assigned [mem 0xc1830000-0xc18307ff pref]
[    1.474402] pci 0000:00:1c.0: PCI bridge to [bus 03]
[    1.474412] pci 0000:00:1c.0:   bridge window [mem 0xc1a00000-0xc1afffff]
[    1.474417] pci 0000:00:1c.0:   bridge window [mem 0xc1800000-0xc18fffff 64bit pref]
[    1.474426] pci 0000:00:1c.1: PCI bridge to [bus 04]
[    1.474433] pci 0000:00:1c.1:   bridge window [mem 0xc1900000-0xc19fffff]
[    1.474445] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    1.474447] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    1.474448] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    1.474450] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
[    1.474451] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
[    1.474453] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
[    1.474454] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
[    1.474456] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
[    1.474457] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
[    1.474459] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
[    1.474460] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
[    1.474462] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
[    1.474463] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
[    1.474465] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
[    1.474466] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
[    1.474468] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff]
[    1.474469] pci_bus 0000:00: resource 20 [mem 0x8fa00000-0xfeafffff]
[    1.474471] pci_bus 0000:00: resource 21 [mem 0xfed40000-0xfed44fff]
[    1.474472] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    1.474474] pci_bus 0000:01: resource 1 [mem 0xc0000000-0xc10fffff]
[    1.474475] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa1ffffff 64bit pref]
[    1.474477] pci_bus 0000:05: resource 0 [io  0x4000-0x6fff]
[    1.474479] pci_bus 0000:05: resource 1 [mem 0xc1d00000-0xcdffffff]
[    1.474480] pci_bus 0000:05: resource 2 [mem 0xce000000-0xd9ffffff 64bit pref]
[    1.474482] pci_bus 0000:06: resource 0 [io  0x4000-0x5fff]
[    1.474483] pci_bus 0000:06: resource 1 [mem 0xc1d00000-0xc9ffffff]
[    1.474485] pci_bus 0000:06: resource 2 [mem 0xce000000-0xd5ffffff 64bit pref]
[    1.474487] pci_bus 0000:07: resource 1 [mem 0xc1f00000-0xc1ffffff]
[    1.474488] pci_bus 0000:08: resource 0 [io  0x4000-0x4fff]
[    1.474500] pci_bus 0000:08: resource 1 [mem 0xc2000000-0xc5ffffff]
[    1.474502] pci_bus 0000:08: resource 2 [mem 0xce000000-0xd1ffffff 64bit pref]
[    1.474503] pci_bus 0000:39: resource 0 [io  0x5000-0x5fff]
[    1.474505] pci_bus 0000:39: resource 1 [mem 0xc6000000-0xc9ffffff]
[    1.474506] pci_bus 0000:39: resource 2 [mem 0xd2000000-0xd5ffffff 64bit pref]
[    1.474508] pci_bus 0000:6a: resource 1 [mem 0xc1e00000-0xc1efffff]
[    1.474510] pci_bus 0000:6b: resource 1 [mem 0xc1d00000-0xc1dfffff]
[    1.474511] pci_bus 0000:02: resource 1 [mem 0xc1b00000-0xc1bfffff]
[    1.474513] pci_bus 0000:03: resource 1 [mem 0xc1a00000-0xc1afffff]
[    1.474515] pci_bus 0000:03: resource 2 [mem 0xc1800000-0xc18fffff 64bit pref]
[    1.474516] pci_bus 0000:04: resource 1 [mem 0xc1900000-0xc19fffff]
[    1.474544] NET: Registered protocol family 2
[    1.474977] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    1.476163] TCP bind hash table entries: 65536 (order: 10, 4194304 bytes)
[    1.478074] TCP: Hash tables configured (established 131072 bind 65536)
[    1.478107] TCP: reno registered
[    1.478422] UDP hash table entries: 8192 (order: 8, 1310720 bytes)
[    1.479218] UDP-Lite hash table entries: 8192 (order: 8, 1310720 bytes)
[    1.479821] NET: Registered protocol family 1
[    1.479843] pci 0000:00:02.0: calling pci_fixup_video+0x0/0xe0
[    1.479846] pci 0000:00:02.0: Boot video device
[    1.479852] pci 0000:00:14.0: calling quirk_usb_early_handoff+0x0/0x6f0
[    1.479860] pci 0000:00:14.0: enabling device (0000 -> 0002)
[    1.480017] pci 0000:00:14.0: can't derive routing for PCI INT A
[    1.480019] pci 0000:00:14.0: PCI INT A: no GSI
[    1.480221] pci 0000:00:14.0: can't derive routing for PCI INT A
[    1.480233] pci 0000:00:1a.0: calling quirk_usb_early_handoff+0x0/0x6f0
[    1.480544] pci 0000:00:1d.0: calling quirk_usb_early_handoff+0x0/0x6f0
[    1.480845] pci 0000:01:00.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0x30
[    1.480869] pci 0000:01:00.0: calling pci_fixup_video+0x0/0xe0
[    1.480874] pci 0000:01:00.1: calling nv_msi_ht_cap_quirk_leaf+0x0/0x30
[    1.480974] PCI: CLS 256 bytes, default 64
[    1.481072] Unpacking initramfs...
[    2.120613] debug: unmapping init [mem 0xffff880032db2000-0xffff8800356d0fff]
[    2.130141] DMA-API: preallocated 65536 debug entries
[    2.130143] DMA-API: debugging enabled by kernel config
[    2.130150] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.130153] software IO TLB [mem 0x7b873000-0x7f873000] (64MB) mapped at [ffff88007b873000-ffff88007f872fff]
[    2.130590] Scanning for low memory corruption every 60 seconds
[    2.131009] audit: initializing netlink socket (disabled)
[    2.131039] type=2000 audit(1386801678.126:1): initialized
[    2.145303] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.147442] VFS: Disk quotas dquot_6.5.2
[    2.147486] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.147720] msgmni has been set to 31747
[    2.147957] cryptomgr_test (61) used greatest stack depth: 6880 bytes left
[    2.147989] cryptomgr_test (62) used greatest stack depth: 6672 bytes left
[    2.148128] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.148206] io scheduler noop registered
[    2.148207] io scheduler deadline registered
[    2.148262] io scheduler cfq registered (default)
[    2.150096] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    2.150307] pcieport 0000:00:01.1: irq 41 for MSI/MSI-X
[    2.150355] pcieport 0000:00:01.2: enabling device (0000 -> 0002)
[    2.150496] pcieport 0000:00:01.2: enabling bus mastering
[    2.150516] pcieport 0000:00:01.2: irq 42 for MSI/MSI-X
[    2.151073] pcieport 0000:05:00.0: irq 43 for MSI/MSI-X
[    2.151214] pcieport 0000:06:00.0: irq 44 for MSI/MSI-X
[    2.151286] pcieport 0000:06:03.0: enabling device (0000 -> 0003)
[    2.151346] pcieport 0000:06:03.0: enabling bus mastering
[    2.151362] pcieport 0000:06:03.0: irq 45 for MSI/MSI-X
[    2.151444] pcieport 0000:06:04.0: enabling device (0000 -> 0003)
[    2.151505] pcieport 0000:06:04.0: enabling bus mastering
[    2.151520] pcieport 0000:06:04.0: irq 46 for MSI/MSI-X
[    2.151607] pcieport 0000:06:05.0: enabling device (0000 -> 0002)
[    2.151666] pcieport 0000:06:05.0: enabling bus mastering
[    2.151681] pcieport 0000:06:05.0: irq 47 for MSI/MSI-X
[    2.151768] pcieport 0000:06:06.0: enabling device (0000 -> 0002)
[    2.151827] pcieport 0000:06:06.0: enabling bus mastering
[    2.151841] pcieport 0000:06:06.0: irq 48 for MSI/MSI-X
[    2.151958] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.152214] pciehp 0000:06:03.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[    2.152268] pci_bus 0000:08: dev 00, created physical slot 3-1
[    2.152297] pciehp 0000:06:03.0:pcie24: service driver pciehp loaded
[    2.152311] pciehp 0000:06:04.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[    2.152350] pci_bus 0000:39: dev 00, created physical slot 4-1
[    2.152374] pciehp 0000:06:04.0:pcie24: service driver pciehp loaded
[    2.152385] pciehp 0000:06:05.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[    2.152424] pci_bus 0000:6a: dev 00, created physical slot 5-1
[    2.152447] pciehp 0000:06:05.0:pcie24: service driver pciehp loaded
[    2.152458] pciehp 0000:06:06.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[    2.152494] pci_bus 0000:6b: dev 00, created physical slot 6
[    2.152520] pciehp 0000:06:06.0:pcie24: service driver pciehp loaded
[    2.152528] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.152614] efifb: probing for efifb
[    2.152973] efifb: framebuffer at 0x90020000, mapped to 0xffffc9000bd00000, using 2432k, total 2432k
[    2.152974] efifb: mode is 800x600x32, linelength=4096, pages=1
[    2.152975] efifb: scrolling: redraw
[    2.152977] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.154469] Console: switching to colour frame buffer device 100x37
[    2.155789] fb0: EFI VGA frame buffer device
[    2.155796] intel_idle: MWAIT substates: 0x21120
[    2.155798] intel_idle: v0.4 model 0x3A
[    2.155799] intel_idle: lapic_timer_reliable_states 0xffffffff
[    2.156097] GHES: HEST is not enabled!
[    2.156168] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    2.156790] Linux agpgart interface v0.103
[    2.156926] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    3.256788] tsc: Refined TSC clocksource calibration: 2693.880 MHz
[    3.257720] i8042: No controller found
[    3.257874] mousedev: PS/2 mouse device common for all mice
[    3.257948] rtc_cmos 00:05: RTC can wake from S4
[    3.258124] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    3.258158] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    3.258167] Intel P-state driver initializing.
[    3.258190] Intel pstate controlling: cpu 0
[    3.258206] Intel pstate controlling: cpu 1
[    3.258221] Intel pstate controlling: cpu 2
[    3.258236] Intel pstate controlling: cpu 3
[    3.258248] Intel pstate controlling: cpu 4
[    3.258272] Intel pstate controlling: cpu 5
[    3.258287] Intel pstate controlling: cpu 6
[    3.258303] Intel pstate controlling: cpu 7
[    3.423604] intel_rapl: domain uncore energy ctr 60245:60245 not working, skip
[    3.423730] drop_monitor: Initializing network drop monitor service
[    3.423777] Netfilter messages via NETLINK v0.30.
[    3.423805] ip_set: protocol 6
[    3.423865] TCP: cubic registered
[    3.424012] NET: Registered protocol family 10
[    3.424273] NET: Registered protocol family 17
[    3.424315] Key type dns_resolver registered
[    3.424748] registered taskstats version 1
[    3.426333]   Magic number: 9:331:704
[    3.426338] event_source cpu: hash matches
[    3.426388]  cpu: hash matches
[    3.426444] rtc_cmos 00:05: setting system clock to 2013-12-11 22:41:20 UTC (1386801680)
[    3.426513] PM: Checking hibernation image partition /dev/sda5
[    3.426523] PM: Hibernation image not present or could not be loaded.
[    3.426605] debug: unmapping init [mem 0xffffffff81ae3000-0xffffffff81c0efff]
[    3.426733] Write protecting the kernel read-only data: 10240k
[    3.426973] debug: unmapping init [mem 0xffff880002562000-0xffff8800025fffff]
[    3.427109] debug: unmapping init [mem 0xffff88000285d000-0xffff8800029fffff]
[    3.429403] mount (69) used greatest stack depth: 5648 bytes left
[    3.435927] systemd-udevd[79]: starting version 208
[    3.443283] [drm] Initialized drm 1.1.0 20060810
[    3.445833] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    3.445916] ACPI: Lid Switch [LID0]
[    3.445960] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    3.445974] ACPI: Power Button [PWRB]
[    3.446043] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
[    3.446046] ACPI: Sleep Button [SLPB]
[    3.446095] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    3.446097] ACPI: Power Button [PWRF]
[    3.460521] [drm] Memory usable by graphics device = 2048M
[    3.547363] i915 0000:00:02.0: irq 49 for MSI/MSI-X
[    3.547385] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.547387] [drm] Driver supports precise vblank timestamp query.
[    3.547396] i915 0000:00:02.0: Invalid ROM contents
[    3.547430] [drm] failed to find VBIOS tables
[    3.547773] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=none
[    3.783799] [drm] failed to retrieve link info, disabling eDP
[    4.253848] Switched to clocksource tsc
[    4.301655] [Firmware Bug]: ACPI(GFX0) defines _DOD but not _DOS
[    4.301714] ACPI: Video Device [GFX0] (multi-head: yes  rom: yes  post: no)
[    4.303773] acpi device:03: registered as cooling_device0
[    4.303966] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/LNXVIDEO:00/input/input4
[    4.362329] ACPI: Video Device [IGPU] (multi-head: yes  rom: no  post: no)
[    4.362979] acpi device:21: registered as cooling_device1
[    4.363147] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input5
[    4.363237] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    4.367750] wmi: Mapper loaded
[    4.422608] ACPI Warning: \_SB_.PCI0.IGPU._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.422658] ACPI Warning: \_SB_.PCI0.IGPU._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.422691] ACPI Warning: \_SB_.PCI0.P0P2.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.422719] ACPI Warning: \_SB_.PCI0.P0P2.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.422774] checking generic (90020000 260000) vs hw (90000000 10000000)
[    4.422776] fb: conflicting fb hw usage nouveaufb vs EFI VGA - removing generic driver
[    4.422839] Console: switching to colour dummy device 80x25
[    4.423332] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    4.424081] nouveau  [  DEVICE][0000:01:00.0] BOOT0  : 0x0e7150a2
[    4.424085] nouveau  [  DEVICE][0000:01:00.0] Chipset: GK107 (NVE7)
[    4.424086] nouveau  [  DEVICE][0000:01:00.0] Family : NVE0
[    4.426835] nouveau  [   VBIOS][0000:01:00.0] checking PRAMIN for image...
[    4.514255] nouveau  [   VBIOS][0000:01:00.0] ... appears to be valid
[    4.514256] nouveau  [   VBIOS][0000:01:00.0] using image from PRAMIN
[    4.514355] nouveau  [   VBIOS][0000:01:00.0] BIT signature found
[    4.514357] nouveau  [   VBIOS][0000:01:00.0] version 80.07.26.04.01
[    4.515235] nouveau 0000:01:00.0: irq 50 for MSI/MSI-X
[    4.515283] nouveau  [     PMC][0000:01:00.0] MSI interrupts enabled
[    4.515333] nouveau  [     PFB][0000:01:00.0] RAM type: GDDR5
[    4.515334] nouveau  [     PFB][0000:01:00.0] RAM size: 1024 MiB
[    4.515335] nouveau  [     PFB][0000:01:00.0]    ZCOMP: 0 tags
[    4.549053] nouveau  [  PTHERM][0000:01:00.0] FAN control: none / external
[    4.549057] nouveau  [  PTHERM][0000:01:00.0] fan management: automatic
[    4.549079] nouveau  [  PTHERM][0000:01:00.0] internal sensor: yes
[    4.549144] nouveau  [     CLK][0000:01:00.0] 07: core 270-405 MHz memory 419 MHz 
[    4.549189] nouveau  [     CLK][0000:01:00.0] 0a: core 270-900 MHz memory 780 MHz 
[    4.549222] nouveau  [     CLK][0000:01:00.0] 0e: core 270-900 MHz memory 2000 MHz 
[    4.549244] nouveau  [     CLK][0000:01:00.0] 0f: core 270-900 MHz memory 2508 MHz 
[    4.549386] nouveau  [     CLK][0000:01:00.0] --: core 405 MHz memory 340 MHz 
[    4.573144] [TTM] Zone  kernel: Available graphics memory: 8127284 kiB
[    4.573145] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    4.573146] [TTM] Initializing pool allocator
[    4.573150] [TTM] Initializing DMA pool allocator
[    4.573182] nouveau  [     DRM] VRAM: 1024 MiB
[    4.573183] nouveau  [     DRM] GART: 1048576 MiB
[    4.573185] nouveau  [     DRM] TMDS table version 2.0
[    4.573186] nouveau  [     DRM] DCB version 4.0
[    4.573187] nouveau  [     DRM] DCB outp 00: 048101b6 0f230010
[    4.573188] nouveau  [     DRM] DCB outp 01: 018212d6 0f220020
[    4.573189] nouveau  [     DRM] DCB outp 02: 01021212 00020020
[    4.573190] nouveau  [     DRM] DCB outp 03: 088324c6 0f220010
[    4.573191] nouveau  [     DRM] DCB outp 04: 08032402 00020010
[    4.573192] nouveau  [     DRM] DCB outp 05: 02843862 00020010
[    4.573193] nouveau  [     DRM] DCB conn 00: 00020047
[    4.573195] nouveau  [     DRM] DCB conn 01: 02208146
[    4.573196] nouveau  [     DRM] DCB conn 02: 01104246
[    4.573197] nouveau  [     DRM] DCB conn 03: 00410361
[    4.574567] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.574568] [drm] No driver support for vblank timestamp query.
[    4.574570] nouveau  [     DRM] ACPI backlight interface available, not registering our own
[    4.585095] nouveau  [     DRM] MM: using COPY for buffer copies
[    4.624144] nouveau  [     DRM] allocated 2880x1800 fb: 0x80000, bo ffff880448520800
[    4.624229] fbcon: nouveaufb (fb0) is primary device
[    5.079481] Console: switching to colour frame buffer device 360x112
[    5.085858] nouveau 0000:01:00.0: fb0: nouveaufb frame buffer device
[    5.085859] nouveau 0000:01:00.0: registered panic notifier
[    5.085863] [drm] Initialized nouveau 1.1.1 20120801 for 0000:01:00.0 on minor 1
[    5.086133] modprobe (80) used greatest stack depth: 2928 bytes left
[    5.127041] sdhci: Secure Digital Host Controller Interface driver
[    5.127044] sdhci: Copyright(c) Pierre Ossman
[    5.127733] sdhci-pci 0000:03:00.1: SDHCI controller found [14e4:16bc] (rev 10)
[    5.127962] ACPI: bus type USB registered
[    5.128000] usbcore: registered new interface driver usbfs
[    5.128101] usbcore: registered new interface driver hub
[    5.128160] usbcore: registered new device driver usb
[    5.128265] mmc0: SDHCI controller on PCI [0000:03:00.1] using ADMA
[    5.128634] SCSI subsystem initialized
[    5.129135] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.129418] ehci-pci: EHCI PCI platform driver
[    5.129651] ehci-pci 0000:00:1a.0: enabling bus mastering
[    5.129679] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    5.129702] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    5.129720] ehci-pci 0000:00:1a.0: debug port 2
[    5.131865] libata version 3.00 loaded.
[    5.133666] ehci-pci 0000:00:1a.0: cache line size of 256 is not supported
[    5.133694] ehci-pci 0000:00:1a.0: irq 23, io mem 0xc1c16c00
[    5.143336] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    5.143689] hub 1-0:1.0: USB hub found
[    5.143700] hub 1-0:1.0: 2 ports detected
[    5.144052] ehci-pci 0000:00:1d.0: enabling bus mastering
[    5.144065] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    5.144070] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    5.144086] ehci-pci 0000:00:1d.0: debug port 2
[    5.148002] ehci-pci 0000:00:1d.0: cache line size of 256 is not supported
[    5.148018] ehci-pci 0000:00:1d.0: irq 22, io mem 0xc1c16800
[    5.156667] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    5.156903] hub 2-0:1.0: USB hub found
[    5.156912] hub 2-0:1.0: 2 ports detected
[    5.157199] xhci_hcd 0000:00:14.0: can't derive routing for PCI INT A
[    5.157202] xhci_hcd 0000:00:14.0: PCI INT A: no GSI
[    5.157225] xhci_hcd 0000:00:14.0: enabling bus mastering
[    5.157230] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    5.157236] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    5.157463] xhci_hcd 0000:00:14.0: cache line size of 256 is not supported
[    5.157488] xhci_hcd 0000:00:14.0: irq 51 for MSI/MSI-X
[    5.157693] hub 3-0:1.0: USB hub found
[    5.157728] hub 3-0:1.0: 4 ports detected
[    5.158028] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    5.158031] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    5.158213] hub 4-0:1.0: USB hub found
[    5.158228] hub 4-0:1.0: 4 ports detected
[    5.176888] ahci 0000:00:1f.2: version 3.0
[    5.177129] ahci 0000:00:1f.2: irq 52 for MSI/MSI-X
[    5.177243] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode
[    5.177245] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst 
[    5.178257] scsi0 : ahci
[    5.178407] scsi1 : ahci
[    5.178507] scsi2 : ahci
[    5.178609] scsi3 : ahci
[    5.178707] scsi4 : ahci
[    5.178807] scsi5 : ahci
[    5.178856] ata1: SATA max UDMA/133 abar m2048@0xc1c16000 port 0xc1c16100 irq 52
[    5.178857] ata2: DUMMY
[    5.178858] ata3: DUMMY
[    5.178859] ata4: DUMMY
[    5.178859] ata5: DUMMY
[    5.178860] ata6: DUMMY
[    5.350166] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[    5.449955] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    5.496574] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    5.496964] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[    5.497050] ata1.00: ATA-8: APPLE SSD SD512E, 1027AP, max UDMA/133
[    5.497052] ata1.00: 977105060 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    5.497493] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[    5.497581] ata1.00: configured for UDMA/133
[    5.497898] scsi 0:0:0:0: Direct-Access     ATA      APPLE SSD SD512E 1027 PQ: 0 ANSI: 5
[    5.501538] sd 0:0:0:0: [sda] 977105060 512-byte logical blocks: (500 GB/465 GiB)
[    5.501541] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    5.501606] sd 0:0:0:0: [sda] Write Protect is off
[    5.501608] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    5.501628] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.505768]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    5.506716] sd 0:0:0:0: [sda] Attached SCSI disk
[    5.543096] PM: Starting manual resume from disk
[    5.543100] PM: Hibernation image partition 8:5 present
[    5.543101] PM: Looking for hibernation image.
[    5.543278] PM: Image not found (code -22)
[    5.543279] PM: Hibernation image not present or could not be loaded.
[    5.573948] hub 1-1:1.0: USB hub found
[    5.574148] hub 1-1:1.0: 6 ports detected
[    5.584949] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[    5.680697] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    5.821842] hub 2-1:1.0: USB hub found
[    5.825136] hub 2-1:1.0: 8 ports detected
[    5.870226] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    5.871204] systemd[1]: Set hostname to <linuxbook>.
[    5.873473] random: systemd urandom read with 44 bits of entropy available
[    5.929901] usb 1-1.1: new high-speed USB device number 3 using ehci-pci
[    5.986119] systemd[1]: Cannot add dependency job for unit hddtemp.service, ignoring: Unit hddtemp.service failed to load: No such file or directory.
[    5.986351] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[    5.986432] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    5.986444] systemd[1]: Starting Login Prompts.
[    5.986455] systemd[1]: Reached target Login Prompts.
[    5.986461] systemd[1]: Starting Remote File Systems.
[    5.986469] systemd[1]: Reached target Remote File Systems.
[    5.986476] systemd[1]: Starting Device-mapper event daemon FIFOs.
[    5.986509] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    5.986516] systemd[1]: Starting Delayed Shutdown Socket.
[    5.986541] systemd[1]: Listening on Delayed Shutdown Socket.
[    5.986547] systemd[1]: Starting LVM2 metadata daemon socket.
[    5.986576] systemd[1]: Listening on LVM2 metadata daemon socket.
[    5.986582] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[    5.986602] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    5.986612] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[    5.986656] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    5.986662] systemd[1]: Starting Paths.
[    5.986671] systemd[1]: Reached target Paths.
[    5.986678] systemd[1]: Starting Journal Socket.
[    5.986732] systemd[1]: Listening on Journal Socket.
[    5.986755] systemd[1]: Mounting POSIX Message Queue File System...
[    5.987408] systemd[1]: Starting Journal Service...
[    5.987849] systemd[1]: Started Journal Service.
[    6.006929] systemd-journald[155]: Vacuuming done, freed 0 bytes
[    6.063467] EXT4-fs (sda6): re-mounted. Opts: data=ordered,discard
[    6.096334] systemd-udevd[191]: starting version 208
[    6.123270] usb 2-1.8: new high-speed USB device number 3 using ehci-pci
[    6.175084] ACPI: AC Adapter [ADP1] (on-line)
[    6.179567] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20131115/utaddress-251)
[    6.179573] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.179579] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20131115/utaddress-251)
[    6.179582] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.179583] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20131115/utaddress-251)
[    6.179585] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.179586] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.185368] media: Linux media interface: v0.10
[    6.195414] mei_me 0000:00:16.0: irq 53 for MSI/MSI-X
[    6.201429] Linux video capture interface: v2.00
[    6.207601] hub 2-1.8:1.0: USB hub found
[    6.207765] hub 2-1.8:1.0: 2 ports detected
[    6.226999] uvcvideo: Found UVC 1.00 device FaceTime HD Camera (Built-in) (05ac:8510)
[    6.240046] lib80211: common routines for IEEE802.11 drivers
[    6.240080] lib80211_crypt: registered algorithm 'NULL'
[    6.240382] i801_smbus 0000:00:1f.3: enabling device (0000 -> 0003)
[    6.240526] ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20131115/utaddress-251)
[    6.240531] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.243709] input: FaceTime HD Camera (Built-in) as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input6
[    6.243998] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[    6.244199] snd_hda_intel 0000:00:1b.0: irq 54 for MSI/MSI-X
[    6.244252] usbcore: registered new interface driver uvcvideo
[    6.244253] USB Video Class driver (1.1.1)
[    6.244312] snd_hda_intel 0000:00:1b.0: enabling bus mastering
[    6.252548] input: PC Speaker as /devices/platform/pcspkr/input/input7
[    6.260191] ACPI: Battery Slot [BAT0] (battery present)
[    6.267276] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[    6.268562] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[    6.269057] platform microcode: Direct firmware load failed with error -2
[    6.269060] platform microcode: Falling back to user helper
[    6.269140] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[    6.269251] hda_intel: Disabling MSI
[    6.269262] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
[    6.269308] snd_hda_intel 0000:01:00.1: enabling bus mastering
[    6.271385] apple_gmux: Found gmux version 3.2.19 [indexed]
[    6.302467] Adding 8388604k swap on /dev/sda5.  Priority:-1 extents:1 across:8388604k SSFS
[    6.302661] iTCO_vendor_support: vendor-support=0
[    6.302803] cfg80211: Calling CRDA to update world regulatory domain
[    6.304618] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    6.304646] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[    6.317488] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[    6.317515] platform microcode: Direct firmware load failed with error -2
[    6.317518] platform microcode: Falling back to user helper
[    6.321761] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[    6.321786] platform microcode: Direct firmware load failed with error -2
[    6.321789] platform microcode: Falling back to user helper
[    6.322512] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[    6.322536] platform microcode: Direct firmware load failed with error -2
[    6.322538] platform microcode: Falling back to user helper
[    6.323053] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[    6.323070] platform microcode: Direct firmware load failed with error -2
[    6.323072] platform microcode: Falling back to user helper
[    6.323553] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[    6.323568] platform microcode: Direct firmware load failed with error -2
[    6.323569] platform microcode: Falling back to user helper
[    6.323955] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[    6.323970] platform microcode: Direct firmware load failed with error -2
[    6.323971] platform microcode: Falling back to user helper
[    6.324370] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[    6.324383] platform microcode: Direct firmware load failed with error -2
[    6.324384] platform microcode: Falling back to user helper
[    6.324793] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    6.345117] applesmc: key=493 fan=2 temp=44 index=43 acc=0 lux=2 kbd=1
[    6.346582] vga_switcheroo: enabled
[    6.485085] INFO @wl_cfg80211_attach : Registered CFG80211 phy
[    6.492056] lib80211_crypt: registered algorithm 'TKIP'
[    6.492610] eth0: Broadcom BCM4331 802.11 Hybrid Wireless Controller 6.30.223.30 (r390414)
[    6.497495] systemd-journald[155]: Received request to flush runtime journal from PID 1
[    6.519688] usb 2-1.8.1: new full-speed USB device number 4 using ehci-pci
[    6.529720] systemd-udevd[194]: renamed network interface eth0 to wlp4s0
[    6.619238] hub 2-1.8.1:1.0: USB hub found
[    6.619383] hub 2-1.8.1:1.0: 3 ports detected
[    6.663004] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[    6.663237] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
[    6.663399] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
[    6.699608] usb 2-1.8.2: new full-speed USB device number 5 using ehci-pci
[    6.813253] 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/input12
[    6.813371] usbcore: registered new interface driver bcm5974
[    6.817194] hidraw: raw HID events driver (C) Jiri Kosina
[    6.817862] random: nonblocking pool is initialized
[    6.829632] usbcore: registered new interface driver usbhid
[    6.829634] usbhid: USB HID core driver
[    6.833167] 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/input/input13
[    6.833350] 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.886635] usb 2-1.8.1.1: new full-speed USB device number 6 using ehci-pci
[    6.932197] 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.978392] 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/input/input14
[    6.978551] 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.039508] usb 2-1.8.1.2: new full-speed USB device number 7 using ehci-pci
[    7.127419] 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/input/input15
[    7.127584] 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.192831] usb 2-1.8.1.3: new full-speed USB device number 8 using ehci-pci
[    7.282803] ------------[ cut here ]------------
[    7.282810] WARNING: CPU: 0 PID: 196 at lib/dma-debug.c:937 check_unmap+0x47b/0x920()
[    7.282812] wl 0000:04:00.0: DMA-API: device driver failed to check map error[device address=0x0000000089d8810c] [size=1844 bytes] [mapped as single]
[    7.282813] Modules linked in:
[    7.282814]  hid_generic joydev hid_apple usbhid hid bcm5974 x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm lib80211_crypt_tkip snd_hda_codec_hdmi nls_cp437 vfat fat nls_utf8 hfsplus crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper lrw gf128mul ablk_helper cryptd wl(O) iTCO_wdt iTCO_vendor_support cfg80211 applesmc input_polldev microcode apple_gmux snd_hda_codec_cirrus pcspkr rfkill snd_hda_intel i2c_i801 lib80211 snd_hda_codec uvcvideo snd_hwdep snd_pcm videobuf2_vmalloc videobuf2_memops videobuf2_core videodev snd_page_alloc snd_timer mei_me snd mei media processor lpc_ich mfd_core apple_bl evdev ac soundcore battery ext4 crc16 mbcache jbd2 sd_mod ahci libahci xhci_hcd libata ehci_pci ehci_hcd sdhci_pci sdhci scsi_mod usbcore mmc_core usb_common nouveau
[    7.282842]  mxm_wmi wmi ttm i915 video button i2c_algo_bit intel_agp intel_gtt drm_kms_helper drm i2c_core
[    7.282849] CPU: 0 PID: 196 Comm: systemd-udevd Tainted: G           O 3.13.0-1-dirty #13
[    7.282850] Hardware name: Apple Inc. MacBookPro10,1/Mac-C3EC7CD22292981F, BIOS MBP101.88Z.00EE.B03.1212211437 12/21/2012
[    7.282851]  0000000000000009 ffff88046d003ba8 ffffffff8154b185 ffff88046d003bf0
[    7.282853]  ffff88046d003be0 ffffffff81062fad ffff880456a88140 ffff880455fef0c0
[    7.282855]  ffffffff8250b590 0000000000000296 ffffffff817a1bb1 ffff88046d003c40
[    7.282858] Call Trace:
[    7.282859]  <IRQ>  [<ffffffff8154b185>] dump_stack+0x4e/0x7a
[    7.282864]  [<ffffffff81062fad>] warn_slowpath_common+0x7d/0xa0
[    7.282866]  [<ffffffff8106301c>] warn_slowpath_fmt+0x4c/0x50
[    7.282869]  [<ffffffff812cfc8b>] check_unmap+0x47b/0x920
[    7.282871]  [<ffffffff812d018f>] debug_dma_unmap_page+0x5f/0x70
[    7.282893]  [<ffffffffa093861d>] osl_dma_unmap+0x6d/0x90 [wl]
[    7.282904]  [<ffffffffa07d5130>] dma_txpioloopback+0x566/0x1654 [wl]
[    7.282914]  [<ffffffffa07d578c>] dma_txpioloopback+0xbc2/0x1654 [wl]
[    7.282932]  [<ffffffffa082cb22>] wlc_bmac_recv+0x54/0x1ae [wl]
[    7.282951]  [<ffffffffa083b61c>] wlc_dpc+0x184/0x294 [wl]
[    7.282968]  [<ffffffffa093a6df>] wl_dpc+0x4f/0xe0 [wl]
[    7.282970]  [<ffffffff81068897>] tasklet_action+0xd7/0xf0
[    7.282972]  [<ffffffff81067e4c>] __do_softirq+0xdc/0x2a0
[    7.282973]  [<ffffffff81068306>] irq_exit+0x86/0xb0
[    7.282976]  [<ffffffff8155cc16>] do_IRQ+0x56/0xc0
[    7.282979]  [<ffffffff815530ed>] common_interrupt+0x6d/0x6d
[    7.282980]  <EOI>  [<ffffffff8155a93c>] ? sysret_check+0x5/0x53
[    7.282983] ---[ end trace 3a676c19d5a63e12 ]---
[    7.282984] Mapped at:
[    7.282984]  [<ffffffff812d114d>] debug_dma_map_page+0x8d/0x150
[    7.282986]  [<ffffffffa0938546>] osl_dma_map+0xd6/0x140 [wl]
[    7.283002]  [<ffffffffa07d5681>] dma_txpioloopback+0xab7/0x1654 [wl]
[    7.283011]  [<ffffffffa0829b12>] wlc_bmac_up_prep+0x1406/0x1cfe [wl]
[    7.283028]  [<ffffffffa082a490>] wlc_bmac_init+0x86/0x16c [wl]
[    7.323921] Bluetooth: Core ver 2.17
[    7.323941] NET: Registered protocol family 31
[    7.323942] Bluetooth: HCI device and connection manager initialized
[    7.323988] Bluetooth: HCI socket layer initialized
[    7.323990] Bluetooth: L2CAP socket layer initialized
[    7.323995] Bluetooth: SCO socket layer initialized
[    7.328246] usbcore: registered new interface driver btusb
[    7.455763] usb 2-1.8.1.1: USB disconnect, device number 6
[    7.693193] usb 2-1.8.1.2: USB disconnect, device number 7
[    8.365732] [drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[   17.359979] type=1006 audit(1386801694.434:2): pid=795 uid=0 old auid=4294967295 new auid=1000 old ses=4294967295 new ses=1 res=1
[   17.708125] ip_set: protocol 6

[-- Attachment #3: lspci_vv_boot --]
[-- Type: application/octet-stream, Size: 18351 bytes --]

00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
	Subsystem: Apple Inc. Device 00f7
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>

00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 00002000-00002fff
	Memory behind bridge: c0000000-c10fffff
	Prefetchable memory behind bridge: 0000000090000000-00000000a1ffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:01.1 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=05, subordinate=9b, sec-latency=0
	I/O behind bridge: 00004000-00006fff
	Memory behind bridge: c1d00000-cdffffff
	Prefetchable memory behind bridge: 00000000ce000000-00000000d9ffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:01.2 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	Memory behind bridge: c1b00000-c1bfffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09) (prog-if 00 [VGA controller])
	Subsystem: Apple Inc. Device 00f7
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 49
	Region 0: Memory at c1400000 (64-bit, non-prefetchable) [size=4M]
	Region 2: Memory at b0000000 (64-bit, prefetchable) [size=256M]
	Region 4: I/O ports at 3000 [size=64]
	Expansion ROM at <unassigned> [disabled]
	Capabilities: <access denied>
	Kernel driver in use: i915
	Kernel modules: i915

00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04) (prog-if 30 [XHCI])
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 51
	Region 0: Memory at c1c00000 (64-bit, non-prefetchable) [size=64K]
	Capabilities: <access denied>
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_hcd

00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 53
	Region 0: Memory at c1c17100 (64-bit, non-prefetchable) [size=16]
	Capabilities: <access denied>
	Kernel driver in use: mei_me
	Kernel modules: mei_me

00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04) (prog-if 20 [EHCI])
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 23
	Region 0: Memory at c1c16c00 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci

00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin A routed to IRQ 54
	Region 0: Memory at c1c10000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	Memory behind bridge: c1a00000-c1afffff
	Prefetchable memory behind bridge: 00000000c1800000-00000000c18fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	Memory behind bridge: c1900000-c19fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04) (prog-if 20 [EHCI])
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 22
	Region 0: Memory at c1c16800 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci

00:1f.0 ISA bridge: Intel Corporation HM77 Express Chipset LPC Controller (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>
	Kernel driver in use: lpc_ich
	Kernel modules: lpc_ich

00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04) (prog-if 01 [AHCI 1.0])
	Subsystem: Intel Corporation Device 7270
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 52
	Region 0: I/O ports at 3088 [size=8]
	Region 1: I/O ports at 309c [size=4]
	Region 2: I/O ports at 3080 [size=8]
	Region 3: I/O ports at 3098 [size=4]
	Region 4: I/O ports at 3060 [size=32]
	Region 5: Memory at c1c16000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: <access denied>
	Kernel driver in use: ahci
	Kernel modules: ahci

00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin C routed to IRQ 18
	Region 0: Memory at c1c17000 (64-bit, non-prefetchable) [size=256]
	Region 4: I/O ports at efa0 [size=32]
	Kernel modules: i2c_i801

01:00.0 VGA compatible controller: NVIDIA Corporation GK107M [GeForce GT 650M Mac Edition] (rev a1) (prog-if 00 [VGA controller])
	Subsystem: Apple Inc. Device 00f2
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin A routed to IRQ 50
	Region 0: Memory at c0000000 (32-bit, non-prefetchable) [size=16M]
	Region 1: Memory at 90000000 (64-bit, prefetchable) [size=256M]
	Region 3: Memory at a0000000 (64-bit, prefetchable) [size=32M]
	Region 5: I/O ports at 2000 [size=128]
	Expansion ROM at c1000000 [disabled] [size=512K]
	Capabilities: <access denied>
	Kernel driver in use: nouveau
	Kernel modules: nouveau

01:00.1 Audio device: NVIDIA Corporation GK107 HDMI Audio Controller (rev a1)
	Subsystem: Apple Inc. Device 00f2
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at c1080000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

03:00.0 Ethernet controller: Broadcom Corporation Device 16a3 (rev 10)
	Subsystem: Broadcom Corporation Device 16b4
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 0
	Region 0: Memory at c1800000 (64-bit, prefetchable) [disabled] [size=64K]
	Region 2: Memory at c1810000 (64-bit, prefetchable) [disabled] [size=64K]
	Expansion ROM at c1830000 [disabled] [size=2K]
	Capabilities: <access denied>

03:00.1 SD Host controller: Broadcom Corporation NetXtreme BCM57765 Memory Card Reader (rev 10) (prog-if 01)
	Subsystem: Broadcom Corporation Device 96bc
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at c1820000 (64-bit, prefetchable) [size=64K]
	Capabilities: <access denied>
	Kernel driver in use: sdhci-pci
	Kernel modules: sdhci_pci

04:00.0 Network controller: Broadcom Corporation BCM4331 802.11a/b/g/n (rev 02)
	Subsystem: Apple Inc. AirPort Extreme
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin A routed to IRQ 17
	Region 0: Memory at c1900000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: wl
	Kernel modules: wl

05:00.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=05, secondary=06, subordinate=6b, sec-latency=0
	I/O behind bridge: 00004000-00005fff
	Memory behind bridge: c1d00000-c9ffffff
	Prefetchable memory behind bridge: 00000000ce000000-00000000d5ffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

06:00.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=06, secondary=07, subordinate=07, sec-latency=0
	Memory behind bridge: c1f00000-c1ffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

06:03.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 2
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=06, secondary=08, subordinate=38, sec-latency=0
	I/O behind bridge: 00004000-00004fff
	Memory behind bridge: c2000000-c5ffffff
	Prefetchable memory behind bridge: 00000000ce000000-00000000d1ffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

06:04.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 3
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=06, secondary=39, subordinate=69, sec-latency=0
	I/O behind bridge: 00005000-00005fff
	Memory behind bridge: c6000000-c9ffffff
	Prefetchable memory behind bridge: 00000000d2000000-00000000d5ffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

06:05.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 4
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=06, secondary=6a, subordinate=6a, sec-latency=0
	Memory behind bridge: c1e00000-c1efffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

06:06.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 5
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=06, secondary=6b, subordinate=6b, sec-latency=0
	Memory behind bridge: c1d00000-c1dfffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

07:00.0 System peripheral: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03)
	Subsystem: Device 2222:1111
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin A routed to IRQ 0
	Region 0: Memory at c1f00000 (32-bit, non-prefetchable) [size=256K]
	Region 1: Memory at c1f40000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: <access denied>


[-- Attachment #4: lspci_vv_power --]
[-- Type: application/octet-stream, Size: 18263 bytes --]

00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
	Subsystem: Apple Inc. Device 00f7
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>

00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 00002000-00002fff
	Memory behind bridge: c0000000-c10fffff
	Prefetchable memory behind bridge: 0000000090000000-00000000a1ffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:01.1 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=05, subordinate=9b, sec-latency=0
	I/O behind bridge: 00004000-00006fff
	Memory behind bridge: c1d00000-cdffffff
	Prefetchable memory behind bridge: 00000000ce000000-00000000d9ffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:01.2 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	Memory behind bridge: c1b00000-c1bfffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09) (prog-if 00 [VGA controller])
	Subsystem: Apple Inc. Device 00f7
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 49
	Region 0: Memory at c1400000 (64-bit, non-prefetchable) [size=4M]
	Region 2: Memory at b0000000 (64-bit, prefetchable) [size=256M]
	Region 4: I/O ports at 3000 [size=64]
	Expansion ROM at <unassigned> [disabled]
	Capabilities: <access denied>
	Kernel driver in use: i915
	Kernel modules: i915

00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04) (prog-if 30 [XHCI])
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 51
	Region 0: Memory at c1c00000 (64-bit, non-prefetchable) [size=64K]
	Capabilities: <access denied>
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_hcd

00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 53
	Region 0: Memory at c1c17100 (64-bit, non-prefetchable) [size=16]
	Capabilities: <access denied>
	Kernel driver in use: mei_me
	Kernel modules: mei_me

00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04) (prog-if 20 [EHCI])
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 23
	Region 0: Memory at c1c16c00 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci

00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin A routed to IRQ 54
	Region 0: Memory at c1c10000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	Memory behind bridge: c1a00000-c1afffff
	Prefetchable memory behind bridge: 00000000c1800000-00000000c18fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	Memory behind bridge: c1900000-c19fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04) (prog-if 20 [EHCI])
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 22
	Region 0: Memory at c1c16800 (32-bit, non-prefetchable) [size=1K]
	Capabilities: <access denied>
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci

00:1f.0 ISA bridge: Intel Corporation HM77 Express Chipset LPC Controller (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: <access denied>
	Kernel driver in use: lpc_ich
	Kernel modules: lpc_ich

00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04) (prog-if 01 [AHCI 1.0])
	Subsystem: Intel Corporation Device 7270
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 52
	Region 0: I/O ports at 3088 [size=8]
	Region 1: I/O ports at 309c [size=4]
	Region 2: I/O ports at 3080 [size=8]
	Region 3: I/O ports at 3098 [size=4]
	Region 4: I/O ports at 3060 [size=32]
	Region 5: Memory at c1c16000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: <access denied>
	Kernel driver in use: ahci
	Kernel modules: ahci

00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin C routed to IRQ 18
	Region 0: Memory at c1c17000 (64-bit, non-prefetchable) [size=256]
	Region 4: I/O ports at efa0 [size=32]
	Kernel modules: i2c_i801

01:00.0 VGA compatible controller: NVIDIA Corporation GK107M [GeForce GT 650M Mac Edition] (rev a1) (prog-if 00 [VGA controller])
	Subsystem: Apple Inc. Device 00f2
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin A routed to IRQ 50
	Region 0: Memory at c0000000 (32-bit, non-prefetchable) [size=16M]
	Region 1: Memory at 90000000 (64-bit, prefetchable) [size=256M]
	Region 3: Memory at a0000000 (64-bit, prefetchable) [size=32M]
	Region 5: I/O ports at 2000 [size=128]
	Expansion ROM at c1000000 [disabled] [size=512K]
	Capabilities: <access denied>
	Kernel driver in use: nouveau
	Kernel modules: nouveau

01:00.1 Audio device: NVIDIA Corporation GK107 HDMI Audio Controller (rev a1)
	Subsystem: Apple Inc. Device 00f2
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at c1080000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

03:00.0 Ethernet controller: Broadcom Corporation Device 16a3 (rev 10)
	Subsystem: Broadcom Corporation Device 16b4
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 0
	Region 0: Memory at c1800000 (64-bit, prefetchable) [disabled] [size=64K]
	Region 2: Memory at c1810000 (64-bit, prefetchable) [disabled] [size=64K]
	Expansion ROM at c1830000 [disabled] [size=2K]
	Capabilities: <access denied>

03:00.1 SD Host controller: Broadcom Corporation NetXtreme BCM57765 Memory Card Reader (rev 10) (prog-if 01)
	Subsystem: Broadcom Corporation Device 96bc
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at c1820000 (64-bit, prefetchable) [size=64K]
	Capabilities: <access denied>
	Kernel driver in use: sdhci-pci
	Kernel modules: sdhci_pci

04:00.0 Network controller: Broadcom Corporation BCM4331 802.11a/b/g/n (rev 02)
	Subsystem: Apple Inc. AirPort Extreme
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin A routed to IRQ 17
	Region 0: Memory at c1900000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: <access denied>
	Kernel driver in use: wl
	Kernel modules: wl

05:00.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=05, secondary=06, subordinate=0b, sec-latency=0
	Memory behind bridge: c1d00000-c29fffff
	Prefetchable memory behind bridge: 00000000ce000000-00000000cecfffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

06:00.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=06, secondary=07, subordinate=07, sec-latency=0
	Memory behind bridge: c1d00000-c1dfffff
	Prefetchable memory behind bridge: 00000000ce000000-00000000ce0fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

06:03.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 2
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=06, secondary=08, subordinate=08, sec-latency=0
	Memory behind bridge: c1e00000-c20fffff
	Prefetchable memory behind bridge: 00000000ce100000-00000000ce3fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

06:04.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 3
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=06, secondary=09, subordinate=09, sec-latency=0
	Memory behind bridge: c2100000-c23fffff
	Prefetchable memory behind bridge: 00000000ce400000-00000000ce6fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

06:05.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 4
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=06, secondary=0a, subordinate=0a, sec-latency=0
	Memory behind bridge: c2400000-c26fffff
	Prefetchable memory behind bridge: 00000000ce700000-00000000ce9fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

06:06.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 5
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=06, secondary=0b, subordinate=0b, sec-latency=0
	Memory behind bridge: c2700000-c29fffff
	Prefetchable memory behind bridge: 00000000cea00000-00000000cecfffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: <access denied>
	Kernel driver in use: pcieport

07:00.0 System peripheral: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03)
	Subsystem: Device 2222:1111
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 255
	Region 0: Memory at c1d00000 (32-bit, non-prefetchable) [disabled] [size=256K]
	Region 1: Memory at c1d40000 (32-bit, non-prefetchable) [disabled] [size=4K]
	Capabilities: <access denied>


[-- Attachment #5: dmesg_power --]
[-- Type: application/octet-stream, Size: 17480 bytes --]

[  439.660528] pci_bus 0000:00: scanning bus
[  439.660592] pcieport 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 0
[  439.660596] pci_bus 0000:01: scanning bus
[  439.660603] pci_bus 0000:01: bus scan returning with max=01
[  439.660605] pcieport 0000:00:01.1: scanning [bus 05-9b] behind bridge, pass 0
[  439.660607] pci_bus 0000:05: scanning bus
[  439.660621] pci 0000:05:00.0: [8086:1547] type 01 class 0x060400
[  439.660648] pci 0000:05:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  439.660680] pci 0000:05:00.0: supports D1 D2
[  439.660681] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  439.660684] pci 0000:05:00.0: PME# disabled
[  439.665069] pci 0000:05:00.0: scanning [bus 00-00] behind bridge, pass 0
[  439.665072] pci 0000:05:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  439.665077] pci 0000:05:00.0: scanning [bus 00-00] behind bridge, pass 1
[  439.665166] pci_bus 0000:06: dev 03, created physical slot 2
[  439.665174] pci_bus 0000:06: dev 04, created physical slot 3
[  439.665188] pci_bus 0000:06: dev 05, created physical slot 4
[  439.665214] pci_bus 0000:06: dev 06, created physical slot 5
[  439.665217] pci_bus 0000:06: busn_res: can not insert [bus 06-ff] under [bus 05-9b] (conflicts with (null) [bus 05-9b])
[  439.665219] pci_bus 0000:06: scanning bus
[  439.665233] pci 0000:06:00.0: [8086:1547] type 01 class 0x060400
[  439.665259] pci 0000:06:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  439.665291] pci 0000:06:00.0: supports D1 D2
[  439.665292] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  439.665295] pci 0000:06:00.0: PME# disabled
[  439.665406] pci 0000:06:03.0: [8086:1547] type 01 class 0x060400
[  439.665431] pci 0000:06:03.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  439.665463] pci 0000:06:03.0: supports D1 D2
[  439.665464] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  439.665466] pci 0000:06:03.0: PME# disabled
[  439.665565] pci 0000:06:04.0: [8086:1547] type 01 class 0x060400
[  439.665594] pci 0000:06:04.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  439.665630] pci 0000:06:04.0: supports D1 D2
[  439.665632] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  439.665635] pci 0000:06:04.0: PME# disabled
[  439.665754] pci 0000:06:05.0: [8086:1547] type 01 class 0x060400
[  439.665784] pci 0000:06:05.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  439.665820] pci 0000:06:05.0: supports D1 D2
[  439.665822] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[  439.665826] pci 0000:06:05.0: PME# disabled
[  439.666014] pci 0000:06:06.0: [8086:1547] type 01 class 0x060400
[  439.666043] pci 0000:06:06.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  439.666079] pci 0000:06:06.0: supports D1 D2
[  439.666081] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[  439.666085] pci 0000:06:06.0: PME# disabled
[  439.666194] pci_bus 0000:06: fixups for bus
[  439.666196] pci 0000:05:00.0: PCI bridge to [bus 06-ff]
[  439.666200] pci 0000:05:00.0:   bridge window [io  0x0000-0x0fff]
[  439.666203] pci 0000:05:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  439.666207] pci 0000:05:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  439.666210] pci 0000:06:00.0: scanning [bus 00-00] behind bridge, pass 0
[  439.666211] pci 0000:06:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  439.666216] pci 0000:06:03.0: scanning [bus 00-00] behind bridge, pass 0
[  439.666217] pci 0000:06:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  439.666221] pci 0000:06:04.0: scanning [bus 00-00] behind bridge, pass 0
[  439.666223] pci 0000:06:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  439.666227] pci 0000:06:05.0: scanning [bus 00-00] behind bridge, pass 0
[  439.666228] pci 0000:06:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  439.666233] pci 0000:06:06.0: scanning [bus 00-00] behind bridge, pass 0
[  439.666234] pci 0000:06:06.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  439.666239] pci 0000:06:00.0: scanning [bus 00-00] behind bridge, pass 1
[  439.666290] pci_bus 0000:07: scanning bus
[  439.666308] pci 0000:07:00.0: [8086:1547] type 00 class 0x088000
[  439.666319] pci 0000:07:00.0: reg 0x10: [mem 0x00000000-0x0003ffff]
[  439.666325] pci 0000:07:00.0: reg 0x14: [mem 0x00000000-0x00000fff]
[  439.666407] pci 0000:07:00.0: supports D1 D2
[  439.666408] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  439.666412] pci 0000:07:00.0: PME# disabled
[  439.671739] pci_bus 0000:07: fixups for bus
[  439.671743] pci 0000:06:00.0: PCI bridge to [bus 07-ff]
[  439.671748] pci 0000:06:00.0:   bridge window [io  0x0000-0x0fff]
[  439.671751] pci 0000:06:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  439.671755] pci 0000:06:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  439.671757] pci_bus 0000:07: bus scan returning with max=07
[  439.671759] pci_bus 0000:07: busn_res: [bus 07-ff] end is updated to 07
[  439.671763] pci 0000:06:03.0: scanning [bus 00-00] behind bridge, pass 1
[  439.671899] pci_bus 0000:08: scanning bus
[  439.671904] pci_bus 0000:08: fixups for bus
[  439.671906] pci 0000:06:03.0: PCI bridge to [bus 08-ff]
[  439.671917] pci 0000:06:03.0:   bridge window [io  0x0000-0x0fff]
[  439.671924] pci 0000:06:03.0:   bridge window [mem 0x00000000-0x000fffff]
[  439.671931] pci 0000:06:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  439.671933] pci_bus 0000:08: bus scan returning with max=08
[  439.671936] pci_bus 0000:08: busn_res: [bus 08-ff] end is updated to 08
[  439.671941] pci 0000:06:04.0: scanning [bus 00-00] behind bridge, pass 1
[  439.672050] pci_bus 0000:09: scanning bus
[  439.672054] pci_bus 0000:09: fixups for bus
[  439.672056] pci 0000:06:04.0: PCI bridge to [bus 09-ff]
[  439.672064] pci 0000:06:04.0:   bridge window [io  0x0000-0x0fff]
[  439.672068] pci 0000:06:04.0:   bridge window [mem 0x00000000-0x000fffff]
[  439.672076] pci 0000:06:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  439.672078] pci_bus 0000:09: bus scan returning with max=09
[  439.672080] pci_bus 0000:09: busn_res: [bus 09-ff] end is updated to 09
[  439.672085] pci 0000:06:05.0: scanning [bus 00-00] behind bridge, pass 1
[  439.672194] pci_bus 0000:0a: scanning bus
[  439.672197] pci_bus 0000:0a: fixups for bus
[  439.672200] pci 0000:06:05.0: PCI bridge to [bus 0a-ff]
[  439.672205] pci 0000:06:05.0:   bridge window [io  0x0000-0x0fff]
[  439.672209] pci 0000:06:05.0:   bridge window [mem 0x00000000-0x000fffff]
[  439.672214] pci 0000:06:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  439.672216] pci_bus 0000:0a: bus scan returning with max=0a
[  439.672217] pci_bus 0000:0a: busn_res: [bus 0a-ff] end is updated to 0a
[  439.672221] pci 0000:06:06.0: scanning [bus 00-00] behind bridge, pass 1
[  439.672341] pci_bus 0000:0b: scanning bus
[  439.672345] pci_bus 0000:0b: fixups for bus
[  439.672347] pci 0000:06:06.0: PCI bridge to [bus 0b-ff]
[  439.672353] pci 0000:06:06.0:   bridge window [io  0x0000-0x0fff]
[  439.672356] pci 0000:06:06.0:   bridge window [mem 0x00000000-0x000fffff]
[  439.672362] pci 0000:06:06.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  439.672364] pci_bus 0000:0b: bus scan returning with max=0b
[  439.672366] pci_bus 0000:0b: busn_res: [bus 0b-ff] end is updated to 0b
[  439.672371] pci_bus 0000:06: bus scan returning with max=0b
[  439.672374] pci_bus 0000:06: busn_res: [bus 06-ff] end is updated to 0b
[  439.672380] pci_bus 0000:05: bus scan returning with max=0b
[  439.672386] pcieport 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 0
[  439.672393] pci_bus 0000:02: scanning bus
[  439.672398] pci_bus 0000:02: bus scan returning with max=02
[  439.672407] pcieport 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 0
[  439.672413] pci_bus 0000:03: scanning bus
[  439.672704] pci_bus 0000:03: bus scan returning with max=03
[  439.672717] pcieport 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 0
[  439.672727] pci_bus 0000:04: scanning bus
[  439.672729] pci_bus 0000:04: bus scan returning with max=04
[  439.672740] pcieport 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 1
[  439.672744] pcieport 0000:00:01.1: scanning [bus 05-9b] behind bridge, pass 1
[  439.672749] pcieport 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 1
[  439.672757] pcieport 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 1
[  439.672766] pcieport 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 1
[  439.672773] pci_bus 0000:00: bus scan returning with max=9b
[  439.672794] pci 0000:06:03.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 08] add_size 200000
[  439.672797] pci 0000:06:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 08] add_size 200000
[  439.672805] pci 0000:06:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 09] add_size 200000
[  439.672807] pci 0000:06:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 09] add_size 200000
[  439.672816] pci 0000:06:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 0a] add_size 200000
[  439.672818] pci 0000:06:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 0a] add_size 200000
[  439.672827] pci 0000:06:06.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 0b] add_size 200000
[  439.672830] pci 0000:06:06.0: bridge window [mem 0x00100000-0x001fffff] to [bus 0b] add_size 200000
[  439.672839] pci 0000:06:03.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  439.672841] pci 0000:06:04.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  439.672843] pci 0000:06:05.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  439.672845] pci 0000:06:06.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  439.672848] pci 0000:05:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 06-0b] add_size 800000
[  439.672850] pci 0000:06:03.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  439.672853] pci 0000:06:04.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  439.672855] pci 0000:06:05.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  439.672857] pci 0000:06:06.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  439.672859] pci 0000:05:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 06-0b] add_size 800000
[  439.672899] i915 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[  439.672905] pci 0000:05:00.0: res[14]=[mem 0x00100000-0x005fffff] get_res_add_size add_size 800000
[  439.672907] pci 0000:05:00.0: res[15]=[mem 0x00100000-0x005fffff 64bit pref] get_res_add_size add_size 800000
[  439.672912] pci 0000:05:00.0: BAR 14: assigned [mem 0xc1d00000-0xc29fffff]
[  439.672914] pci 0000:05:00.0: BAR 15: assigned [mem 0xce000000-0xcecfffff 64bit pref]
[  439.672917] pci 0000:05:00.0: BAR 13: can't assign io (size 0x5000)
[  439.672921] pci 0000:05:00.0: BAR 13: can't assign io (size 0x5000)
[  439.672929] pci 0000:06:03.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  439.672931] pci 0000:06:03.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  439.672933] pci 0000:06:04.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  439.672935] pci 0000:06:04.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  439.672937] pci 0000:06:05.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  439.672939] pci 0000:06:05.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  439.672941] pci 0000:06:06.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  439.672943] pci 0000:06:06.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  439.672946] pci 0000:06:00.0: BAR 14: assigned [mem 0xc1d00000-0xc1dfffff]
[  439.672948] pci 0000:06:00.0: BAR 15: assigned [mem 0xce000000-0xce0fffff 64bit pref]
[  439.672951] pci 0000:06:03.0: BAR 14: assigned [mem 0xc1e00000-0xc20fffff]
[  439.672953] pci 0000:06:03.0: BAR 15: assigned [mem 0xce100000-0xce3fffff 64bit pref]
[  439.672954] pci 0000:06:04.0: BAR 14: assigned [mem 0xc2100000-0xc23fffff]
[  439.672956] pci 0000:06:04.0: BAR 15: assigned [mem 0xce400000-0xce6fffff 64bit pref]
[  439.672959] pci 0000:06:05.0: BAR 14: assigned [mem 0xc2400000-0xc26fffff]
[  439.672961] pci 0000:06:05.0: BAR 15: assigned [mem 0xce700000-0xce9fffff 64bit pref]
[  439.672963] pci 0000:06:06.0: BAR 14: assigned [mem 0xc2700000-0xc29fffff]
[  439.672966] pci 0000:06:06.0: BAR 15: assigned [mem 0xcea00000-0xcecfffff 64bit pref]
[  439.672968] pci 0000:06:00.0: BAR 13: can't assign io (size 0x1000)
[  439.672970] pci 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
[  439.672972] pci 0000:06:04.0: BAR 13: can't assign io (size 0x1000)
[  439.672973] pci 0000:06:05.0: BAR 13: can't assign io (size 0x1000)
[  439.672975] pci 0000:06:06.0: BAR 13: can't assign io (size 0x1000)
[  439.672985] pci 0000:06:00.0: BAR 13: can't assign io (size 0x1000)
[  439.672987] pci 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
[  439.672988] pci 0000:06:04.0: BAR 13: can't assign io (size 0x1000)
[  439.672991] pci 0000:06:05.0: BAR 13: can't assign io (size 0x1000)
[  439.672992] pci 0000:06:06.0: BAR 13: can't assign io (size 0x1000)
[  439.672995] pci 0000:07:00.0: BAR 0: assigned [mem 0xc1d00000-0xc1d3ffff]
[  439.673001] pci 0000:07:00.0: BAR 0: set to [mem 0xc1d00000-0xc1d3ffff] (PCI address [0xc1d00000-0xc1d3ffff])
[  439.673003] pci 0000:07:00.0: BAR 1: assigned [mem 0xc1d40000-0xc1d40fff]
[  439.673008] pci 0000:07:00.0: BAR 1: set to [mem 0xc1d40000-0xc1d40fff] (PCI address [0xc1d40000-0xc1d40fff])
[  439.673010] pci 0000:06:00.0: PCI bridge to [bus 07]
[  439.673015] pci 0000:06:00.0:   bridge window [mem 0xc1d00000-0xc1dfffff]
[  439.673018] pci 0000:06:00.0:   bridge window [mem 0xce000000-0xce0fffff 64bit pref]
[  439.673024] pci 0000:06:03.0: PCI bridge to [bus 08]
[  439.673028] pci 0000:06:03.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  439.673032] pci 0000:06:03.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  439.673037] pci 0000:06:04.0: PCI bridge to [bus 09]
[  439.673042] pci 0000:06:04.0:   bridge window [mem 0xc2100000-0xc23fffff]
[  439.673045] pci 0000:06:04.0:   bridge window [mem 0xce400000-0xce6fffff 64bit pref]
[  439.673051] pci 0000:06:05.0: PCI bridge to [bus 0a]
[  439.673055] pci 0000:06:05.0:   bridge window [mem 0xc2400000-0xc26fffff]
[  439.673059] pci 0000:06:05.0:   bridge window [mem 0xce700000-0xce9fffff 64bit pref]
[  439.673064] pci 0000:06:06.0: PCI bridge to [bus 0b]
[  439.673069] pci 0000:06:06.0:   bridge window [mem 0xc2700000-0xc29fffff]
[  439.673072] pci 0000:06:06.0:   bridge window [mem 0xcea00000-0xcecfffff 64bit pref]
[  439.673077] pci 0000:05:00.0: PCI bridge to [bus 06-0b]
[  439.673082] pci 0000:05:00.0:   bridge window [mem 0xc1d00000-0xc29fffff]
[  439.673085] pci 0000:05:00.0:   bridge window [mem 0xce000000-0xcecfffff 64bit pref]
[  439.673200] pcieport 0000:05:00.0: enabling device (0000 -> 0002)
[  439.673257] pcieport 0000:05:00.0: enabling bus mastering
[  439.673276] pcieport 0000:05:00.0: irq 43 for MSI/MSI-X
[  439.673373] pcieport 0000:06:00.0: enabling device (0000 -> 0002)
[  439.673439] pcieport 0000:06:00.0: enabling bus mastering
[  439.673456] pcieport 0000:06:00.0: irq 44 for MSI/MSI-X
[  439.673654] pcieport 0000:06:03.0: enabling device (0000 -> 0002)
[  439.673722] pcieport 0000:06:03.0: enabling bus mastering
[  439.673740] pcieport 0000:06:03.0: irq 45 for MSI/MSI-X
[  439.674078] pciehp 0000:06:03.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  439.674242] pci_bus 0000:08: dev 00, created physical slot 3-1
[  439.674284] pciehp 0000:06:03.0:pcie24: service driver pciehp loaded
[  439.674423] pcieport 0000:06:04.0: enabling device (0000 -> 0002)
[  439.674500] pcieport 0000:06:04.0: enabling bus mastering
[  439.674519] pcieport 0000:06:04.0: irq 46 for MSI/MSI-X
[  439.674720] pciehp 0000:06:04.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  439.674749] pci_bus 0000:09: dev 00, created physical slot 4-1
[  439.674782] pciehp 0000:06:04.0:pcie24: service driver pciehp loaded
[  439.675200] pcieport 0000:06:05.0: enabling device (0000 -> 0002)
[  439.675254] pcieport 0000:06:05.0: enabling bus mastering
[  439.675268] pcieport 0000:06:05.0: irq 47 for MSI/MSI-X
[  439.675315] pciehp 0000:06:05.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  439.675334] pci_bus 0000:0a: dev 00, created physical slot 5-1
[  439.675358] pciehp 0000:06:05.0:pcie24: service driver pciehp loaded
[  439.675422] pcieport 0000:06:06.0: enabling device (0000 -> 0002)
[  439.675472] pcieport 0000:06:06.0: enabling bus mastering
[  439.675485] pcieport 0000:06:06.0: irq 48 for MSI/MSI-X
[  439.675527] pciehp 0000:06:06.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  439.675545] pci_bus 0000:0b: dev 00, created physical slot 6
[  439.675568] pciehp 0000:06:06.0:pcie24: service driver pciehp loaded

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: How to reserve pci bus numbers for hotplug?
  2013-12-11 23:37 How to reserve pci bus numbers for hotplug? Andreas Noever
@ 2013-12-12  0:21 ` Yinghai Lu
  2013-12-12 19:56   ` Andreas Noever
  2013-12-14 22:01 ` Greg KH
  1 sibling, 1 reply; 11+ messages in thread
From: Yinghai Lu @ 2013-12-12  0:21 UTC (permalink / raw)
  To: Andreas Noever; +Cc: linux-pci, linux-kernel

On Wed, Dec 11, 2013 at 3:37 PM, Andreas Noever
<andreas.noever@gmail.com> wrote:

> If I could get Linux to assign enough resources (bus numbers for now)
> then I could drop the acpi_osi parameter and make thunderbolt work
> after suspend... So, is there an easy way to fix this? (Quirks,
> reconfiguring bus number assignments from a platform driver, ...?)

please check if busn_alloc at

git://git.kernel.org/pub/scm/linux/kernel/git/yinghai/linux-yinghai.git
for-pci-busn-alloc-3.14

could help.

  resources: Split out __allocate_resource()
  resources: Add resource_shrink_parents_top()
  resources: Add probe_resource()
  resources: Replace registered resource in tree.
  PCI: Add pci_bus_extend/shrink_top()
  PCI: Probe safe range that we can use for unassigned bridge.
  PCI: Add pci_bus_replace_busn_res()
  PCI: Allocate bus range instead of use max blindly
  PCI: Strict checking of valid range for bridge
  PCI: Kill pci_fixup_parent_subordinate_busnr()
  PCI: Seperate child bus scanning to two passes overall
  pcmcia: Remove workaround for fixing pci parent bus subordinate
  PCI, pciehp: Remove not needed bus number range checking
  PCI: More strict checking of valid range for bridge
  PCI: Don't shrink too much for hotplug bridge
  expand_bus_for_sriov

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: How to reserve pci bus numbers for hotplug?
  2013-12-12  0:21 ` Yinghai Lu
@ 2013-12-12 19:56   ` Andreas Noever
  2013-12-13  6:04     ` Yinghai Lu
                       ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Andreas Noever @ 2013-12-12 19:56 UTC (permalink / raw)
  To: Yinghai Lu; +Cc: linux-pci, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1622 bytes --]

On Thu, Dec 12, 2013 at 1:21 AM, Yinghai Lu <yinghai@kernel.org> wrote:
> On Wed, Dec 11, 2013 at 3:37 PM, Andreas Noever
> <andreas.noever@gmail.com> wrote:
>
>> If I could get Linux to assign enough resources (bus numbers for now)
>> then I could drop the acpi_osi parameter and make thunderbolt work
>> after suspend... So, is there an easy way to fix this? (Quirks,
>> reconfiguring bus number assignments from a platform driver, ...?)
>
> please check if busn_alloc at
>
> git://git.kernel.org/pub/scm/linux/kernel/git/yinghai/linux-yinghai.git
> for-pci-busn-alloc-3.14
>
> could help.

It seems to help. The initial assignment looks good:
           +-01.1-[05-9b]----00.0-[06-27]--+-00.0-[07]----00.0  Intel
Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
           |                               +-03.0-[08-0f]--
           |                               +-04.0-[10-17]--
           |                               +-05.0-[18-1f]--
           |                               \-06.0-[20-27]--
After hotplug it looks like this:
           +-01.1-[05-9b]----00.0-[06-29]--+-00.0-[07]----00.0  Intel
Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
           |
+-03.0-[08-11]----00.0-[09-11]----00.0-[0a-11]----00.0  Broadcom
Corporation NetXtreme BCM57762 Gigabit Ethernet PCIe
           |                               +-04.0-[10-17]--
           |                               +-05.0-[18-1f]--
           |                               \-06.0-[20-27]--
(Note that the bridge numbers are not disjoint)

dmesg is attached.

What is the status of the patch? Will it be merged for 3.14?

Cheers,
Andreas

[-- Attachment #2: dmesg_busnr --]
[-- Type: application/octet-stream, Size: 26807 bytes --]

rescan after power enable:
[  349.081862] pci_bus 0000:00: scanning bus
[  349.081983] pcieport 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 0
[  349.081989] pci_bus 0000:01: scanning bus
[  349.082004] pcieport 0000:00:01.1: scanning [bus 05-9b] behind bridge, pass 0
[  349.082008] pci_bus 0000:05: scanning bus
[  349.082029] pci 0000:05:00.0: [8086:1547] type 01 class 0x060400
[  349.082069] pci 0000:05:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  349.082113] pci 0000:05:00.0: supports D1 D2
[  349.082115] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  349.082120] pci 0000:05:00.0: PME# disabled
[  349.086650] pci 0000:05:00.0: scanning [bus 00-00] behind bridge, pass 0
[  349.086656] pci 0000:05:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  349.086666] pcieport 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 0
[  349.086672] pci_bus 0000:02: scanning bus
[  349.086684] pcieport 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 0
[  349.086690] pci_bus 0000:03: scanning bus
[  349.086752] pcieport 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 0
[  349.086759] pci_bus 0000:04: scanning bus
[  349.086869] pcieport 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 1
[  349.086885] pci_bus 0000:01: bus scan returning with max=01
[  349.086888] pcieport 0000:00:01.1: scanning [bus 05-9b] behind bridge, pass 1
[  349.086894] pci 0000:05:00.0: scanning [bus 00-00] behind bridge, pass 1
[  349.087045] pci_bus 0000:06: dev 03, created physical slot 2
[  349.087060] pci_bus 0000:06: dev 04, created physical slot 3
[  349.087075] pci_bus 0000:06: dev 05, created physical slot 4
[  349.087090] pci_bus 0000:06: dev 06, created physical slot 5
[  349.087095] pci_bus 0000:06: busn_res: [bus 06-0d] is updated under [bus 05-9b]
[  349.087099] pci_bus 0000:06: scanning bus
[  349.087120] pci 0000:06:00.0: [8086:1547] type 01 class 0x060400
[  349.087158] pci 0000:06:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  349.087203] pci 0000:06:00.0: supports D1 D2
[  349.087205] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  349.087212] pci 0000:06:00.0: PME# disabled
[  349.087447] pci 0000:06:03.0: [8086:1547] type 01 class 0x060400
[  349.087492] pci 0000:06:03.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  349.087539] pci 0000:06:03.0: supports D1 D2
[  349.087542] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  349.087548] pci 0000:06:03.0: PME# disabled
[  349.087701] pci 0000:06:04.0: [8086:1547] type 01 class 0x060400
[  349.087738] pci 0000:06:04.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  349.087781] pci 0000:06:04.0: supports D1 D2
[  349.087784] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  349.087789] pci 0000:06:04.0: PME# disabled
[  349.087904] pci 0000:06:05.0: [8086:1547] type 01 class 0x060400
[  349.087935] pci 0000:06:05.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  349.087974] pci 0000:06:05.0: supports D1 D2
[  349.087976] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[  349.087979] pci 0000:06:05.0: PME# disabled
[  349.088185] pci 0000:06:06.0: [8086:1547] type 01 class 0x060400
[  349.088217] pci 0000:06:06.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  349.088254] pci 0000:06:06.0: supports D1 D2
[  349.088256] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[  349.088260] pci 0000:06:06.0: PME# disabled
[  349.088565] pci 0000:06:00.0: scanning [bus 00-00] behind bridge, pass 0
[  349.088567] pci 0000:06:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  349.088574] pci 0000:06:03.0: scanning [bus 00-00] behind bridge, pass 0
[  349.088576] pci 0000:06:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  349.088582] pci 0000:06:04.0: scanning [bus 00-00] behind bridge, pass 0
[  349.088584] pci 0000:06:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  349.088590] pci 0000:06:05.0: scanning [bus 00-00] behind bridge, pass 0
[  349.088591] pci 0000:06:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  349.088598] pci 0000:06:06.0: scanning [bus 00-00] behind bridge, pass 0
[  349.088599] pci 0000:06:06.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  349.088655] pci_bus 0000:06: fixups for bus
[  349.088657] pci 0000:05:00.0: PCI bridge to [bus 06-0d]
[  349.088664] pci 0000:05:00.0:   bridge window [io  0x0000-0x0fff]
[  349.088668] pci 0000:05:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  349.088673] pci 0000:05:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  349.088676] pci 0000:06:00.0: scanning [bus 00-00] behind bridge, pass 1
[  349.088683] pci_bus 0000:06: busn_res: extended 01 to [bus 06-0e]
[  349.089245] pci_bus 0000:07: busn_res: [bus 07-0e] is updated under [bus 06-0e]
[  349.089250] pci_bus 0000:07: scanning bus
[  349.089272] pci 0000:07:00.0: [8086:1547] type 00 class 0x088000
[  349.089285] pci 0000:07:00.0: reg 0x10: [mem 0x00000000-0x0003ffff]
[  349.089293] pci 0000:07:00.0: reg 0x14: [mem 0x00000000-0x00000fff]
[  349.089385] pci 0000:07:00.0: supports D1 D2
[  349.089387] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  349.089391] pci 0000:07:00.0: PME# disabled
[  349.093289] pci_bus 0000:07: fixups for bus
[  349.093293] pci 0000:06:00.0: PCI bridge to [bus 07-0e]
[  349.093300] pci 0000:06:00.0:   bridge window [io  0x0000-0x0fff]
[  349.093304] pci 0000:06:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  349.093310] pci 0000:06:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  349.093312] pci_bus 0000:07: bus scan returning with max=07
[  349.093316] pci_bus 0000:07: busn_res: [bus 07-0e] end is updated to 07
[  349.093319] pci_bus 0000:06: busn_res: shrunk 07 to [bus 06-07]
[  349.093325] pci 0000:06:03.0: scanning [bus 00-00] behind bridge, pass 1
[  349.093332] pci_bus 0000:06: busn_res: extended 08 to [bus 06-0f]
[  349.096695] pci_bus 0000:08: busn_res: [bus 08-0f] is updated under [bus 06-0f]
[  349.096700] pci_bus 0000:08: scanning bus
[  349.096705] pci_bus 0000:08: fixups for bus
[  349.096707] pci 0000:06:03.0: PCI bridge to [bus 08-0f]
[  349.096713] pci 0000:06:03.0:   bridge window [io  0x0000-0x0fff]
[  349.096724] pci 0000:06:03.0:   bridge window [mem 0x00000000-0x000fffff]
[  349.096733] pci 0000:06:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  349.096735] pci_bus 0000:08: bus scan returning with max=08
[  349.096739] pci_bus 0000:08: busn_res: [bus 08-0f] end is updated to 0f
[  349.096746] pci 0000:06:04.0: scanning [bus 00-00] behind bridge, pass 1
[  349.096754] pci_bus 0000:06: busn_res: extended 08 to [bus 06-17]
[  349.096924] pci_bus 0000:10: busn_res: [bus 10-17] is updated under [bus 06-17]
[  349.096927] pci_bus 0000:10: scanning bus
[  349.096931] pci_bus 0000:10: fixups for bus
[  349.096933] pci 0000:06:04.0: PCI bridge to [bus 10-17]
[  349.096939] pci 0000:06:04.0:   bridge window [io  0x0000-0x0fff]
[  349.096943] pci 0000:06:04.0:   bridge window [mem 0x00000000-0x000fffff]
[  349.096948] pci 0000:06:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  349.096950] pci_bus 0000:10: bus scan returning with max=10
[  349.096953] pci_bus 0000:10: busn_res: [bus 10-17] end is updated to 17
[  349.096957] pci 0000:06:05.0: scanning [bus 00-00] behind bridge, pass 1
[  349.096963] pci_bus 0000:06: busn_res: extended 08 to [bus 06-1f]
[  349.097032] pci_bus 0000:18: busn_res: [bus 18-1f] is updated under [bus 06-1f]
[  349.097034] pci_bus 0000:18: scanning bus
[  349.097038] pci_bus 0000:18: fixups for bus
[  349.097040] pci 0000:06:05.0: PCI bridge to [bus 18-1f]
[  349.097045] pci 0000:06:05.0:   bridge window [io  0x0000-0x0fff]
[  349.097048] pci 0000:06:05.0:   bridge window [mem 0x00000000-0x000fffff]
[  349.097054] pci 0000:06:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  349.097055] pci_bus 0000:18: bus scan returning with max=18
[  349.097058] pci_bus 0000:18: busn_res: [bus 18-1f] end is updated to 1f
[  349.097062] pci 0000:06:06.0: scanning [bus 00-00] behind bridge, pass 1
[  349.097068] pci_bus 0000:06: busn_res: extended 08 to [bus 06-27]
[  349.097197] pci_bus 0000:20: busn_res: [bus 20-27] is updated under [bus 06-27]
[  349.097201] pci_bus 0000:20: scanning bus
[  349.097207] pci_bus 0000:20: fixups for bus
[  349.097208] pci 0000:06:06.0: PCI bridge to [bus 20-27]
[  349.097219] pci 0000:06:06.0:   bridge window [io  0x0000-0x0fff]
[  349.097223] pci 0000:06:06.0:   bridge window [mem 0x00000000-0x000fffff]
[  349.097231] pci 0000:06:06.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  349.097232] pci_bus 0000:20: bus scan returning with max=20
[  349.097237] pci_bus 0000:20: busn_res: [bus 20-27] end is updated to 27
[  349.097241] pci_bus 0000:06: bus scan returning with max=27
[  349.097244] pci_bus 0000:06: busn_res: [bus 06-27] end is updated to 27
[  349.097247] pci_bus 0000:05: bus scan returning with max=27
[  349.097251] pcieport 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 1
[  349.097258] pci_bus 0000:02: bus scan returning with max=02
[  349.097267] pcieport 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 1
[  349.097580] pci_bus 0000:03: bus scan returning with max=03
[  349.097594] pcieport 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 1
[  349.097599] pci_bus 0000:04: bus scan returning with max=04
[  349.097603] pci_bus 0000:00: bus scan returning with max=9b
[  349.097624] pci 0000:06:03.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 08-0f] add_size 200000
[  349.097626] pci 0000:06:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 08-0f] add_size 200000
[  349.097634] pci 0000:06:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 10-17] add_size 200000
[  349.097636] pci 0000:06:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 10-17] add_size 200000
[  349.097644] pci 0000:06:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 18-1f] add_size 200000
[  349.097646] pci 0000:06:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 18-1f] add_size 200000
[  349.097653] pci 0000:06:06.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 20-27] add_size 200000
[  349.097655] pci 0000:06:06.0: bridge window [mem 0x00100000-0x001fffff] to [bus 20-27] add_size 200000
[  349.097663] pci 0000:06:03.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  349.097665] pci 0000:06:04.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  349.097667] pci 0000:06:05.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  349.097669] pci 0000:06:06.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  349.097672] pci 0000:05:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 06-27] add_size 800000
[  349.097674] pci 0000:06:03.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  349.097676] pci 0000:06:04.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  349.097678] pci 0000:06:05.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  349.097679] pci 0000:06:06.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  349.097681] pci 0000:05:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 06-27] add_size 800000
[  349.097722] i915 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[  349.097727] pci 0000:05:00.0: res[14]=[mem 0x00100000-0x005fffff] get_res_add_size add_size 800000
[  349.097729] pci 0000:05:00.0: res[15]=[mem 0x00100000-0x005fffff 64bit pref] get_res_add_size add_size 800000
[  349.097732] pci 0000:05:00.0: BAR 14: assigned [mem 0xc1d00000-0xc29fffff]
[  349.097735] pci 0000:05:00.0: BAR 15: assigned [mem 0xce000000-0xcecfffff 64bit pref]
[  349.097737] pci 0000:05:00.0: BAR 13: can't assign io (size 0x5000)
[  349.097741] pci 0000:05:00.0: BAR 13: can't assign io (size 0x5000)
[  349.097749] pci 0000:06:03.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  349.097752] pci 0000:06:03.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  349.097755] pci 0000:06:04.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  349.097758] pci 0000:06:04.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  349.097762] pci 0000:06:05.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  349.097764] pci 0000:06:05.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  349.097768] pci 0000:06:06.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  349.097771] pci 0000:06:06.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  349.097775] pci 0000:06:00.0: BAR 14: assigned [mem 0xc1d00000-0xc1dfffff]
[  349.097779] pci 0000:06:00.0: BAR 15: assigned [mem 0xce000000-0xce0fffff 64bit pref]
[  349.097782] pci 0000:06:03.0: BAR 14: assigned [mem 0xc1e00000-0xc20fffff]
[  349.097786] pci 0000:06:03.0: BAR 15: assigned [mem 0xce100000-0xce3fffff 64bit pref]
[  349.097789] pci 0000:06:04.0: BAR 14: assigned [mem 0xc2100000-0xc23fffff]
[  349.097791] pci 0000:06:04.0: BAR 15: assigned [mem 0xce400000-0xce6fffff 64bit pref]
[  349.097793] pci 0000:06:05.0: BAR 14: assigned [mem 0xc2400000-0xc26fffff]
[  349.097795] pci 0000:06:05.0: BAR 15: assigned [mem 0xce700000-0xce9fffff 64bit pref]
[  349.097797] pci 0000:06:06.0: BAR 14: assigned [mem 0xc2700000-0xc29fffff]
[  349.097799] pci 0000:06:06.0: BAR 15: assigned [mem 0xcea00000-0xcecfffff 64bit pref]
[  349.097801] pci 0000:06:00.0: BAR 13: can't assign io (size 0x1000)
[  349.097803] pci 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
[  349.097805] pci 0000:06:04.0: BAR 13: can't assign io (size 0x1000)
[  349.097807] pci 0000:06:05.0: BAR 13: can't assign io (size 0x1000)
[  349.097808] pci 0000:06:06.0: BAR 13: can't assign io (size 0x1000)
[  349.097818] pci 0000:06:00.0: BAR 13: can't assign io (size 0x1000)
[  349.097819] pci 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
[  349.097821] pci 0000:06:04.0: BAR 13: can't assign io (size 0x1000)
[  349.097823] pci 0000:06:05.0: BAR 13: can't assign io (size 0x1000)
[  349.097824] pci 0000:06:06.0: BAR 13: can't assign io (size 0x1000)
[  349.097828] pci 0000:07:00.0: BAR 0: assigned [mem 0xc1d00000-0xc1d3ffff]
[  349.097833] pci 0000:07:00.0: BAR 0: set to [mem 0xc1d00000-0xc1d3ffff] (PCI address [0xc1d00000-0xc1d3ffff])
[  349.097835] pci 0000:07:00.0: BAR 1: assigned [mem 0xc1d40000-0xc1d40fff]
[  349.097840] pci 0000:07:00.0: BAR 1: set to [mem 0xc1d40000-0xc1d40fff] (PCI address [0xc1d40000-0xc1d40fff])
[  349.097842] pci 0000:06:00.0: PCI bridge to [bus 07]
[  349.097846] pci 0000:06:00.0:   bridge window [mem 0xc1d00000-0xc1dfffff]
[  349.097850] pci 0000:06:00.0:   bridge window [mem 0xce000000-0xce0fffff 64bit pref]
[  349.097855] pci 0000:06:03.0: PCI bridge to [bus 08-0f]
[  349.097860] pci 0000:06:03.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  349.097863] pci 0000:06:03.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  349.097868] pci 0000:06:04.0: PCI bridge to [bus 10-17]
[  349.097873] pci 0000:06:04.0:   bridge window [mem 0xc2100000-0xc23fffff]
[  349.097876] pci 0000:06:04.0:   bridge window [mem 0xce400000-0xce6fffff 64bit pref]
[  349.097881] pci 0000:06:05.0: PCI bridge to [bus 18-1f]
[  349.097885] pci 0000:06:05.0:   bridge window [mem 0xc2400000-0xc26fffff]
[  349.097889] pci 0000:06:05.0:   bridge window [mem 0xce700000-0xce9fffff 64bit pref]
[  349.097894] pci 0000:06:06.0: PCI bridge to [bus 20-27]
[  349.097898] pci 0000:06:06.0:   bridge window [mem 0xc2700000-0xc29fffff]
[  349.097902] pci 0000:06:06.0:   bridge window [mem 0xcea00000-0xcecfffff 64bit pref]
[  349.097907] pci 0000:05:00.0: PCI bridge to [bus 06-27]
[  349.097911] pci 0000:05:00.0:   bridge window [mem 0xc1d00000-0xc29fffff]
[  349.097915] pci 0000:05:00.0:   bridge window [mem 0xce000000-0xcecfffff 64bit pref]
[  349.098015] pcieport 0000:05:00.0: enabling device (0000 -> 0002)
[  349.098081] pcieport 0000:05:00.0: enabling bus mastering
[  349.098103] pcieport 0000:05:00.0: irq 43 for MSI/MSI-X
[  349.098505] pcieport 0000:06:00.0: enabling device (0000 -> 0002)
[  349.098578] pcieport 0000:06:00.0: enabling bus mastering
[  349.098595] pcieport 0000:06:00.0: irq 44 for MSI/MSI-X
[  349.099433] pcieport 0000:06:03.0: enabling device (0000 -> 0002)
[  349.099514] pcieport 0000:06:03.0: enabling bus mastering
[  349.099532] pcieport 0000:06:03.0: irq 45 for MSI/MSI-X
[  349.101068] pciehp 0000:06:03.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  349.101136] pci_bus 0000:08: dev 00, created physical slot 3-1
[  349.101201] pciehp 0000:06:03.0:pcie24: service driver pciehp loaded
[  349.101869] pcieport 0000:06:04.0: enabling device (0000 -> 0002)
[  349.101951] pcieport 0000:06:04.0: enabling bus mastering
[  349.101966] pcieport 0000:06:04.0: irq 46 for MSI/MSI-X
[  349.102037] pciehp 0000:06:04.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  349.102066] pci_bus 0000:10: dev 00, created physical slot 4-1
[  349.102090] pciehp 0000:06:04.0:pcie24: service driver pciehp loaded
[  349.102182] pcieport 0000:06:05.0: enabling device (0000 -> 0002)
[  349.102235] pcieport 0000:06:05.0: enabling bus mastering
[  349.102249] pcieport 0000:06:05.0: irq 47 for MSI/MSI-X
[  349.102807] pciehp 0000:06:05.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  349.102829] pci_bus 0000:18: dev 00, created physical slot 5-1
[  349.102861] pciehp 0000:06:05.0:pcie24: service driver pciehp loaded
[  349.102962] pcieport 0000:06:06.0: enabling device (0000 -> 0002)
[  349.103013] pcieport 0000:06:06.0: enabling bus mastering
[  349.103026] pcieport 0000:06:06.0: irq 48 for MSI/MSI-X
[  349.103110] pciehp 0000:06:06.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  349.103144] pci_bus 0000:20: dev 00, created physical slot 6
[  349.103173] pciehp 0000:06:06.0:pcie24: service driver pciehp loaded


hotplug:
[  517.544459] pciehp 0000:06:03.0:pcie24: Card present on Slot(3-1)
[  517.659714] pci 0000:08:00.0: [8086:1549] type 01 class 0x060400
[  517.659790] pci 0000:08:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  517.659873] pci 0000:08:00.0: supports D1 D2
[  517.659876] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  517.659884] pci 0000:08:00.0: PME# disabled
[  517.666430] pci 0000:08:00.0: scanning [bus 00-00] behind bridge, pass 0
[  517.666437] pci 0000:08:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  517.666452] pci 0000:08:00.0: scanning [bus 00-00] behind bridge, pass 1
[  517.666468] pci_bus 0000:08: busn_res: extended 01 to [bus 08-10]
[  517.666472] pci_bus 0000:06: busn_res: extended 01 to [bus 06-28]
[  517.666626] pci_bus 0000:09: busn_res: [bus 09-10] is updated under [bus 08-10]
[  517.666632] pci_bus 0000:09: scanning bus
[  517.666675] pci 0000:09:00.0: [8086:1549] type 01 class 0x060400
[  517.666745] pci 0000:09:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  517.666823] pci 0000:09:00.0: supports D1 D2
[  517.666825] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  517.666833] pci 0000:09:00.0: PME# disabled
[  517.667147] pci 0000:09:00.0: scanning [bus 00-00] behind bridge, pass 0
[  517.667151] pci 0000:09:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  517.667242] pci_bus 0000:09: fixups for bus
[  517.667249] pci 0000:08:00.0: PCI bridge to [bus 09-10]
[  517.667264] pci 0000:08:00.0:   bridge window [io  0x0000-0x0fff]
[  517.667271] pci 0000:08:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  517.667282] pci 0000:08:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  517.667287] pci 0000:09:00.0: scanning [bus 00-00] behind bridge, pass 1
[  517.667301] pci_bus 0000:09: busn_res: extended 01 to [bus 09-11]
[  517.667304] pci_bus 0000:08: busn_res: extended 01 to [bus 08-11]
[  517.667307] pci_bus 0000:06: busn_res: extended 01 to [bus 06-29]
[  517.667478] pci_bus 0000:0a: busn_res: [bus 0a-11] is updated under [bus 09-11]
[  517.667485] pci_bus 0000:0a: scanning bus
[  517.667556] pci 0000:0a:00.0: [14e4:1682] type 00 class 0x020000
[  517.667612] pci 0000:0a:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[  517.667649] pci 0000:0a:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[  517.667706] pci 0000:0a:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[  517.667904] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold
[  517.667914] pci 0000:0a:00.0: PME# disabled
[  517.673017] pci_bus 0000:0a: fixups for bus
[  517.673022] pci 0000:09:00.0: PCI bridge to [bus 0a-11]
[  517.673034] pci 0000:09:00.0:   bridge window [io  0x0000-0x0fff]
[  517.673041] pci 0000:09:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  517.673052] pci 0000:09:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  517.673055] pci_bus 0000:0a: bus scan returning with max=0a
[  517.673061] pci_bus 0000:0a: busn_res: [bus 0a-11] end is updated to 11
[  517.673065] pci_bus 0000:09: bus scan returning with max=11
[  517.673070] pci_bus 0000:09: busn_res: [bus 09-11] end is updated to 11
[  517.673092] pci 0000:09:00.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 0a-11] add_size 200000
[  517.673094] pci 0000:09:00.0: bridge window [mem 0x00100000-0x001fffff] to [bus 0a-11] add_size 200000
[  517.673111] pci 0000:09:00.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  517.673113] pci 0000:08:00.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 09-11] add_size 200000
[  517.673116] pci 0000:09:00.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  517.673118] pci 0000:08:00.0: bridge window [mem 0x00100000-0x001fffff] to [bus 09-11] add_size 200000
[  517.673128] pcieport 0000:06:03.0: bridge window [io  0x1000-0x1fff] to [bus 08-11] add_size 1000
[  517.673131] pcieport 0000:06:03.0: res[13]=[io  0x1000-0x1fff] get_res_add_size add_size 1000
[  517.673134] pcieport 0000:06:03.0: BAR 13: can't assign io (size 0x2000)
[  517.673138] pcieport 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
[  517.673142] pci 0000:08:00.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  517.673144] pci 0000:08:00.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  517.673148] pci 0000:08:00.0: BAR 14: assigned [mem 0xc1e00000-0xc20fffff]
[  517.673151] pci 0000:08:00.0: BAR 15: assigned [mem 0xce100000-0xce3fffff 64bit pref]
[  517.673153] pci 0000:08:00.0: BAR 13: can't assign io (size 0x1000)
[  517.673157] pci 0000:08:00.0: BAR 13: can't assign io (size 0x1000)
[  517.673160] pci 0000:09:00.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  517.673162] pci 0000:09:00.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  517.673165] pci 0000:09:00.0: BAR 14: assigned [mem 0xc1e00000-0xc20fffff]
[  517.673168] pci 0000:09:00.0: BAR 15: assigned [mem 0xce100000-0xce3fffff 64bit pref]
[  517.673170] pci 0000:09:00.0: BAR 13: can't assign io (size 0x1000)
[  517.673173] pci 0000:09:00.0: BAR 13: can't assign io (size 0x1000)
[  517.673177] pci 0000:0a:00.0: BAR 0: assigned [mem 0xce100000-0xce10ffff 64bit pref]
[  517.673204] pci 0000:0a:00.0: BAR 0: set to [mem 0xce100000-0xce10ffff 64bit pref] (PCI address [0xce100000-0xce10ffff])
[  517.673206] pci 0000:0a:00.0: BAR 2: assigned [mem 0xce110000-0xce11ffff 64bit pref]
[  517.673232] pci 0000:0a:00.0: BAR 2: set to [mem 0xce110000-0xce11ffff 64bit pref] (PCI address [0xce110000-0xce11ffff])
[  517.673235] pci 0000:0a:00.0: BAR 6: assigned [mem 0xce120000-0xce12ffff pref]
[  517.673238] pci 0000:09:00.0: PCI bridge to [bus 0a-11]
[  517.673247] pci 0000:09:00.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  517.673253] pci 0000:09:00.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  517.673264] pci 0000:08:00.0: PCI bridge to [bus 09-11]
[  517.673272] pci 0000:08:00.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  517.673279] pci 0000:08:00.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  517.673289] pcieport 0000:06:03.0: PCI bridge to [bus 08-11]
[  517.673294] pcieport 0000:06:03.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  517.673298] pcieport 0000:06:03.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  517.673304] PCI: No. 2 try to assign unassigned res
[  517.673341] pcieport 0000:06:03.0: bridge window [io  0x1000-0x1fff] to [bus 08-11] add_size 1000
[  517.673344] pcieport 0000:06:03.0: res[13]=[io  0x1000-0x1fff] get_res_add_size add_size 1000
[  517.673346] pcieport 0000:06:03.0: BAR 13: can't assign io (size 0x2000)
[  517.673349] pcieport 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
[  517.673351] pci 0000:08:00.0: BAR 13: can't assign io (size 0x1000)
[  517.673354] pci 0000:09:00.0: BAR 13: can't assign io (size 0x1000)
[  517.673356] pci 0000:09:00.0: PCI bridge to [bus 0a-11]
[  517.673365] pci 0000:09:00.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  517.673372] pci 0000:09:00.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  517.673382] pci 0000:08:00.0: PCI bridge to [bus 09-11]
[  517.673391] pci 0000:08:00.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  517.673397] pci 0000:08:00.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  517.673408] pcieport 0000:06:03.0: PCI bridge to [bus 08-11]
[  517.673413] pcieport 0000:06:03.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  517.673417] pcieport 0000:06:03.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  517.673466] pci 0000:08:00.0: no hotplug settings from platform
[  517.673496] pci 0000:09:00.0: no hotplug settings from platform
[  517.673522] pci 0000:0a:00.0: no hotplug settings from platform
[  517.673581] pcieport 0000:08:00.0: enabling device (0000 -> 0002)
[  517.673694] pcieport 0000:08:00.0: enabling bus mastering
[  517.673732] pcieport 0000:08:00.0: irq 56 for MSI/MSI-X
[  517.673919] pcieport 0000:09:00.0: enabling device (0000 -> 0002)
[  517.674046] pcieport 0000:09:00.0: enabling bus mastering
[  517.674086] pcieport 0000:09:00.0: irq 57 for MSI/MSI-X
[  517.674236] pciehp 0000:09:00.0:pcie24: HPC vendor_id 8086 device_id 1549 ss_vid 0 ss_did 0
[  517.674284] pci_bus 0000:0a: dev 00, created physical slot 9
[  517.674350] pciehp 0000:09:00.0:pcie24: service driver pciehp loaded

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: How to reserve pci bus numbers for hotplug?
  2013-12-12 19:56   ` Andreas Noever
@ 2013-12-13  6:04     ` Yinghai Lu
  2013-12-13 17:09     ` Bjorn Helgaas
  2013-12-15  4:10     ` Yinghai Lu
  2 siblings, 0 replies; 11+ messages in thread
From: Yinghai Lu @ 2013-12-13  6:04 UTC (permalink / raw)
  To: Andreas Noever, Linus Torvalds, Bjorn Helgaas; +Cc: linux-pci, linux-kernel

On Thu, Dec 12, 2013 at 11:56 AM, Andreas Noever
<andreas.noever@gmail.com> wrote:
> On Thu, Dec 12, 2013 at 1:21 AM, Yinghai Lu <yinghai@kernel.org> wrote:
>> On Wed, Dec 11, 2013 at 3:37 PM, Andreas Noever
>> <andreas.noever@gmail.com> wrote:
>>
>>> If I could get Linux to assign enough resources (bus numbers for now)
>>> then I could drop the acpi_osi parameter and make thunderbolt work
>>> after suspend... So, is there an easy way to fix this? (Quirks,
>>> reconfiguring bus number assignments from a platform driver, ...?)
>>
>> please check if busn_alloc at
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/yinghai/linux-yinghai.git
>> for-pci-busn-alloc-3.14
>>
>> could help.
>
> It seems to help. The initial assignment looks good:
>            +-01.1-[05-9b]----00.0-[06-27]--+-00.0-[07]----00.0  Intel
> Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
>            |                               +-03.0-[08-0f]--
>            |                               +-04.0-[10-17]--
>            |                               +-05.0-[18-1f]--
>            |                               \-06.0-[20-27]--
> After hotplug it looks like this:
>            +-01.1-[05-9b]----00.0-[06-29]--+-00.0-[07]----00.0  Intel
> Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
>            |
> +-03.0-[08-11]----00.0-[09-11]----00.0-[0a-11]----00.0  Broadcom
> Corporation NetXtreme BCM57762 Gigabit Ethernet PCIe
>            |                               +-04.0-[10-17]--
>            |                               +-05.0-[18-1f]--
>            |                               \-06.0-[20-27]--
> (Note that the bridge numbers are not disjoint)
>
> dmesg is attached.
>
> What is the status of the patch? Will it be merged for 3.14?
>

We may use your test case to ask Linus to reconsider to include busn_alloc
patchset.

Thanks

Yinghai

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: How to reserve pci bus numbers for hotplug?
  2013-12-12 19:56   ` Andreas Noever
  2013-12-13  6:04     ` Yinghai Lu
@ 2013-12-13 17:09     ` Bjorn Helgaas
  2013-12-14 20:50       ` Andreas Noever
  2013-12-15  4:10     ` Yinghai Lu
  2 siblings, 1 reply; 11+ messages in thread
From: Bjorn Helgaas @ 2013-12-13 17:09 UTC (permalink / raw)
  To: Andreas Noever; +Cc: Yinghai Lu, linux-pci, linux-kernel

On Thu, Dec 12, 2013 at 12:56 PM, Andreas Noever
<andreas.noever@gmail.com> wrote:
> On Thu, Dec 12, 2013 at 1:21 AM, Yinghai Lu <yinghai@kernel.org> wrote:
>> On Wed, Dec 11, 2013 at 3:37 PM, Andreas Noever
>> <andreas.noever@gmail.com> wrote:
>>
>>> If I could get Linux to assign enough resources (bus numbers for now)
>>> then I could drop the acpi_osi parameter and make thunderbolt work
>>> after suspend... So, is there an easy way to fix this? (Quirks,
>>> reconfiguring bus number assignments from a platform driver, ...?)
>>
>> please check if busn_alloc at
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/yinghai/linux-yinghai.git
>> for-pci-busn-alloc-3.14
>>
>> could help.
>
> It seems to help. The initial assignment looks good:
>            +-01.1-[05-9b]----00.0-[06-27]--+-00.0-[07]----00.0  Intel
> Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
>            |                               +-03.0-[08-0f]--
>            |                               +-04.0-[10-17]--
>            |                               +-05.0-[18-1f]--
>            |                               \-06.0-[20-27]--
> After hotplug it looks like this:
>            +-01.1-[05-9b]----00.0-[06-29]--+-00.0-[07]----00.0  Intel
> Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
>            |
> +-03.0-[08-11]----00.0-[09-11]----00.0-[0a-11]----00.0  Broadcom
> Corporation NetXtreme BCM57762 Gigabit Ethernet PCIe
>            |                               +-04.0-[10-17]--
>            |                               +-05.0-[18-1f]--
>            |                               \-06.0-[20-27]--
> (Note that the bridge numbers are not disjoint)
>
> dmesg is attached.
>
> What is the status of the patch? Will it be merged for 3.14?

It's not on my radar yet, so likely won't make it for v3.14.

Can you open a report at http://bugzilla.kernel.org and attach
complete dmesg logs without and with Yinghai's patches, and also the
complete "lspci -vv" output?

Bjorn

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: How to reserve pci bus numbers for hotplug?
  2013-12-13 17:09     ` Bjorn Helgaas
@ 2013-12-14 20:50       ` Andreas Noever
  0 siblings, 0 replies; 11+ messages in thread
From: Andreas Noever @ 2013-12-14 20:50 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: Yinghai Lu, linux-pci, linux-kernel

Done: https://bugzilla.kernel.org/show_bug.cgi?id=67001

On Fri, Dec 13, 2013 at 6:09 PM, Bjorn Helgaas <bhelgaas@google.com> wrote:
> On Thu, Dec 12, 2013 at 12:56 PM, Andreas Noever
> <andreas.noever@gmail.com> wrote:
>> On Thu, Dec 12, 2013 at 1:21 AM, Yinghai Lu <yinghai@kernel.org> wrote:
>>> On Wed, Dec 11, 2013 at 3:37 PM, Andreas Noever
>>> <andreas.noever@gmail.com> wrote:
>>>
>>>> If I could get Linux to assign enough resources (bus numbers for now)
>>>> then I could drop the acpi_osi parameter and make thunderbolt work
>>>> after suspend... So, is there an easy way to fix this? (Quirks,
>>>> reconfiguring bus number assignments from a platform driver, ...?)
>>>
>>> please check if busn_alloc at
>>>
>>> git://git.kernel.org/pub/scm/linux/kernel/git/yinghai/linux-yinghai.git
>>> for-pci-busn-alloc-3.14
>>>
>>> could help.
>>
>> It seems to help. The initial assignment looks good:
>>            +-01.1-[05-9b]----00.0-[06-27]--+-00.0-[07]----00.0  Intel
>> Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
>>            |                               +-03.0-[08-0f]--
>>            |                               +-04.0-[10-17]--
>>            |                               +-05.0-[18-1f]--
>>            |                               \-06.0-[20-27]--
>> After hotplug it looks like this:
>>            +-01.1-[05-9b]----00.0-[06-29]--+-00.0-[07]----00.0  Intel
>> Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
>>            |
>> +-03.0-[08-11]----00.0-[09-11]----00.0-[0a-11]----00.0  Broadcom
>> Corporation NetXtreme BCM57762 Gigabit Ethernet PCIe
>>            |                               +-04.0-[10-17]--
>>            |                               +-05.0-[18-1f]--
>>            |                               \-06.0-[20-27]--
>> (Note that the bridge numbers are not disjoint)
>>
>> dmesg is attached.
>>
>> What is the status of the patch? Will it be merged for 3.14?
>
> It's not on my radar yet, so likely won't make it for v3.14.
>
> Can you open a report at http://bugzilla.kernel.org and attach
> complete dmesg logs without and with Yinghai's patches, and also the
> complete "lspci -vv" output?
>
> Bjorn

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: How to reserve pci bus numbers for hotplug?
  2013-12-11 23:37 How to reserve pci bus numbers for hotplug? Andreas Noever
  2013-12-12  0:21 ` Yinghai Lu
@ 2013-12-14 22:01 ` Greg KH
  2013-12-14 22:15   ` Andreas Noever
  1 sibling, 1 reply; 11+ messages in thread
From: Greg KH @ 2013-12-14 22:01 UTC (permalink / raw)
  To: Andreas Noever; +Cc: linux-pci, linux-kernel

On Thu, Dec 12, 2013 at 12:37:50AM +0100, Andreas Noever wrote:
> 
> If I could get Linux to assign enough resources (bus numbers for now)
> then I could drop the acpi_osi parameter and make thunderbolt work
> after suspend... So, is there an easy way to fix this? (Quirks,
> reconfiguring bus number assignments from a platform driver, ...?)

I think you are going to have to do a lot more here, what is needed is a
whole connection manager for Thunderbolt, emulating what the BIOS does,
in order to get all of this working properly.

But don't let that stop you from trying, however the work involved is
really not trivial at all.

good luck,

greg k-h

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: How to reserve pci bus numbers for hotplug?
  2013-12-14 22:01 ` Greg KH
@ 2013-12-14 22:15   ` Andreas Noever
  2013-12-20  0:55     ` Greg KH
  0 siblings, 1 reply; 11+ messages in thread
From: Andreas Noever @ 2013-12-14 22:15 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-pci, linux-kernel

On Sat, Dec 14, 2013 at 11:01 PM, Greg KH <gregkh@linuxfoundation.org> wrote:
> On Thu, Dec 12, 2013 at 12:37:50AM +0100, Andreas Noever wrote:
>>
>> If I could get Linux to assign enough resources (bus numbers for now)
>> then I could drop the acpi_osi parameter and make thunderbolt work
>> after suspend... So, is there an easy way to fix this? (Quirks,
>> reconfiguring bus number assignments from a platform driver, ...?)
>
> I think you are going to have to do a lot more here, what is needed is a
> whole connection manager for Thunderbolt, emulating what the BIOS does,
> in order to get all of this working properly.
>
> But don't let that stop you from trying, however the work involved is
> really not trivial at all.
>
> good luck,
>
> greg k-h

Actually the thunderbolt part is already working (for non chaining
devices, see https://lkml.org/lkml/2013/11/28/492 if you are
interested). I can completely bootstrap the tb side of things. The
only problem is that if power has been cut by the firmware (during
boot without osi_acpi=Darwin or after a suspend/resume cycle) then
Linux does not allocate enough PCI resources...

Cheers,
Andreas

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: How to reserve pci bus numbers for hotplug?
  2013-12-12 19:56   ` Andreas Noever
  2013-12-13  6:04     ` Yinghai Lu
  2013-12-13 17:09     ` Bjorn Helgaas
@ 2013-12-15  4:10     ` Yinghai Lu
  2013-12-16 20:52       ` Andreas Noever
  2 siblings, 1 reply; 11+ messages in thread
From: Yinghai Lu @ 2013-12-15  4:10 UTC (permalink / raw)
  To: Andreas Noever; +Cc: linux-pci, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1865 bytes --]

On Thu, Dec 12, 2013 at 11:56 AM, Andreas Noever
<andreas.noever@gmail.com> wrote:
> On Thu, Dec 12, 2013 at 1:21 AM, Yinghai Lu <yinghai@kernel.org> wrote:
>> On Wed, Dec 11, 2013 at 3:37 PM, Andreas Noever
>> <andreas.noever@gmail.com> wrote:
>>
>>> If I could get Linux to assign enough resources (bus numbers for now)
>>> then I could drop the acpi_osi parameter and make thunderbolt work
>>> after suspend... So, is there an easy way to fix this? (Quirks,
>>> reconfiguring bus number assignments from a platform driver, ...?)
>>
>> please check if busn_alloc at
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/yinghai/linux-yinghai.git
>> for-pci-busn-alloc-3.14
>>
>> could help.
>
> It seems to help. The initial assignment looks good:
>            +-01.1-[05-9b]----00.0-[06-27]--+-00.0-[07]----00.0  Intel
> Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
>            |                               +-03.0-[08-0f]--
>            |                               +-04.0-[10-17]--
>            |                               +-05.0-[18-1f]--
>            |                               \-06.0-[20-27]--
> After hotplug it looks like this:
>            +-01.1-[05-9b]----00.0-[06-29]--+-00.0-[07]----00.0  Intel
> Corporation DSL3510 Thunderbolt Port [Cactus Ridge]
>            |
> +-03.0-[08-11]----00.0-[09-11]----00.0-[0a-11]----00.0  Broadcom
> Corporation NetXtreme BCM57762 Gigabit Ethernet PCIe
>            |                               +-04.0-[10-17]--
>            |                               +-05.0-[18-1f]--
>            |                               \-06.0-[20-27]--
> (Note that the bridge numbers are not disjoint)

it should not extend to [08-11] or [06-29]

Please check attached patch that should address bus number wrong extending.
--- missed checking before going up one level ...wrong assumption ...

Thanks

Yinghai

[-- Attachment #2: fix_probe_resource_assumption.patch --]
[-- Type: text/x-patch, Size: 1072 bytes --]

---
 kernel/resource.c |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

Index: linux-2.6/kernel/resource.c
===================================================================
--- linux-2.6.orig/kernel/resource.c
+++ linux-2.6/kernel/resource.c
@@ -1130,7 +1130,9 @@ int probe_resource(struct resource *b_re
 	/* Probe extended range above top */
 	memset(busn_res, 0, sizeof(struct resource));
 	parent_res = b_res;
-	while (parent_res && !(parent_res->flags & stop_flags)) {
+	while (!(parent_res->flags & stop_flags)) {
+		struct resource *up_parent_res;
+
 		ret = __adjust_resource(parent_res, parent_res->start,
 			resource_size(parent_res) + (needed_size - n_size));
 		if (!ret) {
@@ -1151,7 +1153,11 @@ int probe_resource(struct resource *b_re
 			/* ret must be 0 here*/
 			goto out;
 		}
-		parent_res = parent_res->parent;
+		/* before go up, need to make sure at the same end */
+		up_parent_res = parent_res->parent;
+		if (!up_parent_res || up_parent_res->end != parent_res->end)
+			goto out;
+		parent_res = up_parent_res;
 	}
 
 out:

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: How to reserve pci bus numbers for hotplug?
  2013-12-15  4:10     ` Yinghai Lu
@ 2013-12-16 20:52       ` Andreas Noever
  0 siblings, 0 replies; 11+ messages in thread
From: Andreas Noever @ 2013-12-16 20:52 UTC (permalink / raw)
  To: Yinghai Lu; +Cc: linux-pci, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 414 bytes --]

On Sun, Dec 15, 2013 at 5:10 AM, Yinghai Lu <yinghai@kernel.org> wrote:
> it should not extend to [08-11] or [06-29]
>
> Please check attached patch that should address bus number wrong extending.
> --- missed checking before going up one level ...wrong assumption ...

This fixes the overlapping busnrs. Full dmesg and lspci -vv are
attached in case you want to check the configuration in detail.

Thanks
Andreas

[-- Attachment #2: dmesg_busnr_patch --]
[-- Type: application/octet-stream, Size: 156796 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.13.0-1-00213-ga0ecfde-dirty (root@linuxbook) (gcc version 4.8.2 (GCC) ) #19 SMP PREEMPT Mon Dec 16 21:31:59 CET 2013
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux-git root=UUID=555026f1-7426-49a7-80aa-3d2bf31d5cc8 rw quiet systemd.unit=graphical.target acpi_osi=Darwin 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] reserved
[    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-0x0000000001a71000) (25MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000001a71000-0x0000000002000000) (5MB)
[    0.000000] efi: mem05: type=2, attr=0xf, range=[0x0000000002000000-0x0000000003971000) (25MB)
[    0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000003971000-0x0000000020000000) (454MB)
[    0.000000] efi: mem07: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000020200000-0x0000000032d8c000) (299MB)
[    0.000000] efi: mem09: type=2, attr=0xf, range=[0x0000000032d8c000-0x00000000356be000) (41MB)
[    0.000000] efi: mem10: type=7, attr=0xf, range=[0x00000000356be000-0x0000000040004000) (169MB)
[    0.000000] efi: mem11: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000040005000-0x000000005fa86000) (506MB)
[    0.000000] efi: mem13: type=2, attr=0xf, range=[0x000000005fa86000-0x000000007f844000) (509MB)
[    0.000000] efi: mem14: type=1, attr=0xf, range=[0x000000007f844000-0x000000007f862000) (0MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x000000007f862000-0x000000007f86f000) (0MB)
[    0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000007f86f000-0x000000007f870000) (0MB)
[    0.000000] efi: mem17: type=4, attr=0xf, range=[0x000000007f870000-0x000000007f87a000) (0MB)
[    0.000000] efi: mem18: type=2, attr=0xf, range=[0x000000007f87a000-0x000000007f87c000) (0MB)
[    0.000000] efi: mem19: type=4, attr=0xf, range=[0x000000007f87c000-0x0000000088014000) (135MB)
[    0.000000] efi: mem20: type=3, attr=0xf, range=[0x0000000088014000-0x000000008812b000) (1MB)
[    0.000000] efi: mem21: type=4, attr=0xf, range=[0x000000008812b000-0x0000000088214000) (0MB)
[    0.000000] efi: mem22: type=3, attr=0xf, range=[0x0000000088214000-0x0000000088237000) (0MB)
[    0.000000] efi: mem23: type=4, attr=0xf, range=[0x0000000088237000-0x0000000088259000) (0MB)
[    0.000000] efi: mem24: type=3, attr=0xf, range=[0x0000000088259000-0x0000000088267000) (0MB)
[    0.000000] efi: mem25: type=4, attr=0xf, range=[0x0000000088267000-0x000000008826b000) (0MB)
[    0.000000] efi: mem26: type=3, attr=0xf, range=[0x000000008826b000-0x0000000088282000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x0000000088282000-0x0000000088287000) (0MB)
[    0.000000] efi: mem28: type=3, attr=0xf, range=[0x0000000088287000-0x00000000882a0000) (0MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000882a0000-0x000000008833d000) (0MB)
[    0.000000] efi: mem30: type=3, attr=0xf, range=[0x000000008833d000-0x0000000088341000) (0MB)
[    0.000000] efi: mem31: type=2, attr=0xf, range=[0x0000000088341000-0x0000000088342000) (0MB)
[    0.000000] efi: mem32: type=3, attr=0xf, range=[0x0000000088342000-0x0000000088343000) (0MB)
[    0.000000] efi: mem33: type=4, attr=0xf, range=[0x0000000088343000-0x0000000088345000) (0MB)
[    0.000000] efi: mem34: type=3, attr=0xf, range=[0x0000000088345000-0x0000000088347000) (0MB)
[    0.000000] efi: mem35: type=4, attr=0xf, range=[0x0000000088347000-0x0000000088349000) (0MB)
[    0.000000] efi: mem36: type=3, attr=0xf, range=[0x0000000088349000-0x000000008834d000) (0MB)
[    0.000000] efi: mem37: type=4, attr=0xf, range=[0x000000008834d000-0x000000008834e000) (0MB)
[    0.000000] efi: mem38: type=3, attr=0xf, range=[0x000000008834e000-0x0000000088350000) (0MB)
[    0.000000] efi: mem39: type=4, attr=0xf, range=[0x0000000088350000-0x0000000088351000) (0MB)
[    0.000000] efi: mem40: type=2, attr=0xf, range=[0x0000000088351000-0x0000000088352000) (0MB)
[    0.000000] efi: mem41: type=4, attr=0xf, range=[0x0000000088352000-0x0000000088353000) (0MB)
[    0.000000] efi: mem42: type=3, attr=0xf, range=[0x0000000088353000-0x0000000088357000) (0MB)
[    0.000000] efi: mem43: type=4, attr=0xf, range=[0x0000000088357000-0x0000000088358000) (0MB)
[    0.000000] efi: mem44: type=3, attr=0xf, range=[0x0000000088358000-0x0000000088359000) (0MB)
[    0.000000] efi: mem45: type=4, attr=0xf, range=[0x0000000088359000-0x000000008835b000) (0MB)
[    0.000000] efi: mem46: type=2, attr=0xf, range=[0x000000008835b000-0x000000008835c000) (0MB)
[    0.000000] efi: mem47: type=4, attr=0xf, range=[0x000000008835c000-0x0000000088360000) (0MB)
[    0.000000] efi: mem48: type=3, attr=0xf, range=[0x0000000088360000-0x000000008837c000) (0MB)
[    0.000000] efi: mem49: type=4, attr=0xf, range=[0x000000008837c000-0x0000000088380000) (0MB)
[    0.000000] efi: mem50: type=3, attr=0xf, range=[0x0000000088380000-0x0000000088384000) (0MB)
[    0.000000] efi: mem51: type=4, attr=0xf, range=[0x0000000088384000-0x000000008838a000) (0MB)
[    0.000000] efi: mem52: type=3, attr=0xf, range=[0x000000008838a000-0x0000000088392000) (0MB)
[    0.000000] efi: mem53: type=2, attr=0xf, range=[0x0000000088392000-0x0000000088393000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x0000000088393000-0x0000000088394000) (0MB)
[    0.000000] efi: mem55: type=3, attr=0xf, range=[0x0000000088394000-0x00000000883aa000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000883aa000-0x00000000883ac000) (0MB)
[    0.000000] efi: mem57: type=3, attr=0xf, range=[0x00000000883ac000-0x00000000883b7000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000883b7000-0x00000000883bb000) (0MB)
[    0.000000] efi: mem59: type=2, attr=0xf, range=[0x00000000883bb000-0x00000000883bc000) (0MB)
[    0.000000] efi: mem60: type=3, attr=0xf, range=[0x00000000883bc000-0x00000000883c2000) (0MB)
[    0.000000] efi: mem61: type=4, attr=0xf, range=[0x00000000883c2000-0x00000000883c3000) (0MB)
[    0.000000] efi: mem62: type=3, attr=0xf, range=[0x00000000883c3000-0x00000000883cd000) (0MB)
[    0.000000] efi: mem63: type=4, attr=0xf, range=[0x00000000883cd000-0x00000000883d0000) (0MB)
[    0.000000] efi: mem64: type=3, attr=0xf, range=[0x00000000883d0000-0x00000000883d1000) (0MB)
[    0.000000] efi: mem65: type=4, attr=0xf, range=[0x00000000883d1000-0x0000000088bb8000) (7MB)
[    0.000000] efi: mem66: type=3, attr=0xf, range=[0x0000000088bb8000-0x0000000088bbd000) (0MB)
[    0.000000] efi: mem67: type=4, attr=0xf, range=[0x0000000088bbd000-0x0000000089547000) (9MB)
[    0.000000] efi: mem68: type=2, attr=0xf, range=[0x0000000089547000-0x0000000089548000) (0MB)
[    0.000000] efi: mem69: type=4, attr=0xf, range=[0x0000000089548000-0x0000000089562000) (0MB)
[    0.000000] efi: mem70: type=3, attr=0xf, range=[0x0000000089562000-0x000000008956b000) (0MB)
[    0.000000] efi: mem71: type=4, attr=0xf, range=[0x000000008956b000-0x0000000089581000) (0MB)
[    0.000000] efi: mem72: type=2, attr=0xf, range=[0x0000000089581000-0x0000000089582000) (0MB)
[    0.000000] efi: mem73: type=4, attr=0xf, range=[0x0000000089582000-0x0000000089588000) (0MB)
[    0.000000] efi: mem74: type=3, attr=0xf, range=[0x0000000089588000-0x000000008958a000) (0MB)
[    0.000000] efi: mem75: type=4, attr=0xf, range=[0x000000008958a000-0x0000000089591000) (0MB)
[    0.000000] efi: mem76: type=3, attr=0xf, range=[0x0000000089591000-0x0000000089599000) (0MB)
[    0.000000] efi: mem77: type=4, attr=0xf, range=[0x0000000089599000-0x000000008959b000) (0MB)
[    0.000000] efi: mem78: type=2, attr=0xf, range=[0x000000008959b000-0x000000008959c000) (0MB)
[    0.000000] efi: mem79: type=4, attr=0xf, range=[0x000000008959c000-0x000000008959d000) (0MB)
[    0.000000] efi: mem80: type=3, attr=0xf, range=[0x000000008959d000-0x000000008959e000) (0MB)
[    0.000000] efi: mem81: type=4, attr=0xf, range=[0x000000008959e000-0x00000000895a3000) (0MB)
[    0.000000] efi: mem82: type=3, attr=0xf, range=[0x00000000895a3000-0x00000000895a8000) (0MB)
[    0.000000] efi: mem83: type=4, attr=0xf, range=[0x00000000895a8000-0x00000000895bf000) (0MB)
[    0.000000] efi: mem84: type=3, attr=0xf, range=[0x00000000895bf000-0x00000000895c3000) (0MB)
[    0.000000] efi: mem85: type=4, attr=0xf, range=[0x00000000895c3000-0x00000000895c7000) (0MB)
[    0.000000] efi: mem86: type=2, attr=0xf, range=[0x00000000895c7000-0x00000000895c8000) (0MB)
[    0.000000] efi: mem87: type=4, attr=0xf, range=[0x00000000895c8000-0x00000000895c9000) (0MB)
[    0.000000] efi: mem88: type=3, attr=0xf, range=[0x00000000895c9000-0x00000000895ca000) (0MB)
[    0.000000] efi: mem89: type=4, attr=0xf, range=[0x00000000895ca000-0x00000000895cb000) (0MB)
[    0.000000] efi: mem90: type=3, attr=0xf, range=[0x00000000895cb000-0x00000000895d6000) (0MB)
[    0.000000] efi: mem91: type=4, attr=0xf, range=[0x00000000895d6000-0x00000000895dc000) (0MB)
[    0.000000] efi: mem92: type=3, attr=0xf, range=[0x00000000895dc000-0x00000000895de000) (0MB)
[    0.000000] efi: mem93: type=4, attr=0xf, range=[0x00000000895de000-0x00000000895f8000) (0MB)
[    0.000000] efi: mem94: type=3, attr=0xf, range=[0x00000000895f8000-0x0000000089634000) (0MB)
[    0.000000] efi: mem95: type=4, attr=0xf, range=[0x0000000089634000-0x000000008964a000) (0MB)
[    0.000000] efi: mem96: type=3, attr=0xf, range=[0x000000008964a000-0x000000008964d000) (0MB)
[    0.000000] efi: mem97: type=4, attr=0xf, range=[0x000000008964d000-0x000000008964f000) (0MB)
[    0.000000] efi: mem98: type=2, attr=0xf, range=[0x000000008964f000-0x0000000089650000) (0MB)
[    0.000000] efi: mem99: type=4, attr=0xf, range=[0x0000000089650000-0x0000000089685000) (0MB)
[    0.000000] efi: mem100: type=3, attr=0xf, range=[0x0000000089685000-0x0000000089693000) (0MB)
[    0.000000] efi: mem101: type=4, attr=0xf, range=[0x0000000089693000-0x0000000089697000) (0MB)
[    0.000000] efi: mem102: type=3, attr=0xf, range=[0x0000000089697000-0x00000000896ab000) (0MB)
[    0.000000] efi: mem103: type=4, attr=0xf, range=[0x00000000896ab000-0x00000000896b0000) (0MB)
[    0.000000] efi: mem104: type=3, attr=0xf, range=[0x00000000896b0000-0x00000000896b1000) (0MB)
[    0.000000] efi: mem105: type=4, attr=0xf, range=[0x00000000896b1000-0x00000000896b4000) (0MB)
[    0.000000] efi: mem106: type=2, attr=0xf, range=[0x00000000896b4000-0x00000000896b5000) (0MB)
[    0.000000] efi: mem107: type=4, attr=0xf, range=[0x00000000896b5000-0x00000000896b9000) (0MB)
[    0.000000] efi: mem108: type=3, attr=0xf, range=[0x00000000896b9000-0x00000000896bb000) (0MB)
[    0.000000] efi: mem109: type=4, attr=0xf, range=[0x00000000896bb000-0x00000000896bf000) (0MB)
[    0.000000] efi: mem110: type=3, attr=0xf, range=[0x00000000896bf000-0x00000000896d9000) (0MB)
[    0.000000] efi: mem111: type=4, attr=0xf, range=[0x00000000896d9000-0x00000000896dc000) (0MB)
[    0.000000] efi: mem112: type=2, attr=0xf, range=[0x00000000896dc000-0x00000000896dd000) (0MB)
[    0.000000] efi: mem113: type=3, attr=0xf, range=[0x00000000896dd000-0x00000000896de000) (0MB)
[    0.000000] efi: mem114: type=4, attr=0xf, range=[0x00000000896de000-0x00000000896e0000) (0MB)
[    0.000000] efi: mem115: type=3, attr=0xf, range=[0x00000000896e0000-0x00000000896e1000) (0MB)
[    0.000000] efi: mem116: type=4, attr=0xf, range=[0x00000000896e1000-0x00000000896e2000) (0MB)
[    0.000000] efi: mem117: type=3, attr=0xf, range=[0x00000000896e2000-0x00000000896e3000) (0MB)
[    0.000000] efi: mem118: type=4, attr=0xf, range=[0x00000000896e3000-0x00000000896e5000) (0MB)
[    0.000000] efi: mem119: type=3, attr=0xf, range=[0x00000000896e5000-0x00000000896ea000) (0MB)
[    0.000000] efi: mem120: type=4, attr=0xf, range=[0x00000000896ea000-0x00000000896eb000) (0MB)
[    0.000000] efi: mem121: type=2, attr=0xf, range=[0x00000000896eb000-0x00000000896ec000) (0MB)
[    0.000000] efi: mem122: type=4, attr=0xf, range=[0x00000000896ec000-0x00000000896ed000) (0MB)
[    0.000000] efi: mem123: type=3, attr=0xf, range=[0x00000000896ed000-0x00000000896ee000) (0MB)
[    0.000000] efi: mem124: type=4, attr=0xf, range=[0x00000000896ee000-0x00000000896ef000) (0MB)
[    0.000000] efi: mem125: type=3, attr=0xf, range=[0x00000000896ef000-0x00000000896f0000) (0MB)
[    0.000000] efi: mem126: type=4, attr=0xf, range=[0x00000000896f0000-0x00000000896f2000) (0MB)
[    0.000000] efi: mem127: type=3, attr=0xf, range=[0x00000000896f2000-0x00000000896f4000) (0MB)
[    0.000000] efi: mem128: type=2, attr=0xf, range=[0x00000000896f4000-0x00000000896f5000) (0MB)
[    0.000000] efi: mem129: type=4, attr=0xf, range=[0x00000000896f5000-0x00000000896f8000) (0MB)
[    0.000000] efi: mem130: type=3, attr=0xf, range=[0x00000000896f8000-0x00000000896fc000) (0MB)
[    0.000000] efi: mem131: type=4, attr=0xf, range=[0x00000000896fc000-0x00000000896fd000) (0MB)
[    0.000000] efi: mem132: type=3, attr=0xf, range=[0x00000000896fd000-0x00000000896fe000) (0MB)
[    0.000000] efi: mem133: type=4, attr=0xf, range=[0x00000000896fe000-0x00000000896ff000) (0MB)
[    0.000000] efi: mem134: type=2, attr=0xf, range=[0x00000000896ff000-0x0000000089700000) (0MB)
[    0.000000] efi: mem135: type=4, attr=0xf, range=[0x0000000089700000-0x0000000089701000) (0MB)
[    0.000000] efi: mem136: type=3, attr=0xf, range=[0x0000000089701000-0x0000000089708000) (0MB)
[    0.000000] efi: mem137: type=4, attr=0xf, range=[0x0000000089708000-0x0000000089709000) (0MB)
[    0.000000] efi: mem138: type=3, attr=0xf, range=[0x0000000089709000-0x000000008970a000) (0MB)
[    0.000000] efi: mem139: type=4, attr=0xf, range=[0x000000008970a000-0x000000008970b000) (0MB)
[    0.000000] efi: mem140: type=3, attr=0xf, range=[0x000000008970b000-0x000000008970c000) (0MB)
[    0.000000] efi: mem141: type=4, attr=0xf, range=[0x000000008970c000-0x000000008970f000) (0MB)
[    0.000000] efi: mem142: type=3, attr=0xf, range=[0x000000008970f000-0x000000008971f000) (0MB)
[    0.000000] efi: mem143: type=4, attr=0xf, range=[0x000000008971f000-0x0000000089723000) (0MB)
[    0.000000] efi: mem144: type=2, attr=0xf, range=[0x0000000089723000-0x0000000089724000) (0MB)
[    0.000000] efi: mem145: type=4, attr=0xf, range=[0x0000000089724000-0x000000008972b000) (0MB)
[    0.000000] efi: mem146: type=3, attr=0xf, range=[0x000000008972b000-0x0000000089730000) (0MB)
[    0.000000] efi: mem147: type=4, attr=0xf, range=[0x0000000089730000-0x0000000089739000) (0MB)
[    0.000000] efi: mem148: type=3, attr=0xf, range=[0x0000000089739000-0x0000000089752000) (0MB)
[    0.000000] efi: mem149: type=4, attr=0xf, range=[0x0000000089752000-0x0000000089754000) (0MB)
[    0.000000] efi: mem150: type=3, attr=0xf, range=[0x0000000089754000-0x0000000089762000) (0MB)
[    0.000000] efi: mem151: type=4, attr=0xf, range=[0x0000000089762000-0x0000000089763000) (0MB)
[    0.000000] efi: mem152: type=3, attr=0xf, range=[0x0000000089763000-0x0000000089766000) (0MB)
[    0.000000] efi: mem153: type=4, attr=0xf, range=[0x0000000089766000-0x0000000089769000) (0MB)
[    0.000000] efi: mem154: type=3, attr=0xf, range=[0x0000000089769000-0x0000000089778000) (0MB)
[    0.000000] efi: mem155: type=4, attr=0xf, range=[0x0000000089778000-0x0000000089779000) (0MB)
[    0.000000] efi: mem156: type=3, attr=0xf, range=[0x0000000089779000-0x000000008977d000) (0MB)
[    0.000000] efi: mem157: type=2, attr=0xf, range=[0x000000008977d000-0x000000008977e000) (0MB)
[    0.000000] efi: mem158: type=4, attr=0xf, range=[0x000000008977e000-0x0000000089783000) (0MB)
[    0.000000] efi: mem159: type=3, attr=0xf, range=[0x0000000089783000-0x0000000089787000) (0MB)
[    0.000000] efi: mem160: type=4, attr=0xf, range=[0x0000000089787000-0x000000008978c000) (0MB)
[    0.000000] efi: mem161: type=2, attr=0xf, range=[0x000000008978c000-0x000000008978d000) (0MB)
[    0.000000] efi: mem162: type=4, attr=0xf, range=[0x000000008978d000-0x000000008978f000) (0MB)
[    0.000000] efi: mem163: type=3, attr=0xf, range=[0x000000008978f000-0x0000000089790000) (0MB)
[    0.000000] efi: mem164: type=4, attr=0xf, range=[0x0000000089790000-0x0000000089791000) (0MB)
[    0.000000] efi: mem165: type=3, attr=0xf, range=[0x0000000089791000-0x0000000089793000) (0MB)
[    0.000000] efi: mem166: type=4, attr=0xf, range=[0x0000000089793000-0x0000000089795000) (0MB)
[    0.000000] efi: mem167: type=3, attr=0xf, range=[0x0000000089795000-0x0000000089797000) (0MB)
[    0.000000] efi: mem168: type=2, attr=0xf, range=[0x0000000089797000-0x0000000089798000) (0MB)
[    0.000000] efi: mem169: type=4, attr=0xf, range=[0x0000000089798000-0x000000008979b000) (0MB)
[    0.000000] efi: mem170: type=3, attr=0xf, range=[0x000000008979b000-0x00000000897cb000) (0MB)
[    0.000000] efi: mem171: type=4, attr=0xf, range=[0x00000000897cb000-0x00000000897ce000) (0MB)
[    0.000000] efi: mem172: type=3, attr=0xf, range=[0x00000000897ce000-0x00000000897d3000) (0MB)
[    0.000000] efi: mem173: type=4, attr=0xf, range=[0x00000000897d3000-0x00000000897d7000) (0MB)
[    0.000000] efi: mem174: type=3, attr=0xf, range=[0x00000000897d7000-0x00000000897e5000) (0MB)
[    0.000000] efi: mem175: type=4, attr=0xf, range=[0x00000000897e5000-0x00000000897e8000) (0MB)
[    0.000000] efi: mem176: type=3, attr=0xf, range=[0x00000000897e8000-0x00000000897eb000) (0MB)
[    0.000000] efi: mem177: type=4, attr=0xf, range=[0x00000000897eb000-0x00000000897ef000) (0MB)
[    0.000000] efi: mem178: type=2, attr=0xf, range=[0x00000000897ef000-0x00000000897f0000) (0MB)
[    0.000000] efi: mem179: type=4, attr=0xf, range=[0x00000000897f0000-0x00000000897f3000) (0MB)
[    0.000000] efi: mem180: type=3, attr=0xf, range=[0x00000000897f3000-0x00000000897fa000) (0MB)
[    0.000000] efi: mem181: type=4, attr=0xf, range=[0x00000000897fa000-0x00000000897fd000) (0MB)
[    0.000000] efi: mem182: type=3, attr=0xf, range=[0x00000000897fd000-0x00000000897fe000) (0MB)
[    0.000000] efi: mem183: type=4, attr=0xf, range=[0x00000000897fe000-0x0000000089800000) (0MB)
[    0.000000] efi: mem184: type=2, attr=0xf, range=[0x0000000089800000-0x0000000089801000) (0MB)
[    0.000000] efi: mem185: type=4, attr=0xf, range=[0x0000000089801000-0x0000000089802000) (0MB)
[    0.000000] efi: mem186: type=3, attr=0xf, range=[0x0000000089802000-0x0000000089804000) (0MB)
[    0.000000] efi: mem187: type=4, attr=0xf, range=[0x0000000089804000-0x0000000089807000) (0MB)
[    0.000000] efi: mem188: type=2, attr=0xf, range=[0x0000000089807000-0x0000000089808000) (0MB)
[    0.000000] efi: mem189: type=3, attr=0xf, range=[0x0000000089808000-0x0000000089809000) (0MB)
[    0.000000] efi: mem190: type=4, attr=0xf, range=[0x0000000089809000-0x000000008980d000) (0MB)
[    0.000000] efi: mem191: type=3, attr=0xf, range=[0x000000008980d000-0x0000000089810000) (0MB)
[    0.000000] efi: mem192: type=4, attr=0xf, range=[0x0000000089810000-0x0000000089811000) (0MB)
[    0.000000] efi: mem193: type=3, attr=0xf, range=[0x0000000089811000-0x000000008981c000) (0MB)
[    0.000000] efi: mem194: type=4, attr=0xf, range=[0x000000008981c000-0x000000008981e000) (0MB)
[    0.000000] efi: mem195: type=3, attr=0xf, range=[0x000000008981e000-0x0000000089820000) (0MB)
[    0.000000] efi: mem196: type=4, attr=0xf, range=[0x0000000089820000-0x0000000089823000) (0MB)
[    0.000000] efi: mem197: type=2, attr=0xf, range=[0x0000000089823000-0x0000000089824000) (0MB)
[    0.000000] efi: mem198: type=4, attr=0xf, range=[0x0000000089824000-0x0000000089825000) (0MB)
[    0.000000] efi: mem199: type=3, attr=0xf, range=[0x0000000089825000-0x0000000089826000) (0MB)
[    0.000000] efi: mem200: type=4, attr=0xf, range=[0x0000000089826000-0x000000008982a000) (0MB)
[    0.000000] efi: mem201: type=3, attr=0xf, range=[0x000000008982a000-0x000000008982b000) (0MB)
[    0.000000] efi: mem202: type=4, attr=0xf, range=[0x000000008982b000-0x0000000089832000) (0MB)
[    0.000000] efi: mem203: type=3, attr=0xf, range=[0x0000000089832000-0x0000000089834000) (0MB)
[    0.000000] efi: mem204: type=4, attr=0xf, range=[0x0000000089834000-0x000000008983b000) (0MB)
[    0.000000] efi: mem205: type=3, attr=0xf, range=[0x000000008983b000-0x000000008983c000) (0MB)
[    0.000000] efi: mem206: type=2, attr=0xf, range=[0x000000008983c000-0x000000008983d000) (0MB)
[    0.000000] efi: mem207: type=4, attr=0xf, range=[0x000000008983d000-0x000000008983e000) (0MB)
[    0.000000] efi: mem208: type=3, attr=0xf, range=[0x000000008983e000-0x000000008983f000) (0MB)
[    0.000000] efi: mem209: type=4, attr=0xf, range=[0x000000008983f000-0x000000008985c000) (0MB)
[    0.000000] efi: mem210: type=3, attr=0xf, range=[0x000000008985c000-0x0000000089861000) (0MB)
[    0.000000] efi: mem211: type=4, attr=0xf, range=[0x0000000089861000-0x00000000898c6000) (0MB)
[    0.000000] efi: mem212: type=2, attr=0xf, range=[0x00000000898c6000-0x00000000898c7000) (0MB)
[    0.000000] efi: mem213: type=4, attr=0xf, range=[0x00000000898c7000-0x00000000898c8000) (0MB)
[    0.000000] efi: mem214: type=3, attr=0xf, range=[0x00000000898c8000-0x00000000898db000) (0MB)
[    0.000000] efi: mem215: type=4, attr=0xf, range=[0x00000000898db000-0x0000000089921000) (0MB)
[    0.000000] efi: mem216: type=3, attr=0xf, range=[0x0000000089921000-0x0000000089938000) (0MB)
[    0.000000] efi: mem217: type=4, attr=0xf, range=[0x0000000089938000-0x0000000089953000) (0MB)
[    0.000000] efi: mem218: type=3, attr=0xf, range=[0x0000000089953000-0x0000000089958000) (0MB)
[    0.000000] efi: mem219: type=4, attr=0xf, range=[0x0000000089958000-0x0000000089959000) (0MB)
[    0.000000] efi: mem220: type=2, attr=0xf, range=[0x0000000089959000-0x000000008995a000) (0MB)
[    0.000000] efi: mem221: type=4, attr=0xf, range=[0x000000008995a000-0x0000000089960000) (0MB)
[    0.000000] efi: mem222: type=3, attr=0xf, range=[0x0000000089960000-0x0000000089961000) (0MB)
[    0.000000] efi: mem223: type=4, attr=0xf, range=[0x0000000089961000-0x0000000089963000) (0MB)
[    0.000000] efi: mem224: type=3, attr=0xf, range=[0x0000000089963000-0x0000000089964000) (0MB)
[    0.000000] efi: mem225: type=4, attr=0xf, range=[0x0000000089964000-0x0000000089965000) (0MB)
[    0.000000] efi: mem226: type=3, attr=0xf, range=[0x0000000089965000-0x0000000089968000) (0MB)
[    0.000000] efi: mem227: type=4, attr=0xf, range=[0x0000000089968000-0x000000008997e000) (0MB)
[    0.000000] efi: mem228: type=3, attr=0xf, range=[0x000000008997e000-0x00000000899a1000) (0MB)
[    0.000000] efi: mem229: type=4, attr=0xf, range=[0x00000000899a1000-0x00000000899a2000) (0MB)
[    0.000000] efi: mem230: type=2, attr=0xf, range=[0x00000000899a2000-0x00000000899a3000) (0MB)
[    0.000000] efi: mem231: type=4, attr=0xf, range=[0x00000000899a3000-0x00000000899a4000) (0MB)
[    0.000000] efi: mem232: type=3, attr=0xf, range=[0x00000000899a4000-0x00000000899a6000) (0MB)
[    0.000000] efi: mem233: type=4, attr=0xf, range=[0x00000000899a6000-0x00000000899a7000) (0MB)
[    0.000000] efi: mem234: type=3, attr=0xf, range=[0x00000000899a7000-0x00000000899aa000) (0MB)
[    0.000000] efi: mem235: type=2, attr=0xf, range=[0x00000000899aa000-0x00000000899ab000) (0MB)
[    0.000000] efi: mem236: type=4, attr=0xf, range=[0x00000000899ab000-0x0000000089dcc000) (4MB)
[    0.000000] efi: mem237: type=3, attr=0xf, range=[0x0000000089dcc000-0x0000000089dd6000) (0MB)
[    0.000000] efi: mem238: type=4, attr=0xf, range=[0x0000000089dd6000-0x0000000089e60000) (0MB)
[    0.000000] efi: mem239: type=3, attr=0xf, range=[0x0000000089e60000-0x0000000089e63000) (0MB)
[    0.000000] efi: mem240: type=4, attr=0xf, range=[0x0000000089e63000-0x0000000089e65000) (0MB)
[    0.000000] efi: mem241: type=2, attr=0xf, range=[0x0000000089e65000-0x0000000089e66000) (0MB)
[    0.000000] efi: mem242: type=4, attr=0xf, range=[0x0000000089e66000-0x0000000089e67000) (0MB)
[    0.000000] efi: mem243: type=3, attr=0xf, range=[0x0000000089e67000-0x0000000089e6c000) (0MB)
[    0.000000] efi: mem244: type=4, attr=0xf, range=[0x0000000089e6c000-0x0000000089e6d000) (0MB)
[    0.000000] efi: mem245: type=3, attr=0xf, range=[0x0000000089e6d000-0x0000000089e70000) (0MB)
[    0.000000] efi: mem246: type=4, attr=0xf, range=[0x0000000089e70000-0x0000000089e72000) (0MB)
[    0.000000] efi: mem247: type=3, attr=0xf, range=[0x0000000089e72000-0x0000000089e73000) (0MB)
[    0.000000] efi: mem248: type=4, attr=0xf, range=[0x0000000089e73000-0x0000000089e75000) (0MB)
[    0.000000] efi: mem249: type=3, attr=0xf, range=[0x0000000089e75000-0x0000000089e76000) (0MB)
[    0.000000] efi: mem250: type=4, attr=0xf, range=[0x0000000089e76000-0x000000008a355000) (4MB)
[    0.000000] efi: mem251: type=2, attr=0xf, range=[0x000000008a355000-0x000000008a356000) (0MB)
[    0.000000] efi: mem252: type=4, attr=0xf, range=[0x000000008a356000-0x000000008a440000) (0MB)
[    0.000000] efi: mem253: type=2, attr=0xf, range=[0x000000008a440000-0x000000008a441000) (0MB)
[    0.000000] efi: mem254: type=4, attr=0xf, range=[0x000000008a441000-0x000000008acfa000) (8MB)
[    0.000000] efi: mem255: type=2, attr=0xf, range=[0x000000008acfa000-0x000000008acfb000) (0MB)
[    0.000000] efi: mem256: type=4, attr=0xf, range=[0x000000008acfb000-0x000000008ad03000) (0MB)
[    0.000000] efi: mem257: type=7, attr=0xf, range=[0x000000008ad03000-0x000000008ad14000) (0MB)
[    0.000000] efi: mem258: type=10, attr=0xf, range=[0x000000008ad14000-0x000000008ad53000) (0MB)
[    0.000000] efi: mem259: type=7, attr=0xf, range=[0x000000008ad53000-0x000000008ad69000) (0MB)
[    0.000000] efi: mem260: type=9, attr=0xf, range=[0x000000008ad69000-0x000000008ad8f000) (0MB)
[    0.000000] efi: mem261: type=7, attr=0xf, range=[0x000000008ad8f000-0x000000008ae3a000) (0MB)
[    0.000000] efi: mem262: type=6, attr=0x800000000000000f, range=[0x000000008ae3a000-0x000000008ae8f000) (0MB)
[    0.000000] efi: mem263: type=7, attr=0xf, range=[0x000000008ae8f000-0x000000008aece000) (0MB)
[    0.000000] efi: mem264: type=5, attr=0x800000000000000f, range=[0x000000008aece000-0x000000008aeff000) (0MB)
[    0.000000] efi: mem265: type=7, attr=0xf, range=[0x000000008aeff000-0x000000008af86000) (0MB)
[    0.000000] efi: mem266: type=2, attr=0xf, range=[0x000000008af86000-0x000000008af92000) (0MB)
[    0.000000] efi: mem267: type=0, attr=0xf, range=[0x000000008af92000-0x000000008afff000) (0MB)
[    0.000000] efi: mem268: type=2, attr=0xf, range=[0x000000008afff000-0x000000008b000000) (0MB)
[    0.000000] efi: mem269: type=7, attr=0xf, range=[0x0000000100000000-0x000000046f600000) (14070MB)
[    0.000000] efi: mem270: type=0, attr=0x8000000000000000, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem271: type=0, attr=0x8000000000000000, range=[0x000000008b000000-0x000000008fa00000) (74MB)
[    0.000000] efi: mem272: type=11, attr=0x8000000000000000, range=[0x00000000e00f8000-0x00000000e00f9000) (0MB)
[    0.000000] efi: mem273: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem274: 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] No AGP bridge found
[    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 [0x0354f000, 0x0354ffff] PGTABLE
[    0.000000] BRK [0x03550000, 0x03550fff] PGTABLE
[    0.000000] BRK [0x03551000, 0x03551fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x46f400000-0x46f5fffff]
[    0.000000]  [mem 0x46f400000-0x46f5fffff] page 4k
[    0.000000] BRK [0x03552000, 0x03552fff] PGTABLE
[    0.000000] BRK [0x03553000, 0x03553fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x46c000000-0x46f3fffff]
[    0.000000]  [mem 0x46c000000-0x46f3fffff] page 4k
[    0.000000] BRK [0x03554000, 0x03554fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x400000000-0x46bffffff]
[    0.000000]  [mem 0x400000000-0x46bffffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[    0.000000]  [mem 0x00100000-0x1fffffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff]
[    0.000000]  [mem 0x20200000-0x40003fff] page 4k
[    0.000000] init_memory_mapping: [mem 0x40005000-0x8ad13fff]
[    0.000000]  [mem 0x40005000-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 4k
[    0.000000] RAMDISK: [mem 0x32d8c000-0x356bdfff]
[    0.000000] ACPI: RSDP 000000008ad8e014 000024 (v02 APPLE )
[    0.000000] ACPI: XSDT 000000008ad8e1c0 0000B4 (v01 APPLE   Apple00 00000000      01000013)
[    0.000000] ACPI: FACP 000000008ad8c000 0000F4 (v04 APPLE   Apple00 00000000 Loki 0000005F)
[    0.000000] ACPI: DSDT 000000008ad82000 004D5C (v01 APPLE  MacBookP 00100001 INTL 20100915)
[    0.000000] ACPI: FACS 000000008ad1e000 000040
[    0.000000] ACPI: HPET 000000008ad8b000 000038 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: APIC 000000008ad8a000 0000BC (v02 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: SBST 000000008ad88000 000030 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: ECDT 000000008ad87000 000053 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: SSDT 000000008ad7f000 00053A (v01 APPLE  SataAhci 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad7e000 000024 (v01 APPLE   SmcDppt 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad79000 000D3E (v01 APPLE    UsbPpt 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad77000 000159 (v02 APPLE     IGHda 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad75000 000032 (v01 APPLE    SsdtS3 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad73000 0015EB (v02 APPLE  SsdtIGPU 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad6e000 0019AA (v01 APPLE  TbtPEG11 00001000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad6d000 00071D (v01  PmRef  Cpu0Ist 00003000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad6c000 000B3D (v01  PmRef    CpuPm 00003000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad6b000 000315 (v01  PmRef  Cpu0Tst 00003000 INTL 20100915)
[    0.000000] ACPI: SSDT 000000008ad6a000 00037A (v01  PmRef    ApTst 00003000 INTL 20100915)
[    0.000000] ACPI: DMAR 000000008ad69000 000088 (v01 APPLE      IVB  00000001 AAPL 00000001)
[    0.000000] ACPI: MCFG 000000008ad89000 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 0x46d61d000-0x46d621fff]
[    0.000000]  [ffffea0000000000-ffffea0011bfffff] PMD -> [ffff88045ce00000-ffff88046cdfffff] 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: 26 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] 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: IRQ2 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] nr_irqs_gsi: 40
[    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] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 29 pages/cpu @ffff88046d000000 s89600 r8192 d20992 u262144
[    0.000000] pcpu-alloc: s89600 r8192 d20992 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: 4105119
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-git root=UUID=555026f1-7426-49a7-80aa-3d2bf31d5cc8 rw quiet systemd.unit=graphical.target acpi_osi=Darwin resume=/dev/sda5
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 16069720K/16681232K available (5502K kernel code, 901K rwdata, 2404K rodata, 1200K init, 9444K bss, 611512K 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=64 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:4352 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8191
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     16384
[    0.000000] ... MAX_LOCKDEP_CHAINS:      32768
[    0.000000] ... CHAINHASH_SIZE:          16384
[    0.000000]  memory used by lock dependency info: 5823 kB
[    0.000000]  per task-struct memory footprint: 1920 bytes
[    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] ODEBUG: 31 of 31 active objects replaced
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.003333] tsc: Detected 2693.785 MHz processor
[    0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5389.05 BogoMIPS (lpj=8979283)
[    0.000005] pid_max: default: 32768 minimum: 301
[    0.000036] init_memory_mapping: [mem 0x8ae3a000-0x8ae8efff]
[    0.000038]  [mem 0x8ae3a000-0x8ae8efff] page 4k
[    0.000048] init_memory_mapping: [mem 0x8aece000-0x8aefefff]
[    0.000049]  [mem 0x8aece000-0x8aefefff] page 4k
[    0.000090] init_memory_mapping: [mem 0x8b000000-0x8f9fffff]
[    0.000092]  [mem 0x8b000000-0x8f9fffff] page 4k
[    0.029740] Security Framework initialized
[    0.029747] AppArmor: AppArmor disabled by boot time parameter
[    0.033697] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.038875] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.040490] Mount-cache hash table entries: 256
[    0.040835] Initializing cgroup subsys memory
[    0.040842] Initializing cgroup subsys devices
[    0.040848] Initializing cgroup subsys freezer
[    0.040853] Initializing cgroup subsys net_cls
[    0.040855] Initializing cgroup subsys blkio
[    0.040886] CPU: Physical Processor ID: 0
[    0.040887] CPU: Processor Core ID: 0
[    0.041221] mce: CPU supports 9 MCE banks
[    0.041232] CPU0: Thermal monitoring enabled (TM1)
[    0.041246] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
[    0.041341] debug: unmapping init [mem 0xffffffff81c0f000-0xffffffff81c13fff]
[    0.042300] ACPI: Core revision 20131115
[    0.058295] ACPI: All ACPI Tables successfully acquired
[    0.099224] ftrace: allocating 20531 entries in 81 pages
[    0.108095] dmar: Host address width 36
[    0.108097] dmar: DRHD base: 0x000000fed90000 flags: 0x0
[    0.108111] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a
[    0.108112] dmar: DRHD base: 0x000000fed91000 flags: 0x1
[    0.108118] dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a
[    0.108119] dmar: RMRR base: 0x0000008b800000 end: 0x0000008f9fffff
[    0.108193] IOAPIC id 0 under DRHD base  0xfed91000 IOMMU 1
[    0.108194] HPET id 0 under DRHD base 0xfed91000
[    0.108196] [Firmware Bug]: ioapic 2 has no mapping iommu, interrupt remapping will be disabled
[    0.108200] Not enable interrupt remapping
[    0.108201] Failed to enable irq remapping.  You are vulnerable to irq-injection attacks.
[    0.108672] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.141664] smpboot: CPU0: Intel(R) Core(TM) i7-3740QM CPU @ 2.70GHz (fam: 06, model: 3a, stepping: 09)
[    0.141675] TSC deadline timer enabled
[    0.141688] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[    0.141699] ... version:                3
[    0.141700] ... bit width:              48
[    0.141701] ... generic registers:      4
[    0.141702] ... value mask:             0000ffffffffffff
[    0.141702] ... max period:             0000ffffffffffff
[    0.141703] ... fixed-purpose events:   3
[    0.141704] ... event mask:             000000070000000f
[    0.168501] x86: Booting SMP configuration:
[    0.182070] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.168504] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.303840] x86: Booted up 1 node, 8 CPUs
[    0.303844] smpboot: Total of 8 processors activated (43117.41 BogoMIPS)
[    0.310560] devtmpfs: initialized
[    0.314642] PM: Registering ACPI NVS region [mem 0x8ad14000-0x8ad52fff] (258048 bytes)
[    0.315546] RTC time: 20:35:54, date: 12/16/13
[    0.315627] NET: Registered protocol family 16
[    0.315805] cpuidle: using governor ladder
[    0.315807] cpuidle: using governor menu
[    0.315829] ACPI: bus type PCI registered
[    0.315934] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.315936] PCI: not using MMCONFIG
[    0.315938] PCI: Using configuration type 1 for base access
[    0.317232] bio: create slab <bio-0> at 0
[    0.317442] ACPI: Added _OSI(Module Device)
[    0.317444] ACPI: Added _OSI(Processor Device)
[    0.317445] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.317447] ACPI: Added _OSI(Processor Aggregator Device)
[    0.317448] ACPI: Added _OSI(Darwin)
[    0.320938] ACPI : EC: EC description table is found, configuring boot EC
[    0.332276] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.333129] ACPI: SSDT 000000008ad19190 0008AD (v01  PmRef  Cpu0Cst 00003001 INTL 20100915)
[    0.334059] ACPI: Dynamic OEM Table Load:
[    0.334062] ACPI: SSDT           (null) 0008AD (v01  PmRef  Cpu0Cst 00003001 INTL 20100915)
[    0.347357] ACPI: SSDT 000000008ad1a710 0003A4 (v01  PmRef    ApIst 00003000 INTL 20100915)
[    0.348387] ACPI: Dynamic OEM Table Load:
[    0.348389] ACPI: SSDT           (null) 0003A4 (v01  PmRef    ApIst 00003000 INTL 20100915)
[    0.360373] ACPI: SSDT 000000008ad18d90 000119 (v01  PmRef    ApCst 00003000 INTL 20100915)
[    0.361287] ACPI: Dynamic OEM Table Load:
[    0.361289] ACPI: SSDT           (null) 000119 (v01  PmRef    ApCst 00003000 INTL 20100915)
[    0.376231] ACPI: Interpreter enabled
[    0.376237] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
[    0.376241] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[    0.376265] ACPI: (supports S0 S3 S4 S5)
[    0.376266] ACPI: Using IOAPIC for interrupt routing
[    0.376295] PCI: MMCONFIG for domain 0000 [bus 00-9b] at [mem 0xe0000000-0xe9bfffff] (base 0xe0000000)
[    0.377138] PCI: MMCONFIG at [mem 0xe0000000-0xe9bfffff] reserved in ACPI motherboard resources
[    0.398336] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.398667] ACPI: No dock devices found.
[    0.414435] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.414441] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.414736] acpi PNP0A08:00: _OSC: platform does not support [PME]
[    0.414985] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug AER PCIeCapability]
[    0.415469] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-9b] only partially covers this bridge
[    0.415589] PCI host bridge to bus 0000:00
[    0.415592] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    0.415594] pci_bus 0000:00: root bus resource [mem 0x8fa00000-0xfeafffff]
[    0.415595] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
[    0.415597] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
[    0.415598] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
[    0.415600] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[    0.415601] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[    0.415602] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[    0.415604] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[    0.415605] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[    0.415607] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[    0.415608] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
[    0.415610] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
[    0.415611] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
[    0.415613] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
[    0.415614] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.415616] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.415620] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.415622] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.415624] pci_bus 0000:00: scanning bus
[    0.415639] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.415648] pci 0000:00:00.0: calling quirk_mmio_always_on+0x0/0x10
[    0.415789] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    0.415812] pci 0000:00:01.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    0.415836] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.415847] pci 0000:00:01.0: PME# disabled
[    0.415912] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.415959] pci 0000:00:01.1: [8086:0155] type 01 class 0x060400
[    0.415979] pci 0000:00:01.1: calling pci_fixup_transparent_bridge+0x0/0x30
[    0.416002] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.416004] pci 0000:00:01.1: PME# disabled
[    0.416066] pci 0000:00:01.1: System wakeup disabled by ACPI
[    0.416116] pci 0000:00:01.2: [8086:0159] type 01 class 0x060400
[    0.416147] pci 0000:00:01.2: calling pci_fixup_transparent_bridge+0x0/0x30
[    0.416199] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[    0.416203] pci 0000:00:01.2: PME# disabled
[    0.416273] pci 0000:00:01.2: System wakeup disabled by ACPI
[    0.416327] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.416339] pci 0000:00:02.0: reg 0x10: [mem 0xc1400000-0xc17fffff 64bit]
[    0.416346] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.416352] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.416511] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.416535] pci 0000:00:14.0: reg 0x10: [mem 0xc1c00000-0xc1c0ffff 64bit]
[    0.416606] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.416611] pci 0000:00:14.0: PME# disabled
[    0.416674] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.416723] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.416750] pci 0000:00:16.0: reg 0x10: [mem 0xc1c17100-0xc1c1710f 64bit]
[    0.416839] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.416844] pci 0000:00:16.0: PME# disabled
[    0.416967] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.416993] pci 0000:00:1a.0: reg 0x10: [mem 0xc1c16c00-0xc1c16fff]
[    0.417097] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.417102] pci 0000:00:1a.0: PME# disabled
[    0.417169] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.417213] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.417229] pci 0000:00:1b.0: reg 0x10: [mem 0xc1c10000-0xc1c13fff 64bit]
[    0.417299] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.417303] pci 0000:00:1b.0: PME# disabled
[    0.417369] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.417416] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.417480] pci 0000:00:1c.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    0.417553] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.417557] pci 0000:00:1c.0: PME# disabled
[    0.417633] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.417677] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.417739] pci 0000:00:1c.1: calling pci_fixup_transparent_bridge+0x0/0x30
[    0.417810] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.417815] pci 0000:00:1c.1: PME# disabled
[    0.417892] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.417952] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.417978] pci 0000:00:1d.0: reg 0x10: [mem 0xc1c16800-0xc1c16bff]
[    0.418081] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.418086] pci 0000:00:1d.0: PME# disabled
[    0.418151] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.418200] pci 0000:00:1f.0: [8086:1e57] type 00 class 0x060100
[    0.418415] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.418439] pci 0000:00:1f.2: reg 0x10: [io  0x3098-0x309f]
[    0.418449] pci 0000:00:1f.2: reg 0x14: [io  0x30bc-0x30bf]
[    0.418459] pci 0000:00:1f.2: reg 0x18: [io  0x3090-0x3097]
[    0.418469] pci 0000:00:1f.2: reg 0x1c: [io  0x30b8-0x30bb]
[    0.418480] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.418490] pci 0000:00:1f.2: reg 0x24: [mem 0xc1c16000-0xc1c167ff]
[    0.418544] pci 0000:00:1f.2: PME# supported from D3hot
[    0.418549] pci 0000:00:1f.2: PME# disabled
[    0.418645] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.418660] pci 0000:00:1f.3: reg 0x10: [mem 0xc1c17000-0xc1c170ff 64bit]
[    0.418677] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.418785] pci 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 0
[    0.418787] pci 0000:00:01.0: check if busn 01-01 is in busn_res: [bus 00-ff]
[    0.418844] pci_bus 0000:01: scanning bus
[    0.418870] pci 0000:01:00.0: [10de:0fd5] type 00 class 0x030000
[    0.418886] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xc0ffffff]
[    0.418902] pci 0000:01:00.0: reg 0x14: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.418919] pci 0000:01:00.0: reg 0x1c: [mem 0xa0000000-0xa1ffffff 64bit pref]
[    0.418930] pci 0000:01:00.0: reg 0x24: [io  0x2000-0x207f]
[    0.418942] pci 0000:01:00.0: reg 0x30: [mem 0xc1000000-0xc107ffff pref]
[    0.419037] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.419094] pci 0000:01:00.1: [10de:0e1b] type 00 class 0x040300
[    0.419107] pci 0000:01:00.1: reg 0x10: [mem 0xc1080000-0xc1083fff]
[    1.424617] pci 0000:00:01.0: ASPM: Could not configure common clock
[    1.424661] pci 0000:00:01.1: scanning [bus 05-9b] behind bridge, pass 0
[    1.424662] pci 0000:00:01.1: check if busn 05-9b is in busn_res: [bus 00-ff]
[    1.424719] pci_bus 0000:05: scanning bus
[    1.424734] pci 0000:05:00.0: [8086:1547] type 01 class 0x060400
[    1.424767] pci 0000:05:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.424804] pci 0000:05:00.0: supports D1 D2
[    1.424805] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.424808] pci 0000:05:00.0: PME# disabled
[    1.431305] pci 0000:05:00.0: scanning [bus 06-6b] behind bridge, pass 0
[    1.431309] pci 0000:05:00.0: check if busn 06-6b is in busn_res: [bus 05-9b]
[    1.431389] pci_bus 0000:06: dev 03, created physical slot 2
[    1.431403] pci_bus 0000:06: dev 04, created physical slot 3
[    1.431414] pci_bus 0000:06: dev 05, created physical slot 4
[    1.431425] pci_bus 0000:06: dev 06, created physical slot 5
[    1.431428] pci_bus 0000:06: scanning bus
[    1.431443] pci 0000:06:00.0: [8086:1547] type 01 class 0x060400
[    1.431479] pci 0000:06:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.431517] pci 0000:06:00.0: supports D1 D2
[    1.431518] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.431522] pci 0000:06:00.0: PME# disabled
[    1.431603] pci 0000:06:03.0: [8086:1547] type 01 class 0x060400
[    1.431632] pci 0000:06:03.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.431671] pci 0000:06:03.0: supports D1 D2
[    1.431672] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.431675] pci 0000:06:03.0: PME# disabled
[    1.431751] pci 0000:06:04.0: [8086:1547] type 01 class 0x060400
[    1.431781] pci 0000:06:04.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.431819] pci 0000:06:04.0: supports D1 D2
[    1.431820] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.431824] pci 0000:06:04.0: PME# disabled
[    1.431905] pci 0000:06:05.0: [8086:1547] type 01 class 0x060400
[    1.431934] pci 0000:06:05.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.431972] pci 0000:06:05.0: supports D1 D2
[    1.431974] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.431977] pci 0000:06:05.0: PME# disabled
[    1.432055] pci 0000:06:06.0: [8086:1547] type 01 class 0x060400
[    1.432084] pci 0000:06:06.0: calling pci_fixup_transparent_bridge+0x0/0x30
[    1.432122] pci 0000:06:06.0: supports D1 D2
[    1.432124] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.432127] pci 0000:06:06.0: PME# disabled
[    1.432220] pci 0000:06:00.0: scanning [bus 07-07] behind bridge, pass 0
[    1.432221] pci 0000:06:00.0: check if busn 07-07 is in busn_res: [bus 06-6b]
[    1.432286] pci_bus 0000:07: scanning bus
[    1.432306] pci 0000:07:00.0: [8086:1547] type 00 class 0x088000
[    1.432320] pci 0000:07:00.0: reg 0x10: [mem 0xc1f00000-0xc1f3ffff]
[    1.432331] pci 0000:07:00.0: reg 0x14: [mem 0xc1f40000-0xc1f40fff]
[    1.432437] pci 0000:07:00.0: supports D1 D2
[    1.432439] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.432443] pci 0000:07:00.0: PME# disabled
[    1.437987] pci 0000:06:03.0: scanning [bus 08-38] behind bridge, pass 0
[    1.437991] pci 0000:06:03.0: check if busn 08-38 is in busn_res: [bus 06-6b]
[    1.438096] pci_bus 0000:08: scanning bus
[    1.438101] pci 0000:06:04.0: scanning [bus 39-69] behind bridge, pass 0
[    1.438103] pci 0000:06:04.0: check if busn 39-69 is in busn_res: [bus 06-6b]
[    1.438190] pci_bus 0000:39: scanning bus
[    1.438195] pci 0000:06:05.0: scanning [bus 6a-6a] behind bridge, pass 0
[    1.438196] pci 0000:06:05.0: check if busn 6a-6a is in busn_res: [bus 06-6b]
[    1.438247] pci_bus 0000:6a: scanning bus
[    1.438251] pci 0000:06:06.0: scanning [bus 6b-6b] behind bridge, pass 0
[    1.438253] pci 0000:06:06.0: check if busn 6b-6b is in busn_res: [bus 06-6b]
[    1.438307] pci_bus 0000:6b: scanning bus
[    1.438314] pci 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 0
[    1.438315] pci 0000:00:01.2: check if busn 02-02 is in busn_res: [bus 00-ff]
[    1.438386] pci_bus 0000:02: scanning bus
[    1.438396] pci 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 0
[    1.438398] pci 0000:00:1c.0: check if busn 03-03 is in busn_res: [bus 00-ff]
[    1.438482] pci_bus 0000:03: scanning bus
[    1.438564] pci 0000:03:00.0: [14e4:16a3] type 00 class 0x020000
[    1.438595] pci 0000:03:00.0: reg 0x10: [mem 0xc1800000-0xc180ffff 64bit pref]
[    1.438620] pci 0000:03:00.0: reg 0x18: [mem 0xc1810000-0xc181ffff 64bit pref]
[    1.438661] pci 0000:03:00.0: reg 0x30: [mem 0xfffff800-0xffffffff pref]
[    1.438776] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    1.438782] pci 0000:03:00.0: PME# disabled
[    1.438934] pci 0000:03:00.1: [14e4:16bc] type 00 class 0x080501
[    1.438973] pci 0000:03:00.1: reg 0x10: [mem 0xc1820000-0xc182ffff 64bit pref]
[    1.439171] pci 0000:03:00.1: PME# supported from D0 D3hot D3cold
[    1.439177] pci 0000:03:00.1: PME# disabled
[    1.439221] pci 0000:03:00.1: System wakeup disabled by ACPI
[    1.444766] pci 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 0
[    1.444768] pci 0000:00:1c.1: check if busn 04-04 is in busn_res: [bus 00-ff]
[    1.444857] pci_bus 0000:04: scanning bus
[    1.444913] pci 0000:04:00.0: [14e4:4331] type 00 class 0x028000
[    1.444945] pci 0000:04:00.0: reg 0x10: [mem 0xc1900000-0xc1903fff 64bit]
[    1.445108] pci 0000:04:00.0: supports D1 D2
[    1.445110] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    1.445116] pci 0000:04:00.0: PME# disabled
[    1.445160] pci 0000:04:00.0: System wakeup disabled by ACPI
[    1.451492] pci_bus 0000:00: fixups for bus
[    1.451495] pci 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 1
[    1.451513] pci_bus 0000:01: fixups for bus
[    1.451514] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.451517] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    1.451519] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xc10fffff]
[    1.451523] pci 0000:00:01.0:   bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[    1.451524] pci_bus 0000:01: bus scan returning with max=01
[    1.451528] pci 0000:00:01.1: scanning [bus 05-9b] behind bridge, pass 1
[    1.451532] pci_bus 0000:05: fixups for bus
[    1.451533] pci 0000:00:01.1: PCI bridge to [bus 05-9b]
[    1.451535] pci 0000:00:01.1:   bridge window [io  0x4000-0x6fff]
[    1.451538] pci 0000:00:01.1:   bridge window [mem 0xc1d00000-0xcdffffff]
[    1.451541] pci 0000:00:01.1:   bridge window [mem 0xce000000-0xd9ffffff 64bit pref]
[    1.451544] pci 0000:05:00.0: scanning [bus 06-6b] behind bridge, pass 1
[    1.451597] pci_bus 0000:06: fixups for bus
[    1.451598] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    1.451603] pci 0000:05:00.0:   bridge window [io  0x4000-0x5fff]
[    1.451607] pci 0000:05:00.0:   bridge window [mem 0xc1d00000-0xc9ffffff]
[    1.451611] pci 0000:05:00.0:   bridge window [mem 0xce000000-0xd5ffffff 64bit pref]
[    1.451614] pci 0000:06:00.0: scanning [bus 07-07] behind bridge, pass 1
[    1.451619] pci_bus 0000:07: fixups for bus
[    1.451620] pci 0000:06:00.0: PCI bridge to [bus 07]
[    1.451627] pci 0000:06:00.0:   bridge window [mem 0xc1f00000-0xc1ffffff]
[    1.451632] pci_bus 0000:07: bus scan returning with max=07
[    1.451635] pci 0000:06:03.0: scanning [bus 08-38] behind bridge, pass 1
[    1.451639] pci_bus 0000:08: fixups for bus
[    1.451641] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    1.451646] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    1.451649] pci 0000:06:03.0:   bridge window [mem 0xc2000000-0xc5ffffff]
[    1.451654] pci 0000:06:03.0:   bridge window [mem 0xce000000-0xd1ffffff 64bit pref]
[    1.451655] pci_bus 0000:08: bus scan returning with max=08
[    1.451659] pci 0000:06:04.0: scanning [bus 39-69] behind bridge, pass 1
[    1.451663] pci_bus 0000:39: fixups for bus
[    1.451665] pci 0000:06:04.0: PCI bridge to [bus 39-69]
[    1.451670] pci 0000:06:04.0:   bridge window [io  0x5000-0x5fff]
[    1.451673] pci 0000:06:04.0:   bridge window [mem 0xc6000000-0xc9ffffff]
[    1.451678] pci 0000:06:04.0:   bridge window [mem 0xd2000000-0xd5ffffff 64bit pref]
[    1.451679] pci_bus 0000:39: bus scan returning with max=39
[    1.451682] pci 0000:06:05.0: scanning [bus 6a-6a] behind bridge, pass 1
[    1.451687] pci_bus 0000:6a: fixups for bus
[    1.451688] pci 0000:06:05.0: PCI bridge to [bus 6a]
[    1.451695] pci 0000:06:05.0:   bridge window [mem 0xc1e00000-0xc1efffff]
[    1.451700] pci_bus 0000:6a: bus scan returning with max=6a
[    1.451703] pci 0000:06:06.0: scanning [bus 6b-6b] behind bridge, pass 1
[    1.451707] pci_bus 0000:6b: fixups for bus
[    1.451709] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    1.451716] pci 0000:06:06.0:   bridge window [mem 0xc1d00000-0xc1dfffff]
[    1.451720] pci_bus 0000:6b: bus scan returning with max=6b
[    1.451723] pci_bus 0000:06: bus scan returning with max=6b
[    1.451725] pci_bus 0000:05: bus scan returning with max=6b
[    1.451728] pci 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 1
[    1.451734] pci_bus 0000:02: fixups for bus
[    1.451735] pci 0000:00:01.2: PCI bridge to [bus 02]
[    1.451741] pci 0000:00:01.2:   bridge window [mem 0xc1b00000-0xc1bfffff]
[    1.451747] pci_bus 0000:02: bus scan returning with max=02
[    1.451755] pci 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 1
[    1.451819] pci_bus 0000:03: fixups for bus
[    1.451820] pci 0000:00:1c.0: PCI bridge to [bus 03]
[    1.451827] pci 0000:00:1c.0:   bridge window [mem 0xc1a00000-0xc1afffff]
[    1.451836] pci 0000:00:1c.0:   bridge window [mem 0xc1800000-0xc18fffff 64bit pref]
[    1.451837] pci_bus 0000:03: bus scan returning with max=03
[    1.451842] pci 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 1
[    1.451869] pci_bus 0000:04: fixups for bus
[    1.451870] pci 0000:00:1c.1: PCI bridge to [bus 04]
[    1.451877] pci 0000:00:1c.1:   bridge window [mem 0xc1900000-0xc19fffff]
[    1.451885] pci_bus 0000:04: bus scan returning with max=04
[    1.451888] pci_bus 0000:00: bus scan returning with max=9b
[    1.453129] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    1.453243] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    1.453354] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    1.453463] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    1.453574] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    1.453683] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    1.453793] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    1.453903] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    1.455638] ACPI: Enabled 3 GPEs in block 00 to 3F
[    1.455647] ACPI: \_SB_.PCI0: notify handler is installed
[    1.455750] Found 1 acpi root devices
[    1.455792] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    1.455941] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    1.455956] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    1.455960] vgaarb: loaded
[    1.455961] vgaarb: bridge control possible 0000:01:00.0
[    1.455962] vgaarb: no bridge control possible 0000:00:02.0
[    1.456013] PCI: Using ACPI for IRQ routing
[    1.459564] PCI: pci_cache_line_size set to 64 bytes
[    1.459583] pci 0000:01:00.0: BAR 0: reserving [mem 0xc0000000-0xc0ffffff flags 0x40200] (d=0, p=0)
[    1.459585] pci 0000:01:00.0: BAR 1: reserving [mem 0x90000000-0x9fffffff flags 0x14220c] (d=0, p=0)
[    1.459587] pci 0000:01:00.0: BAR 3: reserving [mem 0xa0000000-0xa1ffffff flags 0x14220c] (d=0, p=0)
[    1.459594] pci 0000:07:00.0: BAR 0: reserving [mem 0xc1f00000-0xc1f3ffff flags 0x40200] (d=0, p=0)
[    1.459596] pci 0000:07:00.0: BAR 1: reserving [mem 0xc1f40000-0xc1f40fff flags 0x40200] (d=0, p=0)
[    1.459603] pci 0000:00:02.0: BAR 0: reserving [mem 0xc1400000-0xc17fffff flags 0x140204] (d=0, p=0)
[    1.459605] pci 0000:00:02.0: BAR 2: reserving [mem 0xb0000000-0xbfffffff flags 0x14220c] (d=0, p=0)
[    1.459607] pci 0000:00:02.0: BAR 4: reserving [io  0x3000-0x303f flags 0x40101] (d=0, p=0)
[    1.459616] pci 0000:00:16.0: BAR 0: reserving [mem 0xc1c17100-0xc1c1710f flags 0x140204] (d=0, p=0)
[    1.459620] pci 0000:00:1a.0: BAR 0: reserving [mem 0xc1c16c00-0xc1c16fff flags 0x40200] (d=0, p=0)
[    1.459670] pci 0000:03:00.1: BAR 0: reserving [mem 0xc1820000-0xc182ffff flags 0x14220c] (d=0, p=0)
[    1.459695] pci 0000:04:00.0: BAR 0: reserving [mem 0xc1900000-0xc1903fff flags 0x140204] (d=0, p=0)
[    1.459699] pci 0000:00:1d.0: BAR 0: reserving [mem 0xc1c16800-0xc1c16bff flags 0x40200] (d=0, p=0)
[    1.459704] pci 0000:00:1f.2: BAR 0: reserving [io  0x3098-0x309f flags 0x40101] (d=0, p=0)
[    1.459706] pci 0000:00:1f.2: BAR 1: reserving [io  0x30bc-0x30bf flags 0x40101] (d=0, p=0)
[    1.459708] pci 0000:00:1f.2: BAR 2: reserving [io  0x3090-0x3097 flags 0x40101] (d=0, p=0)
[    1.459710] pci 0000:00:1f.2: BAR 3: reserving [io  0x30b8-0x30bb flags 0x40101] (d=0, p=0)
[    1.459712] pci 0000:00:1f.2: BAR 4: reserving [io  0x3060-0x307f flags 0x40101] (d=0, p=0)
[    1.459714] pci 0000:00:1f.2: BAR 5: reserving [mem 0xc1c16000-0xc1c167ff flags 0x40200] (d=0, p=0)
[    1.459729] pci 0000:01:00.0: BAR 5: reserving [io  0x2000-0x207f flags 0x40101] (d=1, p=1)
[    1.459733] pci 0000:01:00.1: BAR 0: reserving [mem 0xc1080000-0xc1083fff flags 0x40200] (d=1, p=1)
[    1.459748] pci 0000:00:14.0: BAR 0: reserving [mem 0xc1c00000-0xc1c0ffff flags 0x140204] (d=1, p=1)
[    1.459755] pci 0000:00:1b.0: BAR 0: reserving [mem 0xc1c10000-0xc1c13fff flags 0x140204] (d=1, p=1)
[    1.459800] pci 0000:03:00.0: BAR 0: reserving [mem 0xc1800000-0xc180ffff flags 0x14220c] (d=1, p=1)
[    1.459802] pci 0000:03:00.0: BAR 2: reserving [mem 0xc1810000-0xc181ffff flags 0x14220c] (d=1, p=1)
[    1.459838] pci 0000:00:1f.3: BAR 0: reserving [mem 0xc1c17000-0xc1c170ff flags 0x140204] (d=1, p=1)
[    1.459840] pci 0000:00:1f.3: BAR 4: reserving [io  0xefa0-0xefbf flags 0x40101] (d=1, p=1)
[    1.459844] e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
[    1.459846] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    1.459848] e820: reserve RAM buffer [mem 0x8ad14000-0x8bffffff]
[    1.459850] e820: reserve RAM buffer [mem 0x8ad69000-0x8bffffff]
[    1.459852] e820: reserve RAM buffer [mem 0x8ae3a000-0x8bffffff]
[    1.459854] e820: reserve RAM buffer [mem 0x8aece000-0x8bffffff]
[    1.459856] e820: reserve RAM buffer [mem 0x8af92000-0x8bffffff]
[    1.459858] e820: reserve RAM buffer [mem 0x8b000000-0x8bffffff]
[    1.459859] e820: reserve RAM buffer [mem 0x46f600000-0x46fffffff]
[    1.460001] NetLabel: Initializing
[    1.460003] NetLabel:  domain hash size = 128
[    1.460003] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.460026] NetLabel:  unlabeled traffic allowed by default
[    1.460054] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.460060] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.463106] Switched to clocksource hpet
[    1.474676] pnp: PnP ACPI init
[    1.474701] ACPI: bus type PNP registered
[    1.474926] pnp 00:00: [dma 4]
[    1.474974] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    1.475013] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    1.475208] system 00:02: [mem 0xfed00000-0xfed003ff] has been reserved
[    1.475212] system 00:02: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    1.475265] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    1.475323] system 00:04: [io  0x1000-0x100f] has been reserved
[    1.475327] system 00:04: [io  0x0400-0x047f] could not be reserved
[    1.475328] system 00:04: [io  0x0500-0x057f] has been reserved
[    1.475331] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.475371] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.475423] pnp 00:06: Plug and Play ACPI device, IDs APP0001 (active)
[    1.475537] pnp 00:07: Plug and Play ACPI device, IDs APP000b (active)
[    1.475808] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.475810] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
[    1.475812] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
[    1.475814] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
[    1.475817] system 00:08: [mem 0xe0000000-0xefffffff] could not be reserved
[    1.475819] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[    1.475821] system 00:08: [mem 0xfed90000-0xfed93fff] could not be reserved
[    1.475823] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[    1.475825] system 00:08: [mem 0xff000000-0xffffffff] could not be reserved
[    1.475827] system 00:08: [mem 0xfee00000-0xfeefffff] has been reserved
[    1.475830] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.478850] system 00:09: [mem 0x20000000-0x201fffff] has been reserved
[    1.478853] system 00:09: [mem 0x40000000-0x401fffff] could not be reserved
[    1.478856] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.478866] pnp: PnP ACPI: found 10 devices
[    1.478867] ACPI: bus type PNP unregistered
[    1.486419] pci 0000:03:00.0: no compatible bridge window for [mem 0xfffff800-0xffffffff pref]
[    1.486462] pci 0000:06:05.0: bridge window [io  0x1000-0x0fff] to [bus 6a] add_size 1000
[    1.486465] pci 0000:06:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 6a] add_size 200000
[    1.486472] pci 0000:06:06.0: bridge window [io  0x1000-0x0fff] to [bus 6b] add_size 1000
[    1.486474] pci 0000:06:06.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 6b] add_size 200000
[    1.486518] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.486522] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    1.486525] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xc10fffff]
[    1.486527] pci 0000:00:01.0:   bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[    1.486533] pci 0000:06:05.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    1.486535] pci 0000:06:06.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    1.486536] pci 0000:06:05.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.486538] pci 0000:06:06.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    1.486541] pci 0000:06:05.0: BAR 15: can't assign mem pref (size 0x200000)
[    1.486551] pci 0000:06:06.0: BAR 15: can't assign mem pref (size 0x200000)
[    1.486553] pci 0000:06:05.0: BAR 13: can't assign io (size 0x1000)
[    1.486555] pci 0000:06:06.0: BAR 13: can't assign io (size 0x1000)
[    1.486559] pci 0000:06:06.0: BAR 15: can't assign mem pref (size 0x200000)
[    1.486562] pci 0000:06:06.0: BAR 13: can't assign io (size 0x1000)
[    1.486564] pci 0000:06:05.0: BAR 15: can't assign mem pref (size 0x200000)
[    1.486566] pci 0000:06:05.0: BAR 13: can't assign io (size 0x1000)
[    1.486569] pci 0000:06:00.0: PCI bridge to [bus 07]
[    1.486573] pci 0000:06:00.0:   bridge window [mem 0xc1f00000-0xc1ffffff]
[    1.486580] pci 0000:06:03.0: PCI bridge to [bus 08-38]
[    1.486582] pci 0000:06:03.0:   bridge window [io  0x4000-0x4fff]
[    1.486586] pci 0000:06:03.0:   bridge window [mem 0xc2000000-0xc5ffffff]
[    1.486590] pci 0000:06:03.0:   bridge window [mem 0xce000000-0xd1ffffff 64bit pref]
[    1.486595] pci 0000:06:04.0: PCI bridge to [bus 39-69]
[    1.486597] pci 0000:06:04.0:   bridge window [io  0x5000-0x5fff]
[    1.486601] pci 0000:06:04.0:   bridge window [mem 0xc6000000-0xc9ffffff]
[    1.486604] pci 0000:06:04.0:   bridge window [mem 0xd2000000-0xd5ffffff 64bit pref]
[    1.486609] pci 0000:06:05.0: PCI bridge to [bus 6a]
[    1.486614] pci 0000:06:05.0:   bridge window [mem 0xc1e00000-0xc1efffff]
[    1.486620] pci 0000:06:06.0: PCI bridge to [bus 6b]
[    1.486624] pci 0000:06:06.0:   bridge window [mem 0xc1d00000-0xc1dfffff]
[    1.486631] pci 0000:05:00.0: PCI bridge to [bus 06-6b]
[    1.486634] pci 0000:05:00.0:   bridge window [io  0x4000-0x5fff]
[    1.486638] pci 0000:05:00.0:   bridge window [mem 0xc1d00000-0xc9ffffff]
[    1.486641] pci 0000:05:00.0:   bridge window [mem 0xce000000-0xd5ffffff 64bit pref]
[    1.486646] pci 0000:00:01.1: PCI bridge to [bus 05-9b]
[    1.486647] pci 0000:00:01.1:   bridge window [io  0x4000-0x6fff]
[    1.486650] pci 0000:00:01.1:   bridge window [mem 0xc1d00000-0xcdffffff]
[    1.486653] pci 0000:00:01.1:   bridge window [mem 0xce000000-0xd9ffffff 64bit pref]
[    1.486656] pci 0000:00:01.2: PCI bridge to [bus 02]
[    1.486661] pci 0000:00:01.2:   bridge window [mem 0xc1b00000-0xc1bfffff]
[    1.486671] pci 0000:03:00.0: BAR 6: assigned [mem 0xc1830000-0xc18307ff pref]
[    1.486673] pci 0000:00:1c.0: PCI bridge to [bus 03]
[    1.486684] pci 0000:00:1c.0:   bridge window [mem 0xc1a00000-0xc1afffff]
[    1.486688] pci 0000:00:1c.0:   bridge window [mem 0xc1800000-0xc18fffff 64bit pref]
[    1.486697] pci 0000:00:1c.1: PCI bridge to [bus 04]
[    1.486704] pci 0000:00:1c.1:   bridge window [mem 0xc1900000-0xc19fffff]
[    1.486716] pci_bus 0000:00: resource 4 [mem 0xfed40000-0xfed44fff]
[    1.486718] pci_bus 0000:00: resource 5 [mem 0x8fa00000-0xfeafffff]
[    1.486719] pci_bus 0000:00: resource 6 [mem 0x000f0000-0x000fffff]
[    1.486721] pci_bus 0000:00: resource 7 [mem 0x000ec000-0x000effff]
[    1.486722] pci_bus 0000:00: resource 8 [mem 0x000e8000-0x000ebfff]
[    1.486724] pci_bus 0000:00: resource 9 [mem 0x000e4000-0x000e7fff]
[    1.486725] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000e3fff]
[    1.486727] pci_bus 0000:00: resource 11 [mem 0x000dc000-0x000dffff]
[    1.486728] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff]
[    1.486730] pci_bus 0000:00: resource 13 [mem 0x000d4000-0x000d7fff]
[    1.486731] pci_bus 0000:00: resource 14 [mem 0x000d0000-0x000d3fff]
[    1.486733] pci_bus 0000:00: resource 15 [mem 0x000cc000-0x000cffff]
[    1.486734] pci_bus 0000:00: resource 16 [mem 0x000c8000-0x000cbfff]
[    1.486736] pci_bus 0000:00: resource 17 [mem 0x000c4000-0x000c7fff]
[    1.486737] pci_bus 0000:00: resource 18 [mem 0x000c0000-0x000c3fff]
[    1.486739] pci_bus 0000:00: resource 19 [mem 0x000a0000-0x000bffff]
[    1.486740] pci_bus 0000:00: resource 20 [io  0x0d00-0xffff]
[    1.486742] pci_bus 0000:00: resource 21 [io  0x0000-0x0cf7]
[    1.486743] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    1.486745] pci_bus 0000:01: resource 1 [mem 0xc0000000-0xc10fffff]
[    1.486746] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa1ffffff 64bit pref]
[    1.486748] pci_bus 0000:05: resource 0 [io  0x4000-0x6fff]
[    1.486749] pci_bus 0000:05: resource 1 [mem 0xc1d00000-0xcdffffff]
[    1.486751] pci_bus 0000:05: resource 2 [mem 0xce000000-0xd9ffffff 64bit pref]
[    1.486753] pci_bus 0000:06: resource 0 [io  0x4000-0x5fff]
[    1.486754] pci_bus 0000:06: resource 1 [mem 0xc1d00000-0xc9ffffff]
[    1.486756] pci_bus 0000:06: resource 2 [mem 0xce000000-0xd5ffffff 64bit pref]
[    1.486757] pci_bus 0000:07: resource 1 [mem 0xc1f00000-0xc1ffffff]
[    1.486759] pci_bus 0000:08: resource 0 [io  0x4000-0x4fff]
[    1.486760] pci_bus 0000:08: resource 1 [mem 0xc2000000-0xc5ffffff]
[    1.486762] pci_bus 0000:08: resource 2 [mem 0xce000000-0xd1ffffff 64bit pref]
[    1.486763] pci_bus 0000:39: resource 0 [io  0x5000-0x5fff]
[    1.486765] pci_bus 0000:39: resource 1 [mem 0xc6000000-0xc9ffffff]
[    1.486766] pci_bus 0000:39: resource 2 [mem 0xd2000000-0xd5ffffff 64bit pref]
[    1.486768] pci_bus 0000:6a: resource 1 [mem 0xc1e00000-0xc1efffff]
[    1.486770] pci_bus 0000:6b: resource 1 [mem 0xc1d00000-0xc1dfffff]
[    1.486771] pci_bus 0000:02: resource 1 [mem 0xc1b00000-0xc1bfffff]
[    1.486773] pci_bus 0000:03: resource 1 [mem 0xc1a00000-0xc1afffff]
[    1.486774] pci_bus 0000:03: resource 2 [mem 0xc1800000-0xc18fffff 64bit pref]
[    1.486776] pci_bus 0000:04: resource 1 [mem 0xc1900000-0xc19fffff]
[    1.486803] NET: Registered protocol family 2
[    1.487237] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    1.488423] TCP bind hash table entries: 65536 (order: 10, 4194304 bytes)
[    1.490326] TCP: Hash tables configured (established 131072 bind 65536)
[    1.490359] TCP: reno registered
[    1.490675] UDP hash table entries: 8192 (order: 8, 1310720 bytes)
[    1.491468] UDP-Lite hash table entries: 8192 (order: 8, 1310720 bytes)
[    1.492072] NET: Registered protocol family 1
[    1.492095] pci 0000:00:02.0: calling pci_fixup_video+0x0/0xe0
[    1.492097] pci 0000:00:02.0: Boot video device
[    1.492103] pci 0000:00:14.0: calling quirk_usb_early_handoff+0x0/0x6f0
[    1.492112] pci 0000:00:14.0: enabling device (0000 -> 0002)
[    1.492270] pci 0000:00:14.0: can't derive routing for PCI INT A
[    1.492272] pci 0000:00:14.0: PCI INT A: no GSI
[    1.492479] pci 0000:00:14.0: can't derive routing for PCI INT A
[    1.492490] pci 0000:00:1a.0: calling quirk_usb_early_handoff+0x0/0x6f0
[    1.492800] pci 0000:00:1d.0: calling quirk_usb_early_handoff+0x0/0x6f0
[    1.493118] pci 0000:01:00.0: calling nv_msi_ht_cap_quirk_leaf+0x0/0x30
[    1.493143] pci 0000:01:00.0: calling pci_fixup_video+0x0/0xe0
[    1.493148] pci 0000:01:00.1: calling nv_msi_ht_cap_quirk_leaf+0x0/0x30
[    1.493247] PCI: CLS 256 bytes, default 64
[    1.493346] Unpacking initramfs...
[    2.133340] debug: unmapping init [mem 0xffff880032d8c000-0xffff8800356bdfff]
[    2.143070] DMA-API: preallocated 65536 debug entries
[    2.143072] DMA-API: debugging enabled by kernel config
[    2.143079] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.143082] software IO TLB [mem 0x7b870000-0x7f870000] (64MB) mapped at [ffff88007b870000-ffff88007f86ffff]
[    2.143520] Scanning for low memory corruption every 60 seconds
[    2.143929] audit: initializing netlink socket (disabled)
[    2.143958] type=2000 audit(1387226155.136:1): initialized
[    2.158294] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.160458] VFS: Disk quotas dquot_6.5.2
[    2.160502] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.160726] msgmni has been set to 31747
[    2.160946] cryptomgr_test (61) used greatest stack depth: 6880 bytes left
[    2.160974] cryptomgr_test (62) used greatest stack depth: 6672 bytes left
[    2.161113] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.161187] io scheduler noop registered
[    2.161189] io scheduler deadline registered
[    2.161242] io scheduler cfq registered (default)
[    2.162704] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    2.162929] pcieport 0000:00:01.1: irq 41 for MSI/MSI-X
[    2.162977] pcieport 0000:00:01.2: enabling device (0000 -> 0002)
[    2.163119] pcieport 0000:00:01.2: enabling bus mastering
[    2.163139] pcieport 0000:00:01.2: irq 42 for MSI/MSI-X
[    2.163683] pcieport 0000:05:00.0: irq 43 for MSI/MSI-X
[    2.163825] pcieport 0000:06:00.0: irq 44 for MSI/MSI-X
[    2.163896] pcieport 0000:06:03.0: enabling device (0000 -> 0003)
[    2.163958] pcieport 0000:06:03.0: enabling bus mastering
[    2.163973] pcieport 0000:06:03.0: irq 45 for MSI/MSI-X
[    2.164057] pcieport 0000:06:04.0: enabling device (0000 -> 0003)
[    2.164117] pcieport 0000:06:04.0: enabling bus mastering
[    2.164132] pcieport 0000:06:04.0: irq 46 for MSI/MSI-X
[    2.164219] pcieport 0000:06:05.0: enabling device (0000 -> 0002)
[    2.164279] pcieport 0000:06:05.0: enabling bus mastering
[    2.164294] pcieport 0000:06:05.0: irq 47 for MSI/MSI-X
[    2.164380] pcieport 0000:06:06.0: enabling device (0000 -> 0002)
[    2.164439] pcieport 0000:06:06.0: enabling bus mastering
[    2.164454] pcieport 0000:06:06.0: irq 48 for MSI/MSI-X
[    2.164574] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.164824] pciehp 0000:06:03.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[    2.164880] pci_bus 0000:08: dev 00, created physical slot 3-1
[    2.164909] pciehp 0000:06:03.0:pcie24: service driver pciehp loaded
[    2.164923] pciehp 0000:06:04.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[    2.164965] pci_bus 0000:39: dev 00, created physical slot 4-1
[    2.164989] pciehp 0000:06:04.0:pcie24: service driver pciehp loaded
[    2.165000] pciehp 0000:06:05.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[    2.165039] pci_bus 0000:6a: dev 00, created physical slot 5-1
[    2.165062] pciehp 0000:06:05.0:pcie24: service driver pciehp loaded
[    2.165073] pciehp 0000:06:06.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[    2.165108] pci_bus 0000:6b: dev 00, created physical slot 6
[    2.165134] pciehp 0000:06:06.0:pcie24: service driver pciehp loaded
[    2.165142] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.165229] efifb: probing for efifb
[    2.165590] efifb: framebuffer at 0x90020000, mapped to 0xffffc9000bd00000, using 2432k, total 2432k
[    2.165592] efifb: mode is 800x600x32, linelength=4096, pages=1
[    2.165593] efifb: scrolling: redraw
[    2.165594] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.167101] Console: switching to colour frame buffer device 100x37
[    2.168441] fb0: EFI VGA frame buffer device
[    2.168449] intel_idle: MWAIT substates: 0x21120
[    2.168450] intel_idle: v0.4 model 0x3A
[    2.168451] intel_idle: lapic_timer_reliable_states 0xffffffff
[    2.168756] GHES: HEST is not enabled!
[    2.168823] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    2.169446] Linux agpgart interface v0.103
[    2.169605] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    3.269380] tsc: Refined TSC clocksource calibration: 2693.886 MHz
[    3.270302] i8042: No controller found
[    3.270449] mousedev: PS/2 mouse device common for all mice
[    3.270522] rtc_cmos 00:05: RTC can wake from S4
[    3.270696] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    3.270731] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    3.270740] Intel P-state driver initializing.
[    3.270763] Intel pstate controlling: cpu 0
[    3.270779] Intel pstate controlling: cpu 1
[    3.270794] Intel pstate controlling: cpu 2
[    3.270809] Intel pstate controlling: cpu 3
[    3.270821] Intel pstate controlling: cpu 4
[    3.270845] Intel pstate controlling: cpu 5
[    3.270858] Intel pstate controlling: cpu 6
[    3.270873] Intel pstate controlling: cpu 7
[    3.436095] intel_rapl: domain uncore energy ctr 66153:66153 not working, skip
[    3.436207] drop_monitor: Initializing network drop monitor service
[    3.436251] Netfilter messages via NETLINK v0.30.
[    3.436278] ip_set: protocol 6
[    3.436335] TCP: cubic registered
[    3.436449] NET: Registered protocol family 10
[    3.436715] NET: Registered protocol family 17
[    3.436751] Key type dns_resolver registered
[    3.437180] registered taskstats version 1
[    3.438751]   Magic number: 9:391:599
[    3.438755] serial8250 serial8250: hash matches
[    3.438854] rtc_cmos 00:05: setting system clock to 2013-12-16 20:35:57 UTC (1387226157)
[    3.438926] PM: Checking hibernation image partition /dev/sda5
[    3.438937] PM: Hibernation image not present or could not be loaded.
[    3.439020] debug: unmapping init [mem 0xffffffff81ae3000-0xffffffff81c0efff]
[    3.439138] Write protecting the kernel read-only data: 10240k
[    3.439435] debug: unmapping init [mem 0xffff880002562000-0xffff8800025fffff]
[    3.439560] debug: unmapping init [mem 0xffff880002859000-0xffff8800029fffff]
[    3.442031] mount (68) used greatest stack depth: 5616 bytes left
[    3.456625] systemd-udevd[78]: starting version 208
[    3.469383] [drm] Initialized drm 1.1.0 20060810
[    3.473289] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    3.473405] ACPI: Lid Switch [LID0]
[    3.473479] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    3.473510] ACPI: Power Button [PWRB]
[    3.473604] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
[    3.473608] ACPI: Sleep Button [SLPB]
[    3.473688] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    3.473692] ACPI: Power Button [PWRF]
[    3.494682] [drm] Memory usable by graphics device = 2048M
[    3.592613] i915 0000:00:02.0: irq 49 for MSI/MSI-X
[    3.592632] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.592634] [drm] Driver supports precise vblank timestamp query.
[    3.592642] i915 0000:00:02.0: Invalid ROM contents
[    3.592677] [drm] failed to find VBIOS tables
[    3.592990] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=none
[    3.829040] [drm] failed to retrieve link info, disabling eDP
[    4.269275] Switched to clocksource tsc
[    4.346751] [Firmware Bug]: ACPI(GFX0) defines _DOD but not _DOS
[    4.346801] ACPI: Video Device [GFX0] (multi-head: yes  rom: yes  post: no)
[    4.348617] acpi device:03: registered as cooling_device0
[    4.348699] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/LNXVIDEO:00/input/input4
[    4.391234] ACPI: Video Device [IGPU] (multi-head: yes  rom: no  post: no)
[    4.392015] acpi device:21: registered as cooling_device1
[    4.392329] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input5
[    4.392434] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    4.397787] wmi: Mapper loaded
[    4.458544] ACPI Warning: \_SB_.PCI0.IGPU._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.458595] ACPI Warning: \_SB_.PCI0.IGPU._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.458630] ACPI Warning: \_SB_.PCI0.P0P2.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.458660] ACPI Warning: \_SB_.PCI0.P0P2.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.458718] checking generic (90020000 260000) vs hw (90000000 10000000)
[    4.458720] fb: conflicting fb hw usage nouveaufb vs EFI VGA - removing generic driver
[    4.458775] Console: switching to colour dummy device 80x25
[    4.459312] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    4.460036] nouveau  [  DEVICE][0000:01:00.0] BOOT0  : 0x0e7150a2
[    4.460039] nouveau  [  DEVICE][0000:01:00.0] Chipset: GK107 (NVE7)
[    4.460040] nouveau  [  DEVICE][0000:01:00.0] Family : NVE0
[    4.462675] nouveau  [   VBIOS][0000:01:00.0] checking PRAMIN for image...
[    4.549694] nouveau  [   VBIOS][0000:01:00.0] ... appears to be valid
[    4.549695] nouveau  [   VBIOS][0000:01:00.0] using image from PRAMIN
[    4.549794] nouveau  [   VBIOS][0000:01:00.0] BIT signature found
[    4.549796] nouveau  [   VBIOS][0000:01:00.0] version 80.07.26.04.01
[    4.550755] nouveau 0000:01:00.0: irq 50 for MSI/MSI-X
[    4.550770] nouveau  [     PMC][0000:01:00.0] MSI interrupts enabled
[    4.550817] nouveau  [     PFB][0000:01:00.0] RAM type: GDDR5
[    4.550818] nouveau  [     PFB][0000:01:00.0] RAM size: 1024 MiB
[    4.550819] nouveau  [     PFB][0000:01:00.0]    ZCOMP: 0 tags
[    4.584480] nouveau  [  PTHERM][0000:01:00.0] FAN control: none / external
[    4.584484] nouveau  [  PTHERM][0000:01:00.0] fan management: automatic
[    4.584507] nouveau  [  PTHERM][0000:01:00.0] internal sensor: yes
[    4.584556] nouveau  [     CLK][0000:01:00.0] 07: core 270-405 MHz memory 419 MHz 
[    4.584603] nouveau  [     CLK][0000:01:00.0] 0a: core 270-900 MHz memory 780 MHz 
[    4.584638] nouveau  [     CLK][0000:01:00.0] 0e: core 270-900 MHz memory 2000 MHz 
[    4.584662] nouveau  [     CLK][0000:01:00.0] 0f: core 270-900 MHz memory 2508 MHz 
[    4.584804] nouveau  [     CLK][0000:01:00.0] --: core 405 MHz memory 340 MHz 
[    4.608286] [TTM] Zone  kernel: Available graphics memory: 8127246 kiB
[    4.608287] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    4.608288] [TTM] Initializing pool allocator
[    4.608293] [TTM] Initializing DMA pool allocator
[    4.608335] nouveau  [     DRM] VRAM: 1024 MiB
[    4.608337] nouveau  [     DRM] GART: 1048576 MiB
[    4.608338] nouveau  [     DRM] TMDS table version 2.0
[    4.608339] nouveau  [     DRM] DCB version 4.0
[    4.608341] nouveau  [     DRM] DCB outp 00: 048101b6 0f230010
[    4.608342] nouveau  [     DRM] DCB outp 01: 018212d6 0f220020
[    4.608343] nouveau  [     DRM] DCB outp 02: 01021212 00020020
[    4.608344] nouveau  [     DRM] DCB outp 03: 088324c6 0f220010
[    4.608345] nouveau  [     DRM] DCB outp 04: 08032402 00020010
[    4.608346] nouveau  [     DRM] DCB outp 05: 02843862 00020010
[    4.608347] nouveau  [     DRM] DCB conn 00: 00020047
[    4.608348] nouveau  [     DRM] DCB conn 01: 02208146
[    4.608349] nouveau  [     DRM] DCB conn 02: 01104246
[    4.608350] nouveau  [     DRM] DCB conn 03: 00410361
[    4.609737] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.609738] [drm] No driver support for vblank timestamp query.
[    4.609740] nouveau  [     DRM] ACPI backlight interface available, not registering our own
[    4.620202] nouveau  [     DRM] MM: using COPY for buffer copies
[    4.659172] nouveau  [     DRM] allocated 2880x1800 fb: 0x80000, bo ffff88044b8b3000
[    4.659227] fbcon: nouveaufb (fb0) is primary device
[    5.114876] Console: switching to colour frame buffer device 360x112
[    5.121250] nouveau 0000:01:00.0: fb0: nouveaufb frame buffer device
[    5.121251] nouveau 0000:01:00.0: registered panic notifier
[    5.121254] [drm] Initialized nouveau 1.1.1 20120801 for 0000:01:00.0 on minor 1
[    5.121543] modprobe (79) used greatest stack depth: 2776 bytes left
[    5.166955] sdhci: Secure Digital Host Controller Interface driver
[    5.166958] sdhci: Copyright(c) Pierre Ossman
[    5.167903] sdhci-pci 0000:03:00.1: SDHCI controller found [14e4:16bc] (rev 10)
[    5.168202] ACPI: bus type USB registered
[    5.168334] usbcore: registered new interface driver usbfs
[    5.168381] usbcore: registered new interface driver hub
[    5.168420] usbcore: registered new device driver usb
[    5.168962] mmc0: SDHCI controller on PCI [0000:03:00.1] using ADMA
[    5.169827] SCSI subsystem initialized
[    5.171006] xhci_hcd 0000:00:14.0: can't derive routing for PCI INT A
[    5.171010] xhci_hcd 0000:00:14.0: PCI INT A: no GSI
[    5.171098] xhci_hcd 0000:00:14.0: enabling bus mastering
[    5.171115] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    5.171139] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    5.171255] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.171397] xhci_hcd 0000:00:14.0: cache line size of 256 is not supported
[    5.171425] xhci_hcd 0000:00:14.0: irq 51 for MSI/MSI-X
[    5.171702] ehci-pci: EHCI PCI platform driver
[    5.172013] hub 1-0:1.0: USB hub found
[    5.172048] hub 1-0:1.0: 4 ports detected
[    5.172947] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    5.172956] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    5.173384] hub 2-0:1.0: USB hub found
[    5.173463] hub 2-0:1.0: 4 ports detected
[    5.173665] libata version 3.00 loaded.
[    5.215535] ehci-pci 0000:00:1a.0: enabling bus mastering
[    5.215558] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    5.215565] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    5.215585] ehci-pci 0000:00:1a.0: debug port 2
[    5.219548] ehci-pci 0000:00:1a.0: cache line size of 256 is not supported
[    5.219572] ehci-pci 0000:00:1a.0: irq 23, io mem 0xc1c16c00
[    5.228598] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    5.228877] hub 3-0:1.0: USB hub found
[    5.228887] hub 3-0:1.0: 2 ports detected
[    5.229178] ehci-pci 0000:00:1d.0: enabling bus mastering
[    5.229190] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    5.229194] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    5.229206] ehci-pci 0000:00:1d.0: debug port 2
[    5.233130] ehci-pci 0000:00:1d.0: cache line size of 256 is not supported
[    5.233146] ehci-pci 0000:00:1d.0: irq 22, io mem 0xc1c16800
[    5.242019] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    5.242400] hub 4-0:1.0: USB hub found
[    5.242413] hub 4-0:1.0: 2 ports detected
[    5.242677] ahci 0000:00:1f.2: version 3.0
[    5.242906] ahci 0000:00:1f.2: irq 52 for MSI/MSI-X
[    5.243014] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode
[    5.243016] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst 
[    5.243958] scsi0 : ahci
[    5.244327] scsi1 : ahci
[    5.244506] scsi2 : ahci
[    5.244683] scsi3 : ahci
[    5.244891] scsi4 : ahci
[    5.245052] scsi5 : ahci
[    5.245129] ata1: SATA max UDMA/133 abar m2048@0xc1c16000 port 0xc1c16100 irq 52
[    5.245130] ata2: DUMMY
[    5.245131] ata3: DUMMY
[    5.245132] ata4: DUMMY
[    5.245132] ata5: DUMMY
[    5.245133] ata6: DUMMY
[    5.352242] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[    5.535224] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    5.565204] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    5.565784] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[    5.565853] ata1.00: ATA-8: APPLE SSD SD512E, 1027AP, max UDMA/133
[    5.565857] ata1.00: 977105060 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    5.566512] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[    5.566610] ata1.00: configured for UDMA/133
[    5.566983] scsi 0:0:0:0: Direct-Access     ATA      APPLE SSD SD512E 1027 PQ: 0 ANSI: 5
[    5.571483] sd 0:0:0:0: [sda] 977105060 512-byte logical blocks: (500 GB/465 GiB)
[    5.571485] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    5.571611] sd 0:0:0:0: [sda] Write Protect is off
[    5.571613] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    5.571647] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.576116]  sda: sda1 sda2 sda3 sda4 sda5 sda6
[    5.577508] sd 0:0:0:0: [sda] Attached SCSI disk
[    5.616129] PM: Starting manual resume from disk
[    5.616133] PM: Hibernation image partition 8:5 present
[    5.616134] PM: Looking for hibernation image.
[    5.616344] PM: Image not found (code -22)
[    5.616346] PM: Hibernation image not present or could not be loaded.
[    5.659155] hub 3-1:1.0: USB hub found
[    5.659223] hub 3-1:1.0: 6 ports detected
[    5.661847] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[    5.765987] usb 4-1: new high-speed USB device number 2 using ehci-pci
[    5.973156] hub 4-1:1.0: USB hub found
[    5.982932] hub 4-1:1.0: 8 ports detected
[    6.201702] usb 3-1.1: new high-speed USB device number 3 using ehci-pci
[    6.202705] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    6.203191] systemd[1]: Set hostname to <linuxbook>.
[    6.205017] random: systemd urandom read with 46 bits of entropy available
[    6.310228] systemd[1]: Cannot add dependency job for unit hddtemp.service, ignoring: Unit hddtemp.service failed to load: No such file or directory.
[    6.310451] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[    6.310514] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    6.310525] systemd[1]: Starting Login Prompts.
[    6.310535] systemd[1]: Reached target Login Prompts.
[    6.310541] systemd[1]: Starting Remote File Systems.
[    6.310549] systemd[1]: Reached target Remote File Systems.
[    6.310555] systemd[1]: Starting Device-mapper event daemon FIFOs.
[    6.310587] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    6.310593] systemd[1]: Starting Delayed Shutdown Socket.
[    6.310617] systemd[1]: Listening on Delayed Shutdown Socket.
[    6.310623] systemd[1]: Starting LVM2 metadata daemon socket.
[    6.310665] systemd[1]: Listening on LVM2 metadata daemon socket.
[    6.310671] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[    6.310691] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    6.310700] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[    6.310745] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    6.310751] systemd[1]: Starting Paths.
[    6.310759] systemd[1]: Reached target Paths.
[    6.310765] systemd[1]: Starting Journal Socket.
[    6.310820] systemd[1]: Listening on Journal Socket.
[    6.310846] systemd[1]: Mounting POSIX Message Queue File System...
[    6.311671] systemd[1]: Starting Journal Service...
[    6.312137] systemd[1]: Started Journal Service.
[    6.328932] systemd-journald[155]: Vacuuming done, freed 0 bytes
[    6.378369] usb 4-1.8: new high-speed USB device number 3 using ehci-pci
[    6.387836] EXT4-fs (sda6): re-mounted. Opts: data=ordered,discard
[    6.416028] systemd-udevd[189]: starting version 208
[    6.462881] hub 4-1.8:1.0: USB hub found
[    6.462994] hub 4-1.8:1.0: 2 ports detected
[    6.497442] ACPI: AC Adapter [ADP1] (on-line)
[    6.508964] mei_me 0000:00:16.0: irq 53 for MSI/MSI-X
[    6.556546] i801_smbus 0000:00:1f.3: enabling device (0000 -> 0003)
[    6.556682] ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20131115/utaddress-251)
[    6.556686] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.557204] lib80211: common routines for IEEE802.11 drivers
[    6.557236] lib80211_crypt: registered algorithm 'NULL'
[    6.564433] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[    6.564599] snd_hda_intel 0000:00:1b.0: irq 54 for MSI/MSI-X
[    6.564631] snd_hda_intel 0000:00:1b.0: enabling bus mastering
[    6.568707] ACPI: Battery Slot [BAT0] (battery present)
[    6.576992] apple_gmux: Found gmux version 3.2.19 [indexed]
[    6.580289] input: PC Speaker as /devices/platform/pcspkr/input/input6
[    6.585292] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[    6.586884] media: Linux media interface: v0.10
[    6.587765] platform microcode: Direct firmware load failed with error -2
[    6.587768] platform microcode: Falling back to user helper
[    6.598611] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[    6.607704] Linux video capture interface: v2.00
[    6.618933] cfg80211: Calling CRDA to update world regulatory domain
[    6.627701] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[    6.627770] hda_intel: Disabling MSI
[    6.627779] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
[    6.627815] snd_hda_intel 0000:01:00.1: enabling bus mastering
[    6.627946] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20131115/utaddress-251)
[    6.627950] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.627955] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20131115/utaddress-251)
[    6.627958] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.627959] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20131115/utaddress-251)
[    6.627961] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.627961] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.630458] Adding 8388604k swap on /dev/sda5.  Priority:-1 extents:1 across:8388604k SSFS
[    6.644869] uvcvideo: Found UVC 1.00 device FaceTime HD Camera (Built-in) (05ac:8510)
[    6.645798] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[    6.645823] platform microcode: Direct firmware load failed with error -2
[    6.645826] platform microcode: Falling back to user helper
[    6.648613] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[    6.648631] platform microcode: Direct firmware load failed with error -2
[    6.648633] platform microcode: Falling back to user helper
[    6.649349] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[    6.649372] platform microcode: Direct firmware load failed with error -2
[    6.649374] platform microcode: Falling back to user helper
[    6.650577] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[    6.650602] platform microcode: Direct firmware load failed with error -2
[    6.650605] platform microcode: Falling back to user helper
[    6.651196] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[    6.651218] platform microcode: Direct firmware load failed with error -2
[    6.651221] platform microcode: Falling back to user helper
[    6.651383] iTCO_vendor_support: vendor-support=0
[    6.651932] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[    6.651950] platform microcode: Direct firmware load failed with error -2
[    6.651952] platform microcode: Falling back to user helper
[    6.652498] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[    6.652517] platform microcode: Direct firmware load failed with error -2
[    6.652519] platform microcode: Falling back to user helper
[    6.653078] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    6.655095] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    6.655128] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[    6.655626] input: FaceTime HD Camera (Built-in) as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.1/3-1.1:1.0/input/input8
[    6.675653] usbcore: registered new interface driver uvcvideo
[    6.675656] USB Video Class driver (1.1.1)
[    6.675749] vga_switcheroo: enabled
[    6.679332] applesmc: key=493 fan=2 temp=44 index=43 acc=0 lux=2 kbd=1
[    6.741849] usb 4-1.8.1: new full-speed USB device number 4 using ehci-pci
[    6.752446] systemd-journald[155]: Received request to flush runtime journal from PID 1
[    6.833209] INFO @wl_cfg80211_attach : Registered CFG80211 phy
[    6.838925] lib80211_crypt: registered algorithm 'TKIP'
[    6.839474] eth0: Broadcom BCM4331 802.11 Hybrid Wireless Controller 6.30.223.30 (r390414)
[    6.841015] hub 4-1.8.1:1.0: USB hub found
[    6.841448] hub 4-1.8.1:1.0: 3 ports detected
[    6.868263] systemd-udevd[194]: renamed network interface eth0 to wlp4s0
[    6.921627] usb 4-1.8.2: new full-speed USB device number 5 using ehci-pci
[    6.967152] random: nonblocking pool is initialized
[    7.001466] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[    7.001616] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
[    7.001693] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
[    7.038015] input: bcm5974 as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.8/4-1.8.2/4-1.8.2:1.2/input/input12
[    7.038145] usbcore: registered new interface driver bcm5974
[    7.041693] hidraw: raw HID events driver (C) Jiri Kosina
[    7.054492] usbcore: registered new interface driver usbhid
[    7.054494] usbhid: USB HID core driver
[    7.057924] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.8/4-1.8.2/4-1.8.2:1.0/input/input13
[    7.058115] 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
[    7.108174] usb 4-1.8.1.1: new full-speed USB device number 6 using ehci-pci
[    7.154239] 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
[    7.203382] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.8/4-1.8.1/4-1.8.1.1/4-1.8.1.1:1.0/input/input14
[    7.204767] 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.261462] usb 4-1.8.1.2: new full-speed USB device number 7 using ehci-pci
[    7.349946] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.8/4-1.8.1/4-1.8.1.2/4-1.8.1.2:1.0/input/input15
[    7.350092] 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.414680] usb 4-1.8.1.3: new full-speed USB device number 8 using ehci-pci
[    7.551792] Bluetooth: Core ver 2.17
[    7.552004] NET: Registered protocol family 31
[    7.552006] Bluetooth: HCI device and connection manager initialized
[    7.552062] Bluetooth: HCI socket layer initialized
[    7.552067] Bluetooth: L2CAP socket layer initialized
[    7.552075] Bluetooth: SCO socket layer initialized
[    7.562102] usbcore: registered new interface driver btusb
[    7.631525] ------------[ cut here ]------------
[    7.631533] WARNING: CPU: 0 PID: 350 at lib/dma-debug.c:937 check_unmap+0x47b/0x920()
[    7.631535] wl 0000:04:00.0: DMA-API: device driver failed to check map error[device address=0x000000008a2af28a] [size=244 bytes] [mapped as single]
[    7.631537] Modules linked in:
[    7.631538]  btusb bluetooth hid_generic joydev hid_apple usbhid hid bcm5974 lib80211_crypt_tkip snd_hda_codec_hdmi x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm nls_cp437 vfat fat crc32_pclmul crc32c_intel ghash_clmulni_intel nls_utf8 aesni_intel aes_x86_64 hfsplus glue_helper lrw gf128mul ablk_helper cryptd iTCO_wdt wl(O) iTCO_vendor_support uvcvideo videobuf2_vmalloc videobuf2_memops cfg80211 videobuf2_core videodev applesmc input_polldev snd_hda_codec_cirrus media microcode pcspkr apple_gmux snd_hda_intel lpc_ich rfkill mfd_core i2c_i801 lib80211 snd_hda_codec snd_hwdep snd_pcm snd_page_alloc snd_timer snd mei_me mei apple_bl evdev soundcore ac processor battery ext4 crc16 mbcache jbd2 sd_mod ahci libahci libata ehci_pci ehci_hcd xhci_hcd sdhci_pci sdhci usbcore scsi_mod mmc_core
[    7.631593]  usb_common nouveau mxm_wmi wmi ttm i915 video button i2c_algo_bit intel_agp intel_gtt drm_kms_helper drm i2c_core
[    7.631602] CPU: 0 PID: 350 Comm: Xorg Tainted: G           O 3.13.0-1-00213-ga0ecfde-dirty #19
[    7.631604] Hardware name: Apple Inc. MacBookPro10,1/Mac-C3EC7CD22292981F, BIOS MBP101.88Z.00EE.B03.1212211437 12/21/2012
[    7.631605]  0000000000000009 ffff88046d003a38 ffffffff8154bff5 ffff88046d003a80
[    7.631609]  ffff88046d003a70 ffffffff81062fad ffff880456a5a140 ffff88044d292b40
[    7.631621]  ffffffff824fff10 0000000000000296 ffffffff8179dce9 ffff88046d003ad0
[    7.631624] Call Trace:
[    7.631625]  <IRQ>  [<ffffffff8154bff5>] dump_stack+0x4e/0x7a
[    7.631633]  [<ffffffff81062fad>] warn_slowpath_common+0x7d/0xa0
[    7.631636]  [<ffffffff8106301c>] warn_slowpath_fmt+0x4c/0x50
[    7.631640]  [<ffffffff812d011b>] check_unmap+0x47b/0x920
[    7.631644]  [<ffffffff812d061f>] debug_dma_unmap_page+0x5f/0x70
[    7.631678]  [<ffffffffa08e461d>] osl_dma_unmap+0x6d/0x90 [wl]
[    7.631691]  [<ffffffffa0781010>] dma_txpioloopback+0x446/0x1654 [wl]
[    7.631710]  [<ffffffffa07b5a33>] wlc_dotxstatus+0x13e/0xb39 [wl]
[    7.631713]  [<ffffffff812bf342>] ? debug_object_activate+0xc2/0x220
[    7.631732]  [<ffffffffa07d2632>] wlc_bmac_tx_fifo_suspend+0x122/0x129 [wl]
[    7.631750]  [<ffffffffa07d27e8>] wlc_bmac_txstatus+0x1af/0x471 [wl]
[    7.631755]  [<ffffffffa03d00dc>] ? sdhci_irq+0x2c/0x8f0 [sdhci]
[    7.631776]  [<ffffffffa07e752d>] wlc_dpc+0x95/0x294 [wl]
[    7.631795]  [<ffffffffa08e66df>] wl_dpc+0x4f/0xe0 [wl]
[    7.631798]  [<ffffffff81068897>] tasklet_action+0xd7/0xf0
[    7.631801]  [<ffffffff81067e4c>] __do_softirq+0xdc/0x2a0
[    7.631803]  [<ffffffff81068306>] irq_exit+0x86/0xb0
[    7.631806]  [<ffffffff8155da96>] do_IRQ+0x56/0xc0
[    7.631811]  [<ffffffff81553f6d>] common_interrupt+0x6d/0x6d
[    7.631812]  <EOI>  [<ffffffffa019aa93>] ? nouveau_object_create_+0x33/0x90 [nouveau]
[    7.631838]  [<ffffffff81093206>] ? __might_sleep+0x6/0x120
[    7.631841]  [<ffffffff8119713b>] ? __kmalloc+0x22b/0x2c0
[    7.631849]  [<ffffffffa019aa93>] ? nouveau_object_create_+0x33/0x90 [nouveau]
[    7.631851]  [<ffffffff81551e2e>] ? mutex_unlock+0xe/0x10
[    7.631861]  [<ffffffffa01be669>] ? nvc0_ram_get+0x1a9/0x210 [nouveau]
[    7.631869]  [<ffffffffa019aa93>] nouveau_object_create_+0x33/0x90 [nouveau]
[    7.631878]  [<ffffffffa019c0ec>] nouveau_barobj_ctor+0x2c/0x80 [nouveau]
[    7.631886]  [<ffffffffa019a912>] nouveau_object_ctor+0x32/0xc0 [nouveau]
[    7.631894]  [<ffffffffa019c167>] nouveau_bar_alloc+0x27/0x30 [nouveau]
[    7.631901]  [<ffffffffa01992d3>] nouveau_gpuobj_create_+0x243/0x290 [nouveau]
[    7.631909]  [<ffffffffa019935d>] _nouveau_gpuobj_ctor+0x3d/0x50 [nouveau]
[    7.631917]  [<ffffffffa019a912>] nouveau_object_ctor+0x32/0xc0 [nouveau]
[    7.631924]  [<ffffffffa01993bc>] nouveau_gpuobj_new+0x4c/0x50 [nouveau]
[    7.631939]  [<ffffffffa02110e0>] nvc0_graph_context_ctor+0x130/0x3c0 [nouveau]
[    7.631947]  [<ffffffffa019a912>] nouveau_object_ctor+0x32/0xc0 [nouveau]
[    7.631955]  [<ffffffffa019b11a>] nouveau_object_new+0xfa/0x210 [nouveau]
[    7.631970]  [<ffffffffa0223670>] nouveau_abi16_ioctl_grobj_alloc+0x70/0xe0 [nouveau]
[    7.631977]  [<ffffffffa0012ca2>] drm_ioctl+0x502/0x640 [drm]
[    7.631981]  [<ffffffff815532f0>] ? _raw_spin_unlock_irqrestore+0x40/0x60
[    7.631994]  [<ffffffffa021876e>] nouveau_drm_ioctl+0x4e/0x90 [nouveau]
[    7.631997]  [<ffffffff811c53d0>] do_vfs_ioctl+0x300/0x520
[    7.631999]  [<ffffffff811c5671>] SyS_ioctl+0x81/0xa0
[    7.632001]  [<ffffffff8155b7ad>] system_call_fastpath+0x1a/0x1f
[    7.632002] ---[ end trace 8e30fe0a3dc9a1f4 ]---
[    7.632003] Mapped at:
[    7.632004]  [<ffffffff812d15dd>] debug_dma_map_page+0x8d/0x150
[    7.632005]  [<ffffffffa08e4546>] osl_dma_map+0xd6/0x140 [wl]
[    7.632022]  [<ffffffffa0781e33>] dma_txpioloopback+0x1269/0x1654 [wl]
[    7.632031]  [<ffffffffa07ab7a3>] wlc_txfifo+0x2b0/0x317 [wl]
[    7.632046]  [<ffffffffa07aba0f>] wlc_send_q+0x205/0x37e [wl]
[    7.668321] usb 4-1.8.1.1: USB disconnect, device number 6
[    7.895153] usb 4-1.8.1.2: USB disconnect, device number 7
[    8.630928] [drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[   15.795549] type=1006 audit(1387226169.857:2): pid=1198 uid=0 old auid=4294967295 new auid=1000 old ses=4294967295 new ses=1 res=1
[   16.162100] ip_set: protocol 6
[   72.203071] Disabling lock debugging due to kernel taint
[  142.650401] pcieport 0000:06:06.0: PME# disabled
[  142.650511] pciehp 0000:06:06.0:pcie24: unloading service driver pciehp
[  142.650521] pci_bus 0000:6b: dev 00, dec refcount to 0
[  142.650532] pci_bus 0000:6b: dev 00, released physical slot 6
[  142.650908] pcieport 0000:06:05.0: PME# disabled
[  142.650965] pciehp 0000:06:05.0:pcie24: unloading service driver pciehp
[  142.650971] pci_bus 0000:6a: dev 00, dec refcount to 0
[  142.650980] pci_bus 0000:6a: dev 00, released physical slot 5-1
[  142.651191] pcieport 0000:06:04.0: PME# disabled
[  142.651435] pciehp 0000:06:04.0:pcie24: unloading service driver pciehp
[  142.651447] pci_bus 0000:39: dev 00, dec refcount to 0
[  142.651457] pci_bus 0000:39: dev 00, released physical slot 4-1
[  142.651683] pcieport 0000:06:03.0: PME# disabled
[  142.651758] pciehp 0000:06:03.0:pcie24: unloading service driver pciehp
[  142.651764] pci_bus 0000:08: dev 00, dec refcount to 0
[  142.651782] pci_bus 0000:08: dev 00, released physical slot 3-1
[  142.652067] pci 0000:07:00.0: PME# disabled
[  142.652150] pcieport 0000:06:00.0: PME# disabled
[  142.653261] pcieport 0000:05:00.0: PME# disabled
[  142.654655] pci_bus 0000:07: busn_res: [bus 07] is released
[  142.654824] pci_bus 0000:08: busn_res: [bus 08-38] is released
[  142.655291] pci_bus 0000:39: busn_res: [bus 39-69] is released
[  142.655457] pci_bus 0000:6a: busn_res: [bus 6a] is released
[  142.656468] pci_bus 0000:6b: busn_res: [bus 6b] is released
[  142.656706] pci_bus 0000:06: busn_res: [bus 06-6b] is released
[  142.656708] pci_bus 0000:06: dev 06, dec refcount to 0
[  142.656711] pci_bus 0000:06: dev 06, released physical slot 5
[  142.656713] pci_bus 0000:06: dev 05, dec refcount to 0
[  142.656981] pci_bus 0000:06: dev 05, released physical slot 4
[  142.656983] pci_bus 0000:06: dev 04, dec refcount to 0
[  142.656986] pci_bus 0000:06: dev 04, released physical slot 3
[  142.656987] pci_bus 0000:06: dev 03, dec refcount to 0
[  142.657000] pci_bus 0000:06: dev 03, released physical slot 2
[  155.670419] un loaded
[  160.412422] pci_bus 0000:00: scanning bus
[  160.412524] pcieport 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 0
[  160.412528] pci_bus 0000:01: scanning bus
[  160.412540] pcieport 0000:00:01.1: scanning [bus 05-9b] behind bridge, pass 0
[  160.412543] pci_bus 0000:05: scanning bus
[  160.412558] pci 0000:05:00.0: [8086:1547] type 01 class 0x060400
[  160.412589] pci 0000:05:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  160.412624] pci 0000:05:00.0: supports D1 D2
[  160.412626] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  160.412629] pci 0000:05:00.0: PME# disabled
[  160.416306] pci 0000:05:00.0: scanning [bus 00-00] behind bridge, pass 0
[  160.416311] pci 0000:05:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  160.416318] pcieport 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 0
[  160.416324] pci_bus 0000:02: scanning bus
[  160.416334] pcieport 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 0
[  160.416339] pci_bus 0000:03: scanning bus
[  160.416397] pcieport 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 0
[  160.416402] pci_bus 0000:04: scanning bus
[  160.416495] pcieport 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 1
[  160.416509] pci_bus 0000:01: bus scan returning with max=01
[  160.416512] pcieport 0000:00:01.1: scanning [bus 05-9b] behind bridge, pass 1
[  160.416516] pci 0000:05:00.0: scanning [bus 00-00] behind bridge, pass 1
[  160.416636] pci_bus 0000:06: dev 03, created physical slot 2
[  160.416647] pci_bus 0000:06: dev 04, created physical slot 3
[  160.416658] pci_bus 0000:06: dev 05, created physical slot 4
[  160.416669] pci_bus 0000:06: dev 06, created physical slot 5
[  160.416674] pci_bus 0000:06: busn_res: [bus 06-0d] is updated under [bus 05-9b]
[  160.416677] pci_bus 0000:06: scanning bus
[  160.416694] pci 0000:06:00.0: [8086:1547] type 01 class 0x060400
[  160.416727] pci 0000:06:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  160.416766] pci 0000:06:00.0: supports D1 D2
[  160.416768] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  160.416772] pci 0000:06:00.0: PME# disabled
[  160.416899] pci 0000:06:03.0: [8086:1547] type 01 class 0x060400
[  160.416928] pci 0000:06:03.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  160.416964] pci 0000:06:03.0: supports D1 D2
[  160.416965] pci 0000:06:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  160.416968] pci 0000:06:03.0: PME# disabled
[  160.417053] pci 0000:06:04.0: [8086:1547] type 01 class 0x060400
[  160.417080] pci 0000:06:04.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  160.417115] pci 0000:06:04.0: supports D1 D2
[  160.417116] pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  160.417119] pci 0000:06:04.0: PME# disabled
[  160.417200] pci 0000:06:05.0: [8086:1547] type 01 class 0x060400
[  160.417227] pci 0000:06:05.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  160.417262] pci 0000:06:05.0: supports D1 D2
[  160.417263] pci 0000:06:05.0: PME# supported from D0 D1 D2 D3hot D3cold
[  160.417266] pci 0000:06:05.0: PME# disabled
[  160.417751] pci 0000:06:06.0: [8086:1547] type 01 class 0x060400
[  160.417782] pci 0000:06:06.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  160.417818] pci 0000:06:06.0: supports D1 D2
[  160.417819] pci 0000:06:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[  160.417822] pci 0000:06:06.0: PME# disabled
[  160.418510] pci 0000:06:00.0: scanning [bus 00-00] behind bridge, pass 0
[  160.418513] pci 0000:06:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  160.418519] pci 0000:06:03.0: scanning [bus 00-00] behind bridge, pass 0
[  160.418521] pci 0000:06:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  160.418526] pci 0000:06:04.0: scanning [bus 00-00] behind bridge, pass 0
[  160.418528] pci 0000:06:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  160.418533] pci 0000:06:05.0: scanning [bus 00-00] behind bridge, pass 0
[  160.418535] pci 0000:06:05.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  160.418540] pci 0000:06:06.0: scanning [bus 00-00] behind bridge, pass 0
[  160.418541] pci 0000:06:06.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  160.418591] pci_bus 0000:06: fixups for bus
[  160.418593] pci 0000:05:00.0: PCI bridge to [bus 06-0d]
[  160.418599] pci 0000:05:00.0:   bridge window [io  0x0000-0x0fff]
[  160.418602] pci 0000:05:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  160.418607] pci 0000:05:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  160.418609] pci 0000:06:00.0: scanning [bus 00-00] behind bridge, pass 1
[  160.418616] pci_bus 0000:06: busn_res: extended 01 to [bus 06-0e]
[  160.418684] pci_bus 0000:07: busn_res: [bus 07-0e] is updated under [bus 06-0e]
[  160.418687] pci_bus 0000:07: scanning bus
[  160.418706] pci 0000:07:00.0: [8086:1547] type 00 class 0x088000
[  160.418719] pci 0000:07:00.0: reg 0x10: [mem 0x00000000-0x0003ffff]
[  160.418726] pci 0000:07:00.0: reg 0x14: [mem 0x00000000-0x00000fff]
[  160.418815] pci 0000:07:00.0: supports D1 D2
[  160.418816] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  160.418820] pci 0000:07:00.0: PME# disabled
[  160.422905] pci_bus 0000:07: fixups for bus
[  160.422919] pci 0000:06:00.0: PCI bridge to [bus 07-0e]
[  160.422926] pci 0000:06:00.0:   bridge window [io  0x0000-0x0fff]
[  160.422931] pci 0000:06:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  160.422937] pci 0000:06:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  160.422940] pci_bus 0000:07: bus scan returning with max=07
[  160.422945] pci_bus 0000:07: busn_res: [bus 07-0e] end is updated to 07
[  160.422949] pci_bus 0000:06: busn_res: shrunk 07 to [bus 06-07]
[  160.422954] pci 0000:06:03.0: scanning [bus 00-00] behind bridge, pass 1
[  160.422961] pci_bus 0000:06: busn_res: extended 08 to [bus 06-0f]
[  160.423957] pci_bus 0000:08: busn_res: [bus 08-0f] is updated under [bus 06-0f]
[  160.423962] pci_bus 0000:08: scanning bus
[  160.423967] pci_bus 0000:08: fixups for bus
[  160.423970] pci 0000:06:03.0: PCI bridge to [bus 08-0f]
[  160.423977] pci 0000:06:03.0:   bridge window [io  0x0000-0x0fff]
[  160.423981] pci 0000:06:03.0:   bridge window [mem 0x00000000-0x000fffff]
[  160.423988] pci 0000:06:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  160.423990] pci_bus 0000:08: bus scan returning with max=08
[  160.423993] pci_bus 0000:08: busn_res: [bus 08-0f] end is updated to 0f
[  160.423998] pci 0000:06:04.0: scanning [bus 00-00] behind bridge, pass 1
[  160.424006] pci_bus 0000:06: busn_res: extended 08 to [bus 06-17]
[  160.424126] pci_bus 0000:10: busn_res: [bus 10-17] is updated under [bus 06-17]
[  160.424131] pci_bus 0000:10: scanning bus
[  160.424136] pci_bus 0000:10: fixups for bus
[  160.424138] pci 0000:06:04.0: PCI bridge to [bus 10-17]
[  160.424145] pci 0000:06:04.0:   bridge window [io  0x0000-0x0fff]
[  160.424149] pci 0000:06:04.0:   bridge window [mem 0x00000000-0x000fffff]
[  160.424155] pci 0000:06:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  160.424157] pci_bus 0000:10: bus scan returning with max=10
[  160.424159] pci_bus 0000:10: busn_res: [bus 10-17] end is updated to 17
[  160.424163] pci 0000:06:05.0: scanning [bus 00-00] behind bridge, pass 1
[  160.424168] pci_bus 0000:06: busn_res: extended 08 to [bus 06-1f]
[  160.424507] pci_bus 0000:18: busn_res: [bus 18-1f] is updated under [bus 06-1f]
[  160.424513] pci_bus 0000:18: scanning bus
[  160.424518] pci_bus 0000:18: fixups for bus
[  160.424521] pci 0000:06:05.0: PCI bridge to [bus 18-1f]
[  160.424528] pci 0000:06:05.0:   bridge window [io  0x0000-0x0fff]
[  160.424533] pci 0000:06:05.0:   bridge window [mem 0x00000000-0x000fffff]
[  160.424539] pci 0000:06:05.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  160.424542] pci_bus 0000:18: bus scan returning with max=18
[  160.424546] pci_bus 0000:18: busn_res: [bus 18-1f] end is updated to 1f
[  160.424551] pci 0000:06:06.0: scanning [bus 00-00] behind bridge, pass 1
[  160.424558] pci_bus 0000:06: busn_res: extended 08 to [bus 06-27]
[  160.424943] pci_bus 0000:20: busn_res: [bus 20-27] is updated under [bus 06-27]
[  160.424948] pci_bus 0000:20: scanning bus
[  160.424954] pci_bus 0000:20: fixups for bus
[  160.424957] pci 0000:06:06.0: PCI bridge to [bus 20-27]
[  160.424964] pci 0000:06:06.0:   bridge window [io  0x0000-0x0fff]
[  160.424968] pci 0000:06:06.0:   bridge window [mem 0x00000000-0x000fffff]
[  160.424975] pci 0000:06:06.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  160.424977] pci_bus 0000:20: bus scan returning with max=20
[  160.424981] pci_bus 0000:20: busn_res: [bus 20-27] end is updated to 27
[  160.424985] pci_bus 0000:06: bus scan returning with max=27
[  160.424988] pci_bus 0000:06: busn_res: [bus 06-27] end is updated to 27
[  160.424992] pci_bus 0000:05: bus scan returning with max=27
[  160.424997] pcieport 0000:00:01.2: scanning [bus 02-02] behind bridge, pass 1
[  160.425004] pci_bus 0000:02: bus scan returning with max=02
[  160.425013] pcieport 0000:00:1c.0: scanning [bus 03-03] behind bridge, pass 1
[  160.425075] pci_bus 0000:03: bus scan returning with max=03
[  160.425082] pcieport 0000:00:1c.1: scanning [bus 04-04] behind bridge, pass 1
[  160.425090] pci_bus 0000:04: bus scan returning with max=04
[  160.425096] pci_bus 0000:00: bus scan returning with max=9b
[  160.425119] pci 0000:06:03.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 08-0f] add_size 200000
[  160.425122] pci 0000:06:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 08-0f] add_size 200000
[  160.425131] pci 0000:06:04.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 10-17] add_size 200000
[  160.425135] pci 0000:06:04.0: bridge window [mem 0x00100000-0x001fffff] to [bus 10-17] add_size 200000
[  160.425145] pci 0000:06:05.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 18-1f] add_size 200000
[  160.425148] pci 0000:06:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 18-1f] add_size 200000
[  160.425157] pci 0000:06:06.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 20-27] add_size 200000
[  160.425160] pci 0000:06:06.0: bridge window [mem 0x00100000-0x001fffff] to [bus 20-27] add_size 200000
[  160.425169] pci 0000:06:03.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  160.425173] pci 0000:06:04.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  160.425175] pci 0000:06:05.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  160.425177] pci 0000:06:06.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  160.425178] pci 0000:05:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 06-27] add_size 800000
[  160.425180] pci 0000:06:03.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  160.425182] pci 0000:06:04.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  160.425183] pci 0000:06:05.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  160.425185] pci 0000:06:06.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  160.425187] pci 0000:05:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 06-27] add_size 800000
[  160.425224] i915 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[  160.425229] pci 0000:05:00.0: res[14]=[mem 0x00100000-0x005fffff] get_res_add_size add_size 800000
[  160.425230] pci 0000:05:00.0: res[15]=[mem 0x00100000-0x005fffff 64bit pref] get_res_add_size add_size 800000
[  160.425233] pci 0000:05:00.0: BAR 14: assigned [mem 0xc1d00000-0xc29fffff]
[  160.425235] pci 0000:05:00.0: BAR 15: assigned [mem 0xce000000-0xcecfffff 64bit pref]
[  160.425237] pci 0000:05:00.0: BAR 13: can't assign io (size 0x5000)
[  160.425241] pci 0000:05:00.0: BAR 13: can't assign io (size 0x5000)
[  160.425246] pci 0000:06:03.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  160.425248] pci 0000:06:03.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  160.425249] pci 0000:06:04.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  160.425251] pci 0000:06:04.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  160.425252] pci 0000:06:05.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  160.425254] pci 0000:06:05.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  160.425255] pci 0000:06:06.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  160.425257] pci 0000:06:06.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  160.425259] pci 0000:06:00.0: BAR 14: assigned [mem 0xc1d00000-0xc1dfffff]
[  160.425263] pci 0000:06:00.0: BAR 15: assigned [mem 0xce000000-0xce0fffff 64bit pref]
[  160.425266] pci 0000:06:03.0: BAR 14: assigned [mem 0xc1e00000-0xc20fffff]
[  160.425269] pci 0000:06:03.0: BAR 15: assigned [mem 0xce100000-0xce3fffff 64bit pref]
[  160.425272] pci 0000:06:04.0: BAR 14: assigned [mem 0xc2100000-0xc23fffff]
[  160.425274] pci 0000:06:04.0: BAR 15: assigned [mem 0xce400000-0xce6fffff 64bit pref]
[  160.425277] pci 0000:06:05.0: BAR 14: assigned [mem 0xc2400000-0xc26fffff]
[  160.425280] pci 0000:06:05.0: BAR 15: assigned [mem 0xce700000-0xce9fffff 64bit pref]
[  160.425283] pci 0000:06:06.0: BAR 14: assigned [mem 0xc2700000-0xc29fffff]
[  160.425286] pci 0000:06:06.0: BAR 15: assigned [mem 0xcea00000-0xcecfffff 64bit pref]
[  160.425288] pci 0000:06:00.0: BAR 13: can't assign io (size 0x1000)
[  160.425291] pci 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
[  160.425293] pci 0000:06:04.0: BAR 13: can't assign io (size 0x1000)
[  160.425296] pci 0000:06:05.0: BAR 13: can't assign io (size 0x1000)
[  160.425298] pci 0000:06:06.0: BAR 13: can't assign io (size 0x1000)
[  160.425310] pci 0000:06:00.0: BAR 13: can't assign io (size 0x1000)
[  160.425313] pci 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
[  160.425315] pci 0000:06:04.0: BAR 13: can't assign io (size 0x1000)
[  160.425317] pci 0000:06:05.0: BAR 13: can't assign io (size 0x1000)
[  160.425320] pci 0000:06:06.0: BAR 13: can't assign io (size 0x1000)
[  160.425325] pci 0000:07:00.0: BAR 0: assigned [mem 0xc1d00000-0xc1d3ffff]
[  160.425331] pci 0000:07:00.0: BAR 0: set to [mem 0xc1d00000-0xc1d3ffff] (PCI address [0xc1d00000-0xc1d3ffff])
[  160.425334] pci 0000:07:00.0: BAR 1: assigned [mem 0xc1d40000-0xc1d40fff]
[  160.425340] pci 0000:07:00.0: BAR 1: set to [mem 0xc1d40000-0xc1d40fff] (PCI address [0xc1d40000-0xc1d40fff])
[  160.425343] pci 0000:06:00.0: PCI bridge to [bus 07]
[  160.425348] pci 0000:06:00.0:   bridge window [mem 0xc1d00000-0xc1dfffff]
[  160.425352] pci 0000:06:00.0:   bridge window [mem 0xce000000-0xce0fffff 64bit pref]
[  160.425358] pci 0000:06:03.0: PCI bridge to [bus 08-0f]
[  160.425363] pci 0000:06:03.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  160.425368] pci 0000:06:03.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  160.425374] pci 0000:06:04.0: PCI bridge to [bus 10-17]
[  160.425379] pci 0000:06:04.0:   bridge window [mem 0xc2100000-0xc23fffff]
[  160.425383] pci 0000:06:04.0:   bridge window [mem 0xce400000-0xce6fffff 64bit pref]
[  160.425389] pci 0000:06:05.0: PCI bridge to [bus 18-1f]
[  160.425395] pci 0000:06:05.0:   bridge window [mem 0xc2400000-0xc26fffff]
[  160.425399] pci 0000:06:05.0:   bridge window [mem 0xce700000-0xce9fffff 64bit pref]
[  160.425405] pci 0000:06:06.0: PCI bridge to [bus 20-27]
[  160.425410] pci 0000:06:06.0:   bridge window [mem 0xc2700000-0xc29fffff]
[  160.425415] pci 0000:06:06.0:   bridge window [mem 0xcea00000-0xcecfffff 64bit pref]
[  160.425420] pci 0000:05:00.0: PCI bridge to [bus 06-27]
[  160.425425] pci 0000:05:00.0:   bridge window [mem 0xc1d00000-0xc29fffff]
[  160.425430] pci 0000:05:00.0:   bridge window [mem 0xce000000-0xcecfffff 64bit pref]
[  160.425547] pcieport 0000:05:00.0: enabling device (0000 -> 0002)
[  160.425630] pcieport 0000:05:00.0: enabling bus mastering
[  160.425655] pcieport 0000:05:00.0: irq 43 for MSI/MSI-X
[  160.425842] pcieport 0000:06:00.0: enabling device (0000 -> 0002)
[  160.425921] pcieport 0000:06:00.0: enabling bus mastering
[  160.425941] pcieport 0000:06:00.0: irq 44 for MSI/MSI-X
[  160.426043] pcieport 0000:06:03.0: enabling device (0000 -> 0002)
[  160.426099] pcieport 0000:06:03.0: enabling bus mastering
[  160.426114] pcieport 0000:06:03.0: irq 45 for MSI/MSI-X
[  160.426927] pciehp 0000:06:03.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  160.427117] pci_bus 0000:08: dev 00, created physical slot 3-1
[  160.427152] pciehp 0000:06:03.0:pcie24: service driver pciehp loaded
[  160.427233] pcieport 0000:06:04.0: enabling device (0000 -> 0002)
[  160.427292] pcieport 0000:06:04.0: enabling bus mastering
[  160.427307] pcieport 0000:06:04.0: irq 46 for MSI/MSI-X
[  160.427362] pciehp 0000:06:04.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  160.427390] pci_bus 0000:10: dev 00, created physical slot 4-1
[  160.427416] pciehp 0000:06:04.0:pcie24: service driver pciehp loaded
[  160.427494] pcieport 0000:06:05.0: enabling device (0000 -> 0002)
[  160.427549] pcieport 0000:06:05.0: enabling bus mastering
[  160.427564] pcieport 0000:06:05.0: irq 47 for MSI/MSI-X
[  160.427620] pciehp 0000:06:05.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  160.427934] pci_bus 0000:18: dev 00, created physical slot 5-1
[  160.428709] pciehp 0000:06:05.0:pcie24: service driver pciehp loaded
[  160.429392] pcieport 0000:06:06.0: enabling device (0000 -> 0002)
[  160.429481] pcieport 0000:06:06.0: enabling bus mastering
[  160.429503] pcieport 0000:06:06.0: irq 48 for MSI/MSI-X
[  160.429597] pciehp 0000:06:06.0:pcie24: HPC vendor_id 8086 device_id 1547 ss_vid 2222 ss_did 1111
[  160.429649] pci_bus 0000:20: dev 00, created physical slot 6
[  160.429804] pciehp 0000:06:06.0:pcie24: service driver pciehp loaded
[  252.348160] un loaded
[  252.355899] dsl3510 0000:07:00.0: enabling device (0000 -> 0002)
[  252.355999] dsl3510 0000:07:00.0: irq 55 for MSI/MSI-X
[  252.356097] dsl3510 0000:07:00.0: enabling bus mastering
[  252.356100] dsl3510 0000:07:00.0: NHI initialized, starting thunderbolt
[  252.356110] dsl3510 0000:07:00.0: allocating TX ring 0
[  252.356121] dsl3510 0000:07:00.0: enabling interrupt at register 0x38200 bit 0 (new value: 0x1)
[  252.356122] dsl3510 0000:07:00.0: allocating RX ring 0
[  252.356131] dsl3510 0000:07:00.0: enabling interrupt at register 0x38200 bit 12 (new value: 0x1001)
[  252.356140] dsl3510 0000:07:00.0: config channel created
[  252.356141] dsl3510 0000:07:00.0: resetting switch at 0
[  282.344456] ------------[ cut here ]------------
[  282.344468] WARNING: CPU: 6 PID: 2715 at /home/anoever/workspace/dsl3510/tb_cfg.c:339 tb_cfg_rx+0xb2/0xd0 [dsl3510_fu]()
[  282.344470] dsl3510 0000:07:00.0: RX: timeout
[  282.344471] Modules linked in: dsl3510_fu(O+) custom_method michael_mic arc4 ecb btusb bluetooth hid_generic joydev hid_apple usbhid hid bcm5974 lib80211_crypt_tkip snd_hda_codec_hdmi x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm nls_cp437 vfat fat crc32_pclmul crc32c_intel ghash_clmulni_intel nls_utf8 aesni_intel aes_x86_64 hfsplus glue_helper lrw gf128mul ablk_helper cryptd iTCO_wdt wl(O) iTCO_vendor_support uvcvideo videobuf2_vmalloc videobuf2_memops cfg80211 videobuf2_core videodev applesmc input_polldev snd_hda_codec_cirrus media microcode pcspkr apple_gmux snd_hda_intel lpc_ich rfkill mfd_core i2c_i801 lib80211 snd_hda_codec snd_hwdep snd_pcm snd_page_alloc snd_timer snd mei_me mei apple_bl evdev soundcore ac processor battery ext4 crc16 mbcache jbd2 sd_mod ahci libahci libata
[  282.344543]  ehci_pci ehci_hcd xhci_hcd sdhci_pci sdhci usbcore scsi_mod mmc_core usb_common nouveau mxm_wmi wmi ttm i915 video button i2c_algo_bit intel_agp intel_gtt drm_kms_helper drm i2c_core [last unloaded: dsl3510_fu]
[  282.344564] CPU: 6 PID: 2715 Comm: insmod Tainted: G       AW  O 3.13.0-1-00213-ga0ecfde-dirty #19
[  282.344566] Hardware name: Apple Inc. MacBookPro10,1/Mac-C3EC7CD22292981F, BIOS MBP101.88Z.00EE.B03.1212211437 12/21/2012
[  282.344568]  0000000000000009 ffff8800848c9a48 ffffffff8154bff5 ffff8800848c9a90
[  282.344572]  ffff8800848c9a80 ffffffff81062fad ffff880456b4cac0 0000000000000000
[  282.344576]  0000000000000000 ffff8804525ff098 0000000000000001 ffff8800848c9ae0
[  282.344580] Call Trace:
[  282.344586]  [<ffffffff8154bff5>] dump_stack+0x4e/0x7a
[  282.344591]  [<ffffffff81062fad>] warn_slowpath_common+0x7d/0xa0
[  282.344595]  [<ffffffff8106301c>] warn_slowpath_fmt+0x4c/0x50
[  282.344600]  [<ffffffffa0c34fc2>] tb_cfg_rx+0xb2/0xd0 [dsl3510_fu]
[  282.344604]  [<ffffffffa0c35638>] tb_cfg_reset+0x58/0xc0 [dsl3510_fu]
[  282.344609]  [<ffffffffa0c32bc5>] thunderbolt_alloc_and_start+0x125/0x200 [dsl3510_fu]
[  282.344613]  [<ffffffffa0c3358e>] dsl3510_probe+0x21e/0x300 [dsl3510_fu]
[  282.344618]  [<ffffffff812e20d5>] local_pci_probe+0x45/0xa0
[  282.344622]  [<ffffffff812e1855>] ? pci_match_device+0xc5/0xd0
[  282.344625]  [<ffffffff812e2201>] pci_device_probe+0xd1/0x130
[  282.344630]  [<ffffffff813bd617>] driver_probe_device+0x87/0x390
[  282.344633]  [<ffffffff813bd9f3>] __driver_attach+0x93/0xa0
[  282.344637]  [<ffffffff813bd960>] ? __device_attach+0x40/0x40
[  282.344640]  [<ffffffff813bb55b>] bus_for_each_dev+0x6b/0xb0
[  282.344643]  [<ffffffff813bd03e>] driver_attach+0x1e/0x20
[  282.344646]  [<ffffffff813bcc18>] bus_add_driver+0x188/0x260
[  282.344651]  [<ffffffffa0bec000>] ? 0xffffffffa0bebfff
[  282.344654]  [<ffffffff813be054>] driver_register+0x64/0xf0
[  282.344658]  [<ffffffffa0bec000>] ? 0xffffffffa0bebfff
[  282.344662]  [<ffffffff812e19c0>] __pci_register_driver+0x60/0x70
[  282.344666]  [<ffffffffa0bec01e>] dsl3510_init+0x1e/0x20 [dsl3510_fu]
[  282.344670]  [<ffffffff8100214a>] do_one_initcall+0xfa/0x1b0
[  282.344675]  [<ffffffff810ae32f>] ? up_read+0x1f/0x40
[  282.344680]  [<ffffffff8108c588>] ? __blocking_notifier_call_chain+0x58/0x70
[  282.344685]  [<ffffffff810e401a>] load_module+0x1d1a/0x2550
[  282.344689]  [<ffffffff810e0910>] ? store_uevent+0x40/0x40
[  282.344693]  [<ffffffff810e49e6>] SyS_finit_module+0x86/0xb0
[  282.344698]  [<ffffffff8155b7ad>] system_call_fastpath+0x1a/0x1f
[  282.344700] ---[ end trace 8e30fe0a3dc9a1f5 ]---
[  282.345076] dsl3510 0000:07:00.0: initializing Switch at 0x0 (depth: 0, up port: 5)
[  282.345094] dsl3510 0000:07:00.0: old switch config:
[  282.345097] dsl3510 0000:07:00.0:  Switch: 8086:1547 (Revision: 3, TB Version: 1)
[  282.345099] dsl3510 0000:07:00.0:   Max Port Number: 12
[  282.345100] dsl3510 0000:07:00.0:   Config:
[  282.345103] dsl3510 0000:07:00.0:    Upstream Port Number: 5 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 10ms
[  282.345105] dsl3510 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[  282.345344] dsl3510 0000:07:00.0:  Port 0: 8086:1547 (Revision: 3, TB Version: 1, Type: Port (0x1))
[  282.345362] dsl3510 0000:07:00.0:   Max hop id (in/out): 7/7
[  282.345364] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.345829] dsl3510 0000:07:00.0:  Port 1: 8086:1547 (Revision: 3, TB Version: 1, Type: Port (0x1))
[  282.345834] dsl3510 0000:07:00.0:   Max hop id (in/out): 15/15
[  282.345836] dsl3510 0000:07:00.0:   NFC Credits: 0x3c00000
[  282.346316] dsl3510 0000:07:00.0:  Port 2: 8086:1547 (Revision: 3, TB Version: 1, Type: Port (0x1))
[  282.346319] dsl3510 0000:07:00.0:   Max hop id (in/out): 15/15
[  282.346321] dsl3510 0000:07:00.0:   NFC Credits: 0x3c00000
[  282.346815] dsl3510 0000:07:00.0:  Port 3: 8086:1547 (Revision: 3, TB Version: 1, Type: Port (0x1))
[  282.346827] dsl3510 0000:07:00.0:   Max hop id (in/out): 15/15
[  282.346829] dsl3510 0000:07:00.0:   NFC Credits: 0x3c00000
[  282.347314] dsl3510 0000:07:00.0:  Port 4: 8086:1547 (Revision: 3, TB Version: 1, Type: Port (0x1))
[  282.347316] dsl3510 0000:07:00.0:   Max hop id (in/out): 15/15
[  282.347319] dsl3510 0000:07:00.0:   NFC Credits: 0x3c00000
[  282.347415] dsl3510 0000:07:00.0:  Port 5: 8086:1547 (Revision: 3, TB Version: 1, Type: NHI (0x2))
[  282.347427] dsl3510 0000:07:00.0:   Max hop id (in/out): 11/11
[  282.347429] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.347515] dsl3510 0000:07:00.0:  Port 6: 8086:1547 (Revision: 3, TB Version: 1, Type: PCIe (0x100101))
[  282.347517] dsl3510 0000:07:00.0:   Max hop id (in/out): 8/8
[  282.347519] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.347614] dsl3510 0000:07:00.0:  Port 7: 8086:1547 (Revision: 3, TB Version: 1, Type: PCIe (0x100101))
[  282.347616] dsl3510 0000:07:00.0:   Max hop id (in/out): 8/8
[  282.347618] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.348439] dsl3510 0000:07:00.0:  Port 8: 8086:1547 (Revision: 3, TB Version: 1, Type: PCIe (0x100101))
[  282.348443] dsl3510 0000:07:00.0:   Max hop id (in/out): 8/8
[  282.348446] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.348488] dsl3510 0000:07:00.0:  Port 9: 8086:1547 (Revision: 3, TB Version: 1, Type: PCIe (0x100101))
[  282.348491] dsl3510 0000:07:00.0:   Max hop id (in/out): 8/8
[  282.348493] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.348571] dsl3510 0000:07:00.0: resetting error on 0:b.
[  282.348576] dsl3510 0000:07:00.0:  Port 10: ffff:ffff (Revision: 3, TB Version: 1, Type: DP/HDMI (0xe0102))
[  282.348580] dsl3510 0000:07:00.0:   Max hop id (in/out): 9/9
[  282.348583] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.348666] dsl3510 0000:07:00.0: resetting error on 0:1.
[  282.348681] dsl3510 0000:07:00.0:  Port 11: 8086:1547 (Revision: 3, TB Version: 1, Type: DP/HDMI (0xe0101))
[  282.348684] dsl3510 0000:07:00.0:   Max hop id (in/out): 9/9
[  282.348686] dsl3510 0000:07:00.0:   NFC Credits: 0xf00000
[  282.348765] dsl3510 0000:07:00.0: resetting error on 0:c.
[  282.348781] dsl3510 0000:07:00.0:  Port 12: 8086:1547 (Revision: 3, TB Version: 1, Type: DP/HDMI (0xe0101))
[  282.348784] dsl3510 0000:07:00.0:   Max hop id (in/out): 9/9
[  282.348786] dsl3510 0000:07:00.0:   NFC Credits: 0xf00000
[  282.349569] dsl3510 0000:07:00.0: 0:1: is connected, link is up (state: 2)
[  282.349773] dsl3510 0000:07:00.0: initializing Switch at 0x1 (depth: 1, up port: 1)
[  282.349776] dsl3510 0000:07:00.0: old switch config:
[  282.349779] dsl3510 0000:07:00.0:  Switch: 8086:1549 (Revision: 0, TB Version: 1)
[  282.349781] dsl3510 0000:07:00.0:   Max Port Number: 2
[  282.349782] dsl3510 0000:07:00.0:   Config:
[  282.349785] dsl3510 0000:07:00.0:    Upstream Port Number: 0 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[  282.349787] dsl3510 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[  282.349968] dsl3510 0000:07:00.0:  Port 0: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[  282.349970] dsl3510 0000:07:00.0:   Max hop id (in/out): 7/7
[  282.349972] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.350467] dsl3510 0000:07:00.0:  Port 1: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[  282.350470] dsl3510 0000:07:00.0:   Max hop id (in/out): 8/8
[  282.350472] dsl3510 0000:07:00.0:   NFC Credits: 0x3c00000
[  282.350570] dsl3510 0000:07:00.0:  Port 2: 8086:1549 (Revision: 0, TB Version: 1, Type: PCIe (0x100102))
[  282.350572] dsl3510 0000:07:00.0:   Max hop id (in/out): 8/8
[  282.350574] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.351715] dsl3510 0000:07:00.0: 0:2: is unplugged (state: 7)
[  282.351774] dsl3510 0000:07:00.0: 0:3: is unplugged (state: 7)
[  282.351862] dsl3510 0000:07:00.0: 0:4: is unplugged (state: 7)
[  282.352462] dsl3510 0000:07:00.0: 0:6 <-> 1:2 (PCI): activating
[  282.352465] dsl3510 0000:07:00.0: activating path from 0:6 to 1:2
[  282.352468] dsl3510 0000:07:00.0: 1:1: Writing hop 1, index 8
[  282.352470] dsl3510 0000:07:00.0: 1:1:  Hop through port 2 to hop 8 (enabled)
[  282.352473] dsl3510 0000:07:00.0: 1:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[  282.352485] dsl3510 0000:07:00.0: 1:1:    Counter enabled: 0 Counter index: 2047
[  282.352487] dsl3510 0000:07:00.0: 1:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[  282.352489] dsl3510 0000:07:00.0: 1:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[  282.352560] dsl3510 0000:07:00.0: 0:6: Writing hop 0, index 8
[  282.352563] dsl3510 0000:07:00.0: 0:6:  Hop through port 1 to hop 8 (enabled)
[  282.352575] dsl3510 0000:07:00.0: 0:6:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[  282.352577] dsl3510 0000:07:00.0: 0:6:    Counter enabled: 0 Counter index: 2047
[  282.352579] dsl3510 0000:07:00.0: 0:6:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[  282.352581] dsl3510 0000:07:00.0: 0:6:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[  282.352659] dsl3510 0000:07:00.0: path activation complete
[  282.352662] dsl3510 0000:07:00.0: activating path from 1:2 to 0:6
[  282.352664] dsl3510 0000:07:00.0: 0:1: Writing hop 1, index 8
[  282.352676] dsl3510 0000:07:00.0: 0:1:  Hop through port 6 to hop 8 (enabled)
[  282.352678] dsl3510 0000:07:00.0: 0:1:   Weight: 1 Priority: 3 Credits: 16 Drop: 0
[  282.352680] dsl3510 0000:07:00.0: 0:1:    Counter enabled: 0 Counter index: 2047
[  282.352682] dsl3510 0000:07:00.0: 0:1:   Flow Control (In/Eg): 1/0 Shared Buffer (In/Eg): 0/0
[  282.352684] dsl3510 0000:07:00.0: 0:1:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[  282.352759] dsl3510 0000:07:00.0: 1:2: Writing hop 0, index 8
[  282.352762] dsl3510 0000:07:00.0: 1:2:  Hop through port 1 to hop 8 (enabled)
[  282.352764] dsl3510 0000:07:00.0: 1:2:   Weight: 1 Priority: 3 Credits: 7 Drop: 0
[  282.352776] dsl3510 0000:07:00.0: 1:2:    Counter enabled: 0 Counter index: 2047
[  282.352778] dsl3510 0000:07:00.0: 1:2:   Flow Control (In/Eg): 1/1 Shared Buffer (In/Eg): 0/0
[  282.352780] dsl3510 0000:07:00.0: 1:2:   Unknown1: 0x0 Unknown2: 0x0 Unknown3: 0x0
[  282.352858] dsl3510 0000:07:00.0: path activation complete
[  282.352886] pciehp 0000:06:03.0:pcie24: Card present on Slot(3-1)
[  282.353365] dsl3510 0000:07:00.0: 0:b: hotplug: scanning
[  282.353369] dsl3510 0000:07:00.0: 0:b: hotplug: no switch found
[  282.353375] dsl3510 0000:07:00.0: 0:1: hotplug: scanning
[  282.353412] dsl3510 0000:07:00.0: 0:1: is connected, link is up (state: 2)
[  282.353652] dsl3510 0000:07:00.0: initializing Switch at 0x1 (depth: 1, up port: 1)
[  282.353656] dsl3510 0000:07:00.0: old switch config:
[  282.353658] dsl3510 0000:07:00.0:  Switch: 8086:1549 (Revision: 0, TB Version: 1)
[  282.353660] dsl3510 0000:07:00.0:   Max Port Number: 2
[  282.353661] dsl3510 0000:07:00.0:   Config:
[  282.353664] dsl3510 0000:07:00.0:    Upstream Port Number: 1 Depth: 1 Route String: 0x1 Enabled: 1, PlugEventsDelay: 255ms
[  282.353666] dsl3510 0000:07:00.0:    unknown1: 0x0 unknown4: 0x0
[  282.353830] dsl3510 0000:07:00.0:  Port 0: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[  282.353832] dsl3510 0000:07:00.0:   Max hop id (in/out): 7/7
[  282.353834] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.354302] dsl3510 0000:07:00.0:  Port 1: 8086:1549 (Revision: 0, TB Version: 1, Type: Port (0x1))
[  282.354304] dsl3510 0000:07:00.0:   Max hop id (in/out): 8/8
[  282.354306] dsl3510 0000:07:00.0:   NFC Credits: 0x3c00000
[  282.354771] dsl3510 0000:07:00.0:  Port 2: 8086:1549 (Revision: 0, TB Version: 1, Type: PCIe (0x100102))
[  282.354774] dsl3510 0000:07:00.0:   Max hop id (in/out): 8/8
[  282.354775] dsl3510 0000:07:00.0:   NFC Credits: 0x700000
[  282.358149] dsl3510 0000:07:00.0: 1: hotplug: activating pcie devices
[  282.358448] dsl3510 0000:07:00.0: 1:2: PCIe port already activated, aborting
[  282.358454] dsl3510 0000:07:00.0: 0:c: hotplug: scanning
[  282.358456] dsl3510 0000:07:00.0: 0:c: hotplug: no switch found
[  282.467687] pci 0000:08:00.0: [8086:1549] type 01 class 0x060400
[  282.467748] pci 0000:08:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  282.467817] pci 0000:08:00.0: supports D1 D2
[  282.467818] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  282.467824] pci 0000:08:00.0: PME# disabled
[  282.474344] pci 0000:08:00.0: scanning [bus 00-00] behind bridge, pass 0
[  282.474347] pci 0000:08:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  282.474358] pci 0000:08:00.0: scanning [bus 00-00] behind bridge, pass 1
[  282.474459] pci_bus 0000:09: busn_res: [bus 09-0f] is updated under [bus 08-0f]
[  282.474462] pci_bus 0000:09: scanning bus
[  282.474489] pci 0000:09:00.0: [8086:1549] type 01 class 0x060400
[  282.474550] pci 0000:09:00.0: calling pci_fixup_transparent_bridge+0x0/0x30
[  282.474619] pci 0000:09:00.0: supports D1 D2
[  282.474620] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  282.474626] pci 0000:09:00.0: PME# disabled
[  282.474827] pci 0000:09:00.0: scanning [bus 00-00] behind bridge, pass 0
[  282.474828] pci 0000:09:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  282.474901] pci_bus 0000:09: fixups for bus
[  282.474903] pci 0000:08:00.0: PCI bridge to [bus 09-0f]
[  282.474913] pci 0000:08:00.0:   bridge window [io  0x0000-0x0fff]
[  282.474918] pci 0000:08:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  282.474927] pci 0000:08:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  282.474930] pci 0000:09:00.0: scanning [bus 00-00] behind bridge, pass 1
[  282.475016] pci_bus 0000:0a: busn_res: [bus 0a-0f] is updated under [bus 09-0f]
[  282.475019] pci_bus 0000:0a: scanning bus
[  282.475071] pci 0000:0a:00.0: [14e4:1682] type 00 class 0x020000
[  282.475111] pci 0000:0a:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit pref]
[  282.475141] pci 0000:0a:00.0: reg 0x18: [mem 0x00000000-0x0000ffff 64bit pref]
[  282.475189] pci 0000:0a:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[  282.475346] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold
[  282.475353] pci 0000:0a:00.0: PME# disabled
[  282.481408] pci_bus 0000:0a: fixups for bus
[  282.481411] pci 0000:09:00.0: PCI bridge to [bus 0a-0f]
[  282.481422] pci 0000:09:00.0:   bridge window [io  0x0000-0x0fff]
[  282.481427] pci 0000:09:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  282.481436] pci 0000:09:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  282.481438] pci_bus 0000:0a: bus scan returning with max=0a
[  282.481442] pci_bus 0000:0a: busn_res: [bus 0a-0f] end is updated to 0f
[  282.481446] pci_bus 0000:09: bus scan returning with max=0f
[  282.481449] pci_bus 0000:09: busn_res: [bus 09-0f] end is updated to 0f
[  282.481477] pci 0000:09:00.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 0a-0f] add_size 200000
[  282.481479] pci 0000:09:00.0: bridge window [mem 0x00100000-0x001fffff] to [bus 0a-0f] add_size 200000
[  282.481498] pci 0000:09:00.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  282.481499] pci 0000:08:00.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 09-0f] add_size 200000
[  282.481501] pci 0000:09:00.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  282.481502] pci 0000:08:00.0: bridge window [mem 0x00100000-0x001fffff] to [bus 09-0f] add_size 200000
[  282.481511] pcieport 0000:06:03.0: bridge window [io  0x1000-0x1fff] to [bus 08-0f] add_size 1000
[  282.481513] pcieport 0000:06:03.0: res[13]=[io  0x1000-0x1fff] get_res_add_size add_size 1000
[  282.481515] pcieport 0000:06:03.0: BAR 13: can't assign io (size 0x2000)
[  282.481517] pcieport 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
[  282.481520] pci 0000:08:00.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  282.481521] pci 0000:08:00.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  282.481523] pci 0000:08:00.0: BAR 14: assigned [mem 0xc1e00000-0xc20fffff]
[  282.481525] pci 0000:08:00.0: BAR 15: assigned [mem 0xce100000-0xce3fffff 64bit pref]
[  282.481526] pci 0000:08:00.0: BAR 13: can't assign io (size 0x1000)
[  282.481528] pci 0000:08:00.0: BAR 13: can't assign io (size 0x1000)
[  282.481530] pci 0000:09:00.0: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 200000
[  282.481532] pci 0000:09:00.0: res[15]=[mem 0x00100000-0x001fffff 64bit pref] get_res_add_size add_size 200000
[  282.481533] pci 0000:09:00.0: BAR 14: assigned [mem 0xc1e00000-0xc20fffff]
[  282.481535] pci 0000:09:00.0: BAR 15: assigned [mem 0xce100000-0xce3fffff 64bit pref]
[  282.481536] pci 0000:09:00.0: BAR 13: can't assign io (size 0x1000)
[  282.481538] pci 0000:09:00.0: BAR 13: can't assign io (size 0x1000)
[  282.481540] pci 0000:0a:00.0: BAR 0: assigned [mem 0xce100000-0xce10ffff 64bit pref]
[  282.481564] pci 0000:0a:00.0: BAR 0: set to [mem 0xce100000-0xce10ffff 64bit pref] (PCI address [0xce100000-0xce10ffff])
[  282.481565] pci 0000:0a:00.0: BAR 2: assigned [mem 0xce110000-0xce11ffff 64bit pref]
[  282.481588] pci 0000:0a:00.0: BAR 2: set to [mem 0xce110000-0xce11ffff 64bit pref] (PCI address [0xce110000-0xce11ffff])
[  282.481590] pci 0000:0a:00.0: BAR 6: assigned [mem 0xce120000-0xce12ffff pref]
[  282.481591] pci 0000:09:00.0: PCI bridge to [bus 0a-0f]
[  282.481599] pci 0000:09:00.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  282.481604] pci 0000:09:00.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  282.481613] pci 0000:08:00.0: PCI bridge to [bus 09-0f]
[  282.481620] pci 0000:08:00.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  282.481625] pci 0000:08:00.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  282.481633] pcieport 0000:06:03.0: PCI bridge to [bus 08-0f]
[  282.481637] pcieport 0000:06:03.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  282.481639] pcieport 0000:06:03.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  282.481643] PCI: No. 2 try to assign unassigned res
[  282.481675] pcieport 0000:06:03.0: bridge window [io  0x1000-0x1fff] to [bus 08-0f] add_size 1000
[  282.481676] pcieport 0000:06:03.0: res[13]=[io  0x1000-0x1fff] get_res_add_size add_size 1000
[  282.481677] pcieport 0000:06:03.0: BAR 13: can't assign io (size 0x2000)
[  282.481679] pcieport 0000:06:03.0: BAR 13: can't assign io (size 0x1000)
[  282.481680] pci 0000:08:00.0: BAR 13: can't assign io (size 0x1000)
[  282.481682] pci 0000:09:00.0: BAR 13: can't assign io (size 0x1000)
[  282.481683] pci 0000:09:00.0: PCI bridge to [bus 0a-0f]
[  282.481690] pci 0000:09:00.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  282.481696] pci 0000:09:00.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  282.481704] pci 0000:08:00.0: PCI bridge to [bus 09-0f]
[  282.481711] pci 0000:08:00.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  282.481716] pci 0000:08:00.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  282.481725] pcieport 0000:06:03.0: PCI bridge to [bus 08-0f]
[  282.481729] pcieport 0000:06:03.0:   bridge window [mem 0xc1e00000-0xc20fffff]
[  282.481731] pcieport 0000:06:03.0:   bridge window [mem 0xce100000-0xce3fffff 64bit pref]
[  282.481767] pci 0000:08:00.0: no hotplug settings from platform
[  282.481788] pci 0000:09:00.0: no hotplug settings from platform
[  282.481806] pci 0000:0a:00.0: no hotplug settings from platform
[  282.481855] pcieport 0000:08:00.0: enabling device (0000 -> 0002)
[  282.481935] pcieport 0000:08:00.0: enabling bus mastering
[  282.481965] pcieport 0000:08:00.0: irq 56 for MSI/MSI-X
[  282.482109] pcieport 0000:09:00.0: enabling device (0000 -> 0002)
[  282.482175] pcieport 0000:09:00.0: enabling bus mastering
[  282.482201] pcieport 0000:09:00.0: irq 57 for MSI/MSI-X
[  282.482641] pciehp 0000:09:00.0:pcie24: HPC vendor_id 8086 device_id 1549 ss_vid 0 ss_did 0
[  282.482678] pci_bus 0000:0a: dev 00, created physical slot 9
[  282.482734] pciehp 0000:09:00.0:pcie24: service driver pciehp loaded

[-- Attachment #3: lspci_vv_busn_patch --]
[-- Type: application/octet-stream, Size: 76167 bytes --]

00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
	Subsystem: Apple Inc. Device 00f7
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: [e0] Vendor Specific Information: Len=0c <?>

00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 00002000-00002fff
	Memory behind bridge: c0000000-c10fffff
	Prefetchable memory behind bridge: 0000000090000000-00000000a1ffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [88] Subsystem: Apple Inc. Device 00f7
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: feeff00c  Data: 4171
	Capabilities: [a0] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #2, Speed 8GT/s, Width x8, ASPM L0s L1, Latency L0 <256ns, L1 <8us
			ClockPM- Surprise- LLActRep- BwNot+
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x8, TrErr- Train+ SlotClk+ DLActive- BWMgmt+ ABWMgmt+
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #1, PowerLimit 75.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+, EqualizationPhase1+
			 EqualizationPhase2+, EqualizationPhase3+, LinkEqualizationRequest-
	Capabilities: [100 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [140 v1] Root Complex Link
		Desc:	PortNumber=02 ComponentID=01 EltType=Config
		Link0:	Desc:	TargetPort=00 TargetComponent=01 AssocRCRB- LinkType=MemMapped LinkValid+
			Addr:	00000000fed19000
	Capabilities: [d94 v1] #19
	Kernel driver in use: pcieport

00:01.1 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=05, subordinate=9b, sec-latency=0
	I/O behind bridge: 00004000-00006fff
	Memory behind bridge: c1d00000-cdffffff
	Prefetchable memory behind bridge: 00000000ce000000-00000000d9ffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [88] Subsystem: Apple Inc. Device 00f7
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: feeff00c  Data: 4181
	Capabilities: [a0] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #3, Speed 5GT/s, Width x4, ASPM L0s L1, Latency L0 <256ns, L1 <8us
			ClockPM- Surprise- LLActRep- BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #2, PowerLimit 75.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [140 v1] Root Complex Link
		Desc:	PortNumber=03 ComponentID=01 EltType=Config
		Link0:	Desc:	TargetPort=00 TargetComponent=01 AssocRCRB- LinkType=MemMapped LinkValid+
			Addr:	00000000fed19000
	Capabilities: [d94 v1] #19
	Kernel driver in use: pcieport

00:01.2 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	Memory behind bridge: c1b00000-c1bfffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [88] Subsystem: Apple Inc. Device 00f7
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: feeff00c  Data: 4191
	Capabilities: [a0] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #4, Speed 8GT/s, Width x4, ASPM L0s L1, Latency L0 <1us, L1 <8us
			ClockPM- Surprise- LLActRep- BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled+ Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #3, PowerLimit 75.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending+ InProgress-
	Capabilities: [140 v1] Root Complex Link
		Desc:	PortNumber=04 ComponentID=01 EltType=Config
		Link0:	Desc:	TargetPort=00 TargetComponent=01 AssocRCRB- LinkType=MemMapped LinkValid+
			Addr:	00000000fed19000
	Capabilities: [d94 v1] #19
	Kernel driver in use: pcieport

00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09) (prog-if 00 [VGA controller])
	Subsystem: Apple Inc. Device 00f7
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 49
	Region 0: Memory at c1400000 (64-bit, non-prefetchable) [size=4M]
	Region 2: Memory at b0000000 (64-bit, prefetchable) [size=256M]
	Region 4: I/O ports at 3000 [size=64]
	Expansion ROM at <unassigned> [disabled]
	Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: feeff00c  Data: 4172
	Capabilities: [d0] Power Management version 2
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [a4] PCI Advanced Features
		AFCap: TP+ FLR+
		AFCtrl: FLR-
		AFStatus: TP-
	Kernel driver in use: i915
	Kernel modules: i915

00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04) (prog-if 30 [XHCI])
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 51
	Region 0: Memory at c1c00000 (64-bit, non-prefetchable) [size=64K]
	Capabilities: [70] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [80] MSI: Enable+ Count=1/8 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 4192
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_hcd

00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 53
	Region 0: Memory at c1c17100 (64-bit, non-prefetchable) [size=16]
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [8c] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 41b2
	Kernel driver in use: mei_me
	Kernel modules: mei_me

00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04) (prog-if 20 [EHCI])
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 23
	Region 0: Memory at c1c16c00 (32-bit, non-prefetchable) [size=1K]
	Capabilities: [50] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Debug port: BAR=1 offset=00a0
	Capabilities: [98] PCI Advanced Features
		AFCap: TP+ FLR+
		AFCtrl: FLR-
		AFStatus: TP-
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci

00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin A routed to IRQ 54
	Region 0: Memory at c1c10000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [50] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 41c2
	Capabilities: [70] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset+
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Capabilities: [100 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=01
			Status:	NegoPending- InProgress-
		VC1:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=1 ArbSelect=Fixed TC/VC=22
			Status:	NegoPending- InProgress-
	Capabilities: [130 v1] Root Complex Link
		Desc:	PortNumber=0f ComponentID=00 EltType=Config
		Link0:	Desc:	TargetPort=00 TargetComponent=00 AssocRCRB- LinkType=MemMapped LinkValid+
			Addr:	00000000fed1c000
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	Memory behind bridge: c1a00000-c1afffff
	Prefetchable memory behind bridge: 00000000c1800000-00000000c18fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported+
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #1, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <16us
			ClockPM- Surprise- LLActRep+ BwNot-
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 10.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BC, TimeoutDis+, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 260ms to 900ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
		Address: 00000000  Data: 0000
	Capabilities: [90] Subsystem: Intel Corporation Device 7270
	Capabilities: [a0] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Kernel driver in use: pcieport

00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	Memory behind bridge: c1900000-c19fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported+
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #2, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <16us
			ClockPM- Surprise- LLActRep+ BwNot-
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 10.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BC, TimeoutDis+, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 260ms to 900ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
		Address: 00000000  Data: 0000
	Capabilities: [90] Subsystem: Intel Corporation Device 7270
	Capabilities: [a0] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Kernel driver in use: pcieport

00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04) (prog-if 20 [EHCI])
	Subsystem: Intel Corporation Device 7270
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 22
	Region 0: Memory at c1c16800 (32-bit, non-prefetchable) [size=1K]
	Capabilities: [50] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Debug port: BAR=1 offset=00a0
	Capabilities: [98] PCI Advanced Features
		AFCap: TP+ FLR+
		AFCtrl: FLR-
		AFStatus: TP-
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci

00:1f.0 ISA bridge: Intel Corporation HM77 Express Chipset LPC Controller (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: [e0] Vendor Specific Information: Len=0c <?>
	Kernel driver in use: lpc_ich
	Kernel modules: lpc_ich

00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04) (prog-if 01 [AHCI 1.0])
	Subsystem: Intel Corporation Device 7270
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin B routed to IRQ 52
	Region 0: I/O ports at 3098 [size=8]
	Region 1: I/O ports at 30bc [size=4]
	Region 2: I/O ports at 3090 [size=8]
	Region 3: I/O ports at 30b8 [size=4]
	Region 4: I/O ports at 3060 [size=32]
	Region 5: Memory at c1c16000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
		Address: feeff00c  Data: 41a2
	Capabilities: [70] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000004
	Capabilities: [b0] PCI Advanced Features
		AFCap: TP+ FLR+
		AFCtrl: FLR-
		AFStatus: TP-
	Kernel driver in use: ahci
	Kernel modules: ahci

00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
	Subsystem: Intel Corporation Device 7270
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin C routed to IRQ 18
	Region 0: Memory at c1c17000 (64-bit, non-prefetchable) [size=256]
	Region 4: I/O ports at efa0 [size=32]
	Kernel modules: i2c_i801

01:00.0 VGA compatible controller: NVIDIA Corporation GK107M [GeForce GT 650M Mac Edition] (rev a1) (prog-if 00 [VGA controller])
	Subsystem: Apple Inc. Device 00f2
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin A routed to IRQ 50
	Region 0: Memory at c0000000 (32-bit, non-prefetchable) [size=16M]
	Region 1: Memory at 90000000 (64-bit, prefetchable) [size=256M]
	Region 3: Memory at a0000000 (64-bit, prefetchable) [size=32M]
	Region 5: I/O ports at 2000 [size=128]
	Expansion ROM at c1000000 [disabled] [size=512K]
	Capabilities: [60] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [68] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 4182
	Capabilities: [78] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Latency L0 <512ns, L1 <4us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range AB, TimeoutDis+, LTR-, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+, EqualizationPhase1+
			 EqualizationPhase2+, EqualizationPhase3+, LinkEqualizationRequest+
	Capabilities: [b4] Vendor Specific Information: Len=14 <?>
	Capabilities: [100 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [128 v1] Power Budgeting <?>
	Capabilities: [420 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
	Capabilities: [900 v1] #19
	Kernel driver in use: nouveau
	Kernel modules: nouveau

01:00.1 Audio device: NVIDIA Corporation GK107 HDMI Audio Controller (rev a1)
	Subsystem: Apple Inc. Device 00f2
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at c1080000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [60] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [78] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Latency L0 <512ns, L1 <4us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range AB, TimeoutDis+, LTR-, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+, EqualizationPhase1+
			 EqualizationPhase2+, EqualizationPhase3+, LinkEqualizationRequest+
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

03:00.0 Ethernet controller: Broadcom Corporation Device 16a3 (rev 10)
	Subsystem: Broadcom Corporation Device 16b4
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 0
	Region 0: Memory at c1800000 (64-bit, prefetchable) [disabled] [size=64K]
	Region 2: Memory at c1810000 (64-bit, prefetchable) [disabled] [size=64K]
	Expansion ROM at c1830000 [disabled] [size=2K]
	Capabilities: [48] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D3 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [a0] MSI-X: Enable- Count=6 Masked-
		Vector table: BAR=2 offset=00000000
		PBA: BAR=2 offset=00000120
	Capabilities: [ac] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr+ NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <2us, L1 <64us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+, LTR-, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [13c v1] Device Serial Number 00-00-00-10-18-00-00-00
	Capabilities: [150 v1] Power Budgeting <?>
	Capabilities: [160 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-

03:00.1 SD Host controller: Broadcom Corporation NetXtreme BCM57765 Memory Card Reader (rev 10) (prog-if 01)
	Subsystem: Broadcom Corporation Device 96bc
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at c1820000 (64-bit, prefetchable) [size=64K]
	Capabilities: [48] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [58] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [ac] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr+ NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <1us, L1 <2us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+, LTR-, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [150 v1] Power Budgeting <?>
	Capabilities: [160 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Kernel driver in use: sdhci-pci
	Kernel modules: sdhci_pci

04:00.0 Network controller: Broadcom Corporation BCM4331 802.11a/b/g/n (rev 02)
	Subsystem: Apple Inc. AirPort Extreme
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 256 bytes
	Interrupt: pin A routed to IRQ 17
	Region 0: Memory at c1900000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=2 PME-
	Capabilities: [58] Vendor Specific Information: Len=78 <?>
	Capabilities: [48] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [d0] Express (v1) Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <4us, L1 <64us
			ClockPM+ Surprise- LLActRep+ BwNot-
		LnkCtl:	ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 14, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [13c v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [160 v1] Device Serial Number ef-db-e9-ff-ff-13-28-cf
	Capabilities: [16c v1] Power Budgeting <?>
	Kernel driver in use: wl
	Kernel modules: wl

05:00.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=05, secondary=06, subordinate=27, sec-latency=0
	Memory behind bridge: c1d00000-c29fffff
	Prefetchable memory behind bridge: 00000000ce000000-00000000cecfffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 41d2
	Capabilities: [ac] Subsystem: Device 2222:1111
	Capabilities: [c0] Express (v2) Upstream Port, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-SlotPowerLimit 75.000W
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

06:00.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=06, secondary=07, subordinate=07, sec-latency=0
	Memory behind bridge: c1d00000-c1dfffff
	Prefetchable memory behind bridge: 00000000ce000000-00000000ce0fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 41e2
	Capabilities: [ac] Subsystem: Device 2222:1111
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep- BwNot+
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState+
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

06:03.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 2
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=06, secondary=08, subordinate=0f, sec-latency=0
	Memory behind bridge: c1e00000-c20fffff
	Prefetchable memory behind bridge: 00000000ce100000-00000000ce3fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 4123
	Capabilities: [ac] Subsystem: Device 2222:1111
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #3, Speed 2.5GT/s, Width x4, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #3, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt+ HPIrq+ LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

06:04.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 3
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=06, secondary=10, subordinate=17, sec-latency=0
	Memory behind bridge: c2100000-c23fffff
	Prefetchable memory behind bridge: 00000000ce400000-00000000ce6fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 4143
	Capabilities: [ac] Subsystem: Device 2222:1111
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #4, Speed 2.5GT/s, Width x4, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #4, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt+ HPIrq+ LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending+ InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

06:05.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 4
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=06, secondary=18, subordinate=1f, sec-latency=0
	Memory behind bridge: c2400000-c26fffff
	Prefetchable memory behind bridge: 00000000ce700000-00000000ce9fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 4153
	Capabilities: [ac] Subsystem: Device 2222:1111
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #5, Speed 2.5GT/s, Width x4, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #5, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt+ HPIrq+ LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending+ InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

06:06.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03) (prog-if 00 [Normal decode])
	Physical Slot: 5
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=06, secondary=20, subordinate=27, sec-latency=0
	Memory behind bridge: c2700000-c29fffff
	Prefetchable memory behind bridge: 00000000cea00000-00000000cecfffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 4163
	Capabilities: [ac] Subsystem: Device 2222:1111
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #6, Speed 2.5GT/s, Width x4, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #6, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt+ HPIrq+ LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
			Changed: MRL- PresDet- LinkState-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending+ InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

07:00.0 System peripheral: Intel Corporation DSL3510 Thunderbolt Port [Cactus Ridge] (rev 03)
	Subsystem: Device 2222:1111
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 55
	Region 0: Memory at c1d00000 (32-bit, non-prefetchable) [size=256K]
	Region 1: Memory at c1d40000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 4173
	Capabilities: [ac] Subsystem: Device 2222:1111
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range B, TimeoutDis+, LTR-, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [a0] MSI-X: Enable- Count=16 Masked-
		Vector table: BAR=1 offset=00000000
		PBA: BAR=1 offset=00000fa0
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: dsl3510

08:00.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Controller [Cactus Ridge] (prog-if 00 [Normal decode])
	Physical Slot: 3-1
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=08, secondary=09, subordinate=0f, sec-latency=0
	Memory behind bridge: c1e00000-c20fffff
	Prefetchable memory behind bridge: 00000000ce100000-00000000ce3fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 4183
	Capabilities: [c0] Express (v2) Upstream Port, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-SlotPowerLimit 0.000W
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

09:00.0 PCI bridge: Intel Corporation DSL3510 Thunderbolt Controller [Cactus Ridge] (prog-if 00 [Normal decode])
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=09, secondary=0a, subordinate=0f, sec-latency=0
	Memory behind bridge: c1e00000-c20fffff
	Prefetchable memory behind bridge: 00000000ce100000-00000000ce3fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [88] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000feeff00c  Data: 4193
	Capabilities: [c0] Express (v2) Downstream Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
			ClockPM- Surprise- LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
			Slot #9, PowerLimit 0.000W; Interlock- NoCompl-
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt+ HPIrq+ LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Device Serial Number 01-00-00-00-00-c9-a0-00
	Capabilities: [200 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [300 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [400 v1] Power Budgeting <?>
	Capabilities: [500 v1] Vendor Specific Information: ID=1234 Rev=1 Len=01c <?>
	Kernel driver in use: pcieport

0a:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM57762 Gigabit Ethernet PCIe
	Subsystem: Apple Inc. Device 00f6
	Physical Slot: 9
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 0
	Region 0: Memory at ce100000 (64-bit, prefetchable) [disabled] [size=64K]
	Region 2: Memory at ce110000 (64-bit, prefetchable) [disabled] [size=64K]
	[virtual] Expansion ROM at ce120000 [disabled] [size=64K]
	Capabilities: [48] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [50] Vital Product Data
		Product Name: Thunderbolt Ethernet
		Read-only fields:
			[PN] Part number: BCM957762
			[EC] Engineering changes: 106679-15
			[SN] Serial number: 0123456789
			[MN] Manufacture ID: 31 34 65 34
			[RV] Reserved: checksum good, 53 byte(s) reserved
		Read/write fields:
			[YA] Asset tag: XYZ01234567
			[RW] Read-write area: 107 byte(s) free
		End
	Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [a0] MSI-X: Enable- Count=6 Masked-
		Vector table: BAR=2 offset=00000000
		PBA: BAR=2 offset=00000120
	Capabilities: [ac] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr+ NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <2us, L1 <64us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+, LTR+, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [13c v1] Device Serial Number 00-00-40-6c-8f-43-4c-fd
	Capabilities: [150 v1] Power Budgeting <?>
	Capabilities: [160 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [1b0 v1] Latency Tolerance Reporting
		Max snoop latency: 0ns
		Max no snoop latency: 0ns
	Kernel modules: tg3


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: How to reserve pci bus numbers for hotplug?
  2013-12-14 22:15   ` Andreas Noever
@ 2013-12-20  0:55     ` Greg KH
  0 siblings, 0 replies; 11+ messages in thread
From: Greg KH @ 2013-12-20  0:55 UTC (permalink / raw)
  To: Andreas Noever; +Cc: linux-pci, linux-kernel

On Sat, Dec 14, 2013 at 11:15:39PM +0100, Andreas Noever wrote:
> On Sat, Dec 14, 2013 at 11:01 PM, Greg KH <gregkh@linuxfoundation.org> wrote:
> > On Thu, Dec 12, 2013 at 12:37:50AM +0100, Andreas Noever wrote:
> >>
> >> If I could get Linux to assign enough resources (bus numbers for now)
> >> then I could drop the acpi_osi parameter and make thunderbolt work
> >> after suspend... So, is there an easy way to fix this? (Quirks,
> >> reconfiguring bus number assignments from a platform driver, ...?)
> >
> > I think you are going to have to do a lot more here, what is needed is a
> > whole connection manager for Thunderbolt, emulating what the BIOS does,
> > in order to get all of this working properly.
> >
> > But don't let that stop you from trying, however the work involved is
> > really not trivial at all.
> >
> > good luck,
> >
> > greg k-h
> 
> Actually the thunderbolt part is already working (for non chaining
> devices, see https://lkml.org/lkml/2013/11/28/492 if you are
> interested). I can completely bootstrap the tb side of things. The
> only problem is that if power has been cut by the firmware (during
> boot without osi_acpi=Darwin or after a suspend/resume cycle) then
> Linux does not allocate enough PCI resources...

Ah, that's nice to know, I didn't realize that.

There should be some Intel people around on the list that has access to
a Thunderbolt monitor for testing.  Or, if needed, I can see if I can
expense one, as it would be good to get this working :)

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2013-12-20  0:55 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-11 23:37 How to reserve pci bus numbers for hotplug? Andreas Noever
2013-12-12  0:21 ` Yinghai Lu
2013-12-12 19:56   ` Andreas Noever
2013-12-13  6:04     ` Yinghai Lu
2013-12-13 17:09     ` Bjorn Helgaas
2013-12-14 20:50       ` Andreas Noever
2013-12-15  4:10     ` Yinghai Lu
2013-12-16 20:52       ` Andreas Noever
2013-12-14 22:01 ` Greg KH
2013-12-14 22:15   ` Andreas Noever
2013-12-20  0:55     ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.