From patchwork Fri Mar 12 05:27:29 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 12133699 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=-14.2 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 265B9C433E6 for ; Fri, 12 Mar 2021 05:28:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E3A8164F8E for ; Fri, 12 Mar 2021 05:28:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231276AbhCLF2F (ORCPT ); Fri, 12 Mar 2021 00:28:05 -0500 Received: from mail.kernel.org ([198.145.29.99]:34586 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231331AbhCLF1r (ORCPT ); Fri, 12 Mar 2021 00:27:47 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id 7112A64F84; Fri, 12 Mar 2021 05:27:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1615526867; bh=/77vYUZ7UpTZLZ/EC5B9NNsAAOngBKOHsaK4ikMjpIo=; h=From:To:Cc:Subject:Date:From; b=p30EEwoKXEqajPzSimL3b8YyczWtyIV5Q8/DZ0h0oz00qETqHq91sacY9iJUTJyOH CDPbLPJ0xdIqCHio7OJxRm/MHbS5tMMG3fqbTdSz+sM8D03chNKmgGMj10t0l18S0F ZyxrKbaqhcUvvsYqf4HCXabgApb1fiQMgcMUlfF/uCb9Zl6Z3X3yQdyjhE8QiZyEkO 2YCvgEJUpzmTz6oGlkLvIti5g4r43N9Hsf7fHXeeV0gekKTuFYfHsnnFYAa/12byxb RyXd0Fv+cxPWold83BgZppD/cODxofnWvwbNxD2LAjKzuwbjtJ7/6/nY0Yw59kEADt tfccwLGqOgC/Q== From: Vinod Koul 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/8] arm64: dts: qcom: sm8350: Add PMICs Date: Fri, 12 Mar 2021 10:57:29 +0530 Message-Id: <20210312052737.3558801-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 This adds the SPMI nodes for SM8350 followed by PMIC base file containing the GPIO nodes for these pmics (pmic compatibles have been picked by LinusW) SM8350-MTP includes PM8350, PM8350B, PM8350C, PMK8350, PMR735A AND PMR735B pmics. Vinod Koul (8): arm64: dts: qcom: sm8350: Add spmi node arm64: dts: qcom: pmk8350: Add base dts file arm64: dts: qcom: pm8350: Add base dts file arm64: dts: qcom: pm8350b: Add base dts file arm64: dts: qcom: pm8350c: Add base dts file arm64: dts: qcom: pmr735a: Add base dts file arm64: dts: qcom: pmr735b: Add base dts file arm64: dts: qcom: sm8350-mtp: Add PMICs arch/arm64/boot/dts/qcom/pm8350.dtsi | 25 +++++++++++++++++++++++++ arch/arm64/boot/dts/qcom/pm8350b.dtsi | 25 +++++++++++++++++++++++++ arch/arm64/boot/dts/qcom/pm8350c.dtsi | 25 +++++++++++++++++++++++++ arch/arm64/boot/dts/qcom/pmk8350.dtsi | 25 +++++++++++++++++++++++++ arch/arm64/boot/dts/qcom/pmr735a.dtsi | 25 +++++++++++++++++++++++++ arch/arm64/boot/dts/qcom/pmr735b.dtsi | 25 +++++++++++++++++++++++++ arch/arm64/boot/dts/qcom/sm8350-mtp.dts | 6 ++++++ arch/arm64/boot/dts/qcom/sm8350.dtsi | 18 ++++++++++++++++++ 8 files changed, 174 insertions(+) create mode 100644 arch/arm64/boot/dts/qcom/pm8350.dtsi create mode 100644 arch/arm64/boot/dts/qcom/pm8350b.dtsi create mode 100644 arch/arm64/boot/dts/qcom/pm8350c.dtsi create mode 100644 arch/arm64/boot/dts/qcom/pmk8350.dtsi create mode 100644 arch/arm64/boot/dts/qcom/pmr735a.dtsi create mode 100644 arch/arm64/boot/dts/qcom/pmr735b.dtsi Reviewed-by: Dmitry Baryshkov