From: Rohit Agarwal <quic_rohiagar@quicinc.com>
To: agross@kernel.org, andersson@kernel.org,
konrad.dybcio@linaro.org, linus.walleij@linaro.org,
robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
richardcochran@gmail.com, manivannan.sadhasivam@linaro.org,
andy.shevchenko@gmail.com
Cc: linux-arm-msm@vger.kernel.org, linux-gpio@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
netdev@vger.kernel.org, Rohit Agarwal <quic_rohiagar@quicinc.com>
Subject: [PATCH v7 0/4] Add pinctrl support for SDX75
Date: Wed, 10 May 2023 20:30:21 +0530 [thread overview]
Message-ID: <1683730825-15668-1-git-send-email-quic_rohiagar@quicinc.com> (raw)
Hi,
Changes in v7:
- Collected reviewed by tags from Andy and updated the sdx75
driver with the new macro which was missed in v6 patch.
Changes in v6:
- Refactoring as per suggestions from Andy to remove msm_function and
reusing the pinfunction and pingroup struct with macros as well.
Changes in v5:
- Refactor the pinctrl target files based on the new macro and
structure defined as suggested by Andy.
Changes in v4:
- Fixed the bindings check and rebased on linux-next.
Changes in v3:
- Rebased the bindings on linux-next as suggested by Krzysztof.
Changes in v2:
- Updated the bindings to clear the bindings check.
This patch series adds pinctrl bindings and tlmm support for SDX75.
Thanks,
Rohit.
Rohit Agarwal (4):
dt-bindings: pinctrl: qcom: Add SDX75 pinctrl devicetree compatible
pinctrl: qcom: Remove the msm_function struct
pinctrl: qcom: Refactor generic qcom pinctrl driver
pinctrl: qcom: Add SDX75 pincontrol driver
.../bindings/pinctrl/qcom,sdx75-tlmm.yaml | 169 +++
drivers/pinctrl/qcom/Kconfig | 30 +-
drivers/pinctrl/qcom/Makefile | 3 +-
drivers/pinctrl/qcom/pinctrl-apq8064.c | 104 +-
drivers/pinctrl/qcom/pinctrl-apq8084.c | 264 ++--
drivers/pinctrl/qcom/pinctrl-ipq4019.c | 104 +-
drivers/pinctrl/qcom/pinctrl-ipq5332.c | 206 ++-
drivers/pinctrl/qcom/pinctrl-ipq6018.c | 260 ++--
drivers/pinctrl/qcom/pinctrl-ipq8064.c | 114 +-
drivers/pinctrl/qcom/pinctrl-ipq8074.c | 240 ++-
drivers/pinctrl/qcom/pinctrl-mdm9607.c | 276 ++--
drivers/pinctrl/qcom/pinctrl-mdm9615.c | 90 +-
drivers/pinctrl/qcom/pinctrl-msm.c | 13 +-
drivers/pinctrl/qcom/pinctrl-msm.h | 42 +-
drivers/pinctrl/qcom/pinctrl-msm8226.c | 156 +-
drivers/pinctrl/qcom/pinctrl-msm8660.c | 252 ++--
drivers/pinctrl/qcom/pinctrl-msm8909.c | 268 ++--
drivers/pinctrl/qcom/pinctrl-msm8916.c | 556 ++++---
drivers/pinctrl/qcom/pinctrl-msm8953.c | 424 +++---
drivers/pinctrl/qcom/pinctrl-msm8960.c | 464 +++---
drivers/pinctrl/qcom/pinctrl-msm8976.c | 212 ++-
drivers/pinctrl/qcom/pinctrl-msm8994.c | 564 ++++---
drivers/pinctrl/qcom/pinctrl-msm8996.c | 508 +++----
drivers/pinctrl/qcom/pinctrl-msm8998.c | 380 +++--
drivers/pinctrl/qcom/pinctrl-msm8x74.c | 474 +++---
drivers/pinctrl/qcom/pinctrl-qcm2290.c | 230 ++-
drivers/pinctrl/qcom/pinctrl-qcs404.c | 388 +++--
drivers/pinctrl/qcom/pinctrl-qdf2xxx.c | 6 +-
drivers/pinctrl/qcom/pinctrl-qdu1000.c | 249 ++-
drivers/pinctrl/qcom/pinctrl-sa8775p.c | 308 ++--
drivers/pinctrl/qcom/pinctrl-sc7180.c | 254 ++--
drivers/pinctrl/qcom/pinctrl-sc7280.c | 322 ++--
drivers/pinctrl/qcom/pinctrl-sc8180x.c | 286 ++--
drivers/pinctrl/qcom/pinctrl-sc8280xp.c | 358 +++--
drivers/pinctrl/qcom/pinctrl-sdm660.c | 387 +++--
drivers/pinctrl/qcom/pinctrl-sdm670.c | 284 ++--
drivers/pinctrl/qcom/pinctrl-sdm845.c | 286 ++--
drivers/pinctrl/qcom/pinctrl-sdx55.c | 190 ++-
drivers/pinctrl/qcom/pinctrl-sdx65.c | 194 ++-
drivers/pinctrl/qcom/pinctrl-sdx75.c | 1595 ++++++++++++++++++++
drivers/pinctrl/qcom/pinctrl-sm6115.c | 162 +-
drivers/pinctrl/qcom/pinctrl-sm6125.c | 282 ++--
drivers/pinctrl/qcom/pinctrl-sm6350.c | 296 ++--
drivers/pinctrl/qcom/pinctrl-sm6375.c | 358 +++--
drivers/pinctrl/qcom/pinctrl-sm8150.c | 286 ++--
drivers/pinctrl/qcom/pinctrl-sm8250.c | 258 ++--
drivers/pinctrl/qcom/pinctrl-sm8350.c | 298 ++--
drivers/pinctrl/qcom/pinctrl-sm8450.c | 300 ++--
drivers/pinctrl/qcom/pinctrl-sm8550.c | 320 ++--
49 files changed, 7757 insertions(+), 6313 deletions(-)
create mode 100644 Documentation/devicetree/bindings/pinctrl/qcom,sdx75-tlmm.yaml
create mode 100644 drivers/pinctrl/qcom/pinctrl-sdx75.c
--
2.7.4
next reply other threads:[~2023-05-10 15:00 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-10 15:00 Rohit Agarwal [this message]
2023-05-10 15:00 ` [PATCH v7 1/4] dt-bindings: pinctrl: qcom: Add SDX75 pinctrl devicetree compatible Rohit Agarwal
2023-05-10 15:00 ` [PATCH v7 2/4] pinctrl: qcom: Remove the msm_function struct Rohit Agarwal
2023-05-11 16:33 ` Bjorn Andersson
2023-05-12 8:56 ` Rohit Agarwal
2023-05-10 15:00 ` [PATCH v7 3/4] pinctrl: qcom: Refactor generic qcom pinctrl driver Rohit Agarwal
2023-05-11 16:34 ` Bjorn Andersson
2023-05-10 15:00 ` [PATCH v7 4/4] pinctrl: qcom: Add SDX75 pincontrol driver Rohit Agarwal
2023-05-11 16:46 ` Bjorn Andersson
2023-05-12 8:57 ` Rohit Agarwal
2023-05-11 13:36 ` [PATCH v7 0/4] Add pinctrl support for SDX75 Linus Walleij
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1683730825-15668-1-git-send-email-quic_rohiagar@quicinc.com \
--to=quic_rohiagar@quicinc.com \
--cc=agross@kernel.org \
--cc=andersson@kernel.org \
--cc=andy.shevchenko@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=konrad.dybcio@linaro.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=manivannan.sadhasivam@linaro.org \
--cc=netdev@vger.kernel.org \
--cc=richardcochran@gmail.com \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox