From patchwork Fri Apr 10 06:35:51 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chenyi Qiang X-Patchwork-Id: 1268972 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=nongnu.org (client-ip=209.51.188.17; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=intel.com Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48z7Yf6FGqz9sSX for ; Fri, 10 Apr 2020 16:35:34 +1000 (AEST) Received: from localhost ([::1]:59138 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jMnGG-0007OW-IZ for incoming@patchwork.ozlabs.org; Fri, 10 Apr 2020 02:35:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:34121) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jMnFb-0007HN-1j for qemu-devel@nongnu.org; Fri, 10 Apr 2020 02:34:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jMnFZ-0007CN-Ec for qemu-devel@nongnu.org; Fri, 10 Apr 2020 02:34:50 -0400 Received: from mga07.intel.com ([134.134.136.100]:42751) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jMnFZ-00079l-6s for qemu-devel@nongnu.org; Fri, 10 Apr 2020 02:34:49 -0400 IronPort-SDR: Vpmc5vvRkyttxEGS6muNL7hnyjmuRexyVJFVeKyRIJ4vNYAOZ8tKrSQPP+lsMFzqo3mri5ucMG S6fIWBlRCwuQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Apr 2020 23:34:39 -0700 IronPort-SDR: Ldt3E0A4b8sPN0It9l5AtCJrQbNhOF+OPSKWC+fUxWZuIPsnb5U6/qXVAUkCoZ33Nz4w4jNWfH F9SZq9W5rHqg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.72,364,1580803200"; d="scan'208";a="425800255" Received: from chenyi-pc.sh.intel.com ([10.239.159.72]) by orsmga005.jf.intel.com with ESMTP; 09 Apr 2020 23:34:37 -0700 From: Chenyi Qiang To: Paolo Bonzini , Richard Henderson , Eduardo Habkost Subject: [PATCH v3 0/4] modify CPU model info Date: Fri, 10 Apr 2020 14:35:51 +0800 Message-Id: <20200410063555.2309-1-chenyi.qiang@intel.com> X-Mailer: git-send-email 2.17.1 X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x [fuzzy] X-Received-From: 134.134.136.100 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Xiaoyao Li , qemu-devel@nongnu.org, Robert Hoo Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Add the missing VMX features in Skylake-Server, Cascadelake-Server and Icelake-Server CPU models. In Icelake-Server CPU model, it lacks sha_ni, avx512ifma, rdpid and fsrm. The model number of Icelake-Server also needs to be fixed. The modification on Icelake-Client CPU model will be gathered and sent in anothor patch set. Changes in v3: - remove the modification on Icelake-Client model number - change the missing features of Icelake-Server from v3 to v4 Changes in v2: - add missing features as a new version of CPU model - add the support of FSRM - add New CPUID of FSRM and RDPID in Icelake-Server CPU model Chenyi Qiang (4): target/i386: add missing vmx features for several CPU models target/i386: add fast short REP MOV support target/i386: add the missing features for Icelake-Server CPU model target/i386: modify Icelake-Server CPU model number target/i386/cpu.c | 20 +++++++++++++++++--- target/i386/cpu.h | 2 ++ 2 files changed, 19 insertions(+), 3 deletions(-)