Winston Hoy ревизий этого фрагмента 2 years ago. К ревизии
Без изменений
Winston Hoy ревизий этого фрагмента 2 years ago. К ревизии
1 file changed, 32 insertions
qemu.sh(файл создан)
| @@ -0,0 +1,32 @@ | |||
| 1 | + | #!/usr/bin/env bash | |
| 2 | + | ||
| 3 | + | set -e | |
| 4 | + | ||
| 5 | + | MODEL="qemu" | |
| 6 | + | ||
| 7 | + | qemu-system-x86_64 \ | |
| 8 | + | -enable-kvm \ | |
| 9 | + | -M q35 \ | |
| 10 | + | -m 4096 \ | |
| 11 | + | -cpu Skylake-Client \ | |
| 12 | + | -vga std \ | |
| 13 | + | -bios "build/${MODEL}/firmware.rom" \ | |
| 14 | + | -chardev stdio,mux=on,id=debug \ | |
| 15 | + | -device isa-serial,index=2,chardev=debug \ | |
| 16 | + | -device isa-debugcon,iobase=0x402,chardev=debug \ | |
| 17 | + | -device pcie-root-port,bus=pcie.0,id=rp1 \ | |
| 18 | + | -device pcie-pci-bridge,id=br1,bus=rp1 \ | |
| 19 | + | -net none \ | |
| 20 | + | -drive id=disk,file=/path/to/esp.img,if=none,format=raw \ | |
| 21 | + | -device ahci,id=ahci \ | |
| 22 | + | -device ide-hd,drive=disk,bus=ahci.0 \ | |
| 23 | + | "$@" | |
| 24 | + | ||
| 25 | + | # COM1: -device isa-serial,index=0,chardev=debug | |
| 26 | + | # COM2: -device isa-serial,index=1,chardev=debug | |
| 27 | + | # COM3: -device isa-serial,index=2,chardev=debug | |
| 28 | + | # COM4: -device isa-serial,index=3,chardev=debug | |
| 29 | + | ||
| 30 | + | # PCIe hotplugging (https://github.com/qemu/qemu/blob/master/docs/pcie_pci_bridge.txt): | |
| 31 | + | # Root port: -device pcie-root-port,bus=pcie.0,id=rp1 | |
| 32 | + | # PCIe bridge: -device pcie-pci-bridge,id=br1,bus=rp1 | |
Winston Hoy ревизий этого фрагмента 2 years ago. К ревизии
1 file changed, 406 insertions
zbm-qemu.log(файл создан)
| @@ -0,0 +1,406 @@ | |||
| 1 | + | qemu-system-x86_64: warning: host doesn't support requested feature: CPUID.0DH:EAX.xsavec [bit 1] | |
| 2 | + | qemu-system-x86_64: warning: host doesn't support requested feature: CPUID.0DH:EAX.xgetbv1 [bit 2] | |
| 3 | + | ||
| 4 | + | ||
| 5 | + | [NOTE ] coreboot-2024-01-18_3e19b73 Thu Jan 18 19:28:10 UTC 2024 bootblock starting (log level: 7)... | |
| 6 | + | [DEBUG] FMAP: Found "FLASH" version 1.1 at 0x0. | |
| 7 | + | [DEBUG] FMAP: base = 0xff800000 size = 0x800000 #areas = 3 | |
| 8 | + | [DEBUG] FMAP: area COREBOOT found @ 200 (8388096 bytes) | |
| 9 | + | [INFO ] CBFS: mcache @0x00014e00 built for 12 files, used 0x2ac of 0x4000 bytes | |
| 10 | + | [INFO ] CBFS: Found 'fallback/romstage' @0x80 size 0x4558 in mcache @0x00014e2c | |
| 11 | + | [DEBUG] BS: bootblock times (exec / console): total (unknown) / 7 ms | |
| 12 | + | ||
| 13 | + | ||
| 14 | + | [NOTE ] coreboot-2024-01-18_3e19b73 Thu Jan 18 19:28:10 UTC 2024 romstage starting (log level: 7)... | |
| 15 | + | [DEBUG] SMBus controller enabled | |
| 16 | + | [INFO ] QEMU: firmware config interface detected | |
| 17 | + | [INFO ] Firmware config version id: 3 | |
| 18 | + | [INFO ] QEMU: firmware config: Found 'etc/e820' | |
| 19 | + | [DEBUG] CBMEM: | |
| 20 | + | [DEBUG] IMD: root @ 0x7ffff000 254 entries. | |
| 21 | + | [DEBUG] IMD: root @ 0x7fffec00 62 entries. | |
| 22 | + | [DEBUG] FMAP: area COREBOOT found @ 200 (8388096 bytes) | |
| 23 | + | [INFO ] CBFS: Found 'fallback/postcar' @0x21480 size 0x505c in mcache @0x00014ff8 | |
| 24 | + | [DEBUG] Loading module at 0x7ffd1000 with entry 0x7ffd1031. filesize: 0x4d60 memsize: 0xb070 | |
| 25 | + | [DEBUG] Processing 175 relocs. Offset value of 0x7dfd1000 | |
| 26 | + | [DEBUG] BS: romstage times (exec / console): total (unknown) / 10 ms | |
| 27 | + | ||
| 28 | + | ||
| 29 | + | [NOTE ] coreboot-2024-01-18_3e19b73 Thu Jan 18 19:28:10 UTC 2024 postcar starting (log level: 7)... | |
| 30 | + | [DEBUG] FMAP: area COREBOOT found @ 200 (8388096 bytes) | |
| 31 | + | [INFO ] CBFS: Found 'fallback/ramstage' @0x4680 size 0x10bd4 in mcache @0x7fffe9ec | |
| 32 | + | [DEBUG] Loading module at 0x7ff9e000 with entry 0x7ff9e000. filesize: 0x20500 memsize: 0x31610 | |
| 33 | + | [DEBUG] Processing 2284 relocs. Offset value of 0x7bf9e000 | |
| 34 | + | [DEBUG] BS: postcar times (exec / console): total (unknown) / 6 ms | |
| 35 | + | ||
| 36 | + | ||
| 37 | + | [NOTE ] coreboot-2024-01-18_3e19b73 Thu Jan 18 19:28:10 UTC 2024 ramstage starting (log level: 7)... | |
| 38 | + | [DEBUG] Initializing i82801ix southbridge... | |
| 39 | + | [DEBUG] BS: BS_DEV_INIT_CHIPS run times (exec / console): 0 / 1 ms | |
| 40 | + | [INFO ] Enumerating buses... | |
| 41 | + | [DEBUG] Root Device scanning... | |
| 42 | + | [DEBUG] CPU_CLUSTER: 0 enabled | |
| 43 | + | [DEBUG] DOMAIN: 0000 enabled | |
| 44 | + | [DEBUG] DOMAIN: 0000 scanning... | |
| 45 | + | [DEBUG] PCI: pci_scan_bus for bus 00 | |
| 46 | + | [DEBUG] PCI: 00:00.0 [8086/29c0] enabled | |
| 47 | + | [DEBUG] PCI: 00:01.0 [1234/1111] enabled | |
| 48 | + | [DEBUG] PCI: 00:02.0 subordinate bus PCI Express | |
| 49 | + | [DEBUG] PCI: 00:02.0 hot-plug capable | |
| 50 | + | [DEBUG] PCI: 00:02.0 [1b36/000c] enabled | |
| 51 | + | [DEBUG] PCI: 00:03.0 [8086/2922] enabled | |
| 52 | + | [INFO ] PCI: Static device PCI: 00:1a.0 not found, disabling it. | |
| 53 | + | [INFO ] PCI: Static device PCI: 00:1a.1 not found, disabling it. | |
| 54 | + | [INFO ] PCI: Static device PCI: 00:1a.2 not found, disabling it. | |
| 55 | + | [INFO ] PCI: Static device PCI: 00:1a.7 not found, disabling it. | |
| 56 | + | [INFO ] PCI: Static device PCI: 00:1b.0 not found, disabling it. | |
| 57 | + | [INFO ] PCI: Static device PCI: 00:1c.0 not found, disabling it. | |
| 58 | + | [INFO ] PCI: Static device PCI: 00:1c.1 not found, disabling it. | |
| 59 | + | [INFO ] PCI: Static device PCI: 00:1c.2 not found, disabling it. | |
| 60 | + | [INFO ] PCI: Static device PCI: 00:1c.3 not found, disabling it. | |
| 61 | + | [INFO ] PCI: Static device PCI: 00:1c.4 not found, disabling it. | |
| 62 | + | [INFO ] PCI: Static device PCI: 00:1c.5 not found, disabling it. | |
| 63 | + | [INFO ] PCI: Static device PCI: 00:1d.0 not found, disabling it. | |
| 64 | + | [INFO ] PCI: Static device PCI: 00:1d.1 not found, disabling it. | |
| 65 | + | [INFO ] PCI: Static device PCI: 00:1d.2 not found, disabling it. | |
| 66 | + | [INFO ] PCI: Static device PCI: 00:1d.7 not found, disabling it. | |
| 67 | + | [DEBUG] PCI: 00:1f.0 [8086/2918] enabled | |
| 68 | + | [DEBUG] PCI: 00:1f.2 [8086/2922] enabled | |
| 69 | + | [DEBUG] PCI: 00:1f.3 [8086/2930] enabled | |
| 70 | + | 4m[WARN ] PCI: Leftover static devices: | |
| 71 | + | 4m[WARN ] PCI: 00:19.0 | |
| 72 | + | 4m[WARN ] PCI: 00:1a.0 | |
| 73 | + | 4m[WARN ] PCI: 00:1a.1 | |
| 74 | + | 4m[WARN ] PCI: 00:1a.2 | |
| 75 | + | 4m[WARN ] PCI: 00:1a.7 | |
| 76 | + | 4m[WARN ] PCI: 00:1b.0 | |
| 77 | + | 4m[WARN ] PCI: 00:1c.0 | |
| 78 | + | 4m[WARN ] PCI: 00:1c.1 | |
| 79 | + | 4m[WARN ] PCI: 00:1c.2 | |
| 80 | + | 4m[WARN ] PCI: 00:1c.3 | |
| 81 | + | 4m[WARN ] PCI: 00:1c.4 | |
| 82 | + | 4m[WARN ] PCI: 00:1c.5 | |
| 83 | + | 4m[WARN ] PCI: 00:1d.0 | |
| 84 | + | 4m[WARN ] PCI: 00:1d.1 | |
| 85 | + | 4m[WARN ] PCI: 00:1d.2 | |
| 86 | + | 4m[WARN ] PCI: 00:1d.7 | |
| 87 | + | 4m[WARN ] PCI: 00:1f.5 | |
| 88 | + | 4m[WARN ] PCI: 00:1f.6 | |
| 89 | + | 4m[WARN ] PCI: Check your devicetree.cb. | |
| 90 | + | [DEBUG] PCI: 00:02.0 scanning... | |
| 91 | + | [DEBUG] PCI: pci_scan_bus for bus 01 | |
| 92 | + | [DEBUG] PCI: 01:00.0 subordinate PCI | |
| 93 | + | [DEBUG] PCI: 01:00.0 [1b36/000e] enabled | |
| 94 | + | [DEBUG] PCI: 01:00.0 scanning... | |
| 95 | + | [DEBUG] PCI: pci_scan_bus for bus 22 | |
| 96 | + | [DEBUG] scan_bus: bus PCI: 01:00.0 finished in 1 msecs | |
| 97 | + | [INFO ] PCIe: Max_Payload_Size adjusted to 128 | |
| 98 | + | [DEBUG] PCI: 01:00.0: No LTR support | |
| 99 | + | [DEBUG] scan_bus: bus PCI: 00:02.0 finished in 7 msecs | |
| 100 | + | [DEBUG] PCI: 00:1f.0 scanning... | |
| 101 | + | [DEBUG] PNP: 0c31.0 enabled | |
| 102 | + | [DEBUG] scan_bus: bus PCI: 00:1f.0 finished in 0 msecs | |
| 103 | + | [DEBUG] PCI: 00:1f.3 scanning... | |
| 104 | + | [DEBUG] scan_bus: bus PCI: 00:1f.3 finished in 0 msecs | |
| 105 | + | [DEBUG] scan_bus: bus DOMAIN: 0000 finished in 42 msecs | |
| 106 | + | [DEBUG] scan_bus: bus Root Device finished in 44 msecs | |
| 107 | + | [INFO ] done | |
| 108 | + | [DEBUG] BS: BS_DEV_ENUMERATE run times (exec / console): 3 / 44 ms | |
| 109 | + | [DEBUG] found VGA at PCI: 00:01.0 | |
| 110 | + | [DEBUG] Setting up VGA for PCI: 00:01.0 | |
| 111 | + | [DEBUG] Setting PCI_BRIDGE_CTL_VGA for bridge DOMAIN: 0000 | |
| 112 | + | [DEBUG] Setting PCI_BRIDGE_CTL_VGA for bridge Root Device | |
| 113 | + | [INFO ] Allocating resources... | |
| 114 | + | [INFO ] Reading resources... | |
| 115 | + | [INFO ] QEMU: firmware config interface detected | |
| 116 | + | [INFO ] Firmware config version id: 3 | |
| 117 | + | [INFO ] QEMU: firmware config: Found 'etc/e820' | |
| 118 | + | [DEBUG] QEMU: e820/res: 0xfeffc000 +0x00004000 | |
| 119 | + | [DEBUG] QEMU: e820/ram: 0x00000000 + 0x80000000 | |
| 120 | + | [DEBUG] QEMU: e820/ram: 0x100000000 + 0x80000000 | |
| 121 | + | [DEBUG] QEMU: reserve ioports 0x0510-0x0511 [firmware-config] | |
| 122 | + | [DEBUG] QEMU: reserve ioports 0x5658-0x5658 [vmware-port] | |
| 123 | + | [DEBUG] Adding PCIe enhanced config space BAR 0xb0000000-0xc0000000. | |
| 124 | + | [ERROR] PNP: 0c31.0 missing read_resources | |
| 125 | + | [INFO ] Done reading resources. | |
| 126 | + | [INFO ] === Resource allocator: DOMAIN: 0000 - Pass 1 (gathering requirements) === | |
| 127 | + | [DEBUG] PCI: 00:02.0 io: size: 0 align: 12 gran: 12 limit: ffff | |
| 128 | + | [DEBUG] NONE 18 * [0x0 - 0x1fff] io | |
| 129 | + | [DEBUG] PCI: 00:02.0 io: size: 2000 align: 12 gran: 12 limit: ffff done | |
| 130 | + | [DEBUG] PCI: 00:02.0 mem: size: 0 align: 20 gran: 20 limit: ffffffff | |
| 131 | + | [DEBUG] NONE 10 * [0x0 - 0x7fffff] mem | |
| 132 | + | [DEBUG] PCI: 01:00.0 10 * [0x800000 - 0x8000ff] mem | |
| 133 | + | [DEBUG] PCI: 00:02.0 mem: size: 900000 align: 20 gran: 20 limit: ffffffff done | |
| 134 | + | [DEBUG] PCI: 00:02.0 prefmem: size: 0 align: 20 gran: 20 limit: ffffffffffffffff | |
| 135 | + | [DEBUG] NONE 14 * [0x0 - 0xfffffff] prefmem | |
| 136 | + | [DEBUG] PCI: 00:02.0 prefmem: size: 10000000 align: 20 gran: 20 limit: ffffffffffffffff done | |
| 137 | + | [INFO ] === Resource allocator: DOMAIN: 0000 - Pass 2 (allocating resources) === | |
| 138 | + | [DEBUG] DOMAIN: 0000 io: base: 0 size: 0 align: 0 gran: 0 limit: ffff | |
| 139 | + | [DEBUG] update_constraints: DOMAIN: 0000 0e base 00000510 limit 00000511 io (fixed) | |
| 140 | + | [DEBUG] update_constraints: DOMAIN: 0000 0f base 00005658 limit 00005658 io (fixed) | |
| 141 | + | [DEBUG] update_constraints: PCI: 00:1f.0 10000000 base 00000000 limit 00000fff io (fixed) | |
| 142 | + | [DEBUG] update_constraints: PCI: 00:1f.3 20 base 00000400 limit 0000041f io (fixed) | |
| 143 | + | [INFO ] DOMAIN: 0000: Resource ranges: | |
| 144 | + | [INFO ] * Base: 1000, Size: 4658, Tag: 100 | |
| 145 | + | [INFO ] * Base: 5659, Size: a9a7, Tag: 100 | |
| 146 | + | [DEBUG] PCI: 00:02.0 1c * [0x1000 - 0x2fff] limit: 2fff io | |
| 147 | + | [DEBUG] PCI: 00:03.0 20 * [0x3000 - 0x301f] limit: 301f io | |
| 148 | + | [DEBUG] PCI: 00:1f.2 20 * [0x3020 - 0x303f] limit: 303f io | |
| 149 | + | [DEBUG] DOMAIN: 0000 io: base: 0 size: 0 align: 0 gran: 0 limit: ffff done | |
| 150 | + | [DEBUG] DOMAIN: 0000 mem: base: 0 size: 0 align: 0 gran: 0 limit: ffffffffff | |
| 151 | + | [DEBUG] update_constraints: DOMAIN: 0000 0a base feffc000 limit feffffff mem (fixed) | |
| 152 | + | [DEBUG] update_constraints: DOMAIN: 0000 0b base 00000000 limit 0009ffff mem (fixed) | |
| 153 | + | [DEBUG] update_constraints: DOMAIN: 0000 0c base 000c0000 limit 7fffffff mem (fixed) | |
| 154 | + | [DEBUG] update_constraints: DOMAIN: 0000 0d base 100000000 limit 17fffffff mem (fixed) | |
| 155 | + | [DEBUG] update_constraints: DOMAIN: 0000 10 base 000a0000 limit 000bffff mem (fixed) | |
| 156 | + | [DEBUG] update_constraints: DOMAIN: 0000 11 base 000c0000 limit 000fffff mem (fixed) | |
| 157 | + | [DEBUG] update_constraints: DOMAIN: 0000 12 base 80000000 limit afffffff mem (fixed) | |
| 158 | + | [DEBUG] update_constraints: DOMAIN: 0000 03 base fee00000 limit fee0ffff mem (fixed) | |
| 159 | + | [DEBUG] update_constraints: PCI: 00:00.0 02 base b0000000 limit bfffffff mem (fixed) | |
| 160 | + | [DEBUG] update_constraints: PCI: 00:1f.0 10000100 base ff800000 limit ffffffff mem (fixed) | |
| 161 | + | [DEBUG] update_constraints: PCI: 00:1f.0 03 base fec00000 limit fec00fff mem (fixed) | |
| 162 | + | [INFO ] DOMAIN: 0000: Resource ranges: | |
| 163 | + | [INFO ] * Base: c0000000, Size: 3ec00000, Tag: 200 | |
| 164 | + | [INFO ] * Base: fec01000, Size: 1ff000, Tag: 200 | |
| 165 | + | [INFO ] * Base: fee10000, Size: 1ec000, Tag: 200 | |
| 166 | + | [INFO ] * Base: ff000000, Size: 800000, Tag: 200 | |
| 167 | + | [INFO ] * Base: 180000000, Size: fe80000000, Tag: 100200 | |
| 168 | + | [DEBUG] PCI: 00:01.0 10 * [0xc0000000 - 0xc0ffffff] limit: c0ffffff prefmem | |
| 169 | + | [DEBUG] PCI: 00:02.0 20 * [0xc1000000 - 0xc18fffff] limit: c18fffff mem | |
| 170 | + | [DEBUG] PCI: 00:01.0 30 * [0xc1900000 - 0xc190ffff] limit: c190ffff mem | |
| 171 | + | [DEBUG] PCI: 00:01.0 18 * [0xc1910000 - 0xc1910fff] limit: c1910fff mem | |
| 172 | + | [DEBUG] PCI: 00:02.0 10 * [0xc1911000 - 0xc1911fff] limit: c1911fff mem | |
| 173 | + | [DEBUG] PCI: 00:03.0 24 * [0xc1912000 - 0xc1912fff] limit: c1912fff mem | |
| 174 | + | [DEBUG] PCI: 00:1f.2 24 * [0xc1913000 - 0xc1913fff] limit: c1913fff mem | |
| 175 | + | [DEBUG] PCI: 00:02.0 24 * [0x180000000 - 0x18fffffff] limit: 18fffffff prefmem | |
| 176 | + | [DEBUG] DOMAIN: 0000 mem: base: 0 size: 0 align: 0 gran: 0 limit: ffffffffff done | |
| 177 | + | [DEBUG] PCI: 00:02.0 io: base: 1000 size: 2000 align: 12 gran: 12 limit: 2fff | |
| 178 | + | [INFO ] PCI: 00:02.0: Resource ranges: | |
| 179 | + | [INFO ] * Base: 1000, Size: 2000, Tag: 100 | |
| 180 | + | [DEBUG] NONE 18 * [0x1000 - 0x2fff] limit: 2fff io | |
| 181 | + | [DEBUG] PCI: 00:02.0 io: base: 1000 size: 2000 align: 12 gran: 12 limit: 2fff done | |
| 182 | + | [DEBUG] PCI: 00:02.0 prefmem: base: 180000000 size: 10000000 align: 20 gran: 20 limit: 18fffffff | |
| 183 | + | [INFO ] PCI: 00:02.0: Resource ranges: | |
| 184 | + | [INFO ] * Base: 180000000, Size: 10000000, Tag: 1200 | |
| 185 | + | [DEBUG] NONE 14 * [0x180000000 - 0x18fffffff] limit: 18fffffff prefmem | |
| 186 | + | [DEBUG] PCI: 00:02.0 prefmem: base: 180000000 size: 10000000 align: 20 gran: 20 limit: 18fffffff done | |
| 187 | + | [DEBUG] PCI: 00:02.0 mem: base: c1000000 size: 900000 align: 20 gran: 20 limit: c18fffff | |
| 188 | + | [INFO ] PCI: 00:02.0: Resource ranges: | |
| 189 | + | [INFO ] * Base: c1000000, Size: 900000, Tag: 200 | |
| 190 | + | [DEBUG] NONE 10 * [0xc1000000 - 0xc17fffff] limit: c17fffff mem | |
| 191 | + | [DEBUG] PCI: 01:00.0 10 * [0xc1800000 - 0xc18000ff] limit: c18000ff mem | |
| 192 | + | [DEBUG] PCI: 00:02.0 mem: base: c1000000 size: 900000 align: 20 gran: 20 limit: c18fffff done | |
| 193 | + | [INFO ] === Resource allocator: DOMAIN: 0000 - resource allocation complete === | |
| 194 | + | [DEBUG] PCI: 00:01.0 10 <- [0x00000000c0000000 - 0x00000000c0ffffff] size 0x01000000 gran 0x18 prefmem | |
| 195 | + | [DEBUG] PCI: 00:01.0 18 <- [0x00000000c1910000 - 0x00000000c1910fff] size 0x00001000 gran 0x0c mem | |
| 196 | + | [DEBUG] PCI: 00:01.0 30 <- [0x00000000c1900000 - 0x00000000c190ffff] size 0x00010000 gran 0x10 romem | |
| 197 | + | [DEBUG] PCI: 00:02.0 1c <- [0x0000000000001000 - 0x0000000000002fff] size 0x00002000 gran 0x0c bus 01 io | |
| 198 | + | [DEBUG] PCI: 00:02.0 24 <- [0x0000000180000000 - 0x000000018fffffff] size 0x10000000 gran 0x14 bus 01 prefmem | |
| 199 | + | [DEBUG] PCI: 00:02.0 20 <- [0x00000000c1000000 - 0x00000000c18fffff] size 0x00900000 gran 0x14 bus 01 mem | |
| 200 | + | [DEBUG] PCI: 00:02.0 10 <- [0x00000000c1911000 - 0x00000000c1911fff] size 0x00001000 gran 0x0c mem | |
| 201 | + | [DEBUG] PCI: 01:00.0 1c <- [0x000000000000ffff - 0x000000000000fffe] size 0x00000000 gran 0x0c bus 22 io | |
| 202 | + | [DEBUG] PCI: 01:00.0 24 <- [0xffffffffffffffff - 0xfffffffffffffffe] size 0x00000000 gran 0x14 bus 22 prefmem | |
| 203 | + | [DEBUG] PCI: 01:00.0 20 <- [0x00000000ffffffff - 0x00000000fffffffe] size 0x00000000 gran 0x14 bus 22 mem | |
| 204 | + | [DEBUG] PCI: 01:00.0 10 <- [0x00000000c1800000 - 0x00000000c18000ff] size 0x00000100 gran 0x08 mem64 | |
| 205 | + | [DEBUG] PCI: 00:03.0 20 <- [0x0000000000003000 - 0x000000000000301f] size 0x00000020 gran 0x05 io | |
| 206 | + | [DEBUG] PCI: 00:03.0 24 <- [0x00000000c1912000 - 0x00000000c1912fff] size 0x00001000 gran 0x0c mem | |
| 207 | + | [DEBUG] PCI: 00:1f.2 20 <- [0x0000000000003020 - 0x000000000000303f] size 0x00000020 gran 0x05 io | |
| 208 | + | [DEBUG] PCI: 00:1f.2 24 <- [0x00000000c1913000 - 0x00000000c1913fff] size 0x00001000 gran 0x0c mem | |
| 209 | + | [INFO ] Done setting resources. | |
| 210 | + | [INFO ] Done allocating resources. | |
| 211 | + | [DEBUG] BS: BS_DEV_RESOURCES run times (exec / console): 14 / 110 ms | |
| 212 | + | [INFO ] Enabling resources... | |
| 213 | + | [DEBUG] PCI: 00:00.0 cmd <- 00 | |
| 214 | + | [DEBUG] PCI: 00:01.0 cmd <- 03 | |
| 215 | + | [DEBUG] PCI: 00:02.0 bridge ctrl <- 0013 | |
| 216 | + | [DEBUG] PCI: 00:02.0 cmd <- 07 | |
| 217 | + | [DEBUG] PCI: 00:03.0 cmd <- 03 | |
| 218 | + | [DEBUG] PCI: 00:1f.0 subsystem <- 8086/2918 | |
| 219 | + | [DEBUG] PCI: 00:1f.0 cmd <- 100 | |
| 220 | + | [DEBUG] PCI: 00:1f.2 subsystem <- 8086/2922 | |
| 221 | + | [DEBUG] PCI: 00:1f.2 cmd <- 103 | |
| 222 | + | [DEBUG] PCI: 00:1f.3 subsystem <- 8086/2930 | |
| 223 | + | [DEBUG] PCI: 00:1f.3 cmd <- 101 | |
| 224 | + | [DEBUG] PCI: 01:00.0 bridge ctrl <- 0013 | |
| 225 | + | [DEBUG] PCI: 01:00.0 cmd <- 02 | |
| 226 | + | [INFO ] done. | |
| 227 | + | [DEBUG] BS: BS_DEV_ENABLE run times (exec / console): 2 / 10 ms | |
| 228 | + | [DEBUG] BS: BS_DEV_INIT entry times (exec / console): 2 / 0 ms | |
| 229 | + | [INFO ] Initializing devices... | |
| 230 | + | [DEBUG] CPU_CLUSTER: 0 init | |
| 231 | + | [DEBUG] Setting up SMI for CPU | |
| 232 | + | [DEBUG] Save state size: 0x200 bytes | |
| 233 | + | [INFO ] Will perform SMM setup. | |
| 234 | + | [INFO ] CPU: Intel Core Processor (Skylake). | |
| 235 | + | [INFO ] LAPIC 0x0 in XAPIC mode. | |
| 236 | + | [DEBUG] CPU: APIC: 00 enabled | |
| 237 | + | [DEBUG] Loading module at 0x00030000 with entry 0x00030000. filesize: 0x178 memsize: 0x178 | |
| 238 | + | [DEBUG] Processing 16 relocs. Offset value of 0x00030000 | |
| 239 | + | [DEBUG] Loading module at 0x00038000 with entry 0x00038000. filesize: 0x1e0 memsize: 0x1e0 | |
| 240 | + | [DEBUG] Processing 11 relocs. Offset value of 0x00038000 | |
| 241 | + | [DEBUG] smm_module_setup_stub: stack_top = 0xa0400 | |
| 242 | + | [DEBUG] smm_module_setup_stub: per cpu stack_size = 0x400 | |
| 243 | + | [DEBUG] smm_module_setup_stub: runtime.start32_offset = 0x4c | |
| 244 | + | [DEBUG] smm_module_setup_stub: runtime.smm_size = 0x10000 | |
| 245 | + | [DEBUG] SMM Module: stub loaded at 38000. Will call 0x7ffad5dd | |
| 246 | + | [DEBUG] Installing permanent SMM handler to 0x000a0000 | |
| 247 | + | [DEBUG] HANDLER [0xaf000-0xaf688] | |
| 248 | + | ||
| 249 | + | [DEBUG] CPU 0 | |
| 250 | + | [DEBUG] ss0 [0xaee00-0xaf000] | |
| 251 | + | [DEBUG] stub0 [0xa7000-0xa71e0] | |
| 252 | + | ||
| 253 | + | [DEBUG] stacks [0xa0000-0xa0400] | |
| 254 | + | [DEBUG] Loading module at 0x000af000 with entry 0x000af056. filesize: 0x678 memsize: 0x688 | |
| 255 | + | [DEBUG] Processing 27 relocs. Offset value of 0x000af000 | |
| 256 | + | [DEBUG] Loading module at 0x000a7000 with entry 0x000a7000. filesize: 0x1e0 memsize: 0x1e0 | |
| 257 | + | [DEBUG] Processing 11 relocs. Offset value of 0x000a7000 | |
| 258 | + | [DEBUG] smm_module_setup_stub: stack_top = 0xa0400 | |
| 259 | + | [DEBUG] smm_module_setup_stub: per cpu stack_size = 0x400 | |
| 260 | + | [DEBUG] smm_module_setup_stub: runtime.start32_offset = 0x4c | |
| 261 | + | [DEBUG] smm_module_setup_stub: runtime.smm_size = 0x10000 | |
| 262 | + | [DEBUG] SMM Module: stub loaded at a7000. Will call 0x000af056 | |
| 263 | + | [INFO ] smm_do_relocation : curr_smbase 0x30000 perm_smbase 0x9f000, cpu = 0 | |
| 264 | + | [DEBUG] In relocation handler: cpu 0 | |
| 265 | + | [DEBUG] SMM revision: 0x00020064 | |
| 266 | + | [DEBUG] New SMBASE=0x0009f000 | |
| 267 | + | [DEBUG] Relocation complete. | |
| 268 | + | [INFO ] Initializing CPU #0 | |
| 269 | + | [DEBUG] CPU: vendor Intel device 506e3 | |
| 270 | + | [DEBUG] CPU: family 06, model 5e, stepping 03 | |
| 271 | + | [INFO ] CPU #0 initialized | |
| 272 | + | [INFO ] bsp_do_flight_plan done after 23 msecs. | |
| 273 | + | [DEBUG] SMI_STS: | |
| 274 | + | [DEBUG] GPE0_STS: | |
| 275 | + | [DEBUG] ALT_GP_SMI_STS: GPI15 GPI14 GPI13 GPI12 GPI11 GPI10 GPI9 GPI8 GPI7 GPI6 GPI5 GPI4 GPI3 GPI2 GPI1 GPI0 | |
| 276 | + | [DEBUG] TCO_STS: | |
| 277 | + | [DEBUG] Locking SMM. | |
| 278 | + | [DEBUG] CPU_CLUSTER: 0 init finished in 33 msecs | |
| 279 | + | [DEBUG] PCI: 00:00.0 init | |
| 280 | + | [DEBUG] Assigning IRQ 11 to PCI: 00:02.0 | |
| 281 | + | [DEBUG] Assigning IRQ 11 to PCI: 00:03.0 | |
| 282 | + | [DEBUG] Assigning IRQ 10 to PCI: 00:1f.2 | |
| 283 | + | [DEBUG] Assigning IRQ 10 to PCI: 00:1f.3 | |
| 284 | + | [DEBUG] PCI: 00:00.0 init finished in 5 msecs | |
| 285 | + | [DEBUG] PCI: 00:01.0 init | |
| 286 | + | [DEBUG] QEMU VGA: Using legacy VGA | |
| 287 | + | [DEBUG] QEMU VGA: bochs dispi interface found, 16 MiB video memory | |
| 288 | + | [DEBUG] QEMU VGA: framebuffer @ c0000000 (pci bar 0) | |
| 289 | + | [INFO ] framebuffer_info: bytes_per_line: 4096, bits_per_pixel: 32 | |
| 290 | + | [INFO ] x_res x y_res: 1024 x 768, size: 3145728 at 0xc0000000 | |
| 291 | + | [DEBUG] PCI: 00:01.0 init finished in 5 msecs | |
| 292 | + | [DEBUG] PCI: 00:03.0 init | |
| 293 | + | [DEBUG] i82801ix_sata: initializing... | |
| 294 | + | [ERROR] i82801ix_sata: error: device not in devicetree.cb! | |
| 295 | + | [DEBUG] PCI: 00:03.0 init finished in 1 msecs | |
| 296 | + | [DEBUG] PCI: 00:1f.0 init | |
| 297 | + | [DEBUG] i82801ix: lpc_init | |
| 298 | + | [DEBUG] IOAPIC: Initializing IOAPIC at 0xfec00000 | |
| 299 | + | [DEBUG] IOAPIC: 24 interrupts | |
| 300 | + | [DEBUG] IOAPIC: Clearing IOAPIC at 0xfec00000 | |
| 301 | + | [DEBUG] IOAPIC: Bootstrap Processor Local APIC = 0x00 | |
| 302 | + | [INFO ] Set power on after power failure. | |
| 303 | + | [INFO ] NMI sources disabled. | |
| 304 | + | [DEBUG] rtc_failed = 0x0 | |
| 305 | + | [DEBUG] RTC Init | |
| 306 | + | [DEBUG] apm_control: Disabling ACPI. | |
| 307 | + | [DEBUG] APMC done. | |
| 308 | + | [DEBUG] PCI: 00:1f.0 init finished in 7 msecs | |
| 309 | + | [DEBUG] PCI: 00:1f.2 init | |
| 310 | + | [DEBUG] i82801ix_sata: initializing... | |
| 311 | + | [DEBUG] SATA controller in AHCI mode. | |
| 312 | + | [DEBUG] ABAR: 0xc1913000 | |
| 313 | + | [DEBUG] PCI: 00:1f.2 init finished in 2 msecs | |
| 314 | + | [DEBUG] PCI: 00:1f.3 init | |
| 315 | + | [DEBUG] PCI: 00:1f.3 init finished in 0 msecs | |
| 316 | + | [INFO ] Devices initialized | |
| 317 | + | [DEBUG] BS: BS_DEV_INIT run times (exec / console): 7 / 58 ms | |
| 318 | + | [INFO ] Finalize devices... | |
| 319 | + | [INFO ] Devices finalized | |
| 320 | + | [DEBUG] BS: BS_POST_DEVICE run times (exec / console): 0 / 1 ms | |
| 321 | + | [INFO ] QEMU: firmware config: Found 'etc/table-loader' | |
| 322 | + | [DEBUG] QEMU: found ACPI tables in fw_cfg. | |
| 323 | + | [INFO ] QEMU: firmware config: Found 'etc/acpi/rsdp' | |
| 324 | + | [DEBUG] QEMU: loading "etc/acpi/rsdp" to 0x7ff5d000 (len 20) | |
| 325 | + | [INFO ] QEMU: firmware config: Found 'etc/acpi/tables' | |
| 326 | + | [DEBUG] QEMU: loading "etc/acpi/tables" to 0x7ff5d040 (len 131072) | |
| 327 | + | [DEBUG] QEMU: loaded ACPI tables from fw_cfg. | |
| 328 | + | [DEBUG] Looking on 0x7ff5d000 for valid checksum | |
| 329 | + | [DEBUG] Checksum 1 passed | |
| 330 | + | [DEBUG] Checksum 2 passed all OK | |
| 331 | + | [DEBUG] ACPI: * SSDT | |
| 332 | + | [DEBUG] Generating ACPI PIRQ entries | |
| 333 | + | [DEBUG] ACPI: added table 6/32, length now 60 | |
| 334 | + | [DEBUG] ACPI tables: 131136 bytes. | |
| 335 | + | [DEBUG] smbios_write_tables: 7ff55000 | |
| 336 | + | [DEBUG] SMBIOS firmware version is set to coreboot_version: '2024-01-18_3e19b73' | |
| 337 | + | [DEBUG] SMBIOS: Unknown CPU or CPU doesn't support Deterministic Cache CPUID leaf | |
| 338 | + | [INFO ] DOMAIN: 0000 (QEMU Northbridge q35) | |
| 339 | + | [INFO ] QEMU: firmware config: Found 'etc/smbios/smbios-tables' | |
| 340 | + | [DEBUG] QEMU: found smbios tables in fw_cfg (len 342). | |
| 341 | + | [DEBUG] QEMU: coreboot type0 table found at 0x7ff55040. | |
| 342 | + | [DEBUG] QEMU: loading smbios tables to 0x7ff55082 | |
| 343 | + | [DEBUG] SMBIOS tables: 500 bytes. | |
| 344 | + | [DEBUG] Writing table forward entry at 0x00000500 | |
| 345 | + | [DEBUG] Wrote coreboot table at: 0x00000500, 0x10 bytes, checksum 2fe5 | |
| 346 | + | [DEBUG] Writing coreboot table at 0x7ff95000 | |
| 347 | + | [DEBUG] 0. 0000000000000000-0000000000000fff: CONFIGURATION TABLES | |
| 348 | + | [DEBUG] 1. 0000000000001000-000000000009ffff: RAM | |
| 349 | + | [DEBUG] 2. 00000000000a0000-00000000000fffff: RESERVED | |
| 350 | + | [DEBUG] 3. 0000000000100000-000000007ff54fff: RAM | |
| 351 | + | [DEBUG] 4. 000000007ff55000-000000007ff9dfff: CONFIGURATION TABLES | |
| 352 | + | [DEBUG] 5. 000000007ff9e000-000000007ffcffff: RAMSTAGE | |
| 353 | + | [DEBUG] 6. 000000007ffd0000-000000007fffffff: CONFIGURATION TABLES | |
| 354 | + | [DEBUG] 7. 00000000b0000000-00000000bfffffff: RESERVED | |
| 355 | + | [DEBUG] 8. 0000000100000000-000000017fffffff: RAM | |
| 356 | + | [DEBUG] FMAP: area COREBOOT found @ 200 (8388096 bytes) | |
| 357 | + | [DEBUG] Wrote coreboot table at: 0x7ff95000, 0x318 bytes, checksum ec2c | |
| 358 | + | [DEBUG] coreboot table: 816 bytes. | |
| 359 | + | [DEBUG] IMD ROOT 0. 0x7ffff000 0x00001000 | |
| 360 | + | [DEBUG] IMD SMALL 1. 0x7fffe000 0x00001000 | |
| 361 | + | [DEBUG] CONSOLE 2. 0x7ffde000 0x00020000 | |
| 362 | + | [DEBUG] TIME STAMP 3. 0x7ffdd000 0x00000910 | |
| 363 | + | [DEBUG] AFTER CAR 4. 0x7ffd0000 0x0000d000 | |
| 364 | + | [DEBUG] RAMSTAGE 5. 0x7ff9d000 0x00033000 | |
| 365 | + | [DEBUG] COREBOOT 6. 0x7ff95000 0x00008000 | |
| 366 | + | [DEBUG] ACPI 7. 0x7ff5d000 0x00038000 | |
| 367 | + | [DEBUG] SMBIOS 8. 0x7ff55000 0x00008000 | |
| 368 | + | [DEBUG] IMD small region: | |
| 369 | + | [DEBUG] IMD ROOT 0. 0x7fffec00 0x00000400 | |
| 370 | + | [DEBUG] RO MCACHE 1. 0x7fffe940 0x000002ac | |
| 371 | + | [DEBUG] FMAP 2. 0x7fffe880 0x000000b6 | |
| 372 | + | [DEBUG] ROMSTG STCK 3. 0x7fffe7e0 0x00000088 | |
| 373 | + | [DEBUG] ACPI GNVS 4. 0x7fffe6e0 0x00000100 | |
| 374 | + | [DEBUG] BS: BS_WRITE_TABLES run times (exec / console): 4 / 48 ms | |
| 375 | + | [INFO ] CBFS: Found 'fallback/payload' @0x26540 size 0x101562 in mcache @0x7fffeb7c | |
| 376 | + | [DEBUG] Checking segment from ROM address 0xff82676c | |
| 377 | + | [DEBUG] Checking segment from ROM address 0xff826788 | |
| 378 | + | [DEBUG] Loading segment from ROM address 0xff82676c | |
| 379 | + | [DEBUG] code (compression=1) | |
| 380 | + | [DEBUG] New segment dstaddr 0x00800000 memsize 0x800000 srcaddr 0xff8267a4 filesize 0x10152a | |
| 381 | + | [DEBUG] Loading Segment: addr: 0x00800000 memsz: 0x0000000000800000 filesz: 0x000000000010152a | |
| 382 | + | [DEBUG] using LZMA | |
| 383 | + | [DEBUG] Loading segment from ROM address 0xff826788 | |
| 384 | + | [DEBUG] Entry Point 0x008033c0 | |
| 385 | + | [DEBUG] BS: BS_PAYLOAD_LOAD run times (exec / console): 83 / 9 ms | |
| 386 | + | [DEBUG] ICH-NM10-PCH: watchdog disabled | |
| 387 | + | [DEBUG] Jumping to boot code at 0x008033c0(0x7ff95000) | |
| 388 | + | !!!! X64 Exception Type - 06(#UD - Invalid Opcode) CPU Apic ID - 00000000 !!!! | |
| 389 | + | RIP - 000000007FD1C000, CS - 0000000000000038, RFLAGS - 0000000000010082 | |
| 390 | + | RAX - 000000017F812298, RCX - 000000007FF53018, RDX - 000000003FFFC000 | |
| 391 | + | RBX - 000000017F2A71F0, RSP - 0000000002FE4588, RBP - 0000000002FE45B0 | |
| 392 | + | RSI - 000000007FF53018, RDI - 000000017F812298 | |
| 393 | + | R8 - 000000007B455590, R9 - 0000000000001000, R10 - 0000000000000005 | |
| 394 | + | R11 - 0000000000000000, R12 - 0000000000000000, R13 - 000000017F96C740 | |
| 395 | + | R14 - 000000017F96A80E, R15 - 0000000000000000 | |
| 396 | + | DS - 0000000000000030, ES - 0000000000000030, FS - 0000000000000030 | |
| 397 | + | GS - 0000000000000030, SS - 0000000000000030 | |
| 398 | + | CR0 - 0000000080010011, CR2 - 0000000000000000, CR3 - 0000000002801000 | |
| 399 | + | CR4 - 0000000000000228, CR8 - 0000000000000000 | |
| 400 | + | DR0 - 0000000000000000, DR1 - 0000000000000000, DR2 - 0000000000000000 | |
| 401 | + | DR3 - 0000000000000000, DR6 - 00000000FFFF0FF0, DR7 - 00000000000F0400 | |
| 402 | + | GDTR - 000000007FF4E000 0000000000000047, LDTR - 0000000000000000 | |
| 403 | + | IDTR - 000000017FB69018 0000000000000FFF, TR - 0000000000000000 | |
| 404 | + | FXSAVE_STATE - 0000000002FE41E0 | |
| 405 | + | !!!! Can't find image information. !!!! | |
| 406 | + | qemu-system-x86_64: terminating on signal 2 | |