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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 1A516C433F5 for ; Wed, 2 Mar 2022 10:38:41 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 681B010F499; Wed, 2 Mar 2022 10:38:40 +0000 (UTC) Received: from aposti.net (aposti.net [89.234.176.197]) by gabe.freedesktop.org (Postfix) with ESMTPS id 6767F10F499 for ; Wed, 2 Mar 2022 10:38:39 +0000 (UTC) Date: Wed, 02 Mar 2022 10:38:26 +0000 From: Paul Cercueil Subject: Re: [PATCH v1 2/3] drm/panel: Add panel driver for NewVision NV3052C based LCDs To: Christophe Branchereau Message-Id: <2K548R.OKM2OPSDBF3L3@crapouillou.net> In-Reply-To: <20220301153122.20660-3-cbranchereau@gmail.com> References: <20220301153122.20660-1-cbranchereau@gmail.com> <20220301153122.20660-3-cbranchereau@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable 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: David Airlie , linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, linux-mips@vger.kernel.org, Thierry Reding , Sam Ravnborg Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Hi Christophe, Le mar., mars 1 2022 at 16:31:21 +0100, Christophe Branchereau=20 a =E9crit : > This driver supports the NewVision NV3052C based LCDs. Right now, it > only supports the LeadTek LTK035C5444T 2.4" 640x480 TFT LCD panel,=20 > which > can be found in the Anbernic RG-350M handheld console. You'd need to add a binding documentation for the NV3052C (in a=20 separate patch). >=20 > Signed-off-by: Christophe Branchereau > --- > drivers/gpu/drm/panel/Kconfig | 9 + > drivers/gpu/drm/panel/Makefile | 1 + > .../gpu/drm/panel/panel-newvision-nv3052c.c | 504=20 > ++++++++++++++++++ > 3 files changed, 514 insertions(+) > create mode 100644 drivers/gpu/drm/panel/panel-newvision-nv3052c.c >=20 > diff --git a/drivers/gpu/drm/panel/Kconfig=20 > b/drivers/gpu/drm/panel/Kconfig > index bb2e47229c68..40084f709789 100644 > --- a/drivers/gpu/drm/panel/Kconfig > +++ b/drivers/gpu/drm/panel/Kconfig > @@ -283,6 +283,15 @@ config DRM_PANEL_NEC_NL8048HL11 > panel (found on the Zoom2/3/3630 SDP boards). To compile this=20 > driver > as a module, choose M here. >=20 > +config DRM_PANEL_NEWVISION_NV3052C > + tristate "NewVision NV3052C RGB/SPI panel" > + depends on OF && SPI > + depends on BACKLIGHT_CLASS_DEVICE > + select DRM_MIPI_DBI > + help > + Say Y here if you want to enable support for the panels built > + around the NewVision NV3052C display controller. > + > config DRM_PANEL_NOVATEK_NT35510 > tristate "Novatek NT35510 RGB panel driver" > depends on OF > diff --git a/drivers/gpu/drm/panel/Makefile=20 > b/drivers/gpu/drm/panel/Makefile > index 5740911f637c..42a7ab54234b 100644 > --- a/drivers/gpu/drm/panel/Makefile > +++ b/drivers/gpu/drm/panel/Makefile > @@ -26,6 +26,7 @@ obj-$(CONFIG_DRM_PANEL_LEADTEK_LTK500HD1829) +=3D=20 > panel-leadtek-ltk500hd1829.o > obj-$(CONFIG_DRM_PANEL_LG_LB035Q02) +=3D panel-lg-lb035q02.o > obj-$(CONFIG_DRM_PANEL_LG_LG4573) +=3D panel-lg-lg4573.o > obj-$(CONFIG_DRM_PANEL_NEC_NL8048HL11) +=3D panel-nec-nl8048hl11.o > +obj-$(CONFIG_DRM_PANEL_NEWVISION_NV3052C) +=3D=20 > panel-newvision-nv3052c.o > obj-$(CONFIG_DRM_PANEL_NOVATEK_NT35510) +=3D panel-novatek-nt35510.o > obj-$(CONFIG_DRM_PANEL_NOVATEK_NT35560) +=3D panel-novatek-nt35560.o > obj-$(CONFIG_DRM_PANEL_NOVATEK_NT35950) +=3D panel-novatek-nt35950.o > diff --git a/drivers/gpu/drm/panel/panel-newvision-nv3052c.c=20 > b/drivers/gpu/drm/panel/panel-newvision-nv3052c.c > new file mode 100644 > index 000000000000..08a3b33bcce0 > --- /dev/null > +++ b/drivers/gpu/drm/panel/panel-newvision-nv3052c.c > @@ -0,0 +1,504 @@ > +// SPDX-License-Identifier: GPL-2.0 > +/* > + * NevVision NV3052C IPS LCD panel driver > + * > + * Copyright (C) 2020, Paul Cercueil > + * Copyright (C) 2022, Christophe Branchereau=20 > > + */ > + > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > + > +#include