Skip to content

Instantly share code, notes, and snippets.

@orangecms
Last active March 21, 2024 14:33
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orangecms/b6a8f036a30b7ac3b42c30c35fa295b4 to your computer and use it in GitHub Desktop.
Save orangecms/b6a8f036a30b7ac3b42c30c35fa295b4 to your computer and use it in GitHub Desktop.
Porting guide for coreboot: GIGABYTE P34G v2 / Schenker XMG C404

Porting coreboot to a Haswell / Lynx Point laptop: GIGABYTE P34G v2

This mainboard was sold by Schenker XMG as C404, while the original model name by GIGABYTE is P34G v2.

The board schematics are not publicly available. However, from another laptop board's schematics, we can learn a bit about the components it should have: laptop mainboard schematics

autoport

With a few patches, we can generate logs and a starting point for the port. Boot a Linux kernel with iomem=relaxed to get all the information. Otherwise, some of the tools involved will not be able to access the memory they need to read.

patch coreboot repo for LynxPoint support in autoport

https://review.coreboot.org/c/coreboot/+/30890 git fetch https://review.coreboot.org/coreboot refs/changes/90/30890/2 && git cherry-pick FETCH_HEAD

https://review.coreboot.org/c/coreboot/+/31759 git fetch https://review.coreboot.org/coreboot refs/changes/59/31759/2 && git cherry-pick FETCH_HEAD

Build autoport

See util/autoport/readme.md for details on the build and install process.

Get logs

autoport --make-logs

Generate sources

autoport

  • devicetree.cb
  • gpio.c
  • hda_verb.c
  • mainboard.c

coreboot util

inteltool

  • registers/configs
  • GPIOs

intelmetool

  • check for Bootguard

ectool

  • EC memory dump

superiotool

  • recognize Super I/O chip and get addresses for commands (often 4e) and data (4f)

cbmem

  • read coreboot logs

Linux util

acpidump

dmidecode

lspci

fix SPD addresses in romstage.c

see https://hannuhartikainen.fi/blog/hacking-ddr3-spd/ -> use i2c-tools

🐢  modprobe i2c-dev
🐢  modprobe eeprom
🐢  decode-dimms | grep Decoding
Decoding EEPROM: /sys/bus/i2c/drivers/eeprom/7-0050
Decoding EEPROM: /sys/bus/i2c/drivers/eeprom/7-0052
 🐢  ls -l /sys/bus/i2c/drivers/eeprom/
total 0
lrwxrwxrwx 1 root root    0 Apr  4 01:46 6-0050 -> ../../../../devices/pci0000:00/0000:00:02.0/drm/card0/card0-eDP-1/i2c-6/6-0050/
lrwxrwxrwx 1 root root    0 Apr  4 01:46 7-0050 -> ../../../../devices/pci0000:00/0000:00:1f.3/i2c-7/7-0050/
lrwxrwxrwx 1 root root    0 Apr  4 01:46 7-0052 -> ../../../../devices/pci0000:00/0000:00:1f.3/i2c-7/7-0052/
--w------- 1 root root 4096 Apr  4 01:47 bind
lrwxrwxrwx 1 root root    0 Apr  4 01:47 module -> ../../../../module/eeprom/
--w------- 1 root root 4096 Apr  4 01:46 uevent
--w------- 1 root root 4096 Apr  4 01:47 unbind
dan@orangexmg /etc/pacman.d ‹node v11.10.1›

look for SMBus

🐢  i2cdetect -l
i2c-3   unknown         i915 gmbus dpc                          N/A
i2c-1   unknown         i915 gmbus vga                          N/A
i2c-6   unknown         DPDDC-A                                 N/A
i2c-4   unknown         i915 gmbus dpb                          N/A
i2c-2   unknown         i915 gmbus panel                        N/A
i2c-0   unknown         i915 gmbus ssc                          N/A
i2c-7   unknown         SMBus I801 adapter at f040              N/A
i2c-5   unknown         i915 gmbus dpd                          N/A
🐢  i2cdetect -r 7
WARNING! This program can confuse your I2C bus, cause data loss and worse!
I will probe file /dev/i2c-7 using receive byte commands.
I will probe address range 0x03-0x77.
Continue? [Y/n]
     0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
00:          -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: 30 -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- 44 -- -- -- -- -- -- -- -- -- -- --
50: UU -- UU -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --

RAM init

Obtain mrc.bin, which is needed for Haswell https://doc.coreboot.org/northbridge/intel/haswell/mrc.bin.html

TL;DR:

make -C util/cbfstool
cd util/chromeos
./crosfirmware.sh peppy
../cbfstool/cbfstool coreboot-*.bin extract -f mrc.bin -n mrc.bin -r RO_SECTION

menuconfig:

Chipset ->
  Add a System Agent Binary
  (mrc.bin) Intel System Agent path and filename

VBT and VGA Option ROM

Both binaries can be found in the CSMCORE file in the EFI firmware filesystem. The VBT should preferably extracted from a running system though because the firmware could have modified / fixed the VBT at runtime.

fetch VBT on Linux

From a running Linux system on the machine, the VBT can be obtained from the sys filesystem at /sys/kernel/debug/dri/0/i915_vbt.

extract CSMCORE

UEFITool:

  • search for string VBT, disable Unicode (!)
  • double-click on search result in bottom pane
  • right-click on the now highlighted Raw section in the top pane
  • Extract body...

VBT from CSMCORE

The VBT (Video BIOS Table) holds information related to the specific board and platform and is specific to Intel. See also here.

find VBT position

r2, xxd:

  • search for $VBT and note down the address
  • find the end and note down the address
  • calculate the length

Example excerpt:

0003e100  00 00 00 00 00 00 00 00  24 56 42 54 20 48 41 53  |........$VBT HAS|
0003e110  57 45 4c 4c 20 20 20 20  20 20 20 20 64 00 30 00  |WELL        d.0.|
0003e120  2f 11 1a 00 30 00 00 00  00 00 00 00 00 00 00 00  |/...0...........|
0003e130  00 00 00 00 00 00 00 00  42 49 4f 53 5f 44 41 54  |........BIOS_DAT|
0003e140  41 5f 42 4c 4f 43 4b 20  b0 00 16 00 ff 10 fe ea  |A_BLOCK ........|
0003e150  00 00 64 01 01 16 0c 32  31 37 38 49 6e 74 65 6c  |..d....2178Intel|

The first byte, the $ character, is at position 0003e108 (254216).

The end is marked by the last 88 88 88 88 88 88 88 00 byte sequence. In this example, it is at position 0003f238 (258616).

0003f210  88 88 88 88 88 88 00 88  88 88 88 88 88 88 88 88  |................|
0003f220  88 00 88 88 88 88 88 88  88 88 88 88 00 88 88 88  |................|
0003f230  88 88 88 88 88 88 88 00  00 a0 05 00 c0 d4 01 00  |................|
0003f240  f0 8e 35 00 c0 0e 22 00  76 4f 05 03 08 02 c0 d4  |..5...".vO......|
0003f250  01 00 f0 8e 35 00 30 26  22 00 7f 4f 05 03 06 02  |....5.0&"..O....|

The length is the difference of the positions, i.e., 258616-254216=4400 bytes.

extract the region:

dd if=Section_Raw_CSMCORE_CSMCORE_body.raw of=data.vbt skip=254216 count=4400 bs=1

verify binary

intelvbttool -f data.vbt -d

Intel GPU tools

Package: igt-gpu-tools aka intel-gpu-tools in Arch Linux

intel_vbt_decode data.vbt

get backlight info for libgfxinit

Option ROM

find Option ROM position

r2, xxd:

  • search for "VGA Compatible BIOS"
  • go back a few bytes where you find a sequence starting with U
  • note down the address of the U character

Example excerpt:

