All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86: Use deep C states for off-lined CPUs
@ 2012-02-28 22:08 Boris Ostrovsky
  2012-02-29  1:37 ` Zhang, Yang Z
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Boris Ostrovsky @ 2012-02-28 22:08 UTC (permalink / raw)
  To: xen-devel; +Cc: boris.ostrovsky

# HG changeset patch
# User Boris Ostrovsky <boris.ostrovsky@amd.com>
# Date 1330466573 -3600
# Node ID 9e5991ad9c85b5176ce269001e7957e8805dd93c
# Parent  a7bacdc5449a2f7bb9c35b2a1334b463fe9f29a9
x86: Use deep C states for off-lined CPUs

Currently when a core is taken off-line it is placed in C1 state (unless MONITOR/MWAIT
is used). This patch allows a core to go to deeper C states resulting in significantly
higher power savings.

Signed-off-by: Boris Ostrovsky <boris.ostrovsky@amd.com>

diff -r a7bacdc5449a -r 9e5991ad9c85 xen/arch/x86/acpi/cpu_idle.c
--- a/xen/arch/x86/acpi/cpu_idle.c	Mon Feb 27 17:05:18 2012 +0000
+++ b/xen/arch/x86/acpi/cpu_idle.c	Tue Feb 28 23:02:53 2012 +0100
@@ -573,10 +573,10 @@ static void acpi_dead_idle(void)
     if ( (cx = &power->states[power->count-1]) == NULL )
         goto default_halt;
 
-    mwait_ptr = (void *)&mwait_wakeup(smp_processor_id());
-
     if ( cx->entry_method == ACPI_CSTATE_EM_FFH )
     {
+        mwait_ptr = (void *)&mwait_wakeup(smp_processor_id());
+
         /*
          * Cache must be flushed as the last operation before sleeping.
          * Otherwise, CPU may still hold dirty data, breaking cache coherency,
@@ -601,6 +601,20 @@ static void acpi_dead_idle(void)
             mb();
             __mwait(cx->address, 0);
         }
+    } 
+    else if ( cx->entry_method == ACPI_CSTATE_EM_SYSIO )
+    {
+        /* Avoid references to shared data after the cache flush */
+        u32 address = cx->address;
+        u32 pmtmr_ioport_local = pmtmr_ioport;
+
+        wbinvd();	
+
+        while ( 1 )
+        {
+            inb(address);
+            inl(pmtmr_ioport_local);
+        }
     }
 
 default_halt:

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2012-03-01  8:10 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-28 22:08 [PATCH] x86: Use deep C states for off-lined CPUs Boris Ostrovsky
2012-02-29  1:37 ` Zhang, Yang Z
2012-02-29  4:03   ` Ostrovsky, Boris
2012-02-29  5:21     ` Liu, Jinsong
2012-02-29 14:55       ` Boris Ostrovsky
2012-02-29 15:03         ` Jan Beulich
2012-03-01  8:10         ` Liu, Jinsong
2012-02-29  4:58 ` Liu, Jinsong
2012-02-29 13:48   ` Boris Ostrovsky
2012-03-01  7:29     ` Liu, Jinsong
2012-02-29  9:12 ` Jan Beulich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.