From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hoan Tran Subject: Re: [PATCH] ACPI: CPPC: Support PCC with interrupt flag Date: Wed, 14 Sep 2016 08:45:14 -0700 Message-ID: References: <1469135265-27048-1-git-send-email-hotran@apm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from mail-yw0-f180.google.com ([209.85.161.180]:35827 "EHLO mail-yw0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754710AbcINPp0 (ORCPT ); Wed, 14 Sep 2016 11:45:26 -0400 Received: by mail-yw0-f180.google.com with SMTP id u82so24646300ywc.2 for ; Wed, 14 Sep 2016 08:45:26 -0700 (PDT) In-Reply-To: Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: "Rafael J. Wysocki" , Len Brown , Prashanth Prakash , Ashwin Chaugule Cc: linux acpi , lkml , Loc Ho , Duc Dang , Hoan Tran , Ashwin Chaugule On Tue, Aug 30, 2016 at 11:20 AM, Hoan Tran wrote: > On Thu, Jul 21, 2016 at 2:07 PM, Hoan Tran wrote: >> For PCC mailbox with interrupt flag, CPPC should call mbox_chan_txdone() >> function to notify the mailbox framework about TX completion. >> >> Signed-off-by: Hoan Tran >> --- >> This patch is tested on top and depends on patch[1]: >> [1] http://www.spinics.net/lists/linux-acpi/msg66041.html >> - [PATCH v3] mailbox: pcc: Support HW-Reduced Communication Subspace type 2 >> >> drivers/acpi/cppc_acpi.c | 6 +++++- >> 1 file changed, 5 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/acpi/cppc_acpi.c b/drivers/acpi/cppc_acpi.c >> index 2e98173..19606aa 100644 >> --- a/drivers/acpi/cppc_acpi.c >> +++ b/drivers/acpi/cppc_acpi.c >> @@ -191,7 +191,11 @@ static int send_pcc_cmd(u16 cmd) >> last_cmd_cmpl_time = ktime_get(); >> } >> >> - mbox_client_txdone(pcc_channel, ret); >> + if (pcc_channel->mbox->txdone_irq) >> + mbox_chan_txdone(pcc_channel, ret); >> + else >> + mbox_client_txdone(pcc_channel, ret); >> + >> return ret; >> } >> >> -- >> 1.9.1 >> > > Any feedbacks. > > Thanks > Hoan Hi Rafael, Do you have any comments on this patch ? Thanks Hoan