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 AF846C7EE2E for ; Mon, 29 May 2023 21:07:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229687AbjE2VHY (ORCPT ); Mon, 29 May 2023 17:07:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58008 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229498AbjE2VHV (ORCPT ); Mon, 29 May 2023 17:07:21 -0400 Received: from m-r2.th.seeweb.it (m-r2.th.seeweb.it [IPv6:2001:4b7a:2000:18::171]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DE987DB for ; Mon, 29 May 2023 14:07:18 -0700 (PDT) Received: from SoMainline.org (94-211-6-86.cable.dynamic.v4.ziggo.nl [94.211.6.86]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by m-r2.th.seeweb.it (Postfix) with ESMTPSA id 6076F3F255; Mon, 29 May 2023 23:07:16 +0200 (CEST) Date: Mon, 29 May 2023 23:07:15 +0200 From: Marijn Suijten To: Dmitry Baryshkov Cc: neil.armstrong@linaro.org, Sam Ravnborg , David Airlie , Daniel Vetter , Caleb Connolly , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Andy Gross , Bjorn Andersson , ~postmarketos/upstreaming@lists.sr.ht, AngeloGioacchino Del Regno , Konrad Dybcio , Martin Botka , Jami Kettunen , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-msm@vger.kernel.org, Abhinav Kumar , Kuogee Hsieh , Jessica Zhang Subject: Re: [PATCH RFC 03/10] drm/panel: Add LGD panel driver for Sony Xperia XZ3 Message-ID: References: <20230521-drm-panels-sony-v1-0-541c341d6bee@somainline.org> <20230521-drm-panels-sony-v1-3-541c341d6bee@somainline.org> <71675a02-0801-62dc-2673-4a0907636b21@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2023-05-22 15:58:56, Dmitry Baryshkov wrote: > On Mon, 22 May 2023 at 12:04, Neil Armstrong wrote: > > > > On 22/05/2023 03:16, Dmitry Baryshkov wrote: > > > On 22/05/2023 00:23, Marijn Suijten wrote: > > >> Sony provides an unlabeled LGD + Atmel maXTouch assembly in its Xperia > > >> XZ3 (tama akatsuki) phone, with custom DCS commands to match. > > >> > > >> This panel features Display Stream Compression 1.1. > > >> > > >> Signed-off-by: Marijn Suijten > > >> --- > > >> drivers/gpu/drm/panel/Kconfig | 11 + > > >> drivers/gpu/drm/panel/Makefile | 1 + > > >> drivers/gpu/drm/panel/panel-sony-akatsuki-lgd.c | 362 ++++++++++++++++++++++++ > > >> 3 files changed, 374 insertions(+) > > >> > > >> diff --git a/drivers/gpu/drm/panel/Kconfig b/drivers/gpu/drm/panel/Kconfig > > >> index 67ef898d133f2..18bd116e78a71 100644 > > >> --- a/drivers/gpu/drm/panel/Kconfig > > >> +++ b/drivers/gpu/drm/panel/Kconfig > > >> @@ -706,6 +706,17 @@ config DRM_PANEL_SONY_ACX565AKM > > >> Say Y here if you want to enable support for the Sony ACX565AKM > > >> 800x600 3.5" panel (found on the Nokia N900). > > >> +config DRM_PANEL_SONY_AKATSUKI_LGD > > >> + tristate "Sony Xperia XZ3 LGD panel" > > >> + depends on GPIOLIB && OF > > >> + depends on DRM_MIPI_DSI > > >> + depends on BACKLIGHT_CLASS_DEVICE > > >> + help > > >> + Say Y here if you want to enable support for the Sony Xperia XZ3 > > >> + 1440x2880@60 6.0" OLED DSI cmd mode panel produced by LG Display. > > >> + > > >> + This panel uses Display Stream Compression 1.1. > > >> + > > >> config DRM_PANEL_SONY_TD4353_JDI > > >> tristate "Sony TD4353 JDI panel" > > >> depends on GPIOLIB && OF > > >> diff --git a/drivers/gpu/drm/panel/Makefile b/drivers/gpu/drm/panel/Makefile > > >> index ff169781e82d7..85133f73558f3 100644 > > >> --- a/drivers/gpu/drm/panel/Makefile > > >> +++ b/drivers/gpu/drm/panel/Makefile > > >> @@ -71,6 +71,7 @@ obj-$(CONFIG_DRM_PANEL_SITRONIX_ST7701) += panel-sitronix-st7701.o > > >> obj-$(CONFIG_DRM_PANEL_SITRONIX_ST7703) += panel-sitronix-st7703.o > > >> obj-$(CONFIG_DRM_PANEL_SITRONIX_ST7789V) += panel-sitronix-st7789v.o > > >> obj-$(CONFIG_DRM_PANEL_SONY_ACX565AKM) += panel-sony-acx565akm.o > > >> +obj-$(CONFIG_DRM_PANEL_SONY_AKATSUKI_LGD) += panel-sony-akatsuki-lgd.o > > >> obj-$(CONFIG_DRM_PANEL_SONY_TD4353_JDI) += panel-sony-td4353-jdi.o > > >> obj-$(CONFIG_DRM_PANEL_SONY_TULIP_TRULY_NT35521) += panel-sony-tulip-truly-nt35521.o > > >> obj-$(CONFIG_DRM_PANEL_TDO_TL070WSH30) += panel-tdo-tl070wsh30.o > > >> diff --git a/drivers/gpu/drm/panel/panel-sony-akatsuki-lgd.c b/drivers/gpu/drm/panel/panel-sony-akatsuki-lgd.c > > >> new file mode 100644 > > >> index 0000000000000..f55788f963dab > > >> --- /dev/null > > >> +++ b/drivers/gpu/drm/panel/panel-sony-akatsuki-lgd.c > > >> @@ -0,0 +1,362 @@ > > >> +// SPDX-License-Identifier: GPL-2.0-only > > >> +/* > > >> + * Copyright (c) 2023 Marijn Suijten > > >> + * > > >> + * Based on Sony Downstream's "Atmel LGD ID5" Akatsuki panel dtsi. > > >> + */ > > >> + > > >> +#include > > >> +#include > > >> +#include > > >> +#include > > >> +#include > > >> +#include > > >> +#include > > >> + > > >> +#include