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 X-Spam-Level: X-Spam-Status: No, score=-8.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 23106C4346E for ; Thu, 24 Sep 2020 07:07:11 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (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 9AA35235F7 for ; Thu, 24 Sep 2020 07:07:10 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="TFDxc5U6" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9AA35235F7 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=atomide.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References:Message-ID: Subject:To:From:Date:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=ehDf3PjVdRoqNF4VG9kJcyy3hJdISW0RaK0N7hQcjxQ=; b=TFDxc5U6lDccEsuSyaJBoC05P sATdMrxA5vAI7CpVi6r0UDtuxeHKcDEgY70rVztHrToPVhtkCPrEru3MJPX5H6KRuz7ty22CNsO1n OA4E+J8qkDcJLRyG2eseHmqh6EnMHNt9iMTQdhpqK9GMH5cu7BfYXpVuc3eF1fM19RiebA0rrRp9d z1aVLBvJexkBkjoIskzIpLR2VzvNdSR4MCU8DrwcaH8YbKjwp4byvcXhgipr/HBHVWDfZOYmANamo 5jKKFbKz6kZqXeJWDVKn6DCoWTyRw2ldtHx1PCFtTNOFCCFYBnJfc2w+pNJwVfn/mGX3SJlN8FFbA UwRlepQGQ==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kLLKK-0001Ov-0h; Thu, 24 Sep 2020 07:06:00 +0000 Received: from muru.com ([72.249.23.125]) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kLLKH-0001Mz-2l for linux-arm-kernel@lists.infradead.org; Thu, 24 Sep 2020 07:05:58 +0000 Received: from atomide.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id E2A078027; Thu, 24 Sep 2020 07:05:56 +0000 (UTC) Date: Thu, 24 Sep 2020 10:05:50 +0300 From: Tony Lindgren To: Andreas Kemnade Subject: Re: [PATCH v2] omap3: enable off mode automatically Message-ID: <20200924070550.GG9471@atomide.com> References: <20200911161209.25149-1-andreas@kemnade.info> <20200924090047.2b61f883@aktux> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20200924090047.2b61f883@aktux> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200924_030557_210905_CFB0E899 X-CRM114-Status: GOOD ( 16.87 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-omap@vger.kernel.org, khilman@kernel.org, linux-kernel@vger.kernel.org, linux@armlinux.org.uk, letux-kernel@openphoenux.org, linux-arm-kernel@lists.infradead.org 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 * Andreas Kemnade [200924 07:00]: > On Fri, 11 Sep 2020 18:12:09 +0200 > Andreas Kemnade wrote: > > > Enabling off mode was only reachable deeply hidden > > in the debugfs. As powersaving is an important feature, > > move the option out of its shady place. > > The debugfs file can still be used to override the default. > > > > Use the presence of a device compatible to ti,twl4030-idle or > > ti,twl4030-idle-osc-off as an indicator that the board is wired correctly > > for off mode. > > > > Signed-off-by: Andreas Kemnade > > --- > > An earlier version of this patch was here: > > https://patchwork.kernel.org/patch/10794121/ > > > > A config option was used instead of the suggested devicetree check. > > > > Changes in v2: > > - fix compile without CONFIG_ARCH_OMAP3 > > The variable enable_off_mode is now always a real one and not > > a preprocessor constant to avoid trouble with unusual configurations. > > > Anything I still missed here? No the missing part is just me picking up the remaining patches for v5.10 that I'll hopefully manage to do today :) Regards, Tony _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel