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=-6.7 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=ham 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 E5AA0C433E1 for ; Thu, 14 May 2020 04:43:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D7946206C0 for ; Thu, 14 May 2020 04:43:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725806AbgENEnU (ORCPT ); Thu, 14 May 2020 00:43:20 -0400 Received: from asavdk4.altibox.net ([109.247.116.15]:52366 "EHLO asavdk4.altibox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725788AbgENEnT (ORCPT ); Thu, 14 May 2020 00:43:19 -0400 Received: from ravnborg.org (unknown [158.248.194.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by asavdk4.altibox.net (Postfix) with ESMTPS id EBDCB80512; Thu, 14 May 2020 06:43:10 +0200 (CEST) Date: Thu, 14 May 2020 06:43:09 +0200 From: Sam Ravnborg To: Dave Airlie Cc: Harigovindan P , freedreno , devicetree@vger.kernel.org, linux-arm-msm , dri-devel , Matthias Kaehlcke , Sean Paul , Sean Paul Subject: Re: [PATCH v11 1/2] drm/panel: add support for rm69299 visionox panel driver Message-ID: <20200514044309.GA76575@ravnborg.org> References: <20200421045508.21137-1-harigovi@codeaurora.org> <20200421045508.21137-2-harigovi@codeaurora.org> <20200506185703.GB8227@ravnborg.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-CMAE-Score: 0 X-CMAE-Analysis: v=2.3 cv=MOBOZvRl c=1 sm=1 tr=0 a=UWs3HLbX/2nnQ3s7vZ42gw==:117 a=UWs3HLbX/2nnQ3s7vZ42gw==:17 a=kj9zAlcOel0A:10 a=7gkXJVJtAAAA:8 a=LpQP-O61AAAA:8 a=cm27Pg_UAAAA:8 a=e5mUnYsNAAAA:8 a=f_Wl3r1SmYH8fCJVqjsA:9 a=CjuIK1q_8ugA:10 a=E9Po1WZjFZOl8hwRPBS3:22 a=pioyyrs4ZptJ924tMmac:22 a=xmb-EsYY8bH0VWELuYED:22 a=Vxmtnl_E_bksehYqCbjh:22 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Hi Dave. On Thu, May 14, 2020 at 01:35:22PM +1000, Dave Airlie wrote: > On Thu, 7 May 2020 at 04:57, Sam Ravnborg wrote: > > > > Hi Harigovindan > > > > On Wed, Apr 29, 2020 at 11:15:14AM +0530, Harigovindan P wrote: > > > Add support for Visionox panel driver. > > > > > > Signed-off-by: Harigovindan P > > > Reviewed-by: Matthias Kaehlcke > > > > Thanks for your persistence on this. > > Patch applied. > > > > I fixed a few lingering --strict releated checkpatch warnings > > when I applied. > > > > Sam > > I'm seeing > > WARNING: modpost: missing MODULE_LICENSE() in > drivers/gpu/drm/panel/panel-visionox-rm69299.o > > Can we fix that up? The patch is in drm-misc-next: e41b49b7e4d4ad9755af4813a57b5f6a09e357d7 "drm: panel: add MODULE_LICENSE to panel-visionox-rm69299.c" Holler if this does not fix it or we need to expedit it somehow. Sam > > Dave. > > > > > > --- > > > > > > Changes in v2: > > > - Dropping redundant space in Kconfig(Sam Ravnborg). > > > - Changing structure for include files(Sam Ravnborg). > > > - Removing backlight related code and functions(Sam Ravnborg). > > > - Removing repeated printing of error message(Sam Ravnborg). > > > - Adding drm_connector as an argument for get_modes function. > > > Changes in v3: > > > - Adding arguments for drm_panel_init to support against mainline. > > > Changes in v4: > > > - Removing error messages from regulator_set_load. > > > - Removing dev struct entry. > > > - Removing checks. > > > - Dropping empty comment lines. > > > Changes in v5: > > > - Removing unused struct member variables. > > > - Removing blank lines. > > > - Fixed indentation. > > > - Invoking dsi_detach and panel_remove while early exiting from probe. > > > Changes in v6: > > > - Changed "35597" to "rm69299" for power_on function. > > > - Removing rm69299_config since it supports single type of panel for now. > > > - Fixed alignment. > > > - Using goto statements when regulator_set_load fails. > > > Changes in v7: > > > - Added new goto statement when regulator_set_load fails. > > > Changes in v8,v9,v10: > > > - Had changes in first patch, did not make any change in panel driver. > > > Changes in v11: > > > - Fixing checkpatch script errors. > > > - Updated assignment of panel.dev property in probe. > > > > > > drivers/gpu/drm/panel/Kconfig | 8 + > > > drivers/gpu/drm/panel/Makefile | 1 + > > > .../gpu/drm/panel/panel-visionox-rm69299.c | 304 ++++++++++++++++++ > > > 3 files changed, 313 insertions(+) > > > create mode 100644 drivers/gpu/drm/panel/panel-visionox-rm69299.c > > > > > > diff --git a/drivers/gpu/drm/panel/Kconfig b/drivers/gpu/drm/panel/Kconfig > > > index d56258b9fcaf..4b6131f5893d 100644 > > > --- a/drivers/gpu/drm/panel/Kconfig > > > +++ b/drivers/gpu/drm/panel/Kconfig > > > @@ -444,6 +444,14 @@ config DRM_PANEL_TRULY_NT35597_WQXGA > > > Say Y here if you want to enable support for Truly NT35597 WQXGA Dual DSI > > > Video Mode panel > > > > > > +config DRM_PANEL_VISIONOX_RM69299 > > > + tristate "Visionox RM69299" > > > + depends on OF > > > + depends on DRM_MIPI_DSI > > > + help > > > + Say Y here if you want to enable support for Visionox > > > + RM69299 DSI Video Mode panel. > > > + > > > config DRM_PANEL_XINPENG_XPP055C272 > > > tristate "Xinpeng XPP055C272 panel driver" > > > depends on OF > > > diff --git a/drivers/gpu/drm/panel/Makefile b/drivers/gpu/drm/panel/Makefile > > > index 2335a1e32ae0..8eac3e6fa82c 100644 > > > --- a/drivers/gpu/drm/panel/Makefile > > > +++ b/drivers/gpu/drm/panel/Makefile > > > @@ -47,4 +47,5 @@ obj-$(CONFIG_DRM_PANEL_TPO_TD028TTEC1) += panel-tpo-td028ttec1.o > > > obj-$(CONFIG_DRM_PANEL_TPO_TD043MTEA1) += panel-tpo-td043mtea1.o > > > obj-$(CONFIG_DRM_PANEL_TPO_TPG110) += panel-tpo-tpg110.o > > > obj-$(CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA) += panel-truly-nt35597.o > > > +obj-$(CONFIG_DRM_PANEL_VISIONOX_RM69299) += panel-visionox-rm69299.o > > > obj-$(CONFIG_DRM_PANEL_XINPENG_XPP055C272) += panel-xinpeng-xpp055c272.o > > > diff --git a/drivers/gpu/drm/panel/panel-visionox-rm69299.c b/drivers/gpu/drm/panel/panel-visionox-rm69299.c > > > new file mode 100644 > > > index 000000000000..3ef4cc80044a > > > --- /dev/null > > > +++ b/drivers/gpu/drm/panel/panel-visionox-rm69299.c > > > @@ -0,0 +1,304 @@ > > > +// SPDX-License-Identifier: GPL-2.0 > > > +/* > > > + * Copyright (c) 2019, The Linux Foundation. All rights reserved. > > > + */ > > > + > > > +#include > > > +#include > > > +#include > > > +#include > > > +#include > > > + > > > +#include