Skip to content

Commit

Permalink
ACPI / CPPC: Support PCC with interrupt flag
Browse files Browse the repository at this point in the history
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 <hotran@apm.com>
Reviewed-by: Prashanth Prakash <pprakash@codeaurora.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Hoan Tran authored and Rafael J. Wysocki committed Sep 16, 2016
1 parent 41dd640 commit b59c4b3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion drivers/acpi/cppc_acpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,10 @@ static int send_pcc_cmd(u16 cmd)
if (pcc_data.pcc_mrtt)
last_cmd_cmpl_time = ktime_get();

mbox_client_txdone(pcc_data.pcc_channel, ret);
if (pcc_data.pcc_channel->mbox->txdone_irq)
mbox_chan_txdone(pcc_data.pcc_channel, ret);
else
mbox_client_txdone(pcc_data.pcc_channel, ret);

end:
if (cmd == CMD_WRITE) {
Expand Down

0 comments on commit b59c4b3

Please sign in to comment.