Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756422AbcK2Kmy (ORCPT ); Tue, 29 Nov 2016 05:42:54 -0500 Received: from mail-pg0-f65.google.com ([74.125.83.65]:34446 "EHLO mail-pg0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751629AbcK2Kmo (ORCPT ); Tue, 29 Nov 2016 05:42:44 -0500 Subject: Re: [PATCH v3 1/3] powernv:idle: Add IDLE_STATE_ENTER_SEQ_NORET macro To: "Gautham R. Shenoy" , Michael Ellerman , Benjamin Herrenschmidt , Paul Mackerras , "Rafael J. Wysocki" , Daniel Lezcano , Michael Neuling , Vaidyanathan Srinivasan , "Shreyas B. Prabhu" , Shilpasri G Bhat , Stewart Smith , "Oliver O'Halloran" References: Cc: "\"linuxppc-dev"@lists.ozlabs.org, linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, "skiboot\""@lists.ozlabs.org From: Balbir Singh Message-ID: Date: Tue, 29 Nov 2016 21:42:20 +1100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 973 Lines: 32 On 10/11/16 18:54, Gautham R. Shenoy wrote: > From: "Gautham R. Shenoy" > > Currently all the low-power idle states are expected to wake up > at reset vector 0x100. Which is why the macro IDLE_STATE_ENTER_SEQ > that puts the CPU to an idle state and never returns. > > On ISA_300, when the ESL and EC bits in the PSSCR are zero, the > CPU is expected to wake up at the next instruction of the idle > instruction. > > This patch adds a new macro named IDLE_STATE_ENTER_SEQ_NORET for the I think something like IDLE_STATE_ENTER_SEQ_LOSE_CTX would be better? > no-return variant and reuses the name IDLE_STATE_ENTER_SEQ > for a variant that allows resuming operation at the instruction next > to the idle-instruction. > > + > +#define IDLE_STATE_ENTER_SEQ_NORET(IDLE_INST) \ > + IDLE_STATE_ENTER_SEQ(IDLE_INST) \ So we start off with both as the same? > b . > #endif /* CONFIG_PPC_P7_NAP */ Balbir