From patchwork Tue Aug 13 20:10:52 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 11092799 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 1876A746 for ; Tue, 13 Aug 2019 20:11:15 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 09BC22873C for ; Tue, 13 Aug 2019 20:11:15 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id EB61B285DB; Tue, 13 Aug 2019 20:11:14 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 608DB2873C for ; Tue, 13 Aug 2019 20:11:14 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 767BC6E0CF; Tue, 13 Aug 2019 20:11:12 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by gabe.freedesktop.org (Postfix) with ESMTPS id B7C016E0CF for ; Tue, 13 Aug 2019 20:11:11 +0000 (UTC) Received: from pendragon.bb.dnainternet.fi (dfj612yhrgyx302h3jwwy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:ce28:277f:58d7:3ca4]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 8424D2B2; Tue, 13 Aug 2019 22:11:08 +0200 (CEST) From: Laurent Pinchart To: dri-devel@lists.freedesktop.org Subject: [PATCH v4 0/9] DRM panel drivers for omapdrm Date: Tue, 13 Aug 2019 23:10:52 +0300 Message-Id: <20190813201101.30980-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 X-Mailman-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1565727068; bh=V66PBzYnAi/dFt7CxhUYz0oXqJ4P+fVOfmusdDIf/Q4=; h=From:To:Cc:Subject:Date:From; b=jPlEHNrJk67ur9OA5125aHfxywOIWOkrveQS7DudmQ95/VIbFzEvnVe+uYQ8rCmzl 5ceGAL5h2DfZniHBldF6jL5Xf7fL52ScSm7crDfSlVM22bAr5x1GiNL/DalvFC+PLq evtS+dLcLcepZcymrpJzdiwbJnRTmI7LdqC4m+U4= X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Thierry Reding , Sam Ravnborg Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP Hello everybody, This patch series adds DT bindings and drivers for 6 panels used by omapdrm. They are meant to replace the corresponding omapdrm-specific drivers from drivers/gpu/drm/omapdrm/displays/ that will be removed in a subsequent patch series, once the omapdrm driver switches fully to the drm_panel API. There's nothing very special here. The first three patches add DT vendor prefixes and DT bindings. The last six patches add new panel drivers. Please see individual patches for changelogs. Sam, all the patches have now been acked (resulting in a TODO list in 7/9 and a rework of 8/9). Would you merge this in drm-misc ? The patches are based on top of drm-misc-next and can be found at git://linuxtv.org/pinchartl/media.git omapdrm/panels Laurent Pinchart (9): dt-bindings: Add vendor prefix for LG Display dt-bindings: Add legacy 'toppoly' vendor prefix dt-bindings: display: panel: Add bindings for NEC NL8048HL11 panel drm/panel: Add driver for the LG Philips LB035Q02 panel drm/panel: Add driver for the NEC NL8048HL11 panel drm/panel: Add driver for the Sharp LS037V7DW01 panel drm/panel: Add driver for the Sony ACX565AKM panel drm/panel: Add driver for the Toppoly TD028TTEC1 panel drm/panel: Add driver for the Toppoly TD043MTEA1 panel .../display/panel/nec,nl8048hl11.yaml | 62 ++ .../devicetree/bindings/vendor-prefixes.yaml | 5 + drivers/gpu/drm/panel/Kconfig | 46 ++ drivers/gpu/drm/panel/Makefile | 6 + drivers/gpu/drm/panel/panel-lg-lb035q02.c | 237 ++++++ drivers/gpu/drm/panel/panel-nec-nl8048hl11.c | 248 +++++++ .../gpu/drm/panel/panel-sharp-ls037v7dw01.c | 226 ++++++ drivers/gpu/drm/panel/panel-sony-acx565akm.c | 701 ++++++++++++++++++ drivers/gpu/drm/panel/panel-tpo-td028ttec1.c | 399 ++++++++++ drivers/gpu/drm/panel/panel-tpo-td043mtea1.c | 509 +++++++++++++ 10 files changed, 2439 insertions(+) create mode 100644 Documentation/devicetree/bindings/display/panel/nec,nl8048hl11.yaml create mode 100644 drivers/gpu/drm/panel/panel-lg-lb035q02.c create mode 100644 drivers/gpu/drm/panel/panel-nec-nl8048hl11.c create mode 100644 drivers/gpu/drm/panel/panel-sharp-ls037v7dw01.c create mode 100644 drivers/gpu/drm/panel/panel-sony-acx565akm.c create mode 100644 drivers/gpu/drm/panel/panel-tpo-td028ttec1.c create mode 100644 drivers/gpu/drm/panel/panel-tpo-td043mtea1.c