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=-9.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable 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 BA84DC433E7 for ; Sun, 18 Oct 2020 12:33:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 51751207FF for ; Sun, 18 Oct 2020 12:33:40 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=connolly.tech header.i=@connolly.tech header.b="f+hV804e" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726612AbgJRMdj (ORCPT ); Sun, 18 Oct 2020 08:33:39 -0400 Received: from mail-40131.protonmail.ch ([185.70.40.131]:12271 "EHLO mail-40131.protonmail.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725784AbgJRMdj (ORCPT ); Sun, 18 Oct 2020 08:33:39 -0400 Date: Sun, 18 Oct 2020 12:33:31 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=connolly.tech; s=protonmail; t=1603024416; bh=GCCxJzqOnfsVI/hX933byDTiphe1ufjEW2PregmWSLo=; h=Date:To:From:Cc:Reply-To:Subject:In-Reply-To:References:From; b=f+hV804e70VkKoIWRn7lDMgkeqT2qE8ENc6nW6FtprsQ95OUyJzlP0nWidHtODY3t 2rzpoWw8FEbph1STSYBYkit71a3mtR/Xze3Z7XyeILvONxAqoJBCNyeUaSfRCUz070 KmqilvG2Lhych3aFR83Oq7sZeDM//DxKss96mhgQ= To: Rob Herring From: Caleb Connolly Cc: linux-arm-msm@vger.kernel.org, Thierry Reding , Sam Ravnborg , David Airlie , Daniel Vetter , ~postmarketos/upstreaming@lists.sr.ht, dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Reply-To: Caleb Connolly Subject: Re: [PATCH 2/5] dt-bindings: panel: add documentation for oneplus6 panel Message-ID: <3b3f9ede-89ef-26c7-3ade-bf498ea483b8@connolly.tech> In-Reply-To: <20201009140544.GB4071736@bogus> References: <20201007174736.292968-1-caleb@connolly.tech> <20201007174736.292968-3-caleb@connolly.tech> <20201009140544.GB4071736@bogus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2020-10-09 15:05, Rob Herring wrote: > On Wed, Oct 07, 2020 at 05:49:14PM +0000, Caleb Connolly wrote: >> Document the OnePlus 6/T common panel driver, example from >> arch/arm64/boot/dts/qcom/sdm845-oneplus-common.dtsi >> >> Signed-off-by: Caleb Connolly >> --- >> .../display/panel/panel-oneplus6.yaml | 73 +++++++++++++++++++ >> 1 file changed, 73 insertions(+) >> create mode 100644 Documentation/devicetree/bindings/display/panel/pan= el-oneplus6.yaml >> >> diff --git a/Documentation/devicetree/bindings/display/panel/panel-onepl= us6.yaml b/Documentation/devicetree/bindings/display/panel/panel-oneplus6.y= aml >> new file mode 100644 >> index 000000000000..23ba369cc2f5 >> --- /dev/null >> +++ b/Documentation/devicetree/bindings/display/panel/panel-oneplus6.yam= l >> @@ -0,0 +1,73 @@ >> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) >> +%YAML 1.2 >> +--- >> +$id: http://devicetree.org/schemas/display/panel/panel-oneplus6.yaml# >> +$schema: http://devicetree.org/meta-schemas/core.yaml# >> + >> +title: OnePlus 6/T panel driver >> + >> +description: | >> + The OnePlus 6 panel driver encompasses the display panels found in th= e >> + OnePlus 6 and 6T devices, the panels have almost identical behaviour = and >> + are not used by any other devices. >> + >> +maintainers: >> + - Caleb Connolly >> + >> +allOf: >> + - $ref: panel-common.yaml# >> + >> +properties: >> + compatible: >> + enum: >> + - samsung,sofef00 >> + - samsung,s6e3fc2x01 >> + >> + reg: true >> + reset-gpios: true >> + port: true >> + >> + vddio-supply: >> + description: VDDIO regulator > A panel with a single supply can use panel-simple-dsi.yaml. > > 'reset-gpios' was missing, but has been added recently. > > Rob Thanks, I'll move docs into panel-simple-dsi.yaml Caleb