[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[xen stable-4.19] x86/mwait-idle: Add AlderLake-N support



commit 58ea87346cb9903af8063f484b1647b66237be24
Author:     Zhang Rui <rui.zhang@xxxxxxxxx>
AuthorDate: Tue Jul 22 09:56:56 2025 +0200
Commit:     Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Tue Jul 22 09:56:56 2025 +0200

    x86/mwait-idle: Add AlderLake-N support
    
    Similar to the other other AlderLake platforms, the C1 and C1E states on
    ADL-N are mutually exclusive. Only one of them can be enabled at a time.
    
    C1E is preferred on ADL-N for better energy efficiency.
    
    C6S is also supported on this platform. Its latency is far bigger than
    C6, but really close to C8 (PC8), thus it is not exposed as a separate
    state.
    
    Suggested-by: Baieswara Reddy Sagili <baieswara.reddy.sagili@xxxxxxxxx>
    Suggested-by: Vinay Kumar <vinay.kumar@xxxxxxxxx>
    Signed-off-by: Zhang Rui <rui.zhang@xxxxxxxxx>
    [ rjw: Changelog edits ]
    Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx>
    Origin: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 
65c0c2367e9e
    
    x86/cpu: Fix Gracemont uarch
    
    Alderlake N is an E-core only product using Gracemont
    micro-architecture. It fits the pre-existing naming scheme perfectly
    fine, adhere to it.
    
    Signed-off-by: Peter Zijlstra (Intel) <peterz@xxxxxxxxxxxxx>
    Acked-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx>
    Acked-by: Hans de Goede <hdegoede@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20230807150405.686834933@xxxxxxxxxxxxx
    Origin: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 
882cdb06b668
    
    Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
    Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
    master commit: 51b956f336fdbe17c2879965f4ced51725e308ad
    master date: 2025-07-09 11:00:16 +0200
---
 xen/arch/x86/cpu/mwait-idle.c | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/xen/arch/x86/cpu/mwait-idle.c b/xen/arch/x86/cpu/mwait-idle.c
index 3c63f0d45a..666da81d59 100644
--- a/xen/arch/x86/cpu/mwait-idle.c
+++ b/xen/arch/x86/cpu/mwait-idle.c
@@ -678,6 +678,40 @@ static struct cpuidle_state __read_mostly adl_l_cstates[] 
= {
        {}
 };
 
+static const struct cpuidle_state gmt_cstates[] = {
+       {
+               .name = "C1",
+               .flags = MWAIT2flg(0x00) | CPUIDLE_FLAG_DISABLED,
+               .exit_latency = 1,
+               .target_residency = 1,
+       },
+       {
+               .name = "C1E",
+               .flags = MWAIT2flg(0x01),
+               .exit_latency = 2,
+               .target_residency = 4,
+       },
+       {
+               .name = "C6",
+               .flags = MWAIT2flg(0x20) | CPUIDLE_FLAG_TLB_FLUSHED,
+               .exit_latency = 195,
+               .target_residency = 585,
+       },
+       {
+               .name = "C8",
+               .flags = MWAIT2flg(0x40) | CPUIDLE_FLAG_TLB_FLUSHED,
+               .exit_latency = 260,
+               .target_residency = 1040,
+       },
+       {
+               .name = "C10",
+               .flags = MWAIT2flg(0x60) | CPUIDLE_FLAG_TLB_FLUSHED,
+               .exit_latency = 660,
+               .target_residency = 1980,
+       },
+       {}
+};
+
 static struct cpuidle_state __read_mostly spr_cstates[] = {
        {
                .name = "C1",
@@ -1099,6 +1133,10 @@ static struct idle_cpu __read_mostly idle_cpu_adl_l = {
        .state_table = adl_l_cstates,
 };
 
+static const struct idle_cpu idle_cpu_gmt = {
+       .state_table = gmt_cstates,
+};
+
 static struct idle_cpu __read_mostly idle_cpu_spr = {
        .state_table = spr_cstates,
        .c1e_promotion = C1E_PROMOTION_DISABLE,
@@ -1168,6 +1206,7 @@ static const struct x86_cpu_id intel_idle_ids[] 
__initconstrel = {
        ICPU(ICELAKE_D,                 icx),
        ICPU(ALDERLAKE,                 adl),
        ICPU(ALDERLAKE_L,               adl_l),
+       ICPU(ATOM_GRACEMONT,            gmt),
        ICPU(SAPPHIRERAPIDS_X,          spr),
        ICPU(XEON_PHI_KNL,              knl),
        ICPU(XEON_PHI_KNM,              knl),
@@ -1408,6 +1447,7 @@ static void __init mwait_idle_state_table_update(void)
                break;
        case INTEL_FAM6_ALDERLAKE:
        case INTEL_FAM6_ALDERLAKE_L:
+       case INTEL_FAM6_ATOM_GRACEMONT:
                adl_idle_state_table_update();
                break;
        }
--
generated by git-patchbot for /home/xen/git/xen.git#stable-4.19



 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.