]> xenbits.xensource.com Git - xen.git/commitdiff
x86/Intel: insert Ice Lake and Comet Lake model numbers
authorJan Beulich <jbeulich@suse.com>
Wed, 24 Jun 2020 15:16:30 +0000 (17:16 +0200)
committerJan Beulich <jbeulich@suse.com>
Wed, 24 Jun 2020 15:16:30 +0000 (17:16 +0200)
Both match prior generation processors as far as LBR and C-state MSRs
go (SDM rev 072) as well as applicability of the if_pschange_mc erratum
(recent spec updates).

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
master commit: 1fe406685cb19e9544681c6243e7d376deb0297e
master date: 2020-06-09 12:55:53 +0200

xen/arch/x86/acpi/cpu_idle.c
xen/arch/x86/hvm/vmx/vmx.c

index 4ff8693ae65dfc8368b978d51f019a0cb96c93fd..99e75c1d7e51146e36fff12479f2d8f76fdd6d37 100644 (file)
@@ -165,9 +165,15 @@ static void do_get_hw_residencies(void *arg)
     case 0x4E:
     case 0x55:
     case 0x5E:
+    /* Ice Lake */
+    case 0x7D:
+    case 0x7E:
     /* Kaby Lake */
     case 0x8E:
     case 0x9E:
+    /* Comet Lake */
+    case 0xA5:
+    case 0xA6:
         GET_PC2_RES(hw_res->pc2);
         GET_CC7_RES(hw_res->cc7);
         /* fall through */
index 7d29065d0ba15ebbb5731fe3ac414c4ccc00652f..662c3988dd48961caf907fcce135d0fb38407f19 100644 (file)
@@ -2507,8 +2507,12 @@ static bool __init has_if_pschange_mc(void)
     case 0x4e: /* Skylake M */
     case 0x5e: /* Skylake D */
     case 0x55: /* Skylake-X / Cascade Lake */
+    case 0x7d: /* Ice Lake */
+    case 0x7e: /* Ice Lake */
     case 0x8e: /* Kaby / Coffee / Whiskey Lake M */
     case 0x9e: /* Kaby / Coffee / Whiskey Lake D */
+    case 0xa5: /* Comet Lake H/S */
+    case 0xa6: /* Comet Lake U */
         return true;
 
         /*
@@ -2878,8 +2882,12 @@ static const struct lbr_info *last_branch_msr_get(void)
         case 0x66:
         /* Goldmont Plus */
         case 0x7a:
+        /* Ice Lake */
+        case 0x7d: case 0x7e:
         /* Kaby Lake */
         case 0x8e: case 0x9e:
+        /* Comet Lake */
+        case 0xa5: case 0xa6:
             return sk_lbr;
         /* Atom */
         case 0x1c: case 0x26: case 0x27: case 0x35: case 0x36: