From patchwork Sat Sep 30 22:07:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rayyan Ansari X-Patchwork-Id: 728212 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 A516CE748ED for ; Sat, 30 Sep 2023 22:19:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232641AbjI3WTg (ORCPT ); Sat, 30 Sep 2023 18:19:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35862 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231259AbjI3WTe (ORCPT ); Sat, 30 Sep 2023 18:19:34 -0400 X-Greylist: delayed 354 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Sat, 30 Sep 2023 15:19:31 PDT Received: from out-200.mta0.migadu.com (out-200.mta0.migadu.com [91.218.175.200]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8295CDD for ; Sat, 30 Sep 2023 15:19:31 -0700 (PDT) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ansari.sh; s=key1; t=1696112012; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=IQtLpN/lGvFKa62keccBQlCiMRFzl9uuLDsEFrnDd3s=; b=R/rzKaAGKHI13R/ACYAWNSpDaCIxlVN3yCK/AWg7Y3mhDof1UybCwE/7sFWBx3TYKFjHqh w05svhyspJx5LKV7dnrFtA4Ey+0WNKOFf6KPmyEiUekmHQwHCCoWwKt9O/Z1jrLx8L7zXz H5AUzwk5ZNT+CL7H8hbGWu4CeqL93lI= From: Rayyan Ansari To: linux-arm-msm@vger.kernel.org Cc: ~postmarketos/upstreaming@lists.sr.ht, Rayyan Ansari , Andy Gross , Bjorn Andersson , Conor Dooley , devicetree@vger.kernel.org, Konrad Dybcio , Krzysztof Kozlowski , linux-kernel@vger.kernel.org, Rob Herring Subject: [PATCH v3 0/6] Initial support for MSM8x26 Lumias Date: Sat, 30 Sep 2023 23:07:55 +0100 Message-ID: <20230930221323.101289-1-rayyan@ansari.sh> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Hello, The following patches: - Add device tree files for Nokia/Microsoft Lumia phones based around the MSM8x26 family of Qualcomm chipsets, utilising a common tree - Document this support v1: https://lore.kernel.org/linux-arm-msm/20230811213728.23726-1-rayyan@ansari.sh/ v2: https://lore.kernel.org/linux-arm-msm/20230813152623.64989-1-rayyan@ansari.sh/ Changes in v2: - Fix style issues and CHECK_DTBS warnings - Squash common dt commit with a device commit - Use both msm8926 and msm8226 compatibles for msm8926 devices Changes in v3: - Fix commit tags - More style fixes - Delete by label instead of path Rayyan Ansari (6): dt-bindings: arm: qcom: Document MSM8x26-based Lumia phones ARM: dts: qcom: add common dt for MSM8x26 Lumias along with Nokia Lumia 630 ARM: dts: qcom: add device tree for Microsoft Lumia 640 ARM: dts: qcom: add device tree for Microsoft Lumia 640 XL ARM: dts: qcom: add device tree for Nokia Lumia 735 ARM: dts: qcom: add device tree for Nokia Lumia 830 .../devicetree/bindings/arm/qcom.yaml | 10 + arch/arm/boot/dts/qcom/Makefile | 5 + .../qcom/qcom-msm8226-microsoft-common.dtsi | 327 ++++++++++++++++++ .../qcom/qcom-msm8226-microsoft-dempsey.dts | 17 + .../qcom/qcom-msm8226-microsoft-makepeace.dts | 17 + .../qcom-msm8226-microsoft-moneypenny.dts | 23 ++ .../qcom-msm8926-microsoft-superman-lte.dts | 53 +++ .../dts/qcom/qcom-msm8926-microsoft-tesla.dts | 67 ++++ 8 files changed, 519 insertions(+) create mode 100644 arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-common.dtsi create mode 100644 arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-dempsey.dts create mode 100644 arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-makepeace.dts create mode 100644 arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-moneypenny.dts create mode 100644 arch/arm/boot/dts/qcom/qcom-msm8926-microsoft-superman-lte.dts create mode 100644 arch/arm/boot/dts/qcom/qcom-msm8926-microsoft-tesla.dts