From patchwork Mon Jul 18 21:20:46 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Caleb Connolly X-Patchwork-Id: 12921789 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 BF137C43334 for ; Mon, 18 Jul 2022 21:21:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234191AbiGRVVE (ORCPT ); Mon, 18 Jul 2022 17:21:04 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46348 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233328AbiGRVVD (ORCPT ); Mon, 18 Jul 2022 17:21:03 -0400 Received: from mail-0201.mail-europe.com (mail-0201.mail-europe.com [51.77.79.158]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 52D9128728 for ; Mon, 18 Jul 2022 14:21:02 -0700 (PDT) Date: Mon, 18 Jul 2022 21:20:46 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=connolly.tech; s=protonmail; t=1658179258; x=1658438458; bh=3U/67mf57ng96VibBXJjsH4xTmCc+lifj3sh+mu8+qQ=; h=Date:To:From:Reply-To:Subject:Message-ID:Feedback-ID:From:To:Cc: Date:Subject:Reply-To:Feedback-ID:Message-ID; b=f509/OtZQV8qgu8L2bThJO7xkYspuMsAslYjkiNLrNEJc9ToBJKpRa0mMYqkSCJGG HnEASTkG2oaciDHOA0pSKzn0mtI993FNjrHj6aOSAV3DRHtrHS9jXYiltzHd9rsHJz COYMZoK0iWfRGgLGalOnC1MRaAVl4ZBxKXCyHvqo= To: Andy Gross , Bjorn Andersson , Konrad Dybcio , Rob Herring , Krzysztof Kozlowski , Thierry Reding , Sam Ravnborg , David Airlie , Daniel Vetter , Sumit Semwal , Stephen Boyd , 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 From: Caleb Connolly Reply-To: Caleb Connolly Subject: [PATCH 0/4] Initial support for the Pixel 3 Message-ID: <20220718212019.1471265-1-caleb@connolly.tech> Feedback-ID: 10753939:user:proton MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org 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