From patchwork Tue Jun 7 11:50:06 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Satya Priya Kakitapalli (Temp)" X-Patchwork-Id: 12871816 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 66168C43334 for ; Tue, 7 Jun 2022 11:50:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242019AbiFGLup (ORCPT ); Tue, 7 Jun 2022 07:50:45 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38470 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243266AbiFGLun (ORCPT ); Tue, 7 Jun 2022 07:50:43 -0400 Received: from alexa-out.qualcomm.com (alexa-out.qualcomm.com [129.46.98.28]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C7C1B81996; Tue, 7 Jun 2022 04:50:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=quicinc.com; i=@quicinc.com; q=dns/txt; s=qcdkim; t=1654602643; x=1686138643; h=from:to:cc:subject:date:message-id:mime-version; bh=XV3+To7GcVtxl+R8thONN4zfp6tKeM1kA4beMzPTLp0=; b=wAAt2pyfbJqFsyIMMdFl1jTRAkvKVtXYKCpiIt4aowA2f4dZGkHx/Ao7 54LNWsIu23NOgND9Pqp8ExKDSUM7223gKh0n4YhbSEqREinr1fDn5uk8M W7bx3miLAXSmZUcbnvzrB8hWqbF18f1VLZ3FUf3BPACDSylR1HMBYj25f 8=; Received: from ironmsg07-lv.qualcomm.com ([10.47.202.151]) by alexa-out.qualcomm.com with ESMTP; 07 Jun 2022 04:50:41 -0700 X-QCInternal: smtphost Received: from nasanex01c.na.qualcomm.com ([10.47.97.222]) by ironmsg07-lv.qualcomm.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Jun 2022 04:50:41 -0700 Received: from nalasex01a.na.qualcomm.com (10.47.209.196) by nasanex01c.na.qualcomm.com (10.47.97.222) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.986.22; Tue, 7 Jun 2022 04:50:40 -0700 Received: from c-skakit-linux.qualcomm.com (10.80.80.8) by nalasex01a.na.qualcomm.com (10.47.209.196) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.986.22; Tue, 7 Jun 2022 04:50:36 -0700 From: Satya Priya To: Bjorn Andersson , Rob Herring CC: Lee Jones , Liam Girdwood , Mark Brown , , , , , , , , Satya Priya Subject: [PATCH V14 0/9] Add Qualcomm Technologies, Inc. PM8008 regulator driver Date: Tue, 7 Jun 2022 17:20:06 +0530 Message-ID: <1654602615-28849-1-git-send-email-quic_c_skakit@quicinc.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [10.80.80.8] X-ClientProxiedBy: nasanex01a.na.qualcomm.com (10.52.223.231) To nalasex01a.na.qualcomm.com (10.47.209.196) Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Satya Priya (9): dt-bindings: mfd: pm8008: Add reset-gpios dt-bindings: mfd: pm8008: Change the address cells dt-bindings: mfd: pm8008: Add regulators for pm8008 mfd: pm8008: Add reset-gpios mfd: pm8008: Remove the regmap member from pm8008_data struct mfd: pm8008: Use i2c_new_dummy_device() API regulator: Add a regulator driver for the PM8008 PMIC arm64: dts: qcom: pm8008: Add base dts file arm64: dts: qcom: sc7280: Add pm8008 support for sc7280-idp .../devicetree/bindings/mfd/qcom,pm8008.yaml | 69 +++++- arch/arm64/boot/dts/qcom/pm8008.dtsi | 54 +++++ arch/arm64/boot/dts/qcom/sc7280-idp.dtsi | 66 ++++++ drivers/mfd/qcom-pm8008.c | 60 ++++- drivers/regulator/Kconfig | 9 + drivers/regulator/Makefile | 1 + drivers/regulator/qcom-pm8008-regulator.c | 248 +++++++++++++++++++++ include/linux/mfd/qcom_pm8008.h | 9 + 8 files changed, 498 insertions(+), 18 deletions(-) create mode 100644 arch/arm64/boot/dts/qcom/pm8008.dtsi create mode 100644 drivers/regulator/qcom-pm8008-regulator.c create mode 100644 include/linux/mfd/qcom_pm8008.h