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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 01518C433FE for ; Wed, 26 Oct 2022 11:50:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233500AbiJZLus (ORCPT ); Wed, 26 Oct 2022 07:50:48 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46042 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233624AbiJZLuh (ORCPT ); Wed, 26 Oct 2022 07:50:37 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7EC858C448; Wed, 26 Oct 2022 04:50:35 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 1CAC6B821D4; Wed, 26 Oct 2022 11:50:34 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BAAA1C433C1; Wed, 26 Oct 2022 11:50:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1666785032; bh=e4D3lQz4+6tCFxLCts5XSeAOHbOoeUxEUEpqzho9PdM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=p+MWACUi7/i7gYWdUSIqZr3RegX07DN8fuz5kvakaii6Yz2/3FnAWu7Xq+bel0YOR NKb0jXSZ2XHD7Bz1w3NQxI6L6mnr5E6j7Lj80Ktu0dL2h5s+hXWsHfV7xgz/uTWpzy aJCMHM9oMHZpKKZhvW65/vKKlM9EjYOiwD6KGg+4xu1yPycx5U7t3TyYI19qn+3ei1 +JGoYisuFfZWcCENEdc0GQYNIEsXYJhPKlgSqIo8dYrbOkCEKz+2MvkWAj1S+1Ytib Q1e9g0qe0rMuFkzZ0PKRaVEDC1MN25FZ64R3F/1CwwsNwMjRZblcqq4d5PF9QDH0U5 jfxMO67myaKOw== Received: from johan by xi.lan with local (Exim 4.94.2) (envelope-from ) id 1onevH-0007At-P7; Wed, 26 Oct 2022 13:50:15 +0200 Date: Wed, 26 Oct 2022 13:50:15 +0200 From: Johan Hovold To: Bjorn Andersson Cc: Rob Clark , Abhinav Kumar , Dmitry Baryshkov , Sean Paul , David Airlie , Daniel Vetter , Rob Herring , Krzysztof Kozlowski , Bjorn Andersson , Konrad Dybcio , Kuogee Hsieh , Sankeerth Billakanti , linux-arm-msm@vger.kernel.org, dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 12/12] arm64: dts: qcom: sa8295-adp: Enable DP instances Message-ID: References: <20221026032624.30871-1-quic_bjorande@quicinc.com> <20221026032624.30871-13-quic_bjorande@quicinc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221026032624.30871-13-quic_bjorande@quicinc.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Oct 25, 2022 at 08:26:24PM -0700, Bjorn Andersson wrote: > From: Bjorn Andersson > > The SA8295P ADP has, among other interfaces, six MiniDP connectors which > are connected to MDSS0 DP2 and DP3, and MDSS1 DP0 through DP3. > > Enable Display Clock controllers, MDSS instanced, MDPs, DP controllers, > DP PHYs and link them all together. > > Signed-off-by: Bjorn Andersson > Signed-off-by: Bjorn Andersson > --- > &apps_rsc { > @@ -156,13 +240,169 @@ vreg_l7g: ldo7 { > > vreg_l8g: ldo8 { > regulator-name = "vreg_l8g"; > - regulator-min-microvolt = <880000>; > - regulator-max-microvolt = <880000>; > + regulator-min-microvolt = <912000>; > + regulator-max-microvolt = <912000>; > + regulator-initial-mode = ; > + regulator-allow-set-load; Did you really intend to allow set-load here? I'm guessing this wasn't the case, but otherwise you also need to specify the valid modes. > + }; > + > + vreg_l11g: ldo11 { > + regulator-name = "vreg_l11g"; > + regulator-min-microvolt = <912000>; > + regulator-max-microvolt = <912000>; > regulator-initial-mode = ; > }; > }; > }; > +&mdss0_dp2_phy { > + status = "okay"; > + > + vdda-phy-supply = <&vreg_l8g>; > + vdda-pll-supply = <&vreg_l3g>; > +}; Johan