From patchwork Tue Aug 13 13:33:02 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 11092243 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 9045614D5 for ; Tue, 13 Aug 2019 13:33:24 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 82703284F9 for ; Tue, 13 Aug 2019 13:33:24 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 76AF9286A4; Tue, 13 Aug 2019 13:33:24 +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 14928286A8 for ; Tue, 13 Aug 2019 13:33:23 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 543AB6E131; Tue, 13 Aug 2019 13:33:21 +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 47B486E131 for ; Tue, 13 Aug 2019 13:33:20 +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 0B9D92B2; Tue, 13 Aug 2019 15:33:17 +0200 (CEST) From: Laurent Pinchart To: dri-devel@lists.freedesktop.org Subject: [PATCH v3 0/9] DRM panel drivers for omapdrm Date: Tue, 13 Aug 2019 16:33:02 +0300 Message-Id: <20190813133311.26441-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=1565703198; bh=EWyMe2IVWLCz2pPl5XCzdc8dYBEPcNq3FPHLI/Bg1G4=; h=From:To:Cc:Subject:Date:From; b=ksaBVgl5fkA5ntQt9BkYqStDcThh08AUOjT2yxRKdtgVmGKE3t38p4CsWhgGm6xxq MP//5JpAj5aiOragFGJMYmJmxuZVHMOA5w0HK0rDrGilTI0q+TrSODj8QMkaCldtBu OwH1tcmoaRYiKa4PFBQAmRqjKn1ZXHnjCkmP3I2k= 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, I believe I've taken all your and Rob's comments into account. The DT example now compiles (make dt_binding_check rules !). 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 | 694 ++++++++++++++++++ drivers/gpu/drm/panel/panel-tpo-td028ttec1.c | 382 ++++++++++ drivers/gpu/drm/panel/panel-tpo-td043mtea1.c | 509 +++++++++++++ 10 files changed, 2415 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