From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fYBkN-0005M4-M9 for qemu-devel@nongnu.org; Wed, 27 Jun 2018 10:48:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fYBkM-0004uq-B1 for qemu-devel@nongnu.org; Wed, 27 Jun 2018 10:48:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38886) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fYBkM-0004uF-3T for qemu-devel@nongnu.org; Wed, 27 Jun 2018 10:48:38 -0400 Date: Wed, 27 Jun 2018 11:48:34 -0300 From: Eduardo Habkost Message-ID: <20180627144834.GA20218@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170815170051.127257-1-brijesh.singh@amd.com> Subject: [Qemu-devel] MSRC001_102C on EPYC (was Re: [PATCH v3] target-i386/cpu: Add new EPYC CPU model) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Brijesh Singh , Babu Moger Cc: qemu-devel@nongnu.org, Paolo Bonzini , Tom Lendacky , Richard Henderson , "Daniel P. Berrange" , Jon Masters Hi, On Tue, Aug 15, 2017 at 12:00:51PM -0500, Brijesh Singh wrote: > Add a new base CPU model called 'EPYC' to model processors from AMD EPYC > family (which includes EPYC 76xx,75xx,74xx, 73xx and 72xx). > > The following features bits have been added/removed compare to Opteron_G5 > > Added: monitor, movbe, rdrand, mmxext, ffxsr, rdtscp, cr8legacy, osvw, > fsgsbase, bmi1, avx2, smep, bmi2, rdseed, adx, smap, clfshopt, sha > xsaveopt, xsavec, xgetbv1, arat > > Removed: xop, fma4, tbm > [...] > + { > + .name = "EPYC", > + .level = 0xd, > + .vendor = CPUID_VENDOR_AMD, > + .family = 23, > + .model = 1, > + .stepping = 2, These f/m/s values trigger model-specific code in Windows 10 guests[1], and I couldn't find any public information that allow us to fix the problem. Windows 10 tries to set bit 15 of MSRC001_102C, in code that looks like workarounds for CPU Erratas. I found a Revision Guide for family 17h[2], but it has no mention of MSRC001_102C at all. Can AMD help us fix this? If we are unable to fix it, I plan to work around it by changing EPYC's family/model/stepping to the values in Opteron_G5 on QEMU 3.0. [1] Details can be seen at: https://bugzilla.redhat.com/show_bug.cgi?id=1592276 https://bugzilla.redhat.com/show_bug.cgi?id=1593190#c12 [2] https://developer.amd.com/wp-content/resources/55449_1.12.pdf -- Eduardo