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=-2.6 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 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 29BF3C33CA3 for ; Thu, 9 Jan 2020 19:49:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EE5C2206ED for ; Thu, 9 Jan 2020 19:49:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578599374; bh=ITD6w/02vqRdUm0ShsXkkbuu5q3Ob/c1kGTjOJU2efA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=xc1M1QIrAd7YNNTgRWq3aQ0ThIDHHLck2wXwvPb8Sb9bXXd6MYrN9XFQGEIa+nKjH jyG8nvDf6e7irVz+j8TbQCb1wjY6OpQm23/gKspWuWSB3By8Jftjf0u6yrYp7Jcfp4 KCwM1oUFx1rFeDsh4OvxAr8Pgd1H0nrC3FyT5txQ= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732412AbgAITtd (ORCPT ); Thu, 9 Jan 2020 14:49:33 -0500 Received: from foss.arm.com ([217.140.110.172]:36222 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730077AbgAITtd (ORCPT ); Thu, 9 Jan 2020 14:49:33 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 2264531B; Thu, 9 Jan 2020 11:49:32 -0800 (PST) Received: from localhost (unknown [10.37.6.21]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 9CFEA3F534; Thu, 9 Jan 2020 11:49:31 -0800 (PST) Date: Thu, 9 Jan 2020 19:49:30 +0000 From: Mark Brown To: Steven Price Cc: Mark Rutland , Devicetree List , Nicolas Boichat , Tomeu Vizoso , David Airlie , lkml , dri-devel@lists.freedesktop.org, Liam Girdwood , Rob Herring , "moderated list:ARM/Mediatek SoC support" , Alyssa Rosenzweig , Hsin-Yi Wang , Matthias Brugger , linux-arm Mailing List Subject: Re: [PATCH v2 4/7] drm/panfrost: Add support for a second regulator for the GPU Message-ID: <20200109194930.GD3702@sirena.org.uk> References: <20200108052337.65916-1-drinkcat@chromium.org> <20200108052337.65916-5-drinkcat@chromium.org> <20200108132302.GA3817@sirena.org.uk> <09ddfac3-da8d-c039-92a0-d0f51dc3fea5@arm.com> <20200109162814.GB3702@sirena.org.uk> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="pQhZXvAqiZgbeUkD" Content-Disposition: inline In-Reply-To: X-Cookie: Killing turkeys causes winter. User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --pQhZXvAqiZgbeUkD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Jan 09, 2020 at 04:53:02PM +0000, Steven Price wrote: > On 09/01/2020 16:28, Mark Brown wrote: > > On Thu, Jan 09, 2020 at 02:14:42PM +0000, Steven Price wrote: > > > I'm not sure if it's better, but could we just encode the list of > > > regulators into device tree. I'm a bit worried about special casing an > > > "sram" regulator given that other platforms might have a similar > > > situation but call the second regulator a different name. > > Obviously the list of regulators bound on a given platform is encoded in > > the device tree but you shouldn't really be relying on that to figure > > out what to request in the driver - the driver should know what it's > > expecting. > From a driver perspective we don't expect to have to worry about power > domains/multiple regulators - the hardware provides a bunch of power > registers to turn on/off various parts of the hardware and this should be > linked (in hardware) to a PDC which sorts it out. The GPU/PDC handles the > required sequencing. So it *should* be a case of turn power/clocks on and > go. Ah, the well abstracted and consistent hardware with which we are all so fortunate to work :) . More seriously perhaps the thing to do here is create a driver that provides a soft PDC and then push all the special case handling into that? It can then get instantiated based on the compatible or perhaps represented directly in the device tree if that makes sense. > However certain integrations may have quirks such that there are physically > multiple supplies. These are expected to all be turned on before using the > GPU. Quite how this is best represented is something I'm not sure about. If they're always on and don't ever change then that's really easy to represent in the DT without involving drivers, it's when you need to actively manage them that it's more effort. > > Bear in mind that getting regulator stuff wrong can result > > in physical damage to the system so it pays to be careful and to > > consider that platform integrators have a tendency to rely on things > > that just happen to work but aren't a good idea or accurate > > representations of the system. It's certainly *possible* to do > > something like that, the information is there, but I would not in any > > way recommend doing things that way as it's likely to not be robust. > > The possibility that the regulator setup may vary on other platforms > > (which I'd expect TBH) does suggest that just requesting a bunch of > > supply names optionally and hoping that we got all the ones that are > > important on a given platform is going to lead to trouble down the line. > Certainly if we miss a regulator the GPU isn't going to work properly (some > cores won't be able to power up successfully). However at the moment the > driver will happily do this if someone provides it with a DT which includes > regulators that it doesn't know about. So I'm not sure how adding special > case code for a SoC would help here. I thought this SoC neeed to vary the voltage on both rails as part of the power management? Things like that can lead to hardware damage if we go out of spec far enough for long enough - there can be requirements like keeping one rail a certain voltage above another or whatever. --pQhZXvAqiZgbeUkD Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEreZoqmdXGLWf4p/qJNaLcl1Uh9AFAl4Xg8kACgkQJNaLcl1U h9DhIQf9HZ2Q1blNvGt1n4U2y9oZgTgphMEa0JMJU6uCB4DzokV/ki8co9SwPcFC feV+gosXXo6A98jenPsWIobEfWSUiwEYa5w3ClUYlcVrKLIwlUmThXvSiIS1+uva LEnxvF+4WP37piAr891qK5iZdpOoMniy8m1bBXSm75midArEGcV2rqCorXEStIih LNey+eFBxgweMQNmVL/FElCItrW6+x9HyxEGdBL4TLDMOpxC1cb/qyQUs9dAlRwQ evp+V1ZYh5rSuQqAF5XEJwA+f8k33X0VJki7BJ+Nh3IkQpVWtg0ORKW3e4hw5+DW B6Gvn1/3P+OYjc/Azm6w18G1USraiQ== =M45L -----END PGP SIGNATURE----- --pQhZXvAqiZgbeUkD--