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

[xen stable-4.20] x86/mwait-idle: add Grand Ridge SoC support



commit a4dd64ea815593135b8152e8d46936ec36c75275
Author:     Artem Bityutskiy <artem.bityutskiy@xxxxxxxxxxxxxxx>
AuthorDate: Tue Jul 22 09:51:20 2025 +0200
Commit:     Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Tue Jul 22 09:51:20 2025 +0200

    x86/mwait-idle: add Grand Ridge SoC support
    
    Add Intel Grand Ridge SoC C-states, which are C1, C1E, and C6S.
    
    The Grand Ridge SoC is built with modules, each module includes 4 cores
    (Crestmont microarchitecture). There is one L2 cache per module, shared
    between the 4 cores.
    
    There is no core C6 state, but there is C6S state, which has module
    scope: when all 4 cores request C6S, the entire module (4 cores + L2
    cache) enters the low power state.
    
    Package C6 is not supported by Grand Ridge SoC.
    
    Signed-off-by: Artem Bityutskiy <artem.bityutskiy@xxxxxxxxxxxxxxx>
    Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx>
    Origin: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 
ac89d11b93cc
    Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
    Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
    master commit: a514b5499239d9b2b545333a1d5310c1641f3f47
    master date: 2025-07-09 11:01:34 +0200
---
 xen/arch/x86/cpu/mwait-idle.c | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/xen/arch/x86/cpu/mwait-idle.c b/xen/arch/x86/cpu/mwait-idle.c
index 0e1d1a0074..77423483e7 100644
--- a/xen/arch/x86/cpu/mwait-idle.c
+++ b/xen/arch/x86/cpu/mwait-idle.c
@@ -928,6 +928,28 @@ static const struct cpuidle_state snr_cstates[] = {
        {}
 };
 
+static const struct cpuidle_state grr_cstates[] = {
+       {
+               .name = "C1",
+               .flags = MWAIT2flg(0x00),
+               .exit_latency = 1,
+               .target_residency = 1,
+       },
+       {
+               .name = "C1E",
+               .flags = MWAIT2flg(0x01),
+               .exit_latency = 2,
+               .target_residency = 10,
+       },
+       {
+               .name = "C6S",
+               .flags = MWAIT2flg(0x22) | CPUIDLE_FLAG_TLB_FLUSHED,
+               .exit_latency = 140,
+               .target_residency = 500,
+       },
+       {}
+};
+
 static void cf_check mwait_idle(void)
 {
        unsigned int cpu = smp_processor_id();
@@ -1172,6 +1194,11 @@ static const struct idle_cpu idle_cpu_snr = {
        .c1e_promotion = C1E_PROMOTION_DISABLE,
 };
 
+static const struct idle_cpu idle_cpu_grr = {
+       .state_table = grr_cstates,
+       .c1e_promotion = C1E_PROMOTION_DISABLE,
+};
+
 #define ICPU(model, cpu) \
        { X86_VENDOR_INTEL, 6, INTEL_FAM6_ ## model, X86_FEATURE_ALWAYS, \
          &idle_cpu_ ## cpu}
@@ -1220,6 +1247,7 @@ static const struct x86_cpu_id intel_idle_ids[] 
__initconstrel = {
        ICPU(ATOM_GOLDMONT_PLUS,        bxt),
        ICPU(ATOM_GOLDMONT_D,           dnv),
        ICPU(ATOM_TREMONT_D,            snr),
+       ICPU(ATOM_CRESTMONT,            grr),
        {}
 };
 
--
generated by git-patchbot for /home/xen/git/xen.git#stable-4.20



 


Rackspace

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