Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753954AbcKNOwe (ORCPT ); Mon, 14 Nov 2016 09:52:34 -0500 Received: from pandora.armlinux.org.uk ([78.32.30.218]:54956 "EHLO pandora.armlinux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752214AbcKNOwc (ORCPT ); Mon, 14 Nov 2016 09:52:32 -0500 Date: Mon, 14 Nov 2016 14:51:43 +0000 From: Russell King - ARM Linux To: Arnd Bergmann Cc: linux-arm-kernel@lists.infradead.org, Andrew Lunn , Heiko Stuebner , geert+renesas@glider.be, Linus Walleij , Liviu Dudau , Patrice Chotard , Wei Xu , Jisheng Zhang , "pankaj.dubey" , magnus.damm@gmail.com, Michal Simek , krzk@kernel.org, thomas.ab@samsung.com, "cpgs ." , Stephen Warren , Ray Jui , horms@verge.net.au, Jun Nie , shiraz.linux.kernel@gmail.com, linux-kernel@vger.kernel.org, vireshk@kernel.org, Dinh Nguyen , Shawn Guo Subject: Re: [PATCH 01/16] ARM: scu: Provide support for parsing SCU device node to enable SCU Message-ID: <20161114145143.GM1041@n2100.armlinux.org.uk> References: <1479099731-28108-1-git-send-email-pankaj.dubey@samsung.com> <2479429.Js1FDSdQzs@wuerfel> <20161114135018.GL1041@n2100.armlinux.org.uk> <6787744.7DRFf7p3US@wuerfel> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6787744.7DRFf7p3US@wuerfel> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2448 Lines: 53 On Mon, Nov 14, 2016 at 03:37:44PM +0100, Arnd Bergmann wrote: > On Monday, November 14, 2016 1:50:18 PM CET Russell King - ARM Linux wrote: > > On Mon, Nov 14, 2016 at 01:03:09PM +0100, Arnd Bergmann wrote: > > > On Monday, November 14, 2016 2:10:16 PM CET pankaj.dubey wrote: > > > > >> + scu_base = of_iomap(np, 0); > > > > >> + of_node_put(np); > > > > >> + if (!scu_base) { > > > > >> + pr_err("%s failed to map scu_base via DT\n", __func__); > > > > > > > > > > For non-ca5, non-ca9 based SoCs, we'll see this error msg. We understand > > > > > what does it mean, but it may confuse normal users. In current version, > > > > > berlin doesn't complain like this for non-ca9 SoCs > > > > > > > > > > > > > OK, let me see other reviewer's comment on this. Then we will decide if > > > > this error message is required or can be omitted. > > > > > > We need to look at all callers here, to see if the function ever gets > > > called for a CPU that doesn't have an SCU. I'd say we should warn if > > > we know there is an SCU but we cannot map it, but never warn on > > > any of the CPU cores that don't support an SCU. > > > > Maybe there should be two helpers: > > > > of_scu_enable() which _only_ looks up the SCU address in DT and enables > > it if it finds it, otherwise returning failure. > > > > a9_scu_enable() which tries to use the A9 provided SCU address and > > enables it if it finds it, otherwise returning failure. > > > > Then callers can decide which of these to call, and what error messages > > to print on their failures. > > Splitting the function in two is probably simpler overall, but > we may still have to look at all the callers: Any platform that > currently tries to map it on any CPU and doesn't warn about the > absence of the device node (or about scu_a9_has_base() == false) > should really continue not to warn about that. Did you miss the bit where none of of_scu_enable() or a9_scu_enable() should produce any warnings or errors to be printed. It's up to the caller to report the failure, otherwise doing this doesn't make sense: if (of_scu_enable() < 0 && a9_scu_enable() < 0) pr_err("Failed to map and enable the SCU\n"); because if of_scu_enable() prints a warning/error, then it's patently misleading. -- RMK's Patch system: http://www.armlinux.org.uk/developer/patches/ FTTC broadband for 0.8mile line: currently at 9.6Mbps down 400kbps up according to speedtest.net.