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.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, 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 BC74BC33CA3 for ; Fri, 10 Jan 2020 11:30:55 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (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 99B732080D for ; Fri, 10 Jan 2020 11:30:55 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 99B732080D Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 1B6636E9CA; Fri, 10 Jan 2020 11:30:55 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by gabe.freedesktop.org (Postfix) with ESMTP id 9143D6E9CA for ; Fri, 10 Jan 2020 11:30:53 +0000 (UTC) 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 19FED1063; Fri, 10 Jan 2020 03:30:53 -0800 (PST) Received: from [10.1.194.52] (e112269-lin.cambridge.arm.com [10.1.194.52]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 4776C3F534; Fri, 10 Jan 2020 03:30:51 -0800 (PST) Subject: Re: [PATCH v2 4/7] drm/panfrost: Add support for a second regulator for the GPU To: Mark Brown 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> <20200109194930.GD3702@sirena.org.uk> From: Steven Price Message-ID: <90993401-6896-bf95-a15a-d99c465ec12a@arm.com> Date: Fri, 10 Jan 2020 11:30:49 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.3.0 MIME-Version: 1.0 In-Reply-To: <20200109194930.GD3702@sirena.org.uk> Content-Language: en-US X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , 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 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On 09/01/2020 19:49, Mark Brown wrote: > 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. That makes sense to me. >> 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. Sorry, I should have been more clear. They are managed as a group - so either the entire GPU is powered off, or powered on. There's no support in Panfrost or mali_kbase for attempting to power part of the GPU. >>> 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. Yes, you are correct. My concern is that a DT which specifies a new regulator (e.g. "sram2") would be accepted by an old kernel (because it wouldn't know to look for the new regulator) but wouldn't know to control the regulator. It could then create a situation which puts the board out of spec - potentially in a damaging way. Hence I'd like to express the regulator structure in such a way that old kernels wouldn't "half-work". Your "soft-PDC" approach would seem to fit that requirement. Steve _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel