From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D15D5C433EF for ; Tue, 12 Oct 2021 10:53:18 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 458EC61050 for ; Tue, 12 Oct 2021 10:53:18 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 458EC61050 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=sntech.de Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=oR1n/fB3MLzfzMk/xTBjJECWyRKsqnrALuCCFedfs2I=; b=cvyC/il8rPir/Z fv+fZkgtjeed721MoNvCPnIF1ynHUQVVvh0ZCpQaEOgwB5eFVtnjIJMHOb2D7Ro9XEmnudemXRZ82 1yhIMItTNiWuuyn+GBx7TV0jIL2XFV50HtqVTe6NeF/P2ZIFSUZO8WdwpYcg4TZawxdlTTAC0GEdT yKG3K3VXmKfUBJ60gqgsmfdLVBAKf4QnzIXycf0iuJ8qMSSpKB2pP5F0Rb6ojb20NrQu69BmgvZhM P5WP+G0payGkoTm8ttjeD/z3NXDPMZW1K7vytANgfAKWrU+k+3R7B0kktAj98js765VEnj30hpuFw HfT2zLVEboLi3p5AT4Kw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1maFNM-00CUNU-16; Tue, 12 Oct 2021 10:51:16 +0000 Received: from gloria.sntech.de ([185.11.138.130]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1maFNG-00CUMY-IX; Tue, 12 Oct 2021 10:51:11 +0000 Received: from ip5f5a6e92.dynamic.kabel-deutschland.de ([95.90.110.146] helo=diego.localnet) by gloria.sntech.de with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1maFN1-0004zG-D0; Tue, 12 Oct 2021 12:50:55 +0200 From: Heiko =?ISO-8859-1?Q?St=FCbner?= To: Palmer Dabbelt , Palmer Dabbelt , Paul Walmsley , Albert Ou , Daniel Lezcano , Ulf Hansson , "Rafael J . Wysocki" , Pavel Machek , Rob Herring , linux-riscv@lists.infradead.org Cc: Sandeep Tripathy , Atish Patra , Alistair Francis , Liush , Anup Patel , devicetree@vger.kernel.org, linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Anup Patel , Anup Patel Subject: Re: [PATCH v9 5/8] cpuidle: Factor-out power domain related code from PSCI domain driver Date: Tue, 12 Oct 2021 12:50:54 +0200 Message-ID: <3552162.bMjzuKGm0O@diego> In-Reply-To: <20211012095857.1314214-6-anup.patel@wdc.com> References: <20211012095857.1314214-1-anup.patel@wdc.com> <20211012095857.1314214-6-anup.patel@wdc.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211012_035110_642588_55EA8400 X-CRM114-Status: GOOD ( 10.85 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Anup, Am Dienstag, 12. Oktober 2021, 11:58:54 CEST schrieb Anup Patel: > The generic power domain related code in PSCI domain driver is largely > independent of PSCI and can be shared with RISC-V SBI domain driver > hence we factor-out this code into dt_idle_genpd.c and dt_idle_genpd.h. > > Signed-off-by: Anup Patel > Reviewed-by: Ulf Hansson On a Rockchip rk3399 with "psci_idle" cpuidle driver and states "WFI", "cpu-sleep" and "cluster-sleep" I checked that all states are entered sucessfully both before and after applying this patch, so ARM64-side: Tested-by: Heiko Stuebner Heiko _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel