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 v5 0/3] Add pinctrl support for SDX75
Date: Wed, 3 May 2023 11:09:37 +0530 [thread overview]
Message-ID: <1683092380-29551-1-git-send-email-quic_rohiagar@quicinc.com> (raw)
Hi,
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 (3):
dt-bindings: pinctrl: qcom: Add SDX75 pinctrl devicetree compatible
pinctrl: qcom: Refactor target specific 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 | 19 +-
drivers/pinctrl/qcom/pinctrl-apq8084.c | 17 +-
drivers/pinctrl/qcom/pinctrl-ipq4019.c | 12 +-
drivers/pinctrl/qcom/pinctrl-ipq5332.c | 12 +-
drivers/pinctrl/qcom/pinctrl-ipq6018.c | 12 +-
drivers/pinctrl/qcom/pinctrl-ipq8064.c | 17 +-
drivers/pinctrl/qcom/pinctrl-ipq8074.c | 12 +-
drivers/pinctrl/qcom/pinctrl-mdm9607.c | 17 +-
drivers/pinctrl/qcom/pinctrl-mdm9615.c | 12 +-
drivers/pinctrl/qcom/pinctrl-msm.c | 18 +-
drivers/pinctrl/qcom/pinctrl-msm.h | 17 +-
drivers/pinctrl/qcom/pinctrl-msm8226.c | 17 +-
drivers/pinctrl/qcom/pinctrl-msm8660.c | 17 +-
drivers/pinctrl/qcom/pinctrl-msm8909.c | 17 +-
drivers/pinctrl/qcom/pinctrl-msm8916.c | 17 +-
drivers/pinctrl/qcom/pinctrl-msm8953.c | 17 +-
drivers/pinctrl/qcom/pinctrl-msm8960.c | 17 +-
drivers/pinctrl/qcom/pinctrl-msm8976.c | 17 +-
drivers/pinctrl/qcom/pinctrl-msm8994.c | 17 +-
drivers/pinctrl/qcom/pinctrl-msm8996.c | 17 +-
drivers/pinctrl/qcom/pinctrl-msm8998.c | 21 +-
drivers/pinctrl/qcom/pinctrl-msm8x74.c | 22 +-
drivers/pinctrl/qcom/pinctrl-qcm2290.c | 22 +-
drivers/pinctrl/qcom/pinctrl-qcs404.c | 17 +-
drivers/pinctrl/qcom/pinctrl-qdf2xxx.c | 6 +-
drivers/pinctrl/qcom/pinctrl-qdu1000.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sa8775p.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sc7180.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sc7280.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sc8180x.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sc8280xp.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sdm660.c | 17 +-
drivers/pinctrl/qcom/pinctrl-sdm670.c | 27 +-
drivers/pinctrl/qcom/pinctrl-sdm845.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sdx55.c | 17 +-
drivers/pinctrl/qcom/pinctrl-sdx65.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sdx75.c | 1601 ++++++++++++++++++++
drivers/pinctrl/qcom/pinctrl-sm6115.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sm6125.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sm6350.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sm6375.c | 21 +-
drivers/pinctrl/qcom/pinctrl-sm8150.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sm8250.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sm8350.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sm8450.c | 22 +-
drivers/pinctrl/qcom/pinctrl-sm8550.c | 22 +-
49 files changed, 2138 insertions(+), 505 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-03 5:39 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-03 5:39 Rohit Agarwal [this message]
2023-05-03 5:39 ` [PATCH v5 1/3] dt-bindings: pinctrl: qcom: Add SDX75 pinctrl devicetree compatible Rohit Agarwal
2023-05-03 5:39 ` [PATCH v5 2/3] pinctrl: qcom: Refactor target specific pinctrl driver Rohit Agarwal
2023-05-03 9:41 ` Andy Shevchenko
2023-05-03 11:14 ` Rohit Agarwal
2023-05-03 13:53 ` Andy Shevchenko
2023-05-05 6:56 ` Rohit Agarwal
2023-05-03 5:39 ` [PATCH v5 3/3] pinctrl: qcom: Add SDX75 pincontrol driver Rohit Agarwal
2023-05-03 9:47 ` Andy Shevchenko
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=1683092380-29551-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;
as well as URLs for NNTP newsgroup(s).