Received: by 2002:a5b:505:0:0:0:0:0 with SMTP id o5csp4496550ybp; Mon, 7 Oct 2019 09:17:14 -0700 (PDT) X-Google-Smtp-Source: APXvYqxPgpNm1hn/sK4rBVVEmMg/2g+vD73ADIi8CKhdhsP5fU+h4GWBEouvh1j9xBSGzxOfuwbZ X-Received: by 2002:a17:906:d97a:: with SMTP id rp26mr25273062ejb.251.1570465034197; Mon, 07 Oct 2019 09:17:14 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1570465034; cv=none; d=google.com; s=arc-20160816; b=ijoxkSIelos14aZ9X2ab09Cj5y7e2NXewcDYoOR99tSgnl6hcaEJzyD0lg+d2ikjsv WaQmUVMSe2MNsoXqLEA/8X3P7PW+mFEaGZ3Kt4NKZ4iVompBH96z4z7rft96uUwVCvj4 s/60/wJuAkhN6EzQbteU9GedkP8GAeWCJCiuxab+iWu3Bt/d6mvFnyhw5XXcyrD4D7N6 SFFWSRivuyeeVcoRB5fDMOFlHhymZ1BIsDrLjYhO7jVwSI7NJvy/lpqHar8KskNPbyR2 zKVCgD1bNwWVL5aTyELXUY6Adj+hTXuFvxbe9bGjLRg3/c361LwmTJ6TjAEqR0V3OpvO ZjHA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=OovvEV7eO/rWirrPgJBEmrm0aNbRot8bHzePm4Wz66g=; b=p6oWAy+eZWa4NK1WeWvYNHTOLE++Vi6drXPOJHMZnxzRkEkz5KnZO+EqCVJYVWwZRm SSQg/SF5cfcSE/5pVlJIGVnaEEggB1L+J1mtRDkvq4kl+0IyxFPea5gVgVkWLSmsS1E/ Ja58p1yC4VmeHabSGphmzu+FlNAQMqtEJlfHm0dzw1R6ZDPEgUr0BVVE3YwY/11nxB0K ntbk9LzdiBa+MpxkwUgdLcC1ByAiTOE7FfIvGehzr8bxxHGsqNHqTi7+wJZImf42Rc93 1xFlqZ/pXN+jR7mRdTe0RJR954sR1MaNG6e14JR68SVLG+g3J4fKY7jWveaseywEEsWM DiIg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id j23si2149405ejb.115.2019.10.07.09.16.50; Mon, 07 Oct 2019 09:17:14 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728939AbfJGQQj (ORCPT + 99 others); Mon, 7 Oct 2019 12:16:39 -0400 Received: from muru.com ([72.249.23.125]:35650 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727791AbfJGQQi (ORCPT ); Mon, 7 Oct 2019 12:16:38 -0400 Received: from atomide.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id 5B2E580A5; Mon, 7 Oct 2019 16:17:11 +0000 (UTC) Date: Mon, 7 Oct 2019 09:16:34 -0700 From: Tony Lindgren To: Emmanuel Vadot Cc: bcousson@baylibre.com, robh+dt@kernel.org, mark.rutland@arm.com, linux-omap@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] ARM: dts: Set status to disable for MMC3 Message-ID: <20191007161634.GS5610@atomide.com> References: <20191007080339.57209-1-manu@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191007080339.57209-1-manu@freebsd.org> User-Agent: Mutt/1.12.1 (2019-06-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, * Emmanuel Vadot [191007 08:04]: > Commit 5b63fb90adb95 ("ARM: dts: Fix incomplete dts data for am3 and am4 mmc") > fixed the mmc instances on the l3 interconnect but removed the disabled status. > Fix this and let boards properly define it if it have it. The dts default is "okay", and should be fine for all the internal devices even if not pinned out on the board. This way the devices get properly idled during boot, and we avoid repeating status = "enabled" over and over again in the board specific dts files. Then the board specific dts files might want to configure devices with status = "disabled" if really needed. But this should be only done for devices that Linux must not use, such as crypto acclerators on secure devices if claimed by the secure mode. So if this fixes something, it's almost certainly a sign of something else being broken? Regards, Tony > Fixes: 5b63fb90adb95 ("ARM: dts: Fix incomplete dts data for am3 and am4 mmc") > Signed-off-by: Emmanuel Vadot > --- > arch/arm/boot/dts/am33xx.dtsi | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi > index fb6b8aa12cc5..b3a1fd9e39fa 100644 > --- a/arch/arm/boot/dts/am33xx.dtsi > +++ b/arch/arm/boot/dts/am33xx.dtsi > @@ -260,6 +260,7 @@ > ti,needs-special-reset; > interrupts = <29>; > reg = <0x0 0x1000>; > + status = "disabled"; > }; > }; > > -- > 2.22.0 >