0003d620  86 80 16 04 00 00 01 00  55 aa 80 e9 d0 e4 30 30  |........U.....00|
0003d630  30 30 30 30 30 30 30 30  30 30 be 29 e9 cd 28 c0  |0000000000.)..(.|
0003d640  40 00 e0 0a 30 30 49 42  4d 20 56 47 41 20 43 6f  |@...00IBM VGA Co|
0003d650  6d 70 61 74 69 62 6c 65  20 42 49 4f 53 2e 20 03  |mpatible BIOS. .|
0003d660  98 00 a8 00 b6 00 8b c0  50 43 49 52 86 80 06 04  |........PCIR....|
0003d670  1c 00 1c 00 03 00 00 03  80 00 00 00 00 80 80 00  |................|

The U is at position 0003d628 (251432).

The Intel Option ROM size is 64KB (65536 bytes). Extract the region (like VBT): dd if=Section_Raw_CSMCORE_CSMCORE_body.raw of=optionrom.bin skip=251432 count=65536 bs=1

verify binary

First install the FCODE suite, which includes the romheaders CLI tool. Then check the extracted binary: romheaders optionrom.bin

Example output:

Image 1:
PCI Expansion ROM Header:
  Signature: 0x55aa (Ok)
  CPU unique data: 0x80 0xe9 0xd0 0xe4 0x30 0x30 0x30 0x30
                   0x30 0x30 0x30 0x30 0x30 0x30 0x30 0x30
  Pointer to PCI Data Structure: 0x0040

PCI Data Structure:
  Signature: 0x50434952 'PCIR' (Ok)
  Vendor ID: 0x8086
  Device ID: 0x0406
  Vital Product Data:  0x001c
  PCI Data Structure Length: 0x001c (28 bytes)
  PCI Data Structure Revision: 0x03
  Class Code: 0x030000 (VGA Display controller)
  Image Length: 0x0080 blocks (65536 bytes)
  Revision Level of Code/Data: 0x0000
  Code Type: 0x00 (Intel x86)
  Last-Image Flag: 0x80 (last image in rom)
  Reserved: 0x8000

Platform specific data for x86 compliant option rom:
  Initialization Size: 0x80 (65536 bytes)
  Entry point for INIT function: 0xe4d6

debug output

Activate flash debug output:

menuconfig:

Console ->
  SPI Flash console output

CBFS generates fmap where logs are stored

Read logs:

  1. read the ROM back
  2. ./build/cbfstool out.rom read -r CONSOLE -f debug.log

logs

coreboot-4.9-1225-g8f54cb2bd3 Thu Apr  4 18:12:07 UTC 2019 romstage starting (log level: 7)...
Disabling Watchdog reboot... done.
SMBus controller enabled.
Setting up static northbridge registers... done.
Started PEG10 link training.
Temporarily hiding PEG10.
Initializing IGD...
Back from haswell_early_initialization()
CPU id(306c3) ucode:00000000 Intel(R) Core(TM) i7-4710HQ CPU @ 2.50GHz
AES supported, TXT NOT supported, VT supported
PCH type: HM87, device id: 8c4b, rev id 5
Starting UEFI PEI System Agent
FMAP: area RW_MRC_CACHE found @ 720000 (65536 bytes)
MRC: no data in 'RW_MRC_CACHE'
FMAP: area COREBOOT found @ 730200 (851456 bytes)
CBFS: Locating 'mrc.bin'
CBFS: Found @ offset 6fdc0 size 2e6e4
System Agent: Starting up...
System Agent: Initializing PCH
install_ppi: overwrite GUID {ed097352-9041-445a-80b6-b29d509e8845}
install_ppi: overwrite GUID {908c7f8b-5c48-47fb-8357-f5fd4e235276}
System Agent: Initializing PCH (SMBUS)
System Agent: Initializing PCH (USB)
System Agent: Initializing PCH (SA Init)
System Agent: Initializing PCH (Me UMA)
System Agent: Initializing Memory
System Agent: Done.
Sanity checking heap.

Get ucode updates manually

CPU ID from logs (above): 0x306c3

   ./iucode_tool -L intel-ucode/ | grep -B1 306c3
   microcode bundle 73: intel-ucode/06-3c-03
     073/001: sig 0x000306c3, pf_mask 0x32, 2018-04-02, rev 0x0025, size 23552

binary should be same as 3rdparty/blobs/cpu/intel/model_306cx/microcode.bin

or:

extract from UEFI image

menuconfig:

Chipset ->
  Include CPU microcode in CBFS ->
    Include external microcode binary
(3rdparty/blobs/cpu/intel/model_306cx/microcode.bin) Microcode binary path and filename

Super I/O / EC

Confusion

According to superiotool, the Super I/O chip would be an SMSC SCH5317 (see superiotool.log). According to the Linux kernel sources (Documentation/hwmon/smsc47b397), the chip is compatible with the SMSC LPC47B397-NC:

Supported chips:
  * SMSC LPC47B397-NC
  * SMSC SCH5307-NS
  * SMSC SCH5317

coreboot already has a module for the chip, so try including it in devicetree.cb.

However, superiotool sometimes confuses SMSC chips with ITE chips.

Back to reality

There is an ITE IT8587E on the mainboard, located below the SSD on the other side.

Further investigation with UEFITool shows a non-empty padding at 700000h (0x0700000), which in hex view reveals the string "ITE EC-14.4" - bingo! The region is 128KB in size, which is reasonable for the size of an EC's RAM. :)

For preparation, create the IFD layout file:

ifdtool -f layout.txt original.rom

The file layout.txt will look like this:

00000000:00000fff fd
00400000:007fffff bios
00001000:003fffff me

Extract the region, save it for later, and update the IFD layout file:

00000000:00000fff fd
00400000:007fffff bios
00001000:003fffff me
00700000:0071ffff ec

KBC debug pins

Gigabyte P34G V2 KB_pins=30 PD0=26 PD1=25 PD2=24 PD3=23 PD4=22 PD5=21 PD6=20 PD7=19 BUSY=17 STB=9 AFD=8 INIT=7 SLIN=6 KSI4=5 KSI5=4

ACPI

acpixtract

Known issues

Although I got the device to boot eventually, even with libgfxinit, it was always overheating. I came to the idea that it might be due to the MRC agent actually setting the clock speed and wrongly doing so. I have another Haswell laptop (not a gaming device, just an office one) now and will compare results.

coreboot-4.9-1232-g380fe4c8e3 Fri Apr 26 07:40:32 UTC 2019 romstage starting (log level: 8)...
Disabling Watchdog reboot... done.
SMBus controller enabled.
Setting up static northbridge registers... done.
Started PEG10 link training.
Temporarily hiding PEG10.
Initializing IGD...
Back from haswell_early_initialization()
CPU id(306c3) ucode:00000017 Intel(R) Core(TM) i7-4710HQ CPU @ 2.50GHz
AES supported, TXT NOT supported, VT supported
PCH type: HM87, device id: 8c4b, rev id 5
Starting UEFI PEI System Agent
FMAP: area RW_MRC_CACHE found @ 720000 (65536 bytes)
MRC: no data in 'RW_MRC_CACHE'
FMAP: area COREBOOT found @ 730200 (851456 bytes)
CBFS: Locating 'mrc.bin'
CBFS: Found @ offset 6fdc0 size 2eb04
System Agent: Starting up...
System Agent: Initializing PCH
install_ppi: overwrite GUID {ed097352-9041-445a-80b6-b29d509e8845}
install_ppi: overwrite GUID {908c7f8b-5c48-47fb-8357-f5fd4e235276}
System Agent: Initializing PCH (SMBUS)
System Agent: Initializing PCH (USB)
System Agent: Initializing PCH (SA Init)
System Agent: Initializing PCH (Me UMA)
System Agent: Initializing Memory
System Agent: Done.
Sanity checking heap.
System Agent Version 1.6.1 Build 2
memcfg DDR3 clock 1600 MHz
memcfg channel assignment: A: 0, B 1, C 2
memcfg channel[0] config (00620020):
ECC inactive
enhanced interleave mode on
rank interleave on
DIMMA 8192 MB width x8 or x32 dual rank, selected
DIMMB 0 MB width x8 or x32 single rank
memcfg channel[1] config (00620020):
ECC inactive
enhanced interleave mode on
rank interleave on
DIMMA 8192 MB width x8 or x32 dual rank, selected
DIMMB 0 MB width x8 or x32 single rank
ME: FW Partition Table : OK
ME: Bringup Loader Failure : NO
ME: Firmware Init Complete : NO
ME: Manufacturing Mode : YES
ME: Boot Options Present : NO
ME: Update In Progress : NO
ME: Current Working State : Recovery
ME: Current Operation State : M0 with UMA
ME: Current Operation Mode : Normal
ME: Error Code : No Error
ME: Progress Phase : BUP Phase
ME: Power Management Event : Clean Moff->Mx wake
ME: Progress Phase State : M0 kernel load
CBMEM:
IMD: root @ 7f7ff000 254 entries.
IMD: root @ 7f7fec00 62 entries.
External stage cache:
IMD: root @ 7fbff000 254 entries.
IMD: root @ 7fbfec00 62 entries.
Unhiding PEG10.
MTRR Range: Start=ff800000 End=0 (Size 800000)
MTRR Range: Start=0 End=1000000 (Size 1000000)
MTRR Range: Start=7f000000 End=80000000 (Size 1000000)
CBFS @ 730200 size cfe00
CBFS: 'Master Header Locator' located CBFS at [730200:800000)
CBFS: Locating 'fallback/postcar'
CBFS: Found @ offset 5e940 size 929c
Decompressing stage fallback/postcar @ 0x7f7c9fc0 (52520 bytes)
Loading module at 7f7ca000 with entry 7f7ca000. filesize: 0x88d0 memsize: 0xcce8
Processing 604 relocs. Offset value of 0x7d7ca000
coreboot-4.9-1232-g380fe4c8e3 Fri Apr 26 07:40:32 UTC 2019 postcar starting (log level: 8)...
CBFS @ 730200 size cfe00
CBFS: 'Master Header Locator' located CBFS at [730200:800000)
CBFS: Locating 'fallback/ramstage'
CBFS: Found @ offset 3e980 size 1861c
Decompressing stage fallback/ramstage @ 0x7f781fc0 (290136 bytes)
Loading module at 7f782000 with entry 7f782000. filesize: 0x310f0 memsize: 0x46d18
Processing 3336 relocs. Offset value of 0x7e982000
coreboot-4.9-1232-g380fe4c8e3 Fri Apr 26 07:40:32 UTC 2019 ramstage starting (log level: 8)...
Normal boot.
BS: BS_PRE_DEVICE times (us): entry 0 run 15 exit 0
BS: BS_DEV_INIT_CHIPS times (us): entry 0 run 3 exit 0
Enumerating buses...
Show all devs... Before device enumeration.
Root Device: enabled 1
CPU_CLUSTER: 0: enabled 1
DOMAIN: 0000: enabled 1
APIC: 00: enabled 1
APIC: acac: enabled 0
PCI: 00:14.0: enabled 1
PCI: 00:16.0: enabled 1
PCI: 00:16.1: enabled 0
PCI: 00:16.2: enabled 0
PCI: 00:16.3: enabled 0
PCI: 00:19.0: enabled 0
PCI: 00:1a.0: enabled 1
PCI: 00:1b.0: enabled 1
PCI: 00:1c.0: enabled 1
PCI: 00:1c.1: enabled 1
PCI: 00:1c.2: enabled 1
PCI: 00:1c.3: enabled 0
PCI: 00:1c.4: enabled 0
PCI: 00:1c.5: enabled 0
PCI: 00:1c.6: enabled 0
PCI: 00:1c.7: enabled 0
PCI: 00:1d.0: enabled 1
PCI: 00:1f.0: enabled 1
PCI: 00:1f.2: enabled 1
PCI: 00:1f.3: enabled 1
PCI: 00:1f.5: enabled 0
PCI: 00:1f.6: enabled 1
PCI: 00:00.0: enabled 1
PCI: 00:01.0: enabled 1
PCI: 00:02.0: enabled 1
PCI: 00:03.0: enabled 1
Compare with tree...
Root Device: enabled 1
CPU_CLUSTER: 0: enabled 1
APIC: 00: enabled 1
APIC: acac: enabled 0
DOMAIN: 0000: enabled 1
PCI: 00:14.0: enabled 1
PCI: 00:16.0: enabled 1
PCI: 00:16.1: enabled 0
PCI: 00:16.2: enabled 0
PCI: 00:16.3: enabled 0
PCI: 00:19.0: enabled 0
PCI: 00:1a.0: enabled 1
PCI: 00:1b.0: enabled 1
PCI: 00:1c.0: enabled 1
PCI: 00:1c.1: enabled 1
PCI: 00:1c.2: enabled 1
PCI: 00:1c.3: enabled 0
PCI: 00:1c.4: enabled 0
PCI: 00:1c.5: enabled 0
PCI: 00:1c.6: enabled 0
PCI: 00:1c.7: enabled 0
PCI: 00:1d.0: enabled 1
PCI: 00:1f.0: enabled 1
PCI: 00:1f.2: enabled 1
PCI: 00:1f.3: enabled 1
PCI: 00:1f.5: enabled 0
PCI: 00:1f.6: enabled 1
PCI: 00:00.0: enabled 1
PCI: 00:01.0: enabled 1
PCI: 00:02.0: enabled 1
PCI: 00:03.0: enabled 1
Root Device scanning...
root_dev_scan_bus for Root Device
CPU_CLUSTER: 0 enabled
DOMAIN: 0000 enabled
DOMAIN: 0000 scanning...
PCI: pci_scan_bus for bus 00
PCI: 00:00.0 [8086/0000] ops
PCI: 00:00.0 [8086/0c04] enabled
Capability: type 0x0d @ 0x88
Capability: type 0x01 @ 0x80
Capability: type 0x05 @ 0x90
Capability: type 0x10 @ 0xa0
Capability: type 0x0d @ 0x88
Capability: type 0x01 @ 0x80
Capability: type 0x05 @ 0x90
Capability: type 0x10 @ 0xa0
PCI: 00:01.0 subordinate bus PCI Express
PCI: 00:01.0 [8086/0c01] enabled
PCI: 00:02.0 [8086/0000] ops
PCI: 00:02.0 [8086/0416] enabled
PCI: 00:03.0 [8086/0000] ops
PCI: 00:03.0 [8086/0c0c] enabled
PCI: 00:04.0 [8086/0c03] enabled
PCI: 00:14.0 [8086/0000] ops
PCI: 00:14.0 [8086/8c31] enabled
PCI: 00:16.0 [8086/0000] ops
PCI: 00:16.0 [8086/8c3a] enabled
PCI: 00:16.1: Disabling device
PCI: 00:16.1 [8086/8c3b] disabled No operations
PCI: 00:16.2: Disabling device
PCI: 00:16.2 [8086/8c3c] disabled No operations
PCI: 00:16.3: Disabling device
PCI: 00:16.3 [8086/8c3d] disabled No operations
PCI: 00:19.0: Disabling device
PCI: 00:1a.0 [8086/0000] ops
PCI: 00:1a.0 [8086/8c2d] enabled
PCI: 00:1b.0 [8086/0000] ops
PCI: 00:1b.0 [8086/8c20] enabled
PCI: 00:1c.0 [8086/0000] bus ops
PCIe Root Port 1 ASPM is disabled
PCI: 00:1c.0 [8086/8c10] enabled
PCI: 00:1c.1 [8086/0000] bus ops
PCIe Root Port 2 ASPM is disabled
PCI: 00:1c.1 [8086/8c12] enabled
PCI: 00:1c.2 [8086/0000] bus ops
PCIe Root Port 3 ASPM is disabled
PCI: 00:1c.2 [8086/8c14] enabled
PCI: 00:1c.3 [8086/0000] bus ops
PCI: 00:1c.3 [8086/8c16] disabled
PCI: 00:1c.4 [8086/0000] bus ops
PCI: 00:1c.4 [8086/8c18] disabled
PCI: 00:1c.5 [8086/0000] bus ops
PCI: 00:1c.5 [8086/8c1a] disabled
PCI: 00:1c.6 [8086/0000] bus ops
PCI: 00:1c.6 [8086/8c1c] disabled
PCI: 00:1c.7 [8086/0000] bus ops
PCI: 00:1c.3: Disabling device
PCI: 00:1c.4: Disabling device
PCI: 00:1c.5: Disabling device
PCI: 00:1c.6: Disabling device
PCI: 00:1c.7: Disabling device
PCH: RPFN 0x76543210 -> 0xfedcb210
PCI: 00:1c.7 [8086/8c1e] disabled
PCI: 00:1d.0 [8086/0000] ops
PCI: 00:1d.0 [8086/8c26] enabled
PCI: 00:1f.0 [8086/0000] bus ops
PCI: 00:1f.0 [8086/8c4b] enabled
PCI: 00:1f.2 [8086/0000] ops
PCI: 00:1f.2 [8086/8c03] enabled
PCI: 00:1f.3 [8086/0000] bus ops
PCI: 00:1f.3 [8086/8c22] enabled
PCI: 00:1f.5: Disabling device
PCI: 00:1f.6 [8086/8c24] enabled
PCI: Leftover static devices:
PCI: 00:19.0
PCI: 00:1f.5
PCI: Check your devicetree.cb.
PCI: 00:01.0 scanning...
do_pci_scan_bridge for PCI: 00:01.0
PCI: pci_scan_bus for bus 01
scan_bus: scanning of bus PCI: 00:01.0 took 921 usecs
PCI: 00:1c.0 scanning...
do_pci_scan_bridge for PCI: 00:1c.0
PCI: pci_scan_bus for bus 02
PCI: 02:00.0 [10ec/5227] enabled
Capability: type 0x01 @ 0x40
Capability: type 0x05 @ 0x50
Capability: type 0x10 @ 0x70
Capability: type 0x10 @ 0x40
Enabling Common Clock Configuration
ASPM: Enabled L0s and L1
Capability: type 0x01 @ 0x40
Capability: type 0x05 @ 0x50
Capability: type 0x10 @ 0x70
scan_bus: scanning of bus PCI: 00:1c.0 took 4221 usecs
PCI: 00:1c.1 scanning...
do_pci_scan_bridge for PCI: 00:1c.1
PCI: pci_scan_bus for bus 03
PCI: 03:00.0 [10ec/8168] enabled
Capability: type 0x01 @ 0x40
Capability: type 0x05 @ 0x50
Capability: type 0x10 @ 0x70
Capability: type 0x10 @ 0x40
Enabling Common Clock Configuration
ASPM: Enabled L1
Capability: type 0x01 @ 0x40
Capability: type 0x05 @ 0x50
Capability: type 0x10 @ 0x70
scan_bus: scanning of bus PCI: 00:1c.1 took 4198 usecs
PCI: 00:1c.2 scanning...
do_pci_scan_bridge for PCI: 00:1c.2
PCI: pci_scan_bus for bus 04
PCI: 04:00.0 [8086/0000] ops
PCI: 04:00.0 [8086/08b1] enabled
Capability: type 0x01 @ 0xc8
Capability: type 0x05 @ 0xd0
Capability: type 0x10 @ 0x40
Capability: type 0x10 @ 0x40
Enabling Common Clock Configuration
ASPM: Enabled L1
Capability: type 0x01 @ 0xc8
Capability: type 0x05 @ 0xd0
Capability: type 0x10 @ 0x40
scan_bus: scanning of bus PCI: 00:1c.2 took 4626 usecs
PCI: 00:1f.0 scanning...
scan_lpc_bus for PCI: 00:1f.0
scan_lpc_bus for PCI: 00:1f.0 done
scan_bus: scanning of bus PCI: 00:1f.0 took 895 usecs
PCI: 00:1f.3 scanning...
scan_generic_bus for PCI: 00:1f.3
scan_generic_bus for PCI: 00:1f.3 done
scan_bus: scanning of bus PCI: 00:1f.3 took 1075 usecs
scan_bus: scanning of bus DOMAIN: 0000 took 42840 usecs
root_dev_scan_bus for Root Device done
scan_bus: scanning of bus Root Device took 44880 usecs
done
FMAP: area RW_MRC_CACHE found @ 720000 (65536 bytes)
MRC: Checking cached data update for 'RW_MRC_CACHE'.
MRC: no data in 'RW_MRC_CACHE'
MRC: cache data 'RW_MRC_CACHE' needs update.
BS: BS_DEV_ENUMERATE times (us): entry 0 run 64109 exit 21363
found VGA at PCI: 00:02.0
Setting up VGA for PCI: 00:02.0
Setting PCI_BRIDGE_CTL_VGA for bridge DOMAIN: 0000
Setting PCI_BRIDGE_CTL_VGA for bridge Root Device
Allocating resources...
Reading resources...
Root Device read_resources bus 0 link: 0
CPU_CLUSTER: 0 read_resources bus 0 link: 0
CPU_CLUSTER: 0 read_resources bus 0 link: 0 done
DOMAIN: 0000 read_resources bus 0 link: 0
mc_add_fixed_mmio_resources: Adding PCIEXBAR @ 60 0xf0000000-0xf3ffffff.
mc_add_fixed_mmio_resources: Adding MCHBAR @ 48 0xfed10000-0xfed17fff.
mc_add_fixed_mmio_resources: Adding DMIBAR @ 68 0xfed18000-0xfed18fff.
mc_add_fixed_mmio_resources: Adding EPBAR @ 40 0xfed19000-0xfed19fff.
mc_add_fixed_mmio_resources: Adding GDXCBAR @ 5420 0xfed84000-0xfed84fff.
MC MAP: TOM: 0x400000000
MC MAP: TOUUD: 0x47ce00000
MC MAP: MESEG_BASE: 0x3ff000000
MC MAP: MESEG_LIMIT: 0x7fff0fffff
MC MAP: REMAP_BASE: 0x3ff000000
MC MAP: REMAP_LIMIT: 0x47cdfffff
MC MAP: TOLUD: 0x82200000
MC MAP: BGSM: 0x80000000
MC MAP: BDSM: 0x80200000
MC MAP: TESGMB: 0x7f800000
MC MAP: GGC: 0x209
PCI: 00:01.0 read_resources bus 1 link: 0
PCI: 00:01.0 read_resources bus 1 link: 0 done
PCI: 00:1c.0 read_resources bus 2 link: 0
PCI: 00:1c.0 read_resources bus 2 link: 0 done
PCI: 00:1c.1 read_resources bus 3 link: 0
PCI: 00:1c.1 read_resources bus 3 link: 0 done
PCI: 00:1c.2 read_resources bus 4 link: 0
PCI: 00:1c.2 read_resources bus 4 link: 0 done
DOMAIN: 0000 read_resources bus 0 link: 0 done
Root Device read_resources bus 0 link: 0 done
Done reading resources.
Show resources in subtree (Root Device)...After reading.
Root Device child on link 0 CPU_CLUSTER: 0
CPU_CLUSTER: 0 child on link 0 APIC: 00
APIC: 00
APIC: acac
DOMAIN: 0000 child on link 0 PCI: 00:00.0
DOMAIN: 0000 resource base 0 size 0 align 0 gran 0 limit ffff flags 40040100 index 10000000
DOMAIN: 0000 resource base 0 size 0 align 0 gran 0 limit ffffffff flags 40040200 index 10000100
PCI: 00:00.0
PCI: 00:00.0 resource base f0000000 size 4000000 align 0 gran 0 limit 0 flags f0000200 index 60
PCI: 00:00.0 resource base fed10000 size 8000 align 0 gran 0 limit 0 flags f0000200 index 48
PCI: 00:00.0 resource base fed18000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 68
PCI: 00:00.0 resource base fed19000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 40
PCI: 00:00.0 resource base fed84000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 5420
PCI: 00:00.0 resource base fed90000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 0
PCI: 00:00.0 resource base fed91000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 1
PCI: 00:00.0 resource base 0 size a0000 align 0 gran 0 limit 0 flags e0004200 index 2
PCI: 00:00.0 resource base c0000 size 7f740000 align 0 gran 0 limit 0 flags e0004200 index 3
PCI: 00:00.0 resource base 7f800000 size 800000 align 0 gran 0 limit 0 flags f0004200 index 4
PCI: 00:00.0 resource base 80000000 size 2200000 align 0 gran 0 limit 0 flags f0000200 index 5
PCI: 00:00.0 resource base 100000000 size 37ce00000 align 0 gran 0 limit 0 flags e0004200 index 6
PCI: 00:00.0 resource base a0000 size 20000 align 0 gran 0 limit 0 flags f0000200 index 7
PCI: 00:00.0 resource base c0000 size 40000 align 0 gran 0 limit 0 flags f0004200 index 8
PCI: 00:01.0
PCI: 00:01.0 resource base 0 size 0 align 12 gran 12 limit ffff flags 80102 index 1c
PCI: 00:01.0 resource base 0 size 0 align 20 gran 20 limit ffffffffffffffff flags 81202 index 24
PCI: 00:01.0 resource base 0 size 0 align 20 gran 20 limit ffffffff flags 80202 index 20
PCI: 00:02.0
PCI: 00:02.0 resource base 0 size 400000 align 22 gran 22 limit ffffffffffffffff flags 201 index 10
PCI: 00:02.0 resource base 0 size 10000000 align 28 gran 28 limit ffffffffffffffff flags 1201 index 18
PCI: 00:02.0 resource base 0 size 40 align 6 gran 6 limit ffff flags 100 index 20
PCI: 00:03.0
PCI: 00:03.0 resource base 0 size 4000 align 14 gran 14 limit ffffffffffffffff flags 201 index 10
PCI: 00:04.0
PCI: 00:04.0 resource base 0 size 8000 align 15 gran 15 limit ffffffffffffffff flags 201 index 10
PCI: 00:14.0
PCI: 00:14.0 resource base 0 size 10000 align 16 gran 16 limit ffffffffffffffff flags 201 index 10
PCI: 00:16.0
PCI: 00:16.0 resource base 0 size 10 align 12 gran 4 limit ffffffffffffffff flags 201 index 10
PCI: 00:16.1
PCI: 00:16.2
PCI: 00:16.3
PCI: 00:1a.0
PCI: 00:1a.0 resource base 0 size 400 align 12 gran 10 limit ffffffff flags 200 index 10
PCI: 00:1b.0
PCI: 00:1b.0 resource base 0 size 4000 align 14 gran 14 limit ffffffffffffffff flags 201 index 10
PCI: 00:1c.0 child on link 0 PCI: 02:00.0
PCI: 00:1c.0 resource base 0 size 0 align 12 gran 12 limit ffff flags 80102 index 1c
PCI: 00:1c.0 resource base 0 size 0 align 20 gran 20 limit ffffffffffffffff flags 81202 index 24
PCI: 00:1c.0 resource base 0 size 0 align 20 gran 20 limit ffffffff flags 80202 index 20
PCI: 02:00.0
PCI: 02:00.0 resource base 0 size 1000 align 12 gran 12 limit ffffffff flags 200 index 10
PCI: 00:1c.1 child on link 0 PCI: 03:00.0
PCI: 00:1c.1 resource base 0 size 0 align 12 gran 12 limit ffff flags 80102 index 1c
PCI: 00:1c.1 resource base 0 size 0 align 20 gran 20 limit ffffffffffffffff flags 81202 index 24
PCI: 00:1c.1 resource base 0 size 0 align 20 gran 20 limit ffffffff flags 80202 index 20
PCI: 03:00.0
PCI: 03:00.0 resource base 0 size 100 align 8 gran 8 limit ffff flags 100 index 10
PCI: 03:00.0 resource base 0 size 1000 align 12 gran 12 limit ffffffffffffffff flags 201 index 18
PCI: 03:00.0 resource base 0 size 4000 align 14 gran 14 limit ffffffffffffffff flags 1201 index 20
PCI: 00:1c.2 child on link 0 PCI: 04:00.0
PCI: 00:1c.2 resource base 0 size 0 align 12 gran 12 limit ffff flags 80102 index 1c
PCI: 00:1c.2 resource base 0 size 0 align 20 gran 20 limit ffffffffffffffff flags 81202 index 24
PCI: 00:1c.2 resource base 0 size 0 align 20 gran 20 limit ffffffff flags 80202 index 20
PCI: 04:00.0
PCI: 04:00.0 resource base 0 size 2000 align 13 gran 13 limit ffffffffffffffff flags 201 index 10
PCI: 00:1c.3
PCI: 00:1c.4
PCI: 00:1c.5
PCI: 00:1c.6
PCI: 00:1c.7
PCI: 00:1d.0
PCI: 00:1d.0 resource base 0 size 400 align 12 gran 10 limit ffffffff flags 200 index 10
PCI: 00:1f.0
PCI: 00:1f.0 resource base fec00000 size 1400000 align 0 gran 0 limit 0 flags c0000200 index 31fe
PCI: 00:1f.0 resource base 0 size 1000 align 0 gran 0 limit 0 flags c0000100 index 0
PCI: 00:1f.2
PCI: 00:1f.2 resource base 0 size 8 align 3 gran 3 limit ffff flags 100 index 10
PCI: 00:1f.2 resource base 0 size 4 align 2 gran 2 limit ffff flags 100 index 14
PCI: 00:1f.2 resource base 0 size 8 align 3 gran 3 limit ffff flags 100 index 18
PCI: 00:1f.2 resource base 0 size 4 align 2 gran 2 limit ffff flags 100 index 1c
PCI: 00:1f.2 resource base 0 size 20 align 5 gran 5 limit ffff flags 100 index 20
PCI: 00:1f.2 resource base 0 size 800 align 12 gran 11 limit ffffffff flags 200 index 24
PCI: 00:1f.3
PCI: 00:1f.3 resource base 400 size 20 align 0 gran 0 limit 41f flags f0000100 index 20
PCI: 00:1f.3 resource base 0 size 100 align 12 gran 8 limit ffffffffffffffff flags 201 index 10
PCI: 00:1f.6
PCI: 00:1f.6 resource base 0 size 1000 align 12 gran 12 limit ffffffffffffffff flags 201 index 10
DOMAIN: 0000 io: base: 0 size: 0 align: 0 gran: 0 limit: ffff
PCI: 00:01.0 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff
PCI: 00:01.0 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff done
PCI: 00:1c.0 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff
PCI: 00:1c.0 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff done
PCI: 00:1c.1 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff
PCI: 03:00.0 10 * [0x0 - 0xff] io
PCI: 00:1c.1 io: base: 100 size: 1000 align: 12 gran: 12 limit: ffff done
PCI: 00:1c.2 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff
PCI: 00:1c.2 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff done
PCI: 00:1c.1 1c * [0x0 - 0xfff] io
PCI: 00:02.0 20 * [0x1000 - 0x103f] io
PCI: 00:1f.2 20 * [0x1040 - 0x105f] io
PCI: 00:1f.2 10 * [0x1060 - 0x1067] io
PCI: 00:1f.2 18 * [0x1068 - 0x106f] io
PCI: 00:1f.2 14 * [0x1070 - 0x1073] io
PCI: 00:1f.2 1c * [0x1074 - 0x1077] io
DOMAIN: 0000 io: base: 1078 size: 1078 align: 12 gran: 0 limit: ffff done
DOMAIN: 0000 mem: base: 0 size: 0 align: 0 gran: 0 limit: ffffffff
PCI: 00:01.0 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff
PCI: 00:01.0 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff done
PCI: 00:01.0 mem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffff
PCI: 00:01.0 mem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffff done
PCI: 00:1c.0 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff
PCI: 00:1c.0 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff done
PCI: 00:1c.0 mem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffff
PCI: 02:00.0 10 * [0x0 - 0xfff] mem
PCI: 00:1c.0 mem: base: 1000 size: 100000 align: 20 gran: 20 limit: ffffffff done
PCI: 00:1c.1 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff
PCI: 03:00.0 20 * [0x0 - 0x3fff] prefmem
PCI: 00:1c.1 prefmem: base: 4000 size: 100000 align: 20 gran: 20 limit: ffffffffffffffff done
PCI: 00:1c.1 mem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffff
PCI: 03:00.0 18 * [0x0 - 0xfff] mem
PCI: 00:1c.1 mem: base: 1000 size: 100000 align: 20 gran: 20 limit: ffffffff done
PCI: 00:1c.2 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff
PCI: 00:1c.2 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff done
PCI: 00:1c.2 mem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffff
PCI: 04:00.0 10 * [0x0 - 0x1fff] mem
PCI: 00:1c.2 mem: base: 2000 size: 100000 align: 20 gran: 20 limit: ffffffff done
PCI: 00:02.0 18 * [0x0 - 0xfffffff] prefmem
PCI: 00:02.0 10 * [0x10000000 - 0x103fffff] mem
PCI: 00:1c.0 20 * [0x10400000 - 0x104fffff] mem
PCI: 00:1c.1 24 * [0x10500000 - 0x105fffff] prefmem
PCI: 00:1c.1 20 * [0x10600000 - 0x106fffff] mem
PCI: 00:1c.2 20 * [0x10700000 - 0x107fffff] mem
PCI: 00:14.0 10 * [0x10800000 - 0x1080ffff] mem
PCI: 00:04.0 10 * [0x10810000 - 0x10817fff] mem
PCI: 00:03.0 10 * [0x10818000 - 0x1081bfff] mem
PCI: 00:1b.0 10 * [0x1081c000 - 0x1081ffff] mem
PCI: 00:1f.6 10 * [0x10820000 - 0x10820fff] mem
PCI: 00:1f.2 24 * [0x10821000 - 0x108217ff] mem
PCI: 00:1a.0 10 * [0x10822000 - 0x108223ff] mem
PCI: 00:1d.0 10 * [0x10823000 - 0x108233ff] mem
PCI: 00:1f.3 10 * [0x10824000 - 0x108240ff] mem
PCI: 00:16.0 10 * [0x10825000 - 0x1082500f] mem
DOMAIN: 0000 mem: base: 10825010 size: 10825010 align: 28 gran: 0 limit: ffffffff done
avoid_fixed_resources: DOMAIN: 0000
avoid_fixed_resources:@DOMAIN: 0000 10000000 limit 0000ffff
avoid_fixed_resources:@DOMAIN: 0000 10000100 limit ffffffff
constrain_resources: PCI: 00:00.0 60 base f0000000 limit f3ffffff mem (fixed)
constrain_resources: PCI: 00:00.0 02 base 00000000 limit 0009ffff mem (fixed)
constrain_resources: PCI: 00:00.0 03 base 000c0000 limit 7f7fffff mem (fixed)
constrain_resources: PCI: 00:00.0 04 base 7f800000 limit 7fffffff mem (fixed)
constrain_resources: PCI: 00:00.0 05 base 80000000 limit 821fffff mem (fixed)
constrain_resources: PCI: 00:1f.0 00 base 00000000 limit 00000fff io (fixed)
avoid_fixed_resources:@DOMAIN: 0000 10000000 base 00001000 limit 0000ffff
avoid_fixed_resources:@DOMAIN: 0000 10000100 base d0000000 limit efffffff
Setting resources...
DOMAIN: 0000 io: base:1000 size:1078 align:12 gran:0 limit:ffff
PCI: 00:1c.1 1c * [0x1000 - 0x1fff] io
PCI: 00:02.0 20 * [0x2000 - 0x203f] io
PCI: 00:1f.2 20 * [0x2040 - 0x205f] io
PCI: 00:1f.2 10 * [0x2060 - 0x2067] io
PCI: 00:1f.2 18 * [0x2068 - 0x206f] io
PCI: 00:1f.2 14 * [0x2070 - 0x2073] io
PCI: 00:1f.2 1c * [0x2074 - 0x2077] io
DOMAIN: 0000 io: next_base: 2078 size: 1078 align: 12 gran: 0 done
PCI: 00:01.0 io: base:ffff size:0 align:12 gran:12 limit:ffff
PCI: 00:01.0 io: next_base: ffff size: 0 align: 12 gran: 12 done
PCI: 00:1c.0 io: base:ffff size:0 align:12 gran:12 limit:ffff
PCI: 00:1c.0 io: next_base: ffff size: 0 align: 12 gran: 12 done
PCI: 00:1c.1 io: base:1000 size:1000 align:12 gran:12 limit:1fff
PCI: 03:00.0 10 * [0x1000 - 0x10ff] io
PCI: 00:1c.1 io: next_base: 1100 size: 1000 align: 12 gran: 12 done
PCI: 00:1c.2 io: base:ffff size:0 align:12 gran:12 limit:ffff
PCI: 00:1c.2 io: next_base: ffff size: 0 align: 12 gran: 12 done
DOMAIN: 0000 mem: base:d0000000 size:10825010 align:28 gran:0 limit:efffffff
PCI: 00:02.0 18 * [0xd0000000 - 0xdfffffff] prefmem
PCI: 00:02.0 10 * [0xe0000000 - 0xe03fffff] mem
PCI: 00:1c.0 20 * [0xe0400000 - 0xe04fffff] mem
PCI: 00:1c.1 24 * [0xe0500000 - 0xe05fffff] prefmem
PCI: 00:1c.1 20 * [0xe0600000 - 0xe06fffff] mem
PCI: 00:1c.2 20 * [0xe0700000 - 0xe07fffff] mem
PCI: 00:14.0 10 * [0xe0800000 - 0xe080ffff] mem
PCI: 00:04.0 10 * [0xe0810000 - 0xe0817fff] mem
PCI: 00:03.0 10 * [0xe0818000 - 0xe081bfff] mem
PCI: 00:1b.0 10 * [0xe081c000 - 0xe081ffff] mem
PCI: 00:1f.6 10 * [0xe0820000 - 0xe0820fff] mem
PCI: 00:1f.2 24 * [0xe0821000 - 0xe08217ff] mem
PCI: 00:1a.0 10 * [0xe0822000 - 0xe08223ff] mem
PCI: 00:1d.0 10 * [0xe0823000 - 0xe08233ff] mem
PCI: 00:1f.3 10 * [0xe0824000 - 0xe08240ff] mem
PCI: 00:16.0 10 * [0xe0825000 - 0xe082500f] mem
DOMAIN: 0000 mem: next_base: e0825010 size: 10825010 align: 28 gran: 0 done
PCI: 00:01.0 prefmem: base:efffffff size:0 align:20 gran:20 limit:efffffff
PCI: 00:01.0 prefmem: next_base: efffffff size: 0 align: 20 gran: 20 done
PCI: 00:01.0 mem: base:efffffff size:0 align:20 gran:20 limit:efffffff
PCI: 00:01.0 mem: next_base: efffffff size: 0 align: 20 gran: 20 done
PCI: 00:1c.0 prefmem: base:efffffff size:0 align:20 gran:20 limit:efffffff
PCI: 00:1c.0 prefmem: next_base: efffffff size: 0 align: 20 gran: 20 done
PCI: 00:1c.0 mem: base:e0400000 size:100000 align:20 gran:20 limit:e04fffff
PCI: 02:00.0 10 * [0xe0400000 - 0xe0400fff] mem
PCI: 00:1c.0 mem: next_base: e0401000 size: 100000 align: 20 gran: 20 done
PCI: 00:1c.1 prefmem: base:e0500000 size:100000 align:20 gran:20 limit:e05fffff
PCI: 03:00.0 20 * [0xe0500000 - 0xe0503fff] prefmem
PCI: 00:1c.1 prefmem: next_base: e0504000 size: 100000 align: 20 gran: 20 done
PCI: 00:1c.1 mem: base:e0600000 size:100000 align:20 gran:20 limit:e06fffff
PCI: 03:00.0 18 * [0xe0600000 - 0xe0600fff] mem
PCI: 00:1c.1 mem: next_base: e0601000 size: 100000 align: 20 gran: 20 done
PCI: 00:1c.2 prefmem: base:efffffff size:0 align:20 gran:20 limit:efffffff
PCI: 00:1c.2 prefmem: next_base: efffffff size: 0 align: 20 gran: 20 done
PCI: 00:1c.2 mem: base:e0700000 size:100000 align:20 gran:20 limit:e07fffff
PCI: 04:00.0 10 * [0xe0700000 - 0xe0701fff] mem
PCI: 00:1c.2 mem: next_base: e0702000 size: 100000 align: 20 gran: 20 done
Root Device assign_resources, bus 0 link: 0
DOMAIN: 0000 assign_resources, bus 0 link: 0
PCI: 00:01.0 1c <- [0x000000ffff - 0x000000fffe] size 0x00000000 gran 0x0c bus 01 io
PCI: 00:01.0 24 <- [0x00efffffff - 0x00effffffe] size 0x00000000 gran 0x14 bus 01 prefmem
PCI: 00:01.0 20 <- [0x00efffffff - 0x00effffffe] size 0x00000000 gran 0x14 bus 01 mem
PCI: 00:02.0 10 <- [0x00e0000000 - 0x00e03fffff] size 0x00400000 gran 0x16 mem64
PCI: 00:02.0 18 <- [0x00d0000000 - 0x00dfffffff] size 0x10000000 gran 0x1c prefmem64
PCI: 00:02.0 20 <- [0x0000002000 - 0x000000203f] size 0x00000040 gran 0x06 io
PCI: 00:03.0 10 <- [0x00e0818000 - 0x00e081bfff] size 0x00004000 gran 0x0e mem64
PCI: 00:04.0 10 <- [0x00e0810000 - 0x00e0817fff] size 0x00008000 gran 0x0f mem64
PCI: 00:14.0 10 <- [0x00e0800000 - 0x00e080ffff] size 0x00010000 gran 0x10 mem64
PCI: 00:16.0 10 <- [0x00e0825000 - 0x00e082500f] size 0x00000010 gran 0x04 mem64
PCI: 00:1a.0 10 <- [0x00e0822000 - 0x00e08223ff] size 0x00000400 gran 0x0a mem
PCI: 00:1b.0 10 <- [0x00e081c000 - 0x00e081ffff] size 0x00004000 gran 0x0e mem64
PCI: 00:1c.0 1c <- [0x000000ffff - 0x000000fffe] size 0x00000000 gran 0x0c bus 02 io
PCI: 00:1c.0 24 <- [0x00efffffff - 0x00effffffe] size 0x00000000 gran 0x14 bus 02 prefmem
PCI: 00:1c.0 20 <- [0x00e0400000 - 0x00e04fffff] size 0x00100000 gran 0x14 bus 02 mem
PCI: 00:1c.0 assign_resources, bus 2 link: 0
PCI: 02:00.0 10 <- [0x00e0400000 - 0x00e0400fff] size 0x00001000 gran 0x0c mem
PCI: 00:1c.0 assign_resources, bus 2 link: 0
PCI: 00:1c.1 1c <- [0x0000001000 - 0x0000001fff] size 0x00001000 gran 0x0c bus 03 io
PCI: 00:1c.1 24 <- [0x00e0500000 - 0x00e05fffff] size 0x00100000 gran 0x14 bus 03 prefmem
PCI: 00:1c.1 20 <- [0x00e0600000 - 0x00e06fffff] size 0x00100000 gran 0x14 bus 03 mem
PCI: 00:1c.1 assign_resources, bus 3 link: 0
PCI: 03:00.0 10 <- [0x0000001000 - 0x00000010ff] size 0x00000100 gran 0x08 io
PCI: 03:00.0 18 <- [0x00e0600000 - 0x00e0600fff] size 0x00001000 gran 0x0c mem64
PCI: 03:00.0 20 <- [0x00e0500000 - 0x00e0503fff] size 0x00004000 gran 0x0e prefmem64
PCI: 00:1c.1 assign_resources, bus 3 link: 0
PCI: 00:1c.2 1c <- [0x000000ffff - 0x000000fffe] size 0x00000000 gran 0x0c bus 04 io
PCI: 00:1c.2 24 <- [0x00efffffff - 0x00effffffe] size 0x00000000 gran 0x14 bus 04 prefmem
PCI: 00:1c.2 20 <- [0x00e0700000 - 0x00e07fffff] size 0x00100000 gran 0x14 bus 04 mem
PCI: 00:1c.2 assign_resources, bus 4 link: 0
PCI: 04:00.0 10 <- [0x00e0700000 - 0x00e0701fff] size 0x00002000 gran 0x0d mem64
PCI: 00:1c.2 assign_resources, bus 4 link: 0
PCI: 00:1d.0 10 <- [0x00e0823000 - 0x00e08233ff] size 0x00000400 gran 0x0a mem
PCI: 00:1f.2 10 <- [0x0000002060 - 0x0000002067] size 0x00000008 gran 0x03 io
PCI: 00:1f.2 14 <- [0x0000002070 - 0x0000002073] size 0x00000004 gran 0x02 io
PCI: 00:1f.2 18 <- [0x0000002068 - 0x000000206f] size 0x00000008 gran 0x03 io
PCI: 00:1f.2 1c <- [0x0000002074 - 0x0000002077] size 0x00000004 gran 0x02 io
PCI: 00:1f.2 20 <- [0x0000002040 - 0x000000205f] size 0x00000020 gran 0x05 io
PCI: 00:1f.2 24 <- [0x00e0821000 - 0x00e08217ff] size 0x00000800 gran 0x0b mem
PCI: 00:1f.3 10 <- [0x00e0824000 - 0x00e08240ff] size 0x00000100 gran 0x08 mem64
PCI: 00:1f.6 10 <- [0x00e0820000 - 0x00e0820fff] size 0x00001000 gran 0x0c mem64
DOMAIN: 0000 assign_resources, bus 0 link: 0
Root Device assign_resources, bus 0 link: 0
Done setting resources.
Show resources in subtree (Root Device)...After assigning values.
Root Device child on link 0 CPU_CLUSTER: 0
CPU_CLUSTER: 0 child on link 0 APIC: 00
APIC: 00
APIC: acac
DOMAIN: 0000 child on link 0 PCI: 00:00.0
DOMAIN: 0000 resource base 1000 size 1078 align 12 gran 0 limit ffff flags 40040100 index 10000000
DOMAIN: 0000 resource base d0000000 size 10825010 align 28 gran 0 limit efffffff flags 40040200 index 10000100
PCI: 00:00.0
PCI: 00:00.0 resource base f0000000 size 4000000 align 0 gran 0 limit 0 flags f0000200 index 60
PCI: 00:00.0 resource base fed10000 size 8000 align 0 gran 0 limit 0 flags f0000200 index 48
PCI: 00:00.0 resource base fed18000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 68
PCI: 00:00.0 resource base fed19000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 40
PCI: 00:00.0 resource base fed84000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 5420
PCI: 00:00.0 resource base fed90000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 0
PCI: 00:00.0 resource base fed91000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 1
PCI: 00:00.0 resource base 0 size a0000 align 0 gran 0 limit 0 flags e0004200 index 2
PCI: 00:00.0 resource base c0000 size 7f740000 align 0 gran 0 limit 0 flags e0004200 index 3
PCI: 00:00.0 resource base 7f800000 size 800000 align 0 gran 0 limit 0 flags f0004200 index 4
PCI: 00:00.0 resource base 80000000 size 2200000 align 0 gran 0 limit 0 flags f0000200 index 5
PCI: 00:00.0 resource base 100000000 size 37ce00000 align 0 gran 0 limit 0 flags e0004200 index 6
PCI: 00:00.0 resource base a0000 size 20000 align 0 gran 0 limit 0 flags f0000200 index 7
PCI: 00:00.0 resource base c0000 size 40000 align 0 gran 0 limit 0 flags f0004200 index 8
PCI: 00:01.0
PCI: 00:01.0 resource base ffff size 0 align 12 gran 12 limit ffff flags 60080102 index 1c
PCI: 00:01.0 resource base efffffff size 0 align 20 gran 20 limit efffffff flags 60081202 index 24
PCI: 00:01.0 resource base efffffff size 0 align 20 gran 20 limit efffffff flags 60080202 index 20
PCI: 00:02.0
PCI: 00:02.0 resource base e0000000 size 400000 align 22 gran 22 limit e03fffff flags 60000201 index 10
PCI: 00:02.0 resource base d0000000 size 10000000 align 28 gran 28 limit dfffffff flags 60001201 index 18
PCI: 00:02.0 resource base 2000 size 40 align 6 gran 6 limit 203f flags 60000100 index 20
PCI: 00:03.0
PCI: 00:03.0 resource base e0818000 size 4000 align 14 gran 14 limit e081bfff flags 60000201 index 10
PCI: 00:04.0
PCI: 00:04.0 resource base e0810000 size 8000 align 15 gran 15 limit e0817fff flags 60000201 index 10
PCI: 00:14.0
PCI: 00:14.0 resource base e0800000 size 10000 align 16 gran 16 limit e080ffff flags 60000201 index 10
PCI: 00:16.0
PCI: 00:16.0 resource base e0825000 size 10 align 12 gran 4 limit e082500f flags 60000201 index 10
PCI: 00:16.1
PCI: 00:16.2
PCI: 00:16.3
PCI: 00:1a.0
PCI: 00:1a.0 resource base e0822000 size 400 align 12 gran 10 limit e08223ff flags 60000200 index 10
PCI: 00:1b.0
PCI: 00:1b.0 resource base e081c000 size 4000 align 14 gran 14 limit e081ffff flags 60000201 index 10
PCI: 00:1c.0 child on link 0 PCI: 02:00.0
PCI: 00:1c.0 resource base ffff size 0 align 12 gran 12 limit ffff flags 60080102 index 1c
PCI: 00:1c.0 resource base efffffff size 0 align 20 gran 20 limit efffffff flags 60081202 index 24
PCI: 00:1c.0 resource base e0400000 size 100000 align 20 gran 20 limit e04fffff flags 60080202 index 20
PCI: 02:00.0
PCI: 02:00.0 resource base e0400000 size 1000 align 12 gran 12 limit e0400fff flags 60000200 index 10
PCI: 00:1c.1 child on link 0 PCI: 03:00.0
PCI: 00:1c.1 resource base 1000 size 1000 align 12 gran 12 limit 1fff flags 60080102 index 1c
PCI: 00:1c.1 resource base e0500000 size 100000 align 20 gran 20 limit e05fffff flags 60081202 index 24
PCI: 00:1c.1 resource base e0600000 size 100000 align 20 gran 20 limit e06fffff flags 60080202 index 20
PCI: 03:00.0
PCI: 03:00.0 resource base 1000 size 100 align 8 gran 8 limit 10ff flags 60000100 index 10
PCI: 03:00.0 resource base e0600000 size 1000 align 12 gran 12 limit e0600fff flags 60000201 index 18
PCI: 03:00.0 resource base e0500000 size 4000 align 14 gran 14 limit e0503fff flags 60001201 index 20
PCI: 00:1c.2 child on link 0 PCI: 04:00.0
PCI: 00:1c.2 resource base ffff size 0 align 12 gran 12 limit ffff flags 60080102 index 1c
PCI: 00:1c.2 resource base efffffff size 0 align 20 gran 20 limit efffffff flags 60081202 index 24
PCI: 00:1c.2 resource base e0700000 size 100000 align 20 gran 20 limit e07fffff flags 60080202 index 20
PCI: 04:00.0
PCI: 04:00.0 resource base e0700000 size 2000 align 13 gran 13 limit e0701fff flags 60000201 index 10
PCI: 00:1c.3
PCI: 00:1c.4
PCI: 00:1c.5
PCI: 00:1c.6
PCI: 00:1c.7
PCI: 00:1d.0
PCI: 00:1d.0 resource base e0823000 size 400 align 12 gran 10 limit e08233ff flags 60000200 index 10
PCI: 00:1f.0
PCI: 00:1f.0 resource base fec00000 size 1400000 align 0 gran 0 limit 0 flags c0000200 index 31fe
PCI: 00:1f.0 resource base 0 size 1000 align 0 gran 0 limit 0 flags c0000100 index 0
PCI: 00:1f.2
PCI: 00:1f.2 resource base 2060 size 8 align 3 gran 3 limit 2067 flags 60000100 index 10
PCI: 00:1f.2 resource base 2070 size 4 align 2 gran 2 limit 2073 flags 60000100 index 14
PCI: 00:1f.2 resource base 2068 size 8 align 3 gran 3 limit 206f flags 60000100 index 18
PCI: 00:1f.2 resource base 2074 size 4 align 2 gran 2 limit 2077 flags 60000100 index 1c
PCI: 00:1f.2 resource base 2040 size 20 align 5 gran 5 limit 205f flags 60000100 index 20
PCI: 00:1f.2 resource base e0821000 size 800 align 12 gran 11 limit e08217ff flags 60000200 index 24
PCI: 00:1f.3
PCI: 00:1f.3 resource base 400 size 20 align 0 gran 0 limit 41f flags f0000100 index 20
PCI: 00:1f.3 resource base e0824000 size 100 align 12 gran 8 limit e08240ff flags 60000201 index 10
PCI: 00:1f.6
PCI: 00:1f.6 resource base e0820000 size 1000 align 12 gran 12 limit e0820fff flags 60000201 index 10
Done allocating resources.
BS: BS_DEV_RESOURCES times (us): entry 0 run 228140 exit 0
Enabling resources...
PCI: 00:00.0 subsystem <- 1458/a456
PCI: 00:00.0 cmd <- 06
PCI: 00:01.0 bridge ctrl <- 0003
PCI: 00:01.0 cmd <- 00
PCI: 00:02.0 subsystem <- 1458/a456
PCI: 00:02.0 cmd <- 03
PCI: 00:03.0 subsystem <- 8086/2010
PCI: 00:03.0 cmd <- 02
PCI: 00:04.0 cmd <- 02
PCI: 00:14.0 subsystem <- 1458/a456
PCI: 00:14.0 cmd <- 102
PCI: 00:16.0 subsystem <- 1458/a456
PCI: 00:16.0 cmd <- 02
PCI: 00:1a.0 subsystem <- 1458/a456
PCI: 00:1a.0 cmd <- 102
PCI: 00:1b.0 subsystem <- 1458/a456
PCI: 00:1b.0 cmd <- 102
PCI: 00:1c.0 bridge ctrl <- 0003
PCI: 00:1c.0 subsystem <- 1458/a456
Capability: type 0x10 @ 0x40
Capability: type 0x05 @ 0x80
Capability: type 0x0d @ 0x90
PCI: 00:1c.0 cmd <- 06
PCI: 00:1c.1 bridge ctrl <- 0003
PCI: 00:1c.1 subsystem <- 1458/a456
Capability: type 0x10 @ 0x40
Capability: type 0x05 @ 0x80
Capability: type 0x0d @ 0x90
PCI: 00:1c.1 cmd <- 07
PCI: 00:1c.2 bridge ctrl <- 0003
PCI: 00:1c.2 subsystem <- 1458/a456
Capability: type 0x10 @ 0x40
Capability: type 0x05 @ 0x80
Capability: type 0x0d @ 0x90
PCI: 00:1c.2 cmd <- 06
PCI: 00:1d.0 subsystem <- 1458/a456
PCI: 00:1d.0 cmd <- 102
PCI: 00:1f.0 subsystem <- 1458/a456
PCI: 00:1f.0 cmd <- 107
PCI: 00:1f.2 subsystem <- 1458/a456
PCI: 00:1f.2 cmd <- 103
PCI: 00:1f.3 subsystem <- 1458/a456
PCI: 00:1f.3 cmd <- 103
PCI: 00:1f.6 subsystem <- 1458/a456
PCI: 00:1f.6 cmd <- 102
PCI: 02:00.0 cmd <- 02
PCI: 03:00.0 cmd <- 03
PCI: 04:00.0 cmd <- 02
done.
BS: BS_DEV_ENABLE times (us): entry 0 run 15253 exit 0
Initializing devices...
Root Device init ...
Replaying EC dump ...done
Root Device init finished in 265574 usecs
CPU_CLUSTER: 0 init ...
MTRR: Physical address space:
0x0000000000000000 - 0x00000000000a0000 size 0x000a0000 type 6
0x00000000000a0000 - 0x00000000000c0000 size 0x00020000 type 0
0x00000000000c0000 - 0x0000000080000000 size 0x7ff40000 type 6
0x0000000080000000 - 0x00000000d0000000 size 0x50000000 type 0
0x00000000d0000000 - 0x00000000e0000000 size 0x10000000 type 1
0x00000000e0000000 - 0x0000000100000000 size 0x20000000 type 0
0x0000000100000000 - 0x000000047ce00000 size 0x37ce00000 type 6
MTRR: Fixed MSR 0x250 0x0606060606060606
MTRR: Fixed MSR 0x258 0x0606060606060606
MTRR: Fixed MSR 0x259 0x0000000000000000
MTRR: Fixed MSR 0x268 0x0606060606060606
MTRR: Fixed MSR 0x269 0x0606060606060606
MTRR: Fixed MSR 0x26a 0x0606060606060606
MTRR: Fixed MSR 0x26b 0x0606060606060606
MTRR: Fixed MSR 0x26c 0x0606060606060606
MTRR: Fixed MSR 0x26d 0x0606060606060606
MTRR: Fixed MSR 0x26e 0x0606060606060606
MTRR: Fixed MSR 0x26f 0x0606060606060606
call enable_fixed_mtrr()
CPU physical address size: 39 bits
MTRR: default type WB/UC MTRR counts: 4/5.
MTRR: WB selected as default type.
MTRR: 0 base 0x0000000080000000 mask 0x0000007fc0000000 type 0
MTRR: 1 base 0x00000000c0000000 mask 0x0000007ff0000000 type 0
MTRR: 2 base 0x00000000d0000000 mask 0x0000007ff0000000 type 1
MTRR: 3 base 0x00000000e0000000 mask 0x0000007fe0000000 type 0
MTRR check
Fixed MTRRs : Enabled
Variable MTRRs: Enabled
Initializing VR config.
CPU has 4 cores, 8 threads enabled.
Setting up SMI for CPU
Will perform SMM setup.
CBFS @ 730200 size cfe00
CBFS: 'Master Header Locator' located CBFS at [730200:800000)
CBFS: Locating 'cpu_microcode_blob.bin'
CBFS: Found @ offset c900 size 32000
microcode: sig=0x306c3 pf=0x20 revision=0x17
CPU: Intel(R) Core(TM) i7-4710HQ CPU @ 2.50GHz.
Loading module at 00030000 with entry 00030000. filesize: 0x170 memsize: 0x170
Processing 16 relocs. Offset value of 0x00030000
Attempting to start 7 APs
Waiting for 10ms after sending INIT.
Waiting for 1st SIPI to complete...AP: slot 2 apic_id 1.
done.
Waiting for 2nd SIPI to complete...done.
AP: slot 1 apic_id 2.
AP: slot 5 apic_id 4.
AP: slot 7 apic_id 6.
AP: slot 3 apic_id 3.
AP: slot 4 apic_id 5.
AP: slot 6 apic_id 7.
Loading module at 00038000 with entry 00038000. filesize: 0x1a8 memsize: 0x1a8
Processing 13 relocs. Offset value of 0x00038000
SMM Module: stub loaded at 00038000. Will call 7f79dfac(00000000)
Installing SMM handler to 0x7f800000
Loading module at 7f810000 with entry 7f8100a0. filesize: 0x11d0 memsize: 0x51f0
Processing 47 relocs. Offset value of 0x7f810000
Loading module at 7f808000 with entry 7f808000. filesize: 0x1a8 memsize: 0x1a8
Processing 13 relocs. Offset value of 0x7f808000
SMM Module: placing jmp sequence at 7f807c00 rel16 0x03fd
SMM Module: placing jmp sequence at 7f807800 rel16 0x07fd
SMM Module: placing jmp sequence at 7f807400 rel16 0x0bfd
SMM Module: placing jmp sequence at 7f807000 rel16 0x0ffd
SMM Module: placing jmp sequence at 7f806c00 rel16 0x13fd
SMM Module: placing jmp sequence at 7f806800 rel16 0x17fd
SMM Module: placing jmp sequence at 7f806400 rel16 0x1bfd
SMM Module: stub loaded at 7f808000. Will call 7f8100a0(00000000)
Initializing Southbridge SMI... ... pmbase = 0x0500
SMI_STS: MCSMI PM1
PM1_STS: WAK PRBTNOR PWRBTN TMROF
New SMBASE 0x7f800000
In relocation handler: cpu 0
New SMBASE=0x7f800000 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7ff800
In relocation handler: cpu 2
New SMBASE=0x7f7ff800 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7ff400
In relocation handler: cpu 3
New SMBASE=0x7f7ff400 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7ffc00
In relocation handler: cpu 1
New SMBASE=0x7f7ffc00 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7fec00
In relocation handler: cpu 5
New SMBASE=0x7f7fec00 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7ff000
In relocation handler: cpu 4
New SMBASE=0x7f7ff000 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7fe800
In relocation handler: cpu 6
New SMBASE=0x7f7fe800 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7fe400
In relocation handler: cpu 7
New SMBASE=0x7f7fe400 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
Initializing CPU #0
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
Setting up local APIC... apic_id: 0x00 done.
VMX status: enabled
IA32_FEATURE_CONTROL status: locked
haswell: energy policy set to 6
haswell: frequency set to 2500
Turbo is available but hidden
Turbo has been enabled
CPU #0 initialized
Initializing CPU #2
Initializing CPU #5
Initializing CPU #4
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
Setting up local APIC...Setting up local APIC... apic_id: 0x04 done.
apic_id: 0x05 done.
VMX status: enabled
VMX status: enabled
IA32_FEATURE_CONTROL status: locked
IA32_FEATURE_CONTROL status: locked
haswell: energy policy set to 6
haswell: energy policy set to 6
haswell: frequency set to 2500
haswell: frequency set to 2500
CPU #4 initialized
CPU #5 initialized
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
Initializing CPU #1
Initializing CPU #3
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
Setting up local APIC...Setting up local APIC...Setting up local APIC... apic_id: 0x03 done.
apic_id: 0x02 done.
VMX status: enabled
apic_id: 0x01 done.
IA32_FEATURE_CONTROL status: locked
VMX status: enabled
haswell: energy policy set to 6
VMX status: enabled
haswell: frequency set to 2500
IA32_FEATURE_CONTROL status: locked
CPU #3 initialized
haswell: energy policy set to 6
IA32_FEATURE_CONTROL status: locked
Initializing CPU #7
Initializing CPU #6
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
haswell: frequency set to 2500
CPU #1 initialized
Setting up local APIC...Setting up local APIC... apic_id: 0x06 done.
apic_id: 0x07 done.
VMX status: enabled
VMX status: enabled
IA32_FEATURE_CONTROL status: locked
IA32_FEATURE_CONTROL status: locked
haswell: energy policy set to 6
haswell: energy policy set to 6
haswell: frequency set to 2500
haswell: frequency set to 2500
CPU #7 initialized
CPU #6 initialized
haswell: energy policy set to 6
haswell: frequency set to 2500
CPU #2 initialized
bsp_do_flight_plan done after 104 msecs.
Enabling SMIs.
Locking SMM.
CPU_CLUSTER: 0 init finished in 140302 usecs
PCI: 00:00.0 init ...
Disabling PEG12.
Disabling PEG11.
Disabling "device 7".
Set BIOS_RESET_CPL
CPU TDP: 47 Watts
PCI: 00:00.0 init finished in 2567 usecs
PCI: 00:02.0 init ...
GT Power Management Init
GT Power Management Init (post VBIOS)
Initializing DDI buffers for port 0 in DP mode
Initializing DDI buffers for port 1 in DP mode
Initializing DDI buffers for port 2 in DP mode
Initializing DDI buffers for port 3 in DP mode
Initializing DDI buffers for port 4 in FDI mode
NATIVE graphics, run native enable
[0.957990] CONFIG =>
[0.958338] (Primary =>
[0.958602] (Port => Internal,
[0.958912] Framebuffer =>
[0.959202] (Width => 1920,
[0.959525] Height => 1080,
[0.959847] Start_X => 0,
[0.960160] Start_Y => 0,
[0.960586] Stride => 1920,
[0.960908] V_Stride => 1080,
[0.961231] Tiling => Linear ,
[0.961573] Rotation => No_Rotation,
[0.961939] Offset => 0x00000000,
[0.962282] BPC => 8),
[0.962578] Mode =>
[0.962948] (Dotclock => 141000000,
[0.963346] H_Visible => 1920,
[0.963718] H_Sync_Begin => 1936,
[0.964090] H_Sync_End => 1952,
[0.964462] H_Total => 2104,
[0.964957] V_Visible => 1080,
[0.965329] V_Sync_Begin => 1083,
[0.965701] V_Sync_End => 1097,
[0.966073] V_Total => 1116,
[0.966445] H_Sync_Active_High => False,
[0.966820] V_Sync_Active_High => False,
[0.967318] BPC => 6)),
[0.967687] Secondary =>
[0.967951] (Port => Disabled,
[0.968261] Framebuffer =>
[0.968551] (Width => 1,
[0.968864] Height => 1,
[0.969177] Start_X => 0,
[0.969602] Start_Y => 0,
[0.969915] Stride => 1,
[0.970228] V_Stride => 1,
[0.970541] Tiling => Linear ,
[0.970884] Rotation => No_Rotation,
[0.971250] Offset => 0x00000000,
[0.971717] BPC => 8),
[0.972024] Mode =>
[0.972281] (Dotclock => 19200000,
[0.972676] H_Visible => 1,
[0.973038] H_Sync_Begin => 1,
[0.973400] H_Sync_End => 1,
[0.973875] H_Total => 1,
[0.974237] V_Visible => 1,
[0.974600] V_Sync_Begin => 1,
[0.974962] V_Sync_End => 1,
[0.975324] V_Total => 1,
[0.975687] H_Sync_Active_High => False,
[0.976185] V_Sync_Active_High => False,
[0.976560] BPC => 5)),
[0.976929] Tertiary =>
[0.977193] (Port => Disabled,
[0.977503] Framebuffer =>
[0.977793] (Width => 1,
[0.978106] Height => 1,
[0.978532] Start_X => 0,
[0.978845] Start_Y => 0,
[0.979158] Stride => 1,
[0.979471] V_Stride => 1,
[0.979784] Tiling => Linear ,
[0.980127] Rotation => No_Rotation,
[0.980616] Offset => 0x00000000,
[0.980959] BPC => 8),
[0.981266] Mode =>
[0.981523] (Dotclock => 19200000,
[0.981918] H_Visible => 1,
[0.982280] H_Sync_Begin => 1,
[0.982642] H_Sync_End => 1,
[0.983117] H_Total => 1,
[0.983479] V_Visible => 1,
[0.983841] V_Sync_Begin => 1,
[0.984204] V_Sync_End => 1,
[0.984566] V_Total => 1,
[0.985041] H_Sync_Active_High => False,
[0.985416] V_Sync_Active_High => False,
[0.985791] BPC => 5)));
PCI: 00:02.0 init finished in 247587 usecs
PCI: 00:03.0 init ...
Mini-HD: base = e0818000
HDA: No codec!
PCI: 00:03.0 init finished in 51734 usecs
PCI: 00:04.0 init ...
PCI: 00:04.0 init finished in 239 usecs
PCI: 00:14.0 init ...
IOBP: set 0xe5004001 to 0x000000ce
PCI: 00:14.0 init finished in 592 usecs
PCI: 00:16.0 init ...
ME: FW Partition Table : OK
ME: Bringup Loader Failure : NO
ME: Firmware Init Complete : YES
ME: Manufacturing Mode : YES
ME: Boot Options Present : NO
ME: Update In Progress : NO
ME: Current Working State : Recovery
ME: Current Operation State : M0 with UMA
ME: Current Operation Mode : Normal
ME: Error Code : No Error
ME: Progress Phase : Host Communication
ME: Power Management Event : Clean Moff->Mx wake
ME: Progress Phase State : Host communication established
ME: BIOS path: Recovery
ME MBP: Header: items: 8, size dw: 35
ME: found version 9.0.30.1482
ME: Wake Event to ME Reset: 0 ms
ME: ME Reset to Platform Reset: 0 ms
ME: Platform Reset to CPU Reset: 37 ms
PCI: 00:16.0 init finished in 6797 usecs
PCI: 00:1a.0 init ...
EHCI: Setting up controller.. IOBP: set 0xe5004001 to 0x000000ce
done.
PCI: 00:1a.0 init finished in 1137 usecs
PCI: 00:1b.0 init ...
Azalia: base = e081c000
Azalia: codec_mask = 01
HDA: Initializing codec #0
HDA: codec viddid: 10ec0282
HDA: No verb table entry found
PCI: 00:1b.0 init finished in 2634 usecs
PCI: 00:1c.0 init ...
Initializing PCH PCIe bridge.
PCI: 00:1c.0 init finished in 520 usecs
PCI: 00:1c.1 init ...
Initializing PCH PCIe bridge.
PCI: 00:1c.1 init finished in 520 usecs
PCI: 00:1c.2 init ...
Initializing PCH PCIe bridge.
PCI: 00:1c.2 init finished in 655 usecs
PCI: 00:1d.0 init ...
EHCI: Setting up controller.. IOBP: set 0xe5004001 to 0x000000ce
done.
PCI: 00:1d.0 init finished in 1014 usecs
PCI: 00:1f.0 init ...
pch: lpc_init
IOAPIC: Initializing IOAPIC at 0xfec00000
IOAPIC: Bootstrap Processor Local APIC = 0x00
IOAPIC: ID = 0x02
IOAPIC: Dumping registers
reg 0x0000: 0x02000000
reg 0x0001: 0x00170020
reg 0x0002: 0x00170020
Set power off after power failure.
NMI sources disabled.
LynxPoint PM init
RTC: failed = 0x0
RTC Init
Enabling BIOS updates outside of SMM... Disabling ACPI via APMC:
done.
PCI: 00:1f.0 init finished in 4594 usecs
PCI: 00:1f.2 init ...
SATA: Initializing...
SATA: Controller in AHCI mode.
ABAR: e0821000
PCI: 00:1f.2 init finished in 1110 usecs
PCI: 00:1f.3 init ...
PCI: 00:1f.3 init finished in 270 usecs
PCI: 00:1f.6 init ...
PCI: 00:1f.6 init finished in 264 usecs
PCI: 02:00.0 init ...
PCI: 02:00.0 init finished in 264 usecs
PCI: 03:00.0 init ...
PCI: 03:00.0 init finished in 264 usecs
PCI: 04:00.0 init ...
PCI: 04:00.0 init finished in 265 usecs
Devices initialized
Show all devs... After init.
Root Device: enabled 1
CPU_CLUSTER: 0: enabled 1
DOMAIN: 0000: enabled 1
APIC: 00: enabled 1
APIC: acac: enabled 0
PCI: 00:14.0: enabled 1
PCI: 00:16.0: enabled 1
PCI: 00:16.1: enabled 0
PCI: 00:16.2: enabled 0
PCI: 00:16.3: enabled 0
PCI: 00:19.0: enabled 0
PCI: 00:1a.0: enabled 1
PCI: 00:1b.0: enabled 1
PCI: 00:1c.0: enabled 1
PCI: 00:1c.1: enabled 1
PCI: 00:1c.2: enabled 1
PCI: 00:1c.3: enabled 0
PCI: 00:1c.4: enabled 0
PCI: 00:1c.5: enabled 0
PCI: 00:1c.6: enabled 0
PCI: 00:1c.7: enabled 0
PCI: 00:1d.0: enabled 1
PCI: 00:1f.0: enabled 1
PCI: 00:1f.2: enabled 1
PCI: 00:1f.3: enabled 1
PCI: 00:1f.5: enabled 0
PCI: 00:1f.6: enabled 1
PCI: 00:00.0: enabled 1
PCI: 00:01.0: enabled 1
PCI: 00:02.0: enabled 1
PCI: 00:03.0: enabled 1
PCI: 00:04.0: enabled 1
PCI: 02:00.0: enabled 1
PCI: 03:00.0: enabled 1
PCI: 04:00.0: enabled 1
APIC: 02: enabled 1
APIC: 01: enabled 1
APIC: 03: enabled 1
APIC: 05: enabled 1
APIC: 04: enabled 1
APIC: 07: enabled 1
APIC: 06: enabled 1
BS: BS_DEV_INIT times (us): entry 7 run 749058 exit 0
Finalize devices...
PCI: 00:1f.0 final
coreboot-4.9-1234-g6766d6f962-dirty Sun Apr 28 19:56:57 UTC 2019 romstage starting (log level: 8)...
Disabling Watchdog reboot... done.
SMBus controller enabled.
Setting up static northbridge registers... done.
Started PEG10 link training.
Temporarily hiding PEG10.
Initializing IGD...
Back from haswell_early_initialization()
CPU id(306c3) ucode:00000017 Intel(R) Core(TM) i7-4710HQ CPU @ 2.50GHz
AES supported, TXT NOT supported, VT supported
PCH type: HM87, device id: 8c4b, rev id 5
Starting UEFI PEI System Agent
FMAP: area RW_MRC_CACHE found @ 720000 (65536 bytes)
MRC: no data in 'RW_MRC_CACHE'
FMAP: area COREBOOT found @ 730200 (851456 bytes)
CBFS: Locating 'mrc.bin'
CBFS: Found @ offset 6fdc0 size 2eb04
System Agent: Starting up...
System Agent: Initializing PCH
install_ppi: overwrite GUID {ed097352-9041-445a-80b6-b29d509e8845}
install_ppi: overwrite GUID {908c7f8b-5c48-47fb-8357-f5fd4e235276}
System Agent: Initializing PCH (SMBUS)
System Agent: Initializing PCH (USB)
System Agent: Initializing PCH (SA Init)
System Agent: Initializing PCH (Me UMA)
System Agent: Initializing Memory
System Agent: Done.
Sanity checking heap.
System Agent Version 1.6.1 Build 2
memcfg DDR3 clock 1600 MHz
memcfg channel assignment: A: 0, B 1, C 2
memcfg channel[0] config (00620020):
ECC inactive
enhanced interleave mode on
rank interleave on
DIMMA 8192 MB width x8 or x32 dual rank, selected
DIMMB 0 MB width x8 or x32 single rank
memcfg channel[1] config (00620020):
ECC inactive
enhanced interleave mode on
rank interleave on
DIMMA 8192 MB width x8 or x32 dual rank, selected
DIMMB 0 MB width x8 or x32 single rank
ME: FW Partition Table : OK
ME: Bringup Loader Failure : NO
ME: Firmware Init Complete : NO
ME: Manufacturing Mode : YES
ME: Boot Options Present : NO
ME: Update In Progress : NO
ME: Current Working State : Normal
ME: Current Operation State : M0 with UMA
ME: Current Operation Mode : Normal
ME: Error Code : No Error
ME: Progress Phase : BUP Phase
ME: Power Management Event : Clean Moff->Mx wake
ME: Progress Phase State : M0 kernel load
CBMEM:
IMD: root @ 7f7ff000 254 entries.
IMD: root @ 7f7fec00 62 entries.
External stage cache:
IMD: root @ 7fbff000 254 entries.
IMD: root @ 7fbfec00 62 entries.
Unhiding PEG10.
MTRR Range: Start=ff800000 End=0 (Size 800000)
MTRR Range: Start=0 End=1000000 (Size 1000000)
MTRR Range: Start=7f000000 End=80000000 (Size 1000000)
CBFS @ 730200 size cfe00
CBFS: 'Master Header Locator' located CBFS at [730200:800000)
CBFS: Locating 'fallback/postcar'
CBFS: Found @ offset 5ef00 size 929c
Decompressing stage fallback/postcar @ 0x7f7c9fc0 (52520 bytes)
Loading module at 7f7ca000 with entry 7f7ca000. filesize: 0x88d0 memsize: 0xcce8
Processing 604 relocs. Offset value of 0x7d7ca000
coreboot-4.9-1234-g6766d6f962-dirty Sun Apr 28 19:56:57 UTC 2019 postcar starting (log level: 8)...
CBFS @ 730200 size cfe00
CBFS: 'Master Header Locator' located CBFS at [730200:800000)
CBFS: Locating 'fallback/ramstage'
CBFS: Found @ offset 3ee80 size 186e6
Decompressing stage fallback/ramstage @ 0x7f781fc0 (290136 bytes)
Loading module at 7f782000 with entry 7f782000. filesize: 0x31570 memsize: 0x46d18
Processing 3362 relocs. Offset value of 0x7e982000
coreboot-4.9-1234-g6766d6f962-dirty Sun Apr 28 19:56:57 UTC 2019 ramstage starting (log level: 8)...
Normal boot.
BS: BS_PRE_DEVICE times (us): entry 0 run 2 exit 0
BS: BS_DEV_INIT_CHIPS times (us): entry 0 run 3 exit 0
Enumerating buses...
Show all devs... Before device enumeration.
Root Device: enabled 1
CPU_CLUSTER: 0: enabled 1
DOMAIN: 0000: enabled 1
APIC: 00: enabled 1
APIC: acac: enabled 0
PCI: 00:14.0: enabled 1
PCI: 00:16.0: enabled 1
PCI: 00:16.1: enabled 0
PCI: 00:16.2: enabled 0
PCI: 00:16.3: enabled 0
PCI: 00:1a.0: enabled 1
PCI: 00:1b.0: enabled 1
PCI: 00:1c.0: enabled 1
PCI: 00:1c.1: enabled 1
PCI: 00:1c.2: enabled 1
PCI: 00:1c.3: enabled 0
PCI: 00:1c.4: enabled 0
PCI: 00:1c.5: enabled 0
PCI: 00:1c.6: enabled 0
PCI: 00:1c.7: enabled 0
PCI: 00:1d.0: enabled 1
PCI: 00:1f.0: enabled 1
PCI: 00:1f.2: enabled 1
PCI: 00:1f.3: enabled 1
PCI: 00:1f.6: enabled 1
PCI: 00:00.0: enabled 1
PCI: 00:01.0: enabled 1
PCI: 00:02.0: enabled 1
PCI: 00:03.0: enabled 1
PNP: 004e.0: enabled 0
PNP: 004e.3: enabled 0
PNP: 004e.4: enabled 1
PNP: 004e.5: enabled 1
PNP: 004e.7: enabled 1
PNP: 004e.a: enabled 1
Compare with tree...
Root Device: enabled 1
CPU_CLUSTER: 0: enabled 1
APIC: 00: enabled 1
APIC: acac: enabled 0
DOMAIN: 0000: enabled 1
PCI: 00:14.0: enabled 1
PCI: 00:16.0: enabled 1
PCI: 00:16.1: enabled 0
PCI: 00:16.2: enabled 0
PCI: 00:16.3: enabled 0
PCI: 00:1a.0: enabled 1
PCI: 00:1b.0: enabled 1
PCI: 00:1c.0: enabled 1
PCI: 00:1c.1: enabled 1
PCI: 00:1c.2: enabled 1
PCI: 00:1c.3: enabled 0
PCI: 00:1c.4: enabled 0
PCI: 00:1c.5: enabled 0
PCI: 00:1c.6: enabled 0
PCI: 00:1c.7: enabled 0
PCI: 00:1d.0: enabled 1
PCI: 00:1f.0: enabled 1
PNP: 004e.0: enabled 0
PNP: 004e.3: enabled 0
PNP: 004e.4: enabled 1
PNP: 004e.5: enabled 1
PNP: 004e.7: enabled 1
PNP: 004e.a: enabled 1
PCI: 00:1f.2: enabled 1
PCI: 00:1f.3: enabled 1
PCI: 00:1f.6: enabled 1
PCI: 00:00.0: enabled 1
PCI: 00:01.0: enabled 1
PCI: 00:02.0: enabled 1
PCI: 00:03.0: enabled 1
Root Device scanning...
root_dev_scan_bus for Root Device
CPU_CLUSTER: 0 enabled
DOMAIN: 0000 enabled
DOMAIN: 0000 scanning...
PCI: pci_scan_bus for bus 00
PCI: 00:00.0 [8086/0000] ops
PCI: 00:00.0 [8086/0c04] enabled
Capability: type 0x0d @ 0x88
Capability: type 0x01 @ 0x80
Capability: type 0x05 @ 0x90
Capability: type 0x10 @ 0xa0
Capability: type 0x0d @ 0x88
Capability: type 0x01 @ 0x80
Capability: type 0x05 @ 0x90
Capability: type 0x10 @ 0xa0
PCI: 00:01.0 subordinate bus PCI Express
PCI: 00:01.0 [8086/0c01] enabled
PCI: 00:02.0 [8086/0000] ops
PCI: 00:02.0 [8086/0416] enabled
PCI: 00:03.0 [8086/0000] ops
PCI: 00:03.0 [8086/0c0c] enabled
PCI: 00:04.0 [8086/0c03] enabled
PCI: 00:14.0 [8086/0000] ops
PCI: 00:14.0 [8086/8c31] enabled
PCI: 00:16.0 [8086/0000] ops
PCI: 00:16.0 [8086/8c3a] enabled
PCI: 00:16.1: Disabling device
PCI: 00:16.2: Disabling device
PCI: 00:16.2 [8086/8c3c] disabled No operations
PCI: 00:16.3: Disabling device
PCI: 00:16.3 [8086/8c3d] disabled No operations
PCI: 00:1a.0 [8086/0000] ops
PCI: 00:1a.0 [8086/8c2d] enabled
PCI: 00:1b.0 [8086/0000] ops
PCI: 00:1b.0 [8086/8c20] enabled
PCI: 00:1c.0 [8086/0000] bus ops
PCIe Root Port 1 ASPM is disabled
PCI: 00:1c.0 [8086/8c10] enabled
PCI: 00:1c.1 [8086/0000] bus ops
PCIe Root Port 2 ASPM is disabled
PCI: 00:1c.1 [8086/8c12] enabled
PCI: 00:1c.2 [8086/0000] bus ops
PCIe Root Port 3 ASPM is disabled
PCI: 00:1c.2 [8086/8c14] enabled
PCI: 00:1c.3 [8086/0000] bus ops
PCI: 00:1c.3 [8086/8c16] disabled
PCI: 00:1c.4 [8086/0000] bus ops
PCI: 00:1c.4 [8086/8c18] disabled
PCI: 00:1c.5 [8086/0000] bus ops
PCI: 00:1c.5 [8086/8c1a] disabled
PCI: 00:1c.6 [8086/0000] bus ops
PCI: 00:1c.6 [8086/8c1c] disabled
PCI: 00:1c.7 [8086/0000] bus ops
PCI: 00:1c.3: Disabling device
PCI: 00:1c.4: Disabling device
PCI: 00:1c.5: Disabling device
PCI: 00:1c.6: Disabling device
PCI: 00:1c.7: Disabling device
PCH: RPFN 0x76543210 -> 0xfedcb210
PCI: 00:1c.7 [8086/8c1e] disabled
PCI: 00:1d.0 [8086/0000] ops
PCI: 00:1d.0 [8086/8c26] enabled
PCI: 00:1f.0 [8086/0000] bus ops
PCI: 00:1f.0 [8086/8c4b] enabled
PCI: 00:1f.2 [8086/0000] ops
PCI: 00:1f.2 [8086/8c03] enabled
PCI: 00:1f.3 [8086/0000] bus ops
PCI: 00:1f.3 [8086/8c22] enabled
PCI: 00:1f.6 [8086/8c24] enabled
PCI: Leftover static devices:
PCI: 00:16.1
PCI: Check your devicetree.cb.
PCI: 00:01.0 scanning...
do_pci_scan_bridge for PCI: 00:01.0
PCI: pci_scan_bus for bus 01
scan_bus: scanning of bus PCI: 00:01.0 took 1038 usecs
PCI: 00:1c.0 scanning...
do_pci_scan_bridge for PCI: 00:1c.0
PCI: pci_scan_bus for bus 02
PCI: 02:00.0 [10ec/5227] enabled
Capability: type 0x01 @ 0x40
Capability: type 0x05 @ 0x50
Capability: type 0x10 @ 0x70
Capability: type 0x10 @ 0x40
Enabling Common Clock Configuration
ASPM: Enabled L0s and L1
Capability: type 0x01 @ 0x40
Capability: type 0x05 @ 0x50
Capability: type 0x10 @ 0x70
scan_bus: scanning of bus PCI: 00:1c.0 took 4202 usecs
PCI: 00:1c.1 scanning...
do_pci_scan_bridge for PCI: 00:1c.1
PCI: pci_scan_bus for bus 03
PCI: 03:00.0 [10ec/8168] enabled
Capability: type 0x01 @ 0x40
Capability: type 0x05 @ 0x50
Capability: type 0x10 @ 0x70
Capability: type 0x10 @ 0x40
Enabling Common Clock Configuration
ASPM: Enabled L1
Capability: type 0x01 @ 0x40
Capability: type 0x05 @ 0x50
Capability: type 0x10 @ 0x70
scan_bus: scanning of bus PCI: 00:1c.1 took 4146 usecs
PCI: 00:1c.2 scanning...
do_pci_scan_bridge for PCI: 00:1c.2
PCI: pci_scan_bus for bus 04
PCI: 04:00.0 [8086/0000] ops
PCI: 04:00.0 [8086/08b1] enabled
Capability: type 0x01 @ 0xc8
Capability: type 0x05 @ 0xd0
Capability: type 0x10 @ 0x40
Capability: type 0x10 @ 0x40
Enabling Common Clock Configuration
ASPM: Enabled L1
Capability: type 0x01 @ 0xc8
Capability: type 0x05 @ 0xd0
Capability: type 0x10 @ 0x40
scan_bus: scanning of bus PCI: 00:1c.2 took 4629 usecs
PCI: 00:1f.0 scanning...
scan_lpc_bus for PCI: 00:1f.0
PNP: 004e.0 disabled
PNP: 004e.3 disabled
PNP: 004e.4 enabled
PNP: 004e.5 enabled
PNP: 004e.7 enabled
PNP: 004e.a enabled
scan_lpc_bus for PCI: 00:1f.0 done
scan_bus: scanning of bus PCI: 00:1f.0 took 2528 usecs
PCI: 00:1f.3 scanning...
scan_generic_bus for PCI: 00:1f.3
scan_generic_bus for PCI: 00:1f.3 done
scan_bus: scanning of bus PCI: 00:1f.3 took 1183 usecs
scan_bus: scanning of bus DOMAIN: 0000 took 43349 usecs
root_dev_scan_bus for Root Device done
scan_bus: scanning of bus Root Device took 45454 usecs
done
FMAP: area RW_MRC_CACHE found @ 720000 (65536 bytes)
MRC: Checking cached data update for 'RW_MRC_CACHE'.
MRC: no data in 'RW_MRC_CACHE'
MRC: cache data 'RW_MRC_CACHE' needs update.
BS: BS_DEV_ENUMERATE times (us): entry 0 run 66758 exit 21823
found VGA at PCI: 00:02.0
Setting up VGA for PCI: 00:02.0
Setting PCI_BRIDGE_CTL_VGA for bridge DOMAIN: 0000
Setting PCI_BRIDGE_CTL_VGA for bridge Root Device
Allocating resources...
Reading resources...
Root Device read_resources bus 0 link: 0
CPU_CLUSTER: 0 read_resources bus 0 link: 0
CPU_CLUSTER: 0 read_resources bus 0 link: 0 done
DOMAIN: 0000 read_resources bus 0 link: 0
mc_add_fixed_mmio_resources: Adding PCIEXBAR @ 60 0xf0000000-0xf3ffffff.
mc_add_fixed_mmio_resources: Adding MCHBAR @ 48 0xfed10000-0xfed17fff.
mc_add_fixed_mmio_resources: Adding DMIBAR @ 68 0xfed18000-0xfed18fff.
mc_add_fixed_mmio_resources: Adding EPBAR @ 40 0xfed19000-0xfed19fff.
mc_add_fixed_mmio_resources: Adding GDXCBAR @ 5420 0xfed84000-0xfed84fff.
MC MAP: TOM: 0x400000000
MC MAP: TOUUD: 0x47ce00000
MC MAP: MESEG_BASE: 0x3ff000000
MC MAP: MESEG_LIMIT: 0x7fff0fffff
MC MAP: REMAP_BASE: 0x3ff000000
MC MAP: REMAP_LIMIT: 0x47cdfffff
MC MAP: TOLUD: 0x82200000
MC MAP: BGSM: 0x80000000
MC MAP: BDSM: 0x80200000
MC MAP: TESGMB: 0x7f800000
MC MAP: GGC: 0x209
PCI: 00:01.0 read_resources bus 1 link: 0
PCI: 00:01.0 read_resources bus 1 link: 0 done
PCI: 00:1c.0 read_resources bus 2 link: 0
PCI: 00:1c.0 read_resources bus 2 link: 0 done
PCI: 00:1c.1 read_resources bus 3 link: 0
PCI: 00:1c.1 read_resources bus 3 link: 0 done
PCI: 00:1c.2 read_resources bus 4 link: 0
PCI: 00:1c.2 read_resources bus 4 link: 0 done
PCI: 00:1f.0 read_resources bus 0 link: 0
PNP: 004e.4 missing read_resources
PNP: 004e.5 missing read_resources
PNP: 004e.7 missing read_resources
PNP: 004e.a missing read_resources
PCI: 00:1f.0 read_resources bus 0 link: 0 done
DOMAIN: 0000 read_resources bus 0 link: 0 done
Root Device read_resources bus 0 link: 0 done
Done reading resources.
Show resources in subtree (Root Device)...After reading.
Root Device child on link 0 CPU_CLUSTER: 0
CPU_CLUSTER: 0 child on link 0 APIC: 00
APIC: 00
APIC: acac
DOMAIN: 0000 child on link 0 PCI: 00:00.0
DOMAIN: 0000 resource base 0 size 0 align 0 gran 0 limit ffff flags 40040100 index 10000000
DOMAIN: 0000 resource base 0 size 0 align 0 gran 0 limit ffffffff flags 40040200 index 10000100
PCI: 00:00.0
PCI: 00:00.0 resource base f0000000 size 4000000 align 0 gran 0 limit 0 flags f0000200 index 60
PCI: 00:00.0 resource base fed10000 size 8000 align 0 gran 0 limit 0 flags f0000200 index 48
PCI: 00:00.0 resource base fed18000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 68
PCI: 00:00.0 resource base fed19000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 40
PCI: 00:00.0 resource base fed84000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 5420
PCI: 00:00.0 resource base fed90000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 0
PCI: 00:00.0 resource base fed91000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 1
PCI: 00:00.0 resource base 0 size a0000 align 0 gran 0 limit 0 flags e0004200 index 2
PCI: 00:00.0 resource base c0000 size 7f740000 align 0 gran 0 limit 0 flags e0004200 index 3
PCI: 00:00.0 resource base 7f800000 size 800000 align 0 gran 0 limit 0 flags f0004200 index 4
PCI: 00:00.0 resource base 80000000 size 2200000 align 0 gran 0 limit 0 flags f0000200 index 5
PCI: 00:00.0 resource base 100000000 size 37ce00000 align 0 gran 0 limit 0 flags e0004200 index 6
PCI: 00:00.0 resource base a0000 size 20000 align 0 gran 0 limit 0 flags f0000200 index 7
PCI: 00:00.0 resource base c0000 size 40000 align 0 gran 0 limit 0 flags f0004200 index 8
PCI: 00:01.0
PCI: 00:01.0 resource base 0 size 0 align 12 gran 12 limit ffff flags 80102 index 1c
PCI: 00:01.0 resource base 0 size 0 align 20 gran 20 limit ffffffffffffffff flags 81202 index 24
PCI: 00:01.0 resource base 0 size 0 align 20 gran 20 limit ffffffff flags 80202 index 20
PCI: 00:02.0
PCI: 00:02.0 resource base 0 size 400000 align 22 gran 22 limit ffffffffffffffff flags 201 index 10
PCI: 00:02.0 resource base 0 size 10000000 align 28 gran 28 limit ffffffffffffffff flags 1201 index 18
PCI: 00:02.0 resource base 0 size 40 align 6 gran 6 limit ffff flags 100 index 20
PCI: 00:03.0
PCI: 00:03.0 resource base 0 size 4000 align 14 gran 14 limit ffffffffffffffff flags 201 index 10
PCI: 00:04.0
PCI: 00:04.0 resource base 0 size 8000 align 15 gran 15 limit ffffffffffffffff flags 201 index 10
PCI: 00:14.0
PCI: 00:14.0 resource base 0 size 10000 align 16 gran 16 limit ffffffffffffffff flags 201 index 10
PCI: 00:16.0
PCI: 00:16.0 resource base 0 size 10 align 12 gran 4 limit ffffffffffffffff flags 201 index 10
PCI: 00:16.2
PCI: 00:16.3
PCI: 00:1a.0
PCI: 00:1a.0 resource base 0 size 400 align 12 gran 10 limit ffffffff flags 200 index 10
PCI: 00:1b.0
PCI: 00:1b.0 resource base 0 size 4000 align 14 gran 14 limit ffffffffffffffff flags 201 index 10
PCI: 00:1c.0 child on link 0 PCI: 02:00.0
PCI: 00:1c.0 resource base 0 size 0 align 12 gran 12 limit ffff flags 80102 index 1c
PCI: 00:1c.0 resource base 0 size 0 align 20 gran 20 limit ffffffffffffffff flags 81202 index 24
PCI: 00:1c.0 resource base 0 size 0 align 20 gran 20 limit ffffffff flags 80202 index 20
PCI: 02:00.0
PCI: 02:00.0 resource base 0 size 1000 align 12 gran 12 limit ffffffff flags 200 index 10
PCI: 00:1c.1 child on link 0 PCI: 03:00.0
PCI: 00:1c.1 resource base 0 size 0 align 12 gran 12 limit ffff flags 80102 index 1c
PCI: 00:1c.1 resource base 0 size 0 align 20 gran 20 limit ffffffffffffffff flags 81202 index 24
PCI: 00:1c.1 resource base 0 size 0 align 20 gran 20 limit ffffffff flags 80202 index 20
PCI: 03:00.0
PCI: 03:00.0 resource base 0 size 100 align 8 gran 8 limit ffff flags 100 index 10
PCI: 03:00.0 resource base 0 size 1000 align 12 gran 12 limit ffffffffffffffff flags 201 index 18
PCI: 03:00.0 resource base 0 size 4000 align 14 gran 14 limit ffffffffffffffff flags 1201 index 20
PCI: 00:1c.2 child on link 0 PCI: 04:00.0
PCI: 00:1c.2 resource base 0 size 0 align 12 gran 12 limit ffff flags 80102 index 1c
PCI: 00:1c.2 resource base 0 size 0 align 20 gran 20 limit ffffffffffffffff flags 81202 index 24
PCI: 00:1c.2 resource base 0 size 0 align 20 gran 20 limit ffffffff flags 80202 index 20
PCI: 04:00.0
PCI: 04:00.0 resource base 0 size 2000 align 13 gran 13 limit ffffffffffffffff flags 201 index 10
PCI: 00:1c.3
PCI: 00:1c.4
PCI: 00:1c.5
PCI: 00:1c.6
PCI: 00:1c.7
PCI: 00:1d.0
PCI: 00:1d.0 resource base 0 size 400 align 12 gran 10 limit ffffffff flags 200 index 10
PCI: 00:1f.0 child on link 0 PNP: 004e.0
PCI: 00:1f.0 resource base fec00000 size 1400000 align 0 gran 0 limit 0 flags c0000200 index 31fe
PCI: 00:1f.0 resource base 0 size 1000 align 0 gran 0 limit 0 flags c0000100 index 0
PNP: 004e.0
PNP: 004e.3
PNP: 004e.4
PNP: 004e.4 resource base 3f8 size 0 align 0 gran 0 limit 0 flags c0000100 index 60
PNP: 004e.4 resource base 4 size 0 align 0 gran 0 limit 0 flags c0000400 index 70
PNP: 004e.5
PNP: 004e.5 resource base 2f8 size 0 align 0 gran 0 limit 0 flags c0000100 index 60
PNP: 004e.5 resource base 3 size 0 align 0 gran 0 limit 0 flags c0000400 index 70
PNP: 004e.7
PNP: 004e.7 resource base 60 size 0 align 0 gran 0 limit 0 flags c0000100 index 60
PNP: 004e.7 resource base 64 size 0 align 0 gran 0 limit 0 flags c0000100 index 62
PNP: 004e.7 resource base 1 size 0 align 0 gran 0 limit 0 flags c0000400 index 70
PNP: 004e.7 resource base c size 0 align 0 gran 0 limit 0 flags c0000400 index 72
PNP: 004e.a
PNP: 004e.a resource base e00 size 0 align 0 gran 0 limit 0 flags c0000100 index 60
PNP: 004e.a resource base b size 0 align 0 gran 0 limit 0 flags c0000800 index f0
PCI: 00:1f.2
PCI: 00:1f.2 resource base 0 size 8 align 3 gran 3 limit ffff flags 100 index 10
PCI: 00:1f.2 resource base 0 size 4 align 2 gran 2 limit ffff flags 100 index 14
PCI: 00:1f.2 resource base 0 size 8 align 3 gran 3 limit ffff flags 100 index 18
PCI: 00:1f.2 resource base 0 size 4 align 2 gran 2 limit ffff flags 100 index 1c
PCI: 00:1f.2 resource base 0 size 20 align 5 gran 5 limit ffff flags 100 index 20
PCI: 00:1f.2 resource base 0 size 800 align 12 gran 11 limit ffffffff flags 200 index 24
PCI: 00:1f.3
PCI: 00:1f.3 resource base 400 size 20 align 0 gran 0 limit 41f flags f0000100 index 20
PCI: 00:1f.3 resource base 0 size 100 align 12 gran 8 limit ffffffffffffffff flags 201 index 10
PCI: 00:1f.6
PCI: 00:1f.6 resource base 0 size 1000 align 12 gran 12 limit ffffffffffffffff flags 201 index 10
DOMAIN: 0000 io: base: 0 size: 0 align: 0 gran: 0 limit: ffff
PCI: 00:01.0 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff
PCI: 00:01.0 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff done
PCI: 00:1c.0 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff
PCI: 00:1c.0 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff done
PCI: 00:1c.1 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff
PCI: 03:00.0 10 * [0x0 - 0xff] io
PCI: 00:1c.1 io: base: 100 size: 1000 align: 12 gran: 12 limit: ffff done
PCI: 00:1c.2 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff
PCI: 00:1c.2 io: base: 0 size: 0 align: 12 gran: 12 limit: ffff done
PCI: 00:1c.1 1c * [0x0 - 0xfff] io
PCI: 00:02.0 20 * [0x1000 - 0x103f] io
PCI: 00:1f.2 20 * [0x1040 - 0x105f] io
PCI: 00:1f.2 10 * [0x1060 - 0x1067] io
PCI: 00:1f.2 18 * [0x1068 - 0x106f] io
PCI: 00:1f.2 14 * [0x1070 - 0x1073] io
PCI: 00:1f.2 1c * [0x1074 - 0x1077] io
DOMAIN: 0000 io: base: 1078 size: 1078 align: 12 gran: 0 limit: ffff done
DOMAIN: 0000 mem: base: 0 size: 0 align: 0 gran: 0 limit: ffffffff
PCI: 00:01.0 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff
PCI: 00:01.0 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff done
PCI: 00:01.0 mem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffff
PCI: 00:01.0 mem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffff done
PCI: 00:1c.0 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff
PCI: 00:1c.0 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff done
PCI: 00:1c.0 mem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffff
PCI: 02:00.0 10 * [0x0 - 0xfff] mem
PCI: 00:1c.0 mem: base: 1000 size: 100000 align: 20 gran: 20 limit: ffffffff done
PCI: 00:1c.1 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff
PCI: 03:00.0 20 * [0x0 - 0x3fff] prefmem
PCI: 00:1c.1 prefmem: base: 4000 size: 100000 align: 20 gran: 20 limit: ffffffffffffffff done
PCI: 00:1c.1 mem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffff
PCI: 03:00.0 18 * [0x0 - 0xfff] mem
PCI: 00:1c.1 mem: base: 1000 size: 100000 align: 20 gran: 20 limit: ffffffff done
PCI: 00:1c.2 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff
PCI: 00:1c.2 prefmem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffffffffffff done
PCI: 00:1c.2 mem: base: 0 size: 0 align: 20 gran: 20 limit: ffffffff
PCI: 04:00.0 10 * [0x0 - 0x1fff] mem
PCI: 00:1c.2 mem: base: 2000 size: 100000 align: 20 gran: 20 limit: ffffffff done
PCI: 00:02.0 18 * [0x0 - 0xfffffff] prefmem
PCI: 00:02.0 10 * [0x10000000 - 0x103fffff] mem
PCI: 00:1c.0 20 * [0x10400000 - 0x104fffff] mem
PCI: 00:1c.1 24 * [0x10500000 - 0x105fffff] prefmem
PCI: 00:1c.1 20 * [0x10600000 - 0x106fffff] mem
PCI: 00:1c.2 20 * [0x10700000 - 0x107fffff] mem
PCI: 00:14.0 10 * [0x10800000 - 0x1080ffff] mem
PCI: 00:04.0 10 * [0x10810000 - 0x10817fff] mem
PCI: 00:03.0 10 * [0x10818000 - 0x1081bfff] mem
PCI: 00:1b.0 10 * [0x1081c000 - 0x1081ffff] mem
PCI: 00:1f.6 10 * [0x10820000 - 0x10820fff] mem
PCI: 00:1f.2 24 * [0x10821000 - 0x108217ff] mem
PCI: 00:1a.0 10 * [0x10822000 - 0x108223ff] mem
PCI: 00:1d.0 10 * [0x10823000 - 0x108233ff] mem
PCI: 00:1f.3 10 * [0x10824000 - 0x108240ff] mem
PCI: 00:16.0 10 * [0x10825000 - 0x1082500f] mem
DOMAIN: 0000 mem: base: 10825010 size: 10825010 align: 28 gran: 0 limit: ffffffff done
avoid_fixed_resources: DOMAIN: 0000
avoid_fixed_resources:@DOMAIN: 0000 10000000 limit 0000ffff
avoid_fixed_resources:@DOMAIN: 0000 10000100 limit ffffffff
constrain_resources: PCI: 00:00.0 60 base f0000000 limit f3ffffff mem (fixed)
constrain_resources: PCI: 00:00.0 02 base 00000000 limit 0009ffff mem (fixed)
constrain_resources: PCI: 00:00.0 03 base 000c0000 limit 7f7fffff mem (fixed)
constrain_resources: PCI: 00:00.0 04 base 7f800000 limit 7fffffff mem (fixed)
constrain_resources: PCI: 00:00.0 05 base 80000000 limit 821fffff mem (fixed)
constrain_resources: PCI: 00:1f.0 00 base 00000000 limit 00000fff io (fixed)
skipping PNP: 004e.4@60 fixed resource, size=0!
skipping PNP: 004e.4@70 fixed resource, size=0!
skipping PNP: 004e.5@60 fixed resource, size=0!
skipping PNP: 004e.5@70 fixed resource, size=0!
skipping PNP: 004e.7@60 fixed resource, size=0!
skipping PNP: 004e.7@62 fixed resource, size=0!
skipping PNP: 004e.7@70 fixed resource, size=0!
skipping PNP: 004e.7@72 fixed resource, size=0!
skipping PNP: 004e.a@60 fixed resource, size=0!
skipping PNP: 004e.a@f0 fixed resource, size=0!
avoid_fixed_resources:@DOMAIN: 0000 10000000 base 00001000 limit 0000ffff
avoid_fixed_resources:@DOMAIN: 0000 10000100 base d0000000 limit efffffff
Setting resources...
DOMAIN: 0000 io: base:1000 size:1078 align:12 gran:0 limit:ffff
PCI: 00:1c.1 1c * [0x1000 - 0x1fff] io
PCI: 00:02.0 20 * [0x2000 - 0x203f] io
PCI: 00:1f.2 20 * [0x2040 - 0x205f] io
PCI: 00:1f.2 10 * [0x2060 - 0x2067] io
PCI: 00:1f.2 18 * [0x2068 - 0x206f] io
PCI: 00:1f.2 14 * [0x2070 - 0x2073] io
PCI: 00:1f.2 1c * [0x2074 - 0x2077] io
DOMAIN: 0000 io: next_base: 2078 size: 1078 align: 12 gran: 0 done
PCI: 00:01.0 io: base:ffff size:0 align:12 gran:12 limit:ffff
PCI: 00:01.0 io: next_base: ffff size: 0 align: 12 gran: 12 done
PCI: 00:1c.0 io: base:ffff size:0 align:12 gran:12 limit:ffff
PCI: 00:1c.0 io: next_base: ffff size: 0 align: 12 gran: 12 done
PCI: 00:1c.1 io: base:1000 size:1000 align:12 gran:12 limit:1fff
PCI: 03:00.0 10 * [0x1000 - 0x10ff] io
PCI: 00:1c.1 io: next_base: 1100 size: 1000 align: 12 gran: 12 done
PCI: 00:1c.2 io: base:ffff size:0 align:12 gran:12 limit:ffff
PCI: 00:1c.2 io: next_base: ffff size: 0 align: 12 gran: 12 done
DOMAIN: 0000 mem: base:d0000000 size:10825010 align:28 gran:0 limit:efffffff
PCI: 00:02.0 18 * [0xd0000000 - 0xdfffffff] prefmem
PCI: 00:02.0 10 * [0xe0000000 - 0xe03fffff] mem
PCI: 00:1c.0 20 * [0xe0400000 - 0xe04fffff] mem
PCI: 00:1c.1 24 * [0xe0500000 - 0xe05fffff] prefmem
PCI: 00:1c.1 20 * [0xe0600000 - 0xe06fffff] mem
PCI: 00:1c.2 20 * [0xe0700000 - 0xe07fffff] mem
PCI: 00:14.0 10 * [0xe0800000 - 0xe080ffff] mem
PCI: 00:04.0 10 * [0xe0810000 - 0xe0817fff] mem
PCI: 00:03.0 10 * [0xe0818000 - 0xe081bfff] mem
PCI: 00:1b.0 10 * [0xe081c000 - 0xe081ffff] mem
PCI: 00:1f.6 10 * [0xe0820000 - 0xe0820fff] mem
PCI: 00:1f.2 24 * [0xe0821000 - 0xe08217ff] mem
PCI: 00:1a.0 10 * [0xe0822000 - 0xe08223ff] mem
PCI: 00:1d.0 10 * [0xe0823000 - 0xe08233ff] mem
PCI: 00:1f.3 10 * [0xe0824000 - 0xe08240ff] mem
PCI: 00:16.0 10 * [0xe0825000 - 0xe082500f] mem
DOMAIN: 0000 mem: next_base: e0825010 size: 10825010 align: 28 gran: 0 done
PCI: 00:01.0 prefmem: base:efffffff size:0 align:20 gran:20 limit:efffffff
PCI: 00:01.0 prefmem: next_base: efffffff size: 0 align: 20 gran: 20 done
PCI: 00:01.0 mem: base:efffffff size:0 align:20 gran:20 limit:efffffff
PCI: 00:01.0 mem: next_base: efffffff size: 0 align: 20 gran: 20 done
PCI: 00:1c.0 prefmem: base:efffffff size:0 align:20 gran:20 limit:efffffff
PCI: 00:1c.0 prefmem: next_base: efffffff size: 0 align: 20 gran: 20 done
PCI: 00:1c.0 mem: base:e0400000 size:100000 align:20 gran:20 limit:e04fffff
PCI: 02:00.0 10 * [0xe0400000 - 0xe0400fff] mem
PCI: 00:1c.0 mem: next_base: e0401000 size: 100000 align: 20 gran: 20 done
PCI: 00:1c.1 prefmem: base:e0500000 size:100000 align:20 gran:20 limit:e05fffff
PCI: 03:00.0 20 * [0xe0500000 - 0xe0503fff] prefmem
PCI: 00:1c.1 prefmem: next_base: e0504000 size: 100000 align: 20 gran: 20 done
PCI: 00:1c.1 mem: base:e0600000 size:100000 align:20 gran:20 limit:e06fffff
PCI: 03:00.0 18 * [0xe0600000 - 0xe0600fff] mem
PCI: 00:1c.1 mem: next_base: e0601000 size: 100000 align: 20 gran: 20 done
PCI: 00:1c.2 prefmem: base:efffffff size:0 align:20 gran:20 limit:efffffff
PCI: 00:1c.2 prefmem: next_base: efffffff size: 0 align: 20 gran: 20 done
PCI: 00:1c.2 mem: base:e0700000 size:100000 align:20 gran:20 limit:e07fffff
PCI: 04:00.0 10 * [0xe0700000 - 0xe0701fff] mem
PCI: 00:1c.2 mem: next_base: e0702000 size: 100000 align: 20 gran: 20 done
Root Device assign_resources, bus 0 link: 0
DOMAIN: 0000 assign_resources, bus 0 link: 0
PCI: 00:01.0 1c <- [0x000000ffff - 0x000000fffe] size 0x00000000 gran 0x0c bus 01 io
PCI: 00:01.0 24 <- [0x00efffffff - 0x00effffffe] size 0x00000000 gran 0x14 bus 01 prefmem
PCI: 00:01.0 20 <- [0x00efffffff - 0x00effffffe] size 0x00000000 gran 0x14 bus 01 mem
PCI: 00:02.0 10 <- [0x00e0000000 - 0x00e03fffff] size 0x00400000 gran 0x16 mem64
PCI: 00:02.0 18 <- [0x00d0000000 - 0x00dfffffff] size 0x10000000 gran 0x1c prefmem64
PCI: 00:02.0 20 <- [0x0000002000 - 0x000000203f] size 0x00000040 gran 0x06 io
PCI: 00:03.0 10 <- [0x00e0818000 - 0x00e081bfff] size 0x00004000 gran 0x0e mem64
PCI: 00:04.0 10 <- [0x00e0810000 - 0x00e0817fff] size 0x00008000 gran 0x0f mem64
PCI: 00:14.0 10 <- [0x00e0800000 - 0x00e080ffff] size 0x00010000 gran 0x10 mem64
PCI: 00:16.0 10 <- [0x00e0825000 - 0x00e082500f] size 0x00000010 gran 0x04 mem64
PCI: 00:1a.0 10 <- [0x00e0822000 - 0x00e08223ff] size 0x00000400 gran 0x0a mem
PCI: 00:1b.0 10 <- [0x00e081c000 - 0x00e081ffff] size 0x00004000 gran 0x0e mem64
PCI: 00:1c.0 1c <- [0x000000ffff - 0x000000fffe] size 0x00000000 gran 0x0c bus 02 io
PCI: 00:1c.0 24 <- [0x00efffffff - 0x00effffffe] size 0x00000000 gran 0x14 bus 02 prefmem
PCI: 00:1c.0 20 <- [0x00e0400000 - 0x00e04fffff] size 0x00100000 gran 0x14 bus 02 mem
PCI: 00:1c.0 assign_resources, bus 2 link: 0
PCI: 02:00.0 10 <- [0x00e0400000 - 0x00e0400fff] size 0x00001000 gran 0x0c mem
PCI: 00:1c.0 assign_resources, bus 2 link: 0
PCI: 00:1c.1 1c <- [0x0000001000 - 0x0000001fff] size 0x00001000 gran 0x0c bus 03 io
PCI: 00:1c.1 24 <- [0x00e0500000 - 0x00e05fffff] size 0x00100000 gran 0x14 bus 03 prefmem
PCI: 00:1c.1 20 <- [0x00e0600000 - 0x00e06fffff] size 0x00100000 gran 0x14 bus 03 mem
PCI: 00:1c.1 assign_resources, bus 3 link: 0
PCI: 03:00.0 10 <- [0x0000001000 - 0x00000010ff] size 0x00000100 gran 0x08 io
PCI: 03:00.0 18 <- [0x00e0600000 - 0x00e0600fff] size 0x00001000 gran 0x0c mem64
PCI: 03:00.0 20 <- [0x00e0500000 - 0x00e0503fff] size 0x00004000 gran 0x0e prefmem64
PCI: 00:1c.1 assign_resources, bus 3 link: 0
PCI: 00:1c.2 1c <- [0x000000ffff - 0x000000fffe] size 0x00000000 gran 0x0c bus 04 io
PCI: 00:1c.2 24 <- [0x00efffffff - 0x00effffffe] size 0x00000000 gran 0x14 bus 04 prefmem
PCI: 00:1c.2 20 <- [0x00e0700000 - 0x00e07fffff] size 0x00100000 gran 0x14 bus 04 mem
PCI: 00:1c.2 assign_resources, bus 4 link: 0
PCI: 04:00.0 10 <- [0x00e0700000 - 0x00e0701fff] size 0x00002000 gran 0x0d mem64
PCI: 00:1c.2 assign_resources, bus 4 link: 0
PCI: 00:1d.0 10 <- [0x00e0823000 - 0x00e08233ff] size 0x00000400 gran 0x0a mem
PCI: 00:1f.0 assign_resources, bus 0 link: 0
PNP: 004e.4 missing set_resources
PNP: 004e.5 missing set_resources
PNP: 004e.7 missing set_resources
PNP: 004e.a missing set_resources
PCI: 00:1f.0 assign_resources, bus 0 link: 0
PCI: 00:1f.2 10 <- [0x0000002060 - 0x0000002067] size 0x00000008 gran 0x03 io
PCI: 00:1f.2 14 <- [0x0000002070 - 0x0000002073] size 0x00000004 gran 0x02 io
PCI: 00:1f.2 18 <- [0x0000002068 - 0x000000206f] size 0x00000008 gran 0x03 io
PCI: 00:1f.2 1c <- [0x0000002074 - 0x0000002077] size 0x00000004 gran 0x02 io
PCI: 00:1f.2 20 <- [0x0000002040 - 0x000000205f] size 0x00000020 gran 0x05 io
PCI: 00:1f.2 24 <- [0x00e0821000 - 0x00e08217ff] size 0x00000800 gran 0x0b mem
PCI: 00:1f.3 10 <- [0x00e0824000 - 0x00e08240ff] size 0x00000100 gran 0x08 mem64
PCI: 00:1f.6 10 <- [0x00e0820000 - 0x00e0820fff] size 0x00001000 gran 0x0c mem64
DOMAIN: 0000 assign_resources, bus 0 link: 0
Root Device assign_resources, bus 0 link: 0
Done setting resources.
Show resources in subtree (Root Device)...After assigning values.
Root Device child on link 0 CPU_CLUSTER: 0
CPU_CLUSTER: 0 child on link 0 APIC: 00
APIC: 00
APIC: acac
DOMAIN: 0000 child on link 0 PCI: 00:00.0
DOMAIN: 0000 resource base 1000 size 1078 align 12 gran 0 limit ffff flags 40040100 index 10000000
DOMAIN: 0000 resource base d0000000 size 10825010 align 28 gran 0 limit efffffff flags 40040200 index 10000100
PCI: 00:00.0
PCI: 00:00.0 resource base f0000000 size 4000000 align 0 gran 0 limit 0 flags f0000200 index 60
PCI: 00:00.0 resource base fed10000 size 8000 align 0 gran 0 limit 0 flags f0000200 index 48
PCI: 00:00.0 resource base fed18000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 68
PCI: 00:00.0 resource base fed19000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 40
PCI: 00:00.0 resource base fed84000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 5420
PCI: 00:00.0 resource base fed90000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 0
PCI: 00:00.0 resource base fed91000 size 1000 align 0 gran 0 limit 0 flags f0000200 index 1
PCI: 00:00.0 resource base 0 size a0000 align 0 gran 0 limit 0 flags e0004200 index 2
PCI: 00:00.0 resource base c0000 size 7f740000 align 0 gran 0 limit 0 flags e0004200 index 3
PCI: 00:00.0 resource base 7f800000 size 800000 align 0 gran 0 limit 0 flags f0004200 index 4
PCI: 00:00.0 resource base 80000000 size 2200000 align 0 gran 0 limit 0 flags f0000200 index 5
PCI: 00:00.0 resource base 100000000 size 37ce00000 align 0 gran 0 limit 0 flags e0004200 index 6
PCI: 00:00.0 resource base a0000 size 20000 align 0 gran 0 limit 0 flags f0000200 index 7
PCI: 00:00.0 resource base c0000 size 40000 align 0 gran 0 limit 0 flags f0004200 index 8
PCI: 00:01.0
PCI: 00:01.0 resource base ffff size 0 align 12 gran 12 limit ffff flags 60080102 index 1c
PCI: 00:01.0 resource base efffffff size 0 align 20 gran 20 limit efffffff flags 60081202 index 24
PCI: 00:01.0 resource base efffffff size 0 align 20 gran 20 limit efffffff flags 60080202 index 20
PCI: 00:02.0
PCI: 00:02.0 resource base e0000000 size 400000 align 22 gran 22 limit e03fffff flags 60000201 index 10
PCI: 00:02.0 resource base d0000000 size 10000000 align 28 gran 28 limit dfffffff flags 60001201 index 18
PCI: 00:02.0 resource base 2000 size 40 align 6 gran 6 limit 203f flags 60000100 index 20
PCI: 00:03.0
PCI: 00:03.0 resource base e0818000 size 4000 align 14 gran 14 limit e081bfff flags 60000201 index 10
PCI: 00:04.0
PCI: 00:04.0 resource base e0810000 size 8000 align 15 gran 15 limit e0817fff flags 60000201 index 10
PCI: 00:14.0
PCI: 00:14.0 resource base e0800000 size 10000 align 16 gran 16 limit e080ffff flags 60000201 index 10
PCI: 00:16.0
PCI: 00:16.0 resource base e0825000 size 10 align 12 gran 4 limit e082500f flags 60000201 index 10
PCI: 00:16.2
PCI: 00:16.3
PCI: 00:1a.0
PCI: 00:1a.0 resource base e0822000 size 400 align 12 gran 10 limit e08223ff flags 60000200 index 10
PCI: 00:1b.0
PCI: 00:1b.0 resource base e081c000 size 4000 align 14 gran 14 limit e081ffff flags 60000201 index 10
PCI: 00:1c.0 child on link 0 PCI: 02:00.0
PCI: 00:1c.0 resource base ffff size 0 align 12 gran 12 limit ffff flags 60080102 index 1c
PCI: 00:1c.0 resource base efffffff size 0 align 20 gran 20 limit efffffff flags 60081202 index 24
PCI: 00:1c.0 resource base e0400000 size 100000 align 20 gran 20 limit e04fffff flags 60080202 index 20
PCI: 02:00.0
PCI: 02:00.0 resource base e0400000 size 1000 align 12 gran 12 limit e0400fff flags 60000200 index 10
PCI: 00:1c.1 child on link 0 PCI: 03:00.0
PCI: 00:1c.1 resource base 1000 size 1000 align 12 gran 12 limit 1fff flags 60080102 index 1c
PCI: 00:1c.1 resource base e0500000 size 100000 align 20 gran 20 limit e05fffff flags 60081202 index 24
PCI: 00:1c.1 resource base e0600000 size 100000 align 20 gran 20 limit e06fffff flags 60080202 index 20
PCI: 03:00.0
PCI: 03:00.0 resource base 1000 size 100 align 8 gran 8 limit 10ff flags 60000100 index 10
PCI: 03:00.0 resource base e0600000 size 1000 align 12 gran 12 limit e0600fff flags 60000201 index 18
PCI: 03:00.0 resource base e0500000 size 4000 align 14 gran 14 limit e0503fff flags 60001201 index 20
PCI: 00:1c.2 child on link 0 PCI: 04:00.0
PCI: 00:1c.2 resource base ffff size 0 align 12 gran 12 limit ffff flags 60080102 index 1c
PCI: 00:1c.2 resource base efffffff size 0 align 20 gran 20 limit efffffff flags 60081202 index 24
PCI: 00:1c.2 resource base e0700000 size 100000 align 20 gran 20 limit e07fffff flags 60080202 index 20
PCI: 04:00.0
PCI: 04:00.0 resource base e0700000 size 2000 align 13 gran 13 limit e0701fff flags 60000201 index 10
PCI: 00:1c.3
PCI: 00:1c.4
PCI: 00:1c.5
PCI: 00:1c.6
PCI: 00:1c.7
PCI: 00:1d.0
PCI: 00:1d.0 resource base e0823000 size 400 align 12 gran 10 limit e08233ff flags 60000200 index 10
PCI: 00:1f.0 child on link 0 PNP: 004e.0
PCI: 00:1f.0 resource base fec00000 size 1400000 align 0 gran 0 limit 0 flags c0000200 index 31fe
PCI: 00:1f.0 resource base 0 size 1000 align 0 gran 0 limit 0 flags c0000100 index 0
PNP: 004e.0
PNP: 004e.3
PNP: 004e.4
PNP: 004e.4 resource base 3f8 size 0 align 0 gran 0 limit 0 flags c0000100 index 60
PNP: 004e.4 resource base 4 size 0 align 0 gran 0 limit 0 flags c0000400 index 70
PNP: 004e.5
PNP: 004e.5 resource base 2f8 size 0 align 0 gran 0 limit 0 flags c0000100 index 60
PNP: 004e.5 resource base 3 size 0 align 0 gran 0 limit 0 flags c0000400 index 70
PNP: 004e.7
PNP: 004e.7 resource base 60 size 0 align 0 gran 0 limit 0 flags c0000100 index 60
PNP: 004e.7 resource base 64 size 0 align 0 gran 0 limit 0 flags c0000100 index 62
PNP: 004e.7 resource base 1 size 0 align 0 gran 0 limit 0 flags c0000400 index 70
PNP: 004e.7 resource base c size 0 align 0 gran 0 limit 0 flags c0000400 index 72
PNP: 004e.a
PNP: 004e.a resource base e00 size 0 align 0 gran 0 limit 0 flags c0000100 index 60
PNP: 004e.a resource base b size 0 align 0 gran 0 limit 0 flags c0000800 index f0
PCI: 00:1f.2
PCI: 00:1f.2 resource base 2060 size 8 align 3 gran 3 limit 2067 flags 60000100 index 10
PCI: 00:1f.2 resource base 2070 size 4 align 2 gran 2 limit 2073 flags 60000100 index 14
PCI: 00:1f.2 resource base 2068 size 8 align 3 gran 3 limit 206f flags 60000100 index 18
PCI: 00:1f.2 resource base 2074 size 4 align 2 gran 2 limit 2077 flags 60000100 index 1c
PCI: 00:1f.2 resource base 2040 size 20 align 5 gran 5 limit 205f flags 60000100 index 20
PCI: 00:1f.2 resource base e0821000 size 800 align 12 gran 11 limit e08217ff flags 60000200 index 24
PCI: 00:1f.3
PCI: 00:1f.3 resource base 400 size 20 align 0 gran 0 limit 41f flags f0000100 index 20
PCI: 00:1f.3 resource base e0824000 size 100 align 12 gran 8 limit e08240ff flags 60000201 index 10
PCI: 00:1f.6
PCI: 00:1f.6 resource base e0820000 size 1000 align 12 gran 12 limit e0820fff flags 60000201 index 10
Done allocating resources.
BS: BS_DEV_RESOURCES times (us): entry 0 run 253726 exit 0
Enabling resources...
PCI: 00:00.0 subsystem <- 1458/a456
PCI: 00:00.0 cmd <- 06
PCI: 00:01.0 bridge ctrl <- 0003
PCI: 00:01.0 cmd <- 00
PCI: 00:02.0 subsystem <- 1458/a456
PCI: 00:02.0 cmd <- 03
PCI: 00:03.0 subsystem <- 8086/2010
PCI: 00:03.0 cmd <- 02
PCI: 00:04.0 cmd <- 02
PCI: 00:14.0 subsystem <- 1458/a456
PCI: 00:14.0 cmd <- 102
PCI: 00:16.0 subsystem <- 1458/a456
PCI: 00:16.0 cmd <- 02
PCI: 00:1a.0 subsystem <- 1458/a456
PCI: 00:1a.0 cmd <- 102
PCI: 00:1b.0 subsystem <- 1458/a456
PCI: 00:1b.0 cmd <- 102
PCI: 00:1c.0 bridge ctrl <- 0003
PCI: 00:1c.0 subsystem <- 1458/a456
Capability: type 0x10 @ 0x40
Capability: type 0x05 @ 0x80
Capability: type 0x0d @ 0x90
PCI: 00:1c.0 cmd <- 06
PCI: 00:1c.1 bridge ctrl <- 0003
PCI: 00:1c.1 subsystem <- 1458/a456
Capability: type 0x10 @ 0x40
Capability: type 0x05 @ 0x80
Capability: type 0x0d @ 0x90
PCI: 00:1c.1 cmd <- 07
PCI: 00:1c.2 bridge ctrl <- 0003
PCI: 00:1c.2 subsystem <- 1458/a456
Capability: type 0x10 @ 0x40
Capability: type 0x05 @ 0x80
Capability: type 0x0d @ 0x90
PCI: 00:1c.2 cmd <- 06
PCI: 00:1d.0 subsystem <- 1458/a456
PCI: 00:1d.0 cmd <- 102
PCI: 00:1f.0 subsystem <- 1458/a456
PCI: 00:1f.0 cmd <- 107
PCI: 00:1f.2 subsystem <- 1458/a456
PCI: 00:1f.2 cmd <- 103
PCI: 00:1f.3 subsystem <- 1458/a456
PCI: 00:1f.3 cmd <- 103
PCI: 00:1f.6 subsystem <- 1458/a456
PCI: 00:1f.6 cmd <- 102
PCI: 02:00.0 cmd <- 02
PCI: 03:00.0 cmd <- 03
PCI: 04:00.0 cmd <- 02
done.
BS: BS_DEV_ENABLE times (us): entry 0 run 15521 exit 0
Initializing devices...
Root Device init ...
Replaying EC dump ...done
Root Device init finished in 266015 usecs
CPU_CLUSTER: 0 init ...
MTRR: Physical address space:
0x0000000000000000 - 0x00000000000a0000 size 0x000a0000 type 6
0x00000000000a0000 - 0x00000000000c0000 size 0x00020000 type 0
0x00000000000c0000 - 0x0000000080000000 size 0x7ff40000 type 6
0x0000000080000000 - 0x00000000d0000000 size 0x50000000 type 0
0x00000000d0000000 - 0x00000000e0000000 size 0x10000000 type 1
0x00000000e0000000 - 0x0000000100000000 size 0x20000000 type 0
0x0000000100000000 - 0x000000047ce00000 size 0x37ce00000 type 6
MTRR: Fixed MSR 0x250 0x0606060606060606
MTRR: Fixed MSR 0x258 0x0606060606060606
MTRR: Fixed MSR 0x259 0x0000000000000000
MTRR: Fixed MSR 0x268 0x0606060606060606
MTRR: Fixed MSR 0x269 0x0606060606060606
MTRR: Fixed MSR 0x26a 0x0606060606060606
MTRR: Fixed MSR 0x26b 0x0606060606060606
MTRR: Fixed MSR 0x26c 0x0606060606060606
MTRR: Fixed MSR 0x26d 0x0606060606060606
MTRR: Fixed MSR 0x26e 0x0606060606060606
MTRR: Fixed MSR 0x26f 0x0606060606060606
call enable_fixed_mtrr()
CPU physical address size: 39 bits
MTRR: default type WB/UC MTRR counts: 4/5.
MTRR: WB selected as default type.
MTRR: 0 base 0x0000000080000000 mask 0x0000007fc0000000 type 0
MTRR: 1 base 0x00000000c0000000 mask 0x0000007ff0000000 type 0
MTRR: 2 base 0x00000000d0000000 mask 0x0000007ff0000000 type 1
MTRR: 3 base 0x00000000e0000000 mask 0x0000007fe0000000 type 0
MTRR check
Fixed MTRRs : Enabled
Variable MTRRs: Enabled
Initializing VR config.
CPU has 4 cores, 8 threads enabled.
Setting up SMI for CPU
Will perform SMM setup.
CBFS @ 730200 size cfe00
CBFS: 'Master Header Locator' located CBFS at [730200:800000)
CBFS: Locating 'cpu_microcode_blob.bin'
CBFS: Found @ offset ce00 size 32000
microcode: sig=0x306c3 pf=0x20 revision=0x17
CPU: Intel(R) Core(TM) i7-4710HQ CPU @ 2.50GHz.
Loading module at 00030000 with entry 00030000. filesize: 0x170 memsize: 0x170
Processing 16 relocs. Offset value of 0x00030000
Attempting to start 7 APs
Waiting for 10ms after sending INIT.
Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
done.
Waiting for 2nd SIPI to complete...done.
AP: slot 1 apic_id 2.
AP: slot 4 apic_id 3.
AP: slot 6 apic_id 6.
AP: slot 2 apic_id 4.
AP: slot 7 apic_id 7.
AP: slot 5 apic_id 5.
Loading module at 00038000 with entry 00038000. filesize: 0x1a8 memsize: 0x1a8
Processing 13 relocs. Offset value of 0x00038000
SMM Module: stub loaded at 00038000. Will call 7f79dfac(00000000)
Installing SMM handler to 0x7f800000
Loading module at 7f810000 with entry 7f8100a0. filesize: 0x11d0 memsize: 0x51f0
Processing 47 relocs. Offset value of 0x7f810000
Loading module at 7f808000 with entry 7f808000. filesize: 0x1a8 memsize: 0x1a8
Processing 13 relocs. Offset value of 0x7f808000
SMM Module: placing jmp sequence at 7f807c00 rel16 0x03fd
SMM Module: placing jmp sequence at 7f807800 rel16 0x07fd
SMM Module: placing jmp sequence at 7f807400 rel16 0x0bfd
SMM Module: placing jmp sequence at 7f807000 rel16 0x0ffd
SMM Module: placing jmp sequence at 7f806c00 rel16 0x13fd
SMM Module: placing jmp sequence at 7f806800 rel16 0x17fd
SMM Module: placing jmp sequence at 7f806400 rel16 0x1bfd
SMM Module: stub loaded at 7f808000. Will call 7f8100a0(00000000)
Initializing Southbridge SMI... ... pmbase = 0x0500
SMI_STS: MCSMI PM1
PM1_STS: WAK PWRBTN TMROF
New SMBASE 0x7f800000
In relocation handler: cpu 0
New SMBASE=0x7f800000 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7ff400
In relocation handler: cpu 3
New SMBASE=0x7f7ff400 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7fe800
In relocation handler: cpu 6
New SMBASE=0x7f7fe800 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7ff800
In relocation handler: cpu 2
New SMBASE=0x7f7ff800 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7fec00
In relocation handler: cpu 5
New SMBASE=0x7f7fec00 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7ff000
In relocation handler: cpu 4
New SMBASE=0x7f7ff000 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7ffc00
In relocation handler: cpu 1
New SMBASE=0x7f7ffc00 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
New SMBASE 0x7f7fe400
In relocation handler: cpu 7
New SMBASE=0x7f7fe400 IEDBASE=0x7fc00000
Writing SMRR. base = 0x7f800006, mask=0xff800800
Relocation complete.
microcode: Update skipped, already up-to-date
Initializing CPU #0
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
Setting up local APIC... apic_id: 0x00 done.
VMX status: enabled
IA32_FEATURE_CONTROL status: locked
haswell: energy policy set to 6
haswell: frequency set to 2500
Turbo is available but hidden
Turbo has been enabled
CPU #0 initialized
Initializing CPU #3
Initializing CPU #2
Initializing CPU #5
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
Initializing CPU #4
Initializing CPU #6
Initializing CPU #7
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
Setting up local APIC...Initializing CPU #1
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
Setting up local APIC...Setting up local APIC... apic_id: 0x03 done.
apic_id: 0x02 done.
VMX status: enabled
VMX status: enabled
IA32_FEATURE_CONTROL status: locked
IA32_FEATURE_CONTROL status: locked
haswell: energy policy set to 6
haswell: energy policy set to 6
haswell: frequency set to 2500
haswell: frequency set to 2500
CPU #4 initialized
CPU #1 initialized
Setting up local APIC...Setting up local APIC... apic_id: 0x06 done.
apic_id: 0x07 done.
VMX status: enabled
VMX status: enabled
IA32_FEATURE_CONTROL status: locked
IA32_FEATURE_CONTROL status: locked
haswell: energy policy set to 6
haswell: energy policy set to 6
haswell: frequency set to 2500
haswell: frequency set to 2500
CPU #6 initialized
CPU #7 initialized
apic_id: 0x01 done.
CPU: vendor Intel device 306c3
CPU: vendor Intel device 306c3
CPU: family 06, model 3c, stepping 03
CPU: family 06, model 3c, stepping 03
Setting up local APIC...Setting up local APIC... apic_id: 0x05 done.
apic_id: 0x04 done.
VMX status: enabled
VMX status: enabled
IA32_FEATURE_CONTROL status: locked
IA32_FEATURE_CONTROL status: locked
haswell: energy policy set to 6
haswell: energy policy set to 6
haswell: frequency set to 2500
haswell: frequency set to 2500
CPU #2 initialized
CPU #5 initialized
VMX status: enabled
IA32_FEATURE_CONTROL status: locked
haswell: energy policy set to 6
haswell: frequency set to 2500
CPU #3 initialized
bsp_do_flight_plan done after 117 msecs.
Enabling SMIs.
Locking SMM.
CPU_CLUSTER: 0 init finished in 155748 usecs
PCI: 00:00.0 init ...
Disabling PEG12.
Disabling PEG11.
Disabling "device 7".
Set BIOS_RESET_CPL
CPU TDP: 47 Watts
PCI: 00:00.0 init finished in 2436 usecs
PCI: 00:02.0 init ...
GT Power Management Init
GT Power Management Init (post VBIOS)
Initializing DDI buffers for port 0 in DP mode
Initializing DDI buffers for port 1 in DP mode
Initializing DDI buffers for port 2 in DP mode
Initializing DDI buffers for port 3 in DP mode
Initializing DDI buffers for port 4 in FDI mode
NATIVE graphics, run native enable
[1.002845] CONFIG =>
[1.003079] (Primary =>
[1.003342] (Port => Internal,
[1.003652] Framebuffer =>
[1.003942] (Width => 1920,
[1.004275] Height => 1080,
[1.004597] Start_X => 0,
[1.004910] Start_Y => 0,
[1.005336] Stride => 1920,
[1.005658] V_Stride => 1080,
[1.005980] Tiling => Linear ,
[1.006322] Rotation => No_Rotation,
[1.006687] Offset => 0x00000000,
[1.007029] BPC => 8),
[1.007459] Mode =>
[1.007716] (Dotclock => 141000000,
[1.008114] H_Visible => 1920,
[1.008486] H_Sync_Begin => 1936,
[1.008858] H_Sync_End => 1952,
[1.009230] H_Total => 2104,
[1.009725] V_Visible => 1080,
[1.010096] V_Sync_Begin => 1083,
[1.010468] V_Sync_End => 1097,
[1.010840] V_Total => 1116,
[1.011212] H_Sync_Active_High => False,
[1.011710] V_Sync_Active_High => False,
[1.012085] BPC => 6)),
[1.012454] Secondary =>
[1.012728] (Port => Disabled,
[1.013038] Framebuffer =>
[1.013328] (Width => 1,
[1.013641] Height => 1,
[1.014067] Start_X => 0,
[1.014380] Start_Y => 0,
[1.014693] Stride => 1,
[1.015006] V_Stride => 1,
[1.015319] Tiling => Linear ,
[1.015661] Rotation => No_Rotation,
[1.016026] Offset => 0x00000000,
[1.016491] BPC => 8),
[1.016787] Mode =>
[1.017044] (Dotclock => 19200000,
[1.017439] H_Visible => 1,
[1.017801] H_Sync_Begin => 1,
[1.018163] H_Sync_End => 1,
[1.018638] H_Total => 1,
[1.018990] V_Visible => 1,
[1.019342] V_Sync_Begin => 1,
[1.019704] V_Sync_End => 1,
[1.020066] V_Total => 1,
[1.020428] H_Sync_Active_High => False,
[1.020926] V_Sync_Active_High => False,
[1.021311] BPC => 5)),
[1.021679] Tertiary =>
[1.021943] (Port => Disabled,
[1.022253] Framebuffer =>
[1.022542] (Width => 1,
[1.022978] Height => 1,
[1.023291] Start_X => 0,
[1.023604] Start_Y => 0,
[1.023917] Stride => 1,
[1.024230] V_Stride => 1,
[1.024544] Tiling => Linear ,
[1.024886] Rotation => No_Rotation,
[1.025364] Offset => 0x00000000,
[1.025706] BPC => 8),
[1.026012] Mode =>
[1.026269] (Dotclock => 19200000,
[1.026664] H_Visible => 1,
[1.027026] H_Sync_Begin => 1,
[1.027512] H_Sync_End => 1,
[1.027874] H_Total => 1,
[1.028236] V_Visible => 1,
[1.028598] V_Sync_Begin => 1,
[1.028960] V_Sync_End => 1,
[1.029322] V_Total => 1,
[1.029798] H_Sync_Active_High => False,
[1.030173] V_Sync_Active_High => False,
[1.030548] BPC => 5)));
PCI: 00:02.0 init finished in 247601 usecs
PCI: 00:03.0 init ...
Mini-HD: base = e0818000
HDA: No codec!
PCI: 00:03.0 init finished in 51830 usecs
PCI: 00:04.0 init ...
PCI: 00:04.0 init finished in 239 usecs
PCI: 00:14.0 init ...
IOBP: set 0xe5004001 to 0x000000ce
PCI: 00:14.0 init finished in 592 usecs
PCI: 00:16.0 init ...
ME: FW Partition Table : OK
ME: Bringup Loader Failure : NO
ME: Firmware Init Complete : NO
ME: Manufacturing Mode : YES
ME: Boot Options Present : NO
ME: Update In Progress : NO
ME: Current Working State : Normal
ME: Current Operation State : M0 with UMA
ME: Current Operation Mode : Normal
ME: Error Code : No Error
ME: Progress Phase : Host Communication
ME: Power Management Event : Clean Moff->Mx wake
ME: Progress Phase State : Host communication established
ME: BIOS path: Normal
ME: Extend SHA-256: 393ffb341d635e1b11e5f5d155496bfed996e7435a367e564740b8bb4038796a
ME MBP: Header: items: 8, size dw: 35
ME: found version 9.0.30.1482
ME: Wake Event to ME Reset: 0 ms
ME: ME Reset to Platform Reset: 0 ms
ME: Platform Reset to CPU Reset: 37 ms
PCI: 00:16.0 init finished in 8633 usecs
PCI: 00:1a.0 init ...
EHCI: Setting up controller.. IOBP: set 0xe5004001 to 0x000000ce
done.
PCI: 00:1a.0 init finished in 1012 usecs
PCI: 00:1b.0 init ...
Azalia: base = e081c000
Azalia: codec_mask = 01
HDA: Initializing codec #0
HDA: codec viddid: 10ec0282
HDA: No verb table entry found
PCI: 00:1b.0 init finished in 2728 usecs
PCI: 00:1c.0 init ...
Initializing PCH PCIe bridge.
PCI: 00:1c.0 init finished in 531 usecs
PCI: 00:1c.1 init ...
Initializing PCH PCIe bridge.
PCI: 00:1c.1 init finished in 654 usecs
PCI: 00:1c.2 init ...
Initializing PCH PCIe bridge.
PCI: 00:1c.2 init finished in 531 usecs
PCI: 00:1d.0 init ...
EHCI: Setting up controller.. IOBP: set 0xe5004001 to 0x000000ce
done.
PCI: 00:1d.0 init finished in 1022 usecs
PCI: 00:1f.0 init ...
pch: lpc_init
IOAPIC: Initializing IOAPIC at 0xfec00000
IOAPIC: Bootstrap Processor Local APIC = 0x00
IOAPIC: ID = 0x02
IOAPIC: Dumping registers
reg 0x0000: 0x02000000
reg 0x0001: 0x00170020
reg 0x0002: 0x00170020
Set power off after power failure.
NMI sources disabled.
LynxPoint PM init
RTC: failed = 0x0
RTC Init
Enabling BIOS updates outside of SMM... Disabling ACPI via APMC:
done.
PCI: 00:1f.0 init finished in 4592 usecs
PCI: 00:1f.2 init ...
SATA: Initializing...
SATA: Controller in AHCI mode.
ABAR: e0821000
PCI: 00:1f.2 init finished in 1206 usecs
PCI: 00:1f.3 init ...
PCI: 00:1f.3 init finished in 269 usecs
PCI: 00:1f.6 init ...
PCI: 00:1f.6 init finished in 264 usecs
PCI: 02:00.0 init ...
PCI: 02:00.0 init finished in 293 usecs
PCI: 03:00.0 init ...
PCI: 03:00.0 init finished in 264 usecs
PCI: 04:00.0 init ...
PCI: 04:00.0 init finished in 264 usecs
Devices initialized
Show all devs... After init.
Root Device: enabled 1
CPU_CLUSTER: 0: enabled 1
DOMAIN: 0000: enabled 1
APIC: 00: enabled 1
APIC: acac: enabled 0
PCI: 00:14.0: enabled 1
PCI: 00:16.0: enabled 1
PCI: 00:16.1: enabled 0
PCI: 00:16.2: enabled 0
PCI: 00:16.3: enabled 0
PCI: 00:1a.0: enabled 1
PCI: 00:1b.0: enabled 1
PCI: 00:1c.0: enabled 1
PCI: 00:1c.1: enabled 1
PCI: 00:1c.2: enabled 1
PCI: 00:1c.3: enabled 0
PCI: 00:1c.4: enabled 0
PCI: 00:1c.5: enabled 0
PCI: 00:1c.6: enabled 0
PCI: 00:1c.7: enabled 0
PCI: 00:1d.0: enabled 1
PCI: 00:1f.0: enabled 1
PCI: 00:1f.2: enabled 1
PCI: 00:1f.3: enabled 1
PCI: 00:1f.6: enabled 1
PCI: 00:00.0: enabled 1
PCI: 00:01.0: enabled 1
PCI: 00:02.0: enabled 1
PCI: 00:03.0: enabled 1
PNP: 004e.0: enabled 0
PNP: 004e.3: enabled 0
PNP: 004e.4: enabled 1
PNP: 004e.5: enabled 1
PNP: 004e.7: enabled 1
PNP: 004e.a: enabled 1
PCI: 00:04.0: enabled 1
PCI: 02:00.0: enabled 1
PCI: 03:00.0: enabled 1
PCI: 04:00.0: enabled 1
APIC: 02: enabled 1
APIC: 04: enabled 1
APIC: 01: enabled 1
APIC: 03: enabled 1
APIC: 05: enabled 1
APIC: 06: enabled 1
APIC: 07: enabled 1
BS: BS_DEV_INIT times (us): entry 7 run 768206 exit 0
Finalize devices...
PCI: 00:1f.0 final
# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 2.8 present.
78 structures occupying 2991 bytes.
Table at 0x000EC430.
Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
Vendor: American Megatrends Inc.
Version: FB08
Release Date: 06/20/2017
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 4096 kB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
8042 keyboard services are supported (int 9h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
ACPI is supported
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 4.6
Firmware Revision: 3.5
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: GIGABYTE
Product Name: P34V2
Version: To be filled by O.E.M.
Serial Number: To be filled by O.E.M.
UUID: 03000200-0400-0500-0006-000700080009
Wake-up Type: Power Switch
SKU Number: To be filled by O.E.M.
Family: To be filled by O.E.M.
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: GIGABYTE
Product Name: P34V2
Version: To be filled by O.E.M.
Serial Number: To be filled by O.E.M.
Asset Tag: To be filled by O.E.M.
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: To be filled by O.E.M.
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x0003, DMI type 3, 25 bytes
Chassis Information
Manufacturer: To Be Filled By O.E.M.
Type: Notebook
Lock: Not Present
Version: To Be Filled By O.E.M.
Serial Number: To Be Filled By O.E.M.
Asset Tag: To Be Filled By O.E.M.
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: None
OEM Information: 0x00000000
Height: Unspecified
Number Of Power Cords: 1
Contained Elements: 1
<OUT OF SPEC> (0)
SKU Number: To be filled by O.E.M.
Handle 0x0004, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J1A1
Internal Connector Type: None
External Reference Designator: PS2Mouse
External Connector Type: PS/2
Port Type: Mouse Port
Handle 0x0005, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J1A1
Internal Connector Type: None
External Reference Designator: Keyboard
External Connector Type: PS/2
Port Type: Keyboard Port
Handle 0x0006, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J2A1
Internal Connector Type: None
External Reference Designator: TV Out
External Connector Type: Mini Centronics Type-14
Port Type: Other
Handle 0x0007, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J2A2A
Internal Connector Type: None
External Reference Designator: COM A
External Connector Type: DB-9 male
Port Type: Serial Port 16550A Compatible
Handle 0x0008, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J2A2B
Internal Connector Type: None
External Reference Designator: Video
External Connector Type: DB-15 female
Port Type: Video Port
Handle 0x0009, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J3A1
Internal Connector Type: None
External Reference Designator: USB1
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x000A, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J3A1
Internal Connector Type: None
External Reference Designator: USB2
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x000B, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J3A1
Internal Connector Type: None
External Reference Designator: USB3
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x000C, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J9A1 - TPM HDR
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x000D, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J9C1 - PCIE DOCKING CONN
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x000E, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J2B3 - CPU FAN
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x000F, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J6C2 - EXT HDMI
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0010, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J3C1 - GMCH FAN
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0011, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J1D1 - ITP
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0012, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J9E2 - MDC INTPSR
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0013, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J9E4 - MDC INTPSR
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0014, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J9E3 - LPC HOT DOCKING
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0015, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J9E1 - SCAN MATRIX
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0016, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J9G1 - LPC SIDE BAND
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0017, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J8F1 - UNIFIED
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0018, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J6F1 - LVDS
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0019, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J2F1 - LAI FAN
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x001A, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J2G1 - GFX VID
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x001B, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: J1G6 - AC JACK
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x001C, DMI type 9, 17 bytes
System Slot Information
Designation: J6B2
Type: x16 PCI Express
Current Usage: In Use
Length: Long
ID: 0
Characteristics:
3.3 V is provided
Opening is shared
PME signal is supported
Bus Address: 0000:00:01.0
Handle 0x001D, DMI type 9, 17 bytes
System Slot Information
Designation: J6B1
Type: x1 PCI Express
Current Usage: In Use
Length: Short
ID: 1
Characteristics:
3.3 V is provided
Opening is shared
PME signal is supported
Bus Address: 0000:00:1c.3
Handle 0x001E, DMI type 9, 17 bytes
System Slot Information
Designation: J6D1
Type: x1 PCI Express
Current Usage: In Use
Length: Short
ID: 2
Characteristics:
3.3 V is provided
Opening is shared
PME signal is supported
Bus Address: 0000:00:1c.4
Handle 0x001F, DMI type 9, 17 bytes
System Slot Information
Designation: J7B1
Type: x1 PCI Express
Current Usage: In Use
Length: Short
ID: 3
Characteristics:
3.3 V is provided
Opening is shared
PME signal is supported
Bus Address: 0000:00:1c.5
Handle 0x0020, DMI type 9, 17 bytes
System Slot Information
Designation: J8B4
Type: x1 PCI Express
Current Usage: In Use
Length: Short
ID: 4
Characteristics:
3.3 V is provided
Opening is shared
PME signal is supported
Bus Address: 0000:00:1c.6
Handle 0x0021, DMI type 10, 6 bytes
On Board Device Information
Type: Video
Status: Enabled
Description: To Be Filled By O.E.M.
Handle 0x0022, DMI type 11, 5 bytes
OEM Strings
String 1: To Be Filled By O.E.M.
Handle 0x0023, DMI type 12, 5 bytes
System Configuration Options
Option 1: To Be Filled By O.E.M.
Handle 0x0024, DMI type 24, 5 bytes
Hardware Security
Power-On Password Status: Disabled
Keyboard Password Status: Disabled
Administrator Password Status: Disabled
Front Panel Reset Status: Disabled
Handle 0x0025, DMI type 32, 20 bytes
System Boot Information
Status: No errors detected
Handle 0x0026, DMI type 34, 11 bytes
Management Device
Description: LM78-1
Type: LM78
Address: 0x00000000
Address Type: I/O Port
Handle 0x0027, DMI type 26, 22 bytes
Voltage Probe
Description: LM78A
Location: <OUT OF SPEC>
Status: <OUT OF SPEC>
Maximum Value: Unknown
Minimum Value: Unknown
Resolution: Unknown
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x00000000
Nominal Value: Unknown
Handle 0x0028, DMI type 36, 16 bytes
Management Device Threshold Data
Lower Non-critical Threshold: 1
Upper Non-critical Threshold: 2
Lower Critical Threshold: 3
Upper Critical Threshold: 4
Lower Non-recoverable Threshold: 5
Upper Non-recoverable Threshold: 6
Handle 0x0029, DMI type 35, 11 bytes
Management Device Component
Description: To Be Filled By O.E.M.
Management Device Handle: 0x0026
Component Handle: 0x0026
Threshold Handle: 0x0027
Handle 0x002A, DMI type 28, 22 bytes
Temperature Probe
Description: LM78A
Location: <OUT OF SPEC>
Status: <OUT OF SPEC>
Maximum Value: Unknown
Minimum Value: Unknown
Resolution: Unknown
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x00000000
Nominal Value: Unknown
Handle 0x002B, DMI type 36, 16 bytes
Management Device Threshold Data
Lower Non-critical Threshold: 1
Upper Non-critical Threshold: 2
Lower Critical Threshold: 3
Upper Critical Threshold: 4
Lower Non-recoverable Threshold: 5
Upper Non-recoverable Threshold: 6
Handle 0x002C, DMI type 35, 11 bytes
Management Device Component
Description: To Be Filled By O.E.M.
Management Device Handle: 0x0026
Component Handle: 0x0029
Threshold Handle: 0x002A
Handle 0x002D, DMI type 27, 15 bytes
Cooling Device
Temperature Probe Handle: 0x002A
Type: <OUT OF SPEC>
Status: <OUT OF SPEC>
Cooling Unit Group: 1
OEM-specific Information: 0x00000000
Nominal Speed: Unknown Or Non-rotating
Description: Cooling Dev 1
Handle 0x002E, DMI type 36, 16 bytes
Management Device Threshold Data
Lower Non-critical Threshold: 1
Upper Non-critical Threshold: 2
Lower Critical Threshold: 3
Upper Critical Threshold: 4
Lower Non-recoverable Threshold: 5
Upper Non-recoverable Threshold: 6
Handle 0x002F, DMI type 35, 11 bytes
Management Device Component
Description: To Be Filled By O.E.M.
Management Device Handle: 0x0026
Component Handle: 0x002C
Threshold Handle: 0x002D
Handle 0x0030, DMI type 27, 15 bytes
Cooling Device
Temperature Probe Handle: 0x002A
Type: <OUT OF SPEC>
Status: <OUT OF SPEC>
Cooling Unit Group: 1
OEM-specific Information: 0x00000000
Nominal Speed: Unknown Or Non-rotating
Description: Not Specified
Handle 0x0031, DMI type 36, 16 bytes
Management Device Threshold Data
Lower Non-critical Threshold: 1
Upper Non-critical Threshold: 2
Lower Critical Threshold: 3
Upper Critical Threshold: 4
Lower Non-recoverable Threshold: 5
Upper Non-recoverable Threshold: 6
Handle 0x0032, DMI type 35, 11 bytes
Management Device Component
Description: To Be Filled By O.E.M.
Management Device Handle: 0x0026
Component Handle: 0x002F
Threshold Handle: 0x0030
Handle 0x0033, DMI type 29, 22 bytes
Electrical Current Probe
Description: ABC
Location: <OUT OF SPEC>
Status: <OUT OF SPEC>
Maximum Value: Unknown
Minimum Value: Unknown
Resolution: Unknown
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x00000000
Nominal Value: Unknown
Handle 0x0034, DMI type 36, 16 bytes
Management Device Threshold Data
Handle 0x0035, DMI type 35, 11 bytes
Management Device Component
Description: To Be Filled By O.E.M.
Management Device Handle: 0x0026
Component Handle: 0x0032
Threshold Handle: 0x0030
Handle 0x0036, DMI type 26, 22 bytes
Voltage Probe
Description: LM78A
Location: Power Unit
Status: OK
Maximum Value: Unknown
Minimum Value: Unknown
Resolution: Unknown
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x00000000
Nominal Value: Unknown
Handle 0x0037, DMI type 28, 22 bytes
Temperature Probe
Description: LM78A
Location: Power Unit
Status: OK
Maximum Value: Unknown
Minimum Value: Unknown
Resolution: Unknown
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x00000000
Nominal Value: Unknown
Handle 0x0038, DMI type 27, 15 bytes
Cooling Device
Temperature Probe Handle: 0x0037
Type: Power Supply Fan
Status: OK
Cooling Unit Group: 1
OEM-specific Information: 0x00000000
Nominal Speed: Unknown Or Non-rotating
Description: Cooling Dev 1
Handle 0x0039, DMI type 29, 22 bytes
Electrical Current Probe
Description: ABC
Location: Power Unit
Status: OK
Maximum Value: Unknown
Minimum Value: Unknown
Resolution: Unknown
Tolerance: Unknown
Accuracy: Unknown
OEM-specific Information: 0x00000000
Nominal Value: Unknown
Handle 0x003A, DMI type 39, 22 bytes
System Power Supply
Power Unit Group: 1
Location: To Be Filled By O.E.M.
Name: To Be Filled By O.E.M.
Manufacturer: To Be Filled By O.E.M.
Serial Number: To Be Filled By O.E.M.
Asset Tag: To Be Filled By O.E.M.
Model Part Number: To Be Filled By O.E.M.
Revision: To Be Filled By O.E.M.
Max Power Capacity: Unknown
Status: Present, OK
Type: Switching
Input Voltage Range Switching: Auto-switch
Plugged: Yes
Hot Replaceable: No
Input Voltage Probe Handle: 0x0036
Cooling Device Handle: 0x0038
Input Current Probe Handle: 0x0039
Handle 0x003B, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard IGD
Type: Video
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:02.0
Handle 0x003C, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard LAN
Type: Ethernet
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:19.0
Handle 0x003D, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard 1394
Type: Other
Status: Enabled
Type Instance: 1
Bus Address: 0000:03:1c.2
Handle 0x003E, DMI type 4, 42 bytes
Processor Information
Socket Designation: SOCKET 0
Type: Central Processor
Family: Core i7
Manufacturer: Intel
ID: C3 06 03 00 FF FB EB BF
Signature: Type 0, Family 6, Model 60, Stepping 3
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
DS (Debug store)
ACPI (ACPI supported)
MMX (MMX technology supported)
FXSR (FXSAVE and FXSTOR instructions supported)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
SS (Self-snoop)
HTT (Multi-threading)
TM (Thermal monitor supported)
PBE (Pending break enabled)
Version: Intel(R) Core(TM) i7-4710HQ CPU @ 2.50GHz
Voltage: 1.2 V
External Clock: 100 MHz
Max Speed: 3800 MHz
Current Speed: 2500 MHz
Status: Populated, Enabled
Upgrade: Socket rPGA988B
L1 Cache Handle: 0x0040
L2 Cache Handle: 0x003F
L3 Cache Handle: 0x0041
Serial Number: Not Specified
Asset Tag: Fill By OEM
Part Number: Fill By OEM
Core Count: 4
Core Enabled: 4
Thread Count: 8
Characteristics:
64-bit capable
Handle 0x003F, DMI type 7, 19 bytes
Cache Information
Socket Designation: CPU Internal L2
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 1024 kB
Maximum Size: 1024 kB
Supported SRAM Types:
Unknown
Installed SRAM Type: Unknown
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 8-way Set-associative
Handle 0x0040, DMI type 7, 19 bytes
Cache Information
Socket Designation: CPU Internal L1
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 256 kB
Maximum Size: 256 kB
Supported SRAM Types:
Unknown
Installed SRAM Type: Unknown
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Other
Associativity: 8-way Set-associative
Handle 0x0041, DMI type 7, 19 bytes
Cache Information
Socket Designation: CPU Internal L3
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 6144 kB
Maximum Size: 6144 kB
Supported SRAM Types:
Unknown
Installed SRAM Type: Unknown
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unified
Associativity: 12-way Set-associative
Handle 0x0042, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 32 GB
Error Information Handle: Not Provided
Number Of Devices: 4
Handle 0x0043, DMI type 17, 40 bytes
Memory Device
Array Handle: 0x0042
Error Information Handle: Not Provided
Total Width: 64 bits
Data Width: 64 bits
Size: 8192 MB
Form Factor: SODIMM
Set: None
Locator: ChannelA-DIMM0
Bank Locator: BANK 0
Type: DDR3
Type Detail: Synchronous
Speed: 1600 MT/s
Manufacturer: Kingston
Serial Number: 5A155B03
Asset Tag: 9876543210
Part Number: KHX1600C9S3L/8G
Rank: 2
Configured Memory Speed: 1600 MT/s
Minimum Voltage: 1.35 V
Maximum Voltage: 1.5 V
Configured Voltage: 1.35 V
Handle 0x0044, DMI type 20, 35 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x001FFFFFFFF
Range Size: 8 GB
Physical Device Handle: 0x0043
Memory Array Mapped Address Handle: 0x0049
Partition Row Position: Unknown
Interleave Position: Unknown
Interleaved Data Depth: Unknown
Handle 0x0045, DMI type 17, 40 bytes
Memory Device
Array Handle: 0x0042
Error Information Handle: Not Provided
Total Width: Unknown
Data Width: Unknown
Size: No Module Installed
Form Factor: DIMM
Set: None
Locator: ChannelA-DIMM1
Bank Locator: BANK 1
Type: Unknown
Type Detail: None
Speed: Unknown
Manufacturer: [Empty]
Serial Number: [Empty]
Asset Tag: 9876543210
Part Number: [Empty]
Rank: Unknown
Configured Memory Speed: Unknown
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: Unknown
Handle 0x0046, DMI type 17, 40 bytes
Memory Device
Array Handle: 0x0042
Error Information Handle: Not Provided
Total Width: 64 bits
Data Width: 64 bits
Size: 8192 MB
Form Factor: SODIMM
Set: None
Locator: ChannelB-DIMM0
Bank Locator: BANK 2
Type: DDR3
Type Detail: Synchronous
Speed: 1600 MT/s
Manufacturer: 1315
Serial Number: E6302A47
Asset Tag: 9876543210
Part Number: CT102464BF160B.C16
Rank: 2
Configured Memory Speed: 1600 MT/s
Minimum Voltage: 1.35 V
Maximum Voltage: 1.5 V
Configured Voltage: 1.35 V
Handle 0x0047, DMI type 20, 35 bytes
Memory Device Mapped Address
Starting Address: 0x00200000000
Ending Address: 0x003FFFFFFFF
Range Size: 8 GB
Physical Device Handle: 0x0046
Memory Array Mapped Address Handle: 0x0049
Partition Row Position: Unknown
Interleave Position: Unknown
Interleaved Data Depth: Unknown
Handle 0x0048, DMI type 17, 40 bytes
Memory Device
Array Handle: 0x0042
Error Information Handle: Not Provided
Total Width: Unknown
Data Width: Unknown
Size: No Module Installed
Form Factor: DIMM
Set: None
Locator: ChannelB-DIMM1
Bank Locator: BANK 3
Type: Unknown
Type Detail: None
Speed: Unknown
Manufacturer: [Empty]
Serial Number: [Empty]
Asset Tag: 9876543210
Part Number: [Empty]
Rank: Unknown
Configured Memory Speed: Unknown
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: Unknown
Handle 0x0049, DMI type 19, 31 bytes
Memory Array Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x003FFFFFFFF
Range Size: 16 GB
Physical Array Handle: 0x0042
Partition Width: 4
Handle 0x004C, DMI type 136, 6 bytes
OEM-specific Type
Header and Data:
88 06 4C 00 00 00
Handle 0x004D, DMI type 131, 64 bytes
OEM-specific Type
Header and Data:
83 40 4D 00 31 00 00 00 00 00 00 00 00 00 00 00
F8 00 4B 8C 00 00 00 00 01 00 00 00 00 00 09 00
CA 05 1E 00 00 00 00 00 C8 00 FF FF 00 00 00 00
00 00 00 00 26 00 00 00 76 50 72 6F 00 00 00 00
Handle 0x004E, DMI type 13, 22 bytes
BIOS Language Information
Language Description Format: Long
Installable Languages: 1
en|US|iso8859-1
Currently Installed Language: en|US|iso8859-1
Handle 0x0051, DMI type 127, 4 bytes
End Of Table
EC RAM:
00: 0a e3 5b a0 80 40 60 00 00 01 00 00 80 00 00 00
10: 54 10 a7 0c db 0b 2c 42 a2 01 65 00 00 00 00 00
20: 60 3b 00 00 9a 0b 01 01 00 00 55 34 4e 00 00 00
30: 47 42 54 20 00 00 00 00 00 00 00 00 00 00 00 00
40: 00 00 00 00 55 34 4e 00 00 00 00 00 00 00 00 00
50: 00 00 00 00 a7 0c 54 10 00 00 00 00 00 00 00 00
60: 3a 37 3a 03 00 00 15 00 00 00 00 05 00 00 0b db
70: 00 65 00 00 0c a7 00 00 0b 9a 00 00 00 00 00 14
80: 01 44 02 87 03 cb 05 0f 06 53 0c 05 00 00 00 00
90: 98 00 00 15 00 00 00 15 00 00 00 00 00 01 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 44 00 08 00 10 00 20 04 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0000-0cf7 : PCI Bus 0000:00
0000-001f : dma1
0020-0021 : pic1
0040-0043 : timer0
0050-0053 : timer1
0060-0060 : keyboard
0062-0062 : PNP0C09:00
0062-0062 : EC data
0064-0064 : keyboard
0066-0066 : PNP0C09:00
0066-0066 : EC cmd
0070-0077 : rtc0
0080-008f : dma page reg
00a0-00a1 : pic2
00c0-00df : dma2
00f0-00ff : fpu
00f0-00f0 : PNP0C04:00
03c0-03df : vesafb
04d0-04d1 : pnp 00:04
0680-069f : pnp 00:01
0cf8-0cff : PCI conf1
0d00-ffff : PCI Bus 0000:00
164e-164f : pnp 00:01
1800-18fe : pnp 00:01
1800-1803 : ACPI PM1a_EVT_BLK
1804-1805 : ACPI PM1a_CNT_BLK
1808-180b : ACPI PM_TMR
1820-182f : ACPI GPE0_BLK
1830-1833 : iTCO_wdt.0.auto
1830-1833 : iTCO_wdt
1850-1850 : ACPI PM2_CNT_BLK
1854-1857 : pnp 00:03
1860-187f : iTCO_wdt.0.auto
1860-187f : iTCO_wdt
1c00-1cfe : pnp 00:01
1d00-1dfe : pnp 00:01
1e00-1efe : pnp 00:01
1f00-1ffe : pnp 00:01
2000-2fff : PCI Bus 0000:04
c000-cfff : PCI Bus 0000:03
c000-c0ff : 0000:03:00.0
d000-dfff : PCI Bus 0000:02
e000-efff : PCI Bus 0000:01
e000-e07f : 0000:01:00.0
f000-f03f : 0000:00:02.0
f040-f05f : 0000:00:1f.3
f040-f05f : i801_smbus
f060-f07f : 0000:00:1f.2
f060-f07f : ahci
f080-f083 : 0000:00:1f.2
f080-f083 : ahci
f090-f097 : 0000:00:1f.2
f090-f097 : ahci
f0a0-f0a3 : 0000:00:1f.2
f0a0-f0a3 : ahci
f0b0-f0b7 : 0000:00:1f.2
f0b0-f0b7 : ahci
ffff-ffff : pnp 00:01
ffff-ffff : pnp 00:01
ffff-ffff : pnp 00:01
superiotool r4.9-1209-g74dec7f51d
Found SMSC SCH5317 (id=0x85, rev=0x87) at 0x4e
No dump available for this Super I/O
No extra registers known for this chip.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment