Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp99929pxk; Thu, 24 Sep 2020 00:07:18 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwH6Z5fBdhNAvkhnlFZ3mApZM0g/zcPuAAvMj6zsrAx76lFnYX0oMCb7Y5MwknT9ZnzBtOT X-Received: by 2002:a05:6402:3c8:: with SMTP id t8mr3060352edw.266.1600931237952; Thu, 24 Sep 2020 00:07:17 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1600931237; cv=none; d=google.com; s=arc-20160816; b=xYCbsY0pq0lhTAzzwd9q1ClXiQHHa5zgcXLuU5kUbkPsHbHEHIDjfyl65ZyH+3nM7A z4NM58UqYAj+4yt8bTUfCW1u7SsGYRd3zHvm+bkC0Q2C6XoLM3nC5WM/B74eLPKrHngi 4HdNHMtft+76/hWoZNlVpFB2P/BhhLFC2o4GPHfrY4eJf05wgGnMIQ5NuM4DJPsa/0Ef kI4Pt1ve735L5OCouwq/qVYredsO/ByhdjehqVz+UeqYXPt1tPXPzMHNcGzFzXMZ6Kuq 4V34eiqAi0Nd8by5HVqhsCFYLWjEObQJ0CaECCPFiFVtZyZz5xJinS42S/okg0CPiiD4 JAgQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=kz/mmdKhkbzUQuYDg2G5gBupWlEOL2Fw5OQ4q2LkTp0=; b=h/0LzDfvYyXJCLfZdINq4QAzmanQqdw3+3wAp7/xJoL/9sTVDq3gMl3cJkVDGyId9S KdI5SKHbwNS0SNEMW7AonLaYNVQ+18nHuL1WjOF3HEIRw6dONSS9EVOjUTafoTNkpEDB 3KOWu/OKgdBaIds1iY35k8g3AcGYeb6bU13wEYJ41Sh5d1FVyeADiAg0Ns98ObYDPU8p c6wfgFd7wpu/t07N8FLEfxK4X+HLzxPuO6RM+4FDt1J5BUAZzn1NleKGmKuasWIXZ3Hu zScbXFaqTrkIhA6NKWkjUeBY0irY56TwT5PMBX8hpVmizwmTapWqdz5d0GB/DDSEoJ2F iBCA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id p2si1374005ejf.310.2020.09.24.00.06.54; Thu, 24 Sep 2020 00:07:17 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727024AbgIXHFz (ORCPT + 99 others); Thu, 24 Sep 2020 03:05:55 -0400 Received: from muru.com ([72.249.23.125]:45362 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726902AbgIXHFz (ORCPT ); Thu, 24 Sep 2020 03:05:55 -0400 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 Cc: khilman@kernel.org, linux@armlinux.org.uk, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, letux-kernel@openphoenux.org 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-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200924090047.2b61f883@aktux> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.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