From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751869AbeAENaQ convert rfc822-to-8bit (ORCPT + 1 other); Fri, 5 Jan 2018 08:30:16 -0500 Received: from cloudserver094114.home.pl ([79.96.170.134]:64645 "EHLO cloudserver094114.home.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751230AbeAENaO (ORCPT ); Fri, 5 Jan 2018 08:30:14 -0500 From: "Rafael J. Wysocki" To: TimGuo Cc: tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com, mingo@kernel.org, x86@kernel.org, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, brucechang@via-alliance.com, cooperyan@zhaoxin.com, qiyuanwang@zhaoxin.com, benjaminpan@viatech.com Subject: Re: [PATCH] x86/acpi/cstate delete some unuseful operations Date: Fri, 05 Jan 2018 14:29:05 +0100 Message-ID: <2688053.9MAEhVZnSn@aspire.rjw.lan> In-Reply-To: <1513943704-4117-1-git-send-email-timguo@zhaoxin.com> References: <1513943704-4117-1-git-send-email-timguo@zhaoxin.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8BIT Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Friday, December 22, 2017 12:55:04 PM CET TimGuo wrote: > Unuseful cache flush operations which will be executed by ucode when entering C3 will > cause larger C3 enter latency. And the bus master disable operation is not need for > centaur platforms. My attempts to make some sense of the above hoplessly failed. :-/ I understood that it was not necessary to disable bus master arbitration on C3 entry for Centaur CPUs, which is why you clear bm_control, right? And the goal is to reduce the C3 latency, but I'm not sure about the cache flushing part. Do you want to say that disabling bus master arbitration causes the CPU caches to be flushed which is time-consuming and should better be avoided if not necessary? > Signed-off-by: TimGuo > --- > arch/x86/kernel/acpi/cstate.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/arch/x86/kernel/acpi/cstate.c b/arch/x86/kernel/acpi/cstate.c > index dde437f..3eee490 100644 > --- a/arch/x86/kernel/acpi/cstate.c > +++ b/arch/x86/kernel/acpi/cstate.c > @@ -51,6 +51,18 @@ void acpi_processor_power_init_bm_check(struct acpi_processor_flags *flags, > if (c->x86_vendor == X86_VENDOR_INTEL && > (c->x86 > 0xf || (c->x86 == 6 && c->x86_model >= 0x0f))) > flags->bm_control = 0; > + > + if (c->x86_vendor == X86_VENDOR_CENTAUR) { > + /* > + * on all centaur CPUs, sw need not execute cache flush operation > + * when entering C3 type state. > + * > + * On all Centaur platforms, ARB_DISABLE is not required while > + * entering C3 type state. > + */ > + flags->bm_check = 1; > + flags->bm_control = 0; > + } > } > EXPORT_SYMBOL(acpi_processor_power_init_bm_check); > > -- > 1.9.1 > > > > 保密声明: > 本邮件含有保密或专有信息,仅供指定收件人使用。严禁对本邮件或其内容做任何未经授权的查阅、使用、复制或转发。 > CONFIDENTIAL NOTE: > This email contains confidential or legally privileged information and is for the sole use of its intended recipient. Any unauthorized review, use, copying or forwarding of this email or the content of this email is strictly prohibited. >