From patchwork Fri Dec 4 05:43:43 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 337811 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.0 required=3.0 tests=BAYES_00,INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 87A89C433FE for ; Fri, 4 Dec 2020 05:44:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 32FA222583 for ; Fri, 4 Dec 2020 05:44:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727245AbgLDFoh (ORCPT ); Fri, 4 Dec 2020 00:44:37 -0500 Received: from mail.kernel.org ([198.145.29.99]:50118 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726473AbgLDFog (ORCPT ); Fri, 4 Dec 2020 00:44:36 -0500 From: Vinod Koul Authentication-Results: mail.kernel.org; dkim=permerror (bad message/signature format) To: Bjorn Andersson Cc: linux-arm-msm@vger.kernel.org, Vinod Koul , Andy Gross , Rob Herring , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 0/4] Add binding and dts for Qualcomm SM8350 Date: Fri, 4 Dec 2020 11:13:43 +0530 Message-Id: <20201204054347.2877857-1-vkoul@kernel.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Hi, This series adds the compatible for SM8350 SoC, board and aoss compatible. Then the base DTS for SM8350 SoC which contains clock (gcc, rpmh), pinctrl, uart, reserved memory and cpu nodes. The board file for MTP enables uart and adds the rpmh regulators Vinod Koul (4): dt-bindings: arm: qcom: Document SM8350 SoC and boards soc: qcom: aoss: Add SM8350 compatible arm64: dts: qcom: Add basic devicetree support for SM8350 SoC arm64: dts: qcom: Add basic devicetree support for SM8350-MTP board .../devicetree/bindings/arm/qcom.yaml | 6 + .../bindings/soc/qcom/qcom,aoss-qmp.txt | 1 + arch/arm64/boot/dts/qcom/Makefile | 1 + arch/arm64/boot/dts/qcom/sm8350-mtp.dts | 246 +++++++++ arch/arm64/boot/dts/qcom/sm8350.dtsi | 496 ++++++++++++++++++ drivers/soc/qcom/qcom_aoss.c | 1 + 6 files changed, 751 insertions(+) create mode 100644 arch/arm64/boot/dts/qcom/sm8350-mtp.dts create mode 100644 arch/arm64/boot/dts/qcom/sm8350.dtsi Thanks