Advertisement
pavelsayekat

coreboot_no_super_acpi

Mar 1st, 2020
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 401.22 KB | None | 0 0
  1. $ git rev-parse HEAD
  2. 1ac2cc253b120e5fcd8d3cb477724c36b5f35cb5
  3.  
  4. $ git describe --no-match --always --dirty
  5. 4.11-1360-g1ac2cc253b-dirty
  6.  
  7. $ git diff HEAD
  8. diff --git a/src/superio/nuvoton/nct5539d/acpi/superio.asl b/src/superio/nuvoton/nct5539d/acpi/superio.asl
  9. index 6f494210fc..e69de29bb2 100644
  10. --- a/src/superio/nuvoton/nct5539d/acpi/superio.asl
  11. +++ b/src/superio/nuvoton/nct5539d/acpi/superio.asl
  12. @@ -1,157 +0,0 @@
  13. -/* SPDX-License-Identifier: GPL-2.0-only */
  14. -/* This file is part of the coreboot project. */
  15. -
  16. -/*
  17. - * Include this file into a mainboard's DSDT _SB device tree and it will
  18. - * expose the NCT5539D SuperIO and some of its functionality.
  19. - *
  20. - * It allows the change of IO ports, IRQs and DMA settings on logical
  21. - * devices, disabling and reenabling logical devices.
  22. - *
  23. - * LDN State
  24. - * 0x2 SP1 Implemented, untested
  25. - * 0x5 KBC Implemented, untested
  26. - * 0x8 GPIO Implemented, untested
  27. - * 0xb HWM Implemented, untested
  28. - *
  29. - * Controllable through preprocessor defines:
  30. - * SUPERIO_DEV Device identifier for this SIO (e.g. SIO0)
  31. - * SUPERIO_PNP_BASE I/O address of the first PnP configuration register
  32. - * NCT5539D_SHOW_SP1 If defined, Serial Port 1 will be exposed.
  33. - * NCT5539D_SHOW_KBC If defined, the Keyboard Controller will be exposed.
  34. - * NCT5539D_SHOW_GPIO If defined, GPIO support will be exposed.
  35. - * NCT5539D_SHOW_HWM If defined, the Environment Controller will be exposed.
  36. - */
  37. -
  38. -#undef SUPERIO_CHIP_NAME
  39. -#define SUPERIO_CHIP_NAME NCT5539D
  40. -#include <superio/acpi/pnp.asl>
  41. -
  42. -#undef PNP_DEFAULT_PSC
  43. -#define PNP_DEFAULT_PSC Return (0) /* no power management */
  44. -
  45. -Device(SUPERIO_DEV) {
  46. - Name (_HID, EisaId("PNP0A05"))
  47. - Name (_STR, Unicode("Nuvoton NCT5539D Super I/O"))
  48. - Name (_UID, SUPERIO_UID(SUPERIO_DEV,))
  49. -
  50. - /* SuperIO configuration ports */
  51. - OperationRegion (CREG, SystemIO, SUPERIO_PNP_BASE, 0x02)
  52. - Field (CREG, ByteAcc, NoLock, Preserve)
  53. - {
  54. - PNP_ADDR_REG, 8,
  55. - PNP_DATA_REG, 8,
  56. - }
  57. - IndexField (PNP_ADDR_REG, PNP_DATA_REG, ByteAcc, NoLock, Preserve)
  58. - {
  59. - Offset (0x07),
  60. - PNP_LOGICAL_DEVICE, 8, /* Logical device selector */
  61. -
  62. - Offset (0x30),
  63. - PNP_DEVICE_ACTIVE, 1, /* Logical device activation */
  64. - ACT1, 1, /* Logical device activation */
  65. - ACT2, 1, /* Logical device activation */
  66. - ACT3, 1, /* Logical device activation */
  67. - ACT4, 1, /* Logical device activation */
  68. - ACT5, 1, /* Logical device activation */
  69. - ACT6, 1, /* Logical device activation */
  70. - ACT7, 1, /* Logical device activation */
  71. -
  72. - Offset (0x60),
  73. - PNP_IO0_HIGH_BYTE, 8, /* First I/O port base - high byte */
  74. - PNP_IO0_LOW_BYTE, 8, /* First I/O port base - low byte */
  75. - Offset (0x62),
  76. - PNP_IO1_HIGH_BYTE, 8, /* Second I/O port base - high byte */
  77. - PNP_IO1_LOW_BYTE, 8, /* Second I/O port base - low byte */
  78. - Offset (0x64),
  79. - PNP_IO2_HIGH_BYTE, 8, /* Third I/O port base - high byte */
  80. - PNP_IO2_LOW_BYTE, 8, /* Third I/O port base - low byte */
  81. -
  82. - Offset (0x70),
  83. - PNP_IRQ0, 8, /* First IRQ */
  84. - Offset (0x72),
  85. - PNP_IRQ1, 8, /* Second IRQ */
  86. - Offset (0x74),
  87. - PNP_DMA0, 8, /* DRQ */
  88. - }
  89. -
  90. - Method (_CRS)
  91. - {
  92. - /* Announce the used I/O ports to the OS */
  93. - Return (ResourceTemplate () {
  94. - IO (Decode16, SUPERIO_PNP_BASE, SUPERIO_PNP_BASE, 0x01, 0x02)
  95. - })
  96. - }
  97. -
  98. - #undef PNP_ENTER_MAGIC_1ST
  99. - #undef PNP_ENTER_MAGIC_2ND
  100. - #undef PNP_ENTER_MAGIC_3RD
  101. - #undef PNP_ENTER_MAGIC_4TH
  102. - #undef PNP_EXIT_MAGIC_1ST
  103. - #undef PNP_EXIT_SPECIAL_REG
  104. - #undef PNP_EXIT_SPECIAL_VAL
  105. - #define PNP_ENTER_MAGIC_1ST 0x87
  106. - #define PNP_ENTER_MAGIC_2ND 0x87
  107. - #define PNP_EXIT_MAGIC_1ST 0xaa
  108. - #include <superio/acpi/pnp_config.asl>
  109. -
  110. -
  111. -#ifdef NCT5539D_SHOW_SP1
  112. - #undef SUPERIO_UART_LDN
  113. - #undef SUPERIO_UART_DDN
  114. - #undef SUPERIO_UART_PM_REG
  115. - #undef SUPERIO_UART_PM_VAL
  116. - #undef SUPERIO_UART_PM_LDN
  117. - #define SUPERIO_UART_LDN 2
  118. - #include <superio/acpi/pnp_uart.asl>
  119. -#endif
  120. -
  121. -#ifdef NCT5539D_SHOW_KBC
  122. - #undef SUPERIO_KBC_LDN
  123. - #undef SUPERIO_KBC_PS2M
  124. - #undef SUPERIO_KBC_PS2LDN
  125. - #define SUPERIO_KBC_LDN 5
  126. - #define SUPERIO_KBC_PS2M
  127. - #include <superio/acpi/pnp_kbc.asl>
  128. -#endif
  129. -
  130. -#ifdef NCT5539D_SHOW_HWM
  131. - #undef SUPERIO_PNP_HID
  132. - #undef SUPERIO_PNP_LDN
  133. - #undef SUPERIO_PNP_DDN
  134. - #undef SUPERIO_PNP_PM_REG
  135. - #undef SUPERIO_PNP_PM_VAL
  136. - #undef SUPERIO_PNP_PM_LDN
  137. - #undef SUPERIO_PNP_IO0
  138. - #undef SUPERIO_PNP_IO1
  139. - #undef SUPERIO_PNP_IO2
  140. - #undef SUPERIO_PNP_IRQ0
  141. - #undef SUPERIO_PNP_IRQ1
  142. - #undef SUPERIO_PNP_DMA
  143. - #define SUPERIO_PNP_LDN 11
  144. - #define SUPERIO_PNP_IO0 0x08, 0x08
  145. - #define SUPERIO_PNP_IO1 0x08, 0x08
  146. - #define SUPERIO_PNP_IRQ0
  147. - #include <superio/acpi/pnp_generic.asl>
  148. -#endif
  149. -
  150. -#ifdef NCT5539D_SHOW_GPIO
  151. - #undef SUPERIO_PNP_HID
  152. - #undef SUPERIO_PNP_LDN
  153. - #undef SUPERIO_PNP_DDN
  154. - #undef SUPERIO_PNP_PM_REG
  155. - #undef SUPERIO_PNP_PM_VAL
  156. - #undef SUPERIO_PNP_PM_LDN
  157. - #undef SUPERIO_PNP_IO0
  158. - #undef SUPERIO_PNP_IO1
  159. - #undef SUPERIO_PNP_IO2
  160. - #undef SUPERIO_PNP_IRQ0
  161. - #undef SUPERIO_PNP_IRQ1
  162. - #undef SUPERIO_PNP_DMA
  163. - #undef PNP_DEVICE_ACTIVE
  164. - #define PNP_DEVICE_ACTIVE ACT3
  165. - #define SUPERIO_PNP_LDN 8
  166. - #define SUPERIO_PNP_IO0 0x08, 0x08
  167. - #include <superio/acpi/pnp_generic.asl>
  168. -#endif
  169. -}
  170.  
  171. The best or recurring case is
  172.  
  173. Booting from Hard Disk..Booting from 0000:7c00
  174. .
  175. GRUB loading.
  176. Welcome to GRUB!
  177.  
  178. Memory KASLR using RDRAND RDTSC...
  179. Poking KASLR using RDRAND RDTSC...
  180. €€€€€€€€€€€€€€€€Àþÿÿÿÿÿÿÿþÿÿÿþþÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿþÿþþÿÿÿÿÿÿÿÿÿÿþþÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  181.  
  182. The serial Log:
  183.  
  184. 
  185.  
  186. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  187. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  188. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  189. CPU: AES supported, TXT NOT supported, VT supported
  190. MCH: device id 590f (rev 06) is Kabylake-S
  191. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  192. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  193. Timestamp - end of bootblock: 173131909
  194. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  195. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  196. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  197. CBFS: Locating 'fallback/romstage'
  198. CBFS: Found @ offset 80 size b284
  199. Timestamp - starting to load romstage: 262620396
  200. Timestamp - finished loading romstage: 279550015
  201. BS: bootblock times (exec / console): total (unknown) / 66 ms
  202.  
  203.  
  204. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  205. pm1_sts: 8100 pm1_en: 0100 pm1_cnt: 00001c00
  206. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  207. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  208. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  209. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  210. TCO_STS: 0000 0000
  211. GEN_PMCON: e0800200 00001848
  212. GBLRST_CAUSE: 00000000 00000000
  213. prev_sleep_state 5
  214. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  215. CBFS: Locating 'fspm.bin'
  216. CBFS: Found @ offset 54dc0 size 63000
  217. Timestamp - before RAM initialization: 511606826
  218. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  219. MRC: no data in 'RW_MRC_CACHE'
  220. PRMRR disabled by config.
  221. SPD @ 0x50
  222. SPD: module type is DDR4
  223. SPD: module part is PSD48G240082
  224. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  225. SPD: device width 16 bits, bus width 64 bits
  226. SPD: module size is 8192 MB (per channel)
  227. SPD @ 0x52
  228. SPD: module type is DDR4
  229. SPD: module part is CMK8GX4M1A2400C16
  230. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  231. SPD: device width 8 bits, bus width 64 bits
  232. SPD: module size is 8192 MB (per channel)
  233. SPD @ 0x00
  234. SPD: module type is UNKNOWN
  235. SPD: module part is
  236. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  237. SPD: device width -1 bits, bus width -1 bits
  238. SPD @ 0x00
  239. SPD: module type is UNKNOWN
  240. SPD: module part is
  241. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  242. SPD: device width -1 bits, bus width -1 bits
  243. Timestamp - calling FspMemoryInit: 2822173051
  244.  
  245.  
  246. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  247. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  248. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  249. CPU: AES supported, TXT NOT supported, VT supported
  250. MCH: device id 590f (rev 06) is Kabylake-S
  251. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  252. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  253. Timestamp - end of bootblock: 173391733
  254. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  255. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  256. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  257. CBFS: Locating 'fallback/romstage'
  258. CBFS: Found @ offset 80 size b284
  259. Timestamp - starting to load romstage: 263527437
  260. Timestamp - finished loading romstage: 280589750
  261. BS: bootblock times (exec / console): total (unknown) / 67 ms
  262.  
  263.  
  264. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  265. pm1_sts: 8100 pm1_en: 0000 pm1_cnt: 00000000
  266. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  267. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  268. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  269. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  270. TCO_STS: 0000 0000
  271. GEN_PMCON: e0200200 00001a48
  272. GBLRST_CAUSE: 00000000 00000000
  273. prev_sleep_state 0
  274. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  275. CBFS: Locating 'fspm.bin'
  276. CBFS: Found @ offset 54dc0 size 63000
  277. Timestamp - before RAM initialization: 514218082
  278. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  279. MRC: no data in 'RW_MRC_CACHE'
  280. PRMRR disabled by config.
  281. SPD @ 0x50
  282. SPD: module type is DDR4
  283. SPD: module part is PSD48G240082
  284. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  285. SPD: device width 16 bits, bus width 64 bits
  286. SPD: module size is 8192 MB (per channel)
  287. SPD @ 0x52
  288. SPD: module type is DDR4
  289. SPD: module part is CMK8GX4M1A2400C16
  290. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  291. SPD: device width 8 bits, bus width 64 bits
  292. SPD: module size is 8192 MB (per channel)
  293. SPD @ 0x00
  294. SPD: module type is UNKNOWN
  295. SPD: module part is
  296. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  297. SPD: device width -1 bits, bus width -1 bits
  298. SPD @ 0x00
  299. SPD: module type is UNKNOWN
  300. SPD: module part is
  301. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  302. SPD: device width -1 bits, bus width -1 bits
  303. Timestamp - calling FspMemoryInit: 2769322034
  304. Timestamp - returning from FspMemoryInit: 164786042883
  305. CBMEM:
  306. IMD: root @ 0x7afff000 254 entries.
  307. IMD: root @ 0x7affec00 62 entries.
  308. External stage cache:
  309. IMD: root @ 0x7b3ff000 254 entries.
  310. IMD: root @ 0x7b3fec00 62 entries.
  311. Timestamp - after RAM initialization: 164869245100
  312. 2 DIMMs found
  313. SMM Memory Map
  314. SMRAM : 0x7b000000 0x800000
  315. Subregion 0: 0x7b000000 0x200000
  316. Subregion 1: 0x7b200000 0x200000
  317. Subregion 2: 0x7b400000 0x400000
  318. top_of_ram = 0x7b000000
  319. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  320. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  321. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  322. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  323. CBFS: Locating 'fallback/postcar'
  324. CBFS: Found @ offset e6e00 size 5668
  325. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  326. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  327. Processing 287 relocs. Offset value of 0x78bd0000
  328. Timestamp - end of romstage: 165129261066
  329. BS: romstage times (exec / console): total (unknown) / 224 ms
  330.  
  331.  
  332. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  333. Timestamp - start of postcar: 165202419422
  334. Timestamp - end of postcar: 165217324601
  335. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  336. CBFS: Locating 'fallback/ramstage'
  337. CBFS: Found @ offset 3c000 size 17f37
  338. Timestamp - starting to load ramstage: 165275041512
  339. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  340. Timestamp - starting LZMA decompress (ignore for x86): 165315673812
  341. Timestamp - finished LZMA decompress (ignore for x86): 165370448863
  342. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  343. Processing 3860 relocs. Offset value of 0x79d0a000
  344. Timestamp - finished loading ramstage: 165441534769
  345. BS: postcar times (exec / console): total (unknown) / 67 ms
  346.  
  347.  
  348. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  349. Timestamp - start of ramstage: 165516401440
  350. Normal boot.
  351. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  352. CBFS: Locating 'cpu_microcode_blob.bin'
  353. CBFS: Found @ offset b380 size 30c00
  354. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  355. Skip microcode update
  356. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  357. CBFS: Locating 'fsps.bin'
  358. CBFS: Found @ offset b8dc0 size 2e000
  359. Detected 2 core, 4 thread CPU.
  360. Setting up SMI for CPU
  361. IED base = 0x7b400000
  362. IED size = 0x00400000
  363. Will perform SMM setup.
  364. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  365. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  366. Processing 16 relocs. Offset value of 0x00030000
  367. Attempting to start 3 APs
  368. Waiting for 10ms after sending INIT.
  369. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  370. done.
  371. AP: slot 2 apic_id 2.
  372. AP: slot 1 apic_id 3.
  373. Waiting for 2nd SIPI to complete...done.
  374. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  375. Processing 13 relocs. Offset value of 0x00038000
  376. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  377. Installing SMM handler to 0x7b000000
  378. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  379. Processing 103 relocs. Offset value of 0x7b010000
  380. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  381. Processing 13 relocs. Offset value of 0x7b008000
  382. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  383. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  384. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  385. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  386. Clearing SMI status registers
  387. SMI_STS: PM1
  388. WAK PWRBTN TMROF TCO_STS: SECOND_TO
  389. New SMBASE 0x7b000000
  390. In relocation handler: CPU 0
  391. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  392. Writing SMRR. base = 0x7b000006, mask=0xff800800
  393. Relocation complete.
  394. New SMBASE 0x7afff400
  395. In relocation handler: CPU 3
  396. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  397. Writing SMRR. base = 0x7b000006, mask=0xff800800
  398. Relocation complete.
  399. New SMBASE 0x7afffc00
  400. In relocation handler: CPU 1
  401. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  402. Writing SMRR. base = 0x7b000006, mask=0xff800800
  403. Relocation complete.
  404. New SMBASE 0x7afff800
  405. In relocation handler: CPU 2
  406. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  407. Writing SMRR. base = 0x7b000006, mask=0xff800800
  408. Relocation complete.
  409. Initializing CPU #0
  410. CPU: vendor Intel device 906e9
  411. CPU: family 06, model 9e, stepping 09
  412. Clearing out pending MCEs
  413. Setting up local APIC...
  414. apic_id: 0x00 done.
  415. cpu: energy policy set to 6
  416. Turbo is unavailable
  417. Skip microcode update
  418. CPU #0 initialized
  419. Initializing CPU #3
  420. Initializing CPU #1
  421. Initializing CPU #2
  422. CPU: vendor Intel device 906e9
  423. CPU: family 06, model 9e, stepping 09
  424. CPU: vendor Intel device 906e9
  425. CPU: family 06, model 9e, stepping 09
  426. Clearing out pending MCEs
  427. Clearing out pending MCEs
  428. Setting up local APIC...
  429. CPU: vendor Intel device 906e9
  430. CPU: family 06, model 9e, stepping 09
  431. Clearing out pending MCEs
  432. apic_id: 0x02 done.
  433. Setting up local APIC...
  434. cpu: energy policy set to 6
  435. apic_id: 0x03 done.
  436. Skip microcode update
  437. CPU #2 initialized
  438. cpu: energy policy set to 6
  439. Setting up local APIC...
  440. Skip microcode update
  441. CPU #1 initialized
  442. apic_id: 0x01 done.
  443. cpu: energy policy set to 6
  444. Skip microcode update
  445. CPU #3 initialized
  446. bsp_do_flight_plan done after 218 msecs.
  447. Enabling SMIs.
  448. Locking SMM.
  449. VMX status: enabled
  450. VMX status: enabled
  451. IA32_FEATURE_CONTROL status: locked
  452. VMX status: enabled
  453. VMX status: enabled
  454. IA32_FEATURE_CONTROL status: locked
  455. IA32_FEATURE_CONTROL status: locked
  456. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 141 / 190 ms
  457. IA32_FEATURE_CONTROL status: locked
  458. Timestamp - device enumeration: 166877814592
  459. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  460. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  461. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  462. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  463. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  464. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  465. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  466. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  467. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  468. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  469. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  470. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  471. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  472. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  473. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  474. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  475. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  476. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  477. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  478. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  479. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  480. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  481. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  482. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  483. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  484. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  485. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  486. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  487. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  488. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  489. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  490. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  491. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  492. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  493. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  494. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  495. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  496. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  497. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  498. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  499. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  500. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  501. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  502. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  503. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  504. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  505. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  506. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  507. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  508. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  509. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  510. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  511. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  512. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  513. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  514. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  515. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  516. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  517. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  518. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  519. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  520. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  521. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  522. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  523. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  524. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  525. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  526. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  527. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  528. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  529. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  530. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  531. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  532. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  533. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  534. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  535. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  536. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  537. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  538. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  539. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  540. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  541. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  542. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  543. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  544. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  545. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  546. Timestamp - calling FspSiliconInit: 168985799629
  547.  €€€€€€€€ÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  548.  
  549. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  550. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  551. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  552. CPU: AES supported, TXT NOT supported, VT supported
  553. MCH: device id 590f (rev 06) is Kabylake-S
  554. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  555. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  556. Timestamp - end of bootblock: 172293368
  557. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  558. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  559. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  560. CBFS: Locating 'fallback/romstage'
  561. CBFS: Found @ offset 80 size b284
  562. Timestamp - starting to load romstage: 262423923
  563. Timestamp - finished loading romstage: 279490846
  564. BS: bootblock times (exec / console): total (unknown) / 67 ms
  565.  
  566.  
  567. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  568. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00000000
  569. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  570. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  571. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  572. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  573. TCO_STS: 0000 0000
  574. GEN_PMCON: e0810200 00001848
  575. GBLRST_CAUSE: 00001000 00000000
  576. prev_sleep_state 0
  577. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  578. CBFS: Locating 'fspm.bin'
  579. CBFS: Found @ offset 54dc0 size 63000
  580. Timestamp - before RAM initialization: 513082175
  581. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  582. MRC: no data in 'RW_MRC_CACHE'
  583. PRMRR disabled by config.
  584. SPD @ 0x50
  585. SPD: module type is DDR4
  586. SPD: module part is PSD48G240082
  587. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  588. SPD: device width 16 bits, bus width 64 bits
  589. SPD: module size is 8192 MB (per channel)
  590. SPD @ 0x52
  591. SPD: module type is DDR4
  592. SPD: module part is CMK8GX4M1A2400C16
  593. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  594. SPD: device width 8 bits, bus width 64 bits
  595. SPD: module size is 8192 MB (per channel)
  596. SPD @ 0x00
  597. SPD: module type is UNKNOWN
  598. SPD: module part is
  599. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  600. SPD: device width -1 bits, bus width -1 bits
  601. SPD @ 0x00
  602. SPD: module type is UNKNOWN
  603. SPD: module part is
  604. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  605. SPD: device width -1 bits, bus width -1 bits
  606. Timestamp - calling FspMemoryInit: 2767201607
  607.  
  608.  
  609. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  610. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  611. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  612. CPU: AES supported, TXT NOT supported, VT supported
  613. MCH: device id 590f (rev 06) is Kabylake-S
  614. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  615. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  616. Timestamp - end of bootblock: 172175413
  617. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  618. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  619. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  620. CBFS: Locating 'fallback/romstage'
  621. CBFS: Found @ offset 80 size b284
  622. Timestamp - starting to load romstage: 262353119
  623. Timestamp - finished loading romstage: 279425260
  624. BS: bootblock times (exec / console): total (unknown) / 67 ms
  625.  
  626.  
  627. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  628. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  629. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  630. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  631. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  632. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  633. TCO_STS: 0000 0000
  634. GEN_PMCON: e0210200 00001a48
  635. GBLRST_CAUSE: 00001000 00000000
  636. prev_sleep_state 0
  637. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  638. CBFS: Locating 'fspm.bin'
  639. CBFS: Found @ offset 54dc0 size 63000
  640. Timestamp - before RAM initialization: 513284503
  641. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  642. MRC: no data in 'RW_MRC_CACHE'
  643. PRMRR disabled by config.
  644. SPD @ 0x50
  645. SPD: module type is DDR4
  646. SPD: module part is PSD48G240082
  647. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  648. SPD: device width 16 bits, bus width 64 bits
  649. SPD: module size is 8192 MB (per channel)
  650. SPD @ 0x52
  651. SPD: module type is DDR4
  652. SPD: module part is CMK8GX4M1A2400C16
  653. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  654. SPD: device width 8 bits, bus width 64 bits
  655. SPD: module size is 8192 MB (per channel)
  656. SPD @ 0x00
  657. SPD: module type is UNKNOWN
  658. SPD: module part is
  659. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  660. SPD: device width -1 bits, bus width -1 bits
  661. SPD @ 0x00
  662. SPD: module type is UNKNOWN
  663. SPD: module part is
  664. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  665. SPD: device width -1 bits, bus width -1 bits
  666. Timestamp - calling FspMemoryInit: 2767064627
  667. Timestamp - returning from FspMemoryInit: 163291536431
  668. CBMEM:
  669. IMD: root @ 0x7afff000 254 entries.
  670. IMD: root @ 0x7affec00 62 entries.
  671. External stage cache:
  672. IMD: root @ 0x7b3ff000 254 entries.
  673. IMD: root @ 0x7b3fec00 62 entries.
  674. Timestamp - after RAM initialization: 163375102758
  675. 2 DIMMs found
  676. SMM Memory Map
  677. SMRAM : 0x7b000000 0x800000
  678. Subregion 0: 0x7b000000 0x200000
  679. Subregion 1: 0x7b200000 0x200000
  680. Subregion 2: 0x7b400000 0x400000
  681. top_of_ram = 0x7b000000
  682. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  683. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  684. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  685. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  686. CBFS: Locating 'fallback/postcar'
  687. CBFS: Found @ offset e6e00 size 5668
  688. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  689. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  690. Processing 287 relocs. Offset value of 0x78bd0000
  691. Timestamp - end of romstage: 163635064091
  692. BS: romstage times (exec / console): total (unknown) / 224 ms
  693.  
  694.  
  695. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  696. Timestamp - start of postcar: 163708226544
  697. Timestamp - end of postcar: 163723144397
  698. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  699. CBFS: Locating 'fallback/ramstage'
  700. CBFS: Found @ offset 3c000 size 17f37
  701. Timestamp - starting to load ramstage: 163780810215
  702. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  703. Timestamp - starting LZMA decompress (ignore for x86): 163821465226
  704. Timestamp - finished LZMA decompress (ignore for x86): 163876335377
  705. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  706. Processing 3860 relocs. Offset value of 0x79d0a000
  707. Timestamp - finished loading ramstage: 163947506842
  708. BS: postcar times (exec / console): total (unknown) / 67 ms
  709.  
  710.  
  711. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  712. Timestamp - start of ramstage: 164022401355
  713. Normal boot.
  714. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  715. CBFS: Locating 'cpu_microcode_blob.bin'
  716. CBFS: Found @ offset b380 size 30c00
  717. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  718. Skip microcode update
  719. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  720. CBFS: Locating 'fsps.bin'
  721. CBFS: Found @ offset b8dc0 size 2e000
  722. Detected 2 core, 4 thread CPU.
  723. Setting up SMI for CPU
  724. IED base = 0x7b400000
  725. IED size = 0x00400000
  726. Will perform SMM setup.
  727. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  728. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  729. Processing 16 relocs. Offset value of 0x00030000
  730. Attempting to start 3 APs
  731. Waiting for 10ms after sending INIT.
  732. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  733. done.
  734. AP: slot 1 apic_id 3.
  735. AP: slot 2 apic_id 2.
  736. Waiting for 2nd SIPI to complete...done.
  737. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  738. Processing 13 relocs. Offset value of 0x00038000
  739. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  740. Installing SMM handler to 0x7b000000
  741. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  742. Processing 103 relocs. Offset value of 0x7b010000
  743. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  744. Processing 13 relocs. Offset value of 0x7b008000
  745. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  746. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  747. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  748. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  749. Clearing SMI status registers
  750. SMI_STS: PM1
  751. TMROF TCO_STS: SECOND_TO
  752. New SMBASE 0x7b000000
  753. In relocation handler: CPU 0
  754. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  755. Writing SMRR. base = 0x7b000006, mask=0xff800800
  756. Relocation complete.
  757. New SMBASE 0x7afff400
  758. In relocation handler: CPU 3
  759. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  760. Writing SMRR. base = 0x7b000006, mask=0xff800800
  761. Relocation complete.
  762. New SMBASE 0x7afffc00
  763. In relocation handler: CPU 1
  764. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  765. Writing SMRR. base = 0x7b000006, mask=0xff800800
  766. Relocation complete.
  767. New SMBASE 0x7afff800
  768. In relocation handler: CPU 2
  769. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  770. Writing SMRR. base = 0x7b000006, mask=0xff800800
  771. Relocation complete.
  772. Initializing CPU #0
  773. CPU: vendor Intel device 906e9
  774. CPU: family 06, model 9e, stepping 09
  775. Clearing out pending MCEs
  776. Setting up local APIC...
  777. apic_id: 0x00 done.
  778. cpu: energy policy set to 6
  779. Turbo is unavailable
  780. Skip microcode update
  781. CPU #0 initialized
  782. Initializing CPU #3
  783. Initializing CPU #1
  784. Initializing CPU #2
  785. CPU: vendor Intel device 906e9
  786. CPU: family 06, model 9e, stepping 09
  787. CPU: vendor Intel device 906e9
  788. CPU: family 06, model 9e, stepping 09
  789. Clearing out pending MCEs
  790. Clearing out pending MCEs
  791. Setting up local APIC...
  792. CPU: vendor Intel device 906e9
  793. CPU: family 06, model 9e, stepping 09
  794. Clearing out pending MCEs
  795. Setting up local APIC...
  796. Setting up local APIC...
  797. apic_id: 0x03 done.
  798. apic_id: 0x02 done.
  799. cpu: energy policy set to 6
  800. cpu: energy policy set to 6
  801. Skip microcode update
  802. CPU #1 initialized
  803. Skip microcode update
  804. CPU #2 initialized
  805. apic_id: 0x01 done.
  806. cpu: energy policy set to 6
  807. Skip microcode update
  808. CPU #3 initialized
  809. bsp_do_flight_plan done after 217 msecs.
  810. Enabling SMIs.
  811. Locking SMM.
  812. VMX status: enabled
  813. VMX status: enabled
  814. IA32_FEATURE_CONTROL status: locked
  815. VMX status: enabled
  816. VMX status: enabled
  817. IA32_FEATURE_CONTROL status: locked
  818. IA32_FEATURE_CONTROL status: locked
  819. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 141 / 189 ms
  820. IA32_FEATURE_CONTROL status: locked
  821. Timestamp - device enumeration: 165379561753
  822. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  823. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  824. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  825. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  826. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  827. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  828. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  829. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  830. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  831. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  832. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  833. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  834. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  835. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  836. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  837. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  838. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  839. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  840. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  841. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  842. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  843. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  844. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  845. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  846. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  847. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  848. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  849. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  850. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  851. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  852. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  853. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  854. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  855. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  856. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  857. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  858. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  859. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  860. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  861. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  862. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  863. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  864. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  865. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  866. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  867. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  868. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  869. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  870. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  871. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  872. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  873. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  874. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  875. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  876. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  877. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  878. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  879. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  880. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  881. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  882. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  883. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  884. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  885. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  886. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  887. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  888. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  889. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  890. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  891. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  892. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  893. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  894. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  895. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  896. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  897. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  898. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  899. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  900. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  901. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  902. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  903. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  904. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  905. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  906. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  907. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  908. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  909. Timestamp - calling FspSiliconInit: 167484069062
  910. Timestamp - returning from FspSiliconInit: 167582415438
  911. ITSS IRQ Polarities Before:
  912. IPC0: 0x00ff4000
  913. IPC1: 0x00000007
  914. IPC2: 0x00000000
  915. IPC3: 0x00000000
  916. ITSS IRQ Polarities After:
  917. IPC0: 0x00ff4000
  918. IPC1: 0x00000007
  919. IPC2: 0x00000000
  920. IPC3: 0x00000000
  921. Found PCIe Root Port #5 at PCI: 00:1c.0.
  922. Found PCIe Root Port #8 at PCI: 00:1c.7.
  923. Found PCIe Root Port #9 at PCI: 00:1d.0.
  924. pcie_rp_update_dev: Couldn't find PCIe Root Port #1 (originally PCI: 00:1c.0) which was enabled in devicetree, removing.
  925. Remapping PCIe Root Port #5 from PCI: 00:1c.4 to new function number 0.
  926. BS: BS_DEV_INIT_CHIPS run times (exec / console): 28 / 590 ms
  927. Enumerating buses...
  928. Root Device scanning...
  929. CPU_CLUSTER: 0 enabled
  930. DOMAIN: 0000 enabled
  931. DOMAIN: 0000 scanning...
  932. PCI: pci_scan_bus for bus 00
  933. PCI: 00:00.0 [8086/590f] enabled
  934. PCI: 00:01.0 subordinate bus PCI Express
  935. PCI: 00:01.0 [8086/1901] enabled
  936. PCI: 00:02.0 [8086/5912] enabled
  937. PCI: 00:04.0 [8086/1903] enabled
  938. PCI: 00:14.0 [8086/a12f] enabled
  939. PCI: 00:14.2 [8086/a131] enabled
  940. PCI: 00:16.0 [8086/a13a] enabled
  941. PCI: 00:17.0 [8086/a102] enabled
  942. PCI: 00:1c.0 [8086/a114] enabled
  943. PCI: 00:1c.7 [8086/a117] enabled
  944. PCI: 00:1d.0 [8086/a118] enabled
  945. PCI: 00:1f.0 [8086/a143] enabled
  946. PCI: 00:1f.1 [8086/a120] enabled
  947. PCI: 00:1f.2 [8086/a121] enabled
  948. PCI: 00:1f.3 [8086/a170] enabled
  949. PCI: 00:1f.4 [8086/a123] enabled
  950. PCI: 00:1f.5 [8086/a124] enabled
  951. PCI: Leftover static devices:
  952. PCI: 00:14.1
  953. PCI: 00:15.0
  954. PCI: 00:15.1
  955. PCI: 00:15.2
  956. PCI: 00:15.3
  957. PCI: 00:16.1
  958. PCI: 00:16.2
  959. PCI: 00:16.3
  960. PCI: 00:16.4
  961. PCI: 00:19.0
  962. PCI: 00:19.1
  963. PCI: 00:19.2
  964. PCI: 00:1e.0
  965. PCI: 00:1e.1
  966. PCI: 00:1e.2
  967. PCI: 00:1e.3
  968. PCI: 00:1e.4
  969. PCI: 00:1e.5
  970. PCI: 00:1e.6
  971. PCI: 00:1f.6
  972. PCI: Check your devicetree.cb.
  973. PCI: 00:01.0 scanning...
  974. PCI: pci_scan_bus for bus 01
  975. PCI: 01:00.0 [10de/1d01] enabled
  976. PCI: 01:00.1 [10de/0fb8] enabled
  977. Enabling Common Clock Configuration
  978. ASPM: Enabled L0s and L1
  979. PCIe: Max_Payload_Size adjusted to 256
  980. Enabling Common Clock Configuration
  981. ASPM: Enabled L0s and L1
  982. PCIe: Max_Payload_Size adjusted to 256
  983. scan_bus: bus PCI: 00:01.0 finished in 28 msecs
  984. PCI: 00:02.0 scanning...
  985. scan_bus: bus PCI: 00:02.0 finished in 0 msecs
  986. PCI: 00:14.0 scanning...
  987. scan_bus: bus PCI: 00:14.0 finished in 0 msecs
  988. PCI: 00:1c.0 scanning...
  989. PCI: pci_scan_bus for bus 02
  990. scan_bus: bus PCI: 00:1c.0 finished in 2 msecs
  991. PCI: 00:1c.7 scanning...
  992. PCI: pci_scan_bus for bus 03
  993. PCI: 03:00.0 [10ec/8168] enabled
  994. Enabling Common Clock Configuration
  995. ASPM: Enabled L1
  996. PCIe: Max_Payload_Size adjusted to 128
  997. scan_bus: bus PCI: 00:1c.7 finished in 14 msecs
  998. PCI: 00:1d.0 scanning...
  999. PCI: pci_scan_bus for bus 04
  1000. scan_bus: bus PCI: 00:1d.0 finished in 2 msecs
  1001. PCI: 00:1f.0 scanning...
  1002. PNP: 002e.2 enabled
  1003. PNP: 002e.5 enabled
  1004. PNP: 002e.6 disabled
  1005. PNP: 002e.7 disabled
  1006. PNP: 002e.107 disabled
  1007. PNP: 002e.8 disabled
  1008. PNP: 002e.108 disabled
  1009. PNP: 002e.308 disabled
  1010. PNP: 002e.408 disabled
  1011. PNP: 002e.9 disabled
  1012. PNP: 002e.109 disabled
  1013. PNP: 002e.209 disabled
  1014. PNP: 002e.309 disabled
  1015. PNP: 002e.a enabled
  1016. PNP: 002e.b disabled
  1017. PNP: 002e.d disabled
  1018. PNP: 002e.e disabled
  1019. PNP: 002e.f disabled
  1020. PNP: 002e.14 disabled
  1021. PNP: 002e.16 disabled
  1022. PNP: 002e.116 disabled
  1023. PNP: 002e.316 disabled
  1024. PNP: 002e.416 disabled
  1025. PNP: 002e.516 disabled
  1026. PNP: 002e.616 disabled
  1027. PNP: 002e.716 disabled
  1028. PNP: 002e.207 enabled
  1029. PNP: 002e.11 enabled
  1030. PNP: 002e.12 enabled
  1031. PNP: 002e.15 enabled
  1032. scan_bus: bus PCI: 00:1f.0 finished in 64 msecs
  1033. PCI: 00:1f.2 scanning...
  1034. scan_bus: bus PCI: 00:1f.2 finished in 0 msecs
  1035. PCI: 00:1f.4 scanning...
  1036. scan_bus: bus PCI: 00:1f.4 finished in 0 msecs
  1037. scan_bus: bus DOMAIN: 0000 finished in 266 msecs
  1038. scan_bus: bus Root Device finished in 277 msecs
  1039. done
  1040. BS: BS_DEV_ENUMERATE run times (exec / console): 2 / 285 ms
  1041. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  1042. MRC: Checking cached data update for 'RW_MRC_CACHE'.
  1043. SF: Detected 00 0000 with sector size 0x1000, total 0x1000000
  1044. MRC: no data in 'RW_MRC_CACHE'
  1045. MRC: cache data 'RW_MRC_CACHE' needs update.
  1046. SPI Transaction Error at Flash Offset c00000 HSFSTS = 0x01046003
  1047. REGF metadata allocation failed: 392 data blocks 4096 total blocks
  1048. MRC: Could not find region 'UNIFIED_MRC_CACHE'
  1049. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  1050. MRC: NOT enabling PRR for 'RW_MRC_CACHE'.
  1051. BS: BS_DEV_ENUMERATE exit times (exec / console): 0 / 49 ms
  1052. Timestamp - device configuration: 169168000184
  1053. found VGA at PCI: 01:00.0
  1054. Setting up VGA for PCI: 01:00.0
  1055. Setting PCI_BRIDGE_CTL_VGA for bridge PCI: 00:01.0
  1056. Setting PCI_BRIDGE_CTL_VGA for bridge DOMAIN: 0000
  1057. Setting PCI_BRIDGE_CTL_VGA for bridge Root Device
  1058. Allocating resources...
  1059. Reading resources...
  1060. Done reading resources.
  1061. Setting resources...
  1062. PCI: 00:01.0 1c <- [0x0000002000 - 0x0000002fff] size 0x00001000 gran 0x0c bus 01 io
  1063. PCI: 00:01.0 24 <- [0x00a0000000 - 0x00b1ffffff] size 0x12000000 gran 0x14 bus 01 prefmem
  1064. PCI: 00:01.0 20 <- [0x00d0000000 - 0x00d10fffff] size 0x01100000 gran 0x14 bus 01 mem
  1065. PCI: 01:00.0 10 <- [0x00d0000000 - 0x00d0ffffff] size 0x01000000 gran 0x18 mem
  1066. PCI: 01:00.0 14 <- [0x00a0000000 - 0x00afffffff] size 0x10000000 gran 0x1c prefmem64
  1067. PCI: 01:00.0 1c <- [0x00b0000000 - 0x00b1ffffff] size 0x02000000 gran 0x19 prefmem64
  1068. PCI: 01:00.0 24 <- [0x0000002000 - 0x000000207f] size 0x00000080 gran 0x07 io
  1069. PCI: 01:00.0 30 <- [0x00d1000000 - 0x00d107ffff] size 0x00080000 gran 0x13 romem
  1070. PCI: 01:00.1 10 <- [0x00d1080000 - 0x00d1083fff] size 0x00004000 gran 0x0e mem
  1071. PCI: 00:02.0 10 <- [0x00d2000000 - 0x00d2ffffff] size 0x01000000 gran 0x18 mem64
  1072. PCI: 00:02.0 18 <- [0x00c0000000 - 0x00cfffffff] size 0x10000000 gran 0x1c prefmem64
  1073. PCI: 00:02.0 20 <- [0x0000004000 - 0x000000403f] size 0x00000040 gran 0x06 io
  1074. PCI: 00:04.0 10 <- [0x00d3120000 - 0x00d3127fff] size 0x00008000 gran 0x0f mem64
  1075. PCI: 00:14.0 10 <- [0x00d3100000 - 0x00d310ffff] size 0x00010000 gran 0x10 mem64
  1076. PCI: 00:14.2 10 <- [0x00d3132000 - 0x00d3132fff] size 0x00001000 gran 0x0c mem64
  1077. PCI: 00:16.0 10 <- [0x00d3133000 - 0x00d3133fff] size 0x00001000 gran 0x0c mem64
  1078. PCI: 00:17.0 10 <- [0x00d3130000 - 0x00d3131fff] size 0x00002000 gran 0x0d mem
  1079. PCI: 00:17.0 14 <- [0x00d3136000 - 0x00d31360ff] size 0x00000100 gran 0x08 mem
  1080. PCI: 00:17.0 18 <- [0x0000004060 - 0x0000004067] size 0x00000008 gran 0x03 io
  1081. PCI: 00:17.0 1c <- [0x0000004068 - 0x000000406b] size 0x00000004 gran 0x02 io
  1082. PCI: 00:17.0 20 <- [0x0000004040 - 0x000000405f] size 0x00000020 gran 0x05 io
  1083. PCI: 00:17.0 24 <- [0x00d3135000 - 0x00d31357ff] size 0x00000800 gran 0x0b mem
  1084. PCI: 00:1c.0 1c <- [0x000000ef9f - 0x000000ef9e] size 0x00000000 gran 0x0c bus 02 io
  1085. PCI: 00:1c.0 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 02 prefmem
  1086. PCI: 00:1c.0 20 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 02 mem
  1087. PCI: 00:1c.7 1c <- [0x0000003000 - 0x0000003fff] size 0x00001000 gran 0x0c bus 03 io
  1088. PCI: 00:1c.7 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 03 prefmem
  1089. PCI: 00:1c.7 20 <- [0x00d3000000 - 0x00d30fffff] size 0x00100000 gran 0x14 bus 03 mem
  1090. PCI: 03:00.0 10 <- [0x0000003000 - 0x00000030ff] size 0x00000100 gran 0x08 io
  1091. PCI: 03:00.0 18 <- [0x00d3004000 - 0x00d3004fff] size 0x00001000 gran 0x0c mem64
  1092. PCI: 03:00.0 20 <- [0x00d3000000 - 0x00d3003fff] size 0x00004000 gran 0x0e mem64
  1093. PCI: 00:1d.0 1c <- [0x000000ef9f - 0x000000ef9e] size 0x00000000 gran 0x0c bus 04 io
  1094. PCI: 00:1d.0 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 04 prefmem
  1095. PCI: 00:1d.0 20 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 04 mem
  1096. PNP: 002e.2 60 <- [0x00000003f8 - 0x00000003ff] size 0x00000008 gran 0x03 io
  1097. PNP: 002e.2 70 <- [0x0000000004 - 0x0000000004] size 0x00000001 gran 0x00 irq
  1098. PNP: 002e.5 60 <- [0x0000000060 - 0x0000000060] size 0x00000001 gran 0x00 io
  1099. PNP: 002e.5 62 <- [0x0000000064 - 0x0000000064] size 0x00000001 gran 0x00 io
  1100. PNP: 002e.5 70 <- [0x0000000001 - 0x0000000001] size 0x00000001 gran 0x00 irq
  1101. PNP: 002e.5 72 <- [0x000000000c - 0x000000000c] size 0x00000001 gran 0x00 irq
  1102. LPC: Opened IO window LGIR1: base 3f8 size 8
  1103. LPC: Opened IO window LGIR2: base 60 size 1
  1104. LPC: Opened IO window LGIR3: base 64 size 1
  1105. LPC: Cannot open IO window: 0 size 8
  1106. No more IO windows
  1107. LPC: Cannot open IO window: 0 size 8
  1108. No more IO windows
  1109. LPC: Cannot open IO window: 290 size 2
  1110. No more IO windows
  1111. LPC: Cannot open IO window: 0 size 8
  1112. No more IO windows
  1113. PCI: 00:1f.2 10 <- [0x00d3128000 - 0x00d312bfff] size 0x00004000 gran 0x0e mem
  1114. PCI: 00:1f.3 10 <- [0x00d312c000 - 0x00d312ffff] size 0x00004000 gran 0x0e mem64
  1115. PCI: 00:1f.3 20 <- [0x00d3110000 - 0x00d311ffff] size 0x00010000 gran 0x10 mem64
  1116. PCI: 00:1f.4 10 <- [0x00d3137000 - 0x00d31370ff] size 0x00000100 gran 0x08 mem64
  1117. PCI: 00:1f.5 10 <- [0x00d3134000 - 0x00d3134fff] size 0x00001000 gran 0x0c mem
  1118. Done setting resources.
  1119. Done allocating resources.
  1120. BS: BS_DEV_RESOURCES run times (exec / console): 2 / 414 ms
  1121. Timestamp - calling FspNotify(AfterPciEnumeration): 170811359978
  1122. Timestamp - returning from FspNotify(AfterPciEnumeration): 170835666383
  1123. BS: BS_DEV_ENABLE entry times (exec / console): 0 / 13 ms
  1124. Timestamp - device enable: 170882980405
  1125. Enabling resources...
  1126. PCI: 00:00.0 subsystem <- 1043/8694
  1127. PCI: 00:00.0 cmd <- 06
  1128. PCI: 00:01.0 bridge ctrl <- 001b
  1129. PCI: 00:01.0 cmd <- 07
  1130. PCI: 00:02.0 subsystem <- 1043/8694
  1131. PCI: 00:02.0 cmd <- 03
  1132. PCI: 00:04.0 cmd <- 02
  1133. PCI: 00:14.0 subsystem <- 1043/8694
  1134. PCI: 00:14.0 cmd <- 02
  1135. PCI: 00:14.2 subsystem <- 1043/8694
  1136. PCI: 00:14.2 cmd <- 02
  1137. PCI: 00:16.0 subsystem <- 1043/8694
  1138. PCI: 00:16.0 cmd <- 02
  1139. PCI: 00:17.0 subsystem <- 1043/8694
  1140. PCI: 00:17.0 cmd <- 03
  1141. PCI: 00:1c.0 bridge ctrl <- 0013
  1142. PCI: 00:1c.0 subsystem <- 1043/8694
  1143. PCI: 00:1c.0 cmd <- 00
  1144. PCI: 00:1c.7 bridge ctrl <- 0013
  1145. PCI: 00:1c.7 subsystem <- 1043/8694
  1146. PCI: 00:1c.7 cmd <- 07
  1147. PCI: 00:1d.0 bridge ctrl <- 0013
  1148. PCI: 00:1d.0 subsystem <- 1043/8694
  1149. PCI: 00:1d.0 cmd <- 00
  1150. PCI: 00:1f.0 subsystem <- 1043/8694
  1151. PCI: 00:1f.0 cmd <- 07
  1152. PCI: 00:1f.2 subsystem <- 1043/8694
  1153. PCI: 00:1f.2 cmd <- 06
  1154. PCI: 00:1f.3 subsystem <- 1043/8694
  1155. PCI: 00:1f.3 cmd <- 02
  1156. PCI: 00:1f.4 subsystem <- 1043/8694
  1157. PCI: 00:1f.4 cmd <- 03
  1158. PCI: 00:1f.5 subsystem <- 1043/8694
  1159. PCI: 00:1f.5 cmd <- 406
  1160. PCI: 01:00.0 cmd <- 03
  1161. PCI: 01:00.1 cmd <- 02
  1162. PCI: 03:00.0 cmd <- 03
  1163. done.
  1164. BS: BS_DEV_ENABLE run times (exec / console): 0 / 109 ms
  1165. ME: Version : Unavailable
  1166. BS: BS_DEV_ENABLE exit times (exec / console): 0 / 2 ms
  1167. Timestamp - device initialization: 171359670754
  1168. Initializing devices...
  1169. Root Device init
  1170. Root Device init finished in 0 msecs
  1171. CPU_CLUSTER: 0 init
  1172. CPU_CLUSTER: 0 init finished in 0 msecs
  1173. PCI: 00:00.0 init
  1174. CPU TDP: 51 Watts
  1175. CPU PL2 = 91 Watts
  1176. PCI: 00:00.0 init finished in 4 msecs
  1177. PCI: 00:02.0 init
  1178. PCI: 00:02.0 init finished in 0 msecs
  1179. PCI: 00:04.0 init
  1180. PCI: 00:04.0 init finished in 0 msecs
  1181. PCI: 00:14.0 init
  1182. PCI: 00:14.0 init finished in 0 msecs
  1183. PCI: 00:14.2 init
  1184. PCI: 00:14.2 init finished in 0 msecs
  1185. PCI: 00:16.0 init
  1186. PCI: 00:16.0 init finished in 0 msecs
  1187. PCI: 00:17.0 init
  1188. PCI: 00:17.0 init finished in 0 msecs
  1189. PCI: 00:1c.0 init
  1190. Initializing PCH PCIe bridge.
  1191. PCI: 00:1c.0 init finished in 2 msecs
  1192. PCI: 00:1c.7 init
  1193. Initializing PCH PCIe bridge.
  1194. PCI: 00:1c.7 init finished in 2 msecs
  1195. PCI: 00:1d.0 init
  1196. Initializing PCH PCIe bridge.
  1197. PCI: 00:1d.0 init finished in 2 msecs
  1198. PCI: 00:1f.0 init
  1199. IOAPIC: Initializing IOAPIC at 0xfec00000
  1200. IOAPIC: Bootstrap Processor Local APIC = 0x00
  1201. IOAPIC: ID = 0x02
  1202. PCI: 00:1f.0 init finished in 9 msecs
  1203. PCI: 00:1f.2 init
  1204. RTC Init
  1205. Set power on after power failure.
  1206. Disabling ACPI via APMC:
  1207. done.
  1208. Disabling Deep S3
  1209. Disabling Deep S3
  1210. Disabling Deep S4
  1211. Disabling Deep S4
  1212. Disabling Deep S5
  1213. Disabling Deep S5
  1214. PCI: 00:1f.2 init finished in 17 msecs
  1215. PCI: 00:1f.3 init
  1216. PCI: 00:1f.3 init finished in 0 msecs
  1217. PCI: 00:1f.4 init
  1218. PCI: 00:1f.4 init finished in 0 msecs
  1219. PCI: 00:1f.5 init
  1220. PCI: 00:1f.5 init finished in 0 msecs
  1221. PCI: 01:00.0 init
  1222. Timestamp - Option ROM initialization: 171902595915
  1223. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1224. CBFS: Locating 'pci10de,1d01.rom'
  1225. CBFS: 'pci10de,1d01.rom' not found.
  1226. PCI Option ROM loading disabled for PCI: 01:00.0
  1227. PCI: 01:00.0 init finished in 20 msecs
  1228. PCI: 01:00.1 init
  1229. PCI: 01:00.1 init finished in 0 msecs
  1230. PCI: 03:00.0 init
  1231. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1232. CBFS: Locating 'rt8168-macaddress'
  1233. CBFS: Found @ offset 54600 size 11
  1234. r8168: Resetting NIC...done
  1235. r8168: Programming MAC Address...done
  1236. PCI: 03:00.0 init finished in 17 msecs
  1237. PNP: 002e.2 init
  1238. PNP: 002e.2 init finished in 0 msecs
  1239. PNP: 002e.5 init
  1240. PNP: 002e.5 init finished in 0 msecs
  1241. PNP: 002e.a init
  1242. PNP: 002e.a init finished in 0 msecs
  1243. PNP: 002e.207 init
  1244. PNP: 002e.207 init finished in 0 msecs
  1245. PNP: 002e.11 init
  1246. PNP: 002e.11 init finished in 0 msecs
  1247. PNP: 002e.12 init
  1248. PNP: 002e.12 init finished in 0 msecs
  1249. PNP: 002e.15 init
  1250. PNP: 002e.15 init finished in 0 msecs
  1251. Devices initialized
  1252. BS: BS_DEV_INIT run times (exec / console): 2 / 228 ms
  1253. Finalize devices...
  1254. Devices finalized
  1255. Timestamp - device setup done: 172289789411
  1256. BS: BS_POST_DEVICE run times (exec / console): 0 / 8 ms
  1257. Timestamp - cbmem post: 172325537249
  1258. BS: BS_OS_RESUME_CHECK run times (exec / console): 0 / 3 ms
  1259. Timestamp - write tables: 172360070562
  1260. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1261. CBFS: Locating 'fallback/dsdt.aml'
  1262. CBFS: Found @ offset ec4c0 size 2c93
  1263. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1264. CBFS: Locating 'fallback/slic'
  1265. CBFS: 'fallback/slic' not found.
  1266. ACPI: Writing ACPI tables at 7aa9f000.
  1267. ACPI: * FACS
  1268. ACPI: * DSDT
  1269. ACPI: * FADT
  1270. SCI is IRQ9
  1271. ACPI: added table 1/32, length now 40
  1272. ACPI: * SSDT
  1273. Found 1 CPU(s) with 4 core(s) each.
  1274. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  1275. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  1276. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  1277. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  1278. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  1279. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  1280. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  1281. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  1282. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  1283. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  1284. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  1285. PSS: 800MHz power 7088 control 0x800 status 0x800
  1286. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  1287. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  1288. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  1289. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  1290. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  1291. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  1292. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  1293. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  1294. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  1295. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  1296. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  1297. PSS: 800MHz power 7088 control 0x800 status 0x800
  1298. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  1299. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  1300. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  1301. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  1302. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  1303. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  1304. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  1305. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  1306. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  1307. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  1308. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  1309. PSS: 800MHz power 7088 control 0x800 status 0x800
  1310. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  1311. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  1312. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  1313. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  1314. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  1315. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  1316. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  1317. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  1318. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  1319. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  1320. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  1321. PSS: 800MHz power 7088 control 0x800 status 0x800
  1322. BUG: Parent of device PNP: 002e.2 is not a PNP device
  1323. BUG: Check your devicetree!
  1324. BUG: Parent of device PNP: 002e.5 is not a PNP device
  1325. BUG: Check your devicetree!
  1326. BUG: Parent of device PNP: 002e.6 is not a PNP device
  1327. BUG: Check your devicetree!
  1328. BUG: Parent of device PNP: 002e.107 is not a PNP device
  1329. BUG: Check your devicetree!
  1330. BUG: Parent of device PNP: 002e.8 is not a PNP device
  1331. BUG: Check your devicetree!
  1332. BUG: Parent of device PNP: 002e.108 is not a PNP device
  1333. BUG: Check your devicetree!
  1334. BUG: Parent of device PNP: 002e.308 is not a PNP device
  1335. BUG: Check your devicetree!
  1336. BUG: Parent of device PNP: 002e.408 is not a PNP device
  1337. BUG: Check your devicetree!
  1338. BUG: Parent of device PNP: 002e.9 is not a PNP device
  1339. BUG: Check your devicetree!
  1340. BUG: Parent of device PNP: 002e.109 is not a PNP device
  1341. BUG: Check your devicetree!
  1342. BUG: Parent of device PNP: 002e.209 is not a PNP device
  1343. BUG: Check your devicetree!
  1344. BUG: Parent of device PNP: 002e.309 is not a PNP device
  1345. BUG: Check your devicetree!
  1346. BUG: Parent of device PNP: 002e.a is not a PNP device
  1347. BUG: Check your devicetree!
  1348. BUG: Parent of device PNP: 002e.b is not a PNP device
  1349. BUG: Check your devicetree!
  1350. BUG: Parent of device PNP: 002e.d is not a PNP device
  1351. BUG: Check your devicetree!
  1352. BUG: Parent of device PNP: 002e.e is not a PNP device
  1353. BUG: Check your devicetree!
  1354. BUG: Parent of device PNP: 002e.f is not a PNP device
  1355. BUG: Check your devicetree!
  1356. BUG: Parent of device PNP: 002e.16 is not a PNP device
  1357. BUG: Check your devicetree!
  1358. BUG: Parent of device PNP: 002e.116 is not a PNP device
  1359. BUG: Check your devicetree!
  1360. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1361. CBFS: Locating 'pci10de,1d01.rom'
  1362. CBFS: 'pci10de,1d01.rom' not found.
  1363. PCI Option ROM loading disabled for PCI: 01:00.0
  1364. PCI: 01:00.0: Missing PCI Option ROM
  1365. BUG: Parent of device PNP: 002e.207 is not a PNP device
  1366. BUG: Check your devicetree!
  1367. BUG: Parent of device PNP: 002e.11 is not a PNP device
  1368. BUG: Check your devicetree!
  1369. BUG: Parent of device PNP: 002e.12 is not a PNP device
  1370. BUG: Check your devicetree!
  1371. BUG: Parent of device PNP: 002e.15 is not a PNP device
  1372. BUG: Check your devicetree!
  1373. ACPI: added table 2/32, length now 44
  1374. ACPI: * MCFG
  1375. ACPI: added table 3/32, length now 48
  1376. ACPI: * MADT
  1377. SCI is IRQ9
  1378. ACPI: added table 4/32, length now 52
  1379. current = 7aaa2ea0
  1380. ACPI: * DMAR
  1381. ACPI: added table 5/32, length now 56
  1382. ACPI: * IGD OpRegion
  1383. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1384. CBFS: Locating 'vbt.bin'
  1385. CBFS: Found @ offset 54680 size 49c
  1386. Timestamp - starting LZMA decompress (ignore for x86): 174332732768
  1387. Timestamp - finished LZMA decompress (ignore for x86): 174357167263
  1388. Found a VBT of 4284 bytes after decompression
  1389. GMA: Found VBT in CBFS
  1390. GMA: Found valid VBT in CBFS
  1391. current = 7aaa4f30
  1392. acpi_write_dbg2_pci_uart: Device not found
  1393. ACPI: * HPET
  1394. ACPI: added table 6/32, length now 60
  1395. ACPI: done.
  1396. ACPI tables: 24432 bytes.
  1397. smbios_write_tables: 7aa9d000
  1398. Create SMBIOS type 17
  1399. PCI: 00:00.0 (Intel 6th Gen)
  1400. SMBIOS tables: 761 bytes.
  1401. Writing table forward entry at 0x00000500
  1402. Wrote coreboot table at: 0x00000500, 0x10 bytes, checksum 5532
  1403. Writing coreboot table at 0x7aac3000
  1404. 0. 0000000000000000-0000000000000fff: CONFIGURATION TABLES
  1405. 1. 0000000000001000-000000000009ffff: RAM
  1406. 2. 00000000000a0000-00000000000fffff: RESERVED
  1407. 3. 0000000000100000-000000007aa9cfff: RAM
  1408. 4. 000000007aa9d000-000000007ab09fff: CONFIGURATION TABLES
  1409. 5. 000000007ab0a000-000000007abcefff: RAMSTAGE
  1410. 6. 000000007abcf000-000000007affffff: CONFIGURATION TABLES
  1411. 7. 000000007b000000-000000007fffffff: RESERVED
  1412. 8. 00000000e0000000-00000000efffffff: RESERVED
  1413. 9. 00000000fd000000-00000000fe00ffff: RESERVED
  1414. 10. 00000000fed10000-00000000fed19fff: RESERVED
  1415. 11. 00000000fed80000-00000000fed84fff: RESERVED
  1416. 12. 00000000fed90000-00000000fed91fff: RESERVED
  1417. 13. 0000000100000000-000000047effffff: RAM
  1418. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1419. Wrote coreboot table at: 0x7aac3000, 0x400 bytes, checksum c04a
  1420. coreboot table: 1048 bytes.
  1421. IMD ROOT 0. 0x7afff000 0x00001000
  1422. IMD SMALL 1. 0x7affe000 0x00001000
  1423. FSP MEMORY 2. 0x7abfe000 0x00400000
  1424. CONSOLE 3. 0x7abde000 0x00020000
  1425. TIME STAMP 4. 0x7abdd000 0x00000910
  1426. MRC DATA 5. 0x7abdb000 0x00001878
  1427. ROMSTG STCK 6. 0x7abda000 0x00001000
  1428. AFTER CAR 7. 0x7abcf000 0x0000b000
  1429. RAMSTAGE 8. 0x7ab09000 0x000c6000
  1430. REFCODE 9. 0x7aadb000 0x0002e000
  1431. SMM BACKUP 10. 0x7aacb000 0x00010000
  1432. COREBOOT 11. 0x7aac3000 0x00008000
  1433. ACPI 12. 0x7aa9f000 0x00024000
  1434. ACPI GNVS 13. 0x7aa9e000 0x00001000
  1435. SMBIOS 14. 0x7aa9d000 0x00000800
  1436. IMD small region:
  1437. IMD ROOT 0. 0x7affec00 0x00000400
  1438. FSP RUNTIME 1. 0x7affebe0 0x00000004
  1439. FMAP 2. 0x7affeb00 0x000000e0
  1440. POWER STATE 3. 0x7affeac0 0x00000040
  1441. ROMSTAGE 4. 0x7affeaa0 0x00000004
  1442. MEM INFO 5. 0x7affe8e0 0x000001b9
  1443. Timestamp - finalize chips: 175154892787
  1444. BS: BS_WRITE_TABLES run times (exec / console): 1 / 719 ms
  1445. MTRR: Physical address space:
  1446. 0x0000000000000000 - 0x00000000000a0000 size 0x000a0000 type 6
  1447. 0x00000000000a0000 - 0x00000000000c0000 size 0x00020000 type 0
  1448. 0x00000000000c0000 - 0x000000007b800000 size 0x7b740000 type 6
  1449. 0x000000007b800000 - 0x00000000a0000000 size 0x24800000 type 0
  1450. 0x00000000a0000000 - 0x00000000b2000000 size 0x12000000 type 1
  1451. 0x00000000b2000000 - 0x0000000100000000 size 0x4e000000 type 0
  1452. 0x0000000100000000 - 0x000000047f000000 size 0x37f000000 type 6
  1453. MTRR: Fixed MSR 0x250 0x0606060606060606
  1454. MTRR: Fixed MSR 0x258 0x0606060606060606
  1455. MTRR: Fixed MSR 0x259 0x0000000000000000
  1456. MTRR: Fixed MSR 0x268 0x0606060606060606
  1457. MTRR: Fixed MSR 0x269 0x0606060606060606
  1458. MTRR: Fixed MSR 0x26a 0x0606060606060606
  1459. MTRR: Fixed MSR 0x26b 0x0606060606060606
  1460. MTRR: Fixed MSR 0x26c 0x0606060606060606
  1461. MTRR: Fixed MSR 0x26d 0x0606060606060606
  1462. MTRR: Fixed MSR 0x26e 0x0606060606060606
  1463. MTRR: Fixed MSR 0x26f 0x0606060606060606
  1464. CPU physical address size: 39 bits
  1465. MTRR: default type WB/UC MTRR counts: 9/8.
  1466. MTRR: UC selected as default type.
  1467. MTRR: 0 base 0x0000000000000000 mask 0x0000007f80000000 type 6
  1468. MTRR: 1 base 0x000000007b800000 mask 0x0000007fff800000 type 0
  1469. MTRR: 2 base 0x000000007c000000 mask 0x0000007ffc000000 type 0
  1470. MTRR: 3 base 0x00000000a0000000 mask 0x0000007ff0000000 type 1
  1471. MTRR: 4 base 0x00000000b0000000 mask 0x0000007ffe000000 type 1
  1472. MTRR: 5 base 0x0000000100000000 mask 0x0000007f00000000 type 6
  1473. MTRR: 6 base 0x0000000200000000 mask 0x0000007e00000000 type 6
  1474. MTRR: 7 base 0x0000000400000000 mask 0x0000007f80000000 type 6
  1475. MTRR: Fixed MSR 0x250 0x0606060606060606
  1476. MTRR: Fixed MSR 0x258 0x0606060606060606
  1477. MTRR: Fixed MSR 0x259 0x0000000000000000
  1478. MTRR: Fixed MSR 0x268 0x0606060606060606
  1479. MTRR: Fixed MSR 0x269 0x0606060606060606
  1480. MTRR: Fixed MSR 0x26a 0x0606060606060606
  1481. MTRR: Fixed MSR 0x26b 0x0606060606060606
  1482. MTRR: Fixed MSR 0x26c 0x0606060606060606
  1483. MTRR: Fixed MSR 0x26d 0x0606060606060606
  1484. MTRR: Fixed MSR 0x26e 0x0606060606060606
  1485. MTRR: Fixed MSR 0x26f 0x0606060606060606
  1486.  
  1487. MTRR check
  1488. Fixed MTRRs : Enabled
  1489. Variable MTRRs: Enabled
  1490.  
  1491. CPU physical address size: 39 bits
  1492. BS: BS_WRITE_TABLES exit times (exec / console): 44 / 147 ms
  1493. MTRR: Fixed MSR 0x250 0x0606060606060606
  1494. MTRR: Fixed MSR 0x250 0x0606060606060606
  1495. MTRR: Fixed MSR 0x258 0x0606060606060606
  1496. MTRR: Fixed MSR 0x259 0x0000000000000000
  1497. MTRR: Fixed MSR 0x268 0x0606060606060606
  1498. MTRR: Fixed MSR 0x269 0x0606060606060606
  1499. MTRR: Fixed MSR 0x26a 0x0606060606060606
  1500. MTRR: Fixed MSR 0x26b 0x0606060606060606
  1501. MTRR: Fixed MSR 0x26c 0x0606060606060606
  1502. MTRR: Fixed MSR 0x26d 0x0606060606060606
  1503. MTRR: Fixed MSR 0x26e 0x0606060606060606
  1504. MTRR: Fixed MSR 0x26f 0x0606060606060606
  1505. MTRR: Fixed MSR 0x258 0x0606060606060606
  1506. CPU physical address size: 39 bits
  1507. MTRR: Fixed MSR 0x259 0x0000000000000000
  1508. MTRR: Fixed MSR 0x268 0x0606060606060606
  1509. MTRR: Fixed MSR 0x269 0x0606060606060606
  1510. MTRR: Fixed MSR 0x26a 0x0606060606060606
  1511. MTRR: Fixed MSR 0x26b 0x0606060606060606
  1512. MTRR: Fixed MSR 0x26c 0x0606060606060606
  1513. MTRR: Fixed MSR 0x26d 0x0606060606060606
  1514. MTRR: Fixed MSR 0x26e 0x0606060606060606
  1515. MTRR: Fixed MSR 0x26f 0x0606060606060606
  1516. Timestamp - load payload: 175969568258
  1517. CPU physical address size: 39 bits
  1518. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1519. CBFS: Locating 'fallback/payload'
  1520. CBFS: Found @ offset ffc80 size 10f36
  1521. Checking segment from ROM address 0xffd0feb8
  1522. Payload being loaded at below 1MiB without region being marked as RAM usable.
  1523. Checking segment from ROM address 0xffd0fed4
  1524. Loading segment from ROM address 0xffd0feb8
  1525. code (compression=1)
  1526. New segment dstaddr 0x000dfba0 memsize 0x20460 srcaddr 0xffd0fef0 filesize 0x10efe
  1527. Loading Segment: addr: 0x000dfba0 memsz: 0x0000000000020460 filesz: 0x0000000000010efe
  1528. using LZMA
  1529. Timestamp - starting LZMA decompress (ignore for x86): 176541990607
  1530. Timestamp - finished LZMA decompress (ignore for x86): 176664392145
  1531. Loading segment from ROM address 0xffd0fed4
  1532. Entry Point 0x000fd25d
  1533. BS: BS_PAYLOAD_LOAD run times (exec / console): 117 / 74 ms
  1534. Timestamp - calling FspNotify(ReadyToBoot): 176736391410
  1535. Timestamp - returning from FspNotify(ReadyToBoot): 176771004201
  1536. Timestamp - calling FspNotify(EndOfFirmware): 176794352019
  1537. Timestamp - returning from FspNotify(EndOfFirmware): 176822923329
  1538. Finalizing chipset.
  1539. HECI: CSE device is hidden
  1540. Finalizing SMM.
  1541. BS: BS_PAYLOAD_LOAD exit times (exec / console): 6 / 29 ms
  1542. mp_park_aps done after 0 msecs.
  1543. Jumping to boot code at 0x000fd25d(0x7aac3000)
  1544. Timestamp - selfboot jump: 176921720911
  1545. SeaBIOS (version rel-1.13.0-5-g7655185)
  1546. BUILD: gcc: (coreboot toolchain vdfd3f21174 2019-05-03) 9.2.0 binutils: (GNU Binutils) 2.33.1
  1547. SeaBIOS (version rel-1.13.0-5-g7655185)
  1548. BUILD: gcc: (coreboot toolchain vdfd3f21174 2019-05-03) 9.2.0 binutils: (GNU Binutils) 2.33.1
  1549. Found coreboot cbmem console @ 7abde000
  1550. Found mainboard ASUS H110M-E/M.2
  1551. Relocating init from 0x000e12c0 to 0x7aa4fc40 (size 54048)
  1552. Found CBFS header at 0xffc10238
  1553. multiboot: eax=7ab3d300, ebx=7ab3d2c4
  1554. Found 18 PCI devices (max PCI bus is 04)
  1555. Copying SMBIOS entry point from 0x7aa9d000 to 0x000f62e0
  1556. Copying ACPI RSDP from 0x7aa9f000 to 0x000f62b0
  1557. Using pmtimer, ioport 0x1808
  1558. Scan for VGA option rom
  1559. Running option rom at c000:0003
  1560. sercon: using ioport 0x3f8
  1561. sercon: configuring in splitmode (vgabios c000:17dc)
  1562. Turning on vga text mode console
  1563. SeaBIOS (version rel-1.13.0-5-g7655185XHCI init on dev 00:14.0: regs @ 0xd3100000, 20 ports, 64 slots, 32 byte contexts
  1564. XHCI protocol USB 2.00, 10 ports (offset 1), def 3011
  1565. XHCI protocol USB 3.00, 4 ports (offset 17), def 3000
  1566. XHCI extcap 0xc0 @ 0xd3108070
  1567. XHCI extcap 0x1 @ 0xd310846c
  1568. XHCI extcap 0xc6 @ 0xd31084f4
  1569. XHCI extcap 0xc7 @ 0xd3108500
  1570. XHCI extcap 0xc2 @ 0xd3108600
  1571. XHCI extcap 0xa @ 0xd3108700
  1572. XHCI extcap 0xc3 @ 0xd3108740
  1573. XHCI extcap 0xc4 @ 0xd3108800
  1574. XHCI extcap 0xc5 @ 0xd3108900
  1575. AHCI controller at 00:17.0, iobase 0xd3135000, irq 11
  1576. Searching bootorder for: HALT
  1577. Found 0 lpt ports
  1578. Found 1 serial ports
  1579. Searching bootorder for: /rom@img/memtest
  1580. Searching bootorder for: /rom@img/nvramcui
  1581. )
  1582. Got ps2 nak (status=51)
  1583. Searching bootorder for: /pci@i0cf8/*@17/drive@3/disk@0
  1584. AHCI/3: Set transfer mode to UDMA-6
  1585. Searching bios-geometry for: /pci@i0cf8/*@17/drive@3/disk@0
  1586. AHCI/3: registering: "AHCI/3: TOSHIBA HDWD110 ATA-8 Hard-Disk (931 GiBytes)"
  1587. XHCI port #5: 0x00200a03, powered, enabled, pls 0, speed 2 [Low]
  1588. USB mouse initialized
  1589. XHCI port #6: 0x00200a03, powered, enabled, pls 0, speed 2 [Low]
  1590. USB keyboard initialized
  1591. All threads complete.
  1592. Scan for option roms
  1593.  
  1594. Press ESC for boot menu.
  1595.  
  1596. Searching bootorder for: HALT
  1597. drive 0x000f6240: PCHS=16383/16/63 translation=lba LCHS=1024/255/63 s=1953525168
  1598. Space available for UMB: ce800-ed000, f5b00-f6240
  1599. Returned 114688 bytes of ZoneHigh
  1600. e820 map has 11 items:
  1601. 0: 0000000000000000 - 000000000009fc00 = 1 RAM
  1602. 1: 000000000009fc00 - 00000000000a0000 = 2 RESERVED
  1603. 2: 00000000000f0000 - 0000000000100000 = 2 RESERVED
  1604. 3: 0000000000100000 - 000000007aa79000 = 1 RAM
  1605. 4: 000000007aa79000 - 0000000080000000 = 2 RESERVED
  1606. 5: 00000000e0000000 - 00000000f0000000 = 2 RESERVED
  1607. 6: 00000000fd000000 - 00000000fe010000 = 2 RESERVED
  1608. 7: 00000000fed10000 - 00000000fed1a000 = 2 RESERVED
  1609. 8: 00000000fed80000 - 00000000fed85000 = 2 RESERVED
  1610. 9: 00000000fed90000 - 00000000fed92000 = 2 RESERVED
  1611. 10: 0000000100000000 - 000000047f000000 = 1 RAM
  1612. enter handle_19:
  1613. NULL
  1614. Booting from Hard Disk..Booting from 0000:7c00
  1615. .
  1616. GRUB loading.
  1617. Welcome to GRUB!
  1618.  
  1619. WARNING - Timeout at ahci_command:153!
  1620. WARNING - Timeout at ahci_command:153!
  1621. WARNING - Timeout at ahci_command:153!
  1622. WARNING - Timeout at ahci_command:153!
  1623. WARNING - Timeout at ahci_command:153!
  1624. WARNING - Timeout at ahci_command:153!
  1625. WARNING - Timeout at ahci_command:153!
  1626. Memory KASLR using RDRAND RDTSC...
  1627. Poking KASLR using RDRAND RDTSC...
  1628. ÿ[ 1.708465] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
  1629. [ 1.717045] CPU: 2 PID: 1 Comm: swapper/0 Not tainted 5.4.21.a-gnu-1-hardened #1
  1630. [ 1.724741] Hardware name: ASUS H110M-E/M.2/H110M-E/M.2, BIOS 4.11-1360-g1ac2cc253b-dirty 02/28/2020
  1631. [ 1.734238] Call Trace:
  1632. [ 1.736782] dump_stack+0x66/0x88
  1633. [ 1.740226] panic+0x114/0x2d8
  1634. [ 1.743413] mount_block_root+0x4fb/0x50a
  1635. [ 1.747587] prepare_namespace+0x281/0x2de
  1636. [ 1.751855] ? rest_init+0xbf/0xbf
  1637. [ 1.755373] kernel_init+0xa/0x101
  1638. [ 1.758925] ret_from_fork+0x35/0x40
  1639. [ 1.762628] fbcon: Taking over console
  1640. [ 1.762660] Kernel Offset: 0x17000000 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffffbfffffff)
  1641. [ 1.777765] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) ]---
  1642.  
  1643.  
  1644. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  1645. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  1646. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  1647. CPU: AES supported, TXT NOT supported, VT supported
  1648. MCH: device id 590f (rev 06) is Kabylake-S
  1649. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  1650. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  1651. Timestamp - end of bootblock: 174678918
  1652. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  1653. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  1654. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1655. CBFS: Locating 'fallback/romstage'
  1656. CBFS: Found @ offset 80 size b284
  1657. Timestamp - starting to load romstage: 265102838
  1658. Timestamp - finished loading romstage: 282215139
  1659. BS: bootblock times (exec / console): total (unknown) / 67 ms
  1660.  
  1661.  
  1662. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  1663. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00000000
  1664. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  1665. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  1666. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  1667. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  1668. TCO_STS: 0000 0000
  1669. GEN_PMCON: e0a00200 00001a48
  1670. GBLRST_CAUSE: 00000000 00000000
  1671. prev_sleep_state 0
  1672. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1673. CBFS: Locating 'fspm.bin'
  1674. CBFS: Found @ offset 54dc0 size 63000
  1675. Timestamp - before RAM initialization: 516468764
  1676. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  1677. MRC: no data in 'RW_MRC_CACHE'
  1678. PRMRR disabled by config.
  1679. SPD @ 0x50
  1680. SPD: module type is DDR4
  1681. SPD: module part is PSD48G240082
  1682. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  1683. SPD: device width 16 bits, bus width 64 bits
  1684. SPD: module size is 8192 MB (per channel)
  1685. SPD @ 0x52
  1686. SPD: module type is DDR4
  1687. SPD: module part is CMK8GX4M1A2400C16
  1688. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  1689. SPD: device width 8 bits, bus width 64 bits
  1690. SPD: module size is 8192 MB (per channel)
  1691. SPD @ 0x00
  1692. SPD: module type is UNKNOWN
  1693. SPD: module part is
  1694. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  1695. SPD: device width -1 bits, bus width -1 bits
  1696. SPD @ 0x00
  1697. SPD: module type is UNKNOWN
  1698. SPD: module part is
  1699. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  1700. SPD: device width -1 bits, bus width -1 bits
  1701. Timestamp - calling FspMemoryInit: 2769614339
  1702. Timestamp - returning from FspMemoryInit: 164270236331
  1703. CBMEM:
  1704. IMD: root @ 0x7afff000 254 entries.
  1705. IMD: root @ 0x7affec00 62 entries.
  1706. External stage cache:
  1707. IMD: root @ 0x7b3ff000 254 entries.
  1708. IMD: root @ 0x7b3fec00 62 entries.
  1709. Timestamp - after RAM initialization: 164353773364
  1710. 2 DIMMs found
  1711. SMM Memory Map
  1712. SMRAM : 0x7b000000 0x800000
  1713. Subregion 0: 0x7b000000 0x200000
  1714. Subregion 1: 0x7b200000 0x200000
  1715. Subregion 2: 0x7b400000 0x400000
  1716. top_of_ram = 0x7b000000
  1717. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  1718. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  1719. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  1720. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1721. CBFS: Locating 'fallback/postcar'
  1722. CBFS: Found @ offset e6e00 size 5668
  1723. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  1724. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  1725. Processing 287 relocs. Offset value of 0x78bd0000
  1726. Timestamp - end of romstage: 164614229084
  1727. BS: romstage times (exec / console): total (unknown) / 224 ms
  1728.  
  1729.  
  1730. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  1731. Timestamp - start of postcar: 164687511763
  1732. Timestamp - end of postcar: 164702448811
  1733. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1734. CBFS: Locating 'fallback/ramstage'
  1735. CBFS: Found @ offset 3c000 size 17f37
  1736. Timestamp - starting to load ramstage: 164760232925
  1737. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  1738. Timestamp - starting LZMA decompress (ignore for x86): 164800944964
  1739. Timestamp - finished LZMA decompress (ignore for x86): 164856085043
  1740. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  1741. Processing 3860 relocs. Offset value of 0x79d0a000
  1742. Timestamp - finished loading ramstage: 164927302308
  1743. BS: postcar times (exec / console): total (unknown) / 67 ms
  1744.  
  1745.  
  1746. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  1747. Timestamp - start of ramstage: 165002313858
  1748. Normal boot.
  1749. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1750. CBFS: Locating 'cpu_microcode_blob.bin'
  1751. CBFS: Found @ offset b380 size 30c00
  1752. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  1753. Skip microcode update
  1754. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1755. CBFS: Locating 'fsps.bin'
  1756. CBFS: Found @ offset b8dc0 size 2e000
  1757. Detected 2 core, 4 thread CPU.
  1758. Setting up SMI for CPU
  1759. IED base = 0x7b400000
  1760. IED size = 0x00400000
  1761. Will perform SMM setup.
  1762. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  1763. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  1764. Processing 16 relocs. Offset value of 0x00030000
  1765. Attempting to start 3 APs
  1766. Waiting for 10ms after sending INIT.
  1767. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  1768. done.
  1769. AP: slot 1 apic_id 3.
  1770. AP: slot 2 apic_id 2.
  1771. Waiting for 2nd SIPI to complete...done.
  1772. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  1773. Processing 13 relocs. Offset value of 0x00038000
  1774. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  1775. Installing SMM handler to 0x7b000000
  1776. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  1777. Processing 103 relocs. Offset value of 0x7b010000
  1778. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  1779. Processing 13 relocs. Offset value of 0x7b008000
  1780. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  1781. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  1782. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  1783. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  1784. Clearing SMI status registers
  1785. SMI_STS: PM1
  1786. TMROF TCO_STS: SECOND_TO
  1787. New SMBASE 0x7b000000
  1788. In relocation handler: CPU 0
  1789. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  1790. Writing SMRR. base = 0x7b000006, mask=0xff800800
  1791. Relocation complete.
  1792. New SMBASE 0x7afff400
  1793. In relocation handler: CPU 3
  1794. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  1795. Writing SMRR. base = 0x7b000006, mask=0xff800800
  1796. Relocation complete.
  1797. New SMBASE 0x7afff800
  1798. In relocation handler: CPU 2
  1799. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  1800. Writing SMRR. base = 0x7b000006, mask=0xff800800
  1801. Relocation complete.
  1802. New SMBASE 0x7afffc00
  1803. In relocation handler: CPU 1
  1804. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  1805. Writing SMRR. base = 0x7b000006, mask=0xff800800
  1806. Relocation complete.
  1807. Initializing CPU #0
  1808. CPU: vendor Intel device 906e9
  1809. CPU: family 06, model 9e, stepping 09
  1810. Clearing out pending MCEs
  1811. Setting up local APIC...
  1812. apic_id: 0x00 done.
  1813. cpu: energy policy set to 6
  1814. Turbo is unavailable
  1815. Skip microcode update
  1816. CPU #0 initialized
  1817. Initializing CPU #3
  1818. Initializing CPU #1
  1819. Initializing CPU #2
  1820. CPU: vendor Intel device 906e9
  1821. CPU: family 06, model 9e, stepping 09
  1822. Clearing out pending MCEs
  1823. CPU: vendor Intel device 906e9
  1824. CPU: family 06, model 9e, stepping 09
  1825. CPU: vendor Intel device 906e9
  1826. CPU: family 06, model 9e, stepping 09
  1827. Clearing out pending MCEs
  1828. Clearing out pending MCEs
  1829. Setting up local APIC...
  1830. Setting up local APIC...
  1831. apic_id: 0x03 done.
  1832. Setting up local APIC...
  1833. apic_id: 0x01 done.
  1834. apic_id: 0x02 done.
  1835. cpu: energy policy set to 6
  1836. cpu: energy policy set to 6
  1837. Skip microcode update
  1838. CPU #1 initialized
  1839. Skip microcode update
  1840. CPU #2 initialized
  1841. cpu: energy policy set to 6
  1842. Skip microcode update
  1843. CPU #3 initialized
  1844. bsp_do_flight_plan done after 217 msecs.
  1845. Enabling SMIs.
  1846. Locking SMM.
  1847. IA32_FEATURE_CONTROL already locked; VMX status: enabled
  1848. IA32_FEATURE_CONTROL already locked; VMX status: enabled
  1849. IA32_FEATURE_CONTROL already locked
  1850. IA32_FEATURE_CONTROL already locked; VMX status: enabled
  1851. IA32_FEATURE_CONTROL already locked; VMX status: enabled
  1852. IA32_FEATURE_CONTROL already locked
  1853. IA32_FEATURE_CONTROL already locked
  1854. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 150 / 193 ms
  1855. IA32_FEATURE_CONTROL already locked
  1856. Timestamp - device enumeration: 166413567047
  1857. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1858. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1859. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1860. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1861. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1862. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1863. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1864. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1865. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1866. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1867. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1868. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1869. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1870. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1871. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1872. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1873. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1874. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1875. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1876. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1877. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1878. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1879. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1880. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1881. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1882. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1883. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1884. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1885. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1886. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1887. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1888. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1889. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1890. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1891. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1892. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1893. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1894. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1895. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1896. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1897. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1898. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1899. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1900. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1901. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1902. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1903. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1904. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1905. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1906. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1907. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1908. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1909. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1910. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1911. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1912. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1913. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1914. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1915. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1916. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1917. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1918. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1919. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1920. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1921. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1922. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1923. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1924. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1925. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1926. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1927. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1928. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1929. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1930. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1931. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1932. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1933. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1934. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1935. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1936. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1937. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1938. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1939. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1940. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1941. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1942. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1943. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  1944. Timestamp - calling FspSiliconInit: 168534809221
  1945.  €€€€€€þÿÿÿþÿÿÿÿþþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  1946.  
  1947. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  1948. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  1949. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  1950. CPU: AES supported, TXT NOT supported, VT supported
  1951. MCH: device id 590f (rev 06) is Kabylake-S
  1952. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  1953. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  1954. Timestamp - end of bootblock: 172372975
  1955. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  1956. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  1957. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1958. CBFS: Locating 'fallback/romstage'
  1959. CBFS: Found @ offset 80 size b284
  1960. Timestamp - starting to load romstage: 262713503
  1961. Timestamp - finished loading romstage: 279806730
  1962. BS: bootblock times (exec / console): total (unknown) / 67 ms
  1963.  
  1964.  
  1965. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  1966. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  1967. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  1968. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  1969. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  1970. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  1971. TCO_STS: 0000 0000
  1972. GEN_PMCON: e0810200 00001848
  1973. GBLRST_CAUSE: 00001000 00000000
  1974. prev_sleep_state 0
  1975. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  1976. CBFS: Locating 'fspm.bin'
  1977. CBFS: Found @ offset 54dc0 size 63000
  1978. Timestamp - before RAM initialization: 513814879
  1979. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  1980. MRC: no data in 'RW_MRC_CACHE'
  1981. PRMRR disabled by config.
  1982. SPD @ 0x50
  1983. SPD: module type is DDR4
  1984. SPD: module part is PSD48G240082
  1985. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  1986. SPD: device width 16 bits, bus width 64 bits
  1987. SPD: module size is 8192 MB (per channel)
  1988. SPD @ 0x52
  1989. SPD: module type is DDR4
  1990. SPD: module part is CMK8GX4M1A2400C16
  1991. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  1992. SPD: device width 8 bits, bus width 64 bits
  1993. SPD: module size is 8192 MB (per channel)
  1994. SPD @ 0x00
  1995. SPD: module type is UNKNOWN
  1996. SPD: module part is
  1997. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  1998. SPD: device width -1 bits, bus width -1 bits
  1999. SPD @ 0x00
  2000. SPD: module type is UNKNOWN
  2001. SPD: module part is
  2002. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2003. SPD: device width -1 bits, bus width -1 bits
  2004. Timestamp - calling FspMemoryInit: 2766917106
  2005.  
  2006.  
  2007. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  2008. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  2009. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  2010. CPU: AES supported, TXT NOT supported, VT supported
  2011. MCH: device id 590f (rev 06) is Kabylake-S
  2012. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  2013. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  2014. Timestamp - end of bootblock: 171655213
  2015. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  2016. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  2017. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2018. CBFS: Locating 'fallback/romstage'
  2019. CBFS: Found @ offset 80 size b284
  2020. Timestamp - starting to load romstage: 261420676
  2021. Timestamp - finished loading romstage: 278408036
  2022. BS: bootblock times (exec / console): total (unknown) / 67 ms
  2023.  
  2024.  
  2025. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  2026. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  2027. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  2028. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  2029. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  2030. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  2031. TCO_STS: 0000 0000
  2032. GEN_PMCON: e0210200 00001a48
  2033. GBLRST_CAUSE: 00001000 00000000
  2034. prev_sleep_state 0
  2035. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2036. CBFS: Locating 'fspm.bin'
  2037. CBFS: Found @ offset 54dc0 size 63000
  2038. Timestamp - before RAM initialization: 510935087
  2039. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  2040. MRC: no data in 'RW_MRC_CACHE'
  2041. PRMRR disabled by config.
  2042. SPD @ 0x50
  2043. SPD: module type is DDR4
  2044. SPD: module part is PSD48G240082
  2045. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  2046. SPD: device width 16 bits, bus width 64 bits
  2047. SPD: module size is 8192 MB (per channel)
  2048. SPD @ 0x52
  2049. SPD: module type is DDR4
  2050. SPD: module part is CMK8GX4M1A2400C16
  2051. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  2052. SPD: device width 8 bits, bus width 64 bits
  2053. SPD: module size is 8192 MB (per channel)
  2054. SPD @ 0x00
  2055. SPD: module type is UNKNOWN
  2056. SPD: module part is
  2057. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2058. SPD: device width -1 bits, bus width -1 bits
  2059. SPD @ 0x00
  2060. SPD: module type is UNKNOWN
  2061. SPD: module part is
  2062. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2063. SPD: device width -1 bits, bus width -1 bits
  2064. Timestamp - calling FspMemoryInit: 2764269965
  2065. Timestamp - returning from FspMemoryInit: 163230019708
  2066. CBMEM:
  2067. IMD: root @ 0x7afff000 254 entries.
  2068. IMD: root @ 0x7affec00 62 entries.
  2069. External stage cache:
  2070. IMD: root @ 0x7b3ff000 254 entries.
  2071. IMD: root @ 0x7b3fec00 62 entries.
  2072. Timestamp - after RAM initialization: 163313503275
  2073. 2 DIMMs found
  2074. SMM Memory Map
  2075. SMRAM : 0x7b000000 0x800000
  2076. Subregion 0: 0x7b000000 0x200000
  2077. Subregion 1: 0x7b200000 0x200000
  2078. Subregion 2: 0x7b400000 0x400000
  2079. top_of_ram = 0x7b000000
  2080. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  2081. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  2082. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  2083. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2084. CBFS: Locating 'fallback/postcar'
  2085. CBFS: Found @ offset e6e00 size 5668
  2086. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  2087. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  2088. Processing 287 relocs. Offset value of 0x78bd0000
  2089. Timestamp - end of romstage: 163573748759
  2090. BS: romstage times (exec / console): total (unknown) / 223 ms
  2091.  
  2092.  
  2093. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  2094. Timestamp - start of postcar: 163647007541
  2095. Timestamp - end of postcar: 163661942515
  2096. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2097. CBFS: Locating 'fallback/ramstage'
  2098. CBFS: Found @ offset 3c000 size 17f37
  2099. Timestamp - starting to load ramstage: 163719677543
  2100. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  2101. Timestamp - starting LZMA decompress (ignore for x86): 163760378444
  2102. Timestamp - finished LZMA decompress (ignore for x86): 163815247832
  2103. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  2104. Processing 3860 relocs. Offset value of 0x79d0a000
  2105. Timestamp - finished loading ramstage: 163886437879
  2106. BS: postcar times (exec / console): total (unknown) / 67 ms
  2107.  
  2108.  
  2109. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  2110. Timestamp - start of ramstage: 163961414641
  2111. Normal boot.
  2112. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2113. CBFS: Locating 'cpu_microcode_blob.bin'
  2114. CBFS: Found @ offset b380 size 30c00
  2115. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  2116. Skip microcode update
  2117. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2118. CBFS: Locating 'fsps.bin'
  2119. CBFS: Found @ offset b8dc0 size 2e000
  2120. Detected 2 core, 4 thread CPU.
  2121. Setting up SMI for CPU
  2122. IED base = 0x7b400000
  2123. IED size = 0x00400000
  2124. Will perform SMM setup.
  2125. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  2126. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  2127. Processing 16 relocs. Offset value of 0x00030000
  2128. Attempting to start 3 APs
  2129. Waiting for 10ms after sending INIT.
  2130. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  2131. done.
  2132. AP: slot 2 apic_id 2.
  2133. AP: slot 1 apic_id 3.
  2134. Waiting for 2nd SIPI to complete...done.
  2135. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  2136. Processing 13 relocs. Offset value of 0x00038000
  2137. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  2138. Installing SMM handler to 0x7b000000
  2139. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  2140. Processing 103 relocs. Offset value of 0x7b010000
  2141. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  2142. Processing 13 relocs. Offset value of 0x7b008000
  2143. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  2144. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  2145. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  2146. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  2147. Clearing SMI status registers
  2148. SMI_STS: PM1
  2149. TMROF TCO_STS: SECOND_TO
  2150. New SMBASE 0x7b000000
  2151. In relocation handler: CPU 0
  2152. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  2153. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2154. Relocation complete.
  2155. New SMBASE 0x7afff400
  2156. In relocation handler: CPU 3
  2157. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  2158. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2159. Relocation complete.
  2160. New SMBASE 0x7afffc00
  2161. In relocation handler: CPU 1
  2162. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  2163. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2164. Relocation complete.
  2165. New SMBASE 0x7afff800
  2166. In relocation handler: CPU 2
  2167. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  2168. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2169. Relocation complete.
  2170. Initializing CPU #0
  2171. CPU: vendor Intel device 906e9
  2172. CPU: family 06, model 9e, stepping 09
  2173. Clearing out pending MCEs
  2174. Setting up local APIC...
  2175. apic_id: 0x00 done.
  2176. cpu: energy policy set to 6
  2177. Turbo is unavailable
  2178. Skip microcode update
  2179. CPU #0 initialized
  2180. Initializing CPU #3
  2181. Initializing CPU #1
  2182. Initializing CPU #2
  2183. CPU: vendor Intel device 906e9
  2184. CPU: family 06, model 9e, stepping 09
  2185. CPU: vendor Intel device 906e9
  2186. CPU: family 06, model 9e, stepping 09
  2187. Clearing out pending MCEs
  2188. Clearing out pending MCEs
  2189. Setting up local APIC...
  2190. CPU: vendor Intel device 906e9
  2191. CPU: family 06, model 9e, stepping 09
  2192. Clearing out pending MCEs
  2193. Setting up local APIC...
  2194. Setting up local APIC...
  2195. apic_id: 0x02 done.
  2196. apic_id: 0x03 done.
  2197. cpu: energy policy set to 6
  2198. cpu: energy policy set to 6
  2199. Skip microcode update
  2200. CPU #2 initialized
  2201. Skip microcode update
  2202. CPU #1 initialized
  2203. apic_id: 0x01 done.
  2204. cpu: energy policy set to 6
  2205. Skip microcode update
  2206. CPU #3 initialized
  2207. bsp_do_flight_plan done after 217 msecs.
  2208. Enabling SMIs.
  2209. Locking SMM.
  2210. VMX status: enabled
  2211. VMX status: enabled
  2212. IA32_FEATURE_CONTROL status: locked
  2213. VMX status: enabled
  2214. VMX status: enabled
  2215. IA32_FEATURE_CONTROL status: locked
  2216. IA32_FEATURE_CONTROL status: locked
  2217. IA32_FEATURE_CONTROL status: locked
  2218. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 140 / 190 ms
  2219. Timestamp - device enumeration: 165332907510
  2220. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2221. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2222. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2223. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2224. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2225. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2226. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2227. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2228. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2229. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2230. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2231. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2232. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2233. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2234. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2235. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2236. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2237. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2238. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2239. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2240. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2241. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2242. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2243. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2244. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2245. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2246. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2247. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2248. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2249. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2250. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2251. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2252. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2253. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2254. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2255. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2256. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2257. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2258. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2259. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2260. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2261. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2262. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2263. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2264. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2265. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2266. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2267. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2268. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2269. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2270. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2271. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2272. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2273. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2274. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2275. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2276. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2277. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2278. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2279. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2280. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2281. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2282. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2283. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2284. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2285. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2286. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2287. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2288. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2289. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2290. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2291. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2292. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2293. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2294. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2295. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2296. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2297. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2298. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2299. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2300. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2301. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2302. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2303. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2304. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2305. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2306. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2307. Timestamp - calling FspSiliconInit: 167428973533
  2308. @€€€€€€€€€þÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿþþÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿþþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  2309.  
  2310. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  2311. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  2312. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  2313. CPU: AES supported, TXT NOT supported, VT supported
  2314. MCH: device id 590f (rev 06) is Kabylake-S
  2315. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  2316. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  2317. Timestamp - end of bootblock: 172516839
  2318. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  2319. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  2320. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2321. CBFS: Locating 'fallback/romstage'
  2322. CBFS: Found @ offset 80 size b284
  2323. Timestamp - starting to load romstage: 262839635
  2324. Timestamp - finished loading romstage: 279942589
  2325. BS: bootblock times (exec / console): total (unknown) / 67 ms
  2326.  
  2327.  
  2328. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  2329. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  2330. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  2331. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  2332. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  2333. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  2334. TCO_STS: 0000 0000
  2335. GEN_PMCON: e0810200 00001848
  2336. GBLRST_CAUSE: 00001000 00000000
  2337. prev_sleep_state 0
  2338. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2339. CBFS: Locating 'fspm.bin'
  2340. CBFS: Found @ offset 54dc0 size 63000
  2341. Timestamp - before RAM initialization: 513832943
  2342. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  2343. MRC: no data in 'RW_MRC_CACHE'
  2344. PRMRR disabled by config.
  2345. SPD @ 0x50
  2346. SPD: module type is DDR4
  2347. SPD: module part is PSD48G240082
  2348. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  2349. SPD: device width 16 bits, bus width 64 bits
  2350. SPD: module size is 8192 MB (per channel)
  2351. SPD @ 0x52
  2352. SPD: module type is DDR4
  2353. SPD: module part is CMK8GX4M1A2400C16
  2354. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  2355. SPD: device width 8 bits, bus width 64 bits
  2356. SPD: module size is 8192 MB (per channel)
  2357. SPD @ 0x00
  2358. SPD: module type is UNKNOWN
  2359. SPD: module part is
  2360. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2361. SPD: device width -1 bits, bus width -1 bits
  2362. SPD @ 0x00
  2363. SPD: module type is UNKNOWN
  2364. SPD: module part is
  2365. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2366. SPD: device width -1 bits, bus width -1 bits
  2367. Timestamp - calling FspMemoryInit: 2769225936
  2368.  
  2369.  
  2370. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  2371. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  2372. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  2373. CPU: AES supported, TXT NOT supported, VT supported
  2374. MCH: device id 590f (rev 06) is Kabylake-S
  2375. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  2376. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  2377. Timestamp - end of bootblock: 171782315
  2378. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  2379. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  2380. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2381. CBFS: Locating 'fallback/romstage'
  2382. CBFS: Found @ offset 80 size b284
  2383. Timestamp - starting to load romstage: 261520698
  2384. Timestamp - finished loading romstage: 278508016
  2385. BS: bootblock times (exec / console): total (unknown) / 67 ms
  2386.  
  2387.  
  2388. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  2389. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  2390. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  2391. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  2392. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  2393. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  2394. TCO_STS: 0000 0000
  2395. GEN_PMCON: e0210200 00001a48
  2396. GBLRST_CAUSE: 00001000 00000000
  2397. prev_sleep_state 0
  2398. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2399. CBFS: Locating 'fspm.bin'
  2400. CBFS: Found @ offset 54dc0 size 63000
  2401. Timestamp - before RAM initialization: 511037200
  2402. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  2403. MRC: no data in 'RW_MRC_CACHE'
  2404. PRMRR disabled by config.
  2405. SPD @ 0x50
  2406. SPD: module type is DDR4
  2407. SPD: module part is PSD48G240082
  2408. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  2409. SPD: device width 16 bits, bus width 64 bits
  2410. SPD: module size is 8192 MB (per channel)
  2411. SPD @ 0x52
  2412. SPD: module type is DDR4
  2413. SPD: module part is CMK8GX4M1A2400C16
  2414. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  2415. SPD: device width 8 bits, bus width 64 bits
  2416. SPD: module size is 8192 MB (per channel)
  2417. SPD @ 0x00
  2418. SPD: module type is UNKNOWN
  2419. SPD: module part is
  2420. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2421. SPD: device width -1 bits, bus width -1 bits
  2422. SPD @ 0x00
  2423. SPD: module type is UNKNOWN
  2424. SPD: module part is
  2425. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2426. SPD: device width -1 bits, bus width -1 bits
  2427. Timestamp - calling FspMemoryInit: 2766028428
  2428. Timestamp - returning from FspMemoryInit: 162173349994
  2429. CBMEM:
  2430. IMD: root @ 0x7afff000 254 entries.
  2431. IMD: root @ 0x7affec00 62 entries.
  2432. External stage cache:
  2433. IMD: root @ 0x7b3ff000 254 entries.
  2434. IMD: root @ 0x7b3fec00 62 entries.
  2435. Timestamp - after RAM initialization: 162257244991
  2436. 2 DIMMs found
  2437. SMM Memory Map
  2438. SMRAM : 0x7b000000 0x800000
  2439. Subregion 0: 0x7b000000 0x200000
  2440. Subregion 1: 0x7b200000 0x200000
  2441. Subregion 2: 0x7b400000 0x400000
  2442. top_of_ram = 0x7b000000
  2443. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  2444. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  2445. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  2446. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2447. CBFS: Locating 'fallback/postcar'
  2448. CBFS: Found @ offset e6e00 size 5668
  2449. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  2450. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  2451. Processing 287 relocs. Offset value of 0x78bd0000
  2452. Timestamp - end of romstage: 162518105879
  2453. BS: romstage times (exec / console): total (unknown) / 224 ms
  2454.  
  2455.  
  2456. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  2457. Timestamp - start of postcar: 162591360717
  2458. Timestamp - end of postcar: 162606299164
  2459. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2460. CBFS: Locating 'fallback/ramstage'
  2461. CBFS: Found @ offset 3c000 size 17f37
  2462. Timestamp - starting to load ramstage: 162664096368
  2463. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  2464. Timestamp - starting LZMA decompress (ignore for x86): 162704790221
  2465. Timestamp - finished LZMA decompress (ignore for x86): 162759734893
  2466. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  2467. Processing 3860 relocs. Offset value of 0x79d0a000
  2468. Timestamp - finished loading ramstage: 162830905128
  2469. BS: postcar times (exec / console): total (unknown) / 67 ms
  2470.  
  2471.  
  2472. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  2473. Timestamp - start of ramstage: 162905883416
  2474. Normal boot.
  2475. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2476. CBFS: Locating 'cpu_microcode_blob.bin'
  2477. CBFS: Found @ offset b380 size 30c00
  2478. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  2479. Skip microcode update
  2480. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2481. CBFS: Locating 'fsps.bin'
  2482. CBFS: Found @ offset b8dc0 size 2e000
  2483. Detected 2 core, 4 thread CPU.
  2484. Setting up SMI for CPU
  2485. IED base = 0x7b400000
  2486. IED size = 0x00400000
  2487. Will perform SMM setup.
  2488. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  2489. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  2490. Processing 16 relocs. Offset value of 0x00030000
  2491. Attempting to start 3 APs
  2492. Waiting for 10ms after sending INIT.
  2493. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  2494. done.
  2495. AP: slot 1 apic_id 3.
  2496. AP: slot 2 apic_id 2.
  2497. Waiting for 2nd SIPI to complete...done.
  2498. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  2499. Processing 13 relocs. Offset value of 0x00038000
  2500. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  2501. Installing SMM handler to 0x7b000000
  2502. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  2503. Processing 103 relocs. Offset value of 0x7b010000
  2504. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  2505. Processing 13 relocs. Offset value of 0x7b008000
  2506. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  2507. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  2508. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  2509. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  2510. Clearing SMI status registers
  2511. SMI_STS: PM1
  2512. TMROF TCO_STS: SECOND_TO
  2513. New SMBASE 0x7b000000
  2514. In relocation handler: CPU 0
  2515. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  2516. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2517. Relocation complete.
  2518. New SMBASE 0x7afff400
  2519. In relocation handler: CPU 3
  2520. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  2521. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2522. Relocation complete.
  2523. New SMBASE 0x7afffc00
  2524. In relocation handler: CPU 1
  2525. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  2526. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2527. Relocation complete.
  2528. New SMBASE 0x7afff800
  2529. In relocation handler: CPU 2
  2530. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  2531. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2532. Relocation complete.
  2533. Initializing CPU #0
  2534. CPU: vendor Intel device 906e9
  2535. CPU: family 06, model 9e, stepping 09
  2536. Clearing out pending MCEs
  2537. Setting up local APIC...
  2538. apic_id: 0x00 done.
  2539. cpu: energy policy set to 6
  2540. Turbo is unavailable
  2541. Skip microcode update
  2542. CPU #0 initialized
  2543. Initializing CPU #3
  2544. Initializing CPU #2
  2545. Initializing CPU #1
  2546. CPU: vendor Intel device 906e9
  2547. CPU: family 06, model 9e, stepping 09
  2548. CPU: vendor Intel device 906e9
  2549. CPU: family 06, model 9e, stepping 09
  2550. Clearing out pending MCEs
  2551. Clearing out pending MCEs
  2552. Setting up local APIC...
  2553. CPU: vendor Intel device 906e9
  2554. CPU: family 06, model 9e, stepping 09
  2555. Clearing out pending MCEs
  2556. Setting up local APIC...
  2557. Setting up local APIC...
  2558. apic_id: 0x02 done.
  2559. apic_id: 0x03 done.
  2560. cpu: energy policy set to 6
  2561. cpu: energy policy set to 6
  2562. Skip microcode update
  2563. CPU #2 initialized
  2564. Skip microcode update
  2565. CPU #1 initialized
  2566. apic_id: 0x01 done.
  2567. cpu: energy policy set to 6
  2568. Skip microcode update
  2569. CPU #3 initialized
  2570. bsp_do_flight_plan done after 217 msecs.
  2571. Enabling SMIs.
  2572. Locking SMM.
  2573. VMX status: enabled
  2574. VMX status: enabled
  2575. IA32_FEATURE_CONTROL status: locked
  2576. VMX status: enabled
  2577. VMX status: enabled
  2578. IA32_FEATURE_CONTROL status: locked
  2579. IA32_FEATURE_CONTROL status: locked
  2580. IA32_FEATURE_CONTROL status: locked
  2581. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 140 / 190 ms
  2582. Timestamp - device enumeration: 164277331043
  2583. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2584. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2585. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2586. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2587. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2588. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2589. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2590. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2591. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2592. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2593. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2594. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2595. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2596. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2597. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2598. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2599. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2600. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2601. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2602. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2603. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2604. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2605. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2606. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2607. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2608. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2609. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2610. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2611. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2612. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2613. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2614. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2615. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2616. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2617. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2618. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2619. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2620. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2621. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2622. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2623. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2624. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2625. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2626. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2627. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2628. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2629. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2630. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2631. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2632. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2633. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2634. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2635. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2636. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2637. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2638. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2639. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2640. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2641. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2642. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2643. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2644. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2645. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2646. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2647. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2648. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2649. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2650. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2651. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2652. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2653. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2654. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2655. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2656. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2657. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2658. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2659. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2660. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2661. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2662. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2663. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2664. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2665. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2666. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2667. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2668. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2669. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2670. Timestamp - calling FspSiliconInit: 166370962387
  2671. 0 ` €€€€€€€€€€€€€€€€€€ÿþÿÿÿÿÿÿÿþÿÿÿÿÿþþþÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ>
  2672.  
  2673. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  2674. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  2675. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  2676. CPU: AES supported, TXT NOT supported, VT supported
  2677. MCH: device id 590f (rev 06) is Kabylake-S
  2678. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  2679. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  2680. Timestamp - end of bootblock: 172453988
  2681. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  2682. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  2683. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2684. CBFS: Locating 'fallback/romstage'
  2685. CBFS: Found @ offset 80 size b284
  2686. Timestamp - starting to load romstage: 262752279
  2687. Timestamp - finished loading romstage: 279840625
  2688. BS: bootblock times (exec / console): total (unknown) / 67 ms
  2689.  
  2690.  
  2691. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  2692. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  2693. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  2694. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  2695. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  2696. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  2697. TCO_STS: 0000 0000
  2698. GEN_PMCON: e0810200 00001848
  2699. GBLRST_CAUSE: 00001000 00000000
  2700. prev_sleep_state 0
  2701. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2702. CBFS: Locating 'fspm.bin'
  2703. CBFS: Found @ offset 54dc0 size 63000
  2704. Timestamp - before RAM initialization: 513851589
  2705. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  2706. MRC: no data in 'RW_MRC_CACHE'
  2707. PRMRR disabled by config.
  2708. SPD @ 0x50
  2709. SPD: module type is DDR4
  2710. SPD: module part is PSD48G240082
  2711. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  2712. SPD: device width 16 bits, bus width 64 bits
  2713. SPD: module size is 8192 MB (per channel)
  2714. SPD @ 0x52
  2715. SPD: module type is DDR4
  2716. SPD: module part is CMK8GX4M1A2400C16
  2717. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  2718. SPD: device width 8 bits, bus width 64 bits
  2719. SPD: module size is 8192 MB (per channel)
  2720. SPD @ 0x00
  2721. SPD: module type is UNKNOWN
  2722. SPD: module part is
  2723. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2724. SPD: device width -1 bits, bus width -1 bits
  2725. SPD @ 0x00
  2726. SPD: module type is UNKNOWN
  2727. SPD: module part is
  2728. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2729. SPD: device width -1 bits, bus width -1 bits
  2730. Timestamp - calling FspMemoryInit: 2768927626
  2731.  
  2732.  
  2733. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  2734. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  2735. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  2736. CPU: AES supported, TXT NOT supported, VT supported
  2737. MCH: device id 590f (rev 06) is Kabylake-S
  2738. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  2739. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  2740. Timestamp - end of bootblock: 171422825
  2741. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  2742. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  2743. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2744. CBFS: Locating 'fallback/romstage'
  2745. CBFS: Found @ offset 80 size b284
  2746. Timestamp - starting to load romstage: 261171803
  2747. Timestamp - finished loading romstage: 278149263
  2748. BS: bootblock times (exec / console): total (unknown) / 67 ms
  2749.  
  2750.  
  2751. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  2752. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  2753. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  2754. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  2755. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  2756. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  2757. TCO_STS: 0000 0000
  2758. GEN_PMCON: e0210200 00001a48
  2759. GBLRST_CAUSE: 00001000 00000000
  2760. prev_sleep_state 0
  2761. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2762. CBFS: Locating 'fspm.bin'
  2763. CBFS: Found @ offset 54dc0 size 63000
  2764. Timestamp - before RAM initialization: 510609352
  2765. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  2766. MRC: no data in 'RW_MRC_CACHE'
  2767. PRMRR disabled by config.
  2768. SPD @ 0x50
  2769. SPD: module type is DDR4
  2770. SPD: module part is PSD48G240082
  2771. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  2772. SPD: device width 16 bits, bus width 64 bits
  2773. SPD: module size is 8192 MB (per channel)
  2774. SPD @ 0x52
  2775. SPD: module type is DDR4
  2776. SPD: module part is CMK8GX4M1A2400C16
  2777. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  2778. SPD: device width 8 bits, bus width 64 bits
  2779. SPD: module size is 8192 MB (per channel)
  2780. SPD @ 0x00
  2781. SPD: module type is UNKNOWN
  2782. SPD: module part is
  2783. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2784. SPD: device width -1 bits, bus width -1 bits
  2785. SPD @ 0x00
  2786. SPD: module type is UNKNOWN
  2787. SPD: module part is
  2788. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  2789. SPD: device width -1 bits, bus width -1 bits
  2790. Timestamp - calling FspMemoryInit: 2765033133
  2791. Timestamp - returning from FspMemoryInit: 163583104818
  2792. CBMEM:
  2793. IMD: root @ 0x7afff000 254 entries.
  2794. IMD: root @ 0x7affec00 62 entries.
  2795. External stage cache:
  2796. IMD: root @ 0x7b3ff000 254 entries.
  2797. IMD: root @ 0x7b3fec00 62 entries.
  2798. Timestamp - after RAM initialization: 163666405374
  2799. 2 DIMMs found
  2800. SMM Memory Map
  2801. SMRAM : 0x7b000000 0x800000
  2802. Subregion 0: 0x7b000000 0x200000
  2803. Subregion 1: 0x7b200000 0x200000
  2804. Subregion 2: 0x7b400000 0x400000
  2805. top_of_ram = 0x7b000000
  2806. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  2807. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  2808. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  2809. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2810. CBFS: Locating 'fallback/postcar'
  2811. CBFS: Found @ offset e6e00 size 5668
  2812. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  2813. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  2814. Processing 287 relocs. Offset value of 0x78bd0000
  2815. Timestamp - end of romstage: 163926598074
  2816. BS: romstage times (exec / console): total (unknown) / 224 ms
  2817.  
  2818.  
  2819. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  2820. Timestamp - start of postcar: 163999832489
  2821. Timestamp - end of postcar: 164014767171
  2822. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2823. CBFS: Locating 'fallback/ramstage'
  2824. CBFS: Found @ offset 3c000 size 17f37
  2825. Timestamp - starting to load ramstage: 164072484578
  2826. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  2827. Timestamp - starting LZMA decompress (ignore for x86): 164113176026
  2828. Timestamp - finished LZMA decompress (ignore for x86): 164168059447
  2829. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  2830. Processing 3860 relocs. Offset value of 0x79d0a000
  2831. Timestamp - finished loading ramstage: 164239294266
  2832. BS: postcar times (exec / console): total (unknown) / 67 ms
  2833.  
  2834.  
  2835. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  2836. Timestamp - start of ramstage: 164314261661
  2837. Normal boot.
  2838. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2839. CBFS: Locating 'cpu_microcode_blob.bin'
  2840. CBFS: Found @ offset b380 size 30c00
  2841. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  2842. Skip microcode update
  2843. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  2844. CBFS: Locating 'fsps.bin'
  2845. CBFS: Found @ offset b8dc0 size 2e000
  2846. Detected 2 core, 4 thread CPU.
  2847. Setting up SMI for CPU
  2848. IED base = 0x7b400000
  2849. IED size = 0x00400000
  2850. Will perform SMM setup.
  2851. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  2852. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  2853. Processing 16 relocs. Offset value of 0x00030000
  2854. Attempting to start 3 APs
  2855. Waiting for 10ms after sending INIT.
  2856. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  2857. AP: slot 1 apic_id 3.
  2858. AP: slot 2 apic_id 2.
  2859. done.
  2860. Waiting for 2nd SIPI to complete...done.
  2861. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  2862. Processing 13 relocs. Offset value of 0x00038000
  2863. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  2864. Installing SMM handler to 0x7b000000
  2865. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  2866. Processing 103 relocs. Offset value of 0x7b010000
  2867. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  2868. Processing 13 relocs. Offset value of 0x7b008000
  2869. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  2870. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  2871. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  2872. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  2873. Clearing SMI status registers
  2874. SMI_STS: PM1
  2875. TMROF TCO_STS: SECOND_TO
  2876. New SMBASE 0x7b000000
  2877. In relocation handler: CPU 0
  2878. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  2879. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2880. Relocation complete.
  2881. New SMBASE 0x7afff400
  2882. In relocation handler: CPU 3
  2883. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  2884. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2885. Relocation complete.
  2886. New SMBASE 0x7afffc00
  2887. In relocation handler: CPU 1
  2888. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  2889. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2890. Relocation complete.
  2891. New SMBASE 0x7afff800
  2892. In relocation handler: CPU 2
  2893. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  2894. Writing SMRR. base = 0x7b000006, mask=0xff800800
  2895. Relocation complete.
  2896. Initializing CPU #0
  2897. CPU: vendor Intel device 906e9
  2898. CPU: family 06, model 9e, stepping 09
  2899. Clearing out pending MCEs
  2900. Setting up local APIC...
  2901. apic_id: 0x00 done.
  2902. cpu: energy policy set to 6
  2903. Turbo is unavailable
  2904. Skip microcode update
  2905. CPU #0 initialized
  2906. Initializing CPU #3
  2907. Initializing CPU #2
  2908. Initializing CPU #1
  2909. CPU: vendor Intel device 906e9
  2910. CPU: family 06, model 9e, stepping 09
  2911. CPU: vendor Intel device 906e9
  2912. CPU: family 06, model 9e, stepping 09
  2913. Clearing out pending MCEs
  2914. Clearing out pending MCEs
  2915. Setting up local APIC...
  2916. Setting up local APIC...
  2917. CPU: vendor Intel device 906e9
  2918. CPU: family 06, model 9e, stepping 09
  2919. Clearing out pending MCEs
  2920. apic_id: 0x02 done.
  2921. apic_id: 0x03 done.
  2922. cpu: energy policy set to 6
  2923. cpu: energy policy set to 6
  2924. Skip microcode update
  2925. CPU #2 initialized
  2926. Skip microcode update
  2927. CPU #1 initialized
  2928. Setting up local APIC...
  2929. apic_id: 0x01 done.
  2930. cpu: energy policy set to 6
  2931. Skip microcode update
  2932. CPU #3 initialized
  2933. bsp_do_flight_plan done after 217 msecs.
  2934. Enabling SMIs.
  2935. Locking SMM.
  2936. VMX status: enabled
  2937. VMX status: enabled
  2938. IA32_FEATURE_CONTROL status: locked
  2939. VMX status: enabled
  2940. VMX status: enabled
  2941. IA32_FEATURE_CONTROL status: locked
  2942. IA32_FEATURE_CONTROL status: locked
  2943. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 140 / 190 ms
  2944. IA32_FEATURE_CONTROL status: locked
  2945. Timestamp - device enumeration: 165673161192
  2946. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2947. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2948. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2949. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2950. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2951. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2952. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2953. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2954. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2955. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2956. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2957. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2958. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2959. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2960. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2961. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2962. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2963. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2964. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2965. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2966. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2967. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2968. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2969. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2970. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2971. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2972. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2973. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2974. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2975. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2976. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2977. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2978. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2979. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2980. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2981. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2982. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2983. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2984. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2985. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2986. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2987. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2988. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2989. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2990. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2991. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2992. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2993. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2994. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2995. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2996. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2997. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2998. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  2999. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3000. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3001. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3002. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3003. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3004. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3005. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3006. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3007. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3008. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3009. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3010. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3011. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3012. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3013. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3014. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3015. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3016. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3017. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3018. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3019. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3020. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3021. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3022. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3023. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3024. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3025. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3026. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3027. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3028. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3029. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3030. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3031. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3032. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  3033. Timestamp - calling FspSiliconInit: 167793273636
  3034. Timestamp - returning from FspSiliconInit: 167891180772
  3035. ITSS IRQ Polarities Before:
  3036. IPC0: 0x00ff4000
  3037. IPC1: 0x00000007
  3038. IPC2: 0x00000000
  3039. IPC3: 0x00000000
  3040. ITSS IRQ Polarities After:
  3041. IPC0: 0x00ff4000
  3042. IPC1: 0x00000007
  3043. IPC2: 0x00000000
  3044. IPC3: 0x00000000
  3045. Found PCIe Root Port #5 at PCI: 00:1c.0.
  3046. Found PCIe Root Port #8 at PCI: 00:1c.7.
  3047. Found PCIe Root Port #9 at PCI: 00:1d.0.
  3048. pcie_rp_update_dev: Couldn't find PCIe Root Port #1 (originally PCI: 00:1c.0) which was enabled in devicetree, removing.
  3049. Remapping PCIe Root Port #5 from PCI: 00:1c.4 to new function number 0.
  3050. BS: BS_DEV_INIT_CHIPS run times (exec / console): 28 / 594 ms
  3051. Enumerating buses...
  3052. Root Device scanning...
  3053. CPU_CLUSTER: 0 enabled
  3054. DOMAIN: 0000 enabled
  3055. DOMAIN: 0000 scanning...
  3056. PCI: pci_scan_bus for bus 00
  3057. PCI: 00:00.0 [8086/590f] enabled
  3058. PCI: 00:01.0 subordinate bus PCI Express
  3059. PCI: 00:01.0 [8086/1901] enabled
  3060. PCI: 00:02.0 [8086/5912] enabled
  3061. PCI: 00:04.0 [8086/1903] enabled
  3062. PCI: 00:14.0 [8086/a12f] enabled
  3063. PCI: 00:14.2 [8086/a131] enabled
  3064. PCI: 00:16.0 [8086/a13a] enabled
  3065. PCI: 00:17.0 [8086/a102] enabled
  3066. PCI: 00:1c.0 [8086/a114] enabled
  3067. PCI: 00:1c.7 [8086/a117] enabled
  3068. PCI: 00:1d.0 [8086/a118] enabled
  3069. PCI: 00:1f.0 [8086/a143] enabled
  3070. PCI: 00:1f.1 [8086/a120] enabled
  3071. PCI: 00:1f.2 [8086/a121] enabled
  3072. PCI: 00:1f.3 [8086/a170] enabled
  3073. PCI: 00:1f.4 [8086/a123] enabled
  3074. PCI: 00:1f.5 [8086/a124] enabled
  3075. PCI: Leftover static devices:
  3076. PCI: 00:14.1
  3077. PCI: 00:15.0
  3078. PCI: 00:15.1
  3079. PCI: 00:15.2
  3080. PCI: 00:15.3
  3081. PCI: 00:16.1
  3082. PCI: 00:16.2
  3083. PCI: 00:16.3
  3084. PCI: 00:16.4
  3085. PCI: 00:19.0
  3086. PCI: 00:19.1
  3087. PCI: 00:19.2
  3088. PCI: 00:1e.0
  3089. PCI: 00:1e.1
  3090. PCI: 00:1e.2
  3091. PCI: 00:1e.3
  3092. PCI: 00:1e.4
  3093. PCI: 00:1e.5
  3094. PCI: 00:1e.6
  3095. PCI: 00:1f.6
  3096. PCI: Check your devicetree.cb.
  3097. PCI: 00:01.0 scanning...
  3098. PCI: pci_scan_bus for bus 01
  3099. PCI: 01:00.0 [10de/1d01] enabled
  3100. PCI: 01:00.1 [10de/0fb8] enabled
  3101. Enabling Common Clock Configuration
  3102. ASPM: Enabled L0s and L1
  3103. PCIe: Max_Payload_Size adjusted to 256
  3104. Enabling Common Clock Configuration
  3105. ASPM: Enabled L0s and L1
  3106. PCIe: Max_Payload_Size adjusted to 256
  3107. scan_bus: bus PCI: 00:01.0 finished in 28 msecs
  3108. PCI: 00:02.0 scanning...
  3109. scan_bus: bus PCI: 00:02.0 finished in 0 msecs
  3110. PCI: 00:14.0 scanning...
  3111. scan_bus: bus PCI: 00:14.0 finished in 0 msecs
  3112. PCI: 00:1c.0 scanning...
  3113. PCI: pci_scan_bus for bus 02
  3114. scan_bus: bus PCI: 00:1c.0 finished in 2 msecs
  3115. PCI: 00:1c.7 scanning...
  3116. PCI: pci_scan_bus for bus 03
  3117. PCI: 03:00.0 [10ec/8168] enabled
  3118. Enabling Common Clock Configuration
  3119. ASPM: Enabled L1
  3120. PCIe: Max_Payload_Size adjusted to 128
  3121. scan_bus: bus PCI: 00:1c.7 finished in 14 msecs
  3122. PCI: 00:1d.0 scanning...
  3123. PCI: pci_scan_bus for bus 04
  3124. scan_bus: bus PCI: 00:1d.0 finished in 2 msecs
  3125. PCI: 00:1f.0 scanning...
  3126. PNP: 002e.2 enabled
  3127. PNP: 002e.5 enabled
  3128. PNP: 002e.6 disabled
  3129. PNP: 002e.7 disabled
  3130. PNP: 002e.107 disabled
  3131. PNP: 002e.8 disabled
  3132. PNP: 002e.108 disabled
  3133. PNP: 002e.308 disabled
  3134. PNP: 002e.408 disabled
  3135. PNP: 002e.9 disabled
  3136. PNP: 002e.109 disabled
  3137. PNP: 002e.209 disabled
  3138. PNP: 002e.309 disabled
  3139. PNP: 002e.a enabled
  3140. PNP: 002e.b disabled
  3141. PNP: 002e.d disabled
  3142. PNP: 002e.e disabled
  3143. PNP: 002e.f disabled
  3144. PNP: 002e.14 disabled
  3145. PNP: 002e.16 disabled
  3146. PNP: 002e.116 disabled
  3147. PNP: 002e.316 disabled
  3148. PNP: 002e.416 disabled
  3149. PNP: 002e.516 disabled
  3150. PNP: 002e.616 disabled
  3151. PNP: 002e.716 disabled
  3152. PNP: 002e.207 enabled
  3153. PNP: 002e.11 enabled
  3154. PNP: 002e.12 enabled
  3155. PNP: 002e.15 enabled
  3156. scan_bus: bus PCI: 00:1f.0 finished in 63 msecs
  3157. PCI: 00:1f.2 scanning...
  3158. scan_bus: bus PCI: 00:1f.2 finished in 0 msecs
  3159. PCI: 00:1f.4 scanning...
  3160. scan_bus: bus PCI: 00:1f.4 finished in 0 msecs
  3161. scan_bus: bus DOMAIN: 0000 finished in 264 msecs
  3162. scan_bus: bus Root Device finished in 276 msecs
  3163. done
  3164. BS: BS_DEV_ENUMERATE run times (exec / console): 2 / 283 ms
  3165. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  3166. MRC: Checking cached data update for 'RW_MRC_CACHE'.
  3167. SF: Detected 00 0000 with sector size 0x1000, total 0x1000000
  3168. MRC: no data in 'RW_MRC_CACHE'
  3169. MRC: cache data 'RW_MRC_CACHE' needs update.
  3170. SPI Transaction Error at Flash Offset c00000 HSFSTS = 0x01046003
  3171. REGF metadata allocation failed: 392 data blocks 4096 total blocks
  3172. MRC: Could not find region 'UNIFIED_MRC_CACHE'
  3173. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  3174. MRC: NOT enabling PRR for 'RW_MRC_CACHE'.
  3175. BS: BS_DEV_ENUMERATE exit times (exec / console): 0 / 48 ms
  3176. Timestamp - device configuration: 169466670879
  3177. found VGA at PCI: 01:00.0
  3178. Setting up VGA for PCI: 01:00.0
  3179. Setting PCI_BRIDGE_CTL_VGA for bridge PCI: 00:01.0
  3180. Setting PCI_BRIDGE_CTL_VGA for bridge DOMAIN: 0000
  3181. Setting PCI_BRIDGE_CTL_VGA for bridge Root Device
  3182. Allocating resources...
  3183. Reading resources...
  3184. Done reading resources.
  3185. Setting resources...
  3186. PCI: 00:01.0 1c <- [0x0000002000 - 0x0000002fff] size 0x00001000 gran 0x0c bus 01 io
  3187. PCI: 00:01.0 24 <- [0x00a0000000 - 0x00b1ffffff] size 0x12000000 gran 0x14 bus 01 prefmem
  3188. PCI: 00:01.0 20 <- [0x00d0000000 - 0x00d10fffff] size 0x01100000 gran 0x14 bus 01 mem
  3189. PCI: 01:00.0 10 <- [0x00d0000000 - 0x00d0ffffff] size 0x01000000 gran 0x18 mem
  3190. PCI: 01:00.0 14 <- [0x00a0000000 - 0x00afffffff] size 0x10000000 gran 0x1c prefmem64
  3191. PCI: 01:00.0 1c <- [0x00b0000000 - 0x00b1ffffff] size 0x02000000 gran 0x19 prefmem64
  3192. PCI: 01:00.0 24 <- [0x0000002000 - 0x000000207f] size 0x00000080 gran 0x07 io
  3193. PCI: 01:00.0 30 <- [0x00d1000000 - 0x00d107ffff] size 0x00080000 gran 0x13 romem
  3194. PCI: 01:00.1 10 <- [0x00d1080000 - 0x00d1083fff] size 0x00004000 gran 0x0e mem
  3195. PCI: 00:02.0 10 <- [0x00d2000000 - 0x00d2ffffff] size 0x01000000 gran 0x18 mem64
  3196. PCI: 00:02.0 18 <- [0x00c0000000 - 0x00cfffffff] size 0x10000000 gran 0x1c prefmem64
  3197. PCI: 00:02.0 20 <- [0x0000004000 - 0x000000403f] size 0x00000040 gran 0x06 io
  3198. PCI: 00:04.0 10 <- [0x00d3120000 - 0x00d3127fff] size 0x00008000 gran 0x0f mem64
  3199. PCI: 00:14.0 10 <- [0x00d3100000 - 0x00d310ffff] size 0x00010000 gran 0x10 mem64
  3200. PCI: 00:14.2 10 <- [0x00d3132000 - 0x00d3132fff] size 0x00001000 gran 0x0c mem64
  3201. PCI: 00:16.0 10 <- [0x00d3133000 - 0x00d3133fff] size 0x00001000 gran 0x0c mem64
  3202. PCI: 00:17.0 10 <- [0x00d3130000 - 0x00d3131fff] size 0x00002000 gran 0x0d mem
  3203. PCI: 00:17.0 14 <- [0x00d3136000 - 0x00d31360ff] size 0x00000100 gran 0x08 mem
  3204. PCI: 00:17.0 18 <- [0x0000004060 - 0x0000004067] size 0x00000008 gran 0x03 io
  3205. PCI: 00:17.0 1c <- [0x0000004068 - 0x000000406b] size 0x00000004 gran 0x02 io
  3206. PCI: 00:17.0 20 <- [0x0000004040 - 0x000000405f] size 0x00000020 gran 0x05 io
  3207. PCI: 00:17.0 24 <- [0x00d3135000 - 0x00d31357ff] size 0x00000800 gran 0x0b mem
  3208. PCI: 00:1c.0 1c <- [0x000000ef9f - 0x000000ef9e] size 0x00000000 gran 0x0c bus 02 io
  3209. PCI: 00:1c.0 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 02 prefmem
  3210. PCI: 00:1c.0 20 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 02 mem
  3211. PCI: 00:1c.7 1c <- [0x0000003000 - 0x0000003fff] size 0x00001000 gran 0x0c bus 03 io
  3212. PCI: 00:1c.7 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 03 prefmem
  3213. PCI: 00:1c.7 20 <- [0x00d3000000 - 0x00d30fffff] size 0x00100000 gran 0x14 bus 03 mem
  3214. PCI: 03:00.0 10 <- [0x0000003000 - 0x00000030ff] size 0x00000100 gran 0x08 io
  3215. PCI: 03:00.0 18 <- [0x00d3004000 - 0x00d3004fff] size 0x00001000 gran 0x0c mem64
  3216. PCI: 03:00.0 20 <- [0x00d3000000 - 0x00d3003fff] size 0x00004000 gran 0x0e mem64
  3217. PCI: 00:1d.0 1c <- [0x000000ef9f - 0x000000ef9e] size 0x00000000 gran 0x0c bus 04 io
  3218. PCI: 00:1d.0 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 04 prefmem
  3219. PCI: 00:1d.0 20 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 04 mem
  3220. PNP: 002e.2 60 <- [0x00000003f8 - 0x00000003ff] size 0x00000008 gran 0x03 io
  3221. PNP: 002e.2 70 <- [0x0000000004 - 0x0000000004] size 0x00000001 gran 0x00 irq
  3222. PNP: 002e.5 60 <- [0x0000000060 - 0x0000000060] size 0x00000001 gran 0x00 io
  3223. PNP: 002e.5 62 <- [0x0000000064 - 0x0000000064] size 0x00000001 gran 0x00 io
  3224. PNP: 002e.5 70 <- [0x0000000001 - 0x0000000001] size 0x00000001 gran 0x00 irq
  3225. PNP: 002e.5 72 <- [0x000000000c - 0x000000000c] size 0x00000001 gran 0x00 irq
  3226. LPC: Opened IO window LGIR1: base 3f8 size 8
  3227. LPC: Opened IO window LGIR2: base 60 size 1
  3228. LPC: Opened IO window LGIR3: base 64 size 1
  3229. LPC: Cannot open IO window: 0 size 8
  3230. No more IO windows
  3231. LPC: Cannot open IO window: 0 size 8
  3232. No more IO windows
  3233. LPC: Cannot open IO window: 290 size 2
  3234. No more IO windows
  3235. LPC: Cannot open IO window: 0 size 8
  3236. No more IO windows
  3237. PCI: 00:1f.2 10 <- [0x00d3128000 - 0x00d312bfff] size 0x00004000 gran 0x0e mem
  3238. PCI: 00:1f.3 10 <- [0x00d312c000 - 0x00d312ffff] size 0x00004000 gran 0x0e mem64
  3239. PCI: 00:1f.3 20 <- [0x00d3110000 - 0x00d311ffff] size 0x00010000 gran 0x10 mem64
  3240. PCI: 00:1f.4 10 <- [0x00d3137000 - 0x00d31370ff] size 0x00000100 gran 0x08 mem64
  3241. PCI: 00:1f.5 10 <- [0x00d3134000 - 0x00d3134fff] size 0x00001000 gran 0x0c mem
  3242. Done setting resources.
  3243. Done allocating resources.
  3244. BS: BS_DEV_RESOURCES run times (exec / console): 2 / 421 ms
  3245. Timestamp - calling FspNotify(AfterPciEnumeration): 171138272886
  3246. Timestamp - returning from FspNotify(AfterPciEnumeration): 171162998865
  3247. BS: BS_DEV_ENABLE entry times (exec / console): 0 / 13 ms
  3248. Timestamp - device enable: 171211877697
  3249. Enabling resources...
  3250. PCI: 00:00.0 subsystem <- 1043/8694
  3251. PCI: 00:00.0 cmd <- 06
  3252. PCI: 00:01.0 bridge ctrl <- 001b
  3253. PCI: 00:01.0 cmd <- 07
  3254. PCI: 00:02.0 subsystem <- 1043/8694
  3255. PCI: 00:02.0 cmd <- 03
  3256. PCI: 00:04.0 cmd <- 02
  3257. PCI: 00:14.0 subsystem <- 1043/8694
  3258. PCI: 00:14.0 cmd <- 02
  3259. PCI: 00:14.2 subsystem <- 1043/8694
  3260. PCI: 00:14.2 cmd <- 02
  3261. PCI: 00:16.0 subsystem <- 1043/8694
  3262. PCI: 00:16.0 cmd <- 02
  3263. PCI: 00:17.0 subsystem <- 1043/8694
  3264. PCI: 00:17.0 cmd <- 03
  3265. PCI: 00:1c.0 bridge ctrl <- 0013
  3266. PCI: 00:1c.0 subsystem <- 1043/8694
  3267. PCI: 00:1c.0 cmd <- 00
  3268. PCI: 00:1c.7 bridge ctrl <- 0013
  3269. PCI: 00:1c.7 subsystem <- 1043/8694
  3270. PCI: 00:1c.7 cmd <- 07
  3271. PCI: 00:1d.0 bridge ctrl <- 0013
  3272. PCI: 00:1d.0 subsystem <- 1043/8694
  3273. PCI: 00:1d.0 cmd <- 00
  3274. PCI: 00:1f.0 subsystem <- 1043/8694
  3275. PCI: 00:1f.0 cmd <- 07
  3276. PCI: 00:1f.2 subsystem <- 1043/8694
  3277. PCI: 00:1f.2 cmd <- 06
  3278. PCI: 00:1f.3 subsystem <- 1043/8694
  3279. PCI: 00:1f.3 cmd <- 02
  3280. PCI: 00:1f.4 subsystem <- 1043/8694
  3281. PCI: 00:1f.4 cmd <- 03
  3282. PCI: 00:1f.5 subsystem <- 1043/8694
  3283. PCI: 00:1f.5 cmd <- 406
  3284. PCI: 01:00.0 cmd <- 03
  3285. PCI: 01:00.1 cmd <- 02
  3286. PCI: 03:00.0 cmd <- 03
  3287. done.
  3288. BS: BS_DEV_ENABLE run times (exec / console): 0 / 111 ms
  3289. ME: Version : Unavailable
  3290. BS: BS_DEV_ENABLE exit times (exec / console): 0 / 3 ms
  3291. Timestamp - device initialization: 171698965951
  3292. Initializing devices...
  3293. Root Device init
  3294. Root Device init finished in 0 msecs
  3295. CPU_CLUSTER: 0 init
  3296. CPU_CLUSTER: 0 init finished in 0 msecs
  3297. PCI: 00:00.0 init
  3298. CPU TDP: 51 Watts
  3299. CPU PL2 = 91 Watts
  3300. PCI: 00:00.0 init finished in 4 msecs
  3301. PCI: 00:02.0 init
  3302. PCI: 00:02.0 init finished in 0 msecs
  3303. PCI: 00:04.0 init
  3304. PCI: 00:04.0 init finished in 0 msecs
  3305. PCI: 00:14.0 init
  3306. PCI: 00:14.0 init finished in 0 msecs
  3307. PCI: 00:14.2 init
  3308. PCI: 00:14.2 init finished in 0 msecs
  3309. PCI: 00:16.0 init
  3310. PCI: 00:16.0 init finished in 0 msecs
  3311. PCI: 00:17.0 init
  3312. PCI: 00:17.0 init finished in 0 msecs
  3313. PCI: 00:1c.0 init
  3314. Initializing PCH PCIe bridge.
  3315. PCI: 00:1c.0 init finished in 2 msecs
  3316. PCI: 00:1c.7 init
  3317. Initializing PCH PCIe bridge.
  3318. PCI: 00:1c.7 init finished in 2 msecs
  3319. PCI: 00:1d.0 init
  3320. Initializing PCH PCIe bridge.
  3321. PCI: 00:1d.0 init finished in 2 msecs
  3322. PCI: 00:1f.0 init
  3323. IOAPIC: Initializing IOAPIC at 0xfec00000
  3324. IOAPIC: Bootstrap Processor Local APIC = 0x00
  3325. IOAPIC: ID = 0x02
  3326. PCI: 00:1f.0 init finished in 10 msecs
  3327. PCI: 00:1f.2 init
  3328. RTC Init
  3329. Set power on after power failure.
  3330. Disabling ACPI via APMC:
  3331. done.
  3332. Disabling Deep S3
  3333. Disabling Deep S3
  3334. Disabling Deep S4
  3335. Disabling Deep S4
  3336. Disabling Deep S5
  3337. Disabling Deep S5
  3338. PCI: 00:1f.2 init finished in 18 msecs
  3339. PCI: 00:1f.3 init
  3340. PCI: 00:1f.3 init finished in 0 msecs
  3341. PCI: 00:1f.4 init
  3342. PCI: 00:1f.4 init finished in 0 msecs
  3343. PCI: 00:1f.5 init
  3344. PCI: 00:1f.5 init finished in 0 msecs
  3345. PCI: 01:00.0 init
  3346. Timestamp - Option ROM initialization: 172258818477
  3347. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3348. CBFS: Locating 'pci10de,1d01.rom'
  3349. CBFS: 'pci10de,1d01.rom' not found.
  3350. PCI Option ROM loading disabled for PCI: 01:00.0
  3351. PCI: 01:00.0 init finished in 21 msecs
  3352. PCI: 01:00.1 init
  3353. PCI: 01:00.1 init finished in 0 msecs
  3354. PCI: 03:00.0 init
  3355. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3356. CBFS: Locating 'rt8168-macaddress'
  3357. CBFS: Found @ offset 54600 size 11
  3358. r8168: Resetting NIC...done
  3359. r8168: Programming MAC Address...done
  3360. PCI: 03:00.0 init finished in 17 msecs
  3361. PNP: 002e.2 init
  3362. PNP: 002e.2 init finished in 0 msecs
  3363. PNP: 002e.5 init
  3364. PNP: 002e.5 init finished in 0 msecs
  3365. PNP: 002e.a init
  3366. PNP: 002e.a init finished in 0 msecs
  3367. PNP: 002e.207 init
  3368. PNP: 002e.207 init finished in 0 msecs
  3369. PNP: 002e.11 init
  3370. PNP: 002e.11 init finished in 0 msecs
  3371. PNP: 002e.12 init
  3372. PNP: 002e.12 init finished in 0 msecs
  3373. PNP: 002e.15 init
  3374. PNP: 002e.15 init finished in 0 msecs
  3375. Devices initialized
  3376. BS: BS_DEV_INIT run times (exec / console): 3 / 235 ms
  3377. Finalize devices...
  3378. Devices finalized
  3379. Timestamp - device setup done: 172661796575
  3380. BS: BS_POST_DEVICE run times (exec / console): 0 / 8 ms
  3381. Timestamp - cbmem post: 172698792717
  3382. BS: BS_OS_RESUME_CHECK run times (exec / console): 0 / 4 ms
  3383. Timestamp - write tables: 172734881364
  3384. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3385. CBFS: Locating 'fallback/dsdt.aml'
  3386. CBFS: Found @ offset ec4c0 size 2c93
  3387. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3388. CBFS: Locating 'fallback/slic'
  3389. CBFS: 'fallback/slic' not found.
  3390. ACPI: Writing ACPI tables at 7aa9f000.
  3391. ACPI: * FACS
  3392. ACPI: * DSDT
  3393. ACPI: * FADT
  3394. SCI is IRQ9
  3395. ACPI: added table 1/32, length now 40
  3396. ACPI: * SSDT
  3397. Found 1 CPU(s) with 4 core(s) each.
  3398. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  3399. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  3400. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  3401. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  3402. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  3403. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  3404. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  3405. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  3406. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  3407. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  3408. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  3409. PSS: 800MHz power 7088 control 0x800 status 0x800
  3410. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  3411. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  3412. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  3413. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  3414. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  3415. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  3416. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  3417. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  3418. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  3419. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  3420. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  3421. PSS: 800MHz power 7088 control 0x800 status 0x800
  3422. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  3423. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  3424. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  3425. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  3426. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  3427. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  3428. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  3429. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  3430. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  3431. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  3432. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  3433. PSS: 800MHz power 7088 control 0x800 status 0x800
  3434. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  3435. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  3436. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  3437. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  3438. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  3439. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  3440. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  3441. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  3442. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  3443. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  3444. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  3445. PSS: 800MHz power 7088 control 0x800 status 0x800
  3446. BUG: Parent of device PNP: 002e.2 is not a PNP device
  3447. BUG: Check your devicetree!
  3448. BUG: Parent of device PNP: 002e.5 is not a PNP device
  3449. BUG: Check your devicetree!
  3450. BUG: Parent of device PNP: 002e.6 is not a PNP device
  3451. BUG: Check your devicetree!
  3452. BUG: Parent of device PNP: 002e.107 is not a PNP device
  3453. BUG: Check your devicetree!
  3454. BUG: Parent of device PNP: 002e.8 is not a PNP device
  3455. BUG: Check your devicetree!
  3456. BUG: Parent of device PNP: 002e.108 is not a PNP device
  3457. BUG: Check your devicetree!
  3458. BUG: Parent of device PNP: 002e.308 is not a PNP device
  3459. BUG: Check your devicetree!
  3460. BUG: Parent of device PNP: 002e.408 is not a PNP device
  3461. BUG: Check your devicetree!
  3462. BUG: Parent of device PNP: 002e.9 is not a PNP device
  3463. BUG: Check your devicetree!
  3464. BUG: Parent of device PNP: 002e.109 is not a PNP device
  3465. BUG: Check your devicetree!
  3466. BUG: Parent of device PNP: 002e.209 is not a PNP device
  3467. BUG: Check your devicetree!
  3468. BUG: Parent of device PNP: 002e.309 is not a PNP device
  3469. BUG: Check your devicetree!
  3470. BUG: Parent of device PNP: 002e.a is not a PNP device
  3471. BUG: Check your devicetree!
  3472. BUG: Parent of device PNP: 002e.b is not a PNP device
  3473. BUG: Check your devicetree!
  3474. BUG: Parent of device PNP: 002e.d is not a PNP device
  3475. BUG: Check your devicetree!
  3476. BUG: Parent of device PNP: 002e.e is not a PNP device
  3477. BUG: Check your devicetree!
  3478. BUG: Parent of device PNP: 002e.f is not a PNP device
  3479. BUG: Check your devicetree!
  3480. BUG: Parent of device PNP: 002e.16 is not a PNP device
  3481. BUG: Check your devicetree!
  3482. BUG: Parent of device PNP: 002e.116 is not a PNP device
  3483. BUG: Check your devicetree!
  3484. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3485. CBFS: Locating 'pci10de,1d01.rom'
  3486. CBFS: 'pci10de,1d01.rom' not found.
  3487. PCI Option ROM loading disabled for PCI: 01:00.0
  3488. PCI: 01:00.0: Missing PCI Option ROM
  3489. BUG: Parent of device PNP: 002e.207 is not a PNP device
  3490. BUG: Check your devicetree!
  3491. BUG: Parent of device PNP: 002e.11 is not a PNP device
  3492. BUG: Check your devicetree!
  3493. BUG: Parent of device PNP: 002e.12 is not a PNP device
  3494. BUG: Check your devicetree!
  3495. BUG: Parent of device PNP: 002e.15 is not a PNP device
  3496. BUG: Check your devicetree!
  3497. ACPI: added table 2/32, length now 44
  3498. ACPI: * MCFG
  3499. ACPI: added table 3/32, length now 48
  3500. ACPI: * MADT
  3501. SCI is IRQ9
  3502. ACPI: added table 4/32, length now 52
  3503. current = 7aaa2ea0
  3504. ACPI: * DMAR
  3505. ACPI: added table 5/32, length now 56
  3506. ACPI: * IGD OpRegion
  3507. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3508. CBFS: Locating 'vbt.bin'
  3509. CBFS: Found @ offset 54680 size 49c
  3510. Timestamp - starting LZMA decompress (ignore for x86): 174772210599
  3511. Timestamp - finished LZMA decompress (ignore for x86): 174797174530
  3512. Found a VBT of 4284 bytes after decompression
  3513. GMA: Found VBT in CBFS
  3514. GMA: Found valid VBT in CBFS
  3515. current = 7aaa4f30
  3516. acpi_write_dbg2_pci_uart: Device not found
  3517. ACPI: * HPET
  3518. ACPI: added table 6/32, length now 60
  3519. ACPI: done.
  3520. ACPI tables: 24432 bytes.
  3521. smbios_write_tables: 7aa9d000
  3522. Create SMBIOS type 17
  3523. PCI: 00:00.0 (Intel 6th Gen)
  3524. SMBIOS tables: 761 bytes.
  3525. Writing table forward entry at 0x00000500
  3526. Wrote coreboot table at: 0x00000500, 0x10 bytes, checksum 5532
  3527. Writing coreboot table at 0x7aac3000
  3528. 0. 0000000000000000-0000000000000fff: CONFIGURATION TABLES
  3529. 1. 0000000000001000-000000000009ffff: RAM
  3530. 2. 00000000000a0000-00000000000fffff: RESERVED
  3531. 3. 0000000000100000-000000007aa9cfff: RAM
  3532. 4. 000000007aa9d000-000000007ab09fff: CONFIGURATION TABLES
  3533. 5. 000000007ab0a000-000000007abcefff: RAMSTAGE
  3534. 6. 000000007abcf000-000000007affffff: CONFIGURATION TABLES
  3535. 7. 000000007b000000-000000007fffffff: RESERVED
  3536. 8. 00000000e0000000-00000000efffffff: RESERVED
  3537. 9. 00000000fd000000-00000000fe00ffff: RESERVED
  3538. 10. 00000000fed10000-00000000fed19fff: RESERVED
  3539. 11. 00000000fed80000-00000000fed84fff: RESERVED
  3540. 12. 00000000fed90000-00000000fed91fff: RESERVED
  3541. 13. 0000000100000000-000000047effffff: RAM
  3542. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3543. Wrote coreboot table at: 0x7aac3000, 0x400 bytes, checksum 8b3d
  3544. coreboot table: 1048 bytes.
  3545. IMD ROOT 0. 0x7afff000 0x00001000
  3546. IMD SMALL 1. 0x7affe000 0x00001000
  3547. FSP MEMORY 2. 0x7abfe000 0x00400000
  3548. CONSOLE 3. 0x7abde000 0x00020000
  3549. TIME STAMP 4. 0x7abdd000 0x00000910
  3550. MRC DATA 5. 0x7abdb000 0x00001878
  3551. ROMSTG STCK 6. 0x7abda000 0x00001000
  3552. AFTER CAR 7. 0x7abcf000 0x0000b000
  3553. RAMSTAGE 8. 0x7ab09000 0x000c6000
  3554. REFCODE 9. 0x7aadb000 0x0002e000
  3555. SMM BACKUP 10. 0x7aacb000 0x00010000
  3556. COREBOOT 11. 0x7aac3000 0x00008000
  3557. ACPI 12. 0x7aa9f000 0x00024000
  3558. ACPI GNVS 13. 0x7aa9e000 0x00001000
  3559. SMBIOS 14. 0x7aa9d000 0x00000800
  3560. IMD small region:
  3561. IMD ROOT 0. 0x7affec00 0x00000400
  3562. FSP RUNTIME 1. 0x7affebe0 0x00000004
  3563. FMAP 2. 0x7affeb00 0x000000e0
  3564. POWER STATE 3. 0x7affeac0 0x00000040
  3565. ROMSTAGE 4. 0x7affeaa0 0x00000004
  3566. MEM INFO 5. 0x7affe8e0 0x000001b9
  3567. Timestamp - finalize chips: 175610611859
  3568. BS: BS_WRITE_TABLES run times (exec / console): 1 / 740 ms
  3569. MTRR: Physical address space:
  3570. 0x0000000000000000 - 0x00000000000a0000 size 0x000a0000 type 6
  3571. 0x00000000000a0000 - 0x00000000000c0000 size 0x00020000 type 0
  3572. 0x00000000000c0000 - 0x000000007b800000 size 0x7b740000 type 6
  3573. 0x000000007b800000 - 0x00000000a0000000 size 0x24800000 type 0
  3574. 0x00000000a0000000 - 0x00000000b2000000 size 0x12000000 type 1
  3575. 0x00000000b2000000 - 0x0000000100000000 size 0x4e000000 type 0
  3576. 0x0000000100000000 - 0x000000047f000000 size 0x37f000000 type 6
  3577. MTRR: Fixed MSR 0x250 0x0606060606060606
  3578. MTRR: Fixed MSR 0x258 0x0606060606060606
  3579. MTRR: Fixed MSR 0x259 0x0000000000000000
  3580. MTRR: Fixed MSR 0x268 0x0606060606060606
  3581. MTRR: Fixed MSR 0x269 0x0606060606060606
  3582. MTRR: Fixed MSR 0x26a 0x0606060606060606
  3583. MTRR: Fixed MSR 0x26b 0x0606060606060606
  3584. MTRR: Fixed MSR 0x26c 0x0606060606060606
  3585. MTRR: Fixed MSR 0x26d 0x0606060606060606
  3586. MTRR: Fixed MSR 0x26e 0x0606060606060606
  3587. MTRR: Fixed MSR 0x26f 0x0606060606060606
  3588. CPU physical address size: 39 bits
  3589. MTRR: default type WB/UC MTRR counts: 9/8.
  3590. MTRR: UC selected as default type.
  3591. MTRR: 0 base 0x0000000000000000 mask 0x0000007f80000000 type 6
  3592. MTRR: 1 base 0x000000007b800000 mask 0x0000007fff800000 type 0
  3593. MTRR: 2 base 0x000000007c000000 mask 0x0000007ffc000000 type 0
  3594. MTRR: 3 base 0x00000000a0000000 mask 0x0000007ff0000000 type 1
  3595. MTRR: 4 base 0x00000000b0000000 mask 0x0000007ffe000000 type 1
  3596. MTRR: 5 base 0x0000000100000000 mask 0x0000007f00000000 type 6
  3597. MTRR: 6 base 0x0000000200000000 mask 0x0000007e00000000 type 6
  3598. MTRR: 7 base 0x0000000400000000 mask 0x0000007f80000000 type 6
  3599. MTRR: Fixed MSR 0x250 0x0606060606060606
  3600. MTRR: Fixed MSR 0x258 0x0606060606060606
  3601. MTRR: Fixed MSR 0x259 0x0000000000000000
  3602. MTRR: Fixed MSR 0x268 0x0606060606060606
  3603. MTRR: Fixed MSR 0x269 0x0606060606060606
  3604. MTRR: Fixed MSR 0x26a 0x0606060606060606
  3605. MTRR: Fixed MSR 0x26b 0x0606060606060606
  3606. MTRR: Fixed MSR 0x26c 0x0606060606060606
  3607. MTRR: Fixed MSR 0x26d 0x0606060606060606
  3608. MTRR: Fixed MSR 0x26e 0x0606060606060606
  3609. MTRR: Fixed MSR 0x26f 0x0606060606060606
  3610.  
  3611. MTRR check
  3612. Fixed MTRRs : Enabled
  3613. Variable MTRRs: Enabled
  3614.  
  3615. CPU physical address size: 39 bits
  3616. BS: BS_WRITE_TABLES exit times (exec / console): 43 / 150 ms
  3617. MTRR: Fixed MSR 0x250 0x0606060606060606
  3618. MTRR: Fixed MSR 0x258 0x0606060606060606
  3619. MTRR: Fixed MSR 0x259 0x0000000000000000
  3620. MTRR: Fixed MSR 0x268 0x0606060606060606
  3621. MTRR: Fixed MSR 0x269 0x0606060606060606
  3622. MTRR: Fixed MSR 0x26a 0x0606060606060606
  3623. MTRR: Fixed MSR 0x26b 0x0606060606060606
  3624. MTRR: Fixed MSR 0x26c 0x0606060606060606
  3625. MTRR: Fixed MSR 0x26d 0x0606060606060606
  3626. MTRR: Fixed MSR 0x26e 0x0606060606060606
  3627. MTRR: Fixed MSR 0x26f 0x0606060606060606
  3628. MTRR: Fixed MSR 0x250 0x0606060606060606
  3629. CPU physical address size: 39 bits
  3630. MTRR: Fixed MSR 0x258 0x0606060606060606
  3631. MTRR: Fixed MSR 0x259 0x0000000000000000
  3632. MTRR: Fixed MSR 0x268 0x0606060606060606
  3633. MTRR: Fixed MSR 0x269 0x0606060606060606
  3634. MTRR: Fixed MSR 0x26a 0x0606060606060606
  3635. MTRR: Fixed MSR 0x26b 0x0606060606060606
  3636. MTRR: Fixed MSR 0x26c 0x0606060606060606
  3637. MTRR: Fixed MSR 0x26d 0x0606060606060606
  3638. MTRR: Fixed MSR 0x26e 0x0606060606060606
  3639. MTRR: Fixed MSR 0x26f 0x0606060606060606
  3640. Timestamp - load payload: 176435732392
  3641. CPU physical address size: 39 bits
  3642. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3643. CBFS: Locating 'fallback/payload'
  3644. CBFS: Found @ offset ffc80 size 10f36
  3645. Checking segment from ROM address 0xffd0feb8
  3646. Payload being loaded at below 1MiB without region being marked as RAM usable.
  3647. Checking segment from ROM address 0xffd0fed4
  3648. Loading segment from ROM address 0xffd0feb8
  3649. code (compression=1)
  3650. New segment dstaddr 0x000dfba0 memsize 0x20460 srcaddr 0xffd0fef0 filesize 0x10efe
  3651. Loading Segment: addr: 0x000dfba0 memsz: 0x0000000000020460 filesz: 0x0000000000010efe
  3652. using LZMA
  3653. Timestamp - starting LZMA decompress (ignore for x86): 177005769554
  3654. Timestamp - finished LZMA decompress (ignore for x86): 177128118837
  3655. Loading segment from ROM address 0xffd0fed4
  3656. Entry Point 0x000fd25d
  3657. BS: BS_PAYLOAD_LOAD run times (exec / console): 117 / 73 ms
  3658. Timestamp - calling FspNotify(ReadyToBoot): 177200071366
  3659. Timestamp - returning from FspNotify(ReadyToBoot): 177234747630
  3660. Timestamp - calling FspNotify(EndOfFirmware): 177257953584
  3661. Timestamp - returning from FspNotify(EndOfFirmware): 177286461863
  3662. Finalizing chipset.
  3663. HECI: CSE device is hidden
  3664. Finalizing SMM.
  3665. BS: BS_PAYLOAD_LOAD exit times (exec / console): 5 / 29 ms
  3666. mp_park_aps done after 0 msecs.
  3667. Jumping to boot code at 0x000fd25d(0x7aac3000)
  3668. Timestamp - selfboot jump: 177384924098
  3669. SeaBIOS (version rel-1.13.0-5-g7655185)
  3670. BUILD: gcc: (coreboot toolchain vdfd3f21174 2019-05-03) 9.2.0 binutils: (GNU Binutils) 2.33.1
  3671. SeaBIOS (version rel-1.13.0-5-g7655185)
  3672. BUILD: gcc: (coreboot toolchain vdfd3f21174 2019-05-03) 9.2.0 binutils: (GNU Binutils) 2.33.1
  3673. Found coreboot cbmem console @ 7abde000
  3674. Found mainboard ASUS H110M-E/M.2
  3675. Relocating init from 0x000e12c0 to 0x7aa4fc40 (size 54048)
  3676. Found CBFS header at 0xffc10238
  3677. multiboot: eax=7ab3d300, ebx=7ab3d2c4
  3678. Found 18 PCI devices (max PCI bus is 04)
  3679. Copying SMBIOS entry point from 0x7aa9d000 to 0x000f62e0
  3680. Copying ACPI RSDP from 0x7aa9f000 to 0x000f62b0
  3681. Using pmtimer, ioport 0x1808
  3682. Scan for VGA option rom
  3683. Running option rom at c000:0003
  3684. sercon: using ioport 0x3f8
  3685. sercon: configuring in splitmode (vgabios c000:17dc)
  3686. Turning on vga text mode console
  3687. SeaBIOS (version rel-1.13.0-5-g7655185XHCI init on dev 00:14.0: regs @ 0xd3100000, 20 ports, 64 slots, 32 byte contexts
  3688. XHCI protocol USB 2.00, 10 ports (offset 1), def 3011
  3689. XHCI protocol USB 3.00, 4 ports (offset 17), def 3000
  3690. XHCI extcap 0xc0 @ 0xd3108070
  3691. XHCI extcap 0x1 @ 0xd310846c
  3692. XHCI extcap 0xc6 @ 0xd31084f4
  3693. XHCI extcap 0xc7 @ 0xd3108500
  3694. XHCI extcap 0xc2 @ 0xd3108600
  3695. XHCI extcap 0xa @ 0xd3108700
  3696. XHCI extcap 0xc3 @ 0xd3108740
  3697. XHCI extcap 0xc4 @ 0xd3108800
  3698. XHCI extcap 0xc5 @ 0xd3108900
  3699. AHCI controller at 00:17.0, iobase 0xd3135000, irq 11
  3700. Searching bootorder for: HALT
  3701. Found 0 lpt ports
  3702. Found 1 serial ports
  3703. Searching bootorder for: /rom@img/memtest
  3704. Searching bootorder for: /rom@img/nvramcui
  3705. )
  3706. Got ps2 nak (status=51)
  3707. Searching bootorder for: /pci@i0cf8/*@17/drive@3/disk@0
  3708. AHCI/3: Set transfer mode to UDMA-6
  3709. Searching bios-geometry for: /pci@i0cf8/*@17/drive@3/disk@0
  3710. AHCI/3: registering: "AHCI/3: TOSHIBA HDWD110 ATA-8 Hard-Disk (931 GiBytes)"
  3711. XHCI port #5: 0x00200a03, powered, enabled, pls 0, speed 2 [Low]
  3712. USB mouse initialized
  3713. XHCI port #6: 0x00200a03, powered, enabled, pls 0, speed 2 [Low]
  3714. USB keyboard initialized
  3715. All threads complete.
  3716. Scan for option roms
  3717.  
  3718. Press ESC for boot menu.
  3719.  
  3720. Searching bootorder for: HALT
  3721. drive 0x000f6240: PCHS=16383/16/63 translation=lba LCHS=1024/255/63 s=1953525168
  3722. Space available for UMB: ce800-ed000, f5b00-f6240
  3723. Returned 114688 bytes of ZoneHigh
  3724. e820 map has 11 items:
  3725. 0: 0000000000000000 - 000000000009fc00 = 1 RAM
  3726. 1: 000000000009fc00 - 00000000000a0000 = 2 RESERVED
  3727. 2: 00000000000f0000 - 0000000000100000 = 2 RESERVED
  3728. 3: 0000000000100000 - 000000007aa79000 = 1 RAM
  3729. 4: 000000007aa79000 - 0000000080000000 = 2 RESERVED
  3730. 5: 00000000e0000000 - 00000000f0000000 = 2 RESERVED
  3731. 6: 00000000fd000000 - 00000000fe010000 = 2 RESERVED
  3732. 7: 00000000fed10000 - 00000000fed1a000 = 2 RESERVED
  3733. 8: 00000000fed80000 - 00000000fed85000 = 2 RESERVED
  3734. 9: 00000000fed90000 - 00000000fed92000 = 2 RESERVED
  3735. 10: 0000000100000000 - 000000047f000000 = 1 RAM
  3736. enter handle_19:
  3737. NULL
  3738. Booting from Hard Disk..Booting from 0000:7c00
  3739. .
  3740. GRUB loading.
  3741. Welcome to GRUB!
  3742.  
  3743. Memory KASLR using RDRAND RDTSC...
  3744. Poking KASLR using RDRAND RDTSC...
  3745. ÿ:: running early hook [udev]
  3746. Starting version 244.3-1.parabola1-parabola
  3747. :: running hook [udev]
  3748. :: Triggering uevents...
  3749. :: performing fsck on '/dev/sda3'
  3750. /dev/sda3: recovering journal
  3751. /dev/sda3: clean, 63673/7790592 files, 1060799/31130368 blocks
  3752. :: mounting '/dev/sda3' on real root
  3753. :: running cleanup hook [udev]
  3754.  
  3755. Welcome to Parabola GNU/Linux-libre!
  3756.  
  3757. [ OK ] Created slice system-dhclient.slice.
  3758. [ OK ] Created slice system-getty.slice.
  3759. [ OK ] Created slice system-modprobe.slice.
  3760. [ OK ] Created slice system-serial\x2dgetty.slice.
  3761. [ OK ] Created slice User and Session Slice.
  3762. [ OK ] Started Dispatch Password 
ts to Console Directory Watch.
  3763. [ OK ] Started Forward Password R
uests to Wall Directory Watch.
  3764. [ OK ] Set up automount Arbitrary
s File System Automount Point.
  3765. [ OK ] Reached target Local Encrypted Volumes.
  3766. [ OK ] Reached target Paths.
  3767. [ OK ] Reached target Remote File Systems.
  3768. [ OK ] Reached target Slices.
  3769. [ OK ] Listening on Device-mapper event daemon FIFOs.
  3770. [ OK ] Listening on Process Core Dump Socket.
  3771. [ OK ] Listening on initctl Compatibility Named Pipe.
  3772. [ OK ] Listening on Journal Audit Socket.
  3773. [ OK ] Listening on Journal Socket (/dev/log).
  3774. [ OK ] Listening on Journal Socket.
  3775. [ OK ] Listening on udev Control Socket.
  3776. [ OK ] Listening on udev Kernel Socket.
  3777. Mounting Huge Pages File System...
  3778. Mounting POSIX Message Queue File System...
  3779. Mounting Kernel Debug File System...
  3780. Starting Create list of st
odes for the current kernel...
  3781. Starting Journal Service...
  3782. Mounting Kernel Configuration File System...
  3783. Starting Remount Root and Kernel File Systems...
  3784. Starting Apply Kernel Variables...
  3785. Starting udev Coldplug all Devices...
  3786. [ OK ] Mounted Huge Pages File System.
  3787. [ OK ] Mounted POSIX Message Queue File System.
  3788. [ OK ] Mounted Kernel Debug File System.
  3789. [ OK ] Started Create list of sta
 nodes for the current kernel.
  3790. [ OK ] Mounted Kernel Configuration File System.
  3791. [ OK ] Started Remount Root and Kernel File Systems.
  3792. [ OK ] Started Apply Kernel Variables.
  3793. Starting Load/Save Random Seed...
  3794. Starting Create Static Device Nodes in /dev...
  3795. [ OK ] Started udev Coldplug all Devices.
  3796. [ OK ] Started Journal Service.
  3797. Starting Flush Journal to Persistent Storage...
  3798. [ OK ] Started Load/Save Random Seed.
  3799. [ OK ] Started Create Static Device Nodes in /dev.
  3800. [ OK ] Reached target Local File Systems (Pre).
  3801. Starting udev Kernel Device Manager...
  3802. [ OK ] Started Flush Journal to Persistent Storage.
  3803. [ OK ] Started udev Kernel Device Manager.
  3804. [ OK ] Found device /dev/ttyS0.
  3805. [ OK ] Found device TOSHIBA_HDWD110 swap.
  3806. Activating € @P0€€€€€€€€€€€€€€€€þþþÿÿÿÿþþÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  3807.  
  3808. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  3809. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  3810. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  3811. CPU: AES supported, TXT NOT supported, VT supported
  3812. MCH: device id 590f (rev 06) is Kabylake-S
  3813. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  3814. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  3815. Timestamp - end of bootblock: 172551651
  3816. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  3817. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  3818. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3819. CBFS: Locating 'fallback/romstage'
  3820. CBFS: Found @ offset 80 size b284
  3821. Timestamp - starting to load romstage: 262884344
  3822. Timestamp - finished loading romstage: 279981482
  3823. BS: bootblock times (exec / console): total (unknown) / 67 ms
  3824.  
  3825.  
  3826. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  3827. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00000000
  3828. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  3829. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  3830. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  3831. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  3832. TCO_STS: 0000 0000
  3833. GEN_PMCON: e0810200 00001848
  3834. GBLRST_CAUSE: 00001000 00000000
  3835. prev_sleep_state 0
  3836. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3837. CBFS: Locating 'fspm.bin'
  3838. CBFS: Found @ offset 54dc0 size 63000
  3839. Timestamp - before RAM initialization: 514040845
  3840. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  3841. MRC: no data in 'RW_MRC_CACHE'
  3842. PRMRR disabled by config.
  3843. SPD @ 0x50
  3844. SPD: module type is DDR4
  3845. SPD: module part is PSD48G240082
  3846. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  3847. SPD: device width 16 bits, bus width 64 bits
  3848. SPD: module size is 8192 MB (per channel)
  3849. SPD @ 0x52
  3850. SPD: module type is DDR4
  3851. SPD: module part is CMK8GX4M1A2400C16
  3852. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  3853. SPD: device width 8 bits, bus width 64 bits
  3854. SPD: module size is 8192 MB (per channel)
  3855. SPD @ 0x00
  3856. SPD: module type is UNKNOWN
  3857. SPD: module part is
  3858. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  3859. SPD: device width -1 bits, bus width -1 bits
  3860. SPD @ 0x00
  3861. SPD: module type is UNKNOWN
  3862. SPD: module part is
  3863. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  3864. SPD: device width -1 bits, bus width -1 bits
  3865. Timestamp - calling FspMemoryInit: 2767394072
  3866.  
  3867.  
  3868. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  3869. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  3870. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  3871. CPU: AES supported, TXT NOT supported, VT supported
  3872. MCH: device id 590f (rev 06) is Kabylake-S
  3873. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  3874. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  3875. Timestamp - end of bootblock: 172673454
  3876. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  3877. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  3878. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3879. CBFS: Locating 'fallback/romstage'
  3880. CBFS: Found @ offset 80 size b284
  3881. Timestamp - starting to load romstage: 263063533
  3882. Timestamp - finished loading romstage: 280174242
  3883. BS: bootblock times (exec / console): total (unknown) / 67 ms
  3884.  
  3885.  
  3886. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  3887. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  3888. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  3889. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  3890. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  3891. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  3892. TCO_STS: 0000 0000
  3893. GEN_PMCON: e0210200 00001a48
  3894. GBLRST_CAUSE: 00001000 00000000
  3895. prev_sleep_state 0
  3896. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3897. CBFS: Locating 'fspm.bin'
  3898. CBFS: Found @ offset 54dc0 size 63000
  3899. Timestamp - before RAM initialization: 514435840
  3900. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  3901. MRC: no data in 'RW_MRC_CACHE'
  3902. PRMRR disabled by config.
  3903. SPD @ 0x50
  3904. SPD: module type is DDR4
  3905. SPD: module part is PSD48G240082
  3906. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  3907. SPD: device width 16 bits, bus width 64 bits
  3908. SPD: module size is 8192 MB (per channel)
  3909. SPD @ 0x52
  3910. SPD: module type is DDR4
  3911. SPD: module part is CMK8GX4M1A2400C16
  3912. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  3913. SPD: device width 8 bits, bus width 64 bits
  3914. SPD: module size is 8192 MB (per channel)
  3915. SPD @ 0x00
  3916. SPD: module type is UNKNOWN
  3917. SPD: module part is
  3918. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  3919. SPD: device width -1 bits, bus width -1 bits
  3920. SPD @ 0x00
  3921. SPD: module type is UNKNOWN
  3922. SPD: module part is
  3923. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  3924. SPD: device width -1 bits, bus width -1 bits
  3925. Timestamp - calling FspMemoryInit: 2769808293
  3926. Timestamp - returning from FspMemoryInit: 163829349298
  3927. CBMEM:
  3928. IMD: root @ 0x7afff000 254 entries.
  3929. IMD: root @ 0x7affec00 62 entries.
  3930. External stage cache:
  3931. IMD: root @ 0x7b3ff000 254 entries.
  3932. IMD: root @ 0x7b3fec00 62 entries.
  3933. Timestamp - after RAM initialization: 163912679732
  3934. 2 DIMMs found
  3935. SMM Memory Map
  3936. SMRAM : 0x7b000000 0x800000
  3937. Subregion 0: 0x7b000000 0x200000
  3938. Subregion 1: 0x7b200000 0x200000
  3939. Subregion 2: 0x7b400000 0x400000
  3940. top_of_ram = 0x7b000000
  3941. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  3942. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  3943. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  3944. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3945. CBFS: Locating 'fallback/postcar'
  3946. CBFS: Found @ offset e6e00 size 5668
  3947. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  3948. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  3949. Processing 287 relocs. Offset value of 0x78bd0000
  3950. Timestamp - end of romstage: 164172983005
  3951. BS: romstage times (exec / console): total (unknown) / 224 ms
  3952.  
  3953.  
  3954. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  3955. Timestamp - start of postcar: 164246245770
  3956. Timestamp - end of postcar: 164261180335
  3957. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3958. CBFS: Locating 'fallback/ramstage'
  3959. CBFS: Found @ offset 3c000 size 17f37
  3960. Timestamp - starting to load ramstage: 164318907771
  3961. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  3962. Timestamp - starting LZMA decompress (ignore for x86): 164359606629
  3963. Timestamp - finished LZMA decompress (ignore for x86): 164414470499
  3964. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  3965. Processing 3860 relocs. Offset value of 0x79d0a000
  3966. Timestamp - finished loading ramstage: 164485723639
  3967. BS: postcar times (exec / console): total (unknown) / 67 ms
  3968.  
  3969.  
  3970. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  3971. Timestamp - start of ramstage: 164560711066
  3972. Normal boot.
  3973. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3974. CBFS: Locating 'cpu_microcode_blob.bin'
  3975. CBFS: Found @ offset b380 size 30c00
  3976. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  3977. Skip microcode update
  3978. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  3979. CBFS: Locating 'fsps.bin'
  3980. CBFS: Found @ offset b8dc0 size 2e000
  3981. Detected 2 core, 4 thread CPU.
  3982. Setting up SMI for CPU
  3983. IED base = 0x7b400000
  3984. IED size = 0x00400000
  3985. Will perform SMM setup.
  3986. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  3987. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  3988. Processing 16 relocs. Offset value of 0x00030000
  3989. Attempting to start 3 APs
  3990. Waiting for 10ms after sending INIT.
  3991. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  3992. done.
  3993. AP: slot 1 apic_id 3.
  3994. AP: slot 2 apic_id 2.
  3995. Waiting for 2nd SIPI to complete...done.
  3996. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  3997. Processing 13 relocs. Offset value of 0x00038000
  3998. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  3999. Installing SMM handler to 0x7b000000
  4000. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  4001. Processing 103 relocs. Offset value of 0x7b010000
  4002. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  4003. Processing 13 relocs. Offset value of 0x7b008000
  4004. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  4005. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  4006. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  4007. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  4008. Clearing SMI status registers
  4009. SMI_STS: PM1
  4010. TMROF TCO_STS: SECOND_TO
  4011. New SMBASE 0x7b000000
  4012. In relocation handler: CPU 0
  4013. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  4014. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4015. Relocation complete.
  4016. New SMBASE 0x7afff400
  4017. In relocation handler: CPU 3
  4018. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  4019. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4020. Relocation complete.
  4021. New SMBASE 0x7afffc00
  4022. In relocation handler: CPU 1
  4023. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  4024. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4025. Relocation complete.
  4026. New SMBASE 0x7afff800
  4027. In relocation handler: CPU 2
  4028. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  4029. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4030. Relocation complete.
  4031. Initializing CPU #0
  4032. CPU: vendor Intel device 906e9
  4033. CPU: family 06, model 9e, stepping 09
  4034. Clearing out pending MCEs
  4035. Setting up local APIC...
  4036. apic_id: 0x00 done.
  4037. cpu: energy policy set to 6
  4038. Turbo is unavailable
  4039. Skip microcode update
  4040. CPU #0 initialized
  4041. Initializing CPU #3
  4042. Initializing CPU #1
  4043. Initializing CPU #2
  4044. CPU: vendor Intel device 906e9
  4045. CPU: family 06, model 9e, stepping 09
  4046. CPU: vendor Intel device 906e9
  4047. CPU: family 06, model 9e, stepping 09
  4048. Clearing out pending MCEs
  4049. Clearing out pending MCEs
  4050. Setting up local APIC...
  4051. CPU: vendor Intel device 906e9
  4052. CPU: family 06, model 9e, stepping 09
  4053. Clearing out pending MCEs
  4054. Setting up local APIC...
  4055. Setting up local APIC...
  4056. apic_id: 0x03 done.
  4057. apic_id: 0x02 done.
  4058. cpu: energy policy set to 6
  4059. cpu: energy policy set to 6
  4060. Skip microcode update
  4061. CPU #1 initialized
  4062. Skip microcode update
  4063. CPU #2 initialized
  4064. apic_id: 0x01 done.
  4065. cpu: energy policy set to 6
  4066. Skip microcode update
  4067. CPU #3 initialized
  4068. bsp_do_flight_plan done after 217 msecs.
  4069. Enabling SMIs.
  4070. Locking SMM.
  4071. VMX status: enabled
  4072. VMX status: enabled
  4073. IA32_FEATURE_CONTROL status: locked
  4074. VMX status: enabled
  4075. VMX status: enabled
  4076. IA32_FEATURE_CONTROL status: locked
  4077. IA32_FEATURE_CONTROL status: locked
  4078. IA32_FEATURE_CONTROL status: locked
  4079. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 140 / 190 ms
  4080. Timestamp - device enumeration: 165932189229
  4081. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4082. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4083. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4084. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4085. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4086. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4087. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4088. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4089. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4090. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4091. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4092. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4093. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4094. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4095. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4096. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4097. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4098. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4099. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4100. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4101. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4102. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4103. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4104. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4105. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4106. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4107. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4108. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4109. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4110. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4111. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4112. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4113. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4114. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4115. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4116. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4117. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4118. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4119. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4120. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4121. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4122. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4123. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4124. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4125. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4126. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4127. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4128. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4129. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4130. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4131. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4132. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4133. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4134. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4135. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4136. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4137. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4138. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4139. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4140. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4141. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4142. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4143. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4144. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4145. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4146. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4147. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4148. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4149. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4150. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4151. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4152. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4153. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4154. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4155. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4156. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4157. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4158. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4159. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4160. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4161. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4162. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4163. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4164. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4165. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4166. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4167. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4168. Timestamp - calling FspSiliconInit: 168027389400
  4169. €€€€€€€€€€€€€€€€€€€€€€þþÿÿÿþÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþþÿÿÿÿþÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  4170.  
  4171. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  4172. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  4173. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  4174. CPU: AES supported, TXT NOT supported, VT supported
  4175. MCH: device id 590f (rev 06) is Kabylake-S
  4176. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  4177. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  4178. Timestamp - end of bootblock: 172569303
  4179. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  4180. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  4181. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4182. CBFS: Locating 'fallback/romstage'
  4183. CBFS: Found @ offset 80 size b284
  4184. Timestamp - starting to load romstage: 262901988
  4185. Timestamp - finished loading romstage: 279997394
  4186. BS: bootblock times (exec / console): total (unknown) / 67 ms
  4187.  
  4188.  
  4189. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  4190. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  4191. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  4192. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  4193. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  4194. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  4195. TCO_STS: 0000 0000
  4196. GEN_PMCON: e0810200 00001848
  4197. GBLRST_CAUSE: 00001000 00000000
  4198. prev_sleep_state 0
  4199. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4200. CBFS: Locating 'fspm.bin'
  4201. CBFS: Found @ offset 54dc0 size 63000
  4202. Timestamp - before RAM initialization: 514030232
  4203. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  4204. MRC: no data in 'RW_MRC_CACHE'
  4205. PRMRR disabled by config.
  4206. SPD @ 0x50
  4207. SPD: module type is DDR4
  4208. SPD: module part is PSD48G240082
  4209. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  4210. SPD: device width 16 bits, bus width 64 bits
  4211. SPD: module size is 8192 MB (per channel)
  4212. SPD @ 0x52
  4213. SPD: module type is DDR4
  4214. SPD: module part is CMK8GX4M1A2400C16
  4215. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  4216. SPD: device width 8 bits, bus width 64 bits
  4217. SPD: module size is 8192 MB (per channel)
  4218. SPD @ 0x00
  4219. SPD: module type is UNKNOWN
  4220. SPD: module part is
  4221. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  4222. SPD: device width -1 bits, bus width -1 bits
  4223. SPD @ 0x00
  4224. SPD: module type is UNKNOWN
  4225. SPD: module part is
  4226. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  4227. SPD: device width -1 bits, bus width -1 bits
  4228. Timestamp - calling FspMemoryInit: 2769304422
  4229.  
  4230.  
  4231. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  4232. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  4233. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  4234. CPU: AES supported, TXT NOT supported, VT supported
  4235. MCH: device id 590f (rev 06) is Kabylake-S
  4236. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  4237. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  4238. Timestamp - end of bootblock: 171704415
  4239. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  4240. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  4241. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4242. CBFS: Locating 'fallback/romstage'
  4243. CBFS: Found @ offset 80 size b284
  4244. Timestamp - starting to load romstage: 261418362
  4245. Timestamp - finished loading romstage: 278406974
  4246. BS: bootblock times (exec / console): total (unknown) / 67 ms
  4247.  
  4248.  
  4249. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  4250. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  4251. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  4252. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  4253. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  4254. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  4255. TCO_STS: 0000 0000
  4256. GEN_PMCON: e0210200 00001a48
  4257. GBLRST_CAUSE: 00001000 00000000
  4258. prev_sleep_state 0
  4259. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4260. CBFS: Locating 'fspm.bin'
  4261. CBFS: Found @ offset 54dc0 size 63000
  4262. Timestamp - before RAM initialization: 511074657
  4263. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  4264. MRC: no data in 'RW_MRC_CACHE'
  4265. PRMRR disabled by config.
  4266. SPD @ 0x50
  4267. SPD: module type is DDR4
  4268. SPD: module part is PSD48G240082
  4269. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  4270. SPD: device width 16 bits, bus width 64 bits
  4271. SPD: module size is 8192 MB (per channel)
  4272. SPD @ 0x52
  4273. SPD: module type is DDR4
  4274. SPD: module part is CMK8GX4M1A2400C16
  4275. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  4276. SPD: device width 8 bits, bus width 64 bits
  4277. SPD: module size is 8192 MB (per channel)
  4278. SPD @ 0x00
  4279. SPD: module type is UNKNOWN
  4280. SPD: module part is
  4281. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  4282. SPD: device width -1 bits, bus width -1 bits
  4283. SPD @ 0x00
  4284. SPD: module type is UNKNOWN
  4285. SPD: module part is
  4286. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  4287. SPD: device width -1 bits, bus width -1 bits
  4288. Timestamp - calling FspMemoryInit: 2764039685
  4289. Timestamp - returning from FspMemoryInit: 162991762729
  4290. CBMEM:
  4291. IMD: root @ 0x7afff000 254 entries.
  4292. IMD: root @ 0x7affec00 62 entries.
  4293. External stage cache:
  4294. IMD: root @ 0x7b3ff000 254 entries.
  4295. IMD: root @ 0x7b3fec00 62 entries.
  4296. Timestamp - after RAM initialization: 163075112451
  4297. 2 DIMMs found
  4298. SMM Memory Map
  4299. SMRAM : 0x7b000000 0x800000
  4300. Subregion 0: 0x7b000000 0x200000
  4301. Subregion 1: 0x7b200000 0x200000
  4302. Subregion 2: 0x7b400000 0x400000
  4303. top_of_ram = 0x7b000000
  4304. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  4305. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  4306. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  4307. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4308. CBFS: Locating 'fallback/postcar'
  4309. CBFS: Found @ offset e6e00 size 5668
  4310. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  4311. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  4312. Processing 287 relocs. Offset value of 0x78bd0000
  4313. Timestamp - end of romstage: 163335369202
  4314. BS: romstage times (exec / console): total (unknown) / 223 ms
  4315.  
  4316.  
  4317. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  4318. Timestamp - start of postcar: 163408623752
  4319. Timestamp - end of postcar: 163423555826
  4320. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4321. CBFS: Locating 'fallback/ramstage'
  4322. CBFS: Found @ offset 3c000 size 17f37
  4323. Timestamp - starting to load ramstage: 163481283208
  4324. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  4325. Timestamp - starting LZMA decompress (ignore for x86): 163521975274
  4326. Timestamp - finished LZMA decompress (ignore for x86): 163576786860
  4327. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  4328. Processing 3860 relocs. Offset value of 0x79d0a000
  4329. Timestamp - finished loading ramstage: 163647951768
  4330. BS: postcar times (exec / console): total (unknown) / 67 ms
  4331.  
  4332.  
  4333. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  4334. Timestamp - start of ramstage: 163722921856
  4335. Normal boot.
  4336. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4337. CBFS: Locating 'cpu_microcode_blob.bin'
  4338. CBFS: Found @ offset b380 size 30c00
  4339. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  4340. Skip microcode update
  4341. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4342. CBFS: Locating 'fsps.bin'
  4343. CBFS: Found @ offset b8dc0 size 2e000
  4344. Detected 2 core, 4 thread CPU.
  4345. Setting up SMI for CPU
  4346. IED base = 0x7b400000
  4347. IED size = 0x00400000
  4348. Will perform SMM setup.
  4349. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  4350. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  4351. Processing 16 relocs. Offset value of 0x00030000
  4352. Attempting to start 3 APs
  4353. Waiting for 10ms after sending INIT.
  4354. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  4355. done.
  4356. AP: slot 1 apic_id 3.
  4357. AP: slot 2 apic_id 2.
  4358. Waiting for 2nd SIPI to complete...done.
  4359. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  4360. Processing 13 relocs. Offset value of 0x00038000
  4361. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  4362. Installing SMM handler to 0x7b000000
  4363. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  4364. Processing 103 relocs. Offset value of 0x7b010000
  4365. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  4366. Processing 13 relocs. Offset value of 0x7b008000
  4367. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  4368. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  4369. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  4370. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  4371. Clearing SMI status registers
  4372. SMI_STS: PM1
  4373. TMROF TCO_STS: SECOND_TO
  4374. New SMBASE 0x7b000000
  4375. In relocation handler: CPU 0
  4376. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  4377. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4378. Relocation complete.
  4379. New SMBASE 0x7afff400
  4380. In relocation handler: CPU 3
  4381. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  4382. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4383. Relocation complete.
  4384. New SMBASE 0x7afff800
  4385. In relocation handler: CPU 2
  4386. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  4387. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4388. Relocation complete.
  4389. New SMBASE 0x7afffc00
  4390. In relocation handler: CPU 1
  4391. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  4392. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4393. Relocation complete.
  4394. Initializing CPU #0
  4395. CPU: vendor Intel device 906e9
  4396. CPU: family 06, model 9e, stepping 09
  4397. Clearing out pending MCEs
  4398. Setting up local APIC...
  4399. apic_id: 0x00 done.
  4400. cpu: energy policy set to 6
  4401. Turbo is unavailable
  4402. Skip microcode update
  4403. CPU #0 initialized
  4404. Initializing CPU #3
  4405. Initializing CPU #1
  4406. Initializing CPU #2
  4407. CPU: vendor Intel device 906e9
  4408. CPU: family 06, model 9e, stepping 09
  4409. CPU: vendor Intel device 906e9
  4410. CPU: family 06, model 9e, stepping 09
  4411. Clearing out pending MCEs
  4412. Clearing out pending MCEs
  4413. Setting up local APIC...
  4414. CPU: vendor Intel device 906e9
  4415. CPU: family 06, model 9e, stepping 09
  4416. Clearing out pending MCEs
  4417. apic_id: 0x03 done.
  4418. Setting up local APIC...
  4419. Setting up local APIC...
  4420. cpu: energy policy set to 6
  4421. apic_id: 0x02 done.
  4422. Skip microcode update
  4423. CPU #1 initialized
  4424. cpu: energy policy set to 6
  4425. apic_id: 0x01 done.
  4426. Skip microcode update
  4427. CPU #2 initialized
  4428. cpu: energy policy set to 6
  4429. Skip microcode update
  4430. CPU #3 initialized
  4431. bsp_do_flight_plan done after 217 msecs.
  4432. Enabling SMIs.
  4433. Locking SMM.
  4434. VMX status: enabled
  4435. VMX status: enabled
  4436. IA32_FEATURE_CONTROL status: locked
  4437. VMX status: enabled
  4438. VMX status: enabled
  4439. IA32_FEATURE_CONTROL status: locked
  4440. IA32_FEATURE_CONTROL status: locked
  4441. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 140 / 190 ms
  4442. IA32_FEATURE_CONTROL status: locked
  4443. Timestamp - device enumeration: 165081771736
  4444. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4445. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4446. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4447. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4448. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4449. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4450. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4451. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4452. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4453. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4454. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4455. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4456. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4457. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4458. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4459. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4460. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4461. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4462. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4463. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4464. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4465. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4466. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4467. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4468. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4469. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4470. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4471. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4472. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4473. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4474. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4475. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4476. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4477. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4478. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4479. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4480. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4481. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4482. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4483. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4484. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4485. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4486. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4487. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4488. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4489. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4490. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4491. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4492. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4493. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4494. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4495. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4496. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4497. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4498. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4499. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4500. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4501. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4502. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4503. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4504. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4505. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4506. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4507. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4508. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4509. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4510. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4511. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4512. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4513. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4514. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4515. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4516. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4517. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4518. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4519. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4520. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4521. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4522. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4523. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4524. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4525. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4526. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4527. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4528. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4529. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4530. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4531. Timestamp - calling FspSiliconInit: 167189459600
  4532. €@€€€€€€€ÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþþÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  4533.  
  4534. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  4535. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  4536. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  4537. CPU: AES supported, TXT NOT supported, VT supported
  4538. MCH: device id 590f (rev 06) is Kabylake-S
  4539. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  4540. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  4541. Timestamp - end of bootblock: 172497817
  4542. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  4543. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  4544. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4545. CBFS: Locating 'fallback/romstage'
  4546. CBFS: Found @ offset 80 size b284
  4547. Timestamp - starting to load romstage: 262779245
  4548. Timestamp - finished loading romstage: 279881271
  4549. BS: bootblock times (exec / console): total (unknown) / 67 ms
  4550.  
  4551.  
  4552. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  4553. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  4554. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  4555. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  4556. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  4557. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  4558. TCO_STS: 0000 0000
  4559. GEN_PMCON: e0810200 00001848
  4560. GBLRST_CAUSE: 00001000 00000000
  4561. prev_sleep_state 0
  4562. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4563. CBFS: Locating 'fspm.bin'
  4564. CBFS: Found @ offset 54dc0 size 63000
  4565. Timestamp - before RAM initialization: 513941188
  4566. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  4567. MRC: no data in 'RW_MRC_CACHE'
  4568. PRMRR disabled by config.
  4569. SPD @ 0x50
  4570. SPD: module type is DDR4
  4571. SPD: module part is PSD48G240082
  4572. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  4573. SPD: device width 16 bits, bus width 64 bits
  4574. SPD: module size is 8192 MB (per channel)
  4575. SPD @ 0x52
  4576. SPD: module type is DDR4
  4577. SPD: module part is CMK8GX4M1A2400C16
  4578. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  4579. SPD: device width 8 bits, bus width 64 bits
  4580. SPD: module size is 8192 MB (per channel)
  4581. SPD @ 0x00
  4582. SPD: module type is UNKNOWN
  4583. SPD: module part is
  4584. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  4585. SPD: device width -1 bits, bus width -1 bits
  4586. SPD @ 0x00
  4587. SPD: module type is UNKNOWN
  4588. SPD: module part is
  4589. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  4590. SPD: device width -1 bits, bus width -1 bits
  4591. Timestamp - calling FspMemoryInit: 2769314218
  4592.  
  4593.  
  4594. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  4595. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  4596. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  4597. CPU: AES supported, TXT NOT supported, VT supported
  4598. MCH: device id 590f (rev 06) is Kabylake-S
  4599. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  4600. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  4601. Timestamp - end of bootblock: 171685757
  4602. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  4603. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  4604. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4605. CBFS: Locating 'fallback/romstage'
  4606. CBFS: Found @ offset 80 size b284
  4607. Timestamp - starting to load romstage: 261443609
  4608. Timestamp - finished loading romstage: 278430708
  4609. BS: bootblock times (exec / console): total (unknown) / 67 ms
  4610.  
  4611.  
  4612. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  4613. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  4614. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  4615. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  4616. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  4617. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  4618. TCO_STS: 0000 0000
  4619. GEN_PMCON: e0210200 00001a48
  4620. GBLRST_CAUSE: 00001000 00000000
  4621. prev_sleep_state 0
  4622. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4623. CBFS: Locating 'fspm.bin'
  4624. CBFS: Found @ offset 54dc0 size 63000
  4625. Timestamp - before RAM initialization: 511046147
  4626. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  4627. MRC: no data in 'RW_MRC_CACHE'
  4628. PRMRR disabled by config.
  4629. SPD @ 0x50
  4630. SPD: module type is DDR4
  4631. SPD: module part is PSD48G240082
  4632. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  4633. SPD: device width 16 bits, bus width 64 bits
  4634. SPD: module size is 8192 MB (per channel)
  4635. SPD @ 0x52
  4636. SPD: module type is DDR4
  4637. SPD: module part is CMK8GX4M1A2400C16
  4638. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  4639. SPD: device width 8 bits, bus width 64 bits
  4640. SPD: module size is 8192 MB (per channel)
  4641. SPD @ 0x00
  4642. SPD: module type is UNKNOWN
  4643. SPD: module part is
  4644. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  4645. SPD: device width -1 bits, bus width -1 bits
  4646. SPD @ 0x00
  4647. SPD: module type is UNKNOWN
  4648. SPD: module part is
  4649. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  4650. SPD: device width -1 bits, bus width -1 bits
  4651. Timestamp - calling FspMemoryInit: 2765604980
  4652. Timestamp - returning from FspMemoryInit: 163757629574
  4653. CBMEM:
  4654. IMD: root @ 0x7afff000 254 entries.
  4655. IMD: root @ 0x7affec00 62 entries.
  4656. External stage cache:
  4657. IMD: root @ 0x7b3ff000 254 entries.
  4658. IMD: root @ 0x7b3fec00 62 entries.
  4659. Timestamp - after RAM initialization: 163841490263
  4660. 2 DIMMs found
  4661. SMM Memory Map
  4662. SMRAM : 0x7b000000 0x800000
  4663. Subregion 0: 0x7b000000 0x200000
  4664. Subregion 1: 0x7b200000 0x200000
  4665. Subregion 2: 0x7b400000 0x400000
  4666. top_of_ram = 0x7b000000
  4667. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  4668. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  4669. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  4670. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4671. CBFS: Locating 'fallback/postcar'
  4672. CBFS: Found @ offset e6e00 size 5668
  4673. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  4674. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  4675. Processing 287 relocs. Offset value of 0x78bd0000
  4676. Timestamp - end of romstage: 164103421580
  4677. BS: romstage times (exec / console): total (unknown) / 224 ms
  4678.  
  4679.  
  4680. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  4681. Timestamp - start of postcar: 164177160632
  4682. Timestamp - end of postcar: 164192186413
  4683. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4684. CBFS: Locating 'fallback/ramstage'
  4685. CBFS: Found @ offset 3c000 size 17f37
  4686. Timestamp - starting to load ramstage: 164250259934
  4687. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  4688. Timestamp - starting LZMA decompress (ignore for x86): 164291218961
  4689. Timestamp - finished LZMA decompress (ignore for x86): 164346240317
  4690. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  4691. Processing 3860 relocs. Offset value of 0x79d0a000
  4692. Timestamp - finished loading ramstage: 164417890968
  4693. BS: postcar times (exec / console): total (unknown) / 67 ms
  4694.  
  4695.  
  4696. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  4697. Timestamp - start of ramstage: 164493356609
  4698. Normal boot.
  4699. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4700. CBFS: Locating 'cpu_microcode_blob.bin'
  4701. CBFS: Found @ offset b380 size 30c00
  4702. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  4703. Skip microcode update
  4704. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  4705. CBFS: Locating 'fsps.bin'
  4706. CBFS: Found @ offset b8dc0 size 2e000
  4707. Detected 2 core, 4 thread CPU.
  4708. Setting up SMI for CPU
  4709. IED base = 0x7b400000
  4710. IED size = 0x00400000
  4711. Will perform SMM setup.
  4712. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  4713. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  4714. Processing 16 relocs. Offset value of 0x00030000
  4715. Attempting to start 3 APs
  4716. Waiting for 10ms after sending INIT.
  4717. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  4718. done.
  4719. AP: slot 1 apic_id 3.
  4720. AP: slot 2 apic_id 2.
  4721. Waiting for 2nd SIPI to complete...done.
  4722. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  4723. Processing 13 relocs. Offset value of 0x00038000
  4724. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  4725. Installing SMM handler to 0x7b000000
  4726. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  4727. Processing 103 relocs. Offset value of 0x7b010000
  4728. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  4729. Processing 13 relocs. Offset value of 0x7b008000
  4730. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  4731. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  4732. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  4733. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  4734. Clearing SMI status registers
  4735. SMI_STS: PM1
  4736. TMROF TCO_STS: SECOND_TO
  4737. New SMBASE 0x7b000000
  4738. In relocation handler: CPU 0
  4739. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  4740. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4741. Relocation complete.
  4742. New SMBASE 0x7afff400
  4743. In relocation handler: CPU 3
  4744. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  4745. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4746. Relocation complete.
  4747. New SMBASE 0x7afffc00
  4748. In relocation handler: CPU 1
  4749. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  4750. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4751. Relocation complete.
  4752. New SMBASE 0x7afff800
  4753. In relocation handler: CPU 2
  4754. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  4755. Writing SMRR. base = 0x7b000006, mask=0xff800800
  4756. Relocation complete.
  4757. Initializing CPU #0
  4758. CPU: vendor Intel device 906e9
  4759. CPU: family 06, model 9e, stepping 09
  4760. Clearing out pending MCEs
  4761. Setting up local APIC...
  4762. apic_id: 0x00 done.
  4763. cpu: energy policy set to 6
  4764. Turbo is unavailable
  4765. Skip microcode update
  4766. CPU #0 initialized
  4767. Initializing CPU #3
  4768. Initializing CPU #1
  4769. Initializing CPU #2
  4770. CPU: vendor Intel device 906e9
  4771. CPU: family 06, model 9e, stepping 09
  4772. CPU: vendor Intel device 906e9
  4773. CPU: family 06, model 9e, stepping 09
  4774. Clearing out pending MCEs
  4775. Clearing out pending MCEs
  4776. Setting up local APIC...
  4777. CPU: vendor Intel device 906e9
  4778. CPU: family 06, model 9e, stepping 09
  4779. Clearing out pending MCEs
  4780. Setting up local APIC...
  4781. Setting up local APIC...
  4782. apic_id: 0x02 done.
  4783. apic_id: 0x03 done.
  4784. cpu: energy policy set to 6
  4785. cpu: energy policy set to 6
  4786. Skip microcode update
  4787. CPU #2 initialized
  4788. Skip microcode update
  4789. CPU #1 initialized
  4790. apic_id: 0x01 done.
  4791. cpu: energy policy set to 6
  4792. Skip microcode update
  4793. CPU #3 initialized
  4794. bsp_do_flight_plan done after 219 msecs.
  4795. Enabling SMIs.
  4796. Locking SMM.
  4797. VMX status: enabled
  4798. VMX status: enabled
  4799. IA32_FEATURE_CONTROL status: locked
  4800. VMX status: enabled
  4801. VMX status: enabled
  4802. IA32_FEATURE_CONTROL status: locked
  4803. IA32_FEATURE_CONTROL status: locked
  4804. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 142 / 191 ms
  4805. IA32_FEATURE_CONTROL status: locked
  4806. Timestamp - device enumeration: 165860631581
  4807. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4808. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4809. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4810. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4811. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4812. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4813. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4814. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4815. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4816. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4817. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4818. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4819. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4820. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4821. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4822. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4823. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4824. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4825. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4826. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4827. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4828. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4829. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4830. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4831. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4832. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4833. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4834. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4835. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4836. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4837. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4838. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4839. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4840. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4841. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4842. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4843. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4844. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4845. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4846. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4847. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4848. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4849. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4850. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4851. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4852. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4853. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4854. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4855. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4856. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4857. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4858. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4859. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4860. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4861. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4862. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4863. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4864. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4865. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4866. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4867. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4868. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4869. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4870. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4871. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4872. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4873. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4874. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4875. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4876. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4877. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4878. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4879. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4880. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4881. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4882. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4883. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4884. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4885. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4886. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4887. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4888. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4889. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4890. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4891. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4892. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4893. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  4894. Timestamp - calling FspSiliconInit: 167967852348
  4895. Timestamp - returning from FspSiliconInit: 168066056940
  4896. ITSS IRQ Polarities Before:
  4897. IPC0: 0x00ff4000
  4898. IPC1: 0x00000007
  4899. IPC2: 0x00000000
  4900. IPC3: 0x00000000
  4901. ITSS IRQ Polarities After:
  4902. IPC0: 0x00ff4000
  4903. IPC1: 0x00000007
  4904. IPC2: 0x00000000
  4905. IPC3: 0x00000000
  4906. Found PCIe Root Port #5 at PCI: 00:1c.0.
  4907. Found PCIe Root Port #8 at PCI: 00:1c.7.
  4908. Found PCIe Root Port #9 at PCI: 00:1d.0.
  4909. pcie_rp_update_dev: Couldn't find PCIe Root Port #1 (originally PCI: 00:1c.0) which was enabled in devicetree, removing.
  4910. Remapping PCIe Root Port #5 from PCI: 00:1c.4 to new function number 0.
  4911. BS: BS_DEV_INIT_CHIPS run times (exec / console): 28 / 592 ms
  4912. Enumerating buses...
  4913. Root Device scanning...
  4914. CPU_CLUSTER: 0 enabled
  4915. DOMAIN: 0000 enabled
  4916. DOMAIN: 0000 scanning...
  4917. PCI: pci_scan_bus for bus 00
  4918. PCI: 00:00.0 [8086/590f] enabled
  4919. PCI: 00:01.0 subordinate bus PCI Express
  4920. PCI: 00:01.0 [8086/1901] enabled
  4921. PCI: 00:02.0 [8086/5912] enabled
  4922. PCI: 00:04.0 [8086/1903] enabled
  4923. PCI: 00:14.0 [8086/a12f] enabled
  4924. PCI: 00:14.2 [8086/a131] enabled
  4925. PCI: 00:16.0 [8086/a13a] enabled
  4926. PCI: 00:17.0 [8086/a102] enabled
  4927. PCI: 00:1c.0 [8086/a114] enabled
  4928. PCI: 00:1c.7 [8086/a117] enabled
  4929. PCI: 00:1d.0 [8086/a118] enabled
  4930. PCI: 00:1f.0 [8086/a143] enabled
  4931. PCI: 00:1f.1 [8086/a120] enabled
  4932. PCI: 00:1f.2 [8086/a121] enabled
  4933. PCI: 00:1f.3 [8086/a170] enabled
  4934. PCI: 00:1f.4 [8086/a123] enabled
  4935. PCI: 00:1f.5 [8086/a124] enabled
  4936. PCI: Leftover static devices:
  4937. PCI: 00:14.1
  4938. PCI: 00:15.0
  4939. PCI: 00:15.1
  4940. PCI: 00:15.2
  4941. PCI: 00:15.3
  4942. PCI: 00:16.1
  4943. PCI: 00:16.2
  4944. PCI: 00:16.3
  4945. PCI: 00:16.4
  4946. PCI: 00:19.0
  4947. PCI: 00:19.1
  4948. PCI: 00:19.2
  4949. PCI: 00:1e.0
  4950. PCI: 00:1e.1
  4951. PCI: 00:1e.2
  4952. PCI: 00:1e.3
  4953. PCI: 00:1e.4
  4954. PCI: 00:1e.5
  4955. PCI: 00:1e.6
  4956. PCI: 00:1f.6
  4957. PCI: Check your devicetree.cb.
  4958. PCI: 00:01.0 scanning...
  4959. PCI: pci_scan_bus for bus 01
  4960. PCI: 01:00.0 [10de/1d01] enabled
  4961. PCI: 01:00.1 [10de/0fb8] enabled
  4962. Enabling Common Clock Configuration
  4963. ASPM: Enabled L0s and L1
  4964. PCIe: Max_Payload_Size adjusted to 256
  4965. Enabling Common Clock Configuration
  4966. ASPM: Enabled L0s and L1
  4967. PCIe: Max_Payload_Size adjusted to 256
  4968. scan_bus: bus PCI: 00:01.0 finished in 28 msecs
  4969. PCI: 00:02.0 scanning...
  4970. scan_bus: bus PCI: 00:02.0 finished in 0 msecs
  4971. PCI: 00:14.0 scanning...
  4972. scan_bus: bus PCI: 00:14.0 finished in 0 msecs
  4973. PCI: 00:1c.0 scanning...
  4974. PCI: pci_scan_bus for bus 02
  4975. scan_bus: bus PCI: 00:1c.0 finished in 2 msecs
  4976. PCI: 00:1c.7 scanning...
  4977. PCI: pci_scan_bus for bus 03
  4978. PCI: 03:00.0 [10ec/8168] enabled
  4979. Enabling Common Clock Configuration
  4980. ASPM: Enabled L1
  4981. PCIe: Max_Payload_Size adjusted to 128
  4982. scan_bus: bus PCI: 00:1c.7 finished in 15 msecs
  4983. PCI: 00:1d.0 scanning...
  4984. PCI: pci_scan_bus for bus 04
  4985. scan_bus: bus PCI: 00:1d.0 finished in 2 msecs
  4986. PCI: 00:1f.0 scanning...
  4987. PNP: 002e.2 enabled
  4988. PNP: 002e.5 enabled
  4989. PNP: 002e.6 disabled
  4990. PNP: 002e.7 disabled
  4991. PNP: 002e.107 disabled
  4992. PNP: 002e.8 disabled
  4993. PNP: 002e.108 disabled
  4994. PNP: 002e.308 disabled
  4995. PNP: 002e.408 disabled
  4996. PNP: 002e.9 disabled
  4997. PNP: 002e.109 disabled
  4998. PNP: 002e.209 disabled
  4999. PNP: 002e.309 disabled
  5000. PNP: 002e.a enabled
  5001. PNP: 002e.b disabled
  5002. PNP: 002e.d disabled
  5003. PNP: 002e.e disabled
  5004. PNP: 002e.f disabled
  5005. PNP: 002e.14 disabled
  5006. PNP: 002e.16 disabled
  5007. PNP: 002e.116 disabled
  5008. PNP: 002e.316 disabled
  5009. PNP: 002e.416 disabled
  5010. PNP: 002e.516 disabled
  5011. PNP: 002e.616 disabled
  5012. PNP: 002e.716 disabled
  5013. PNP: 002e.207 enabled
  5014. PNP: 002e.11 enabled
  5015. PNP: 002e.12 enabled
  5016. PNP: 002e.15 enabled
  5017. scan_bus: bus PCI: 00:1f.0 finished in 65 msecs
  5018. PCI: 00:1f.2 scanning...
  5019. scan_bus: bus PCI: 00:1f.2 finished in 0 msecs
  5020. PCI: 00:1f.4 scanning...
  5021. scan_bus: bus PCI: 00:1f.4 finished in 0 msecs
  5022. scan_bus: bus DOMAIN: 0000 finished in 272 msecs
  5023. scan_bus: bus Root Device finished in 283 msecs
  5024. done
  5025. BS: BS_DEV_ENUMERATE run times (exec / console): 2 / 291 ms
  5026. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  5027. MRC: Checking cached data update for 'RW_MRC_CACHE'.
  5028. SF: Detected 00 0000 with sector size 0x1000, total 0x1000000
  5029. MRC: no data in 'RW_MRC_CACHE'
  5030. MRC: cache data 'RW_MRC_CACHE' needs update.
  5031. SPI Transaction Error at Flash Offset c00000 HSFSTS = 0x01046003
  5032. REGF metadata allocation failed: 392 data blocks 4096 total blocks
  5033. MRC: Could not find region 'UNIFIED_MRC_CACHE'
  5034. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  5035. MRC: NOT enabling PRR for 'RW_MRC_CACHE'.
  5036. BS: BS_DEV_ENUMERATE exit times (exec / console): 0 / 50 ms
  5037. Timestamp - device configuration: 169683382392
  5038. found VGA at PCI: 01:00.0
  5039. Setting up VGA for PCI: 01:00.0
  5040. Setting PCI_BRIDGE_CTL_VGA for bridge PCI: 00:01.0
  5041. Setting PCI_BRIDGE_CTL_VGA for bridge DOMAIN: 0000
  5042. Setting PCI_BRIDGE_CTL_VGA for bridge Root Device
  5043. Allocating resources...
  5044. Reading resources...
  5045. Done reading resources.
  5046. Setting resources...
  5047. PCI: 00:01.0 1c <- [0x0000002000 - 0x0000002fff] size 0x00001000 gran 0x0c bus 01 io
  5048. PCI: 00:01.0 24 <- [0x00a0000000 - 0x00b1ffffff] size 0x12000000 gran 0x14 bus 01 prefmem
  5049. PCI: 00:01.0 20 <- [0x00d0000000 - 0x00d10fffff] size 0x01100000 gran 0x14 bus 01 mem
  5050. PCI: 01:00.0 10 <- [0x00d0000000 - 0x00d0ffffff] size 0x01000000 gran 0x18 mem
  5051. PCI: 01:00.0 14 <- [0x00a0000000 - 0x00afffffff] size 0x10000000 gran 0x1c prefmem64
  5052. PCI: 01:00.0 1c <- [0x00b0000000 - 0x00b1ffffff] size 0x02000000 gran 0x19 prefmem64
  5053. PCI: 01:00.0 24 <- [0x0000002000 - 0x000000207f] size 0x00000080 gran 0x07 io
  5054. PCI: 01:00.0 30 <- [0x00d1000000 - 0x00d107ffff] size 0x00080000 gran 0x13 romem
  5055. PCI: 01:00.1 10 <- [0x00d1080000 - 0x00d1083fff] size 0x00004000 gran 0x0e mem
  5056. PCI: 00:02.0 10 <- [0x00d2000000 - 0x00d2ffffff] size 0x01000000 gran 0x18 mem64
  5057. PCI: 00:02.0 18 <- [0x00c0000000 - 0x00cfffffff] size 0x10000000 gran 0x1c prefmem64
  5058. PCI: 00:02.0 20 <- [0x0000004000 - 0x000000403f] size 0x00000040 gran 0x06 io
  5059. PCI: 00:04.0 10 <- [0x00d3120000 - 0x00d3127fff] size 0x00008000 gran 0x0f mem64
  5060. PCI: 00:14.0 10 <- [0x00d3100000 - 0x00d310ffff] size 0x00010000 gran 0x10 mem64
  5061. PCI: 00:14.2 10 <- [0x00d3132000 - 0x00d3132fff] size 0x00001000 gran 0x0c mem64
  5062. PCI: 00:16.0 10 <- [0x00d3133000 - 0x00d3133fff] size 0x00001000 gran 0x0c mem64
  5063. PCI: 00:17.0 10 <- [0x00d3130000 - 0x00d3131fff] size 0x00002000 gran 0x0d mem
  5064. PCI: 00:17.0 14 <- [0x00d3136000 - 0x00d31360ff] size 0x00000100 gran 0x08 mem
  5065. PCI: 00:17.0 18 <- [0x0000004060 - 0x0000004067] size 0x00000008 gran 0x03 io
  5066. PCI: 00:17.0 1c <- [0x0000004068 - 0x000000406b] size 0x00000004 gran 0x02 io
  5067. PCI: 00:17.0 20 <- [0x0000004040 - 0x000000405f] size 0x00000020 gran 0x05 io
  5068. PCI: 00:17.0 24 <- [0x00d3135000 - 0x00d31357ff] size 0x00000800 gran 0x0b mem
  5069. PCI: 00:1c.0 1c <- [0x000000ef9f - 0x000000ef9e] size 0x00000000 gran 0x0c bus 02 io
  5070. PCI: 00:1c.0 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 02 prefmem
  5071. PCI: 00:1c.0 20 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 02 mem
  5072. PCI: 00:1c.7 1c <- [0x0000003000 - 0x0000003fff] size 0x00001000 gran 0x0c bus 03 io
  5073. PCI: 00:1c.7 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 03 prefmem
  5074. PCI: 00:1c.7 20 <- [0x00d3000000 - 0x00d30fffff] size 0x00100000 gran 0x14 bus 03 mem
  5075. PCI: 03:00.0 10 <- [0x0000003000 - 0x00000030ff] size 0x00000100 gran 0x08 io
  5076. PCI: 03:00.0 18 <- [0x00d3004000 - 0x00d3004fff] size 0x00001000 gran 0x0c mem64
  5077. PCI: 03:00.0 20 <- [0x00d3000000 - 0x00d3003fff] size 0x00004000 gran 0x0e mem64
  5078. PCI: 00:1d.0 1c <- [0x000000ef9f - 0x000000ef9e] size 0x00000000 gran 0x0c bus 04 io
  5079. PCI: 00:1d.0 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 04 prefmem
  5080. PCI: 00:1d.0 20 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 04 mem
  5081. PNP: 002e.2 60 <- [0x00000003f8 - 0x00000003ff] size 0x00000008 gran 0x03 io
  5082. PNP: 002e.2 70 <- [0x0000000004 - 0x0000000004] size 0x00000001 gran 0x00 irq
  5083. PNP: 002e.5 60 <- [0x0000000060 - 0x0000000060] size 0x00000001 gran 0x00 io
  5084. PNP: 002e.5 62 <- [0x0000000064 - 0x0000000064] size 0x00000001 gran 0x00 io
  5085. PNP: 002e.5 70 <- [0x0000000001 - 0x0000000001] size 0x00000001 gran 0x00 irq
  5086. PNP: 002e.5 72 <- [0x000000000c - 0x000000000c] size 0x00000001 gran 0x00 irq
  5087. LPC: Opened IO window LGIR1: base 3f8 size 8
  5088. LPC: Opened IO window LGIR2: base 60 size 1
  5089. LPC: Opened IO window LGIR3: base 64 size 1
  5090. LPC: Cannot open IO window: 0 size 8
  5091. No more IO windows
  5092. LPC: Cannot open IO window: 0 size 8
  5093. No more IO windows
  5094. LPC: Cannot open IO window: 290 size 2
  5095. No more IO windows
  5096. LPC: Cannot open IO window: 0 size 8
  5097. No more IO windows
  5098. PCI: 00:1f.2 10 <- [0x00d3128000 - 0x00d312bfff] size 0x00004000 gran 0x0e mem
  5099. PCI: 00:1f.3 10 <- [0x00d312c000 - 0x00d312ffff] size 0x00004000 gran 0x0e mem64
  5100. PCI: 00:1f.3 20 <- [0x00d3110000 - 0x00d311ffff] size 0x00010000 gran 0x10 mem64
  5101. PCI: 00:1f.4 10 <- [0x00d3137000 - 0x00d31370ff] size 0x00000100 gran 0x08 mem64
  5102. PCI: 00:1f.5 10 <- [0x00d3134000 - 0x00d3134fff] size 0x00001000 gran 0x0c mem
  5103. Done setting resources.
  5104. Done allocating resources.
  5105. BS: BS_DEV_RESOURCES run times (exec / console): 1 / 415 ms
  5106. Timestamp - calling FspNotify(AfterPciEnumeration): 171329197211
  5107. Timestamp - returning from FspNotify(AfterPciEnumeration): 171353286426
  5108. BS: BS_DEV_ENABLE entry times (exec / console): 0 / 13 ms
  5109. Timestamp - device enable: 171400518149
  5110. Enabling resources...
  5111. PCI: 00:00.0 subsystem <- 1043/8694
  5112. PCI: 00:00.0 cmd <- 06
  5113. PCI: 00:01.0 bridge ctrl <- 001b
  5114. PCI: 00:01.0 cmd <- 07
  5115. PCI: 00:02.0 subsystem <- 1043/8694
  5116. PCI: 00:02.0 cmd <- 03
  5117. PCI: 00:04.0 cmd <- 02
  5118. PCI: 00:14.0 subsystem <- 1043/8694
  5119. PCI: 00:14.0 cmd <- 02
  5120. PCI: 00:14.2 subsystem <- 1043/8694
  5121. PCI: 00:14.2 cmd <- 02
  5122. PCI: 00:16.0 subsystem <- 1043/8694
  5123. PCI: 00:16.0 cmd <- 02
  5124. PCI: 00:17.0 subsystem <- 1043/8694
  5125. PCI: 00:17.0 cmd <- 03
  5126. PCI: 00:1c.0 bridge ctrl <- 0013
  5127. PCI: 00:1c.0 subsystem <- 1043/8694
  5128. PCI: 00:1c.0 cmd <- 00
  5129. PCI: 00:1c.7 bridge ctrl <- 0013
  5130. PCI: 00:1c.7 subsystem <- 1043/8694
  5131. PCI: 00:1c.7 cmd <- 07
  5132. PCI: 00:1d.0 bridge ctrl <- 0013
  5133. PCI: 00:1d.0 subsystem <- 1043/8694
  5134. PCI: 00:1d.0 cmd <- 00
  5135. PCI: 00:1f.0 subsystem <- 1043/8694
  5136. PCI: 00:1f.0 cmd <- 07
  5137. PCI: 00:1f.2 subsystem <- 1043/8694
  5138. PCI: 00:1f.2 cmd <- 06
  5139. PCI: 00:1f.3 subsystem <- 1043/8694
  5140. PCI: 00:1f.3 cmd <- 02
  5141. PCI: 00:1f.4 subsystem <- 1043/8694
  5142. PCI: 00:1f.4 cmd <- 03
  5143. PCI: 00:1f.5 subsystem <- 1043/8694
  5144. PCI: 00:1f.5 cmd <- 406
  5145. PCI: 01:00.0 cmd <- 03
  5146. PCI: 01:00.1 cmd <- 02
  5147. PCI: 03:00.0 cmd <- 03
  5148. done.
  5149. BS: BS_DEV_ENABLE run times (exec / console): 1 / 108 ms
  5150. ME: Version : Unavailable
  5151. BS: BS_DEV_ENABLE exit times (exec / console): 0 / 2 ms
  5152. Timestamp - device initialization: 171876120789
  5153. Initializing devices...
  5154. Root Device init
  5155. Root Device init finished in 0 msecs
  5156. CPU_CLUSTER: 0 init
  5157. CPU_CLUSTER: 0 init finished in 0 msecs
  5158. PCI: 00:00.0 init
  5159. CPU TDP: 51 Watts
  5160. CPU PL2 = 91 Watts
  5161. PCI: 00:00.0 init finished in 4 msecs
  5162. PCI: 00:02.0 init
  5163. PCI: 00:02.0 init finished in 0 msecs
  5164. PCI: 00:04.0 init
  5165. PCI: 00:04.0 init finished in 0 msecs
  5166. PCI: 00:14.0 init
  5167. PCI: 00:14.0 init finished in 0 msecs
  5168. PCI: 00:14.2 init
  5169. PCI: 00:14.2 init finished in 0 msecs
  5170. PCI: 00:16.0 init
  5171. PCI: 00:16.0 init finished in 0 msecs
  5172. PCI: 00:17.0 init
  5173. PCI: 00:17.0 init finished in 0 msecs
  5174. PCI: 00:1c.0 init
  5175. Initializing PCH PCIe bridge.
  5176. PCI: 00:1c.0 init finished in 2 msecs
  5177. PCI: 00:1c.7 init
  5178. Initializing PCH PCIe bridge.
  5179. PCI: 00:1c.7 init finished in 2 msecs
  5180. PCI: 00:1d.0 init
  5181. Initializing PCH PCIe bridge.
  5182. PCI: 00:1d.0 init finished in 2 msecs
  5183. PCI: 00:1f.0 init
  5184. IOAPIC: Initializing IOAPIC at 0xfec00000
  5185. IOAPIC: Bootstrap Processor Local APIC = 0x00
  5186. IOAPIC: ID = 0x02
  5187. PCI: 00:1f.0 init finished in 10 msecs
  5188. PCI: 00:1f.2 init
  5189. RTC Init
  5190. Set power on after power failure.
  5191. Disabling ACPI via APMC:
  5192. done.
  5193. Disabling Deep S3
  5194. Disabling Deep S3
  5195. Disabling Deep S4
  5196. Disabling Deep S4
  5197. Disabling Deep S5
  5198. Disabling Deep S5
  5199. PCI: 00:1f.2 init finished in 17 msecs
  5200. PCI: 00:1f.3 init
  5201. PCI: 00:1f.3 init finished in 0 msecs
  5202. PCI: 00:1f.4 init
  5203. PCI: 00:1f.4 init finished in 0 msecs
  5204. PCI: 00:1f.5 init
  5205. PCI: 00:1f.5 init finished in 0 msecs
  5206. PCI: 01:00.0 init
  5207. Timestamp - Option ROM initialization: 172424845430
  5208. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5209. CBFS: Locating 'pci10de,1d01.rom'
  5210. CBFS: 'pci10de,1d01.rom' not found.
  5211. PCI Option ROM loading disabled for PCI: 01:00.0
  5212. PCI: 01:00.0 init finished in 21 msecs
  5213. PCI: 01:00.1 init
  5214. PCI: 01:00.1 init finished in 0 msecs
  5215. PCI: 03:00.0 init
  5216. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5217. CBFS: Locating 'rt8168-macaddress'
  5218. CBFS: Found @ offset 54600 size 11
  5219. r8168: Resetting NIC...done
  5220. r8168: Programming MAC Address...done
  5221. PCI: 03:00.0 init finished in 17 msecs
  5222. PNP: 002e.2 init
  5223. PNP: 002e.2 init finished in 0 msecs
  5224. PNP: 002e.5 init
  5225. PNP: 002e.5 init finished in 0 msecs
  5226. PNP: 002e.a init
  5227. PNP: 002e.a init finished in 0 msecs
  5228. PNP: 002e.207 init
  5229. PNP: 002e.207 init finished in 0 msecs
  5230. PNP: 002e.11 init
  5231. PNP: 002e.11 init finished in 0 msecs
  5232. PNP: 002e.12 init
  5233. PNP: 002e.12 init finished in 0 msecs
  5234. PNP: 002e.15 init
  5235. PNP: 002e.15 init finished in 0 msecs
  5236. Devices initialized
  5237. BS: BS_DEV_INIT run times (exec / console): 2 / 231 ms
  5238. Finalize devices...
  5239. Devices finalized
  5240. Timestamp - device setup done: 172819558412
  5241. BS: BS_POST_DEVICE run times (exec / console): 0 / 8 ms
  5242. Timestamp - cbmem post: 172856031121
  5243. BS: BS_OS_RESUME_CHECK run times (exec / console): 0 / 3 ms
  5244. Timestamp - write tables: 172891488746
  5245. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5246. CBFS: Locating 'fallback/dsdt.aml'
  5247. CBFS: Found @ offset ec4c0 size 2c93
  5248. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5249. CBFS: Locating 'fallback/slic'
  5250. CBFS: 'fallback/slic' not found.
  5251. ACPI: Writing ACPI tables at 7aa9f000.
  5252. ACPI: * FACS
  5253. ACPI: * DSDT
  5254. ACPI: * FADT
  5255. SCI is IRQ9
  5256. ACPI: added table 1/32, length now 40
  5257. ACPI: * SSDT
  5258. Found 1 CPU(s) with 4 core(s) each.
  5259. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  5260. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  5261. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  5262. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  5263. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  5264. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  5265. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  5266. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  5267. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  5268. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  5269. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  5270. PSS: 800MHz power 7088 control 0x800 status 0x800
  5271. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  5272. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  5273. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  5274. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  5275. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  5276. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  5277. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  5278. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  5279. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  5280. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  5281. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  5282. PSS: 800MHz power 7088 control 0x800 status 0x800
  5283. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  5284. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  5285. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  5286. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  5287. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  5288. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  5289. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  5290. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  5291. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  5292. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  5293. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  5294. PSS: 800MHz power 7088 control 0x800 status 0x800
  5295. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  5296. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  5297. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  5298. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  5299. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  5300. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  5301. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  5302. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  5303. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  5304. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  5305. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  5306. PSS: 800MHz power 7088 control 0x800 status 0x800
  5307. BUG: Parent of device PNP: 002e.2 is not a PNP device
  5308. BUG: Check your devicetree!
  5309. BUG: Parent of device PNP: 002e.5 is not a PNP device
  5310. BUG: Check your devicetree!
  5311. BUG: Parent of device PNP: 002e.6 is not a PNP device
  5312. BUG: Check your devicetree!
  5313. BUG: Parent of device PNP: 002e.107 is not a PNP device
  5314. BUG: Check your devicetree!
  5315. BUG: Parent of device PNP: 002e.8 is not a PNP device
  5316. BUG: Check your devicetree!
  5317. BUG: Parent of device PNP: 002e.108 is not a PNP device
  5318. BUG: Check your devicetree!
  5319. BUG: Parent of device PNP: 002e.308 is not a PNP device
  5320. BUG: Check your devicetree!
  5321. BUG: Parent of device PNP: 002e.408 is not a PNP device
  5322. BUG: Check your devicetree!
  5323. BUG: Parent of device PNP: 002e.9 is not a PNP device
  5324. BUG: Check your devicetree!
  5325. BUG: Parent of device PNP: 002e.109 is not a PNP device
  5326. BUG: Check your devicetree!
  5327. BUG: Parent of device PNP: 002e.209 is not a PNP device
  5328. BUG: Check your devicetree!
  5329. BUG: Parent of device PNP: 002e.309 is not a PNP device
  5330. BUG: Check your devicetree!
  5331. BUG: Parent of device PNP: 002e.a is not a PNP device
  5332. BUG: Check your devicetree!
  5333. BUG: Parent of device PNP: 002e.b is not a PNP device
  5334. BUG: Check your devicetree!
  5335. BUG: Parent of device PNP: 002e.d is not a PNP device
  5336. BUG: Check your devicetree!
  5337. BUG: Parent of device PNP: 002e.e is not a PNP device
  5338. BUG: Check your devicetree!
  5339. BUG: Parent of device PNP: 002e.f is not a PNP device
  5340. BUG: Check your devicetree!
  5341. BUG: Parent of device PNP: 002e.16 is not a PNP device
  5342. BUG: Check your devicetree!
  5343. BUG: Parent of device PNP: 002e.116 is not a PNP device
  5344. BUG: Check your devicetree!
  5345. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5346. CBFS: Locating 'pci10de,1d01.rom'
  5347. CBFS: 'pci10de,1d01.rom' not found.
  5348. PCI Option ROM loading disabled for PCI: 01:00.0
  5349. PCI: 01:00.0: Missing PCI Option ROM
  5350. BUG: Parent of device PNP: 002e.207 is not a PNP device
  5351. BUG: Check your devicetree!
  5352. BUG: Parent of device PNP: 002e.11 is not a PNP device
  5353. BUG: Check your devicetree!
  5354. BUG: Parent of device PNP: 002e.12 is not a PNP device
  5355. BUG: Check your devicetree!
  5356. BUG: Parent of device PNP: 002e.15 is not a PNP device
  5357. BUG: Check your devicetree!
  5358. ACPI: added table 2/32, length now 44
  5359. ACPI: * MCFG
  5360. ACPI: added table 3/32, length now 48
  5361. ACPI: * MADT
  5362. SCI is IRQ9
  5363. ACPI: added table 4/32, length now 52
  5364. current = 7aaa2ea0
  5365. ACPI: * DMAR
  5366. ACPI: added table 5/32, length now 56
  5367. ACPI: * IGD OpRegion
  5368. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5369. CBFS: Locating 'vbt.bin'
  5370. CBFS: Found @ offset 54680 size 49c
  5371. Timestamp - starting LZMA decompress (ignore for x86): 174922476178
  5372. Timestamp - finished LZMA decompress (ignore for x86): 174947951762
  5373. Found a VBT of 4284 bytes after decompression
  5374. GMA: Found VBT in CBFS
  5375. GMA: Found valid VBT in CBFS
  5376. current = 7aaa4f30
  5377. acpi_write_dbg2_pci_uart: Device not found
  5378. ACPI: * HPET
  5379. ACPI: added table 6/32, length now 60
  5380. ACPI: done.
  5381. ACPI tables: 24432 bytes.
  5382. smbios_write_tables: 7aa9d000
  5383. Create SMBIOS type 17
  5384. PCI: 00:00.0 (Intel 6th Gen)
  5385. SMBIOS tables: 761 bytes.
  5386. Writing table forward entry at 0x00000500
  5387. Wrote coreboot table at: 0x00000500, 0x10 bytes, checksum 5532
  5388. Writing coreboot table at 0x7aac3000
  5389. 0. 0000000000000000-0000000000000fff: CONFIGURATION TABLES
  5390. 1. 0000000000001000-000000000009ffff: RAM
  5391. 2. 00000000000a0000-00000000000fffff: RESERVED
  5392. 3. 0000000000100000-000000007aa9cfff: RAM
  5393. 4. 000000007aa9d000-000000007ab09fff: CONFIGURATION TABLES
  5394. 5. 000000007ab0a000-000000007abcefff: RAMSTAGE
  5395. 6. 000000007abcf000-000000007affffff: CONFIGURATION TABLES
  5396. 7. 000000007b000000-000000007fffffff: RESERVED
  5397. 8. 00000000e0000000-00000000efffffff: RESERVED
  5398. 9. 00000000fd000000-00000000fe00ffff: RESERVED
  5399. 10. 00000000fed10000-00000000fed19fff: RESERVED
  5400. 11. 00000000fed80000-00000000fed84fff: RESERVED
  5401. 12. 00000000fed90000-00000000fed91fff: RESERVED
  5402. 13. 0000000100000000-000000047effffff: RAM
  5403. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5404. Wrote coreboot table at: 0x7aac3000, 0x400 bytes, checksum a619
  5405. coreboot table: 1048 bytes.
  5406. IMD ROOT 0. 0x7afff000 0x00001000
  5407. IMD SMALL 1. 0x7affe000 0x00001000
  5408. FSP MEMORY 2. 0x7abfe000 0x00400000
  5409. CONSOLE 3. 0x7abde000 0x00020000
  5410. TIME STAMP 4. 0x7abdd000 0x00000910
  5411. MRC DATA 5. 0x7abdb000 0x00001878
  5412. ROMSTG STCK 6. 0x7abda000 0x00001000
  5413. AFTER CAR 7. 0x7abcf000 0x0000b000
  5414. RAMSTAGE 8. 0x7ab09000 0x000c6000
  5415. REFCODE 9. 0x7aadb000 0x0002e000
  5416. SMM BACKUP 10. 0x7aacb000 0x00010000
  5417. COREBOOT 11. 0x7aac3000 0x00008000
  5418. ACPI 12. 0x7aa9f000 0x00024000
  5419. ACPI GNVS 13. 0x7aa9e000 0x00001000
  5420. SMBIOS 14. 0x7aa9d000 0x00000800
  5421. IMD small region:
  5422. IMD ROOT 0. 0x7affec00 0x00000400
  5423. FSP RUNTIME 1. 0x7affebe0 0x00000004
  5424. FMAP 2. 0x7affeb00 0x000000e0
  5425. POWER STATE 3. 0x7affeac0 0x00000040
  5426. ROMSTAGE 4. 0x7affeaa0 0x00000004
  5427. MEM INFO 5. 0x7affe8e0 0x000001b9
  5428. Timestamp - finalize chips: 175773235267
  5429. BS: BS_WRITE_TABLES run times (exec / console): 1 / 742 ms
  5430. MTRR: Physical address space:
  5431. 0x0000000000000000 - 0x00000000000a0000 size 0x000a0000 type 6
  5432. 0x00000000000a0000 - 0x00000000000c0000 size 0x00020000 type 0
  5433. 0x00000000000c0000 - 0x000000007b800000 size 0x7b740000 type 6
  5434. 0x000000007b800000 - 0x00000000a0000000 size 0x24800000 type 0
  5435. 0x00000000a0000000 - 0x00000000b2000000 size 0x12000000 type 1
  5436. 0x00000000b2000000 - 0x0000000100000000 size 0x4e000000 type 0
  5437. 0x0000000100000000 - 0x000000047f000000 size 0x37f000000 type 6
  5438. MTRR: Fixed MSR 0x250 0x0606060606060606
  5439. MTRR: Fixed MSR 0x258 0x0606060606060606
  5440. MTRR: Fixed MSR 0x259 0x0000000000000000
  5441. MTRR: Fixed MSR 0x268 0x0606060606060606
  5442. MTRR: Fixed MSR 0x269 0x0606060606060606
  5443. MTRR: Fixed MSR 0x26a 0x0606060606060606
  5444. MTRR: Fixed MSR 0x26b 0x0606060606060606
  5445. MTRR: Fixed MSR 0x26c 0x0606060606060606
  5446. MTRR: Fixed MSR 0x26d 0x0606060606060606
  5447. MTRR: Fixed MSR 0x26e 0x0606060606060606
  5448. MTRR: Fixed MSR 0x26f 0x0606060606060606
  5449. CPU physical address size: 39 bits
  5450. MTRR: default type WB/UC MTRR counts: 9/8.
  5451. MTRR: UC selected as default type.
  5452. MTRR: 0 base 0x0000000000000000 mask 0x0000007f80000000 type 6
  5453. MTRR: 1 base 0x000000007b800000 mask 0x0000007fff800000 type 0
  5454. MTRR: 2 base 0x000000007c000000 mask 0x0000007ffc000000 type 0
  5455. MTRR: 3 base 0x00000000a0000000 mask 0x0000007ff0000000 type 1
  5456. MTRR: 4 base 0x00000000b0000000 mask 0x0000007ffe000000 type 1
  5457. MTRR: 5 base 0x0000000100000000 mask 0x0000007f00000000 type 6
  5458. MTRR: 6 base 0x0000000200000000 mask 0x0000007e00000000 type 6
  5459. MTRR: 7 base 0x0000000400000000 mask 0x0000007f80000000 type 6
  5460. MTRR: Fixed MSR 0x250 0x0606060606060606
  5461. MTRR: Fixed MSR 0x258 0x0606060606060606
  5462. MTRR: Fixed MSR 0x259 0x0000000000000000
  5463. MTRR: Fixed MSR 0x268 0x0606060606060606
  5464. MTRR: Fixed MSR 0x269 0x0606060606060606
  5465. MTRR: Fixed MSR 0x26a 0x0606060606060606
  5466. MTRR: Fixed MSR 0x26b 0x0606060606060606
  5467. MTRR: Fixed MSR 0x26c 0x0606060606060606
  5468. MTRR: Fixed MSR 0x26d 0x0606060606060606
  5469. MTRR: Fixed MSR 0x26e 0x0606060606060606
  5470. MTRR: Fixed MSR 0x26f 0x0606060606060606
  5471. MTRR: Fixed MSR 0x250 0x0606060606060606
  5472. MTRR: Fixed MSR 0x250 0x0606060606060606
  5473. MTRR: Fixed MSR 0x258 0x0606060606060606
  5474. MTRR: Fixed MSR 0x259 0x0000000000000000
  5475. MTRR: Fixed MSR 0x268 0x0606060606060606
  5476. MTRR: Fixed MSR 0x269 0x0606060606060606
  5477. MTRR: Fixed MSR 0x26a 0x0606060606060606
  5478. MTRR: Fixed MSR 0x26b 0x0606060606060606
  5479. MTRR: Fixed MSR 0x26c 0x0606060606060606
  5480. MTRR: Fixed MSR 0x26d 0x0606060606060606
  5481. MTRR: Fixed MSR 0x26e 0x0606060606060606
  5482. MTRR: Fixed MSR 0x26f 0x0606060606060606
  5483. MTRR: Fixed MSR 0x258 0x0606060606060606
  5484. MTRR: Fixed MSR 0x259 0x0000000000000000
  5485. MTRR: Fixed MSR 0x268 0x0606060606060606
  5486. MTRR: Fixed MSR 0x269 0x0606060606060606
  5487. MTRR: Fixed MSR 0x26a 0x0606060606060606
  5488. MTRR: Fixed MSR 0x26b 0x0606060606060606
  5489. MTRR: Fixed MSR 0x26c 0x0606060606060606
  5490. MTRR: Fixed MSR 0x26d 0x0606060606060606
  5491. MTRR: Fixed MSR 0x26e 0x0606060606060606
  5492. MTRR: Fixed MSR 0x26f 0x0606060606060606
  5493. CPU physical address size: 39 bits
  5494. CPU physical address size: 39 bits
  5495. CPU physical address size: 39 bits
  5496.  
  5497. MTRR check
  5498. Fixed MTRRs : Enabled
  5499. Variable MTRRs: Enabled
  5500.  
  5501. BS: BS_WRITE_TABLES exit times (exec / console): 137 / 153 ms
  5502. Timestamp - load payload: 176965206852
  5503. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5504. CBFS: Locating 'fallback/payload'
  5505. CBFS: Found @ offset ffc80 size 10f36
  5506. Checking segment from ROM address 0xffd0feb8
  5507. Payload being loaded at below 1MiB without region being marked as RAM usable.
  5508. Checking segment from ROM address 0xffd0fed4
  5509. Loading segment from ROM address 0xffd0feb8
  5510. code (compression=1)
  5511. New segment dstaddr 0x000dfba0 memsize 0x20460 srcaddr 0xffd0fef0 filesize 0x10efe
  5512. Loading Segment: addr: 0x000dfba0 memsz: 0x0000000000020460 filesz: 0x0000000000010efe
  5513. using LZMA
  5514. Timestamp - starting LZMA decompress (ignore for x86): 177181339064
  5515. Timestamp - finished LZMA decompress (ignore for x86): 177304086546
  5516. Loading segment from ROM address 0xffd0fed4
  5517. Entry Point 0x000fd25d
  5518. BS: BS_PAYLOAD_LOAD run times (exec / console): 25 / 75 ms
  5519. Timestamp - calling FspNotify(ReadyToBoot): 177377709479
  5520. Timestamp - returning from FspNotify(ReadyToBoot): 177412810130
  5521. Timestamp - calling FspNotify(EndOfFirmware): 177436458911
  5522. Timestamp - returning from FspNotify(EndOfFirmware): 177465489490
  5523. Finalizing chipset.
  5524. HECI: CSE device is hidden
  5525. Finalizing SMM.
  5526. BS: BS_PAYLOAD_LOAD exit times (exec / console): 5 / 30 ms
  5527. mp_park_aps done after 0 msecs.
  5528. Jumping to boot code at 0x000fd25d(0x7aac3000)
  5529. Timestamp - selfboot jump: 177566596813
  5530. SeaBIOS (version rel-1.13.0-5-g7655185)
  5531. BUILD: gcc: (coreboot toolchain vdfd3f21174 2019-05-03) 9.2.0 binutils: (GNU Binutils) 2.33.1
  5532. SeaBIOS (version rel-1.13.0-5-g7655185)
  5533. BUILD: gcc: (coreboot toolchain vdfd3f21174 2019-05-03) 9.2.0 binutils: (GNU Binutils) 2.33.1
  5534. Found coreboot cbmem console @ 7abde000
  5535. Found mainboard ASUS H110M-E/M.2
  5536. Relocating init from 0x000e12c0 to 0x7aa4fc40 (size 54048)
  5537. Found CBFS header at 0xffc10238
  5538. multiboot: eax=7ab3d300, ebx=7ab3d2c4
  5539. Found 18 PCI devices (max PCI bus is 04)
  5540. Copying SMBIOS entry point from 0x7aa9d000 to 0x000f62e0
  5541. Copying ACPI RSDP from 0x7aa9f000 to 0x000f62b0
  5542. Using pmtimer, ioport 0x1808
  5543. Scan for VGA option rom
  5544. Running option rom at c000:0003
  5545. sercon: using ioport 0x3f8
  5546. sercon: configuring in splitmode (vgabios c000:17dc)
  5547. Turning on vga text mode console
  5548. SeaBIOS (version rel-1.13.0-5-g7655185XHCI init on dev 00:14.0: regs @ 0xd3100000, 20 ports, 64 slots, 32 byte contexts
  5549. XHCI protocol USB 2.00, 10 ports (offset 1), def 3011
  5550. XHCI protocol USB 3.00, 4 ports (offset 17), def 3000
  5551. XHCI extcap 0xc0 @ 0xd3108070
  5552. XHCI extcap 0x1 @ 0xd310846c
  5553. XHCI extcap 0xc6 @ 0xd31084f4
  5554. XHCI extcap 0xc7 @ 0xd3108500
  5555. XHCI extcap 0xc2 @ 0xd3108600
  5556. XHCI extcap 0xa @ 0xd3108700
  5557. XHCI extcap 0xc3 @ 0xd3108740
  5558. XHCI extcap 0xc4 @ 0xd3108800
  5559. XHCI extcap 0xc5 @ 0xd3108900
  5560. AHCI controller at 00:17.0, iobase 0xd3135000, irq 11
  5561. Searching bootorder for: HALT
  5562. Found 0 lpt ports
  5563. Found 1 serial ports
  5564. Searching bootorder for: /rom@img/memtest
  5565. Searching bootorder for: /rom@img/nvramcui
  5566. )
  5567. Got ps2 nak (status=51)
  5568. Searching bootorder for: /pci@i0cf8/*@17/drive@3/disk@0
  5569. AHCI/3: Set transfer mode to UDMA-6
  5570. Searching bios-geometry for: /pci@i0cf8/*@17/drive@3/disk@0
  5571. AHCI/3: registering: "AHCI/3: TOSHIBA HDWD110 ATA-8 Hard-Disk (931 GiBytes)"
  5572. XHCI port #5: 0x00200a03, powered, enabled, pls 0, speed 2 [Low]
  5573. USB mouse initialized
  5574. XHCI port #6: 0x00200a03, powered, enabled, pls 0, speed 2 [Low]
  5575. USB keyboard initialized
  5576. All threads complete.
  5577. Scan for option roms
  5578.  
  5579. Press ESC for boot menu.
  5580.  
  5581. Searching bootorder for: HALT
  5582. drive 0x000f6240: PCHS=16383/16/63 translation=lba LCHS=1024/255/63 s=1953525168
  5583. Space available for UMB: ce800-ed000, f5b00-f6240
  5584. Returned 114688 bytes of ZoneHigh
  5585. e820 map has 11 items:
  5586. 0: 0000000000000000 - 000000000009fc00 = 1 RAM
  5587. 1: 000000000009fc00 - 00000000000a0000 = 2 RESERVED
  5588. 2: 00000000000f0000 - 0000000000100000 = 2 RESERVED
  5589. 3: 0000000000100000 - 000000007aa79000 = 1 RAM
  5590. 4: 000000007aa79000 - 0000000080000000 = 2 RESERVED
  5591. 5: 00000000e0000000 - 00000000f0000000 = 2 RESERVED
  5592. 6: 00000000fd000000 - 00000000fe010000 = 2 RESERVED
  5593. 7: 00000000fed10000 - 00000000fed1a000 = 2 RESERVED
  5594. 8: 00000000fed80000 - 00000000fed85000 = 2 RESERVED
  5595. 9: 00000000fed90000 - 00000000fed92000 = 2 RESERVED
  5596. 10: 0000000100000000 - 000000047f000000 = 1 RAM
  5597. enter handle_19:
  5598. NULL
  5599. Booting from Hard Disk..Booting from 0000:7c00
  5600. .
  5601. GRUB loading.
  5602. Welcome to GRUB!
  5603.  
  5604. Memory KASLR using RDRAND RDTSC...
  5605. Poking KASLR using RDRAND RDTSC...
  5606. €€€€€€€€€€€€€€€€Àþÿÿÿÿÿÿÿþÿÿÿþþÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿþÿþþÿÿÿÿÿÿÿÿÿÿþþÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  5607.  
  5608. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  5609. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  5610. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  5611. CPU: AES supported, TXT NOT supported, VT supported
  5612. MCH: device id 590f (rev 06) is Kabylake-S
  5613. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  5614. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  5615. Timestamp - end of bootblock: 172503874
  5616. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  5617. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  5618. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5619. CBFS: Locating 'fallback/romstage'
  5620. CBFS: Found @ offset 80 size b284
  5621. Timestamp - starting to load romstage: 262784384
  5622. Timestamp - finished loading romstage: 279873034
  5623. BS: bootblock times (exec / console): total (unknown) / 67 ms
  5624.  
  5625.  
  5626. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  5627. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00000000
  5628. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  5629. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  5630. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  5631. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  5632. TCO_STS: 0000 0000
  5633. GEN_PMCON: e0810200 00001848
  5634. GBLRST_CAUSE: 00001000 00000000
  5635. prev_sleep_state 0
  5636. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5637. CBFS: Locating 'fspm.bin'
  5638. CBFS: Found @ offset 54dc0 size 63000
  5639. Timestamp - before RAM initialization: 513797230
  5640. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  5641. MRC: no data in 'RW_MRC_CACHE'
  5642. PRMRR disabled by config.
  5643. SPD @ 0x50
  5644. SPD: module type is DDR4
  5645. SPD: module part is PSD48G240082
  5646. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  5647. SPD: device width 16 bits, bus width 64 bits
  5648. SPD: module size is 8192 MB (per channel)
  5649. SPD @ 0x52
  5650. SPD: module type is DDR4
  5651. SPD: module part is CMK8GX4M1A2400C16
  5652. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  5653. SPD: device width 8 bits, bus width 64 bits
  5654. SPD: module size is 8192 MB (per channel)
  5655. SPD @ 0x00
  5656. SPD: module type is UNKNOWN
  5657. SPD: module part is
  5658. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  5659. SPD: device width -1 bits, bus width -1 bits
  5660. SPD @ 0x00
  5661. SPD: module type is UNKNOWN
  5662. SPD: module part is
  5663. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  5664. SPD: device width -1 bits, bus width -1 bits
  5665. Timestamp - calling FspMemoryInit: 2768786325
  5666.  
  5667.  
  5668. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  5669. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  5670. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  5671. CPU: AES supported, TXT NOT supported, VT supported
  5672. MCH: device id 590f (rev 06) is Kabylake-S
  5673. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  5674. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  5675. Timestamp - end of bootblock: 172373166
  5676. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  5677. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  5678. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5679. CBFS: Locating 'fallback/romstage'
  5680. CBFS: Found @ offset 80 size b284
  5681. Timestamp - starting to load romstage: 262704553
  5682. Timestamp - finished loading romstage: 279805185
  5683. BS: bootblock times (exec / console): total (unknown) / 67 ms
  5684.  
  5685.  
  5686. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  5687. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  5688. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  5689. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  5690. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  5691. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  5692. TCO_STS: 0000 0000
  5693. GEN_PMCON: e0210200 00001a48
  5694. GBLRST_CAUSE: 00001000 00000000
  5695. prev_sleep_state 0
  5696. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5697. CBFS: Locating 'fspm.bin'
  5698. CBFS: Found @ offset 54dc0 size 63000
  5699. Timestamp - before RAM initialization: 513863342
  5700. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  5701. MRC: no data in 'RW_MRC_CACHE'
  5702. PRMRR disabled by config.
  5703. SPD @ 0x50
  5704. SPD: module type is DDR4
  5705. SPD: module part is PSD48G240082
  5706. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  5707. SPD: device width 16 bits, bus width 64 bits
  5708. SPD: module size is 8192 MB (per channel)
  5709. SPD @ 0x52
  5710. SPD: module type is DDR4
  5711. SPD: module part is CMK8GX4M1A2400C16
  5712. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  5713. SPD: device width 8 bits, bus width 64 bits
  5714. SPD: module size is 8192 MB (per channel)
  5715. SPD @ 0x00
  5716. SPD: module type is UNKNOWN
  5717. SPD: module part is
  5718. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  5719. SPD: device width -1 bits, bus width -1 bits
  5720. SPD @ 0x00
  5721. SPD: module type is UNKNOWN
  5722. SPD: module part is
  5723. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  5724. SPD: device width -1 bits, bus width -1 bits
  5725. Timestamp - calling FspMemoryInit: 2766741887
  5726. Timestamp - returning from FspMemoryInit: 163656420741
  5727. CBMEM:
  5728. IMD: root @ 0x7afff000 254 entries.
  5729. IMD: root @ 0x7affec00 62 entries.
  5730. External stage cache:
  5731. IMD: root @ 0x7b3ff000 254 entries.
  5732. IMD: root @ 0x7b3fec00 62 entries.
  5733. Timestamp - after RAM initialization: 163740265935
  5734. 2 DIMMs found
  5735. SMM Memory Map
  5736. SMRAM : 0x7b000000 0x800000
  5737. Subregion 0: 0x7b000000 0x200000
  5738. Subregion 1: 0x7b200000 0x200000
  5739. Subregion 2: 0x7b400000 0x400000
  5740. top_of_ram = 0x7b000000
  5741. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  5742. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  5743. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  5744. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5745. CBFS: Locating 'fallback/postcar'
  5746. CBFS: Found @ offset e6e00 size 5668
  5747. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  5748. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  5749. Processing 287 relocs. Offset value of 0x78bd0000
  5750. Timestamp - end of romstage: 164002102255
  5751. BS: romstage times (exec / console): total (unknown) / 224 ms
  5752.  
  5753.  
  5754. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  5755. Timestamp - start of postcar: 164075811992
  5756. Timestamp - end of postcar: 164090832903
  5757. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5758. CBFS: Locating 'fallback/ramstage'
  5759. CBFS: Found @ offset 3c000 size 17f37
  5760. Timestamp - starting to load ramstage: 164148962585
  5761. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  5762. Timestamp - starting LZMA decompress (ignore for x86): 164189912149
  5763. Timestamp - finished LZMA decompress (ignore for x86): 164244928643
  5764. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  5765. Processing 3860 relocs. Offset value of 0x79d0a000
  5766. Timestamp - finished loading ramstage: 164316563934
  5767. BS: postcar times (exec / console): total (unknown) / 67 ms
  5768.  
  5769.  
  5770. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  5771. Timestamp - start of ramstage: 164392012017
  5772. Normal boot.
  5773. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5774. CBFS: Locating 'cpu_microcode_blob.bin'
  5775. CBFS: Found @ offset b380 size 30c00
  5776. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  5777. Skip microcode update
  5778. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5779. CBFS: Locating 'fsps.bin'
  5780. CBFS: Found @ offset b8dc0 size 2e000
  5781. Detected 2 core, 4 thread CPU.
  5782. Setting up SMI for CPU
  5783. IED base = 0x7b400000
  5784. IED size = 0x00400000
  5785. Will perform SMM setup.
  5786. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  5787. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  5788. Processing 16 relocs. Offset value of 0x00030000
  5789. Attempting to start 3 APs
  5790. Waiting for 10ms after sending INIT.
  5791. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  5792. done.
  5793. AP: slot 1 apic_id 2.
  5794. AP: slot 2 apic_id 3.
  5795. Waiting for 2nd SIPI to complete...done.
  5796. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  5797. Processing 13 relocs. Offset value of 0x00038000
  5798. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  5799. Installing SMM handler to 0x7b000000
  5800. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  5801. Processing 103 relocs. Offset value of 0x7b010000
  5802. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  5803. Processing 13 relocs. Offset value of 0x7b008000
  5804. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  5805. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  5806. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  5807. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  5808. Clearing SMI status registers
  5809. SMI_STS: PM1
  5810. TMROF TCO_STS: SECOND_TO
  5811. New SMBASE 0x7b000000
  5812. In relocation handler: CPU 0
  5813. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  5814. Writing SMRR. base = 0x7b000006, mask=0xff800800
  5815. Relocation complete.
  5816. New SMBASE 0x7afff400
  5817. In relocation handler: CPU 3
  5818. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  5819. Writing SMRR. base = 0x7b000006, mask=0xff800800
  5820. Relocation complete.
  5821. New SMBASE 0x7afffc00
  5822. In relocation handler: CPU 1
  5823. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  5824. Writing SMRR. base = 0x7b000006, mask=0xff800800
  5825. Relocation complete.
  5826. New SMBASE 0x7afff800
  5827. In relocation handler: CPU 2
  5828. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  5829. Writing SMRR. base = 0x7b000006, mask=0xff800800
  5830. Relocation complete.
  5831. Initializing CPU #0
  5832. CPU: vendor Intel device 906e9
  5833. CPU: family 06, model 9e, stepping 09
  5834. Clearing out pending MCEs
  5835. Setting up local APIC...
  5836. apic_id: 0x00 done.
  5837. cpu: energy policy set to 6
  5838. Turbo is unavailable
  5839. Skip microcode update
  5840. CPU #0 initialized
  5841. Initializing CPU #3
  5842. Initializing CPU #1
  5843. Initializing CPU #2
  5844. CPU: vendor Intel device 906e9
  5845. CPU: family 06, model 9e, stepping 09
  5846. CPU: vendor Intel device 906e9
  5847. CPU: family 06, model 9e, stepping 09
  5848. Clearing out pending MCEs
  5849. Clearing out pending MCEs
  5850. Setting up local APIC...
  5851. CPU: vendor Intel device 906e9
  5852. CPU: family 06, model 9e, stepping 09
  5853. Clearing out pending MCEs
  5854. Setting up local APIC...
  5855. Setting up local APIC...
  5856. apic_id: 0x02 done.
  5857. apic_id: 0x03 done.
  5858. cpu: energy policy set to 6
  5859. cpu: energy policy set to 6
  5860. Skip microcode update
  5861. CPU #1 initialized
  5862. Skip microcode update
  5863. CPU #2 initialized
  5864. apic_id: 0x01 done.
  5865. cpu: energy policy set to 6
  5866. Skip microcode update
  5867. CPU #3 initialized
  5868. bsp_do_flight_plan done after 218 msecs.
  5869. Enabling SMIs.
  5870. Locking SMM.
  5871. VMX status: enabled
  5872. VMX status: enabled
  5873. IA32_FEATURE_CONTROL status: locked
  5874. VMX status: enabled
  5875. VMX status: enabled
  5876. IA32_FEATURE_CONTROL status: locked
  5877. IA32_FEATURE_CONTROL status: locked
  5878. IA32_FEATURE_CONTROL status: locked
  5879. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 141 / 191 ms
  5880. Timestamp - device enumeration: 165768308436
  5881. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5882. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5883. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5884. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5885. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5886. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5887. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5888. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5889. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5890. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5891. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5892. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5893. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5894. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5895. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5896. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5897. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5898. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5899. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5900. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5901. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5902. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5903. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5904. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5905. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5906. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5907. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5908. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5909. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5910. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5911. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5912. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5913. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5914. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5915. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5916. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5917. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5918. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5919. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5920. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5921. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5922. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5923. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5924. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5925. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5926. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5927. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5928. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5929. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5930. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5931. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5932. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5933. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5934. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5935. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5936. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5937. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5938. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5939. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5940. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5941. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5942. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5943. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5944. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5945. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5946. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5947. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5948. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5949. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5950. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5951. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5952. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5953. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5954. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5955. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5956. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5957. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5958. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5959. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5960. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5961. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5962. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5963. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5964. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5965. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5966. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5967. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  5968. Timestamp - calling FspSiliconInit: 167860949539
  5969. €€€€€€€€€€€€À€€€Àþÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ>
  5970.  
  5971. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  5972. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  5973. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  5974. CPU: AES supported, TXT NOT supported, VT supported
  5975. MCH: device id 590f (rev 06) is Kabylake-S
  5976. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  5977. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  5978. Timestamp - end of bootblock: 171516058
  5979. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  5980. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  5981. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  5982. CBFS: Locating 'fallback/romstage'
  5983. CBFS: Found @ offset 80 size b284
  5984. Timestamp - starting to load romstage: 261186688
  5985. Timestamp - finished loading romstage: 278151573
  5986. BS: bootblock times (exec / console): total (unknown) / 66 ms
  5987.  
  5988.  
  5989. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  5990. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  5991. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  5992. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  5993. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  5994. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  5995. TCO_STS: 0000 0000
  5996. GEN_PMCON: e0810200 00001848
  5997. GBLRST_CAUSE: 00001000 00000000
  5998. prev_sleep_state 0
  5999. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6000. CBFS: Locating 'fspm.bin'
  6001. CBFS: Found @ offset 54dc0 size 63000
  6002. Timestamp - before RAM initialization: 510442899
  6003. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  6004. MRC: no data in 'RW_MRC_CACHE'
  6005. PRMRR disabled by config.
  6006. SPD @ 0x50
  6007. SPD: module type is DDR4
  6008. SPD: module part is PSD48G240082
  6009. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  6010. SPD: device width 16 bits, bus width 64 bits
  6011. SPD: module size is 8192 MB (per channel)
  6012. SPD @ 0x52
  6013. SPD: module type is DDR4
  6014. SPD: module part is CMK8GX4M1A2400C16
  6015. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  6016. SPD: device width 8 bits, bus width 64 bits
  6017. SPD: module size is 8192 MB (per channel)
  6018. SPD @ 0x00
  6019. SPD: module type is UNKNOWN
  6020. SPD: module part is
  6021. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6022. SPD: device width -1 bits, bus width -1 bits
  6023. SPD @ 0x00
  6024. SPD: module type is UNKNOWN
  6025. SPD: module part is
  6026. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6027. SPD: device width -1 bits, bus width -1 bits
  6028. Timestamp - calling FspMemoryInit: 2764516353
  6029.  
  6030.  
  6031. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  6032. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  6033. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  6034. CPU: AES supported, TXT NOT supported, VT supported
  6035. MCH: device id 590f (rev 06) is Kabylake-S
  6036. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  6037. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  6038. Timestamp - end of bootblock: 172453223
  6039. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  6040. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  6041. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6042. CBFS: Locating 'fallback/romstage'
  6043. CBFS: Found @ offset 80 size b284
  6044. Timestamp - starting to load romstage: 262714604
  6045. Timestamp - finished loading romstage: 279803500
  6046. BS: bootblock times (exec / console): total (unknown) / 67 ms
  6047.  
  6048.  
  6049. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  6050. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  6051. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  6052. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  6053. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  6054. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  6055. TCO_STS: 0000 0000
  6056. GEN_PMCON: e0210200 00001a48
  6057. GBLRST_CAUSE: 00001000 00000000
  6058. prev_sleep_state 0
  6059. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6060. CBFS: Locating 'fspm.bin'
  6061. CBFS: Found @ offset 54dc0 size 63000
  6062. Timestamp - before RAM initialization: 512497410
  6063. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  6064. MRC: no data in 'RW_MRC_CACHE'
  6065. PRMRR disabled by config.
  6066. SPD @ 0x50
  6067. SPD: module type is DDR4
  6068. SPD: module part is PSD48G240082
  6069. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  6070. SPD: device width 16 bits, bus width 64 bits
  6071. SPD: module size is 8192 MB (per channel)
  6072. SPD @ 0x52
  6073. SPD: module type is DDR4
  6074. SPD: module part is CMK8GX4M1A2400C16
  6075. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  6076. SPD: device width 8 bits, bus width 64 bits
  6077. SPD: module size is 8192 MB (per channel)
  6078. SPD @ 0x00
  6079. SPD: module type is UNKNOWN
  6080. SPD: module part is
  6081. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6082. SPD: device width -1 bits, bus width -1 bits
  6083. SPD @ 0x00
  6084. SPD: module type is UNKNOWN
  6085. SPD: module part is
  6086. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6087. SPD: device width -1 bits, bus width -1 bits
  6088. Timestamp - calling FspMemoryInit: 2764816965
  6089. Timestamp - returning from FspMemoryInit: 163326094650
  6090. CBMEM:
  6091. IMD: root @ 0x7afff000 254 entries.
  6092. IMD: root @ 0x7affec00 62 entries.
  6093. External stage cache:
  6094. IMD: root @ 0x7b3ff000 254 entries.
  6095. IMD: root @ 0x7b3fec00 62 entries.
  6096. Timestamp - after RAM initialization: 163409902811
  6097. 2 DIMMs found
  6098. SMM Memory Map
  6099. SMRAM : 0x7b000000 0x800000
  6100. Subregion 0: 0x7b000000 0x200000
  6101. Subregion 1: 0x7b200000 0x200000
  6102. Subregion 2: 0x7b400000 0x400000
  6103. top_of_ram = 0x7b000000
  6104. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  6105. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  6106. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  6107. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6108. CBFS: Locating 'fallback/postcar'
  6109. CBFS: Found @ offset e6e00 size 5668
  6110. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  6111. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  6112. Processing 287 relocs. Offset value of 0x78bd0000
  6113. Timestamp - end of romstage: 163671638248
  6114. BS: romstage times (exec / console): total (unknown) / 224 ms
  6115.  
  6116.  
  6117. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  6118. Timestamp - start of postcar: 163745335870
  6119. Timestamp - end of postcar: 163760366304
  6120. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6121. CBFS: Locating 'fallback/ramstage'
  6122. CBFS: Found @ offset 3c000 size 17f37
  6123. Timestamp - starting to load ramstage: 163818483601
  6124. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  6125. Timestamp - starting LZMA decompress (ignore for x86): 163859426543
  6126. Timestamp - finished LZMA decompress (ignore for x86): 163914542132
  6127. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  6128. Processing 3860 relocs. Offset value of 0x79d0a000
  6129. Timestamp - finished loading ramstage: 163986134177
  6130. BS: postcar times (exec / console): total (unknown) / 67 ms
  6131.  
  6132.  
  6133. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  6134. Timestamp - start of ramstage: 164061558702
  6135. Normal boot.
  6136. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6137. CBFS: Locating 'cpu_microcode_blob.bin'
  6138. CBFS: Found @ offset b380 size 30c00
  6139. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  6140. Skip microcode update
  6141. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6142. CBFS: Locating 'fsps.bin'
  6143. CBFS: Found @ offset b8dc0 size 2e000
  6144. Detected 2 core, 4 thread CPU.
  6145. Setting up SMI for CPU
  6146. IED base = 0x7b400000
  6147. IED size = 0x00400000
  6148. Will perform SMM setup.
  6149. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  6150. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  6151. Processing 16 relocs. Offset value of 0x00030000
  6152. Attempting to start 3 APs
  6153. Waiting for 10ms after sending INIT.
  6154. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  6155. done.
  6156. AP: slot 1 apic_id 3.
  6157. AP: slot 2 apic_id 2.
  6158. Waiting for 2nd SIPI to complete...done.
  6159. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  6160. Processing 13 relocs. Offset value of 0x00038000
  6161. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  6162. Installing SMM handler to 0x7b000000
  6163. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  6164. Processing 103 relocs. Offset value of 0x7b010000
  6165. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  6166. Processing 13 relocs. Offset value of 0x7b008000
  6167. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  6168. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  6169. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  6170. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  6171. Clearing SMI status registers
  6172. SMI_STS: PM1
  6173. TMROF TCO_STS: SECOND_TO
  6174. New SMBASE 0x7b000000
  6175. In relocation handler: CPU 0
  6176. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  6177. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6178. Relocation complete.
  6179. New SMBASE 0x7afff400
  6180. In relocation handler: CPU 3
  6181. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  6182. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6183. Relocation complete.
  6184. New SMBASE 0x7afff800
  6185. In relocation handler: CPU 2
  6186. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  6187. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6188. Relocation complete.
  6189. New SMBASE 0x7afffc00
  6190. In relocation handler: CPU 1
  6191. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  6192. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6193. Relocation complete.
  6194. Initializing CPU #0
  6195. CPU: vendor Intel device 906e9
  6196. CPU: family 06, model 9e, stepping 09
  6197. Clearing out pending MCEs
  6198. Setting up local APIC...
  6199. apic_id: 0x00 done.
  6200. cpu: energy policy set to 6
  6201. Turbo is unavailable
  6202. Skip microcode update
  6203. CPU #0 initialized
  6204. Initializing CPU #3
  6205. Initializing CPU #1
  6206. Initializing CPU #2
  6207. CPU: vendor Intel device 906e9
  6208. CPU: family 06, model 9e, stepping 09
  6209. CPU: vendor Intel device 906e9
  6210. CPU: family 06, model 9e, stepping 09
  6211. Clearing out pending MCEs
  6212. Clearing out pending MCEs
  6213. Setting up local APIC...
  6214. Setting up local APIC...
  6215. CPU: vendor Intel device 906e9
  6216. CPU: family 06, model 9e, stepping 09
  6217. Clearing out pending MCEs
  6218. apic_id: 0x02 done.
  6219. apic_id: 0x03 done.
  6220. cpu: energy policy set to 6
  6221. cpu: energy policy set to 6
  6222. Skip microcode update
  6223. CPU #2 initialized
  6224. Skip microcode update
  6225. CPU #1 initialized
  6226. Setting up local APIC...
  6227. apic_id: 0x01 done.
  6228. cpu: energy policy set to 6
  6229. Skip microcode update
  6230. CPU #3 initialized
  6231. bsp_do_flight_plan done after 217 msecs.
  6232. Enabling SMIs.
  6233. Locking SMM.
  6234. VMX status: enabled
  6235. VMX status: enabled
  6236. IA32_FEATURE_CONTROL status: locked
  6237. VMX status: enabled
  6238. VMX status: enabled
  6239. IA32_FEATURE_CONTROL status: locked
  6240. IA32_FEATURE_CONTROL status: locked
  6241. IA32_FEATURE_CONTROL status: locked
  6242. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 140 / 190 ms
  6243. Timestamp - device enumeration: 165432775052
  6244. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6245. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6246. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6247. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6248. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6249. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6250. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6251. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6252. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6253. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6254. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6255. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6256. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6257. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6258. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6259. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6260. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6261. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6262. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6263. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6264. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6265. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6266. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6267. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6268. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6269. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6270. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6271. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6272. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6273. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6274. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6275. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6276. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6277. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6278. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6279. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6280. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6281. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6282. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6283. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6284. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6285. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6286. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6287. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6288. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6289. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6290. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6291. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6292. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6293. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6294. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6295. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6296. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6297. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6298. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6299. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6300. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6301. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6302. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6303. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6304. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6305. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6306. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6307. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6308. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6309. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6310. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6311. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6312. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6313. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6314. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6315. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6316. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6317. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6318. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6319. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6320. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6321. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6322. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6323. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6324. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6325. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6326. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6327. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6328. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6329. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6330. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6331. Timestamp - calling FspSiliconInit: 167524744313
  6332. €€€€€€€€€€€€þÿÿÿÿÿÿÿÿÿþþþÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿþþþÿÿÿÿÿÿþÿþÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿþÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  6333.  
  6334. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  6335. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  6336. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  6337. CPU: AES supported, TXT NOT supported, VT supported
  6338. MCH: device id 590f (rev 06) is Kabylake-S
  6339. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  6340. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  6341. Timestamp - end of bootblock: 171348976
  6342. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  6343. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  6344. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6345. CBFS: Locating 'fallback/romstage'
  6346. CBFS: Found @ offset 80 size b284
  6347. Timestamp - starting to load romstage: 260964503
  6348. Timestamp - finished loading romstage: 277928613
  6349. BS: bootblock times (exec / console): total (unknown) / 66 ms
  6350.  
  6351.  
  6352. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  6353. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  6354. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  6355. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  6356. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  6357. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  6358. TCO_STS: 0000 0000
  6359. GEN_PMCON: e0810200 00001848
  6360. GBLRST_CAUSE: 00001000 00000000
  6361. prev_sleep_state 0
  6362. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6363. CBFS: Locating 'fspm.bin'
  6364. CBFS: Found @ offset 54dc0 size 63000
  6365. Timestamp - before RAM initialization: 511424173
  6366. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  6367. MRC: no data in 'RW_MRC_CACHE'
  6368. PRMRR disabled by config.
  6369. SPD @ 0x50
  6370. SPD: module type is DDR4
  6371. SPD: module part is PSD48G240082
  6372. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  6373. SPD: device width 16 bits, bus width 64 bits
  6374. SPD: module size is 8192 MB (per channel)
  6375. SPD @ 0x52
  6376. SPD: module type is DDR4
  6377. SPD: module part is CMK8GX4M1A2400C16
  6378. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  6379. SPD: device width 8 bits, bus width 64 bits
  6380. SPD: module size is 8192 MB (per channel)
  6381. SPD @ 0x00
  6382. SPD: module type is UNKNOWN
  6383. SPD: module part is
  6384. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6385. SPD: device width -1 bits, bus width -1 bits
  6386. SPD @ 0x00
  6387. SPD: module type is UNKNOWN
  6388. SPD: module part is
  6389. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6390. SPD: device width -1 bits, bus width -1 bits
  6391. Timestamp - calling FspMemoryInit: 2765560247
  6392.  
  6393.  
  6394. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  6395. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  6396. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  6397. CPU: AES supported, TXT NOT supported, VT supported
  6398. MCH: device id 590f (rev 06) is Kabylake-S
  6399. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  6400. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  6401. Timestamp - end of bootblock: 171518955
  6402. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  6403. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  6404. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6405. CBFS: Locating 'fallback/romstage'
  6406. CBFS: Found @ offset 80 size b284
  6407. Timestamp - starting to load romstage: 261190856
  6408. Timestamp - finished loading romstage: 278163362
  6409. BS: bootblock times (exec / console): total (unknown) / 66 ms
  6410.  
  6411.  
  6412. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  6413. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  6414. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  6415. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  6416. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  6417. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  6418. TCO_STS: 0000 0000
  6419. GEN_PMCON: e0210200 00001a48
  6420. GBLRST_CAUSE: 00001000 00000000
  6421. prev_sleep_state 0
  6422. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6423. CBFS: Locating 'fspm.bin'
  6424. CBFS: Found @ offset 54dc0 size 63000
  6425. Timestamp - before RAM initialization: 510425243
  6426. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  6427. MRC: no data in 'RW_MRC_CACHE'
  6428. PRMRR disabled by config.
  6429. SPD @ 0x50
  6430. SPD: module type is DDR4
  6431. SPD: module part is PSD48G240082
  6432. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  6433. SPD: device width 16 bits, bus width 64 bits
  6434. SPD: module size is 8192 MB (per channel)
  6435. SPD @ 0x52
  6436. SPD: module type is DDR4
  6437. SPD: module part is CMK8GX4M1A2400C16
  6438. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  6439. SPD: device width 8 bits, bus width 64 bits
  6440. SPD: module size is 8192 MB (per channel)
  6441. SPD @ 0x00
  6442. SPD: module type is UNKNOWN
  6443. SPD: module part is
  6444. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6445. SPD: device width -1 bits, bus width -1 bits
  6446. SPD @ 0x00
  6447. SPD: module type is UNKNOWN
  6448. SPD: module part is
  6449. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6450. SPD: device width -1 bits, bus width -1 bits
  6451. Timestamp - calling FspMemoryInit: 2762726921
  6452. Timestamp - returning from FspMemoryInit: 163309628093
  6453. CBMEM:
  6454. IMD: root @ 0x7afff000 254 entries.
  6455. IMD: root @ 0x7affec00 62 entries.
  6456. External stage cache:
  6457. IMD: root @ 0x7b3ff000 254 entries.
  6458. IMD: root @ 0x7b3fec00 62 entries.
  6459. Timestamp - after RAM initialization: 163393038871
  6460. 2 DIMMs found
  6461. SMM Memory Map
  6462. SMRAM : 0x7b000000 0x800000
  6463. Subregion 0: 0x7b000000 0x200000
  6464. Subregion 1: 0x7b200000 0x200000
  6465. Subregion 2: 0x7b400000 0x400000
  6466. top_of_ram = 0x7b000000
  6467. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  6468. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  6469. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  6470. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6471. CBFS: Locating 'fallback/postcar'
  6472. CBFS: Found @ offset e6e00 size 5668
  6473. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  6474. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  6475. Processing 287 relocs. Offset value of 0x78bd0000
  6476. Timestamp - end of romstage: 163653877124
  6477. BS: romstage times (exec / console): total (unknown) / 223 ms
  6478.  
  6479.  
  6480. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  6481. Timestamp - start of postcar: 163727558078
  6482. Timestamp - end of postcar: 163742583911
  6483. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6484. CBFS: Locating 'fallback/ramstage'
  6485. CBFS: Found @ offset 3c000 size 17f37
  6486. Timestamp - starting to load ramstage: 163800686290
  6487. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  6488. Timestamp - starting LZMA decompress (ignore for x86): 163841618135
  6489. Timestamp - finished LZMA decompress (ignore for x86): 163896662082
  6490. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  6491. Processing 3860 relocs. Offset value of 0x79d0a000
  6492. Timestamp - finished loading ramstage: 163968272216
  6493. BS: postcar times (exec / console): total (unknown) / 67 ms
  6494.  
  6495.  
  6496. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  6497. Timestamp - start of ramstage: 164043687304
  6498. Normal boot.
  6499. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6500. CBFS: Locating 'cpu_microcode_blob.bin'
  6501. CBFS: Found @ offset b380 size 30c00
  6502. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  6503. Skip microcode update
  6504. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6505. CBFS: Locating 'fsps.bin'
  6506. CBFS: Found @ offset b8dc0 size 2e000
  6507. Detected 2 core, 4 thread CPU.
  6508. Setting up SMI for CPU
  6509. IED base = 0x7b400000
  6510. IED size = 0x00400000
  6511. Will perform SMM setup.
  6512. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  6513. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  6514. Processing 16 relocs. Offset value of 0x00030000
  6515. Attempting to start 3 APs
  6516. Waiting for 10ms after sending INIT.
  6517. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  6518. done.
  6519. AP: slot 1 apic_id 3.
  6520. AP: slot 2 apic_id 2.
  6521. Waiting for 2nd SIPI to complete...done.
  6522. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  6523. Processing 13 relocs. Offset value of 0x00038000
  6524. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  6525. Installing SMM handler to 0x7b000000
  6526. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  6527. Processing 103 relocs. Offset value of 0x7b010000
  6528. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  6529. Processing 13 relocs. Offset value of 0x7b008000
  6530. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  6531. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  6532. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  6533. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  6534. Clearing SMI status registers
  6535. SMI_STS: PM1
  6536. TMROF TCO_STS: SECOND_TO
  6537. New SMBASE 0x7b000000
  6538. In relocation handler: CPU 0
  6539. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  6540. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6541. Relocation complete.
  6542. New SMBASE 0x7afff400
  6543. In relocation handler: CPU 3
  6544. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  6545. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6546. Relocation complete.
  6547. New SMBASE 0x7afffc00
  6548. In relocation handler: CPU 1
  6549. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  6550. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6551. Relocation complete.
  6552. New SMBASE 0x7afff800
  6553. In relocation handler: CPU 2
  6554. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  6555. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6556. Relocation complete.
  6557. Initializing CPU #0
  6558. CPU: vendor Intel device 906e9
  6559. CPU: family 06, model 9e, stepping 09
  6560. Clearing out pending MCEs
  6561. Setting up local APIC...
  6562. apic_id: 0x00 done.
  6563. cpu: energy policy set to 6
  6564. Turbo is unavailable
  6565. Skip microcode update
  6566. CPU #0 initialized
  6567. Initializing CPU #3
  6568. Initializing CPU #1
  6569. Initializing CPU #2
  6570. CPU: vendor Intel device 906e9
  6571. CPU: family 06, model 9e, stepping 09
  6572. CPU: vendor Intel device 906e9
  6573. CPU: family 06, model 9e, stepping 09
  6574. Clearing out pending MCEs
  6575. Clearing out pending MCEs
  6576. Setting up local APIC...
  6577. CPU: vendor Intel device 906e9
  6578. CPU: family 06, model 9e, stepping 09
  6579. Clearing out pending MCEs
  6580. Setting up local APIC...
  6581. Setting up local APIC...
  6582. apic_id: 0x03 done.
  6583. apic_id: 0x02 done.
  6584. cpu: energy policy set to 6
  6585. cpu: energy policy set to 6
  6586. Skip microcode update
  6587. CPU #1 initialized
  6588. Skip microcode update
  6589. CPU #2 initialized
  6590. apic_id: 0x01 done.
  6591. cpu: energy policy set to 6
  6592. Skip microcode update
  6593. CPU #3 initialized
  6594. bsp_do_flight_plan done after 218 msecs.
  6595. Enabling SMIs.
  6596. Locking SMM.
  6597. VMX status: enabled
  6598. VMX status: enabled
  6599. IA32_FEATURE_CONTROL status: locked
  6600. VMX status: enabled
  6601. VMX status: enabled
  6602. IA32_FEATURE_CONTROL status: locked
  6603. IA32_FEATURE_CONTROL status: locked
  6604. IA32_FEATURE_CONTROL status: locked
  6605. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 141 / 191 ms
  6606. Timestamp - device enumeration: 165422483468
  6607. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6608. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6609. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6610. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6611. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6612. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6613. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6614. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6615. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6616. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6617. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6618. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6619. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6620. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6621. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6622. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6623. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6624. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6625. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6626. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6627. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6628. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6629. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6630. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6631. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6632. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6633. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6634. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6635. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6636. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6637. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6638. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6639. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6640. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6641. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6642. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6643. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6644. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6645. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6646. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6647. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6648. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6649. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6650. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6651. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6652. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6653. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6654. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6655. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6656. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6657. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6658. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6659. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6660. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6661. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6662. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6663. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6664. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6665. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6666. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6667. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6668. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6669. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6670. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6671. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6672. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6673. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6674. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6675. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6676. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6677. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6678. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6679. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6680. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6681. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6682. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6683. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6684. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6685. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6686. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6687. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6688. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6689. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6690. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6691. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6692. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6693. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6694. Timestamp - calling FspSiliconInit: 167528197959
  6695. €€€€€€€€€€€€€€€€€€€Àÿÿÿÿÿÿÿþþÿþÿÿÿÿþÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  6696.  
  6697. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  6698. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  6699. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  6700. CPU: AES supported, TXT NOT supported, VT supported
  6701. MCH: device id 590f (rev 06) is Kabylake-S
  6702. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  6703. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  6704. Timestamp - end of bootblock: 171334154
  6705. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  6706. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  6707. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6708. CBFS: Locating 'fallback/romstage'
  6709. CBFS: Found @ offset 80 size b284
  6710. Timestamp - starting to load romstage: 260953474
  6711. Timestamp - finished loading romstage: 277917121
  6712. BS: bootblock times (exec / console): total (unknown) / 66 ms
  6713.  
  6714.  
  6715. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  6716. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  6717. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  6718. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  6719. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  6720. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  6721. TCO_STS: 0000 0000
  6722. GEN_PMCON: e0810200 00001848
  6723. GBLRST_CAUSE: 00001000 00000000
  6724. prev_sleep_state 0
  6725. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6726. CBFS: Locating 'fspm.bin'
  6727. CBFS: Found @ offset 54dc0 size 63000
  6728. Timestamp - before RAM initialization: 510288372
  6729. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  6730. MRC: no data in 'RW_MRC_CACHE'
  6731. PRMRR disabled by config.
  6732. SPD @ 0x50
  6733. SPD: module type is DDR4
  6734. SPD: module part is PSD48G240082
  6735. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  6736. SPD: device width 16 bits, bus width 64 bits
  6737. SPD: module size is 8192 MB (per channel)
  6738. SPD @ 0x52
  6739. SPD: module type is DDR4
  6740. SPD: module part is CMK8GX4M1A2400C16
  6741. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  6742. SPD: device width 8 bits, bus width 64 bits
  6743. SPD: module size is 8192 MB (per channel)
  6744. SPD @ 0x00
  6745. SPD: module type is UNKNOWN
  6746. SPD: module part is
  6747. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6748. SPD: device width -1 bits, bus width -1 bits
  6749. SPD @ 0x00
  6750. SPD: module type is UNKNOWN
  6751. SPD: module part is
  6752. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6753. SPD: device width -1 bits, bus width -1 bits
  6754. Timestamp - calling FspMemoryInit: 2762492666
  6755.  
  6756.  
  6757. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  6758. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  6759. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  6760. CPU: AES supported, TXT NOT supported, VT supported
  6761. MCH: device id 590f (rev 06) is Kabylake-S
  6762. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  6763. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  6764. Timestamp - end of bootblock: 172285500
  6765. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  6766. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  6767. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6768. CBFS: Locating 'fallback/romstage'
  6769. CBFS: Found @ offset 80 size b284
  6770. Timestamp - starting to load romstage: 262527178
  6771. Timestamp - finished loading romstage: 279612510
  6772. BS: bootblock times (exec / console): total (unknown) / 67 ms
  6773.  
  6774.  
  6775. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  6776. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  6777. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  6778. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  6779. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  6780. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  6781. TCO_STS: 0000 0000
  6782. GEN_PMCON: e0210200 00001a48
  6783. GBLRST_CAUSE: 00001000 00000000
  6784. prev_sleep_state 0
  6785. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6786. CBFS: Locating 'fspm.bin'
  6787. CBFS: Found @ offset 54dc0 size 63000
  6788. Timestamp - before RAM initialization: 513401032
  6789. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  6790. MRC: no data in 'RW_MRC_CACHE'
  6791. PRMRR disabled by config.
  6792. SPD @ 0x50
  6793. SPD: module type is DDR4
  6794. SPD: module part is PSD48G240082
  6795. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  6796. SPD: device width 16 bits, bus width 64 bits
  6797. SPD: module size is 8192 MB (per channel)
  6798. SPD @ 0x52
  6799. SPD: module type is DDR4
  6800. SPD: module part is CMK8GX4M1A2400C16
  6801. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  6802. SPD: device width 8 bits, bus width 64 bits
  6803. SPD: module size is 8192 MB (per channel)
  6804. SPD @ 0x00
  6805. SPD: module type is UNKNOWN
  6806. SPD: module part is
  6807. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6808. SPD: device width -1 bits, bus width -1 bits
  6809. SPD @ 0x00
  6810. SPD: module type is UNKNOWN
  6811. SPD: module part is
  6812. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  6813. SPD: device width -1 bits, bus width -1 bits
  6814. Timestamp - calling FspMemoryInit: 2767751370
  6815. Timestamp - returning from FspMemoryInit: 163491982029
  6816. CBMEM:
  6817. IMD: root @ 0x7afff000 254 entries.
  6818. IMD: root @ 0x7affec00 62 entries.
  6819. External stage cache:
  6820. IMD: root @ 0x7b3ff000 254 entries.
  6821. IMD: root @ 0x7b3fec00 62 entries.
  6822. Timestamp - after RAM initialization: 163575888561
  6823. 2 DIMMs found
  6824. SMM Memory Map
  6825. SMRAM : 0x7b000000 0x800000
  6826. Subregion 0: 0x7b000000 0x200000
  6827. Subregion 1: 0x7b200000 0x200000
  6828. Subregion 2: 0x7b400000 0x400000
  6829. top_of_ram = 0x7b000000
  6830. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  6831. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  6832. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  6833. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6834. CBFS: Locating 'fallback/postcar'
  6835. CBFS: Found @ offset e6e00 size 5668
  6836. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  6837. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  6838. Processing 287 relocs. Offset value of 0x78bd0000
  6839. Timestamp - end of romstage: 163837654569
  6840. BS: romstage times (exec / console): total (unknown) / 225 ms
  6841.  
  6842.  
  6843. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  6844. Timestamp - start of postcar: 163911333880
  6845. Timestamp - end of postcar: 163926355157
  6846. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6847. CBFS: Locating 'fallback/ramstage'
  6848. CBFS: Found @ offset 3c000 size 17f37
  6849. Timestamp - starting to load ramstage: 163984461389
  6850. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  6851. Timestamp - starting LZMA decompress (ignore for x86): 164025395647
  6852. Timestamp - finished LZMA decompress (ignore for x86): 164080531669
  6853. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  6854. Processing 3860 relocs. Offset value of 0x79d0a000
  6855. Timestamp - finished loading ramstage: 164152125370
  6856. BS: postcar times (exec / console): total (unknown) / 67 ms
  6857.  
  6858.  
  6859. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  6860. Timestamp - start of ramstage: 164227542214
  6861. Normal boot.
  6862. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6863. CBFS: Locating 'cpu_microcode_blob.bin'
  6864. CBFS: Found @ offset b380 size 30c00
  6865. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  6866. Skip microcode update
  6867. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  6868. CBFS: Locating 'fsps.bin'
  6869. CBFS: Found @ offset b8dc0 size 2e000
  6870. Detected 2 core, 4 thread CPU.
  6871. Setting up SMI for CPU
  6872. IED base = 0x7b400000
  6873. IED size = 0x00400000
  6874. Will perform SMM setup.
  6875. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  6876. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  6877. Processing 16 relocs. Offset value of 0x00030000
  6878. Attempting to start 3 APs
  6879. Waiting for 10ms after sending INIT.
  6880. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  6881. done.
  6882. AP: slot 2 apic_id 2.
  6883. AP: slot 1 apic_id 3.
  6884. Waiting for 2nd SIPI to complete...done.
  6885. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  6886. Processing 13 relocs. Offset value of 0x00038000
  6887. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  6888. Installing SMM handler to 0x7b000000
  6889. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  6890. Processing 103 relocs. Offset value of 0x7b010000
  6891. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  6892. Processing 13 relocs. Offset value of 0x7b008000
  6893. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  6894. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  6895. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  6896. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  6897. Clearing SMI status registers
  6898. SMI_STS: PM1
  6899. TMROF TCO_STS: SECOND_TO
  6900. New SMBASE 0x7b000000
  6901. In relocation handler: CPU 0
  6902. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  6903. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6904. Relocation complete.
  6905. New SMBASE 0x7afff400
  6906. In relocation handler: CPU 3
  6907. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  6908. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6909. Relocation complete.
  6910. New SMBASE 0x7afff800
  6911. In relocation handler: CPU 2
  6912. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  6913. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6914. Relocation complete.
  6915. New SMBASE 0x7afffc00
  6916. In relocation handler: CPU 1
  6917. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  6918. Writing SMRR. base = 0x7b000006, mask=0xff800800
  6919. Relocation complete.
  6920. Initializing CPU #0
  6921. CPU: vendor Intel device 906e9
  6922. CPU: family 06, model 9e, stepping 09
  6923. Clearing out pending MCEs
  6924. Setting up local APIC...
  6925. apic_id: 0x00 done.
  6926. cpu: energy policy set to 6
  6927. Turbo is unavailable
  6928. Skip microcode update
  6929. CPU #0 initialized
  6930. Initializing CPU #3
  6931. Initializing CPU #1
  6932. Initializing CPU #2
  6933. CPU: vendor Intel device 906e9
  6934. CPU: family 06, model 9e, stepping 09
  6935. CPU: vendor Intel device 906e9
  6936. CPU: family 06, model 9e, stepping 09
  6937. Clearing out pending MCEs
  6938. Clearing out pending MCEs
  6939. Setting up local APIC...
  6940. CPU: vendor Intel device 906e9
  6941. CPU: family 06, model 9e, stepping 09
  6942. Clearing out pending MCEs
  6943. Setting up local APIC...
  6944. apic_id: 0x03 done.
  6945. apic_id: 0x02 done.
  6946. cpu: energy policy set to 6
  6947. cpu: energy policy set to 6
  6948. Skip microcode update
  6949. CPU #1 initialized
  6950. Skip microcode update
  6951. CPU #2 initialized
  6952. Setting up local APIC...
  6953. apic_id: 0x01 done.
  6954. cpu: energy policy set to 6
  6955. Skip microcode update
  6956. CPU #3 initialized
  6957. bsp_do_flight_plan done after 218 msecs.
  6958. Enabling SMIs.
  6959. Locking SMM.
  6960. VMX status: enabled
  6961. VMX status: enabled
  6962. IA32_FEATURE_CONTROL status: locked
  6963. VMX status: enabled
  6964. VMX status: enabled
  6965. IA32_FEATURE_CONTROL status: locked
  6966. IA32_FEATURE_CONTROL status: locked
  6967. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 141 / 191 ms
  6968. IA32_FEATURE_CONTROL status: locked
  6969. Timestamp - device enumeration: 165593836079
  6970. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6971. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6972. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6973. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6974. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6975. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6976. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6977. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6978. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6979. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6980. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6981. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6982. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6983. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6984. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6985. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6986. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6987. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6988. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6989. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6990. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6991. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6992. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6993. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6994. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6995. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6996. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6997. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6998. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  6999. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7000. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7001. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7002. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7003. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7004. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7005. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7006. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7007. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7008. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7009. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7010. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7011. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7012. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7013. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7014. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7015. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7016. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7017. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7018. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7019. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7020. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7021. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7022. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7023. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7024. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7025. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7026. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7027. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7028. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7029. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7030. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7031. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7032. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7033. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7034. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7035. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7036. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7037. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7038. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7039. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7040. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7041. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7042. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7043. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7044. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7045. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7046. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7047. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7048. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7049. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7050. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7051. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7052. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7053. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7054. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7055. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7056. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  7057. Timestamp - calling FspSiliconInit: 167705470169
  7058. Timestamp - returning from FspSiliconInit: 167803582459
  7059. ITSS IRQ Polarities Before:
  7060. IPC0: 0x00ff4000
  7061. IPC1: 0x00000007
  7062. IPC2: 0x00000000
  7063. IPC3: 0x00000000
  7064. ITSS IRQ Polarities After:
  7065. IPC0: 0x00ff4000
  7066. IPC1: 0x00000007
  7067. IPC2: 0x00000000
  7068. IPC3: 0x00000000
  7069. Found PCIe Root Port #5 at PCI: 00:1c.0.
  7070. Found PCIe Root Port #8 at PCI: 00:1c.7.
  7071. Found PCIe Root Port #9 at PCI: 00:1d.0.
  7072. pcie_rp_update_dev: Couldn't find PCIe Root Port #1 (originally PCI: 00:1c.0) which was enabled in devicetree, removing.
  7073. Remapping PCIe Root Port #5 from PCI: 00:1c.4 to new function number 0.
  7074. BS: BS_DEV_INIT_CHIPS run times (exec / console): 28 / 590 ms
  7075. Enumerating buses...
  7076. Root Device scanning...
  7077. CPU_CLUSTER: 0 enabled
  7078. DOMAIN: 0000 enabled
  7079. DOMAIN: 0000 scanning...
  7080. PCI: pci_scan_bus for bus 00
  7081. PCI: 00:00.0 [8086/590f] enabled
  7082. PCI: 00:01.0 subordinate bus PCI Express
  7083. PCI: 00:01.0 [8086/1901] enabled
  7084. PCI: 00:02.0 [8086/5912] enabled
  7085. PCI: 00:04.0 [8086/1903] enabled
  7086. PCI: 00:14.0 [8086/a12f] enabled
  7087. PCI: 00:14.2 [8086/a131] enabled
  7088. PCI: 00:16.0 [8086/a13a] enabled
  7089. PCI: 00:17.0 [8086/a102] enabled
  7090. PCI: 00:1c.0 [8086/a114] enabled
  7091. PCI: 00:1c.7 [8086/a117] enabled
  7092. PCI: 00:1d.0 [8086/a118] enabled
  7093. PCI: 00:1f.0 [8086/a143] enabled
  7094. PCI: 00:1f.1 [8086/a120] enabled
  7095. PCI: 00:1f.2 [8086/a121] enabled
  7096. PCI: 00:1f.3 [8086/a170] enabled
  7097. PCI: 00:1f.4 [8086/a123] enabled
  7098. PCI: 00:1f.5 [8086/a124] enabled
  7099. PCI: Leftover static devices:
  7100. PCI: 00:14.1
  7101. PCI: 00:15.0
  7102. PCI: 00:15.1
  7103. PCI: 00:15.2
  7104. PCI: 00:15.3
  7105. PCI: 00:16.1
  7106. PCI: 00:16.2
  7107. PCI: 00:16.3
  7108. PCI: 00:16.4
  7109. PCI: 00:19.0
  7110. PCI: 00:19.1
  7111. PCI: 00:19.2
  7112. PCI: 00:1e.0
  7113. PCI: 00:1e.1
  7114. PCI: 00:1e.2
  7115. PCI: 00:1e.3
  7116. PCI: 00:1e.4
  7117. PCI: 00:1e.5
  7118. PCI: 00:1e.6
  7119. PCI: 00:1f.6
  7120. PCI: Check your devicetree.cb.
  7121. PCI: 00:01.0 scanning...
  7122. PCI: pci_scan_bus for bus 01
  7123. PCI: 01:00.0 [10de/1d01] enabled
  7124. PCI: 01:00.1 [10de/0fb8] enabled
  7125. Enabling Common Clock Configuration
  7126. ASPM: Enabled L0s and L1
  7127. PCIe: Max_Payload_Size adjusted to 256
  7128. Enabling Common Clock Configuration
  7129. ASPM: Enabled L0s and L1
  7130. PCIe: Max_Payload_Size adjusted to 256
  7131. scan_bus: bus PCI: 00:01.0 finished in 27 msecs
  7132. PCI: 00:02.0 scanning...
  7133. scan_bus: bus PCI: 00:02.0 finished in 0 msecs
  7134. PCI: 00:14.0 scanning...
  7135. scan_bus: bus PCI: 00:14.0 finished in 0 msecs
  7136. PCI: 00:1c.0 scanning...
  7137. PCI: pci_scan_bus for bus 02
  7138. scan_bus: bus PCI: 00:1c.0 finished in 2 msecs
  7139. PCI: 00:1c.7 scanning...
  7140. PCI: pci_scan_bus for bus 03
  7141. PCI: 03:00.0 [10ec/8168] enabled
  7142. Enabling Common Clock Configuration
  7143. ASPM: Enabled L1
  7144. PCIe: Max_Payload_Size adjusted to 128
  7145. scan_bus: bus PCI: 00:1c.7 finished in 14 msecs
  7146. PCI: 00:1d.0 scanning...
  7147. PCI: pci_scan_bus for bus 04
  7148. scan_bus: bus PCI: 00:1d.0 finished in 2 msecs
  7149. PCI: 00:1f.0 scanning...
  7150. PNP: 002e.2 enabled
  7151. PNP: 002e.5 enabled
  7152. PNP: 002e.6 disabled
  7153. PNP: 002e.7 disabled
  7154. PNP: 002e.107 disabled
  7155. PNP: 002e.8 disabled
  7156. PNP: 002e.108 disabled
  7157. PNP: 002e.308 disabled
  7158. PNP: 002e.408 disabled
  7159. PNP: 002e.9 disabled
  7160. PNP: 002e.109 disabled
  7161. PNP: 002e.209 disabled
  7162. PNP: 002e.309 disabled
  7163. PNP: 002e.a enabled
  7164. PNP: 002e.b disabled
  7165. PNP: 002e.d disabled
  7166. PNP: 002e.e disabled
  7167. PNP: 002e.f disabled
  7168. PNP: 002e.14 disabled
  7169. PNP: 002e.16 disabled
  7170. PNP: 002e.116 disabled
  7171. PNP: 002e.316 disabled
  7172. PNP: 002e.416 disabled
  7173. PNP: 002e.516 disabled
  7174. PNP: 002e.616 disabled
  7175. PNP: 002e.716 disabled
  7176. PNP: 002e.207 enabled
  7177. PNP: 002e.11 enabled
  7178. PNP: 002e.12 enabled
  7179. PNP: 002e.15 enabled
  7180. scan_bus: bus PCI: 00:1f.0 finished in 62 msecs
  7181. PCI: 00:1f.2 scanning...
  7182. scan_bus: bus PCI: 00:1f.2 finished in 0 msecs
  7183. PCI: 00:1f.4 scanning...
  7184. scan_bus: bus PCI: 00:1f.4 finished in 0 msecs
  7185. scan_bus: bus DOMAIN: 0000 finished in 259 msecs
  7186. scan_bus: bus Root Device finished in 270 msecs
  7187. done
  7188. BS: BS_DEV_ENUMERATE run times (exec / console): 2 / 277 ms
  7189. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  7190. MRC: Checking cached data update for 'RW_MRC_CACHE'.
  7191. SF: Detected 00 0000 with sector size 0x1000, total 0x1000000
  7192. MRC: no data in 'RW_MRC_CACHE'
  7193. MRC: cache data 'RW_MRC_CACHE' needs update.
  7194. SPI Transaction Error at Flash Offset c00000 HSFSTS = 0x01046003
  7195. REGF metadata allocation failed: 392 data blocks 4096 total blocks
  7196. MRC: Could not find region 'UNIFIED_MRC_CACHE'
  7197. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  7198. MRC: NOT enabling PRR for 'RW_MRC_CACHE'.
  7199. BS: BS_DEV_ENUMERATE exit times (exec / console): 0 / 47 ms
  7200. Timestamp - device configuration: 169343541106
  7201. found VGA at PCI: 01:00.0
  7202. Setting up VGA for PCI: 01:00.0
  7203. Setting PCI_BRIDGE_CTL_VGA for bridge PCI: 00:01.0
  7204. Setting PCI_BRIDGE_CTL_VGA for bridge DOMAIN: 0000
  7205. Setting PCI_BRIDGE_CTL_VGA for bridge Root Device
  7206. Allocating resources...
  7207. Reading resources...
  7208. Done reading resources.
  7209. Setting resources...
  7210. PCI: 00:01.0 1c <- [0x0000002000 - 0x0000002fff] size 0x00001000 gran 0x0c bus 01 io
  7211. PCI: 00:01.0 24 <- [0x00a0000000 - 0x00b1ffffff] size 0x12000000 gran 0x14 bus 01 prefmem
  7212. PCI: 00:01.0 20 <- [0x00d0000000 - 0x00d10fffff] size 0x01100000 gran 0x14 bus 01 mem
  7213. PCI: 01:00.0 10 <- [0x00d0000000 - 0x00d0ffffff] size 0x01000000 gran 0x18 mem
  7214. PCI: 01:00.0 14 <- [0x00a0000000 - 0x00afffffff] size 0x10000000 gran 0x1c prefmem64
  7215. PCI: 01:00.0 1c <- [0x00b0000000 - 0x00b1ffffff] size 0x02000000 gran 0x19 prefmem64
  7216. PCI: 01:00.0 24 <- [0x0000002000 - 0x000000207f] size 0x00000080 gran 0x07 io
  7217. PCI: 01:00.0 30 <- [0x00d1000000 - 0x00d107ffff] size 0x00080000 gran 0x13 romem
  7218. PCI: 01:00.1 10 <- [0x00d1080000 - 0x00d1083fff] size 0x00004000 gran 0x0e mem
  7219. PCI: 00:02.0 10 <- [0x00d2000000 - 0x00d2ffffff] size 0x01000000 gran 0x18 mem64
  7220. PCI: 00:02.0 18 <- [0x00c0000000 - 0x00cfffffff] size 0x10000000 gran 0x1c prefmem64
  7221. PCI: 00:02.0 20 <- [0x0000004000 - 0x000000403f] size 0x00000040 gran 0x06 io
  7222. PCI: 00:04.0 10 <- [0x00d3120000 - 0x00d3127fff] size 0x00008000 gran 0x0f mem64
  7223. PCI: 00:14.0 10 <- [0x00d3100000 - 0x00d310ffff] size 0x00010000 gran 0x10 mem64
  7224. PCI: 00:14.2 10 <- [0x00d3132000 - 0x00d3132fff] size 0x00001000 gran 0x0c mem64
  7225. PCI: 00:16.0 10 <- [0x00d3133000 - 0x00d3133fff] size 0x00001000 gran 0x0c mem64
  7226. PCI: 00:17.0 10 <- [0x00d3130000 - 0x00d3131fff] size 0x00002000 gran 0x0d mem
  7227. PCI: 00:17.0 14 <- [0x00d3136000 - 0x00d31360ff] size 0x00000100 gran 0x08 mem
  7228. PCI: 00:17.0 18 <- [0x0000004060 - 0x0000004067] size 0x00000008 gran 0x03 io
  7229. PCI: 00:17.0 1c <- [0x0000004068 - 0x000000406b] size 0x00000004 gran 0x02 io
  7230. PCI: 00:17.0 20 <- [0x0000004040 - 0x000000405f] size 0x00000020 gran 0x05 io
  7231. PCI: 00:17.0 24 <- [0x00d3135000 - 0x00d31357ff] size 0x00000800 gran 0x0b mem
  7232. PCI: 00:1c.0 1c <- [0x000000ef9f - 0x000000ef9e] size 0x00000000 gran 0x0c bus 02 io
  7233. PCI: 00:1c.0 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 02 prefmem
  7234. PCI: 00:1c.0 20 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 02 mem
  7235. PCI: 00:1c.7 1c <- [0x0000003000 - 0x0000003fff] size 0x00001000 gran 0x0c bus 03 io
  7236. PCI: 00:1c.7 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 03 prefmem
  7237. PCI: 00:1c.7 20 <- [0x00d3000000 - 0x00d30fffff] size 0x00100000 gran 0x14 bus 03 mem
  7238. PCI: 03:00.0 10 <- [0x0000003000 - 0x00000030ff] size 0x00000100 gran 0x08 io
  7239. PCI: 03:00.0 18 <- [0x00d3004000 - 0x00d3004fff] size 0x00001000 gran 0x0c mem64
  7240. PCI: 03:00.0 20 <- [0x00d3000000 - 0x00d3003fff] size 0x00004000 gran 0x0e mem64
  7241. PCI: 00:1d.0 1c <- [0x000000ef9f - 0x000000ef9e] size 0x00000000 gran 0x0c bus 04 io
  7242. PCI: 00:1d.0 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 04 prefmem
  7243. PCI: 00:1d.0 20 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 04 mem
  7244. PNP: 002e.2 60 <- [0x00000003f8 - 0x00000003ff] size 0x00000008 gran 0x03 io
  7245. PNP: 002e.2 70 <- [0x0000000004 - 0x0000000004] size 0x00000001 gran 0x00 irq
  7246. PNP: 002e.5 60 <- [0x0000000060 - 0x0000000060] size 0x00000001 gran 0x00 io
  7247. PNP: 002e.5 62 <- [0x0000000064 - 0x0000000064] size 0x00000001 gran 0x00 io
  7248. PNP: 002e.5 70 <- [0x0000000001 - 0x0000000001] size 0x00000001 gran 0x00 irq
  7249. PNP: 002e.5 72 <- [0x000000000c - 0x000000000c] size 0x00000001 gran 0x00 irq
  7250. LPC: Opened IO window LGIR1: base 3f8 size 8
  7251. LPC: Opened IO window LGIR2: base 60 size 1
  7252. LPC: Opened IO window LGIR3: base 64 size 1
  7253. LPC: Cannot open IO window: 0 size 8
  7254. No more IO windows
  7255. LPC: Cannot open IO window: 0 size 8
  7256. No more IO windows
  7257. LPC: Cannot open IO window: 290 size 2
  7258. No more IO windows
  7259. LPC: Cannot open IO window: 0 size 8
  7260. No more IO windows
  7261. PCI: 00:1f.2 10 <- [0x00d3128000 - 0x00d312bfff] size 0x00004000 gran 0x0e mem
  7262. PCI: 00:1f.3 10 <- [0x00d312c000 - 0x00d312ffff] size 0x00004000 gran 0x0e mem64
  7263. PCI: 00:1f.3 20 <- [0x00d3110000 - 0x00d311ffff] size 0x00010000 gran 0x10 mem64
  7264. PCI: 00:1f.4 10 <- [0x00d3137000 - 0x00d31370ff] size 0x00000100 gran 0x08 mem64
  7265. PCI: 00:1f.5 10 <- [0x00d3134000 - 0x00d3134fff] size 0x00001000 gran 0x0c mem
  7266. Done setting resources.
  7267. Done allocating resources.
  7268. BS: BS_DEV_RESOURCES run times (exec / console): 1 / 403 ms
  7269. Timestamp - calling FspNotify(AfterPciEnumeration): 170942232000
  7270. Timestamp - returning from FspNotify(AfterPciEnumeration): 170966523282
  7271. BS: BS_DEV_ENABLE entry times (exec / console): 0 / 13 ms
  7272. Timestamp - device enable: 171013893903
  7273. Enabling resources...
  7274. PCI: 00:00.0 subsystem <- 1043/8694
  7275. PCI: 00:00.0 cmd <- 06
  7276. PCI: 00:01.0 bridge ctrl <- 001b
  7277. PCI: 00:01.0 cmd <- 07
  7278. PCI: 00:02.0 subsystem <- 1043/8694
  7279. PCI: 00:02.0 cmd <- 03
  7280. PCI: 00:04.0 cmd <- 02
  7281. PCI: 00:14.0 subsystem <- 1043/8694
  7282. PCI: 00:14.0 cmd <- 02
  7283. PCI: 00:14.2 subsystem <- 1043/8694
  7284. PCI: 00:14.2 cmd <- 02
  7285. PCI: 00:16.0 subsystem <- 1043/8694
  7286. PCI: 00:16.0 cmd <- 02
  7287. PCI: 00:17.0 subsystem <- 1043/8694
  7288. PCI: 00:17.0 cmd <- 03
  7289. PCI: 00:1c.0 bridge ctrl <- 0013
  7290. PCI: 00:1c.0 subsystem <- 1043/8694
  7291. PCI: 00:1c.0 cmd <- 00
  7292. PCI: 00:1c.7 bridge ctrl <- 0013
  7293. PCI: 00:1c.7 subsystem <- 1043/8694
  7294. PCI: 00:1c.7 cmd <- 07
  7295. PCI: 00:1d.0 bridge ctrl <- 0013
  7296. PCI: 00:1d.0 subsystem <- 1043/8694
  7297. PCI: 00:1d.0 cmd <- 00
  7298. PCI: 00:1f.0 subsystem <- 1043/8694
  7299. PCI: 00:1f.0 cmd <- 07
  7300. PCI: 00:1f.2 subsystem <- 1043/8694
  7301. PCI: 00:1f.2 cmd <- 06
  7302. PCI: 00:1f.3 subsystem <- 1043/8694
  7303. PCI: 00:1f.3 cmd <- 02
  7304. PCI: 00:1f.4 subsystem <- 1043/8694
  7305. PCI: 00:1f.4 cmd <- 03
  7306. PCI: 00:1f.5 subsystem <- 1043/8694
  7307. PCI: 00:1f.5 cmd <- 406
  7308. PCI: 01:00.0 cmd <- 03
  7309. PCI: 01:00.1 cmd <- 02
  7310. PCI: 03:00.0 cmd <- 03
  7311. done.
  7312. BS: BS_DEV_ENABLE run times (exec / console): 0 / 109 ms
  7313. ME: Version : Unavailable
  7314. BS: BS_DEV_ENABLE exit times (exec / console): 0 / 2 ms
  7315. Timestamp - device initialization: 171490947102
  7316. Initializing devices...
  7317. Root Device init
  7318. Root Device init finished in 0 msecs
  7319. CPU_CLUSTER: 0 init
  7320. CPU_CLUSTER: 0 init finished in 0 msecs
  7321. PCI: 00:00.0 init
  7322. CPU TDP: 51 Watts
  7323. CPU PL2 = 91 Watts
  7324. PCI: 00:00.0 init finished in 4 msecs
  7325. PCI: 00:02.0 init
  7326. PCI: 00:02.0 init finished in 0 msecs
  7327. PCI: 00:04.0 init
  7328. PCI: 00:04.0 init finished in 0 msecs
  7329. PCI: 00:14.0 init
  7330. PCI: 00:14.0 init finished in 0 msecs
  7331. PCI: 00:14.2 init
  7332. PCI: 00:14.2 init finished in 0 msecs
  7333. PCI: 00:16.0 init
  7334. PCI: 00:16.0 init finished in 0 msecs
  7335. PCI: 00:17.0 init
  7336. PCI: 00:17.0 init finished in 0 msecs
  7337. PCI: 00:1c.0 init
  7338. Initializing PCH PCIe bridge.
  7339. PCI: 00:1c.0 init finished in 2 msecs
  7340. PCI: 00:1c.7 init
  7341. Initializing PCH PCIe bridge.
  7342. PCI: 00:1c.7 init finished in 2 msecs
  7343. PCI: 00:1d.0 init
  7344. Initializing PCH PCIe bridge.
  7345. PCI: 00:1d.0 init finished in 2 msecs
  7346. PCI: 00:1f.0 init
  7347. IOAPIC: Initializing IOAPIC at 0xfec00000
  7348. IOAPIC: Bootstrap Processor Local APIC = 0x00
  7349. IOAPIC: ID = 0x02
  7350. PCI: 00:1f.0 init finished in 10 msecs
  7351. PCI: 00:1f.2 init
  7352. RTC Init
  7353. Set power on after power failure.
  7354. Disabling ACPI via APMC:
  7355. done.
  7356. Disabling Deep S3
  7357. Disabling Deep S3
  7358. Disabling Deep S4
  7359. Disabling Deep S4
  7360. Disabling Deep S5
  7361. Disabling Deep S5
  7362. PCI: 00:1f.2 init finished in 17 msecs
  7363. PCI: 00:1f.3 init
  7364. PCI: 00:1f.3 init finished in 0 msecs
  7365. PCI: 00:1f.4 init
  7366. PCI: 00:1f.4 init finished in 0 msecs
  7367. PCI: 00:1f.5 init
  7368. PCI: 00:1f.5 init finished in 0 msecs
  7369. PCI: 01:00.0 init
  7370. Timestamp - Option ROM initialization: 172041557909
  7371. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7372. CBFS: Locating 'pci10de,1d01.rom'
  7373. CBFS: 'pci10de,1d01.rom' not found.
  7374. PCI Option ROM loading disabled for PCI: 01:00.0
  7375. PCI: 01:00.0 init finished in 21 msecs
  7376. PCI: 01:00.1 init
  7377. PCI: 01:00.1 init finished in 0 msecs
  7378. PCI: 03:00.0 init
  7379. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7380. CBFS: Locating 'rt8168-macaddress'
  7381. CBFS: Found @ offset 54600 size 11
  7382. r8168: Resetting NIC...done
  7383. r8168: Programming MAC Address...done
  7384. PCI: 03:00.0 init finished in 17 msecs
  7385. PNP: 002e.2 init
  7386. PNP: 002e.2 init finished in 0 msecs
  7387. PNP: 002e.5 init
  7388. PNP: 002e.5 init finished in 0 msecs
  7389. PNP: 002e.a init
  7390. PNP: 002e.a init finished in 0 msecs
  7391. PNP: 002e.207 init
  7392. PNP: 002e.207 init finished in 0 msecs
  7393. PNP: 002e.11 init
  7394. PNP: 002e.11 init finished in 0 msecs
  7395. PNP: 002e.12 init
  7396. PNP: 002e.12 init finished in 0 msecs
  7397. PNP: 002e.15 init
  7398. PNP: 002e.15 init finished in 0 msecs
  7399. Devices initialized
  7400. BS: BS_DEV_INIT run times (exec / console): 2 / 232 ms
  7401. Finalize devices...
  7402. Devices finalized
  7403. Timestamp - device setup done: 172437816102
  7404. BS: BS_POST_DEVICE run times (exec / console): 0 / 8 ms
  7405. Timestamp - cbmem post: 172474291091
  7406. BS: BS_OS_RESUME_CHECK run times (exec / console): 0 / 3 ms
  7407. Timestamp - write tables: 172509819183
  7408. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7409. CBFS: Locating 'fallback/dsdt.aml'
  7410. CBFS: Found @ offset ec4c0 size 2c93
  7411. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7412. CBFS: Locating 'fallback/slic'
  7413. CBFS: 'fallback/slic' not found.
  7414. ACPI: Writing ACPI tables at 7aa9f000.
  7415. ACPI: * FACS
  7416. ACPI: * DSDT
  7417. ACPI: * FADT
  7418. SCI is IRQ9
  7419. ACPI: added table 1/32, length now 40
  7420. ACPI: * SSDT
  7421. Found 1 CPU(s) with 4 core(s) each.
  7422. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  7423. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  7424. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  7425. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  7426. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  7427. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  7428. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  7429. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  7430. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  7431. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  7432. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  7433. PSS: 800MHz power 7088 control 0x800 status 0x800
  7434. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  7435. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  7436. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  7437. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  7438. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  7439. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  7440. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  7441. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  7442. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  7443. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  7444. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  7445. PSS: 800MHz power 7088 control 0x800 status 0x800
  7446. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  7447. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  7448. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  7449. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  7450. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  7451. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  7452. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  7453. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  7454. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  7455. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  7456. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  7457. PSS: 800MHz power 7088 control 0x800 status 0x800
  7458. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  7459. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  7460. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  7461. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  7462. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  7463. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  7464. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  7465. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  7466. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  7467. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  7468. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  7469. PSS: 800MHz power 7088 control 0x800 status 0x800
  7470. BUG: Parent of device PNP: 002e.2 is not a PNP device
  7471. BUG: Check your devicetree!
  7472. BUG: Parent of device PNP: 002e.5 is not a PNP device
  7473. BUG: Check your devicetree!
  7474. BUG: Parent of device PNP: 002e.6 is not a PNP device
  7475. BUG: Check your devicetree!
  7476. BUG: Parent of device PNP: 002e.107 is not a PNP device
  7477. BUG: Check your devicetree!
  7478. BUG: Parent of device PNP: 002e.8 is not a PNP device
  7479. BUG: Check your devicetree!
  7480. BUG: Parent of device PNP: 002e.108 is not a PNP device
  7481. BUG: Check your devicetree!
  7482. BUG: Parent of device PNP: 002e.308 is not a PNP device
  7483. BUG: Check your devicetree!
  7484. BUG: Parent of device PNP: 002e.408 is not a PNP device
  7485. BUG: Check your devicetree!
  7486. BUG: Parent of device PNP: 002e.9 is not a PNP device
  7487. BUG: Check your devicetree!
  7488. BUG: Parent of device PNP: 002e.109 is not a PNP device
  7489. BUG: Check your devicetree!
  7490. BUG: Parent of device PNP: 002e.209 is not a PNP device
  7491. BUG: Check your devicetree!
  7492. BUG: Parent of device PNP: 002e.309 is not a PNP device
  7493. BUG: Check your devicetree!
  7494. BUG: Parent of device PNP: 002e.a is not a PNP device
  7495. BUG: Check your devicetree!
  7496. BUG: Parent of device PNP: 002e.b is not a PNP device
  7497. BUG: Check your devicetree!
  7498. BUG: Parent of device PNP: 002e.d is not a PNP device
  7499. BUG: Check your devicetree!
  7500. BUG: Parent of device PNP: 002e.e is not a PNP device
  7501. BUG: Check your devicetree!
  7502. BUG: Parent of device PNP: 002e.f is not a PNP device
  7503. BUG: Check your devicetree!
  7504. BUG: Parent of device PNP: 002e.16 is not a PNP device
  7505. BUG: Check your devicetree!
  7506. BUG: Parent of device PNP: 002e.116 is not a PNP device
  7507. BUG: Check your devicetree!
  7508. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7509. CBFS: Locating 'pci10de,1d01.rom'
  7510. CBFS: 'pci10de,1d01.rom' not found.
  7511. PCI Option ROM loading disabled for PCI: 01:00.0
  7512. PCI: 01:00.0: Missing PCI Option ROM
  7513. BUG: Parent of device PNP: 002e.207 is not a PNP device
  7514. BUG: Check your devicetree!
  7515. BUG: Parent of device PNP: 002e.11 is not a PNP device
  7516. BUG: Check your devicetree!
  7517. BUG: Parent of device PNP: 002e.12 is not a PNP device
  7518. BUG: Check your devicetree!
  7519. BUG: Parent of device PNP: 002e.15 is not a PNP device
  7520. BUG: Check your devicetree!
  7521. ACPI: added table 2/32, length now 44
  7522. ACPI: * MCFG
  7523. ACPI: added table 3/32, length now 48
  7524. ACPI: * MADT
  7525. SCI is IRQ9
  7526. ACPI: added table 4/32, length now 52
  7527. current = 7aaa2ea0
  7528. ACPI: * DMAR
  7529. ACPI: added table 5/32, length now 56
  7530. ACPI: * IGD OpRegion
  7531. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7532. CBFS: Locating 'vbt.bin'
  7533. CBFS: Found @ offset 54680 size 49c
  7534. Timestamp - starting LZMA decompress (ignore for x86): 174534622348
  7535. Timestamp - finished LZMA decompress (ignore for x86): 174559749056
  7536. Found a VBT of 4284 bytes after decompression
  7537. GMA: Found VBT in CBFS
  7538. GMA: Found valid VBT in CBFS
  7539. current = 7aaa4f30
  7540. acpi_write_dbg2_pci_uart: Device not found
  7541. ACPI: * HPET
  7542. ACPI: added table 6/32, length now 60
  7543. ACPI: done.
  7544. ACPI tables: 24432 bytes.
  7545. smbios_write_tables: 7aa9d000
  7546. Create SMBIOS type 17
  7547. PCI: 00:00.0 (Intel 6th Gen)
  7548. SMBIOS tables: 761 bytes.
  7549. Writing table forward entry at 0x00000500
  7550. Wrote coreboot table at: 0x00000500, 0x10 bytes, checksum 5532
  7551. Writing coreboot table at 0x7aac3000
  7552. 0. 0000000000000000-0000000000000fff: CONFIGURATION TABLES
  7553. 1. 0000000000001000-000000000009ffff: RAM
  7554. 2. 00000000000a0000-00000000000fffff: RESERVED
  7555. 3. 0000000000100000-000000007aa9cfff: RAM
  7556. 4. 000000007aa9d000-000000007ab09fff: CONFIGURATION TABLES
  7557. 5. 000000007ab0a000-000000007abcefff: RAMSTAGE
  7558. 6. 000000007abcf000-000000007affffff: CONFIGURATION TABLES
  7559. 7. 000000007b000000-000000007fffffff: RESERVED
  7560. 8. 00000000e0000000-00000000efffffff: RESERVED
  7561. 9. 00000000fd000000-00000000fe00ffff: RESERVED
  7562. 10. 00000000fed10000-00000000fed19fff: RESERVED
  7563. 11. 00000000fed80000-00000000fed84fff: RESERVED
  7564. 12. 00000000fed90000-00000000fed91fff: RESERVED
  7565. 13. 0000000100000000-000000047effffff: RAM
  7566. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7567. Wrote coreboot table at: 0x7aac3000, 0x400 bytes, checksum db33
  7568. coreboot table: 1048 bytes.
  7569. IMD ROOT 0. 0x7afff000 0x00001000
  7570. IMD SMALL 1. 0x7affe000 0x00001000
  7571. FSP MEMORY 2. 0x7abfe000 0x00400000
  7572. CONSOLE 3. 0x7abde000 0x00020000
  7573. TIME STAMP 4. 0x7abdd000 0x00000910
  7574. MRC DATA 5. 0x7abdb000 0x00001878
  7575. ROMSTG STCK 6. 0x7abda000 0x00001000
  7576. AFTER CAR 7. 0x7abcf000 0x0000b000
  7577. RAMSTAGE 8. 0x7ab09000 0x000c6000
  7578. REFCODE 9. 0x7aadb000 0x0002e000
  7579. SMM BACKUP 10. 0x7aacb000 0x00010000
  7580. COREBOOT 11. 0x7aac3000 0x00008000
  7581. ACPI 12. 0x7aa9f000 0x00024000
  7582. ACPI GNVS 13. 0x7aa9e000 0x00001000
  7583. SMBIOS 14. 0x7aa9d000 0x00000800
  7584. IMD small region:
  7585. IMD ROOT 0. 0x7affec00 0x00000400
  7586. FSP RUNTIME 1. 0x7affebe0 0x00000004
  7587. FMAP 2. 0x7affeb00 0x000000e0
  7588. POWER STATE 3. 0x7affeac0 0x00000040
  7589. ROMSTAGE 4. 0x7affeaa0 0x00000004
  7590. MEM INFO 5. 0x7affe8e0 0x000001b9
  7591. Timestamp - finalize chips: 175364737091
  7592. BS: BS_WRITE_TABLES run times (exec / console): 1 / 735 ms
  7593. MTRR: Physical address space:
  7594. 0x0000000000000000 - 0x00000000000a0000 size 0x000a0000 type 6
  7595. 0x00000000000a0000 - 0x00000000000c0000 size 0x00020000 type 0
  7596. 0x00000000000c0000 - 0x000000007b800000 size 0x7b740000 type 6
  7597. 0x000000007b800000 - 0x00000000a0000000 size 0x24800000 type 0
  7598. 0x00000000a0000000 - 0x00000000b2000000 size 0x12000000 type 1
  7599. 0x00000000b2000000 - 0x0000000100000000 size 0x4e000000 type 0
  7600. 0x0000000100000000 - 0x000000047f000000 size 0x37f000000 type 6
  7601. MTRR: Fixed MSR 0x250 0x0606060606060606
  7602. MTRR: Fixed MSR 0x258 0x0606060606060606
  7603. MTRR: Fixed MSR 0x259 0x0000000000000000
  7604. MTRR: Fixed MSR 0x268 0x0606060606060606
  7605. MTRR: Fixed MSR 0x269 0x0606060606060606
  7606. MTRR: Fixed MSR 0x26a 0x0606060606060606
  7607. MTRR: Fixed MSR 0x26b 0x0606060606060606
  7608. MTRR: Fixed MSR 0x26c 0x0606060606060606
  7609. MTRR: Fixed MSR 0x26d 0x0606060606060606
  7610. MTRR: Fixed MSR 0x26e 0x0606060606060606
  7611. MTRR: Fixed MSR 0x26f 0x0606060606060606
  7612. CPU physical address size: 39 bits
  7613. MTRR: default type WB/UC MTRR counts: 9/8.
  7614. MTRR: UC selected as default type.
  7615. MTRR: 0 base 0x0000000000000000 mask 0x0000007f80000000 type 6
  7616. MTRR: 1 base 0x000000007b800000 mask 0x0000007fff800000 type 0
  7617. MTRR: 2 base 0x000000007c000000 mask 0x0000007ffc000000 type 0
  7618. MTRR: 3 base 0x00000000a0000000 mask 0x0000007ff0000000 type 1
  7619. MTRR: 4 base 0x00000000b0000000 mask 0x0000007ffe000000 type 1
  7620. MTRR: 5 base 0x0000000100000000 mask 0x0000007f00000000 type 6
  7621. MTRR: 6 base 0x0000000200000000 mask 0x0000007e00000000 type 6
  7622. MTRR: 7 base 0x0000000400000000 mask 0x0000007f80000000 type 6
  7623. MTRR: Fixed MSR 0x250 0x0606060606060606
  7624. MTRR: Fixed MSR 0x258 0x0606060606060606
  7625. MTRR: Fixed MSR 0x259 0x0000000000000000
  7626. MTRR: Fixed MSR 0x268 0x0606060606060606
  7627. MTRR: Fixed MSR 0x269 0x0606060606060606
  7628. MTRR: Fixed MSR 0x26a 0x0606060606060606
  7629. MTRR: Fixed MSR 0x26b 0x0606060606060606
  7630. MTRR: Fixed MSR 0x26c 0x0606060606060606
  7631. MTRR: Fixed MSR 0x26d 0x0606060606060606
  7632. MTRR: Fixed MSR 0x26e 0x0606060606060606
  7633. MTRR: Fixed MSR 0x26f 0x0606060606060606
  7634.  
  7635. MTRR check
  7636. Fixed MTRRs : Enabled
  7637. Variable MTRRs: Enabled
  7638.  
  7639. CPU physical address size: 39 bits
  7640. BS: BS_WRITE_TABLES exit times (exec / console): 42 / 146 ms
  7641. MTRR: Fixed MSR 0x250 0x0606060606060606
  7642. MTRR: Fixed MSR 0x250 0x0606060606060606
  7643. MTRR: Fixed MSR 0x258 0x0606060606060606
  7644. MTRR: Fixed MSR 0x259 0x0000000000000000
  7645. MTRR: Fixed MSR 0x268 0x0606060606060606
  7646. MTRR: Fixed MSR 0x269 0x0606060606060606
  7647. MTRR: Fixed MSR 0x26a 0x0606060606060606
  7648. MTRR: Fixed MSR 0x26b 0x0606060606060606
  7649. MTRR: Fixed MSR 0x26c 0x0606060606060606
  7650. MTRR: Fixed MSR 0x26d 0x0606060606060606
  7651. MTRR: Fixed MSR 0x26e 0x0606060606060606
  7652. MTRR: Fixed MSR 0x26f 0x0606060606060606
  7653. MTRR: Fixed MSR 0x258 0x0606060606060606
  7654. CPU physical address size: 39 bits
  7655. MTRR: Fixed MSR 0x259 0x0000000000000000
  7656. MTRR: Fixed MSR 0x268 0x0606060606060606
  7657. MTRR: Fixed MSR 0x269 0x0606060606060606
  7658. MTRR: Fixed MSR 0x26a 0x0606060606060606
  7659. MTRR: Fixed MSR 0x26b 0x0606060606060606
  7660. MTRR: Fixed MSR 0x26c 0x0606060606060606
  7661. MTRR: Fixed MSR 0x26d 0x0606060606060606
  7662. MTRR: Fixed MSR 0x26e 0x0606060606060606
  7663. MTRR: Fixed MSR 0x26f 0x0606060606060606
  7664. Timestamp - load payload: 176169491782
  7665. CPU physical address size: 39 bits
  7666. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7667. CBFS: Locating 'fallback/payload'
  7668. CBFS: Found @ offset ffc80 size 10f36
  7669. Checking segment from ROM address 0xffd0feb8
  7670. Payload being loaded at below 1MiB without region being marked as RAM usable.
  7671. Checking segment from ROM address 0xffd0fed4
  7672. Loading segment from ROM address 0xffd0feb8
  7673. code (compression=1)
  7674. New segment dstaddr 0x000dfba0 memsize 0x20460 srcaddr 0xffd0fef0 filesize 0x10efe
  7675. Loading Segment: addr: 0x000dfba0 memsz: 0x0000000000020460 filesz: 0x0000000000010efe
  7676. using LZMA
  7677. Timestamp - starting LZMA decompress (ignore for x86): 176724023063
  7678. Timestamp - finished LZMA decompress (ignore for x86): 176845650366
  7679. Loading segment from ROM address 0xffd0fed4
  7680. Entry Point 0x000fd25d
  7681. BS: BS_PAYLOAD_LOAD run times (exec / console): 115 / 71 ms
  7682. Timestamp - calling FspNotify(ReadyToBoot): 176916095662
  7683. Timestamp - returning from FspNotify(ReadyToBoot): 176950212440
  7684. Timestamp - calling FspNotify(EndOfFirmware): 176972901045
  7685. Timestamp - returning from FspNotify(EndOfFirmware): 177000904997
  7686. Finalizing chipset.
  7687. HECI: CSE device is hidden
  7688. Finalizing SMM.
  7689. BS: BS_PAYLOAD_LOAD exit times (exec / console): 6 / 28 ms
  7690. mp_park_aps done after 0 msecs.
  7691. Jumping to boot code at 0x000fd25d(0x7aac3000)
  7692. Timestamp - selfboot jump: 177099153072
  7693. SeaBIOS (version rel-1.13.0-5-g7655185)
  7694. BUILD: gcc: (coreboot toolchain vdfd3f21174 2019-05-03) 9.2.0 binutils: (GNU Binutils) 2.33.1
  7695. SeaBIOS (version rel-1.13.0-5-g7655185)
  7696. BUILD: gcc: (coreboot toolchain vdfd3f21174 2019-05-03) 9.2.0 binutils: (GNU Binutils) 2.33.1
  7697. Found coreboot cbmem console @ 7abde000
  7698. Found mainboard ASUS H110M-E/M.2
  7699. Relocating init from 0x000e12c0 to 0x7aa4fc40 (size 54048)
  7700. Found CBFS header at 0xffc10238
  7701. multiboot: eax=7ab3d300, ebx=7ab3d2c4
  7702. Found 18 PCI devices (max PCI bus is 04)
  7703. Copying SMBIOS entry point from 0x7aa9d000 to 0x000f62e0
  7704. Copying ACPI RSDP from 0x7aa9f000 to 0x000f62b0
  7705. Using pmtimer, ioport 0x1808
  7706. Scan for VGA option rom
  7707. Running option rom at c000:0003
  7708. sercon: using ioport 0x3f8
  7709. sercon: configuring in splitmode (vgabios c000:17dc)
  7710. Turning on vga text mode console
  7711. SeaBIOS (version rel-1.13.0-5-g7655185XHCI init on dev 00:14.0: regs @ 0xd3100000, 20 ports, 64 slots, 32 byte contexts
  7712. XHCI protocol USB 2.00, 10 ports (offset 1), def 3011
  7713. XHCI protocol USB 3.00, 4 ports (offset 17), def 3000
  7714. XHCI extcap 0xc0 @ 0xd3108070
  7715. XHCI extcap 0x1 @ 0xd310846c
  7716. XHCI extcap 0xc6 @ 0xd31084f4
  7717. XHCI extcap 0xc7 @ 0xd3108500
  7718. XHCI extcap 0xc2 @ 0xd3108600
  7719. XHCI extcap 0xa @ 0xd3108700
  7720. XHCI extcap 0xc3 @ 0xd3108740
  7721. XHCI extcap 0xc4 @ 0xd3108800
  7722. XHCI extcap 0xc5 @ 0xd3108900
  7723. AHCI controller at 00:17.0, iobase 0xd3135000, irq 11
  7724. Searching bootorder for: HALT
  7725. Found 0 lpt ports
  7726. Found 1 serial ports
  7727. Searching bootorder for: /rom@img/memtest
  7728. Searching bootorder for: /rom@img/nvramcui
  7729. )
  7730. Got ps2 nak (status=51)
  7731. Searching bootorder for: /pci@i0cf8/*@17/drive@3/disk@0
  7732. AHCI/3: Set transfer mode to UDMA-6
  7733. Searching bios-geometry for: /pci@i0cf8/*@17/drive@3/disk@0
  7734. AHCI/3: registering: "AHCI/3: TOSHIBA HDWD110 ATA-8 Hard-Disk (931 GiBytes)"
  7735. XHCI port #5: 0x00200a03, powered, enabled, pls 0, speed 2 [Low]
  7736. USB mouse initialized
  7737. XHCI port #6: 0x00200a03, powered, enabled, pls 0, speed 2 [Low]
  7738. USB keyboard initialized
  7739. All threads complete.
  7740. Scan for option roms
  7741.  
  7742. Press ESC for boot menu.
  7743.  
  7744. Searching bootorder for: HALT
  7745. drive 0x000f6240: PCHS=16383/16/63 translation=lba LCHS=1024/255/63 s=1953525168
  7746. Space available for UMB: ce800-ed000, f5b00-f6240
  7747. Returned 114688 bytes of ZoneHigh
  7748. e820 map has 11 items:
  7749. 0: 0000000000000000 - 000000000009fc00 = 1 RAM
  7750. 1: 000000000009fc00 - 00000000000a0000 = 2 RESERVED
  7751. 2: 00000000000f0000 - 0000000000100000 = 2 RESERVED
  7752. 3: 0000000000100000 - 000000007aa79000 = 1 RAM
  7753. 4: 000000007aa79000 - 0000000080000000 = 2 RESERVED
  7754. 5: 00000000e0000000 - 00000000f0000000 = 2 RESERVED
  7755. 6: 00000000fd000000 - 00000000fe010000 = 2 RESERVED
  7756. 7: 00000000fed10000 - 00000000fed1a000 = 2 RESERVED
  7757. 8: 00000000fed80000 - 00000000fed85000 = 2 RESERVED
  7758. 9: 00000000fed90000 - 00000000fed92000 = 2 RESERVED
  7759. 10: 0000000100000000 - 000000047f000000 = 1 RAM
  7760. enter handle_19:
  7761. NULL
  7762. Booting from Hard Disk..Booting from 0000:7c00
  7763. .
  7764. GRUB loading.
  7765. Welcome to GRUB!
  7766.  
  7767. Memory KASLR using RDRAND RDTSC...
  7768. Poking KASLR using RDRAND RDTSC...
  7769.  €€€€€€€€€€€€€€€€€€þþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþþÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿþÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  7770.  
  7771. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  7772. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  7773. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  7774. CPU: AES supported, TXT NOT supported, VT supported
  7775. MCH: device id 590f (rev 06) is Kabylake-S
  7776. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  7777. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  7778. Timestamp - end of bootblock: 171380788
  7779. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  7780. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  7781. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7782. CBFS: Locating 'fallback/romstage'
  7783. CBFS: Found @ offset 80 size b284
  7784. Timestamp - starting to load romstage: 260999637
  7785. Timestamp - finished loading romstage: 277961327
  7786. BS: bootblock times (exec / console): total (unknown) / 66 ms
  7787.  
  7788.  
  7789. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  7790. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00000000
  7791. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  7792. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  7793. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  7794. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  7795. TCO_STS: 0000 0000
  7796. GEN_PMCON: e0810200 00001848
  7797. GBLRST_CAUSE: 00001000 00000000
  7798. prev_sleep_state 0
  7799. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7800. CBFS: Locating 'fspm.bin'
  7801. CBFS: Found @ offset 54dc0 size 63000
  7802. Timestamp - before RAM initialization: 510353560
  7803. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  7804. MRC: no data in 'RW_MRC_CACHE'
  7805. PRMRR disabled by config.
  7806. SPD @ 0x50
  7807. SPD: module type is DDR4
  7808. SPD: module part is PSD48G240082
  7809. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  7810. SPD: device width 16 bits, bus width 64 bits
  7811. SPD: module size is 8192 MB (per channel)
  7812. SPD @ 0x52
  7813. SPD: module type is DDR4
  7814. SPD: module part is CMK8GX4M1A2400C16
  7815. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  7816. SPD: device width 8 bits, bus width 64 bits
  7817. SPD: module size is 8192 MB (per channel)
  7818. SPD @ 0x00
  7819. SPD: module type is UNKNOWN
  7820. SPD: module part is
  7821. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  7822. SPD: device width -1 bits, bus width -1 bits
  7823. SPD @ 0x00
  7824. SPD: module type is UNKNOWN
  7825. SPD: module part is
  7826. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  7827. SPD: device width -1 bits, bus width -1 bits
  7828. Timestamp - calling FspMemoryInit: 2762073054
  7829.  
  7830.  
  7831. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  7832. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  7833. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  7834. CPU: AES supported, TXT NOT supported, VT supported
  7835. MCH: device id 590f (rev 06) is Kabylake-S
  7836. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  7837. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  7838. Timestamp - end of bootblock: 172287756
  7839. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  7840. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  7841. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7842. CBFS: Locating 'fallback/romstage'
  7843. CBFS: Found @ offset 80 size b284
  7844. Timestamp - starting to load romstage: 262533831
  7845. Timestamp - finished loading romstage: 279618446
  7846. BS: bootblock times (exec / console): total (unknown) / 67 ms
  7847.  
  7848.  
  7849. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  7850. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  7851. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  7852. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  7853. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  7854. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  7855. TCO_STS: 0000 0000
  7856. GEN_PMCON: e0210200 00001a48
  7857. GBLRST_CAUSE: 00001000 00000000
  7858. prev_sleep_state 0
  7859. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7860. CBFS: Locating 'fspm.bin'
  7861. CBFS: Found @ offset 54dc0 size 63000
  7862. Timestamp - before RAM initialization: 513519355
  7863. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  7864. MRC: no data in 'RW_MRC_CACHE'
  7865. PRMRR disabled by config.
  7866. SPD @ 0x50
  7867. SPD: module type is DDR4
  7868. SPD: module part is PSD48G240082
  7869. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  7870. SPD: device width 16 bits, bus width 64 bits
  7871. SPD: module size is 8192 MB (per channel)
  7872. SPD @ 0x52
  7873. SPD: module type is DDR4
  7874. SPD: module part is CMK8GX4M1A2400C16
  7875. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  7876. SPD: device width 8 bits, bus width 64 bits
  7877. SPD: module size is 8192 MB (per channel)
  7878. SPD @ 0x00
  7879. SPD: module type is UNKNOWN
  7880. SPD: module part is
  7881. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  7882. SPD: device width -1 bits, bus width -1 bits
  7883. SPD @ 0x00
  7884. SPD: module type is UNKNOWN
  7885. SPD: module part is
  7886. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  7887. SPD: device width -1 bits, bus width -1 bits
  7888. Timestamp - calling FspMemoryInit: 2765863600
  7889. Timestamp - returning from FspMemoryInit: 163808615581
  7890. CBMEM:
  7891. IMD: root @ 0x7afff000 254 entries.
  7892. IMD: root @ 0x7affec00 62 entries.
  7893. External stage cache:
  7894. IMD: root @ 0x7b3ff000 254 entries.
  7895. IMD: root @ 0x7b3fec00 62 entries.
  7896. Timestamp - after RAM initialization: 163892005955
  7897. 2 DIMMs found
  7898. SMM Memory Map
  7899. SMRAM : 0x7b000000 0x800000
  7900. Subregion 0: 0x7b000000 0x200000
  7901. Subregion 1: 0x7b200000 0x200000
  7902. Subregion 2: 0x7b400000 0x400000
  7903. top_of_ram = 0x7b000000
  7904. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  7905. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  7906. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  7907. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7908. CBFS: Locating 'fallback/postcar'
  7909. CBFS: Found @ offset e6e00 size 5668
  7910. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  7911. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  7912. Processing 287 relocs. Offset value of 0x78bd0000
  7913. Timestamp - end of romstage: 164152046023
  7914. BS: romstage times (exec / console): total (unknown) / 224 ms
  7915.  
  7916.  
  7917. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  7918. Timestamp - start of postcar: 164225214318
  7919. Timestamp - end of postcar: 164240137342
  7920. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7921. CBFS: Locating 'fallback/ramstage'
  7922. CBFS: Found @ offset 3c000 size 17f37
  7923. Timestamp - starting to load ramstage: 164297811900
  7924. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  7925. Timestamp - starting LZMA decompress (ignore for x86): 164338470976
  7926. Timestamp - finished LZMA decompress (ignore for x86): 164393404298
  7927. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  7928. Processing 3860 relocs. Offset value of 0x79d0a000
  7929. Timestamp - finished loading ramstage: 164464503325
  7930. BS: postcar times (exec / console): total (unknown) / 67 ms
  7931.  
  7932.  
  7933. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  7934. Timestamp - start of ramstage: 164539410188
  7935. Normal boot.
  7936. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7937. CBFS: Locating 'cpu_microcode_blob.bin'
  7938. CBFS: Found @ offset b380 size 30c00
  7939. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  7940. Skip microcode update
  7941. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  7942. CBFS: Locating 'fsps.bin'
  7943. CBFS: Found @ offset b8dc0 size 2e000
  7944. Detected 2 core, 4 thread CPU.
  7945. Setting up SMI for CPU
  7946. IED base = 0x7b400000
  7947. IED size = 0x00400000
  7948. Will perform SMM setup.
  7949. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  7950. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  7951. Processing 16 relocs. Offset value of 0x00030000
  7952. Attempting to start 3 APs
  7953. Waiting for 10ms after sending INIT.
  7954. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  7955. done.
  7956. AP: slot 2 apic_id 2.
  7957. AP: slot 1 apic_id 3.
  7958. Waiting for 2nd SIPI to complete...done.
  7959. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  7960. Processing 13 relocs. Offset value of 0x00038000
  7961. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  7962. Installing SMM handler to 0x7b000000
  7963. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  7964. Processing 103 relocs. Offset value of 0x7b010000
  7965. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  7966. Processing 13 relocs. Offset value of 0x7b008000
  7967. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  7968. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  7969. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  7970. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  7971. Clearing SMI status registers
  7972. SMI_STS: PM1
  7973. TMROF TCO_STS: SECOND_TO
  7974. New SMBASE 0x7b000000
  7975. In relocation handler: CPU 0
  7976. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  7977. Writing SMRR. base = 0x7b000006, mask=0xff800800
  7978. Relocation complete.
  7979. New SMBASE 0x7afff400
  7980. In relocation handler: CPU 3
  7981. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  7982. Writing SMRR. base = 0x7b000006, mask=0xff800800
  7983. Relocation complete.
  7984. New SMBASE 0x7afffc00
  7985. In relocation handler: CPU 1
  7986. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  7987. Writing SMRR. base = 0x7b000006, mask=0xff800800
  7988. Relocation complete.
  7989. New SMBASE 0x7afff800
  7990. In relocation handler: CPU 2
  7991. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  7992. Writing SMRR. base = 0x7b000006, mask=0xff800800
  7993. Relocation complete.
  7994. Initializing CPU #0
  7995. CPU: vendor Intel device 906e9
  7996. CPU: family 06, model 9e, stepping 09
  7997. Clearing out pending MCEs
  7998. Setting up local APIC...
  7999. apic_id: 0x00 done.
  8000. cpu: energy policy set to 6
  8001. Turbo is unavailable
  8002. Skip microcode update
  8003. CPU #0 initialized
  8004. Initializing CPU #3
  8005. Initializing CPU #2
  8006. Initializing CPU #1
  8007. CPU: vendor Intel device 906e9
  8008. CPU: family 06, model 9e, stepping 09
  8009. CPU: vendor Intel device 906e9
  8010. CPU: family 06, model 9e, stepping 09
  8011. Clearing out pending MCEs
  8012. Clearing out pending MCEs
  8013. Setting up local APIC...
  8014. CPU: vendor Intel device 906e9
  8015. CPU: family 06, model 9e, stepping 09
  8016. Clearing out pending MCEs
  8017. apic_id: 0x03 done.
  8018. Setting up local APIC...
  8019. Setting up local APIC...
  8020. apic_id: 0x02 done.
  8021. cpu: energy policy set to 6
  8022. cpu: energy policy set to 6
  8023. Skip microcode update
  8024. CPU #1 initialized
  8025. Skip microcode update
  8026. CPU #2 initialized
  8027. apic_id: 0x01 done.
  8028. cpu: energy policy set to 6
  8029. Skip microcode update
  8030. CPU #3 initialized
  8031. bsp_do_flight_plan done after 217 msecs.
  8032. Enabling SMIs.
  8033. Locking SMM.
  8034. VMX status: enabled
  8035. VMX status: enabled
  8036. IA32_FEATURE_CONTROL status: locked
  8037. VMX status: enabled
  8038. VMX status: enabled
  8039. IA32_FEATURE_CONTROL status: locked
  8040. IA32_FEATURE_CONTROL status: locked
  8041. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 141 / 190 ms
  8042. IA32_FEATURE_CONTROL status: locked
  8043. Timestamp - device enumeration: 165900089876
  8044. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8045. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8046. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8047. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8048. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8049. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8050. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8051. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8052. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8053. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8054. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8055. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8056. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8057. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8058. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8059. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8060. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8061. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8062. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8063. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8064. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8065. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8066. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8067. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8068. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8069. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8070. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8071. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8072. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8073. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8074. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8075. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8076. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8077. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8078. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8079. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8080. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8081. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8082. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8083. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8084. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8085. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8086. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8087. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8088. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8089. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8090. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8091. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8092. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8093. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8094. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8095. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8096. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8097. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8098. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8099. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8100. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8101. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8102. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8103. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8104. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8105. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8106. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8107. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8108. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8109. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8110. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8111. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8112. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8113. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8114. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8115. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8116. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8117. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8118. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8119. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8120. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8121. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8122. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8123. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8124. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8125. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8126. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8127. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8128. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8129. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8130. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8131. Timestamp - calling FspSiliconInit: 168018806242
  8132.  €€€€€€€€€€€€€€€‚€€€€€€þþÿÿþÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþþþÿÿÿÿÿÿþÿÿÿÿÿÿÿÿþþÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ
  8133.  
  8134. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  8135. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  8136. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  8137. CPU: AES supported, TXT NOT supported, VT supported
  8138. MCH: device id 590f (rev 06) is Kabylake-S
  8139. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  8140. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  8141. Timestamp - end of bootblock: 172382459
  8142. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  8143. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  8144. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8145. CBFS: Locating 'fallback/romstage'
  8146. CBFS: Found @ offset 80 size b284
  8147. Timestamp - starting to load romstage: 262636197
  8148. Timestamp - finished loading romstage: 279716333
  8149. BS: bootblock times (exec / console): total (unknown) / 67 ms
  8150.  
  8151.  
  8152. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  8153. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  8154. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  8155. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  8156. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  8157. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  8158. TCO_STS: 0000 0000
  8159. GEN_PMCON: e0810200 00001848
  8160. GBLRST_CAUSE: 00001000 00000000
  8161. prev_sleep_state 0
  8162. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8163. CBFS: Locating 'fspm.bin'
  8164. CBFS: Found @ offset 54dc0 size 63000
  8165. Timestamp - before RAM initialization: 513605582
  8166. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  8167. MRC: no data in 'RW_MRC_CACHE'
  8168. PRMRR disabled by config.
  8169. SPD @ 0x50
  8170. SPD: module type is DDR4
  8171. SPD: module part is PSD48G240082
  8172. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  8173. SPD: device width 16 bits, bus width 64 bits
  8174. SPD: module size is 8192 MB (per channel)
  8175. SPD @ 0x52
  8176. SPD: module type is DDR4
  8177. SPD: module part is CMK8GX4M1A2400C16
  8178. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  8179. SPD: device width 8 bits, bus width 64 bits
  8180. SPD: module size is 8192 MB (per channel)
  8181. SPD @ 0x00
  8182. SPD: module type is UNKNOWN
  8183. SPD: module part is
  8184. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  8185. SPD: device width -1 bits, bus width -1 bits
  8186. SPD @ 0x00
  8187. SPD: module type is UNKNOWN
  8188. SPD: module part is
  8189. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  8190. SPD: device width -1 bits, bus width -1 bits
  8191. Timestamp - calling FspMemoryInit: 2766754739
  8192.  
  8193.  
  8194. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 bootblock starting (log level: 7)...
  8195. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz
  8196. CPU: ID 906e9, Kabylake H B0, ucode: 000000b3
  8197. CPU: AES supported, TXT NOT supported, VT supported
  8198. MCH: device id 590f (rev 06) is Kabylake-S
  8199. PCH: device id a143 (rev 31) is Skylake PCH-H H110
  8200. IGD: device id 5912 (rev 04) is Kaby Lake DT GT2
  8201. Timestamp - end of bootblock: 171473297
  8202. FMAP: Found "FLASH" version 1.1 at 0xc10000.
  8203. FMAP: base = 0xff000000 size = 0x1000000 #areas = 4
  8204. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8205. CBFS: Locating 'fallback/romstage'
  8206. CBFS: Found @ offset 80 size b284
  8207. Timestamp - starting to load romstage: 261101393
  8208. Timestamp - finished loading romstage: 278125744
  8209. BS: bootblock times (exec / console): total (unknown) / 66 ms
  8210.  
  8211.  
  8212. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 romstage starting (log level: 7)...
  8213. pm1_sts: 0000 pm1_en: 0000 pm1_cnt: 00001c00
  8214. gpe0_sts[0]: 00000000 gpe0_en[0]: 00000000
  8215. gpe0_sts[1]: 00000000 gpe0_en[1]: 00000000
  8216. gpe0_sts[2]: 00000000 gpe0_en[2]: 00000000
  8217. gpe0_sts[3]: 00000000 gpe0_en[3]: 00000000
  8218. TCO_STS: 0000 0000
  8219. GEN_PMCON: e0210200 00001a48
  8220. GBLRST_CAUSE: 00001000 00000000
  8221. prev_sleep_state 0
  8222. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8223. CBFS: Locating 'fspm.bin'
  8224. CBFS: Found @ offset 54dc0 size 63000
  8225. Timestamp - before RAM initialization: 510289963
  8226. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  8227. MRC: no data in 'RW_MRC_CACHE'
  8228. PRMRR disabled by config.
  8229. SPD @ 0x50
  8230. SPD: module type is DDR4
  8231. SPD: module part is PSD48G240082
  8232. SPD: banks 8, ranks 2, rows 16, columns 10, density 8192 Mb
  8233. SPD: device width 16 bits, bus width 64 bits
  8234. SPD: module size is 8192 MB (per channel)
  8235. SPD @ 0x52
  8236. SPD: module type is DDR4
  8237. SPD: module part is CMK8GX4M1A2400C16
  8238. SPD: banks 16, ranks 1, rows 16, columns 10, density 8192 Mb
  8239. SPD: device width 8 bits, bus width 64 bits
  8240. SPD: module size is 8192 MB (per channel)
  8241. SPD @ 0x00
  8242. SPD: module type is UNKNOWN
  8243. SPD: module part is
  8244. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  8245. SPD: device width -1 bits, bus width -1 bits
  8246. SPD @ 0x00
  8247. SPD: module type is UNKNOWN
  8248. SPD: module part is
  8249. SPD: banks -1, ranks 8, rows -1, columns -1, density -1 Mb
  8250. SPD: device width -1 bits, bus width -1 bits
  8251. Timestamp - calling FspMemoryInit: 2764531854
  8252. Timestamp - returning from FspMemoryInit: 164124168306
  8253. CBMEM:
  8254. IMD: root @ 0x7afff000 254 entries.
  8255. IMD: root @ 0x7affec00 62 entries.
  8256. External stage cache:
  8257. IMD: root @ 0x7b3ff000 254 entries.
  8258. IMD: root @ 0x7b3fec00 62 entries.
  8259. Timestamp - after RAM initialization: 164207387038
  8260. 2 DIMMs found
  8261. SMM Memory Map
  8262. SMRAM : 0x7b000000 0x800000
  8263. Subregion 0: 0x7b000000 0x200000
  8264. Subregion 1: 0x7b200000 0x200000
  8265. Subregion 2: 0x7b400000 0x400000
  8266. top_of_ram = 0x7b000000
  8267. MTRR Range: Start=7a000000 End=7b000000 (Size 1000000)
  8268. MTRR Range: Start=7b000000 End=7b800000 (Size 800000)
  8269. MTRR Range: Start=ff000000 End=0 (Size 1000000)
  8270. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8271. CBFS: Locating 'fallback/postcar'
  8272. CBFS: Found @ offset e6e00 size 5668
  8273. Decompressing stage fallback/postcar @ 0x7abcffc0 (38064 bytes)
  8274. Loading module at 0x7abd0000 with entry 0x7abd0000. filesize: 0x5190 memsize: 0x9470
  8275. Processing 287 relocs. Offset value of 0x78bd0000
  8276. Timestamp - end of romstage: 164467387155
  8277. BS: romstage times (exec / console): total (unknown) / 224 ms
  8278.  
  8279.  
  8280. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 postcar starting (log level: 7)...
  8281. Timestamp - start of postcar: 164540556651
  8282. Timestamp - end of postcar: 164555475273
  8283. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8284. CBFS: Locating 'fallback/ramstage'
  8285. CBFS: Found @ offset 3c000 size 17f37
  8286. Timestamp - starting to load ramstage: 164613140083
  8287. Decompressing stage fallback/ramstage @ 0x7ab09fc0 (806296 bytes)
  8288. Timestamp - starting LZMA decompress (ignore for x86): 164653792178
  8289. Timestamp - finished LZMA decompress (ignore for x86): 164708506782
  8290. Loading module at 0x7ab0a000 with entry 0x7ab0a000. filesize: 0x33830 memsize: 0xc4d58
  8291. Processing 3860 relocs. Offset value of 0x79d0a000
  8292. Timestamp - finished loading ramstage: 164780043101
  8293. BS: postcar times (exec / console): total (unknown) / 67 ms
  8294.  
  8295.  
  8296. coreboot-4.11-1360-g1ac2cc253b-dirty Fri Feb 28 16:14:38 UTC 2020 ramstage starting (log level: 7)...
  8297. Timestamp - start of ramstage: 164855451137
  8298. Normal boot.
  8299. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8300. CBFS: Locating 'cpu_microcode_blob.bin'
  8301. CBFS: Found @ offset b380 size 30c00
  8302. microcode: sig=0x906e9 pf=0x2 revision=0xb3
  8303. Skip microcode update
  8304. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8305. CBFS: Locating 'fsps.bin'
  8306. CBFS: Found @ offset b8dc0 size 2e000
  8307. Detected 2 core, 4 thread CPU.
  8308. Setting up SMI for CPU
  8309. IED base = 0x7b400000
  8310. IED size = 0x00400000
  8311. Will perform SMM setup.
  8312. CPU: Intel(R) Core(TM) i3-7100 CPU @ 3.90GHz.
  8313. Loading module at 0x00030000 with entry 0x00030000. filesize: 0x170 memsize: 0x170
  8314. Processing 16 relocs. Offset value of 0x00030000
  8315. Attempting to start 3 APs
  8316. Waiting for 10ms after sending INIT.
  8317. Waiting for 1st SIPI to complete...AP: slot 3 apic_id 1.
  8318. done.
  8319. AP: slot 1 apic_id 3.
  8320. AP: slot 2 apic_id 2.
  8321. Waiting for 2nd SIPI to complete...done.
  8322. Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1b0 memsize: 0x1b0
  8323. Processing 13 relocs. Offset value of 0x00038000
  8324. SMM Module: stub loaded at 0x00038000. Will call 0x7ab22faf(0x00000000)
  8325. Installing SMM handler to 0x7b000000
  8326. Loading module at 0x7b010000 with entry 0x7b01008e. filesize: 0xe88 memsize: 0x4ea0
  8327. Processing 103 relocs. Offset value of 0x7b010000
  8328. Loading module at 0x7b008000 with entry 0x7b008000. filesize: 0x1b0 memsize: 0x1b0
  8329. Processing 13 relocs. Offset value of 0x7b008000
  8330. SMM Module: placing jmp sequence at 0x7b007c00 rel16 0x03fd
  8331. SMM Module: placing jmp sequence at 0x7b007800 rel16 0x07fd
  8332. SMM Module: placing jmp sequence at 0x7b007400 rel16 0x0bfd
  8333. SMM Module: stub loaded at 0x7b008000. Will call 0x7b01008e(0x00000000)
  8334. Clearing SMI status registers
  8335. SMI_STS: PM1
  8336. TMROF TCO_STS: SECOND_TO
  8337. New SMBASE 0x7b000000
  8338. In relocation handler: CPU 0
  8339. New SMBASE=0x7b000000 IEDBASE=0x7b400000
  8340. Writing SMRR. base = 0x7b000006, mask=0xff800800
  8341. Relocation complete.
  8342. New SMBASE 0x7afff400
  8343. In relocation handler: CPU 3
  8344. New SMBASE=0x7afff400 IEDBASE=0x7b400000
  8345. Writing SMRR. base = 0x7b000006, mask=0xff800800
  8346. Relocation complete.
  8347. New SMBASE 0x7afff800
  8348. In relocation handler: CPU 2
  8349. New SMBASE=0x7afff800 IEDBASE=0x7b400000
  8350. Writing SMRR. base = 0x7b000006, mask=0xff800800
  8351. Relocation complete.
  8352. New SMBASE 0x7afffc00
  8353. In relocation handler: CPU 1
  8354. New SMBASE=0x7afffc00 IEDBASE=0x7b400000
  8355. Writing SMRR. base = 0x7b000006, mask=0xff800800
  8356. Relocation complete.
  8357. Initializing CPU #0
  8358. CPU: vendor Intel device 906e9
  8359. CPU: family 06, model 9e, stepping 09
  8360. Clearing out pending MCEs
  8361. Setting up local APIC...
  8362. apic_id: 0x00 done.
  8363. cpu: energy policy set to 6
  8364. Turbo is unavailable
  8365. Skip microcode update
  8366. CPU #0 initialized
  8367. Initializing CPU #3
  8368. Initializing CPU #2
  8369. Initializing CPU #1
  8370. CPU: vendor Intel device 906e9
  8371. CPU: family 06, model 9e, stepping 09
  8372. CPU: vendor Intel device 906e9
  8373. CPU: family 06, model 9e, stepping 09
  8374. Clearing out pending MCEs
  8375. CPU: vendor Intel device 906e9
  8376. CPU: family 06, model 9e, stepping 09
  8377. Clearing out pending MCEs
  8378. Clearing out pending MCEs
  8379. Setting up local APIC...
  8380. Setting up local APIC...
  8381. apic_id: 0x02 done.
  8382. Setting up local APIC...
  8383. apic_id: 0x01 done.
  8384. cpu: energy policy set to 6
  8385. apic_id: 0x03 done.
  8386. Skip microcode update
  8387. CPU #2 initialized
  8388. cpu: energy policy set to 6
  8389. cpu: energy policy set to 6
  8390. Skip microcode update
  8391. CPU #1 initialized
  8392. Skip microcode update
  8393. CPU #3 initialized
  8394. bsp_do_flight_plan done after 218 msecs.
  8395. Enabling SMIs.
  8396. Locking SMM.
  8397. VMX status: enabled
  8398. VMX status: enabled
  8399. IA32_FEATURE_CONTROL status: locked
  8400. VMX status: enabled
  8401. VMX status: enabled
  8402. IA32_FEATURE_CONTROL status: locked
  8403. IA32_FEATURE_CONTROL status: locked
  8404. BS: BS_DEV_INIT_CHIPS entry times (exec / console): 141 / 191 ms
  8405. IA32_FEATURE_CONTROL status: locked
  8406. Timestamp - device enumeration: 166221250396
  8407. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8408. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8409. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8410. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8411. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8412. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8413. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8414. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8415. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8416. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8417. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8418. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8419. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8420. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8421. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8422. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8423. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8424. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8425. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8426. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8427. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8428. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8429. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8430. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8431. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8432. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8433. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8434. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8435. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8436. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8437. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8438. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8439. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8440. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8441. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8442. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8443. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8444. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8445. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8446. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8447. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8448. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8449. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8450. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8451. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8452. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8453. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8454. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8455. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8456. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8457. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8458. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8459. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8460. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8461. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8462. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8463. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8464. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8465. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8466. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8467. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8468. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8469. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8470. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8471. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8472. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8473. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8474. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8475. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8476. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8477. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8478. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8479. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8480. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8481. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8482. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8483. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8484. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8485. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8486. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8487. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8488. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8489. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8490. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8491. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8492. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8493. gpio_pad_reset_config_override: Logical to Chipset mapping not found
  8494. Timestamp - calling FspSiliconInit: 168339564409
  8495. Timestamp - returning from FspSiliconInit: 168437908904
  8496. ITSS IRQ Polarities Before:
  8497. IPC0: 0x00ff4000
  8498. IPC1: 0x00000007
  8499. IPC2: 0x00000000
  8500. IPC3: 0x00000000
  8501. ITSS IRQ Polarities After:
  8502. IPC0: 0x00ff4000
  8503. IPC1: 0x00000007
  8504. IPC2: 0x00000000
  8505. IPC3: 0x00000000
  8506. Found PCIe Root Port #5 at PCI: 00:1c.0.
  8507. Found PCIe Root Port #8 at PCI: 00:1c.7.
  8508. Found PCIe Root Port #9 at PCI: 00:1d.0.
  8509. pcie_rp_update_dev: Couldn't find PCIe Root Port #1 (originally PCI: 00:1c.0) which was enabled in devicetree, removing.
  8510. Remapping PCIe Root Port #5 from PCI: 00:1c.4 to new function number 0.
  8511. BS: BS_DEV_INIT_CHIPS run times (exec / console): 28 / 594 ms
  8512. Enumerating buses...
  8513. Root Device scanning...
  8514. CPU_CLUSTER: 0 enabled
  8515. DOMAIN: 0000 enabled
  8516. DOMAIN: 0000 scanning...
  8517. PCI: pci_scan_bus for bus 00
  8518. PCI: 00:00.0 [8086/590f] enabled
  8519. PCI: 00:01.0 subordinate bus PCI Express
  8520. PCI: 00:01.0 [8086/1901] enabled
  8521. PCI: 00:02.0 [8086/5912] enabled
  8522. PCI: 00:04.0 [8086/1903] enabled
  8523. PCI: 00:14.0 [8086/a12f] enabled
  8524. PCI: 00:14.2 [8086/a131] enabled
  8525. PCI: 00:16.0 [8086/a13a] enabled
  8526. PCI: 00:17.0 [8086/a102] enabled
  8527. PCI: 00:1c.0 [8086/a114] enabled
  8528. PCI: 00:1c.7 [8086/a117] enabled
  8529. PCI: 00:1d.0 [8086/a118] enabled
  8530. PCI: 00:1f.0 [8086/a143] enabled
  8531. PCI: 00:1f.1 [8086/a120] enabled
  8532. PCI: 00:1f.2 [8086/a121] enabled
  8533. PCI: 00:1f.3 [8086/a170] enabled
  8534. PCI: 00:1f.4 [8086/a123] enabled
  8535. PCI: 00:1f.5 [8086/a124] enabled
  8536. PCI: Leftover static devices:
  8537. PCI: 00:14.1
  8538. PCI: 00:15.0
  8539. PCI: 00:15.1
  8540. PCI: 00:15.2
  8541. PCI: 00:15.3
  8542. PCI: 00:16.1
  8543. PCI: 00:16.2
  8544. PCI: 00:16.3
  8545. PCI: 00:16.4
  8546. PCI: 00:19.0
  8547. PCI: 00:19.1
  8548. PCI: 00:19.2
  8549. PCI: 00:1e.0
  8550. PCI: 00:1e.1
  8551. PCI: 00:1e.2
  8552. PCI: 00:1e.3
  8553. PCI: 00:1e.4
  8554. PCI: 00:1e.5
  8555. PCI: 00:1e.6
  8556. PCI: 00:1f.6
  8557. PCI: Check your devicetree.cb.
  8558. PCI: 00:01.0 scanning...
  8559. PCI: pci_scan_bus for bus 01
  8560. PCI: 01:00.0 [10de/1d01] enabled
  8561. PCI: 01:00.1 [10de/0fb8] enabled
  8562. Enabling Common Clock Configuration
  8563. ASPM: Enabled L0s and L1
  8564. PCIe: Max_Payload_Size adjusted to 256
  8565. Enabling Common Clock Configuration
  8566. ASPM: Enabled L0s and L1
  8567. PCIe: Max_Payload_Size adjusted to 256
  8568. scan_bus: bus PCI: 00:01.0 finished in 27 msecs
  8569. PCI: 00:02.0 scanning...
  8570. scan_bus: bus PCI: 00:02.0 finished in 0 msecs
  8571. PCI: 00:14.0 scanning...
  8572. scan_bus: bus PCI: 00:14.0 finished in 0 msecs
  8573. PCI: 00:1c.0 scanning...
  8574. PCI: pci_scan_bus for bus 02
  8575. scan_bus: bus PCI: 00:1c.0 finished in 2 msecs
  8576. PCI: 00:1c.7 scanning...
  8577. PCI: pci_scan_bus for bus 03
  8578. PCI: 03:00.0 [10ec/8168] enabled
  8579. Enabling Common Clock Configuration
  8580. ASPM: Enabled L1
  8581. PCIe: Max_Payload_Size adjusted to 128
  8582. scan_bus: bus PCI: 00:1c.7 finished in 14 msecs
  8583. PCI: 00:1d.0 scanning...
  8584. PCI: pci_scan_bus for bus 04
  8585. scan_bus: bus PCI: 00:1d.0 finished in 2 msecs
  8586. PCI: 00:1f.0 scanning...
  8587. PNP: 002e.2 enabled
  8588. PNP: 002e.5 enabled
  8589. PNP: 002e.6 disabled
  8590. PNP: 002e.7 disabled
  8591. PNP: 002e.107 disabled
  8592. PNP: 002e.8 disabled
  8593. PNP: 002e.108 disabled
  8594. PNP: 002e.308 disabled
  8595. PNP: 002e.408 disabled
  8596. PNP: 002e.9 disabled
  8597. PNP: 002e.109 disabled
  8598. PNP: 002e.209 disabled
  8599. PNP: 002e.309 disabled
  8600. PNP: 002e.a enabled
  8601. PNP: 002e.b disabled
  8602. PNP: 002e.d disabled
  8603. PNP: 002e.e disabled
  8604. PNP: 002e.f disabled
  8605. PNP: 002e.14 disabled
  8606. PNP: 002e.16 disabled
  8607. PNP: 002e.116 disabled
  8608. PNP: 002e.316 disabled
  8609. PNP: 002e.416 disabled
  8610. PNP: 002e.516 disabled
  8611. PNP: 002e.616 disabled
  8612. PNP: 002e.716 disabled
  8613. PNP: 002e.207 enabled
  8614. PNP: 002e.11 enabled
  8615. PNP: 002e.12 enabled
  8616. PNP: 002e.15 enabled
  8617. scan_bus: bus PCI: 00:1f.0 finished in 62 msecs
  8618. PCI: 00:1f.2 scanning...
  8619. scan_bus: bus PCI: 00:1f.2 finished in 0 msecs
  8620. PCI: 00:1f.4 scanning...
  8621. scan_bus: bus PCI: 00:1f.4 finished in 0 msecs
  8622. scan_bus: bus DOMAIN: 0000 finished in 260 msecs
  8623. scan_bus: bus Root Device finished in 271 msecs
  8624. done
  8625. BS: BS_DEV_ENUMERATE run times (exec / console): 2 / 279 ms
  8626. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  8627. MRC: Checking cached data update for 'RW_MRC_CACHE'.
  8628. SF: Detected 00 0000 with sector size 0x1000, total 0x1000000
  8629. MRC: no data in 'RW_MRC_CACHE'
  8630. MRC: cache data 'RW_MRC_CACHE' needs update.
  8631. SPI Transaction Error at Flash Offset c00000 HSFSTS = 0x01046003
  8632. REGF metadata allocation failed: 392 data blocks 4096 total blocks
  8633. MRC: Could not find region 'UNIFIED_MRC_CACHE'
  8634. FMAP: area RW_MRC_CACHE found @ c00000 (65536 bytes)
  8635. MRC: NOT enabling PRR for 'RW_MRC_CACHE'.
  8636. BS: BS_DEV_ENUMERATE exit times (exec / console): 0 / 47 ms
  8637. Timestamp - device configuration: 169992407499
  8638. found VGA at PCI: 01:00.0
  8639. Setting up VGA for PCI: 01:00.0
  8640. Setting PCI_BRIDGE_CTL_VGA for bridge PCI: 00:01.0
  8641. Setting PCI_BRIDGE_CTL_VGA for bridge DOMAIN: 0000
  8642. Setting PCI_BRIDGE_CTL_VGA for bridge Root Device
  8643. Allocating resources...
  8644. Reading resources...
  8645. Done reading resources.
  8646. Setting resources...
  8647. PCI: 00:01.0 1c <- [0x0000002000 - 0x0000002fff] size 0x00001000 gran 0x0c bus 01 io
  8648. PCI: 00:01.0 24 <- [0x00a0000000 - 0x00b1ffffff] size 0x12000000 gran 0x14 bus 01 prefmem
  8649. PCI: 00:01.0 20 <- [0x00d0000000 - 0x00d10fffff] size 0x01100000 gran 0x14 bus 01 mem
  8650. PCI: 01:00.0 10 <- [0x00d0000000 - 0x00d0ffffff] size 0x01000000 gran 0x18 mem
  8651. PCI: 01:00.0 14 <- [0x00a0000000 - 0x00afffffff] size 0x10000000 gran 0x1c prefmem64
  8652. PCI: 01:00.0 1c <- [0x00b0000000 - 0x00b1ffffff] size 0x02000000 gran 0x19 prefmem64
  8653. PCI: 01:00.0 24 <- [0x0000002000 - 0x000000207f] size 0x00000080 gran 0x07 io
  8654. PCI: 01:00.0 30 <- [0x00d1000000 - 0x00d107ffff] size 0x00080000 gran 0x13 romem
  8655. PCI: 01:00.1 10 <- [0x00d1080000 - 0x00d1083fff] size 0x00004000 gran 0x0e mem
  8656. PCI: 00:02.0 10 <- [0x00d2000000 - 0x00d2ffffff] size 0x01000000 gran 0x18 mem64
  8657. PCI: 00:02.0 18 <- [0x00c0000000 - 0x00cfffffff] size 0x10000000 gran 0x1c prefmem64
  8658. PCI: 00:02.0 20 <- [0x0000004000 - 0x000000403f] size 0x00000040 gran 0x06 io
  8659. PCI: 00:04.0 10 <- [0x00d3120000 - 0x00d3127fff] size 0x00008000 gran 0x0f mem64
  8660. PCI: 00:14.0 10 <- [0x00d3100000 - 0x00d310ffff] size 0x00010000 gran 0x10 mem64
  8661. PCI: 00:14.2 10 <- [0x00d3132000 - 0x00d3132fff] size 0x00001000 gran 0x0c mem64
  8662. PCI: 00:16.0 10 <- [0x00d3133000 - 0x00d3133fff] size 0x00001000 gran 0x0c mem64
  8663. PCI: 00:17.0 10 <- [0x00d3130000 - 0x00d3131fff] size 0x00002000 gran 0x0d mem
  8664. PCI: 00:17.0 14 <- [0x00d3136000 - 0x00d31360ff] size 0x00000100 gran 0x08 mem
  8665. PCI: 00:17.0 18 <- [0x0000004060 - 0x0000004067] size 0x00000008 gran 0x03 io
  8666. PCI: 00:17.0 1c <- [0x0000004068 - 0x000000406b] size 0x00000004 gran 0x02 io
  8667. PCI: 00:17.0 20 <- [0x0000004040 - 0x000000405f] size 0x00000020 gran 0x05 io
  8668. PCI: 00:17.0 24 <- [0x00d3135000 - 0x00d31357ff] size 0x00000800 gran 0x0b mem
  8669. PCI: 00:1c.0 1c <- [0x000000ef9f - 0x000000ef9e] size 0x00000000 gran 0x0c bus 02 io
  8670. PCI: 00:1c.0 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 02 prefmem
  8671. PCI: 00:1c.0 20 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 02 mem
  8672. PCI: 00:1c.7 1c <- [0x0000003000 - 0x0000003fff] size 0x00001000 gran 0x0c bus 03 io
  8673. PCI: 00:1c.7 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 03 prefmem
  8674. PCI: 00:1c.7 20 <- [0x00d3000000 - 0x00d30fffff] size 0x00100000 gran 0x14 bus 03 mem
  8675. PCI: 03:00.0 10 <- [0x0000003000 - 0x00000030ff] size 0x00000100 gran 0x08 io
  8676. PCI: 03:00.0 18 <- [0x00d3004000 - 0x00d3004fff] size 0x00001000 gran 0x0c mem64
  8677. PCI: 03:00.0 20 <- [0x00d3000000 - 0x00d3003fff] size 0x00004000 gran 0x0e mem64
  8678. PCI: 00:1d.0 1c <- [0x000000ef9f - 0x000000ef9e] size 0x00000000 gran 0x0c bus 04 io
  8679. PCI: 00:1d.0 24 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 04 prefmem
  8680. PCI: 00:1d.0 20 <- [0x00dfffffff - 0x00dffffffe] size 0x00000000 gran 0x14 bus 04 mem
  8681. PNP: 002e.2 60 <- [0x00000003f8 - 0x00000003ff] size 0x00000008 gran 0x03 io
  8682. PNP: 002e.2 70 <- [0x0000000004 - 0x0000000004] size 0x00000001 gran 0x00 irq
  8683. PNP: 002e.5 60 <- [0x0000000060 - 0x0000000060] size 0x00000001 gran 0x00 io
  8684. PNP: 002e.5 62 <- [0x0000000064 - 0x0000000064] size 0x00000001 gran 0x00 io
  8685. PNP: 002e.5 70 <- [0x0000000001 - 0x0000000001] size 0x00000001 gran 0x00 irq
  8686. PNP: 002e.5 72 <- [0x000000000c - 0x000000000c] size 0x00000001 gran 0x00 irq
  8687. LPC: Opened IO window LGIR1: base 3f8 size 8
  8688. LPC: Opened IO window LGIR2: base 60 size 1
  8689. LPC: Opened IO window LGIR3: base 64 size 1
  8690. LPC: Cannot open IO window: 0 size 8
  8691. No more IO windows
  8692. LPC: Cannot open IO window: 0 size 8
  8693. No more IO windows
  8694. LPC: Cannot open IO window: 290 size 2
  8695. No more IO windows
  8696. LPC: Cannot open IO window: 0 size 8
  8697. No more IO windows
  8698. PCI: 00:1f.2 10 <- [0x00d3128000 - 0x00d312bfff] size 0x00004000 gran 0x0e mem
  8699. PCI: 00:1f.3 10 <- [0x00d312c000 - 0x00d312ffff] size 0x00004000 gran 0x0e mem64
  8700. PCI: 00:1f.3 20 <- [0x00d3110000 - 0x00d311ffff] size 0x00010000 gran 0x10 mem64
  8701. PCI: 00:1f.4 10 <- [0x00d3137000 - 0x00d31370ff] size 0x00000100 gran 0x08 mem64
  8702. PCI: 00:1f.5 10 <- [0x00d3134000 - 0x00d3134fff] size 0x00001000 gran 0x0c mem
  8703. Done setting resources.
  8704. Done allocating resources.
  8705. BS: BS_DEV_RESOURCES run times (exec / console): 1 / 401 ms
  8706. Timestamp - calling FspNotify(AfterPciEnumeration): 171582969758
  8707. Timestamp - returning from FspNotify(AfterPciEnumeration): 171606698386
  8708. BS: BS_DEV_ENABLE entry times (exec / console): 0 / 13 ms
  8709. Timestamp - device enable: 171653125342
  8710. Enabling resources...
  8711. PCI: 00:00.0 subsystem <- 1043/8694
  8712. PCI: 00:00.0 cmd <- 06
  8713. PCI: 00:01.0 bridge ctrl <- 001b
  8714. PCI: 00:01.0 cmd <- 07
  8715. PCI: 00:02.0 subsystem <- 1043/8694
  8716. PCI: 00:02.0 cmd <- 03
  8717. PCI: 00:04.0 cmd <- 02
  8718. PCI: 00:14.0 subsystem <- 1043/8694
  8719. PCI: 00:14.0 cmd <- 02
  8720. PCI: 00:14.2 subsystem <- 1043/8694
  8721. PCI: 00:14.2 cmd <- 02
  8722. PCI: 00:16.0 subsystem <- 1043/8694
  8723. PCI: 00:16.0 cmd <- 02
  8724. PCI: 00:17.0 subsystem <- 1043/8694
  8725. PCI: 00:17.0 cmd <- 03
  8726. PCI: 00:1c.0 bridge ctrl <- 0013
  8727. PCI: 00:1c.0 subsystem <- 1043/8694
  8728. PCI: 00:1c.0 cmd <- 00
  8729. PCI: 00:1c.7 bridge ctrl <- 0013
  8730. PCI: 00:1c.7 subsystem <- 1043/8694
  8731. PCI: 00:1c.7 cmd <- 07
  8732. PCI: 00:1d.0 bridge ctrl <- 0013
  8733. PCI: 00:1d.0 subsystem <- 1043/8694
  8734. PCI: 00:1d.0 cmd <- 00
  8735. PCI: 00:1f.0 subsystem <- 1043/8694
  8736. PCI: 00:1f.0 cmd <- 07
  8737. PCI: 00:1f.2 subsystem <- 1043/8694
  8738. PCI: 00:1f.2 cmd <- 06
  8739. PCI: 00:1f.3 subsystem <- 1043/8694
  8740. PCI: 00:1f.3 cmd <- 02
  8741. PCI: 00:1f.4 subsystem <- 1043/8694
  8742. PCI: 00:1f.4 cmd <- 03
  8743. PCI: 00:1f.5 subsystem <- 1043/8694
  8744. PCI: 00:1f.5 cmd <- 406
  8745. PCI: 01:00.0 cmd <- 03
  8746. PCI: 01:00.1 cmd <- 02
  8747. PCI: 03:00.0 cmd <- 03
  8748. done.
  8749. BS: BS_DEV_ENABLE run times (exec / console): 1 / 106 ms
  8750. ME: Version : Unavailable
  8751. BS: BS_DEV_ENABLE exit times (exec / console): 0 / 2 ms
  8752. Timestamp - device initialization: 172118086643
  8753. Initializing devices...
  8754. Root Device init
  8755. Root Device init finished in 0 msecs
  8756. CPU_CLUSTER: 0 init
  8757. CPU_CLUSTER: 0 init finished in 0 msecs
  8758. PCI: 00:00.0 init
  8759. CPU TDP: 51 Watts
  8760. CPU PL2 = 91 Watts
  8761. PCI: 00:00.0 init finished in 4 msecs
  8762. PCI: 00:02.0 init
  8763. PCI: 00:02.0 init finished in 0 msecs
  8764. PCI: 00:04.0 init
  8765. PCI: 00:04.0 init finished in 0 msecs
  8766. PCI: 00:14.0 init
  8767. PCI: 00:14.0 init finished in 0 msecs
  8768. PCI: 00:14.2 init
  8769. PCI: 00:14.2 init finished in 0 msecs
  8770. PCI: 00:16.0 init
  8771. PCI: 00:16.0 init finished in 0 msecs
  8772. PCI: 00:17.0 init
  8773. PCI: 00:17.0 init finished in 0 msecs
  8774. PCI: 00:1c.0 init
  8775. Initializing PCH PCIe bridge.
  8776. PCI: 00:1c.0 init finished in 2 msecs
  8777. PCI: 00:1c.7 init
  8778. Initializing PCH PCIe bridge.
  8779. PCI: 00:1c.7 init finished in 2 msecs
  8780. PCI: 00:1d.0 init
  8781. Initializing PCH PCIe bridge.
  8782. PCI: 00:1d.0 init finished in 2 msecs
  8783. PCI: 00:1f.0 init
  8784. IOAPIC: Initializing IOAPIC at 0xfec00000
  8785. IOAPIC: Bootstrap Processor Local APIC = 0x00
  8786. IOAPIC: ID = 0x02
  8787. PCI: 00:1f.0 init finished in 9 msecs
  8788. PCI: 00:1f.2 init
  8789. RTC Init
  8790. Set power on after power failure.
  8791. Disabling ACPI via APMC:
  8792. done.
  8793. Disabling Deep S3
  8794. Disabling Deep S3
  8795. Disabling Deep S4
  8796. Disabling Deep S4
  8797. Disabling Deep S5
  8798. Disabling Deep S5
  8799. PCI: 00:1f.2 init finished in 17 msecs
  8800. PCI: 00:1f.3 init
  8801. PCI: 00:1f.3 init finished in 0 msecs
  8802. PCI: 00:1f.4 init
  8803. PCI: 00:1f.4 init finished in 0 msecs
  8804. PCI: 00:1f.5 init
  8805. PCI: 00:1f.5 init finished in 0 msecs
  8806. PCI: 01:00.0 init
  8807. Timestamp - Option ROM initialization: 172655602463
  8808. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8809. CBFS: Locating 'pci10de,1d01.rom'
  8810. CBFS: 'pci10de,1d01.rom' not found.
  8811. PCI Option ROM loading disabled for PCI: 01:00.0
  8812. PCI: 01:00.0 init finished in 20 msecs
  8813. PCI: 01:00.1 init
  8814. PCI: 01:00.1 init finished in 0 msecs
  8815. PCI: 03:00.0 init
  8816. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8817. CBFS: Locating 'rt8168-macaddress'
  8818. CBFS: Found @ offset 54600 size 11
  8819. r8168: Resetting NIC...done
  8820. r8168: Programming MAC Address...done
  8821. PCI: 03:00.0 init finished in 17 msecs
  8822. PNP: 002e.2 init
  8823. PNP: 002e.2 init finished in 0 msecs
  8824. PNP: 002e.5 init
  8825. PNP: 002e.5 init finished in 0 msecs
  8826. PNP: 002e.a init
  8827. PNP: 002e.a init finished in 0 msecs
  8828. PNP: 002e.207 init
  8829. PNP: 002e.207 init finished in 0 msecs
  8830. PNP: 002e.11 init
  8831. PNP: 002e.11 init finished in 0 msecs
  8832. PNP: 002e.12 init
  8833. PNP: 002e.12 init finished in 0 msecs
  8834. PNP: 002e.15 init
  8835. PNP: 002e.15 init finished in 0 msecs
  8836. Devices initialized
  8837. BS: BS_DEV_INIT run times (exec / console): 2 / 226 ms
  8838. Finalize devices...
  8839. Devices finalized
  8840. Timestamp - device setup done: 173043843491
  8841. BS: BS_POST_DEVICE run times (exec / console): 0 / 8 ms
  8842. Timestamp - cbmem post: 173080412402
  8843. BS: BS_OS_RESUME_CHECK run times (exec / console): 1 / 3 ms
  8844. Timestamp - write tables: 173115968579
  8845. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8846. CBFS: Locating 'fallback/dsdt.aml'
  8847. CBFS: Found @ offset ec4c0 size 2c93
  8848. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8849. CBFS: Locating 'fallback/slic'
  8850. CBFS: 'fallback/slic' not found.
  8851. ACPI: Writing ACPI tables at 7aa9f000.
  8852. ACPI: * FACS
  8853. ACPI: * DSDT
  8854. ACPI: * FADT
  8855. SCI is IRQ9
  8856. ACPI: added table 1/32, length now 40
  8857. ACPI: * SSDT
  8858. Found 1 CPU(s) with 4 core(s) each.
  8859. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  8860. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  8861. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  8862. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  8863. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  8864. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  8865. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  8866. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  8867. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  8868. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  8869. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  8870. PSS: 800MHz power 7088 control 0x800 status 0x800
  8871. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  8872. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  8873. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  8874. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  8875. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  8876. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  8877. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  8878. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  8879. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  8880. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  8881. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  8882. PSS: 800MHz power 7088 control 0x800 status 0x800
  8883. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  8884. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  8885. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  8886. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  8887. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  8888. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  8889. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  8890. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  8891. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  8892. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  8893. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  8894. PSS: 800MHz power 7088 control 0x800 status 0x800
  8895. PSS: 3900MHz power 51000 control 0x2700 status 0x2700
  8896. PSS: 3800MHz power 49077 control 0x2600 status 0x2600
  8897. PSS: 3500MHz power 43642 control 0x2300 status 0x2300
  8898. PSS: 3200MHz power 38516 control 0x2000 status 0x2000
  8899. PSS: 2900MHz power 33686 control 0x1d00 status 0x1d00
  8900. PSS: 2600MHz power 29108 control 0x1a00 status 0x1a00
  8901. PSS: 2300MHz power 24812 control 0x1700 status 0x1700
  8902. PSS: 2000MHz power 20759 control 0x1400 status 0x1400
  8903. PSS: 1700MHz power 16971 control 0x1100 status 0x1100
  8904. PSS: 1400MHz power 13419 control 0xe00 status 0xe00
  8905. PSS: 1100MHz power 10168 control 0xb00 status 0xb00
  8906. PSS: 800MHz power 7088 control 0x800 status 0x800
  8907. BUG: Parent of device PNP: 002e.2 is not a PNP device
  8908. BUG: Check your devicetree!
  8909. BUG: Parent of device PNP: 002e.5 is not a PNP device
  8910. BUG: Check your devicetree!
  8911. BUG: Parent of device PNP: 002e.6 is not a PNP device
  8912. BUG: Check your devicetree!
  8913. BUG: Parent of device PNP: 002e.107 is not a PNP device
  8914. BUG: Check your devicetree!
  8915. BUG: Parent of device PNP: 002e.8 is not a PNP device
  8916. BUG: Check your devicetree!
  8917. BUG: Parent of device PNP: 002e.108 is not a PNP device
  8918. BUG: Check your devicetree!
  8919. BUG: Parent of device PNP: 002e.308 is not a PNP device
  8920. BUG: Check your devicetree!
  8921. BUG: Parent of device PNP: 002e.408 is not a PNP device
  8922. BUG: Check your devicetree!
  8923. BUG: Parent of device PNP: 002e.9 is not a PNP device
  8924. BUG: Check your devicetree!
  8925. BUG: Parent of device PNP: 002e.109 is not a PNP device
  8926. BUG: Check your devicetree!
  8927. BUG: Parent of device PNP: 002e.209 is not a PNP device
  8928. BUG: Check your devicetree!
  8929. BUG: Parent of device PNP: 002e.309 is not a PNP device
  8930. BUG: Check your devicetree!
  8931. BUG: Parent of device PNP: 002e.a is not a PNP device
  8932. BUG: Check your devicetree!
  8933. BUG: Parent of device PNP: 002e.b is not a PNP device
  8934. BUG: Check your devicetree!
  8935. BUG: Parent of device PNP: 002e.d is not a PNP device
  8936. BUG: Check your devicetree!
  8937. BUG: Parent of device PNP: 002e.e is not a PNP device
  8938. BUG: Check your devicetree!
  8939. BUG: Parent of device PNP: 002e.f is not a PNP device
  8940. BUG: Check your devicetree!
  8941. BUG: Parent of device PNP: 002e.16 is not a PNP device
  8942. BUG: Check your devicetree!
  8943. BUG: Parent of device PNP: 002e.116 is not a PNP device
  8944. BUG: Check your devicetree!
  8945. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8946. CBFS: Locating 'pci10de,1d01.rom'
  8947. CBFS: 'pci10de,1d01.rom' not found.
  8948. PCI Option ROM loading disabled for PCI: 01:00.0
  8949. PCI: 01:00.0: Missing PCI Option ROM
  8950. BUG: Parent of device PNP: 002e.207 is not a PNP device
  8951. BUG: Check your devicetree!
  8952. BUG: Parent of device PNP: 002e.11 is not a PNP device
  8953. BUG: Check your devicetree!
  8954. BUG: Parent of device PNP: 002e.12 is not a PNP device
  8955. BUG: Check your devicetree!
  8956. BUG: Parent of device PNP: 002e.15 is not a PNP device
  8957. BUG: Check your devicetree!
  8958. ACPI: added table 2/32, length now 44
  8959. ACPI: * MCFG
  8960. ACPI: added table 3/32, length now 48
  8961. ACPI: * MADT
  8962. SCI is IRQ9
  8963. ACPI: added table 4/32, length now 52
  8964. current = 7aaa2ea0
  8965. ACPI: * DMAR
  8966. ACPI: added table 5/32, length now 56
  8967. ACPI: * IGD OpRegion
  8968. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  8969. CBFS: Locating 'vbt.bin'
  8970. CBFS: Found @ offset 54680 size 49c
  8971. Timestamp - starting LZMA decompress (ignore for x86): 175140289866
  8972. Timestamp - finished LZMA decompress (ignore for x86): 175165359376
  8973. Found a VBT of 4284 bytes after decompression
  8974. GMA: Found VBT in CBFS
  8975. GMA: Found valid VBT in CBFS
  8976. current = 7aaa4f30
  8977. acpi_write_dbg2_pci_uart: Device not found
  8978. ACPI: * HPET
  8979. ACPI: added table 6/32, length now 60
  8980. ACPI: done.
  8981. ACPI tables: 24432 bytes.
  8982. smbios_write_tables: 7aa9d000
  8983. Create SMBIOS type 17
  8984. PCI: 00:00.0 (Intel 6th Gen)
  8985. SMBIOS tables: 761 bytes.
  8986. Writing table forward entry at 0x00000500
  8987. Wrote coreboot table at: 0x00000500, 0x10 bytes, checksum 5532
  8988. Writing coreboot table at 0x7aac3000
  8989. 0. 0000000000000000-0000000000000fff: CONFIGURATION TABLES
  8990. 1. 0000000000001000-000000000009ffff: RAM
  8991. 2. 00000000000a0000-00000000000fffff: RESERVED
  8992. 3. 0000000000100000-000000007aa9cfff: RAM
  8993. 4. 000000007aa9d000-000000007ab09fff: CONFIGURATION TABLES
  8994. 5. 000000007ab0a000-000000007abcefff: RAMSTAGE
  8995. 6. 000000007abcf000-000000007affffff: CONFIGURATION TABLES
  8996. 7. 000000007b000000-000000007fffffff: RESERVED
  8997. 8. 00000000e0000000-00000000efffffff: RESERVED
  8998. 9. 00000000fd000000-00000000fe00ffff: RESERVED
  8999. 10. 00000000fed10000-00000000fed19fff: RESERVED
  9000. 11. 00000000fed80000-00000000fed84fff: RESERVED
  9001. 12. 00000000fed90000-00000000fed91fff: RESERVED
  9002. 13. 0000000100000000-000000047effffff: RAM
  9003. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  9004. Wrote coreboot table at: 0x7aac3000, 0x400 bytes, checksum f032
  9005. coreboot table: 1048 bytes.
  9006. IMD ROOT 0. 0x7afff000 0x00001000
  9007. IMD SMALL 1. 0x7affe000 0x00001000
  9008. FSP MEMORY 2. 0x7abfe000 0x00400000
  9009. CONSOLE 3. 0x7abde000 0x00020000
  9010. TIME STAMP 4. 0x7abdd000 0x00000910
  9011. MRC DATA 5. 0x7abdb000 0x00001878
  9012. ROMSTG STCK 6. 0x7abda000 0x00001000
  9013. AFTER CAR 7. 0x7abcf000 0x0000b000
  9014. RAMSTAGE 8. 0x7ab09000 0x000c6000
  9015. REFCODE 9. 0x7aadb000 0x0002e000
  9016. SMM BACKUP 10. 0x7aacb000 0x00010000
  9017. COREBOOT 11. 0x7aac3000 0x00008000
  9018. ACPI 12. 0x7aa9f000 0x00024000
  9019. ACPI GNVS 13. 0x7aa9e000 0x00001000
  9020. SMBIOS 14. 0x7aa9d000 0x00000800
  9021. IMD small region:
  9022. IMD ROOT 0. 0x7affec00 0x00000400
  9023. FSP RUNTIME 1. 0x7affebe0 0x00000004
  9024. FMAP 2. 0x7affeb00 0x000000e0
  9025. POWER STATE 3. 0x7affeac0 0x00000040
  9026. ROMSTAGE 4. 0x7affeaa0 0x00000004
  9027. MEM INFO 5. 0x7affe8e0 0x000001b9
  9028. Timestamp - finalize chips: 175981770419
  9029. BS: BS_WRITE_TABLES run times (exec / console): 2 / 737 ms
  9030. MTRR: Physical address space:
  9031. 0x0000000000000000 - 0x00000000000a0000 size 0x000a0000 type 6
  9032. 0x00000000000a0000 - 0x00000000000c0000 size 0x00020000 type 0
  9033. 0x00000000000c0000 - 0x000000007b800000 size 0x7b740000 type 6
  9034. 0x000000007b800000 - 0x00000000a0000000 size 0x24800000 type 0
  9035. 0x00000000a0000000 - 0x00000000b2000000 size 0x12000000 type 1
  9036. 0x00000000b2000000 - 0x0000000100000000 size 0x4e000000 type 0
  9037. 0x0000000100000000 - 0x000000047f000000 size 0x37f000000 type 6
  9038. MTRR: Fixed MSR 0x250 0x0606060606060606
  9039. MTRR: Fixed MSR 0x258 0x0606060606060606
  9040. MTRR: Fixed MSR 0x259 0x0000000000000000
  9041. MTRR: Fixed MSR 0x268 0x0606060606060606
  9042. MTRR: Fixed MSR 0x269 0x0606060606060606
  9043. MTRR: Fixed MSR 0x26a 0x0606060606060606
  9044. MTRR: Fixed MSR 0x26b 0x0606060606060606
  9045. MTRR: Fixed MSR 0x26c 0x0606060606060606
  9046. MTRR: Fixed MSR 0x26d 0x0606060606060606
  9047. MTRR: Fixed MSR 0x26e 0x0606060606060606
  9048. MTRR: Fixed MSR 0x26f 0x0606060606060606
  9049. CPU physical address size: 39 bits
  9050. MTRR: default type WB/UC MTRR counts: 9/8.
  9051. MTRR: UC selected as default type.
  9052. MTRR: 0 base 0x0000000000000000 mask 0x0000007f80000000 type 6
  9053. MTRR: 1 base 0x000000007b800000 mask 0x0000007fff800000 type 0
  9054. MTRR: 2 base 0x000000007c000000 mask 0x0000007ffc000000 type 0
  9055. MTRR: 3 base 0x00000000a0000000 mask 0x0000007ff0000000 type 1
  9056. MTRR: 4 base 0x00000000b0000000 mask 0x0000007ffe000000 type 1
  9057. MTRR: 5 base 0x0000000100000000 mask 0x0000007f00000000 type 6
  9058. MTRR: 6 base 0x0000000200000000 mask 0x0000007e00000000 type 6
  9059. MTRR: 7 base 0x0000000400000000 mask 0x0000007f80000000 type 6
  9060. MTRR: Fixed MSR 0x250 0x0606060606060606
  9061. MTRR: Fixed MSR 0x258 0x0606060606060606
  9062. MTRR: Fixed MSR 0x259 0x0000000000000000
  9063. MTRR: Fixed MSR 0x268 0x0606060606060606
  9064. MTRR: Fixed MSR 0x269 0x0606060606060606
  9065. MTRR: Fixed MSR 0x26a 0x0606060606060606
  9066. MTRR: Fixed MSR 0x26b 0x0606060606060606
  9067. MTRR: Fixed MSR 0x26c 0x0606060606060606
  9068. MTRR: Fixed MSR 0x26d 0x0606060606060606
  9069. MTRR: Fixed MSR 0x26e 0x0606060606060606
  9070. MTRR: Fixed MSR 0x26f 0x0606060606060606
  9071.  
  9072. MTRR check
  9073. Fixed MTRRs : Enabled
  9074. Variable MTRRs: Enabled
  9075.  
  9076. CPU physical address size: 39 bits
  9077. BS: BS_WRITE_TABLES exit times (exec / console): 44 / 150 ms
  9078. MTRR: Fixed MSR 0x250 0x0606060606060606
  9079. MTRR: Fixed MSR 0x250 0x0606060606060606
  9080. MTRR: Fixed MSR 0x258 0x0606060606060606
  9081. MTRR: Fixed MSR 0x259 0x0000000000000000
  9082. MTRR: Fixed MSR 0x268 0x0606060606060606
  9083. MTRR: Fixed MSR 0x269 0x0606060606060606
  9084. MTRR: Fixed MSR 0x26a 0x0606060606060606
  9085. MTRR: Fixed MSR 0x26b 0x0606060606060606
  9086. MTRR: Fixed MSR 0x26c 0x0606060606060606
  9087. MTRR: Fixed MSR 0x26d 0x0606060606060606
  9088. MTRR: Fixed MSR 0x26e 0x0606060606060606
  9089. MTRR: Fixed MSR 0x26f 0x0606060606060606
  9090. MTRR: Fixed MSR 0x258 0x0606060606060606
  9091. CPU physical address size: 39 bits
  9092. MTRR: Fixed MSR 0x259 0x0000000000000000
  9093. MTRR: Fixed MSR 0x268 0x0606060606060606
  9094. MTRR: Fixed MSR 0x269 0x0606060606060606
  9095. MTRR: Fixed MSR 0x26a 0x0606060606060606
  9096. MTRR: Fixed MSR 0x26b 0x0606060606060606
  9097. MTRR: Fixed MSR 0x26c 0x0606060606060606
  9098. MTRR: Fixed MSR 0x26d 0x0606060606060606
  9099. MTRR: Fixed MSR 0x26e 0x0606060606060606
  9100. MTRR: Fixed MSR 0x26f 0x0606060606060606
  9101. Timestamp - load payload: 176809424715
  9102. CPU physical address size: 39 bits
  9103. FMAP: area COREBOOT found @ c10200 (4128256 bytes)
  9104. CBFS: Locating 'fallback/payload'
  9105. CBFS: Found @ offset ffc80 size 10f36
  9106. Checking segment from ROM address 0xffd0feb8
  9107. Payload being loaded at below 1MiB without region being marked as RAM usable.
  9108. Checking segment from ROM address 0xffd0fed4
  9109. Loading segment from ROM address 0xffd0feb8
  9110. code (compression=1)
  9111. New segment dstaddr 0x000dfba0 memsize 0x20460 srcaddr 0xffd0fef0 filesize 0x10efe
  9112. Loading Segment: addr: 0x000dfba0 memsz: 0x0000000000020460 filesz: 0x0000000000010efe
  9113. using LZMA
  9114. Timestamp - starting LZMA decompress (ignore for x86): 177381204923
  9115. Timestamp - finished LZMA decompress (ignore for x86): 177503698296
  9116. Loading segment from ROM address 0xffd0fed4
  9117. Entry Point 0x000fd25d
  9118. BS: BS_PAYLOAD_LOAD run times (exec / console): 117 / 74 ms
  9119. Timestamp - calling FspNotify(ReadyToBoot): 177575846571
  9120. Timestamp - returning from FspNotify(ReadyToBoot): 177610452499
  9121. Timestamp - calling FspNotify(EndOfFirmware): 177633754152
  9122. Timestamp - returning from FspNotify(EndOfFirmware): 177662284326
  9123. Finalizing chipset.
  9124. HECI: CSE device is hidden
  9125. Finalizing SMM.
  9126. BS: BS_PAYLOAD_LOAD exit times (exec / console): 6 / 29 ms
  9127. mp_park_aps done after 0 msecs.
  9128. Jumping to boot code at 0x000fd25d(0x7aac3000)
  9129. Timestamp - selfboot jump: 177760991017
  9130. SeaBIOS (version rel-1.13.0-5-g7655185)
  9131. BUILD: gcc: (coreboot toolchain vdfd3f21174 2019-05-03) 9.2.0 binutils: (GNU Binutils) 2.33.1
  9132. SeaBIOS (version rel-1.13.0-5-g7655185)
  9133. BUILD: gcc: (coreboot toolchain vdfd3f21174 2019-05-03) 9.2.0 binutils: (GNU Binutils) 2.33.1
  9134. Found coreboot cbmem console @ 7abde000
  9135. Found mainboard ASUS H110M-E/M.2
  9136. Relocating init from 0x000e12c0 to 0x7aa4fc40 (size 54048)
  9137. Found CBFS header at 0xffc10238
  9138. multiboot: eax=7ab3d300, ebx=7ab3d2c4
  9139. Found 18 PCI devices (max PCI bus is 04)
  9140. Copying SMBIOS entry point from 0x7aa9d000 to 0x000f62e0
  9141. Copying ACPI RSDP from 0x7aa9f000 to 0x000f62b0
  9142. Using pmtimer, ioport 0x1808
  9143. Scan for VGA option rom
  9144. Running option rom at c000:0003
  9145. sercon: using ioport 0x3f8
  9146. sercon: configuring in splitmode (vgabios c000:17dc)
  9147. Turning on vga text mode console
  9148. SeaBIOS (version rel-1.13.0-5-g7655185XHCI init on dev 00:14.0: regs @ 0xd3100000, 20 ports, 64 slots, 32 byte contexts
  9149. XHCI protocol USB 2.00, 10 ports (offset 1), def 3011
  9150. XHCI protocol USB 3.00, 4 ports (offset 17), def 3000
  9151. XHCI extcap 0xc0 @ 0xd3108070
  9152. XHCI extcap 0x1 @ 0xd310846c
  9153. XHCI extcap 0xc6 @ 0xd31084f4
  9154. XHCI extcap 0xc7 @ 0xd3108500
  9155. XHCI extcap 0xc2 @ 0xd3108600
  9156. XHCI extcap 0xa @ 0xd3108700
  9157. XHCI extcap 0xc3 @ 0xd3108740
  9158. XHCI extcap 0xc4 @ 0xd3108800
  9159. XHCI extcap 0xc5 @ 0xd3108900
  9160. AHCI controller at 00:17.0, iobase 0xd3135000, irq 11
  9161. Searching bootorder for: HALT
  9162. Found 0 lpt ports
  9163. Found 1 serial ports
  9164. Searching bootorder for: /rom@img/memtest
  9165. Searching bootorder for: /rom@img/nvramcui
  9166. )
  9167. Got ps2 nak (status=51)
  9168. Searching bootorder for: /pci@i0cf8/*@17/drive@3/disk@0
  9169. AHCI/3: Set transfer mode to UDMA-6
  9170. Searching bios-geometry for: /pci@i0cf8/*@17/drive@3/disk@0
  9171. AHCI/3: registering: "AHCI/3: TOSHIBA HDWD110 ATA-8 Hard-Disk (931 GiBytes)"
  9172. XHCI port #5: 0x00200a03, powered, enabled, pls 0, speed 2 [Low]
  9173. USB mouse initialized
  9174. XHCI port #6: 0x00200a03, powered, enabled, pls 0, speed 2 [Low]
  9175. USB keyboard initialized
  9176. All threads complete.
  9177. Scan for option roms
  9178.  
  9179. Press ESC for boot menu.
  9180.  
  9181. Searching bootorder for: HALT
  9182. drive 0x000f6240: PCHS=16383/16/63 translation=lba LCHS=1024/255/63 s=1953525168
  9183. Space available for UMB: ce800-ed000, f5b00-f6240
  9184. Returned 114688 bytes of ZoneHigh
  9185. e820 map has 11 items:
  9186. 0: 0000000000000000 - 000000000009fc00 = 1 RAM
  9187. 1: 000000000009fc00 - 00000000000a0000 = 2 RESERVED
  9188. 2: 00000000000f0000 - 0000000000100000 = 2 RESERVED
  9189. 3: 0000000000100000 - 000000007aa79000 = 1 RAM
  9190. 4: 000000007aa79000 - 0000000080000000 = 2 RESERVED
  9191. 5: 00000000e0000000 - 00000000f0000000 = 2 RESERVED
  9192. 6: 00000000fd000000 - 00000000fe010000 = 2 RESERVED
  9193. 7: 00000000fed10000 - 00000000fed1a000 = 2 RESERVED
  9194. 8: 00000000fed80000 - 00000000fed85000 = 2 RESERVED
  9195. 9: 00000000fed90000 - 00000000fed92000 = 2 RESERVED
  9196. 10: 0000000100000000 - 000000047f000000 = 1 RAM
  9197. enter handle_19:
  9198. NULL
  9199. Booting from Hard Disk..Booting from 0000:7c00
  9200. .
  9201. GRUB loading.
  9202. Welcome to GRUB!
  9203.  
  9204. WARNING - Timeout at ahci_command:153!
  9205. WARNING - Timeout at ahci_command:153!
  9206. WARNING - Timeout at ahci_command:153!
  9207. WARNING - Timeout at ahci_command:153!
  9208. @  €€€€‚ÿÿþÿÿÿÿÿÿÿÿÿÿþþþÿÿÿÿÿþÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ(%'(*,/AHIJMR ?O
  9209. €€€€þþÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ(%'(*,/AHIJMR ?O
  9210. o
  9211. 0@BDP !"#$&')L+*,1.K4/=>:IF25E67AM?;<89IHQPB[\i!U;2 
  9212.  P!#$@Aq‚O@AG`ašbipr€xby‘’“”“”“”“”“”•–—²˜œ™Ž(%'(*+.AHIJMR ?O
  9213. o
  9214. 0@BDP!"#$C}Cpq`]!U;2 
  9215. O#$@Aq‚O@AG`ašbipr€xby‘’“”“”“”“”“”•–—²˜œ™Ž
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement