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 B7B20C43334 for ; Mon, 18 Jul 2022 21:37:17 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 0C4911121FF; Mon, 18 Jul 2022 21:37:09 +0000 (UTC) X-Greylist: delayed 358 seconds by postgrey-1.36 at gabe; Mon, 18 Jul 2022 21:37:07 UTC Received: from proxmox1.postmarketos.org (proxmox1.postmarketos.org [213.239.216.189]) by gabe.freedesktop.org (Postfix) with ESMTP id 199B710F7DE for ; Mon, 18 Jul 2022 21:37:07 +0000 (UTC) Received: from localhost.localdomain (unknown [81.178.197.238]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by proxmox1.postmarketos.org (Postfix) with ESMTPSA id 85B24140197; Mon, 18 Jul 2022 21:31:06 +0000 (UTC) From: Caleb Connolly To: Andy Gross , Bjorn Andersson , Konrad Dybcio , Rob Herring , Krzysztof Kozlowski , Thierry Reding , Sam Ravnborg , David Airlie , Daniel Vetter , Sumit Semwal , Caleb Connolly , linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, phone-devel@vger.kernel.org, ~postmarketos/upstreaming@lists.sr.ht, Amit Pundir Subject: [PATCH 0/4] Initial support for the Pixel 3 Date: Mon, 18 Jul 2022 22:30:47 +0100 Message-Id: <20220718213051.1475108-1-caleb@connolly.tech> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" This series adds an initial DTS and display panel driver for the Pixel 3. The Pixel 3 display uses DSC (Display Stream Compression) which has been supported in mainline for some time now. Functionality includes: - Display, GPU, venus video transcoder - Modem/WiFi/Bluetooth - ModemManager seems to fail The touchscreen uses some HEFTY downstream driver, hopefully we'll come up with an upstreamable solution for it soon and make this a bit more usable. Amit Pundir (1): arm64: dts: qcom: add sdm845-google-blueline (Pixel 3) Caleb Connolly (1): Documentation: dt-bindings: arm: qcom: add google,blueline Sumit Semwal (2): dt-bindings: panel: Add LG SW43408 MIPI-DSI panel drm: panel: Add lg sw43408 panel driver .../devicetree/bindings/arm/qcom.yaml | 1 + .../bindings/display/panel/lg,43408.yaml | 41 ++ .../display/panel/panel-simple-dsi.yaml | 2 + MAINTAINERS | 8 + arch/arm64/boot/dts/qcom/Makefile | 1 + .../boot/dts/qcom/sdm845-google-blueline.dts | 652 ++++++++++++++++++ drivers/gpu/drm/panel/Kconfig | 11 + drivers/gpu/drm/panel/Makefile | 1 + drivers/gpu/drm/panel/panel-lg-sw43408.c | 586 ++++++++++++++++ 9 files changed, 1303 insertions(+) create mode 100644 Documentation/devicetree/bindings/display/panel/lg,43408.yaml create mode 100644 arch/arm64/boot/dts/qcom/sdm845-google-blueline.dts create mode 100644 drivers/gpu/drm/panel/panel-lg-sw43408.c -- 2.36.1