From patchwork Wed Nov 16 14:56:01 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Weiss X-Patchwork-Id: 625154 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 AEDFAC43219 for ; Wed, 16 Nov 2022 14:57:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233540AbiKPO5g (ORCPT ); Wed, 16 Nov 2022 09:57:36 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48846 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233959AbiKPO5T (ORCPT ); Wed, 16 Nov 2022 09:57:19 -0500 Received: from mail.z3ntu.xyz (mail.z3ntu.xyz [128.199.32.197]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 432B428E03; Wed, 16 Nov 2022 06:57:18 -0800 (PST) Received: from g550jk.arnhem.chello.nl (unknown [62.108.10.64]) by mail.z3ntu.xyz (Postfix) with ESMTPSA id 7572EC4128; Wed, 16 Nov 2022 14:56:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=z3ntu.xyz; s=z3ntu; t=1668610606; bh=KsW+8ENBtu4UJFdA+5lLI+Dz/2DZB+GaYC01A1U7Lcw=; h=From:To:Cc:Subject:Date; b=XxUwPzofsEE7PuNWDE1ZT9obfxoeFh5cK+KEr/pUwMq2MVWJ6DjnSIg1ZOZGTcnpn kHx7zp7fZXR1fp52oH1HOd9dqnCxDT+xh0t+kHf2/fZj6jYtJs+Dkha0D1bHDyBtk4 po2A1SEohZck7zotkdGTXiSsqOV9XS5Wq/bz70hw= From: Luca Weiss To: linux-arm-msm@vger.kernel.org Cc: ~postmarketos/upstreaming@lists.sr.ht, phone-devel@vger.kernel.org, Luca Weiss , "Guilherme G. Piccoli" , Bjorn Andersson , Konrad Dybcio , Tony Luck , devicetree@vger.kernel.org, linux-hardening@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 0/8] Add a bunch of msm8953 dts files Date: Wed, 16 Nov 2022 15:56:01 +0100 Message-Id: <20221116145616.17884-1-luca@z3ntu.xyz> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org The following patches add a bunch of msm8953-based devices that have been created in the msm8953-mainline[0] repository, which includes Snapdragon 450 (SDM450), Snapdragon 625 (msm8953) and Snapdragon 632 (SDM632) devices. The dts files are trimmed down to what is currently supported upstream, as a way to also minimizing diff for further patches. I've tried my best in keeping all the relevant author tags based on the git info I could find there. *This series depends on pmi8950.dtsi patches[1]* [0] https://github.com/msm8953-mainline/linux [1] https://lore.kernel.org/linux-arm-msm/20221101161801.1058969-2-luca@z3ntu.xyz/ Adam Skladowski (1): arm64: dts: qcom: msm8953: Add device tree for Xiaomi Redmi Note 4X Alejandro Tafalla (1): arm64: dts: qcom: msm8953: Add device tree for Xiaomi Mi A2 Lite Danila Tikhonov (1): arm64: dts: qcom: msm8953: Add device tree for Xiaomi Mi A1 Eugene Lepshy (1): arm64: dts: qcom: msm8953: Add device tree for Xiaomi Redmi 5 Plus Gabriela David (1): arm64: dts: qcom: sdm632: Add device tree for Motorola G7 Power Julian Braha (1): arm64: dts: qcom: sdm450: Add device tree for Motorola Moto G6 Luca Weiss (1): dt-bindings: arm: qcom: document new msm8953-family devices Sireesh Kodali (1): arm64: dts: qcom: msm8953: Add device tree for Motorola G5 Plus .../devicetree/bindings/arm/qcom.yaml | 17 + arch/arm64/boot/dts/qcom/Makefile | 7 + .../boot/dts/qcom/msm8953-motorola-potter.dts | 306 ++++++++++++++++ .../boot/dts/qcom/msm8953-xiaomi-daisy.dts | 316 +++++++++++++++++ .../boot/dts/qcom/msm8953-xiaomi-mido.dts | 331 ++++++++++++++++++ .../boot/dts/qcom/msm8953-xiaomi-tissot.dts | 317 +++++++++++++++++ .../boot/dts/qcom/msm8953-xiaomi-vince.dts | 330 +++++++++++++++++ .../boot/dts/qcom/sdm450-motorola-ali.dts | 256 ++++++++++++++ .../boot/dts/qcom/sdm632-motorola-ocean.dts | 287 +++++++++++++++ 9 files changed, 2167 insertions(+) create mode 100644 arch/arm64/boot/dts/qcom/msm8953-motorola-potter.dts create mode 100644 arch/arm64/boot/dts/qcom/msm8953-xiaomi-daisy.dts create mode 100644 arch/arm64/boot/dts/qcom/msm8953-xiaomi-mido.dts create mode 100644 arch/arm64/boot/dts/qcom/msm8953-xiaomi-tissot.dts create mode 100644 arch/arm64/boot/dts/qcom/msm8953-xiaomi-vince.dts create mode 100644 arch/arm64/boot/dts/qcom/sdm450-motorola-ali.dts create mode 100644 arch/arm64/boot/dts/qcom/sdm632-motorola-ocean.dts