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 5871EC433F5 for ; Tue, 12 Oct 2021 10:51:30 +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 D4FCA61039 for ; Tue, 12 Oct 2021 10:51:29 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org D4FCA61039 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=QOca5L82K5ZERRJ9ECye+I8iZFW7hZlfqZnkh7YLg7Y=; b=CwKH2Km2deZmJg 2uS2DCWhbEbf7wpaYjDjHRJ5yl2Z5twv1x750n8bujKyRKOVU/qnyfIqRG6qL+XlbkCXSvDNxN2aG dQ+7a9shOZ97loe0PtE4Zs2hooyLsQiwa0JiMwN/X9mlHa7rLmLLi63tB161ff5wgfdArRwBic317 uBQ20hRA1H/fAzzdDuRhRPhjK34WsUWDPMA/Brg0NUIJY/VYJscLWPI/cI2N3AUyyOf5H7q7QTp/e B8Z1xjTRgWPz8Ue2rPot2M7whYHp3j+p3t4vzT7Z+uh1kDAUpi8d3iUhYUgvrFV4ammARan83Tm+m Of3q7HpxvN6YVJg68lGw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1maFNJ-00CUNJ-ML; Tue, 12 Oct 2021 10:51:13 +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-riscv@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-riscv" Errors-To: linux-riscv-bounces+linux-riscv=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-riscv mailing list linux-riscv@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-riscv