[coreboot] Update on G505S (dGPU init success)

Mike Banon mikebdp2 at gmail.com
Wed Nov 14 09:20:41 CET 2018


Hi there HJK,

> I have issues with my gmail account

Could use coreboot mailing list archive to make sure you haven't
missed any messages:
https://mail.coreboot.org/mailman/listinfo/coreboot

> But for the iGPU variants a small code within CB to patch the pci ids of the iGPU vbios
> would be even better to save space.

Maybe its' possible to do quite easily thanks to " map_oprom_vendev "
function which it is being used at ./coreboot/src/device/pci_rom.c -
line 34 :

struct rom_header *pci_rom_probe(struct device *dev)
{
    struct rom_header *rom_header;
    struct pci_data *rom_data;

    /* If it's in FLASH, then don't check device for ROM. */
    rom_header = cbfs_boot_map_optionrom(dev->vendor, dev->device);

    u32 vendev = (dev->vendor << 16) | dev->device;
    u32 mapped_vendev;

    mapped_vendev = map_oprom_vendev(vendev);

...

./coreboot/src/northbridge/amd/agesa/family15tn/northbridge.c - line 961

/*********************************************************************
 * Change the vendor / device IDs to match the generic VBIOS header. *
 *********************************************************************/
u32 map_oprom_vendev(u32 vendev)
{
    u32 new_vendev = vendev;

    switch(vendev) {
...
    case 0x10029903:    /* AMD Radeon HD 7640G (Trinity)  */
...
    case 0x1002990B:    /* AMD Radeon HD 8650G (Richland) */
...
    case 0x1002990D:    /* AMD Radeon HD 8550G (Richland) */
...

if I understood it correctly, you could make something like this

    case 0x1002990D:    /* AMD Radeon HD 8550G (Richland) */
        new_vendev = 0x1002990B;
        break;

, the same for 0x1002990B, and you could keep the same
pci1002,990b.rom (containing A10-5750M/HD8650G IDs) for all three GPUs

*1*) Could you please test this ^^^ theory? ( I only have A10-5750M so
couldn't verify it by myself )

However, even if this works, we need to really make sure - and then to
prove - that indeed A10-5750M/HD8650G AtomBIOS ROM is 100% compatible
with e.g. A8-5550M/HD8550G.

> I don't remember having issues using the same file (with different pci ids) for the different APUs.

Perhaps that's not enough, ideally we need to get more proof to raise
its' chances of merging :

*2*) Could you please provide a full AtomDis disassembly for the
"dirty" (fully initialized) ROM for A8-5550M/HD8550G ?
(pci1002,990d.rom) - we need to get ./atomdis pci1002,990d.rom F >
output.txt and compare it with atomdis for pci1002,990b.rom to see
what are the differences and - if there are any - are they acceptable?
If you don't have it you may need to temporarily go back to UEFI to
extract it from UEFI / running system

> I used cpu00610F01_ver0600111F_2018-03-05_AC55EB96.bin from platomav git

You could use my patches from this page for convenience:
http://dangerousprototypes.com/docs/Lenovo_G505S_hacking#Unofficial_coreboot_patches
They could conveniently and securely (with SHA-256 verification) patch
the freshly cloned coreboot with the latest microcodes for 15h and
16h.

> I checked HP, Lenovo and other vendors' bios updates, but only found version 1119 within the bios files

It seems that only a few AMD 15h / 16h computers are getting the BIOS
updates with an updated microcode. I have a list of these computers
and I'm checking their official downloads page for new BIOSes once in
a while ( Windows / Win10 should be selected ). During last time of
checking one of these computers (with 111F microcode inside their
BIOS) had 10th April 2018 update date. Now its latest BIOS is 19th
August 2018, I've downloaded it, unpacked then checked its' ROM with
MC Extractor - and it still has this 600111F microcode inside, so not
recalled. Could tell more information privately.

> Yes, the latest microcode for AMD Fam15h hasn't been pushed to the linux-firmware git
> (or actually it was pushed and then the same day was withdrawn)

Indeed it has never been pushed officially, otherwise I'd have seen it
in this commit history for amd-ucode:
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/log/amd-ucode

> I attach my cbmem and linux kernel logs for your reference.

Thank you very much, will be checking them soon

Best regards,
Mike Banon

On Tue, Nov 13, 2018 at 10:49 AM eftername Förname <eforname at freemail.hu> wrote:
>
> Hi Mike,
>
> I have issues with my gmail account, so I can only reply now:
>
> As for the vbios patching: for historic reasons, when I made those vbios files (I use dirty, meaning already
>  initialized files), I was under the impression, that the IO address should be changed to the IO address what CB
> assigns to the cards.  It might not be relevant any more, but the stock bios assigns IO address 0x4000 to the iGPU
>  and 0x3000 to the dGPU, while CB assigns 0x3000 to the iGPU and 0x1000 to the dGPU...
> Also, the stock bios patches the stored,clean,uninitialized vbios files by changing the PCI IDs, Subsystem IDs and
>  many other Atombios tables to get eg. output on the screen (otherwise it is only black screen).
>
> APUs A10-5750m, A8-5550m and A8-4500m all work with CB.  All these are either Richland or Trinity based APUs and CB
> uses in reality Trinity code (years ago TN and RL support was merged within CB source code under TN).
>
> It is absolutely possible to create one CB image with 5 vbios files: three iGPU files with pci id 1002,990b for
>  A10-5750m, 1002,990d for A8-5550m, and 1002,9903 for A8-4500m; and additional two files for the 1002,6663 and
> 1002,6665 dGPUs.  But for the iGPU variants a small code within CB to patch the pci ids of the iGPU vbios would be
>  even better to save space.  I don't remember having issues using the same file (with different pci ids) for the
> different APUs.
>
> When I add the option roms to CBFS as you described, it somehow adds a boot entry for the oprom, which halts the PC.
> This is why I modified SB to do the (fake) dGPU init within the vgarom_setup. Why fake?  Because currently it doesn't
> actually execute the dGPU oprom. And the dGPU still works
>
> Yes, the latest microcode for AMD Fam15h hasn't been pushed to the linux-firmware git (or actually it was pushed and
> then the same day was withdrawn). I used cpu00610F01_ver0600111F_2018-03-05_AC55EB96.bin from platomav git. I checked
> HP, Lenovo and other vendors' bios updates, but only found version 1119 within the bios files...
>
> I attach my cbmem and linux kernel logs for your reference.
>
> BR,
> HJK
> Here is my cbmem.log:
>
> coreboot-4.8-2092-gc0a1625df1-dirty Sat Nov 10 11:51:27 UTC 2018 romstage starting...
> APIC 00: CPU Family_Model = 00610f31
>
> APIC 00: ** Enter AmdInitReset [00020007]
> Fch OEM config in INIT RESET
> AmdInitReset() returned AGESA_SUCCESS
> APIC 00: Heap in LocalCache (2) at 0x00400000
> APIC 00: ** Exit  AmdInitReset [00020007]
>
> APIC 00: ** Enter AmdInitEarly [00020002]
> AmdInitEarly() returned AGESA_SUCCESS
> APIC 00: Heap in LocalCache (2) at 0x00400000
> APIC 00: ** Exit  AmdInitEarly [00020002]
>
> APIC 00: ** Enter AmdInitPost [00020006]
> AmdInitPost() returned AGESA_SUCCESS
> APIC 00: Heap in TempMem (3) at 0x000b0000
> APIC 00: ** Exit  AmdInitPost [00020006]
> CBMEM:
> IMD: root @ cffff000 254 entries.
> IMD: root @ cfffec00 62 entries.
> MTRR Range: Start=0 End=80000000 (Size 80000000)
> MTRR Range: Start=80000000 End=c0000000 (Size 40000000)
> MTRR Range: Start=c0000000 End=d0000000 (Size 10000000)
> MTRR Range: Start=ffc00000 End=0 (Size 400000)
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> CBFS: Locating 'fallback/postcar'
> CBFS: Found @ offset a80 size 4a88
> Decompressing stage fallback/postcar @ 0xcffbbfc0 (35696 bytes)
> Loading module at cffbc000 with entry cffbc000. filesize: 0x4898 memsize: 0x8b30
> Processing 101 relocs. Offset value of 0xcdfbc000
>
>
> coreboot-4.8-2092-gc0a1625df1-dirty Sat Nov 10 11:51:27 UTC 2018 postcar starting...
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> CBFS: Locating 'fallback/ramstage'
> CBFS: Found @ offset 8d080 size 209fa
> Decompressing stage fallback/ramstage @ 0xcfe98fc0 (1149240 bytes)
> Loading module at cfe99000 with entry cfe99000. filesize: 0x4edc0 memsize: 0x1188f8
> Processing 3851 relocs. Offset value of 0xcf099000
>
>
> coreboot-4.8-2092-gc0a1625df1-dirty Sat Nov 10 11:51:27 UTC 2018 ramstage starting...
> Normal boot.
>
> APIC 00: ** Enter AmdInitEnv [00020003]
> Wiped HEAP at [10000000 - 1002ffff]
> Fch OEM config in INIT ENV
> AmdInitEnv() returned AGESA_SUCCESS
> APIC 00: Heap in SystemMem (4) at 0x10000014
> APIC 00: ** Exit  AmdInitEnv [00020003]
> BS: BS_PRE_DEVICE times (us): entry 26870 run 0 exit 0
> BS: BS_DEV_INIT_CHIPS times (us): entry 0 run 6 exit 0
> Enumerating buses...
> Mainboard LENOVO G505S Enable.
> setup_bsp_ramtop, TOP MEM: msr.lo = 0xd0000000, msr.hi = 0x00000000
> setup_bsp_ramtop, TOP MEM2: msr.lo = 0x1f000000, msr.hi = 0x00000002
> CPU_CLUSTER: 0 enabled
> DOMAIN: 0000 enabled
> CPU: APIC: 10 enabled
> CPU: APIC: 11 enabled
> CPU: APIC: 12 enabled
> CPU: APIC: 13 enabled
> scan_bus: scanning of bus CPU_CLUSTER: 0 took 116 usecs
> PCI: pci_scan_bus for bus 00
> PCI: 00:00.0 [1022/1410] enabled
> PCI: 00:00.2 [1022/1419] enabled
> PCI: 00:01.0 [1002/990b] enabled
> PCI: 00:01.1 [1002/9902] enabled
> PCI: 00:02.0 subordinate bus PCI Express
> PCI: 00:02.0 [1022/1412] enabled
> PCI: 00:04.0 subordinate bus PCI Express
> PCI: 00:04.0 [1022/1414] enabled
> PCI: 00:05.0 subordinate bus PCI Express
> PCI: 00:05.0 [1022/1415] enabled
> hudson_enable()
> PCI: 00:10.0 [1022/7814] enabled
> hudson_enable()
> PCI: 00:11.0 [1022/7801] enabled
> hudson_enable()
> PCI: 00:12.0 [1022/7807] enabled
> hudson_enable()
> PCI: 00:12.2 [1022/7808] enabled
> hudson_enable()
> PCI: 00:13.0 [1022/7807] enabled
> hudson_enable()
> PCI: 00:13.2 [1022/7808] enabled
> hudson_enable()
> PCI: 00:14.0 [1022/780b] enabled
> hudson_enable()
> PCI: 00:14.2 [1022/780d] enabled
> hudson_enable()
> PCI: 00:14.3 [1022/780e] enabled
> hudson_enable()
> PCI: 00:14.4 [1022/780f] enabled
> hudson_enable()
> hudson_enable()
> hudson_enable()
> hudson_enable()
> hudson_enable()
> hudson_enable()
> hudson_enable()
> PCI: 00:18.0 [1022/1400] enabled
> PCI: 00:18.1 [1022/1401] enabled
> PCI: 00:18.2 [1022/1402] enabled
> PCI: 00:18.3 [1022/1403] enabled
> PCI: 00:18.4 [1022/1404] enabled
> PCI: 00:18.5 [1022/1405] enabled
> PCI: pci_scan_bus for bus 01
> PCI: 01:00.0 [1002/6665] enabled
> Enabling Common Clock Configuration
> PCIE CLK PM is not supported by endpoint
> ASPM: Enabled L0s and L1
> Failed to enable LTR for dev = PCI: 01:00.0
> scan_bus: scanning of bus PCI: 00:02.0 took 199 usecs
> PCI: pci_scan_bus for bus 02
> PCI: 02:00.0 [1969/10a0] enabled
> Enabling Common Clock Configuration
> ASPM: Enabled L0s and L1
> Failed to enable LTR for dev = PCI: 02:00.0
> scan_bus: scanning of bus PCI: 00:04.0 took 187 usecs
> PCI: pci_scan_bus for bus 03
> PCI: 03:00.0 [168c/0036] enabled
> Enabling Common Clock Configuration
> PCIE CLK PM is not supported by endpoint
> ASPM: Enabled L0s and L1
> Failed to enable LTR for dev = PCI: 03:00.0
> scan_bus: scanning of bus PCI: 00:05.0 took 176 usecs
> bus: PCI: 00:14.0[0]->I2C: 01:50 enabled
> bus: PCI: 00:14.0[0]->I2C: 01:51 enabled
> scan_bus: scanning of bus PCI: 00:14.0 took 35 usecs
> PNP: 00ff.1 enabled
> PNP: 00ff.0 enabled
> scan_bus: scanning of bus PCI: 00:14.3 took 53 usecs
> PCI: pci_scan_bus for bus 04
> scan_bus: scanning of bus PCI: 00:14.4 took 49 usecs
> scan_bus: scanning of bus DOMAIN: 0000 took 1228 usecs
> scan_bus: scanning of bus Root Device took 1433 usecs
> done
> BS: BS_DEV_ENUMERATE times (us): entry 0 run 6571 exit 0
> found VGA at PCI: 00:01.0
> Setting up VGA for PCI: 00:01.0
> Setting PCI_BRIDGE_CTL_VGA for bridge DOMAIN: 0000
> Setting PCI_BRIDGE_CTL_VGA for bridge Root Device
> Allocating resources...
> Reading resources...
> fx_devs=0x1
> I2C: 01:50 missing read_resources
> I2C: 01:51 missing read_resources
> PNP: 00ff.1 missing read_resources
> Adding PCIe enhanced config space BAR 0xf8000000-0xfc000000.
> Done reading resources.
> Setting resources...
> node 0: mmio_basek=00340000, basek=00400000, limitk=00860000
> PCI: 00:00.2 44 <- [0x00f0300000 - 0x00f037ffff] size 0x00080000 gran 0x13 mem
> PCI: 00:01.0 10 <- [0x00d0000000 - 0x00dfffffff] size 0x10000000 gran 0x1c prefmem
> PCI: 00:01.0 14 <- [0x0000003000 - 0x00000030ff] size 0x00000100 gran 0x08 io
> PCI: 00:01.0 18 <- [0x00f0380000 - 0x00f03bffff] size 0x00040000 gran 0x12 mem
> PCI: 00:01.1 10 <- [0x00f03c0000 - 0x00f03c3fff] size 0x00004000 gran 0x0e mem
> PCI: 00:02.0 1c <- [0x0000001000 - 0x0000001fff] size 0x00001000 gran 0x0c bus 01 io
> PCI: 00:02.0 24 <- [0x00e0000000 - 0x00efffffff] size 0x10000000 gran 0x14 bus 01 prefmem
> PCI: 00:02.0 20 <- [0x00f0000000 - 0x00f00fffff] size 0x00100000 gran 0x14 bus 01 mem
> PCI: 01:00.0 10 <- [0x00e0000000 - 0x00efffffff] size 0x10000000 gran 0x1c prefmem64
> PCI: 01:00.0 18 <- [0x00f0000000 - 0x00f003ffff] size 0x00040000 gran 0x12 mem64
> PCI: 01:00.0 20 <- [0x0000001000 - 0x00000010ff] size 0x00000100 gran 0x08 io
> PCI: 01:00.0 30 <- [0x00f0040000 - 0x00f005ffff] size 0x00020000 gran 0x11 romem
> PCI: 00:04.0 1c <- [0x0000002000 - 0x0000002fff] size 0x00001000 gran 0x0c bus 02 io
> PCI: 00:04.0 24 <- [0x00f7ffffff - 0x00f7fffffe] size 0x00000000 gran 0x14 bus 02 prefmem
> PCI: 00:04.0 20 <- [0x00f0100000 - 0x00f01fffff] size 0x00100000 gran 0x14 bus 02 mem
> PCI: 02:00.0 10 <- [0x00f0100000 - 0x00f013ffff] size 0x00040000 gran 0x12 mem64
> PCI: 02:00.0 18 <- [0x0000002000 - 0x000000207f] size 0x00000080 gran 0x07 io
> PCI: 00:05.0 1c <- [0x000000ffff - 0x000000fffe] size 0x00000000 gran 0x0c bus 03 io
> PCI: 00:05.0 24 <- [0x00f7ffffff - 0x00f7fffffe] size 0x00000000 gran 0x14 bus 03 prefmem
> PCI: 00:05.0 20 <- [0x00f0200000 - 0x00f02fffff] size 0x00100000 gran 0x14 bus 03 mem
> PCI: 03:00.0 10 <- [0x00f0200000 - 0x00f027ffff] size 0x00080000 gran 0x13 mem64
> PCI: 03:00.0 30 <- [0x00f0280000 - 0x00f028ffff] size 0x00010000 gran 0x10 romem
> PCI: 00:10.0 10 <- [0x00f03c8000 - 0x00f03c9fff] size 0x00002000 gran 0x0d mem64
> PCI: 00:11.0 10 <- [0x0000003410 - 0x0000003417] size 0x00000008 gran 0x03 io
> PCI: 00:11.0 14 <- [0x0000003420 - 0x0000003423] size 0x00000004 gran 0x02 io
> PCI: 00:11.0 18 <- [0x0000003418 - 0x000000341f] size 0x00000008 gran 0x03 io
> PCI: 00:11.0 1c <- [0x0000003424 - 0x0000003427] size 0x00000004 gran 0x02 io
> PCI: 00:11.0 20 <- [0x0000003400 - 0x000000340f] size 0x00000010 gran 0x04 io
> PCI: 00:11.0 24 <- [0x00f03cc000 - 0x00f03cc7ff] size 0x00000800 gran 0x0b mem
> PCI: 00:12.0 10 <- [0x00f03ca000 - 0x00f03cafff] size 0x00001000 gran 0x0c mem
> PCI: 00:12.2 10 <- [0x00f03cd000 - 0x00f03cd0ff] size 0x00000100 gran 0x08 mem
> PCI: 00:13.0 10 <- [0x00f03cb000 - 0x00f03cbfff] size 0x00001000 gran 0x0c mem
> PCI: 00:13.2 10 <- [0x00f03ce000 - 0x00f03ce0ff] size 0x00000100 gran 0x08 mem
> PCI: 00:14.2 10 <- [0x00f03c4000 - 0x00f03c7fff] size 0x00004000 gran 0x0e mem64
> PCI: 00:14.4 1c <- [0x000000ffff - 0x000000fffe] size 0x00000000 gran 0x0c bus 04 io
> PCI: 00:14.4 24 <- [0x00f7ffffff - 0x00f7fffffe] size 0x00000000 gran 0x14 bus 04 prefmem
> PCI: 00:14.4 20 <- [0x00f7ffffff - 0x00f7fffffe] size 0x00000000 gran 0x14 bus 04 mem
> Done setting resources.
> Done allocating resources.
> BS: BS_DEV_RESOURCES times (us): entry 0 run 1077 exit 0
>
> APIC 00: ** Enter AmdInitMid [00020005]
> AmdInitMid() returned AGESA_SUCCESS
> APIC 00: Heap in SystemMem (4) at 0x10000014
> APIC 00: ** Exit  AmdInitMid [00020005]
> Warning: Can't write PCI_INTR 0xC00/0xC01 registers because
> 'mainboard_picr_data' or 'mainboard_intr_data' tables are NULL
> Warning: Can't write PCI IRQ assignments because 'mainboard_pirq_data' structure does not exist
> Enabling resources...
> PCI: 00:00.0 subsystem <- 1022/1410
> PCI: 00:00.0 cmd <- 06
> PCI: 00:00.2 subsystem <- 1022/1410
> PCI: 00:00.2 cmd <- 06
> PCI: 00:01.0 subsystem <- 1022/1410
> PCI: 00:01.0 cmd <- 07
> PCI: 00:01.1 subsystem <- 1022/1410
> PCI: 00:01.1 cmd <- 02
> PCI: 00:02.0 bridge ctrl <- 0003
> PCI: 00:02.0 cmd <- 07
> PCI: 00:04.0 bridge ctrl <- 0003
> PCI: 00:04.0 cmd <- 07
> PCI: 00:05.0 bridge ctrl <- 0003
> PCI: 00:05.0 cmd <- 06
> PCI: 00:10.0 subsystem <- 1022/1410
> PCI: 00:10.0 cmd <- 02
> PCI: 00:11.0 cmd <- 03
> PCI: 00:12.0 subsystem <- 1022/1410
> PCI: 00:12.0 cmd <- 02
> PCI: 00:12.2 subsystem <- 1022/1410
> PCI: 00:12.2 cmd <- 02
> PCI: 00:13.0 subsystem <- 1022/1410
> PCI: 00:13.0 cmd <- 02
> PCI: 00:13.2 subsystem <- 1022/1410
> PCI: 00:13.2 cmd <- 02
> PCI: 00:14.0 subsystem <- 1022/1410
> PCI: 00:14.0 cmd <- 403
> PCI: 00:14.2 subsystem <- 1022/1410
> PCI: 00:14.2 cmd <- 02
> PCI: 00:14.3 subsystem <- 1022/1410
> PCI: 00:14.3 cmd <- 0f
> PCI: 00:14.4 bridge ctrl <- 0003
> PCI: 00:14.4 cmd <- 00
> PCI: 00:18.0 cmd <- 00
> PCI: 00:18.1 subsystem <- 1022/1410
> PCI: 00:18.1 cmd <- 00
> PCI: 00:18.2 subsystem <- 1022/1410
> PCI: 00:18.2 cmd <- 00
> PCI: 00:18.3 subsystem <- 1022/1410
> PCI: 00:18.3 cmd <- 00
> PCI: 00:18.4 subsystem <- 1022/1410
> PCI: 00:18.4 cmd <- 00
> PCI: 00:18.5 subsystem <- 1022/1410
> PCI: 00:18.5 cmd <- 00
> PCI: 01:00.0 cmd <- 03
> PCI: 02:00.0 cmd <- 03
> PCI: 03:00.0 cmd <- 02
> done.
> BS: BS_DEV_ENABLE times (us): entry 6210 run 87 exit 0
> Initializing devices...
> Root Device init ...
> Root Device init finished in 0 usecs
> CPU_CLUSTER: 0 init ...
> start_eip=0x00001000, code_size=0x00000031
> Initializing CPU #0
> CPU: vendor AMD device 610f31
> CPU: family 15, model 13, stepping 01
> Model 15 Init.
>
> MTRR check
> Fixed MTRRs   : Enabled
> Variable MTRRs: Enabled
>
> Enabling cache
> Setting up local APIC... apic_id: 0x10 done.
> siblings = 03, Initializing SMM for CPU 0
> CPU #0 initialized
> Initializing CPU #1
> CPU: vendor AMD device 610f31
> CPU: family 15, model 13, stepping 01
> Model 15 Init.
>
> MTRR check
> Fixed MTRRs   : Enabled
> Variable MTRRs: Enabled
>
> Enabling cache
> Setting up local APIC... apic_id: 0x11 done.
> siblings = 03, Initializing SMM for CPU 1
> CPU #1 initialized
> Initializing CPU #2
> CPU: vendor AMD device 610f31
> CPU: family 15, model 13, stepping 01
> Model 15 Init.
>
> MTRR check
> Fixed MTRRs   : Enabled
> Variable MTRRs: Enabled
>
> Enabling cache
> Setting up local APIC... apic_id: 0x12 done.
> siblings = 03, Initializing SMM for CPU 2
> CPU #2 initialized
> Initializing CPU #3
> Waiting for 1 CPUS to stop
> CPU: vendor AMD device 610f31
> CPU: family 15, model 13, stepping 01
> Model 15 Init.
>
> MTRR check
> Fixed MTRRs   : Enabled
> Variable MTRRs: Enabled
>
> Enabling cache
> Setting up local APIC... apic_id: 0x13 done.
> siblings = 03, Initializing SMM for CPU 3
> CPU #3 initialized
> All AP CPUs stopped (43 loops)
> CPU_CLUSTER: 0 init finished in 36116 usecs
> DOMAIN: 0000 init ...
> DOMAIN: 0000 init finished in 0 usecs
> PCI: 00:00.0 init ...
> PCI: 00:00.0 init finished in 0 usecs
> PCI: 00:01.0 init ...
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> CBFS: Locating 'pci1002,990b.rom'
> CBFS: Found @ offset cd0c0 size f200
> In CBFS, ROM address for PCI: 00:01.0 = ffccd308
> PCI expansion ROM, signature 0xaa55, INIT size 0xf200, data ptr 0x01b4
> PCI ROM image, vendor ID 1002, device ID 990b,
> PCI ROM image, Class Code 030000, Code Type 00
> Copying VGA ROM Image from ffccd308 to 0xc0000, 0xf200 bytes
> Calling Option ROM...
> ... Option ROM returned.
> VBE: Getting information about VESA mode 4118
> VBE: resolution:  0x0 at 0
> VBE: framebuffer: d0000000
> VBE: Setting VESA mode 4118
> VGA Option ROM was run
> PCI: 00:01.0 init finished in 56763 usecs
> PCI: 00:01.1 init ...
> PCI: 00:01.1 init finished in 0 usecs
> PCI: 00:10.0 init ...
> PCI: 00:10.0 init finished in 0 usecs
> PCI: 00:11.0 init ...
> PCI: 00:11.0 init finished in 0 usecs
> PCI: 00:12.0 init ...
> PCI: 00:12.0 init finished in 0 usecs
> PCI: 00:12.2 init ...
> PCI: 00:12.2 init finished in 0 usecs
> PCI: 00:13.0 init ...
> PCI: 00:13.0 init finished in 0 usecs
> PCI: 00:13.2 init ...
> PCI: 00:13.2 init finished in 0 usecs
> PCI: 00:14.0 init ...
> IOAPIC: Initializing IOAPIC at 0xfec00000
> IOAPIC: Bootstrap Processor Local APIC = 0x10
> IOAPIC: ID = 0x04
> IOAPIC: 24 interrupts
> IOAPIC: Enabling interrupts on FSB
> PCI: 00:14.0 init finished in 6 usecs
> PCI: 00:14.2 init ...
> PCI: 00:14.2 init finished in 0 usecs
> PCI: 00:14.3 init ...
> RTC Init
> RTC: coreboot checksum invalid
> PCI: 00:14.3 init finished in 144 usecs
> PCI: 00:14.4 init ...
> PCI: 00:14.4 init finished in 0 usecs
> PCI: 00:18.0 init ...
> PCI: 00:18.0 init finished in 0 usecs
> PCI: 00:18.1 init ...
> PCI: 00:18.1 init finished in 0 usecs
> PCI: 00:18.2 init ...
> PCI: 00:18.2 init finished in 0 usecs
> PCI: 00:18.3 init ...
> PCI: 00:18.3 init finished in 0 usecs
> PCI: 00:18.4 init ...
> PCI: 00:18.4 init finished in 0 usecs
> PCI: 00:18.5 init ...
> PCI: 00:18.5 init finished in 0 usecs
> PCI: 01:00.0 init ...
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> CBFS: Locating 'pci1002,6665.rom'
> CBFS: Found @ offset 140c0 size 8000
> In CBFS, ROM address for PCI: 01:00.0 = ffc14308
> PCI expansion ROM, signature 0xaa55, INIT size 0x8000, data ptr 0x0224
> PCI ROM image, vendor ID 1002, device ID 6665,
> PCI ROM image, Class Code 038000, Code Type 00
> Copying non-VGA ROM image from ffc14308 to 000d0000, 0x8000 bytes
> PCI: 01:00.0 init finished in 4559 usecs
> PCI: 02:00.0 init ...
> PCI: 02:00.0 init finished in 0 usecs
> PCI: 03:00.0 init ...
> PCI: 03:00.0 init finished in 0 usecs
> PNP: 00ff.0 init ...
> Compal ENE932: Initializing keyboard.
> PNP: 00ff.0 init finished in 0 usecs
> Devices initialized
> BS: BS_DEV_INIT times (us): entry 0 run 97663 exit 0
> Finalize devices...
> Devices finalized
>
> APIC 00: ** Enter AmdInitLate [00020004]
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/Common/CommonReturns.c', line 187
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/CPU/cpuGeneralServices.c', line 776
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/Common/CommonReturns.c', line 187
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/CPU/cpuGeneralServices.c', line 776
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/Common/CommonReturns.c', line 187
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/CPU/cpuGeneralServices.c', line 776
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/Common/CommonReturns.c', line 187
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/CPU/cpuGeneralServices.c', line 776
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/Common/CommonReturns.c', line 187
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/CPU/cpuGeneralServices.c', line 776
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/Common/CommonReturns.c', line 187
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/CPU/cpuGeneralServices.c', line 776
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/Common/CommonReturns.c', line 187
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/CPU/cpuGeneralServices.c', line 776
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/Common/CommonReturns.c', line 187
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/CPU/cpuGeneralServices.c', line 776
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/Common/CommonReturns.c', line 187
> ASSERTION ERROR: file 'src/vendorcode/amd/agesa/f15tn/Proc/CPU/cpuGeneralServices.c', line 776
> AmdInitLate() returned AGESA_SUCCESS
> APIC 00: Heap in SystemMem (4) at 0x10000014
> APIC 00: ** Exit  AmdInitLate [00020004]
>
> APIC 00: ** Enter AmdS3Save [0002000b]
> Manufacturer: 1c
> SF: Detected EN25QH32 with sector size 0x1000, total 0x400000
> SF: Successfully erased 4096 bytes @ 0xffff1000
> ASSERTION ERROR: file 'src/drivers/spi/spi_flash.c', line 534
> ASSERTION ERROR: file 'src/drivers/spi/spi_flash.c', line 534
> ASSERTION ERROR: file 'src/drivers/spi/spi_flash.c', line 534
> ASSERTION ERROR: file 'src/drivers/spi/spi_flash.c', line 534
> Manufacturer: 1c
> SF: Detected EN25QH32 with sector size 0x1000, total 0x400000
> SF: Successfully erased 4096 bytes @ 0xffff0000
> ASSERTION ERROR: file 'src/drivers/spi/spi_flash.c', line 534
> ASSERTION ERROR: file 'src/drivers/spi/spi_flash.c', line 534
> ASSERTION ERROR: file 'src/drivers/spi/spi_flash.c', line 534
> ASSERTION ERROR: file 'src/drivers/spi/spi_flash.c', line 534
> AmdS3Save() returned AGESA_SUCCESS
> ASSERTION ERROR: file 'src/drivers/amd/agesa/state_machine.c', line 309
> APIC 00: Heap in SystemMem (4) at 0x10000014
> APIC 00: ** Exit  AmdS3Save [0002000b]
> BS: BS_POST_DEVICE times (us): entry 0 run 2 exit 43651
> BS: BS_OS_RESUME_CHECK times (us): entry 0 run 1 exit 0
> Wrote the mp table end at: 000f0010 - 000f0244
> Wrote the mp table end at: cfd46010 - cfd46244
> MP table: 580 bytes.
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> CBFS: Locating 'fallback/dsdt.aml'
> CBFS: Found @ offset 5540 size 24ca
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> CBFS: Locating 'fallback/slic'
> CBFS: 'fallback/slic' not found.
> ACPI: Writing ACPI tables at cfd22000.
> ACPI:    * FACS
> ACPI:    * DSDT
> ACPI:    * FADT
> pm_base: 0x0800
> ACPI: added table 1/32, length now 40
> ACPI:     * SSDT
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> CBFS: Locating 'pci1002,990b.rom'
> CBFS: Found @ offset cd0c0 size f200
> In CBFS, ROM address for PCI: 00:01.0 = ffccd308
> PCI expansion ROM, signature 0xaa55, INIT size 0xf200, data ptr 0x01b4
> PCI ROM image, vendor ID 1002, device ID 990b,
> PCI ROM image, Class Code 030000, Code Type 00
> PCI: 00:01.0: Missing ACPI scope
> ACPI: added table 2/32, length now 44
> ACPI:    * MCFG
> ACPI:    * MADT
> ACPI: added table 3/32, length now 48
> current = cfd24960
> ACPI:    * HPET
> ACPI: added table 4/32, length now 52
> ACPI: added table 5/32, length now 56
> ACPI:    * IVRS at cfd24b70
> ACPI: added table 6/32, length now 60
> ACPI:    * SRAT at cfd24be0
>   AGESA SRAT table NULL. Skipping.
> ACPI:   * SLIT at cfd24be0
>   AGESA SLIT table NULL. Skipping.
> ACPI:  * AGESA ALIB SSDT at cfd24be0
> ACPI: added table 7/32, length now 64
> ACPI:    * SSDT at cfd26ac0
> ACPI: added table 8/32, length now 68
> ACPI:    * SSDT for PState at cfd274b8
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> CBFS: Locating 'pci1002,6665.rom'
> CBFS: Found @ offset 140c0 size 8000
> In CBFS, ROM address for PCI: 01:00.0 = ffc14308
> PCI expansion ROM, signature 0xaa55, INIT size 0x8000, data ptr 0x0224
> PCI ROM image, vendor ID 1002, device ID 6665,
> PCI ROM image, Class Code 038000, Code Type 00
> ACPI:    * VFCT at cfd274c0
>            Copying initialized VBIOS image from 000d0000
> ACPI: added table 9/32, length now 72
> ACPI: done.
> ACPI tables: 54576 bytes.
> smbios_write_tables: cfd21000
> EEPROM not found
> EEPROM not found
> EEPROM not found
> EEPROM not found
> EEPROM not found
> EEPROM not found
> EEPROM not found
> SMBIOS tables: 343 bytes.
> Writing table forward entry at 0x00000500
> Wrote coreboot table at: 00000500, 0x10 bytes, checksum c009
> Writing coreboot table at 0xcfd47000
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> CBFS: Locating 'cmos_layout.bin'
> CBFS: Found @ offset 580 size 48c
>  0. 0000000000000000-0000000000000fff: CONFIGURATION TABLES
>  1. 0000000000001000-000000000009ffff: RAM
>  2. 00000000000c0000-00000000cfd20fff: RAM
>  3. 00000000cfd21000-00000000cfe98fff: CONFIGURATION TABLES
>  4. 00000000cfe99000-00000000cffb1fff: RAMSTAGE
>  5. 00000000cffb2000-00000000cfffffff: CONFIGURATION TABLES
>  6. 00000000f8000000-00000000fbffffff: RESERVED
>  7. 0000000100000000-000000021effffff: RAM
> Manufacturer: 1c
> SF: Detected EN25QH32 with sector size 0x1000, total 0x400000
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> Wrote coreboot table at: cfd47000, 0x7a4 bytes, checksum 801b
> coreboot table: 1980 bytes.
> IMD ROOT    0. cffff000 00001000
> IMD SMALL   1. cfffe000 00001000
> CONSOLE     2. cffde000 00020000
> TIME STAMP  3. cffdd000 00000910
> ROMSTG STCK 4. cffc5000 00018000
> AFTER CAR   5. cffbb000 0000a000
> 57a9e102    6. cffb2000 00008b30
> RAMSTAGE    7. cfe98000 0011a000
> 57a9e100    8. cfd7f000 001188f8
> ACPISCRATCH 9. cfd4f000 00030000
> COREBOOT   10. cfd47000 00008000
> SMP TABLE  11. cfd46000 00001000
> ACPI       12. cfd22000 00024000
> SMBIOS     13. cfd21000 00000800
> IMD small region:
>   IMD ROOT    0. cfffec00 00000400
>   ROMSTAGE    1. cfffebe0 00000004
>   57a9e002    2. cfffebc0 00000018
>   57a9e000    3. cfffeba0 00000018
>   COREBOOTFWD 4. cfffeb60 00000028
> BS: BS_WRITE_TABLES times (us): entry 0 run 2435 exit 0
> CBFS: 'Master Header Locator' located CBFS at [200:3fffc0)
> CBFS: Locating 'fallback/payload'
> CBFS: Found @ offset bdf80 size f0d5
> Checking segment from ROM address 0xffcbe1b8
> Checking segment from ROM address 0xffcbe1d4
> Loading segment from ROM address 0xffcbe1b8
>   code (compression=1)
>   New segment dstaddr 0x000e2f00 memsize 0x1d100 srcaddr 0xffcbe1f0 filesize 0xf09d
> Loading Segment: addr: 0x000e2f00 memsz: 0x000000000001d100 filesz: 0x000000000000f09d
> using LZMA
> Loading segment from ROM address 0xffcbe1d4
>   Entry Point 0x000fcdee
> BS: BS_PAYLOAD_LOAD times (us): entry 0 run 13515 exit 0
> Unsupported software interrupt #0x15 eax 0x4e08
> Jumping to boot code at 000fcdee(cfd47000)
> SeaBIOS (version rel-1.11.2-0-gf9626cc-dirty)
> BUILD: gcc: (Ubuntu 7.3.0-27ubuntu1~18.04) 7.3.0 binutils: (GNU Binutils for Ubuntu) 2.30
> Found coreboot cbmem console @ cffde000
> Found mainboard LENOVO LENOVO G505S
> malloc preinit
> Relocating init from 0x000e4440 to 0xcfcd5ae0 (size 46208)
> malloc init
> Found CBFS header at 0xffc00238
> Add romfile: cbfs master header (size=32)
> Add romfile: config (size=555)
> Add romfile: revision (size=582)
> Add romfile: cmos_layout.bin (size=1164)
> Add romfile: fallback/postcar (size=19080)
> Add romfile: fallback/dsdt.aml (size=9418)
> Add romfile: img/coreinfo (size=50654)
> Add romfile: pci1002,6665.rom (size=32768)
> Add romfile:  (size=15448)
> Add romfile: apu/amdfw (size=131072)
> Add romfile: fallback/romstage (size=315884)
> Add romfile: fallback/ramstage (size=133626)
> Add romfile: img/nvramcui (size=66701)
> Add romfile: fallback/payload (size=61653)
> Add romfile: pci1002,990b.rom (size=61952)
> Add romfile:  (size=3226200)
> Add romfile: s3nv (size=32768)
> Add romfile:  (size=31192)
> Add romfile: bootblock (size=1424)
> multiboot: eax=cfee1f20, ebx=cfee1ed4
> init ivt
> init bda
> init bios32
> init PMM
> init PNPBIOS table
> init keyboard
> init mouse
> init pic
> math cp init
> PCI probe
> PCI device 00:00.0 (vd=1022:1410 c=0600)
> PCI device 00:00.2 (vd=1022:1419 c=0806)
> PCI device 00:01.0 (vd=1002:990b c=0300)
> PCI device 00:01.1 (vd=1002:9902 c=0403)
> PCI device 00:02.0 (vd=1022:1412 c=0604)
> PCI device 00:04.0 (vd=1022:1414 c=0604)
> PCI device 00:05.0 (vd=1022:1415 c=0604)
> PCI device 00:10.0 (vd=1022:7814 c=0c03)
> PCI device 00:11.0 (vd=1022:7801 c=0106)
> PCI device 00:12.0 (vd=1022:7807 c=0c03)
> PCI device 00:12.2 (vd=1022:7808 c=0c03)
> PCI device 00:13.0 (vd=1022:7807 c=0c03)
> PCI device 00:13.2 (vd=1022:7808 c=0c03)
> PCI device 00:14.0 (vd=1022:780b c=0c05)
> PCI device 00:14.2 (vd=1022:780d c=0403)
> PCI device 00:14.3 (vd=1022:780e c=0601)
> PCI device 00:14.4 (vd=1022:780f c=0604)
> PCI device 00:18.0 (vd=1022:1400 c=0600)
> PCI device 00:18.1 (vd=1022:1401 c=0600)
> PCI device 00:18.2 (vd=1022:1402 c=0600)
> PCI device 00:18.3 (vd=1022:1403 c=0600)
> PCI device 00:18.4 (vd=1022:1404 c=0600)
> PCI device 00:18.5 (vd=1022:1405 c=0600)
> PCI device 01:00.0 (vd=1002:6665 c=0380)
> PCI device 02:00.0 (vd=1969:10a0 c=0200)
> PCI device 03:00.0 (vd=168c:0036 c=0280)
> Found 26 PCI devices (max PCI bus is 04)
> Relocating coreboot bios tables
> Copying SMBIOS entry point from 0xcfd21000 to 0x000f6040
> Copying ACPI RSDP from 0xcfd22000 to 0x000f6010
> Copying MPTABLE from 0xcfd46000/cfd46010 to 0x000f5dc0
> rsdp=0x000f6010
> rsdt=0xcfd22030
> table(50434146)=0xcfd24750
> pm_tmr_blk=818
> Using pmtimer, ioport 0x818
> init timer
> Scan for VGA option rom
> Attempting to init PCI bdf 00:01.0 (vd 1002:990b)
> Copying data 61952 at 0xffccd308 to 61952 at 0x000c0000
> Running option rom at c000:0003
> VGA found, scan for other display
> Match for dGPU, starting init
> Attempting to init PCI bdf 01:00.0 (vd 1002:6665)
> Copying data 32768 at 0xffc14308 to 32768 at 0x000d0000
> Running option rom at d000:0003
> Turning on vga text mode console
> SeaBIOS (version rel-1.11.2-0-gf9626cc-dirty)
> init usb
> XHCI init on dev 00:10.0: regs @ 0xf03c8000, 4 ports, 32 slots, 32 byte contexts
> XHCI    extcap 0x1 @ 0xf03c8500
> XHCI    protocol USB  3.00, 2 ports (offset 1), def 0
> XHCI    protocol USB  2.00, 2 ports (offset 3), def 10
> /cfcd3000\ Start thread
> |cfcd3000| configure_xhci: resetting
> EHCI init on dev 00:12.2 (regs=0xf03cd020)
> /cfcd2000\ Start thread
> EHCI init on dev 00:13.2 (regs=0xf03ce020)
> /cfcd0000\ Start thread
> OHCI init on dev 00:12.0 (regs=0xf03ca000)
> /cfccf000\ Start thread
> OHCI init on dev 00:13.0 (regs=0xf03cb000)
> /cfcce000\ Start thread
> init ps2port
> /cfccd000\ Start thread
> init floppy drives
> init hard drives
> init ahci
> AHCI controller at 00:11.0, iobase 0xf03cc000, irq 0
> AHCI: cap 0xf3309f05, ports_impl 0x1
> /cfccc000\ Start thread
> |cfccc000| AHCI/0: probing
> |cfccc000| AHCI/0: link up
> /cfccb000\ Start thread
> /cfcca000\ Start thread
> init lpt
> Found 0 lpt ports
> init serial
> Found 0 serial ports
> Searching bootorder for: /rom at img/nvramcui
> Registering bootable: Payload [nvramcui] (type:32 prio:9999 data:ffcadcc0)
> Searching bootorder for: /rom at img/coreinfo
> Registering bootable: Payload [coreinfo] (type:32 prio:9999 data:ffc07c80)
> |cfccc000| AHCI/0: ... finished, status 0x51, ERROR 0x4
> /cfcc9000\ Start thread
> /cfcc8000\ Start thread
> /cfcc7000\ Start thread
> /cfcc6000\ Start thread
> /cfcc5000\ Start thread
> /cfcc3000\ Start thread
> /cfcc2000\ Start thread
> /cfcc1000\ Start thread
> |cfccc000| Searching bootorder for: /pci at i0cf8/*@11/drive at 0/disk at 0
> |cfccc000| AHCI/0: supported modes: udma 5, multi-dma 2, pio 4
> |cfccc000| AHCI/0: Set transfer mode to UDMA-5
> |cfccc000| AHCI/0: registering: "AHCI/0: XXXX Hard-Disk (XXXX GiBytes)"
> |cfccc000| Registering bootable: AHCI/0: XXXX Hard-Disk (XXXX GiBytes) (type:2 prio:103 data:f5d50)
> \cfccc000/ End thread
> /cfccc000\ Start thread
> /cfcc0000\ Start thread
> /cfcbf000\ Start thread
> /cfcbe000\ Start thread
> /cfcbd000\ Start thread
> /cfcbc000\ Start thread
> /cfcbb000\ Start thread
> /cfcba000\ Start thread
> /cfcb9000\ Start thread
> /cfcb8000\ Start thread
> /cfcb7000\ Start thread
> /cfcb6000\ Start thread
> /cfcb5000\ Start thread
> /cfcb4000\ Start thread
> |cfcc9000| set_address 0xcfcd1fe0
> \cfcc6000/ End thread
> |cfcc3000| set_address 0xcfcd40f0
> |cfcc9000| config_usb: 0xcfcc6fd0
> |cfcc9000| device rev=0200 cls=ff sub=ff proto=ff size=64
> \cfcc9000/ End thread
> |cfccd000| PS2 keyboard initialized
> \cfccd000/ End thread
> |cfcc3000| config_usb: 0xcfcc9fd0
> |cfcc3000| device rev=0200 cls=ef sub=02 proto=01 size=64
> |cfcb8000| set_address 0xcfcd1ed0
> |cfcb8000| config_usb: 0xcfcd1260
> |cfcb8000| device rev=0110 cls=e0 sub=01 proto=01 size=64
> \cfcc2000/ End thread
> \cfcc5000/ End thread
> \cfcc7000/ End thread
> \cfccb000/ End thread
> \cfcc1000/ End thread
> \cfcc8000/ End thread
> \cfcca000/ End thread
> \cfcb8000/ End thread
> \cfcd0000/ End thread
> \cfcbe000/ End thread
> \cfcbf000/ End thread
> \cfcc0000/ End thread
> \cfccc000/ End thread
> |cfcd3000| XHCI no devices found
> \cfcd3000/ End thread
> |cfcc3000| usb_hid_setup 0xcfcc9fd0
> \cfcc3000/ End thread
> \cfcd2000/ End thread
> \cfcb5000/ End thread
> \cfcb7000/ End thread
> \cfcb9000/ End thread
> \cfcbb000/ End thread
> \cfcbd000/ End thread
> \cfcb4000/ End thread
> \cfcb6000/ End thread
> \cfcba000/ End thread
> \cfcbc000/ End thread
> \cfcce000/ End thread
> \cfccf000/ End thread
> All threads complete.
> Scan for option roms
> Attempting to init PCI bdf 00:00.0 (vd 1022:1410)
> Attempting to map option rom on dev 00:00.0
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:00.2 (vd 1022:1419)
> Attempting to map option rom on dev 00:00.2
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:01.1 (vd 1002:9902)
> Attempting to map option rom on dev 00:01.1
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:02.0 (vd 1022:1412)
> Attempting to map option rom on dev 00:02.0
> Attempting to init PCI bdf 00:04.0 (vd 1022:1414)
> Attempting to map option rom on dev 00:04.0
> Attempting to init PCI bdf 00:05.0 (vd 1022:1415)
> Attempting to map option rom on dev 00:05.0
> Attempting to init PCI bdf 00:14.0 (vd 1022:780b)
> Attempting to map option rom on dev 00:14.0
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:14.2 (vd 1022:780d)
> Attempting to map option rom on dev 00:14.2
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:14.3 (vd 1022:780e)
> Attempting to map option rom on dev 00:14.3
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:14.4 (vd 1022:780f)
> Attempting to map option rom on dev 00:14.4
> Attempting to init PCI bdf 00:18.0 (vd 1022:1400)
> Attempting to map option rom on dev 00:18.0
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:18.1 (vd 1022:1401)
> Attempting to map option rom on dev 00:18.1
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:18.2 (vd 1022:1402)
> Attempting to map option rom on dev 00:18.2
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:18.3 (vd 1022:1403)
> Attempting to map option rom on dev 00:18.3
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:18.4 (vd 1022:1404)
> Attempting to map option rom on dev 00:18.4
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 00:18.5 (vd 1022:1405)
> Attempting to map option rom on dev 00:18.5
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 02:00.0 (vd 1969:10a0)
> Attempting to map option rom on dev 02:00.0
> Option rom sizing returned 0 0
> Attempting to init PCI bdf 03:00.0 (vd 168c:0036)
> Attempting to map option rom on dev 03:00.0
> Option rom sizing returned f0280000 ffff0000
> Inspecting possible rom at 0xf0280000 (vd=168c:0036 bdf=03:00.0)
> No option rom signature (got beef)
>
> Press ESC for boot menu.
>
> Checking for bootsplash
> Searching bootorder for: HALT
> Mapping hd drive XXXX to 0
> drive XXXX: PCHS=XXXX translation=lba LCHS=XXXX s=XXXX
> finalize PMM
> malloc finalize
> Space available for UMB: d8000-ee000, f5860-f5d50
> Returned 258048 bytes of ZoneHigh
> e820 map has 7 items:
>   0: 0000000000000000 - 000000000009fc00 = 1 RAM
>   1: 000000000009fc00 - 00000000000a0000 = 2 RESERVED
>   2: 00000000000f0000 - 0000000000100000 = 2 RESERVED
>   3: 0000000000100000 - 00000000cfd20000 = 1 RAM
>   4: 00000000cfd20000 - 00000000d0000000 = 2 RESERVED
>   5: 00000000f8000000 - 00000000fc000000 = 2 RESERVED
>   6: 0000000100000000 - 000000021f000000 = 1 RAM
> Jump to int19
> enter handle_19:
>   NULL
> Booting from Hard Disk...
> Booting from 0000:7c00
>
> And my linux kernel log:
>
> [    0.000000] Linux version 4.15.0-38-generic (buildd at lcy01-amd64-023) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10)) #41~16.04.1-Ubuntu SMP Wed Oct 10 20:16:04 UTC 2018 (Ubuntu 4.15.0-38.41~16.04.1-generic 4.15.18)
> [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-38-generic root=UUID=XXXX ro quiet splash vt.handoff=7
> [    0.000000] KERNEL supported cpus:
> [    0.000000]   Intel GenuineIntel
> [    0.000000]   AMD AuthenticAMD
> [    0.000000]   Centaur CentaurHauls
> [    0.000000] random: get_random_u32 called from bsp_init_amd+0x21f/0x2c0 with crng_init=0
> [    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
> [    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
> [    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
> [    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
> [    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
> [    0.000000] e820: BIOS-provided physical RAM map:
> [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
> [    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
> [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfd1ffff] usable
> [    0.000000] BIOS-e820: [mem 0x00000000cfd20000-0x00000000cfffffff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
> [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021effffff] usable
> [    0.000000] NX (Execute Disable) protection: active
> [    0.000000] SMBIOS 2.7 present.
> [    0.000000] DMI: LENOVO *INVALID*/*INVALID*, BIOS CBET4000 4.8-2092-gc0a1625df1-dirty 11/10/2018
> [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
> [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
> [    0.000000] e820: last_pfn = 0x21f000 max_arch_pfn = 0x400000000
> [    0.000000] MTRR default type: uncachable
> [    0.000000] MTRR fixed ranges enabled:
> [    0.000000]   00000-9FFFF write-back
> [    0.000000]   A0000-BFFFF uncachable
> [    0.000000]   C0000-FFFFF write-back
> [    0.000000] MTRR variable ranges enabled:
> [    0.000000]   0 base 0000FFC00000 mask FFFFFFC00000 write-protect
> [    0.000000]   1 base 0000C0000000 mask FFFFF0000000 write-back
> [    0.000000]   2 base 000080000000 mask FFFFC0000000 write-back
> [    0.000000]   3 base 000000000000 mask FFFF80000000 write-back
> [    0.000000]   4 disabled
> [    0.000000]   5 disabled
> [    0.000000]   6 disabled
> [    0.000000]   7 disabled
> [    0.000000] TOM2: 000000021f000000 aka 8688M
> [    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
> [    0.000000] e820: last_pfn = 0xcfd20 max_arch_pfn = 0x400000000
> [    0.000000] found SMP MP-table at [mem 0x000f5dc0-0x000f5dcf] mapped at [        (ptrval)]
> [    0.000000] Scanning 1 areas for low memory corruption
> [    0.000000] Base memory trampoline at [        (ptrval)] 99000 size 24576
> [    0.000000] Using GB pages for direct mapping
> [    0.000000] BRK [0x1e713f000, 0x1e713ffff] PGTABLE
> [    0.000000] BRK [0x1e7140000, 0x1e7140fff] PGTABLE
> [    0.000000] BRK [0x1e7141000, 0x1e7141fff] PGTABLE
> [    0.000000] BRK [0x1e7142000, 0x1e7142fff] PGTABLE
> [    0.000000] BRK [0x1e7143000, 0x1e7143fff] PGTABLE
> [    0.000000] BRK [0x1e7144000, 0x1e7144fff] PGTABLE
> [    0.000000] BRK [0x1e7145000, 0x1e7145fff] PGTABLE
> [    0.000000] RAMDISK: [mem 0x3179c000-0x34bc5fff]
> [    0.000000] ACPI: Early table checksum verification disabled
> [    0.000000] ACPI: RSDP 0x00000000000F6010 000024 (v02 CORE  )
> [    0.000000] ACPI: XSDT 0x00000000CFD220E0 00006C (v01 CORE   COREBOOT 00000000 CORE 00000000)
> [    0.000000] ACPI: FACP 0x00000000CFD24750 0000F4 (v04 CORE   COREBOOT 00000000 CORE 00000000)
> [    0.000000] ACPI: DSDT 0x00000000CFD22280 0024CA (v02 AMD    COREBOOT 00010001 INTL 20180810)
> [    0.000000] ACPI: FACS 0x00000000CFD22240 000040
> [    0.000000] ACPI: FACS 0x00000000CFD22240 000040
> [    0.000000] ACPI: SSDT 0x00000000CFD24850 00008A (v02 CORE   COREBOOT 0000002A CORE 0000002A)
> [    0.000000] ACPI: APIC 0x00000000CFD248E0 000072 (v02 CORE   COREBOOT 00000000 CORE 00000000)
> [    0.000000] ACPI: HPET 0x00000000CFD24960 000038 (v01 CORE   COREBOOT 00000000 CORE 00000000)
> [    0.000000] ACPI: HEST 0x00000000CFD249A0 0001D0 (v01 CORE   COREBOOT 00000000 CORE 00000000)
> [    0.000000] ACPI: IVRS 0x00000000CFD24B70 000070 (v02 AMD    AMDIOMMU 00000001 AMD  00000000)
> [    0.000000] ACPI: SSDT 0x00000000CFD24BE0 001ED4 (v02 AMD    ALIB     00000001 MSFT 04000000)
> [    0.000000] ACPI: SSDT 0x00000000CFD26AC0 0009F8 (v01 AMD    POWERNOW 00000001 AMD  00000001)
> [    0.000000] ACPI: VFCT 0x00000000CFD274C0 008069 (v01 CORE   COREBOOT 00000000 CORE 00000000)
> [    0.000000] ACPI: Local APIC address 0xfee00000
> [    0.000000] No NUMA configuration found
> [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000021effffff]
> [    0.000000] NODE_DATA(0) allocated [mem 0x21efd5000-0x21effffff]
> [    0.000000] tsc: Fast TSC calibration using PIT
> [    0.000000] Zone ranges:
> [    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
> [    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
> [    0.000000]   Normal   [mem 0x0000000100000000-0x000000021effffff]
> [    0.000000]   Device   empty
> [    0.000000] Movable zone start for each node
> [    0.000000] Early memory node ranges
> [    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
> [    0.000000]   node   0: [mem 0x0000000000100000-0x00000000cfd1ffff]
> [    0.000000]   node   0: [mem 0x0000000100000000-0x000000021effffff]
> [    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000021effffff]
> [    0.000000] On node 0 totalpages: 2026686
> [    0.000000]   DMA zone: 64 pages used for memmap
> [    0.000000]   DMA zone: 21 pages reserved
> [    0.000000]   DMA zone: 3998 pages, LIFO batch:0
> [    0.000000]   DMA32 zone: 13237 pages used for memmap
> [    0.000000]   DMA32 zone: 847136 pages, LIFO batch:31
> [    0.000000]   Normal zone: 18368 pages used for memmap
> [    0.000000]   Normal zone: 1175552 pages, LIFO batch:31
> [    0.000000] Reserved but unavailable: 98 pages
> [    0.000000] ACPI: PM-Timer IO Port: 0x818
> [    0.000000] ACPI: Local APIC address 0xfee00000
> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
> [    0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
> [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
> [    0.000000] ACPI: IRQ0 used by override.
> [    0.000000] ACPI: IRQ9 used by override.
> [    0.000000] Using ACPI (MADT) for SMP configuration information
> [    0.000000] ACPI: HPET id: 0x10228210 base: 0xfed00000
> [    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
> [    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
> [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
> [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
> [    0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
> [    0.000000] PM: Registered nosave memory: [mem 0xcfd20000-0xcfffffff]
> [    0.000000] PM: Registered nosave memory: [mem 0xd0000000-0xf7ffffff]
> [    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
> [    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xffffffff]
> [    0.000000] e820: [mem 0xd0000000-0xf7ffffff] available for PCI devices
> [    0.000000] Booting paravirtualized kernel on bare hardware
> [    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: XXXX ns
> [    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
> [    0.000000] percpu: Embedded 46 pages/cpu @        (ptrval) XXXX
> [    0.000000] pcpu-alloc: XXXX alloc=1*2097152
> [    0.000000] pcpu-alloc: [0] 0 1 2 3
> [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1994996
> [    0.000000] Policy zone: Normal
> [    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-38-generic root=UUID=XXXX ro quiet splash vt.handoff=7
> [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
> [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
> [    0.000000] Memory: 7831400K/8106744K available (12300K kernel code, 2471K rwdata, 4260K rodata, 2408K init, 2416K bss, 275344K reserved, 0K cma-reserved)
> [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
> [    0.000000] ftrace: allocating 39182 entries in 154 pages
> [    0.000000] Hierarchical RCU implementation.
> [    0.000000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
> [    0.000000] Tasks RCU enabled.
> [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
> [    0.000000] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
> [    0.000000] spurious 8259A interrupt: IRQ7.
> [    0.000000] vt handoff: transparent VT on vt#7
> [    0.000000] Console: colour dummy device 80x25
> [    0.000000] console [tty0] enabled
> [    0.000000] ACPI: Core revision 20170831
> [    0.000000] ACPI: 4 ACPI AML tables successfully acquired and loaded
> [    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: XXXX ns
> [    0.000000] hpet clockevent registered
> [    0.000000] APIC: Switch to symmetric I/O mode setup
> [    0.004000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
> [    0.024000] tsc: Fast TSC calibration using PIT
> [    0.028000] tsc: Detected 2495.243 MHz processor
> [    0.028000] Calibrating delay loop (skipped), value calculated using timer frequency.. 4990.48 BogoMIPS (lpj=9980972)
> [    0.028000] pid_max: default: 32768 minimum: 301
> [    0.028000] Security Framework initialized
> [    0.028000] Yama: becoming mindful.
> [    0.028000] AppArmor: AppArmor initialized
> [    0.028000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
> [    0.032723] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
> [    0.032778] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
> [    0.032813] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
> [    0.033078] mce: CPU supports 7 MCE banks
> [    0.033092] Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
> [    0.033093] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
> [    0.033096] Spectre V2 : Mitigation: Full AMD retpoline
> [    0.033097] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
> [    0.033097] Spectre V2 : Spectre v2 mitigation: Enabling Indirect Branch Prediction Barrier
> [    0.033099] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
> [    0.044576] Freeing SMP alternatives memory: 36K
> [    0.052000] smpboot: CPU0: AMD A10-5750M APU with Radeon(tm) HD Graphics (family: 0x15, model: 0x13, stepping: 0x1)
> [    0.052000] Performance Events: Fam15h core perfctr, AMD PMU driver.
> [    0.052000] ... version:                0
> [    0.052000] ... bit width:              48
> [    0.052000] ... generic registers:      6
> [    0.052000] ... value mask:             0000ffffffffffff
> [    0.052000] ... max period:             00007fffffffffff
> [    0.052000] ... fixed-purpose events:   0
> [    0.052000] ... event mask:             000000000000003f
> [    0.052000] Hierarchical SRCU implementation.
> [    0.052000] smp: Bringing up secondary CPUs ...
> [    0.052000] x86: Booting SMP configuration:
> [    0.052000] .... node  #0, CPUs:      #1
> [    0.004000] do_IRQ: 1.55 No irq handler for vector
> [    0.052000] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
> [    0.052000]  #2
> [    0.004000] do_IRQ: 2.55 No irq handler for vector
> [    0.052129]  #3
> [    0.004000] do_IRQ: 3.55 No irq handler for vector
> [    0.056037] smp: Brought up 1 node, 4 CPUs
> [    0.056037] smpboot: Max logical packages: 1
> [    0.056037] smpboot: Total of 4 processors activated (19961.94 BogoMIPS)
> [    0.057264] devtmpfs: initialized
> [    0.057264] x86/mm: Memory block size: 128MB
> [    0.057264] evm: security.selinux
> [    0.057264] evm: security.SMACK64
> [    0.057264] evm: security.SMACK64EXEC
> [    0.057264] evm: security.SMACK64TRANSMUTE
> [    0.057264] evm: security.SMACK64MMAP
> [    0.057264] evm: security.apparmor
> [    0.057264] evm: security.ima
> [    0.057264] evm: security.capability
> [    0.057264] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: XXXX ns
> [    0.057264] futex hash table entries: 1024 (order: 4, 65536 bytes)
> [    0.057264] pinctrl core: initialized pinctrl subsystem
> [    0.057264] RTC time: 19:18:22, date: 11/11/18
> [    0.057264] NET: Registered protocol family 16
> [    0.057264] audit: initializing netlink subsys (disabled)
> [    0.057264] audit: type=2000 audit(1541963902.056:1): state=initialized audit_enabled=0 res=1
> [    0.060030] cpuidle: using governor ladder
> [    0.060030] cpuidle: using governor menu
> [    0.060057] ACPI: bus type PCI registered
> [    0.060059] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> [    0.060130] PCI: Using configuration type 1 for base access
> [    0.060130] PCI: Using configuration type 1 for extended access
> [    0.060306] mtrr: your CPUs had inconsistent variable MTRR settings
> [    0.060307] mtrr: probably your BIOS does not setup all CPUs.
> [    0.060307] mtrr: corrected configuration.
> [    0.062025] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
> [    0.062025] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
> [    0.062025] ACPI: Added _OSI(Module Device)
> [    0.062025] ACPI: Added _OSI(Processor Device)
> [    0.062025] ACPI: Added _OSI(3.0 _SCP Extensions)
> [    0.062025] ACPI: Added _OSI(Processor Aggregator Device)
> [    0.062025] ACPI: Added _OSI(Linux-Dell-Video)
> [    0.062025] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
> [    0.062025] ACPI: Executed 2 blocks of module-level executable AML code
> [    0.168751] ACPI: EC: EC started
> [    0.168752] ACPI: EC: interrupt blocked
> [    0.169139] ACPI: \_SB_.PCI0.LIBR.EC0_: Used as first EC
> [    0.169141] ACPI: \_SB_.PCI0.LIBR.EC0_: GPE=0x3, EC_CMD/EC_SC=0x66, EC_DATA=0x62
> [    0.169144] ACPI: \_SB_.PCI0.LIBR.EC0_: Used as boot DSDT EC to handle transactions
> [    0.169144] ACPI: Interpreter enabled
> [    0.169172] ACPI: (supports S0 S1 S3 S4 S5)
> [    0.169174] ACPI: Using IOAPIC for interrupt routing
> [    0.169195] HEST: Table parsing has been initialized.
> [    0.169198] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> [    0.169410] ACPI: Enabled 8 GPEs in block 00 to 1F
> [    0.174245] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
> [    0.174252] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
> [    0.174329] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
> [    0.174411] acpi PNP0A03:00: host bridge window expanded to [io  0x0000-0x0cf7 window]; [io  0x03b0-0x03df window] ignored
> [    0.174692] PCI host bridge to bus 0000:00
> [    0.174695] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
> [    0.174697] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
> [    0.174699] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
> [    0.174701] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
> [    0.174703] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xffffffff]
> [    0.174705] pci_bus 0000:00: root bus resource [bus 00-ff]
> [    0.174714] pci 0000:00:00.0: [1022:1410] type 00 class 0x060000
> [    0.174843] pci 0000:00:00.2: [1022:1419] type 00 class 0x080600
> [    0.174975] pci 0000:00:01.0: [1002:990b] type 00 class 0x030000
> [    0.174989] pci 0000:00:01.0: reg 0x10: [mem 0xd0000000-0xdfffffff pref]
> [    0.174994] pci 0000:00:01.0: reg 0x14: [io  0x3000-0x30ff]
> [    0.175000] pci 0000:00:01.0: reg 0x18: [mem 0xf0380000-0xf03bffff]
> [    0.175017] pci 0000:00:01.0: enabling Extended Tags
> [    0.175044] pci 0000:00:01.0: supports D1 D2
> [    0.175139] pci 0000:00:01.1: [1002:9902] type 00 class 0x040300
> [    0.175152] pci 0000:00:01.1: reg 0x10: [mem 0xf03c0000-0xf03c3fff]
> [    0.175175] pci 0000:00:01.1: enabling Extended Tags
> [    0.175201] pci 0000:00:01.1: supports D1 D2
> [    0.175298] pci 0000:00:02.0: [1022:1412] type 01 class 0x060400
> [    0.175321] pci 0000:00:02.0: enabling Extended Tags
> [    0.175349] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
> [    0.175461] pci 0000:00:04.0: [1022:1414] type 01 class 0x060400
> [    0.175484] pci 0000:00:04.0: enabling Extended Tags
> [    0.175512] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
> [    0.175624] pci 0000:00:05.0: [1022:1415] type 01 class 0x060400
> [    0.175647] pci 0000:00:05.0: enabling Extended Tags
> [    0.175675] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
> [    0.175804] pci 0000:00:10.0: [1022:7814] type 00 class 0x0c0330
> [    0.175831] pci 0000:00:10.0: reg 0x10: [mem 0xf03c8000-0xf03c9fff 64bit]
> [    0.175929] pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
> [    0.176059] pci 0000:00:11.0: [1022:7801] type 00 class 0x010601
> [    0.176077] pci 0000:00:11.0: reg 0x10: [io  0x3410-0x3417]
> [    0.176085] pci 0000:00:11.0: reg 0x14: [io  0x3420-0x3423]
> [    0.176094] pci 0000:00:11.0: reg 0x18: [io  0x3418-0x341f]
> [    0.176102] pci 0000:00:11.0: reg 0x1c: [io  0x3424-0x3427]
> [    0.176110] pci 0000:00:11.0: reg 0x20: [io  0x3400-0x340f]
> [    0.176119] pci 0000:00:11.0: reg 0x24: [mem 0xf03cc000-0xf03cc7ff]
> [    0.176245] pci 0000:00:12.0: [1022:7807] type 00 class 0x0c0310
> [    0.176261] pci 0000:00:12.0: reg 0x10: [mem 0xf03ca000-0xf03cafff]
> [    0.176413] pci 0000:00:12.2: [1022:7808] type 00 class 0x0c0320
> [    0.176431] pci 0000:00:12.2: reg 0x10: [mem 0xf03cd000-0xf03cd0ff]
> [    0.176501] pci 0000:00:12.2: supports D1 D2
> [    0.176503] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
> [    0.176611] pci 0000:00:13.0: [1022:7807] type 00 class 0x0c0310
> [    0.176626] pci 0000:00:13.0: reg 0x10: [mem 0xf03cb000-0xf03cbfff]
> [    0.176777] pci 0000:00:13.2: [1022:7808] type 00 class 0x0c0320
> [    0.176796] pci 0000:00:13.2: reg 0x10: [mem 0xf03ce000-0xf03ce0ff]
> [    0.176865] pci 0000:00:13.2: supports D1 D2
> [    0.176867] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
> [    0.176975] pci 0000:00:14.0: [1022:780b] type 00 class 0x0c0500
> [    0.177130] pci 0000:00:14.2: [1022:780d] type 00 class 0x040300
> [    0.177152] pci 0000:00:14.2: reg 0x10: [mem 0xf03c4000-0xf03c7fff 64bit]
> [    0.177210] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
> [    0.177312] pci 0000:00:14.3: [1022:780e] type 00 class 0x060100
> [    0.177469] pci 0000:00:14.4: [1022:780f] type 01 class 0x060401
> [    0.177604] pci 0000:00:18.0: [1022:1400] type 00 class 0x060000
> [    0.177712] pci 0000:00:18.1: [1022:1401] type 00 class 0x060000
> [    0.177815] pci 0000:00:18.2: [1022:1402] type 00 class 0x060000
> [    0.177918] pci 0000:00:18.3: [1022:1403] type 00 class 0x060000
> [    0.178026] pci 0000:00:18.4: [1022:1404] type 00 class 0x060000
> [    0.178129] pci 0000:00:18.5: [1022:1405] type 00 class 0x060000
> [    0.178286] pci 0000:01:00.0: [1002:6665] type 00 class 0x038000
> [    0.178308] pci 0000:01:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
> [    0.178319] pci 0000:01:00.0: reg 0x18: [mem 0xf0000000-0xf003ffff 64bit]
> [    0.178326] pci 0000:01:00.0: reg 0x20: [io  0x1000-0x10ff]
> [    0.178338] pci 0000:01:00.0: reg 0x30: [mem 0xf0040000-0xf005ffff pref]
> [    0.178345] pci 0000:01:00.0: enabling Extended Tags
> [    0.178390] pci 0000:01:00.0: supports D1 D2
> [    0.178392] pci 0000:01:00.0: PME# supported from D1 D2 D3hot
> [    0.188039] pci 0000:00:02.0: PCI bridge to [bus 01]
> [    0.188045] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
> [    0.188048] pci 0000:00:02.0:   bridge window [mem 0xf0000000-0xf00fffff]
> [    0.188052] pci 0000:00:02.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
> [    0.188145] pci 0000:02:00.0: [1969:10a0] type 00 class 0x020000
> [    0.188183] pci 0000:02:00.0: reg 0x10: [mem 0xf0100000-0xf013ffff 64bit]
> [    0.188198] pci 0000:02:00.0: reg 0x18: [io  0x2000-0x207f]
> [    0.188318] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> [    0.200047] pci 0000:00:04.0: PCI bridge to [bus 02]
> [    0.200053] pci 0000:00:04.0:   bridge window [io  0x2000-0x2fff]
> [    0.200056] pci 0000:00:04.0:   bridge window [mem 0xf0100000-0xf01fffff]
> [    0.200161] pci 0000:03:00.0: [168c:0036] type 00 class 0x028000
> [    0.200192] pci 0000:03:00.0: reg 0x10: [mem 0xf0200000-0xf027ffff 64bit]
> [    0.200230] pci 0000:03:00.0: reg 0x30: [mem 0xf0280000-0xf028ffff pref]
> [    0.200322] pci 0000:03:00.0: supports D1 D2
> [    0.200324] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> [    0.212057] pci 0000:00:05.0: PCI bridge to [bus 03]
> [    0.212064] pci 0000:00:05.0:   bridge window [mem 0xf0200000-0xf02fffff]
> [    0.212171] pci 0000:00:14.4: PCI bridge to [bus 04] (subtractive decode)
> [    0.212180] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
> [    0.212182] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
> [    0.212184] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
> [    0.212186] pci 0000:00:14.4:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
> [    0.212188] pci 0000:00:14.4:   bridge window [mem 0xe0000000-0xffffffff] (subtractive decode)
> [    0.212907] ACPI: PCI Interrupt Link [INTA] (IRQs 3 4 5 7 10 11 12 15) *0
> [    0.212995] ACPI: PCI Interrupt Link [INTB] (IRQs 3 4 5 7 10 11 12 15) *0
> [    0.213081] ACPI: PCI Interrupt Link [INTC] (IRQs 3 4 5 7 10 11 12 15) *0
> [    0.213166] ACPI: PCI Interrupt Link [INTD] (IRQs 3 4 5 7 10 11 12 15) *0
> [    0.213248] ACPI: PCI Interrupt Link [INTE] (IRQs 3 4 5 7 10 11 12 15) *0
> [    0.213331] ACPI: PCI Interrupt Link [INTF] (IRQs 9) *0
> [    0.213412] ACPI: PCI Interrupt Link [INTG] (IRQs 3 4 5 7 10 11 12 15) *0
> [    0.213495] ACPI: PCI Interrupt Link [INTH] (IRQs 3 4 5 7 10 11 12 15) *0
> [    0.213696] ACPI: EC: interrupt unblocked
> [    0.213702] ACPI: EC: event unblocked
> [    0.213708] ACPI: \_SB_.PCI0.LIBR.EC0_: GPE=0x3, EC_CMD/EC_SC=0x66, EC_DATA=0x62
> [    0.213710] ACPI: \_SB_.PCI0.LIBR.EC0_: Used as boot DSDT EC to handle transactions and events
> [    0.214020] SCSI subsystem initialized
> [    0.214043] libata version 3.00 loaded.
> [    0.214043] pci 0000:00:01.0: vgaarb: setting as boot VGA device
> [    0.214043] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
> [    0.214043] pci 0000:00:01.0: vgaarb: bridge control possible
> [    0.214043] vgaarb: loaded
> [    0.214043] ACPI: bus type USB registered
> [    0.214043] usbcore: registered new interface driver usbfs
> [    0.214043] usbcore: registered new interface driver hub
> [    0.214043] usbcore: registered new device driver usb
> [    0.214043] EDAC MC: Ver: 3.0.0
> [    0.214043] PCI: Using ACPI for IRQ routing
> [    0.214043] PCI: pci_cache_line_size set to 64 bytes
> [    0.214043] pci 0000:00:01.0: can't claim BAR 0 [mem 0xd0000000-0xdfffffff pref]: no compatible bridge window
> [    0.214043] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
> [    0.214043] e820: reserve RAM buffer [mem 0xcfd20000-0xcfffffff]
> [    0.214043] e820: reserve RAM buffer [mem 0x21f000000-0x21fffffff]
> [    0.214043] NetLabel: Initializing
> [    0.214043] NetLabel:  domain hash size = 128
> [    0.214043] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
> [    0.214043] NetLabel:  unlabeled traffic allowed by default
> [    0.214043] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
> [    0.214043] hpet0: 3 comparators, 32-bit 14.3 MHz counter
> [    0.216009] clocksource: Switched to clocksource hpet
> [    0.233380] VFS: Disk quotas dquot_6.6.0
> [    0.233403] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
> [    0.233548] AppArmor: AppArmor Filesystem Enabled
> [    0.233583] pnp: PnP ACPI init
> [    0.233842] system 00:00: [mem 0xfec10002-0xfec11001] has been reserved
> [    0.233850] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
> [    0.233886] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
> [    0.233944] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
> [    0.233984] pnp 00:03: Plug and Play ACPI device, IDs PNP0f13 (active)
> [    0.240373] pnp: PnP ACPI: found 4 devices
> [    0.247658] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: xxxx ns
> [    0.247696] pci 0000:00:01.0: BAR 0: no space for [mem size 0x10000000 pref]
> [    0.247699] pci 0000:00:01.0: BAR 0: trying firmware assignment [mem 0xd0000000-0xdfffffff pref]
> [    0.247701] pci 0000:00:01.0: BAR 0: assigned [mem 0xd0000000-0xdfffffff pref]
> [    0.247706] pci 0000:00:02.0: PCI bridge to [bus 01]
> [    0.247709] pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
> [    0.247713] pci 0000:00:02.0:   bridge window [mem 0xf0000000-0xf00fffff]
> [    0.247715] pci 0000:00:02.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
> [    0.247719] pci 0000:00:04.0: PCI bridge to [bus 02]
> [    0.247722] pci 0000:00:04.0:   bridge window [io  0x2000-0x2fff]
> [    0.247725] pci 0000:00:04.0:   bridge window [mem 0xf0100000-0xf01fffff]
> [    0.247730] pci 0000:00:05.0: PCI bridge to [bus 03]
> [    0.247733] pci 0000:00:05.0:   bridge window [mem 0xf0200000-0xf02fffff]
> [    0.247738] pci 0000:00:14.4: PCI bridge to [bus 04]
> [    0.247749] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
> [    0.247751] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
> [    0.247753] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
> [    0.247755] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
> [    0.247757] pci_bus 0000:00: resource 8 [mem 0xe0000000-0xffffffff]
> [    0.247759] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
> [    0.247760] pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf00fffff]
> [    0.247762] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
> [    0.247764] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
> [    0.247766] pci_bus 0000:02: resource 1 [mem 0xf0100000-0xf01fffff]
> [    0.247768] pci_bus 0000:03: resource 1 [mem 0xf0200000-0xf02fffff]
> [    0.247770] pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7 window]
> [    0.247772] pci_bus 0000:04: resource 5 [io  0x0d00-0xffff window]
> [    0.247773] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
> [    0.247775] pci_bus 0000:04: resource 7 [mem 0x000c0000-0x000dffff]
> [    0.247777] pci_bus 0000:04: resource 8 [mem 0xe0000000-0xffffffff]
> [    0.247860] NET: Registered protocol family 2
> [    0.248115] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
> [    0.248293] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
> [    0.248543] TCP: Hash tables configured (established 65536 bind 65536)
> [    0.248606] UDP hash table entries: 4096 (order: 5, 131072 bytes)
> [    0.248647] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
> [    0.248735] NET: Registered protocol family 1
> [    0.248756] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
> [    0.249580] pci 0000:00:12.2: PME# does not work under D3, disabling it
> [    0.250054] pci 0000:00:13.2: PME# does not work under D3, disabling it
> [    0.250083] pci 0000:02:00.0: set MSI_INTX_DISABLE_BUG flag
> [    0.250108] PCI: CLS 64 bytes, default 64
> [    0.250168] Unpacking initramfs...
> [    1.305784] Freeing initrd memory: 53416K
> [    1.305831] AMD-Vi: Applying erratum 746 workaround for IOMMU at 0000:00:00.2
> [    1.306030] pci 0000:00:00.2: can't derive routing for PCI INT A
> [    1.306032] pci 0000:00:00.2: PCI INT A: no GSI
> [    1.306241] iommu: Adding device 0000:00:01.0 to group 0
> [    1.306260] iommu: Adding device 0000:00:01.1 to group 0
> [    1.306343] iommu: Adding device 0000:00:02.0 to group 1
> [    1.306416] iommu: Adding device 0000:00:04.0 to group 2
> [    1.306497] iommu: Adding device 0000:00:05.0 to group 3
> [    1.306577] iommu: Adding device 0000:00:10.0 to group 4
> [    1.306656] iommu: Adding device 0000:00:11.0 to group 5
> [    1.306740] iommu: Adding device 0000:00:12.0 to group 6
> [    1.306757] iommu: Adding device 0000:00:12.2 to group 6
> [    1.306847] iommu: Adding device 0000:00:13.0 to group 7
> [    1.306865] iommu: Adding device 0000:00:13.2 to group 7
> [    1.306956] iommu: Adding device 0000:00:14.0 to group 8
> [    1.306974] iommu: Adding device 0000:00:14.2 to group 8
> [    1.306991] iommu: Adding device 0000:00:14.3 to group 8
> [    1.307071] iommu: Adding device 0000:00:14.4 to group 9
> [    1.307177] iommu: Adding device 0000:00:18.0 to group 10
> [    1.307196] iommu: Adding device 0000:00:18.1 to group 10
> [    1.307217] iommu: Adding device 0000:00:18.2 to group 10
> [    1.307236] iommu: Adding device 0000:00:18.3 to group 10
> [    1.307255] iommu: Adding device 0000:00:18.4 to group 10
> [    1.307274] iommu: Adding device 0000:00:18.5 to group 10
> [    1.307287] iommu: Adding device 0000:01:00.0 to group 1
> [    1.307298] iommu: Adding device 0000:02:00.0 to group 2
> [    1.307326] iommu: Adding device 0000:03:00.0 to group 3
> [    1.307837] AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
> [    1.307838] AMD-Vi: Extended features (0x800000853):
> [    1.307839]  PreF PPR GT IA
> [    1.307842] AMD-Vi: Interrupt remapping enabled
> [    1.308094] AMD-Vi: Lazy IO/TLB flushing enabled
> [    1.310264] amd_uncore: AMD NB counters detected
> [    1.310465] LVT offset 0 assigned for vector 0x400
> [    1.310525] perf: AMD IBS detected (0x000000ff)
> [    1.310581] Scanning for low memory corruption every 60 seconds
> [    1.311411] Initialise system trusted keyrings
> [    1.311421] Key type blacklist registered
> [    1.311470] workingset: timestamp_bits=36 max_order=21 bucket_order=0
> [    1.313279] zbud: loaded
> [    1.313894] squashfs: version 4.0 (2009/01/31) Phillip Lougher
> [    1.314179] fuse init (API version 7.26)
> [    1.316271] Key type asymmetric registered
> [    1.316273] Asymmetric key parser 'x509' registered
> [    1.316338] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
> [    1.316392] io scheduler noop registered
> [    1.316393] io scheduler deadline registered
> [    1.316454] io scheduler cfq registered (default)
> [    1.317344] pcieport 0000:00:02.0: Signaling PME with IRQ 25
> [    1.317363] pcieport 0000:00:04.0: Signaling PME with IRQ 26
> [    1.317380] pcieport 0000:00:05.0: Signaling PME with IRQ 27
> [    1.317469] vesafb: mode is 1366x768x32, linelength=5632, pages=0
> [    1.317469] vesafb: scrolling: redraw
> [    1.317471] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
> [    1.317484] vesafb: framebuffer at 0xd0000000, mapped to 0x        (ptrval), using 4224k, total 4224k
> [    1.317679] Console: switching to colour frame buffer device 170x48
> [    1.317705] fb0: VESA VGA frame buffer device
> [    1.324220] ACPI: AC Adapter [AC] (on-line)
> [    1.324304] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
> [    1.324342] ACPI: Lid Switch [LID]
> [    1.324387] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
> [    1.324396] ACPI: Power Button [PWRB]
> [    1.324454] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
> [    1.324481] ACPI: Power Button [PWRF]
> [    1.325093] GHES: Failed to enable APEI firmware first mode.
> [    1.325234] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
> [    1.327934] Linux agpgart interface v0.103
> [    1.330219] loop: module loaded
> [    1.330456] libphy: Fixed MDIO Bus: probed
> [    1.330457] tun: Universal TUN/TAP device driver, 1.6
> [    1.330545] PPP generic driver version 2.4.2
> [    1.330599] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
> [    1.330602] ehci-pci: EHCI PCI platform driver
> [    1.330784] QUIRK: Enable AMD PLL fix
> [    1.330814] ehci-pci 0000:00:12.2: EHCI Host Controller
> [    1.330821] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
> [    1.330826] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
> [    1.330835] ehci-pci 0000:00:12.2: debug port 1
> [    1.330888] ehci-pci 0000:00:12.2: irq 17, io mem 0xf03cd000
> [    1.336160] ACPI: Battery Slot [BATX] (battery absent)
> [    1.344133] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
> [    1.344205] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
> [    1.344207] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> [    1.344209] usb usb1: Product: EHCI Host Controller
> [    1.344211] usb usb1: Manufacturer: Linux 4.15.0-38-generic ehci_hcd
> [    1.344212] usb usb1: SerialNumber: 0000:00:12.2
> [    1.344386] hub 1-0:1.0: USB hub found
> [    1.344395] hub 1-0:1.0: 5 ports detected
> [    1.344766] ehci-pci 0000:00:13.2: EHCI Host Controller
> [    1.344772] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
> [    1.344777] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
> [    1.344786] ehci-pci 0000:00:13.2: debug port 1
> [    1.344823] ehci-pci 0000:00:13.2: irq 17, io mem 0xf03ce000
> [    1.360117] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
> [    1.360188] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
> [    1.360190] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> [    1.360192] usb usb2: Product: EHCI Host Controller
> [    1.360193] usb usb2: Manufacturer: Linux 4.15.0-38-generic ehci_hcd
> [    1.360195] usb usb2: SerialNumber: 0000:00:13.2
> [    1.360373] hub 2-0:1.0: USB hub found
> [    1.360381] hub 2-0:1.0: 5 ports detected
> [    1.360574] ehci-platform: EHCI generic platform driver
> [    1.360594] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
> [    1.360597] ohci-pci: OHCI PCI platform driver
> [    1.360791] ohci-pci 0000:00:12.0: OHCI PCI host controller
> [    1.360797] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
> [    1.360848] ohci-pci 0000:00:12.0: irq 18, io mem 0xf03ca000
> [    1.424172] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
> [    1.424175] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> [    1.424177] usb usb3: Product: OHCI PCI host controller
> [    1.424178] usb usb3: Manufacturer: Linux 4.15.0-38-generic ohci_hcd
> [    1.424180] usb usb3: SerialNumber: 0000:00:12.0
> [    1.424497] hub 3-0:1.0: USB hub found
> [    1.424508] hub 3-0:1.0: 5 ports detected
> [    1.424871] ohci-pci 0000:00:13.0: OHCI PCI host controller
> [    1.424877] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 4
> [    1.424908] ohci-pci 0000:00:13.0: irq 18, io mem 0xf03cb000
> [    1.488171] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
> [    1.488174] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> [    1.488176] usb usb4: Product: OHCI PCI host controller
> [    1.488177] usb usb4: Manufacturer: Linux 4.15.0-38-generic ohci_hcd
> [    1.488179] usb usb4: SerialNumber: 0000:00:13.0
> [    1.488437] hub 4-0:1.0: USB hub found
> [    1.488447] hub 4-0:1.0: 5 ports detected
> [    1.488642] ohci-platform: OHCI generic platform driver
> [    1.488660] uhci_hcd: USB Universal Host Controller Interface driver
> [    1.488889] xhci_hcd 0000:00:10.0: xHCI Host Controller
> [    1.488895] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 5
> [    1.489092] xhci_hcd 0000:00:10.0: hcc params 0x014042c3 hci version 0x96 quirks 0x00000608
> [    1.489388] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
> [    1.489390] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> [    1.489392] usb usb5: Product: xHCI Host Controller
> [    1.489394] usb usb5: Manufacturer: Linux 4.15.0-38-generic xhci-hcd
> [    1.489395] usb usb5: SerialNumber: 0000:00:10.0
> [    1.489612] hub 5-0:1.0: USB hub found
> [    1.489621] hub 5-0:1.0: 2 ports detected
> [    1.489728] xhci_hcd 0000:00:10.0: xHCI Host Controller
> [    1.489733] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 6
> [    1.489736] xhci_hcd 0000:00:10.0: Host supports USB 3.0  SuperSpeed
> [    1.492501] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
> [    1.492529] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003
> [    1.492531] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> [    1.492533] usb usb6: Product: xHCI Host Controller
> [    1.492534] usb usb6: Manufacturer: Linux 4.15.0-38-generic xhci-hcd
> [    1.492536] usb usb6: SerialNumber: 0000:00:10.0
> [    1.492752] hub 6-0:1.0: USB hub found
> [    1.492761] hub 6-0:1.0: 2 ports detected
> [    1.492917] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
> [    1.531810] serio: i8042 KBD port at 0x60,0x64 irq 1
> [    1.531814] serio: i8042 AUX port at 0x60,0x64 irq 12
> [    1.532098] mousedev: PS/2 mouse device common for all mice
> [    1.534436] rtc_cmos 00:01: RTC can wake from S4
> [    1.534545] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
> [    1.534578] rtc_cmos 00:01: alarms up to one day, 114 bytes nvram, hpet irqs
> [    1.534589] i2c /dev entries driver
> [    1.534597] pcie_mp2_amd: AMD(R) PCI-E MP2 Communication Driver Version: 1.0
> [    1.534716] device-mapper: uevent: version 1.0.3
> [    1.534814] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel at redhat.com
> [    1.534898] ledtrig-cpu: registered to indicate activity on CPUs
> [    1.535388] NET: Registered protocol family 10
> [    1.540967] Segment Routing with IPv6
> [    1.540997] NET: Registered protocol family 17
> [    1.541061] Key type dns_resolver registered
> [    1.541386] RAS: Correctable Errors collector initialized.
> [    1.541433] microcode: CPU0: patch_level=0x0600111f
> [    1.541438] microcode: CPU1: patch_level=0x0600111f
> [    1.541449] microcode: CPU2: patch_level=0x0600111f
> [    1.541458] microcode: CPU3: patch_level=0x0600111f
> [    1.541502] microcode: Microcode Update Driver: v2.2.
> [    1.541513] sched_clock: Marking stable XXXX
> [    1.541802] registered taskstats version 1
> [    1.541818] Loading compiled-in X.509 certificates
> [    1.545834] Loaded X.509 cert 'Build time autogenerated kernel key: XXXX
> [    1.545868] zswap: loaded using pool lzo/zbud
> [    1.551347] Key type big_key registered
> [    1.551353] Key type trusted registered
> [    1.553952] Key type encrypted registered
> [    1.553956] AppArmor: AppArmor sha1 policy hashing enabled
> [    1.553959] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
> [    1.553965] ima: Allocated hash algorithm: sha1
> [    1.553982] evm: HMAC attrs: 0x1
> [    1.554279]   Magic number: 10:145:344
> [    1.554315] tty tty61: hash matches
> [    1.554395] rtc_cmos 00:01: setting system clock to 2018-11-11 19:18:24 UTC (1541963904)
> [    1.554666] acpi_cpufreq: overriding BIOS provided _PSD data
> [    1.554912] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
> [    1.554912] EDD information not available.
> [    1.581289] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
> [    1.704036] usb 2-2: new high-speed USB device number 2 using ehci-pci
> [    1.872928] usb 2-2: New USB device found, idVendor=0bda, idProduct=0129
> [    1.872931] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
> [    1.872933] usb 2-2: Product: USB2.0-CRW
> [    1.872935] usb 2-2: Manufacturer: Generic
> [    1.872937] usb 2-2: SerialNumber: XXXX
> [    1.980142] usb 3-3: new full-speed USB device number 2 using ohci-pci
> [    2.169282] usb 3-3: New USB device found, idVendor=0cf3, idProduct=3004
> [    2.169285] usb 3-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
> [    2.319827] Freeing unused kernel memory: 2408K
> [    2.336198] tsc: Refined TSC clocksource calibration: 2495.462 MHz
> [    2.336209] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23f87b1d5dc, max_idle_ns: XXXX ns
> [    2.336252] Write protecting the kernel read-only data: 20480k
> [    2.338439] Freeing unused kernel memory: 2008K
> [    2.345001] Freeing unused kernel memory: 1884K
> [    2.355954] x86/mm: Checked W+X mappings: passed, no W+X pages found.
> [    2.374815] random: systemd-udevd: uninitialized urandom read (16 bytes read)
> [    2.374940] random: systemd-udevd: uninitialized urandom read (16 bytes read)
> [    2.374959] random: systemd-udevd: uninitialized urandom read (16 bytes read)
> [    2.471443] ahci 0000:00:11.0: version 3.0
> [    2.472209] ahci 0000:00:11.0: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode
> [    2.472213] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck led clo pio
> [    2.479432] alx 0000:02:00.0 eth0: Qualcomm Atheros AR816x/AR817x Ethernet XXXX
> [    2.480368] scsi host0: ahci
> [    2.480538] scsi host1: ahci
> [    2.480714] scsi host2: ahci
> [    2.480871] scsi host3: ahci
> [    2.481333] scsi host4: ahci
> [    2.481928] scsi host5: ahci
> [    2.481995] ata1: SATA max UDMA/133 abar m2048 at 0xf03cc000 port 0xf03cc100 irq 19
> [    2.481996] ata2: DUMMY
> [    2.481997] ata3: DUMMY
> [    2.481999] ata4: DUMMY
> [    2.482000] ata5: DUMMY
> [    2.482001] ata6: DUMMY
> [    2.528964] usbcore: registered new interface driver rtsx_usb
> [    2.530290] [drm] radeon kernel modesetting enabled.
> [    2.530340] checking generic (d0000000 420000) vs hw (d0000000 10000000)
> [    2.530341] fb: switching to radeondrmfb from VESA VGA
> [    2.530375] Console: switching to colour dummy device 80x25
> [    2.530832] [drm] initializing kernel modesetting (ARUBA 0x1002:0x990B 0x1002:0x990B 0x00).
> [    2.530896] [drm:radeon_get_bios [radeon]] *ERROR* ACPI VFCT image header truncated
> [    2.530941] ATOM BIOS: 113
> [    2.530999] radeon 0000:00:01.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
> [    2.531001] radeon 0000:00:01.0: GTT: 1024M 0x0000000010000000 - 0x000000004FFFFFFF
> [    2.531005] [drm] Detected VRAM RAM=256M, BAR=256M
> [    2.531006] [drm] RAM width 64bits DDR
> [    2.531077] [TTM] Zone  kernel: Available graphics memory: 3978552 kiB
> [    2.531078] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
> [    2.531079] [TTM] Initializing pool allocator
> [    2.531084] [TTM] Initializing DMA pool allocator
> [    2.531107] [drm] radeon: 256M of VRAM memory ready
> [    2.531108] [drm] radeon: 1024M of GTT memory ready.
> [    2.531115] [drm] Loading ARUBA Microcode
> [    2.531177] [drm] Internal thermal controller without fan control
> [    2.531339] [drm] radeon: dpm initialized
> [    2.532728] alx 0000:02:00.0 enp2s0: renamed from eth0
> [    2.533005] [drm] Found VCE firmware/feedback version 50.0.1 / 17!
> [    2.533020] [drm] GART: num cpu pages 262144, num gpu pages 262144
> [    2.569354] [drm] PCIE GART of 1024M enabled (table at 0x00000000001D6000).
> [    2.569494] radeon 0000:00:01.0: WB enabled
> [    2.569498] radeon 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000010000c00 and cpu addr 0x        (ptrval)
> [    2.569652] radeon 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000000075a18 and cpu addr 0x        (ptrval)
> [    2.589577] radeon 0000:00:01.0: fence driver on ring 6 use gpu addr 0x0000000010000c18 and cpu addr 0x        (ptrval)
> [    2.589579] radeon 0000:00:01.0: fence driver on ring 7 use gpu addr 0x0000000010000c1c and cpu addr 0x        (ptrval)
> [    2.589581] radeon 0000:00:01.0: fence driver on ring 1 use gpu addr 0x0000000010000c04 and cpu addr 0x        (ptrval)
> [    2.589583] radeon 0000:00:01.0: fence driver on ring 2 use gpu addr 0x0000000010000c08 and cpu addr 0x        (ptrval)
> [    2.589585] radeon 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000010000c0c and cpu addr 0x        (ptrval)
> [    2.589587] radeon 0000:00:01.0: fence driver on ring 4 use gpu addr 0x0000000010000c10 and cpu addr 0x        (ptrval)
> [    2.589589] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
> [    2.589590] [drm] Driver supports precise vblank timestamp query.
> [    2.589591] radeon 0000:00:01.0: radeon: MSI limited to 32-bit
> [    2.589646] radeon 0000:00:01.0: radeon: using MSI.
> [    2.589670] [drm] radeon: irq initialized.
> [    2.608196] [drm] ring test on 0 succeeded in 1 usecs
> [    2.608204] [drm] ring test on 3 succeeded in 3 usecs
> [    2.608210] [drm] ring test on 4 succeeded in 3 usecs
> [    2.653918] [drm] ring test on 5 succeeded in 2 usecs
> [    2.673779] [drm] UVD initialized successfully.
> [    2.782974] [drm] ring test on 6 succeeded in 17 usecs
> [    2.782986] [drm] ring test on 7 succeeded in 4 usecs
> [    2.782987] [drm] VCE initialized successfully.
> [    2.783306] [drm] ib test on ring 0 succeeded in 0 usecs
> [    2.783350] [drm] ib test on ring 3 succeeded in 0 usecs
> [    2.783393] [drm] ib test on ring 4 succeeded in 0 usecs
> [    2.792735] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
> [    2.841819] ata1.00: ATA-8: XXXX, max UDMA/100
> [    2.841823] ata1.00: XXXX sectors, multi 16: LBA48 NCQ (depth 31/32), AA
> [    2.842653] ata1.00: configured for UDMA/100
> [    2.842962] scsi 0:0:0:0: Direct-Access     ATA      XXXX  PQ: 0 ANSI: 5
> [    2.843356] sd 0:0:0:0: Attached scsi generic sg0 type 0
> [    2.843419] sd 0:0:0:0: [sda] XXXX 512-byte logical blocks: XXXX
> [    2.843464] sd 0:0:0:0: [sda] Write Protect is off
> [    2.843467] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
> [    2.843523] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
> [    2.918637]  sda: sda1 sda2 sda3 sda4
> [    2.919494] sd 0:0:0:0: [sda] Attached SCSI disk
> [    3.324297] [drm] ib test on ring 5 succeeded
> [    3.356458] clocksource: Switched to clocksource tsc
> [    3.868301] [drm] ib test on ring 6 succeeded
> [    3.989275] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f03)
> [    4.032895] psmouse serio1: elantech: Synaptics capabilities query result 0x78, 0x17, 0x0b.
> [    4.074582] random: fast init done
> [    4.077311] psmouse serio1: elantech: Elan sample query result 04, 5c, 85
> [    4.310994] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input5
> [    4.380291] [drm] ib test on ring 7 succeeded
> [    4.383145] [drm] radeon atom DIG backlight initialized
> [    4.383147] [drm] Radeon Display Connectors
> [    4.383148] [drm] Connector 0:
> [    4.383148] [drm]   eDP-1
> [    4.383149] [drm]   HPD1
> [    4.383151] [drm]   DDC: 0x6530 0x6530 0x6534 0x6534 0x6538 0x6538 0x653c 0x653c
> [    4.383151] [drm]   Encoders:
> [    4.383152] [drm]     LCD1: INTERNAL_UNIPHY2
> [    4.383153] [drm] Connector 1:
> [    4.383153] [drm]   VGA-1
> [    4.383154] [drm]   HPD2
> [    4.383155] [drm]   DDC: 0x6540 0x6540 0x6544 0x6544 0x6548 0x6548 0x654c 0x654c
> [    4.383156] [drm]   Encoders:
> [    4.383156] [drm]     CRT1: INTERNAL_UNIPHY2
> [    4.383157] [drm]     CRT1: NUTMEG
> [    4.383157] [drm] Connector 2:
> [    4.383158] [drm]   HDMI-A-1
> [    4.383158] [drm]   HPD3
> [    4.383160] [drm]   DDC: 0x6550 0x6550 0x6554 0x6554 0x6558 0x6558 0x655c 0x655c
> [    4.383160] [drm]   Encoders:
> [    4.383161] [drm]     DFP1: INTERNAL_UNIPHY
> [    5.680646] [drm] fb mappable at 0xD03DA000
> [    5.680648] [drm] vram apper at 0xD0000000
> [    5.680649] [drm] size 4325376
> [    5.680650] [drm] fb depth is 24
> [    5.680650] [drm]    pitch is 5632
> [    5.680838] fbcon: radeondrmfb (fb0) is primary device
> [    5.680908] Console: switching to colour frame buffer device 170x48
> [    5.680936] radeon 0000:00:01.0: fb0: radeondrmfb frame buffer device
> [    5.704251] [drm] Initialized radeon 2.50.0 20080528 for 0000:00:01.0 on minor 0
> [    5.704660] [drm] initializing kernel modesetting (HAINAN 0x1002:0x6665 0x0000:0x0000 0x00).
> [    5.704695] ATOM BIOS: Lenovo
> [    5.704739] radeon 0000:01:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used)
> [    5.704741] radeon 0000:01:00.0: GTT: 1024M 0x0000000080000000 - 0x00000000BFFFFFFF
> [    5.704745] [drm] Detected VRAM RAM=2048M, BAR=256M
> [    5.704746] [drm] RAM width 64bits DDR
> [    5.704763] [drm] radeon: 2048M of VRAM memory ready
> [    5.704764] [drm] radeon: 1024M of GTT memory ready.
> [    5.704773] [drm] Loading hainan Microcode
> [    5.704918] [drm] Internal thermal controller without fan control
> [    5.704998] [drm] probing gen 2 caps for device 1022:1412 = 700d02/6
> [    5.712850] [drm] radeon: dpm initialized
> [    5.712860] [drm] GART: num cpu pages 262144, num gpu pages 262144
> [    5.713948] [drm] probing gen 2 caps for device 1022:1412 = 700d02/6
> [    5.713952] [drm] PCIE gen 2 link speeds already enabled
> [    5.718116] [drm] PCIE GART of 1024M enabled (table at 0x0000000000040000).
> [    5.718235] radeon 0000:01:00.0: WB enabled
> [    5.718239] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0x        (ptrval)
> [    5.718241] radeon 0000:01:00.0: fence driver on ring 1 use gpu addr 0x0000000080000c04 and cpu addr 0x        (ptrval)
> [    5.718243] radeon 0000:01:00.0: fence driver on ring 2 use gpu addr 0x0000000080000c08 and cpu addr 0x        (ptrval)
> [    5.718245] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000080000c0c and cpu addr 0x        (ptrval)
> [    5.718247] radeon 0000:01:00.0: fence driver on ring 4 use gpu addr 0x0000000080000c10 and cpu addr 0x        (ptrval)
> [    5.718248] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
> [    5.718249] [drm] Driver supports precise vblank timestamp query.
> [    5.718251] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
> [    5.718310] radeon 0000:01:00.0: radeon: using MSI.
> [    5.718330] [drm] radeon: irq initialized.
> [    5.932301] [drm] ring test on 0 succeeded in 1 usecs
> [    5.932305] [drm] ring test on 1 succeeded in 1 usecs
> [    5.932310] [drm] ring test on 2 succeeded in 1 usecs
> [    5.932316] [drm] ring test on 3 succeeded in 3 usecs
> [    5.932322] [drm] ring test on 4 succeeded in 3 usecs
> [    5.932660] [drm] ib test on ring 0 succeeded in 0 usecs
> [    5.932692] [drm] ib test on ring 1 succeeded in 0 usecs
> [    5.932721] [drm] ib test on ring 2 succeeded in 0 usecs
> [    5.932746] [drm] ib test on ring 3 succeeded in 0 usecs
> [    5.932769] [drm] ib test on ring 4 succeeded in 0 usecs
> [    5.933423] [drm] Radeon Display Connectors
> [    5.941458] [drm] Initialized radeon 2.50.0 20080528 for 0000:01:00.0 on minor 1
> [    5.988399] [drm] amdgpu kernel modesetting enabled.
> [   15.789682] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
> [   17.156307] random: crng init done
> [   17.156310] random: 7 urandom warning(s) missed due to ratelimiting
> [   17.159291] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
> [   17.176468] systemd[1]: Detected architecture x86-64.
> [   17.192015] systemd[1]: Set hostname to <ubi2>.
> [   19.090733] systemd[1]: Listening on fsck to fsckd communication Socket.
> [   19.090814] systemd[1]: Reached target User and Group Name Lookups.
> [   19.090872] systemd[1]: Started Trigger resolvconf update for networkd DNS.
> [   19.090919] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
> [   19.090931] systemd[1]: Reached target Remote File Systems (Pre).
> [   19.090973] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
> [   19.091015] systemd[1]: Listening on Journal Socket (/dev/log).
> [   20.004176] lp: driver loaded but no devices found
> [   20.163106] ppdev: user-space parallel port driver
> [   20.367171] EXT4-fs (sda3): re-mounted. Opts: errors=remount-ro
> [   20.600088] systemd-journald[322]: Received request to flush runtime journal from PID 1
> [   23.415596] audit: type=1400 audit(1541963926.354:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=534 comm="apparmor_parser"
> [   23.415603] audit: type=1400 audit(1541963926.354:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=534 comm="apparmor_parser"
> [   23.609939] audit: type=1400 audit(1541963926.550:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=535 comm="apparmor_parser"
> [   23.609946] audit: type=1400 audit(1541963926.550:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=535 comm="apparmor_parser"
> [   23.609950] audit: type=1400 audit(1541963926.550:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=535 comm="apparmor_parser"
> [   23.609954] audit: type=1400 audit(1541963926.550:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=535 comm="apparmor_parser"
> [   23.651020] audit: type=1400 audit(1541963926.590:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=536 comm="apparmor_parser"
> [   23.651028] audit: type=1400 audit(1541963926.590:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince//sanitized_helper" pid=536 comm="apparmor_parser"
> [   23.651032] audit: type=1400 audit(1541963926.590:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=536 comm="apparmor_parser"
> [   23.651036] audit: type=1400 audit(1541963926.590:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer//sanitized_helper" pid=536 comm="apparmor_parser"
> [   23.904421] Bluetooth: Core ver 2.22
> [   23.904444] NET: Registered protocol family 31
> [   23.904445] Bluetooth: HCI device and connection manager initialized
> [   23.904449] Bluetooth: HCI socket layer initialized
> [   23.904452] Bluetooth: L2CAP socket layer initialized
> [   23.904460] Bluetooth: SCO socket layer initialized
> [   24.226279] usbcore: registered new interface driver btusb
> [   24.350020] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
> [   24.350023] piix4_smbus 0000:00:14.0: Using register 0x2e for SMBus port selection
> [   24.350384] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
> [   24.440724] AVX version of gcm_enc/dec engaged.
> [   24.440726] AES CTR mode by8 optimization enabled
> [   25.071101] kvm: Nested Virtualization enabled
> [   25.071104] kvm: Nested Paging enabled
> [   25.130432] usb 3-3: USB disconnect, device number 2
> [   25.136288] usbcore: registered new interface driver ath3k
> [   25.174074] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
> [   25.264084] cfg80211: Loading compiled-in X.509 certificates for regulatory database
> [   25.267535] cfg80211: Loaded X.509 cert
> [   25.584200] usb 3-3: new full-speed USB device number 3 using ohci-pci
> [   25.649411] snd_hda_intel 0000:00:01.1: Force to non-snoop mode
> [   25.657676] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input6
> [   25.657772] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/sound/card0/input7
> [   25.657850] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/sound/card0/input8
> [   25.657939] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/sound/card0/input9
> [   25.755657] ath: phy0: XXXX card detected
> [   25.755659] ath: phy0: Set BT/WLAN RX diversity capability
> [   25.762139] ath: phy0: Enable LNA combining
> [   25.763314] ath: phy0: ASPM enabled: 0x43
> [   25.763316] ath: EEPROM regdomain: XXXX
> [   25.763317] ath: EEPROM indicates we should expect a direct regpair map
> [   25.763319] ath: Country XXXX
> [   25.763319] ath: Regpair used: XXXX
> [   25.768878] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
> [   25.769517] ieee80211 phy0: Atheros mem=1, irq=17
> [   25.794200] ath9k 0000:03:00.0 wlp3s0: renamed from wlan0
> [   26.167123] snd_hda_codec_conexant hdaudioC1D0: CX20757: BIOS auto-probing.
> [   26.167466] snd_hda_codec_conexant hdaudioC1D0: autoconfig for CX20757: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
> [   26.167468] snd_hda_codec_conexant hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
> [   26.167470] snd_hda_codec_conexant hdaudioC1D0:    hp_outs=1 (0x16/0x0/0x0/0x0/0x0)
> [   26.167473] snd_hda_codec_conexant hdaudioC1D0:    mono: mono_out=0x0
> [   26.167475] snd_hda_codec_conexant hdaudioC1D0:    inputs:
> [   26.167479] snd_hda_codec_conexant hdaudioC1D0:      Mic=0x19
> [   26.167481] snd_hda_codec_conexant hdaudioC1D0:      Internal Mic=0x1a
> [   26.167482] snd_hda_codec_conexant hdaudioC1D0:      Line=0x18
> [   26.171416] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
> [   26.171501] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:14.2/sound/card1/input11
> [   26.171574] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input12
> [   26.185424] MCE: In-kernel MCE decoding enabled.
> [   26.187600] EDAC amd64: Node 0: DRAM ECC disabled.
> [   26.187602] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
>                 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
>                 (Note that use of the override may cause unknown side effects.)
> [   26.228931] EDAC amd64: Node 0: DRAM ECC disabled.
> [   26.228934] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
>                 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
>                 (Note that use of the override may cause unknown side effects.)
> [   26.280680] EDAC amd64: Node 0: DRAM ECC disabled.
> [   26.280682] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
>                 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
>                 (Note that use of the override may cause unknown side effects.)
> [   26.332606] EDAC amd64: Node 0: DRAM ECC disabled.
> [   26.332608] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
>                 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
>                 (Note that use of the override may cause unknown side effects.)
> [   28.685122] Adding 4096508k swap on /dev/mapper/cryptswap1.  Priority:-2 extents:1 across:40k FS
> [   30.840192] usb 3-3: device descriptor read/64, error -110
> [   34.568729] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
> [   34.581113] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
> [   34.586579] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
> [   34.587872] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
> [   34.588856] alx 0000:02:00.0 enp2s0: NIC Up: 100 Mbps Full
> [   34.589312] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
> [   35.125266] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
> [   36.249317] usb 3-3: New USB device found, idVendor=0cf3, idProduct=3004
> [   36.249321] usb 3-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
> [   36.675151] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
> [   36.675153] Bluetooth: BNEP filters: protocol multicast
> [   36.675157] Bluetooth: BNEP socket layer initialized
> [   38.545325] wlp3s0: authenticate with XXXX
> [   38.561739] wlp3s0: send auth to XXXX (try 1/3)
> [   38.563888] wlp3s0: authenticated
> [   38.564294] wlp3s0: associate with XXXX (try 1/3)
> [   38.567337] wlp3s0: RX AssocResp from XXXX (capab=0x431 status=0 aid=1)
> [   38.567439] wlp3s0: associated
> [   38.567582] ath: EEPROM regdomain: XXXX
> [   38.567584] ath: EEPROM indicates we should expect a country code
> [   38.567585] ath: doing EEPROM country->regdmn map search
> [   38.567586] ath: country maps to regdmn code: XXXX
> [   38.567587] ath: Country XXXX
> [   38.567587] ath: Regpair used: XXXX
> [   38.567589] ath: regdomain XXXX dynamically updated by country XXXX
> [   38.584263] IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
> [   45.847113] Bluetooth: RFCOMM TTY layer initialized
> [   45.847121] Bluetooth: RFCOMM socket layer initialized
> [   45.847126] Bluetooth: RFCOMM ver 1.11
> [   86.685487] psmouse serio1: Touchpad at isa0060/serio1/input0 lost sync at byte 6
> [   86.710535] psmouse serio1: Touchpad at isa0060/serio1/input0 - driver resynced.
>
>
>
> --
> coreboot mailing list: coreboot at coreboot.org
> https://mail.coreboot.org/mailman/listinfo/coreboot



More information about the coreboot mailing list