pc.c (b5ab62b3c0050612c7f9b0b4baeb44ebab42775a) pc.c (6ce12bd29777d41afef859652eaa62b5c964d3f7)
1/*
2 * QEMU PC System Emulator
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 68 unchanged lines hidden (view full) ---

77#define PC_CPU_MODEL_IDS(v) \
78 { "qemu32-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\
79 { "qemu64-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\
80 { "athlon-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },
81
82GlobalProperty pc_compat_9_1[] = {
83 { "ICH9-LPC", "x-smi-swsmi-timer", "off" },
84 { "ICH9-LPC", "x-smi-periodic-timer", "off" },
1/*
2 * QEMU PC System Emulator
3 *
4 * Copyright (c) 2003-2004 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 68 unchanged lines hidden (view full) ---

77#define PC_CPU_MODEL_IDS(v) \
78 { "qemu32-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\
79 { "qemu64-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\
80 { "athlon-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },
81
82GlobalProperty pc_compat_9_1[] = {
83 { "ICH9-LPC", "x-smi-swsmi-timer", "off" },
84 { "ICH9-LPC", "x-smi-periodic-timer", "off" },
85 { TYPE_INTEL_IOMMU_DEVICE, "stale-tm", "on" },
85};
86const size_t pc_compat_9_1_len = G_N_ELEMENTS(pc_compat_9_1);
87
88GlobalProperty pc_compat_9_0[] = {
89 { TYPE_X86_CPU, "x-amd-topoext-features-only", "false" },
90 { TYPE_X86_CPU, "x-l1-cache-per-thread", "false" },
91 { TYPE_X86_CPU, "guest-phys-bits", "0" },
92 { "sev-guest", "legacy-vm-type", "on" },

--- 1777 unchanged lines hidden ---
86};
87const size_t pc_compat_9_1_len = G_N_ELEMENTS(pc_compat_9_1);
88
89GlobalProperty pc_compat_9_0[] = {
90 { TYPE_X86_CPU, "x-amd-topoext-features-only", "false" },
91 { TYPE_X86_CPU, "x-l1-cache-per-thread", "false" },
92 { TYPE_X86_CPU, "guest-phys-bits", "0" },
93 { "sev-guest", "legacy-vm-type", "on" },

--- 1777 unchanged lines hidden ---