[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <dgqpxhbq4qvr6gk7ykbu4i4c75ujtxhybvwyib23tlkijbes24@4neoy7quosxr>
Date: Mon, 25 Aug 2025 12:37:38 +0300
From: Dmitry Baryshkov <dmitry.baryshkov@....qualcomm.com>
To: Nickolay Goppen <setotau@...dex.ru>
Cc: Bjorn Andersson <andersson@...nel.org>,
Linus Walleij <linus.walleij@...aro.org>,
Rob Herring <robh@...nel.org>,
Krzysztof Kozlowski <krzk+dt@...nel.org>,
Conor Dooley <conor+dt@...nel.org>, linux-arm-msm@...r.kernel.org,
linux-gpio@...r.kernel.org, linux-kernel@...r.kernel.org,
devicetree@...r.kernel.org, ~postmarketos/upstreaming@...ts.sr.ht
Subject: Re: [PATCH 1/3] pinctrl: qcom: lpass-lpi: Introduce pin_offset
callback
On Sun, Aug 24, 2025 at 11:42:23PM +0300, Nickolay Goppen wrote:
> By default pin_offset is calculated by formula:
> LPI_TLMM_REG_OFFSET * pin_id. However not all platforms are using this
> pin_offset formula (e.g. SDM660 LPASS LPI uses a predefined array of
> offsets [1]), so add a callback to the default pin_offset function to
> add an ability for some platforms to use their own quirky pin_offset
> functions and add callbacks to pin_offset_default function for other
> platforms.
>
> [1] https://git.codelinaro.org/clo/la/kernel/msm-4.4/-/blob/LA.UM.7.2.c27-07400-sdm660.0/drivers/pinctrl/qcom/pinctrl-lpi.c#L107
>
> Signed-off-by: Nickolay Goppen <setotau@...dex.ru>
> ---
> drivers/pinctrl/qcom/pinctrl-lpass-lpi.c | 13 +++++++++++--
> drivers/pinctrl/qcom/pinctrl-lpass-lpi.h | 2 ++
> drivers/pinctrl/qcom/pinctrl-sc7280-lpass-lpi.c | 1 +
> drivers/pinctrl/qcom/pinctrl-sc8280xp-lpass-lpi.c | 1 +
> drivers/pinctrl/qcom/pinctrl-sm4250-lpass-lpi.c | 1 +
> drivers/pinctrl/qcom/pinctrl-sm6115-lpass-lpi.c | 1 +
> drivers/pinctrl/qcom/pinctrl-sm8250-lpass-lpi.c | 1 +
> drivers/pinctrl/qcom/pinctrl-sm8350-lpass-lpi.c | 1 +
> drivers/pinctrl/qcom/pinctrl-sm8450-lpass-lpi.c | 1 +
> drivers/pinctrl/qcom/pinctrl-sm8550-lpass-lpi.c | 1 +
> drivers/pinctrl/qcom/pinctrl-sm8650-lpass-lpi.c | 1 +
> 11 files changed, 22 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c
> index 57fefeb603f0e2502fccd14ba3982ae3cb591978..8ba0ebf12d8113cdc501e9fe97311ec0764fbef5 100644
> --- a/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c
> +++ b/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c
> @@ -38,16 +38,25 @@ struct lpi_pinctrl {
> const struct lpi_pinctrl_variant_data *data;
> };
>
> +u32 pin_offset_default(int pin_id)
Please use the prefix that matches the rest of the functions in the
file: lpi_pinctlr_.
> +{
> + return LPI_TLMM_REG_OFFSET * pin_id;
> +}
Missing EXPORT_MODULE_GPL here. However it might be better to convert
this to a macro or static inline in the header and call it directly it
the driver doesn't define the callback.
> +
> static int lpi_gpio_read(struct lpi_pinctrl *state, unsigned int pin,
> unsigned int addr)
> {
> - return ioread32(state->tlmm_base + LPI_TLMM_REG_OFFSET * pin + addr);
> + const u32 pin_offset = state->data->pin_offset(pin);
> +
> + return ioread32(state->tlmm_base + pin_offset + addr);
> }
>
> static int lpi_gpio_write(struct lpi_pinctrl *state, unsigned int pin,
> unsigned int addr, unsigned int val)
> {
> - iowrite32(val, state->tlmm_base + LPI_TLMM_REG_OFFSET * pin + addr);
> + const u32 pin_offset = state->data->pin_offset(pin);
> +
> + iowrite32(val, state->tlmm_base + pin_offset + addr);
>
> return 0;
> }
> diff --git a/drivers/pinctrl/qcom/pinctrl-lpass-lpi.h b/drivers/pinctrl/qcom/pinctrl-lpass-lpi.h
> index a9b2f65c1ebe0f8fb5d7814f8ef8b723c617c85b..3a2969ac85410e9fb796ec792d1349822257b3a0 100644
> --- a/drivers/pinctrl/qcom/pinctrl-lpass-lpi.h
> +++ b/drivers/pinctrl/qcom/pinctrl-lpass-lpi.h
> @@ -85,9 +85,11 @@ struct lpi_pinctrl_variant_data {
> const struct lpi_function *functions;
> int nfunctions;
> unsigned int flags;
> + u32 (*pin_offset)(int pin_id);
> };
>
> int lpi_pinctrl_probe(struct platform_device *pdev);
> void lpi_pinctrl_remove(struct platform_device *pdev);
> +u32 pin_offset_default(int pin_id);
>
> #endif /*__PINCTRL_LPASS_LPI_H__*/
> diff --git a/drivers/pinctrl/qcom/pinctrl-sc7280-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sc7280-lpass-lpi.c
> index 1161f0a91a002aaa9b1ba2f9ca13e94b2f145ec8..ed0c57fb1ed4770cce4afe7b1f3ec51aa3d44cf3 100644
> --- a/drivers/pinctrl/qcom/pinctrl-sc7280-lpass-lpi.c
> +++ b/drivers/pinctrl/qcom/pinctrl-sc7280-lpass-lpi.c
> @@ -125,6 +125,7 @@ static const struct lpi_pinctrl_variant_data sc7280_lpi_data = {
> .ngroups = ARRAY_SIZE(sc7280_groups),
> .functions = sc7280_functions,
> .nfunctions = ARRAY_SIZE(sc7280_functions),
> + .pin_offset = pin_offset_default,
> };
>
> static const struct of_device_id lpi_pinctrl_of_match[] = {
> diff --git a/drivers/pinctrl/qcom/pinctrl-sc8280xp-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sc8280xp-lpass-lpi.c
> index 0e839b6aaaf4bd88f078cf36091faa9c2c885518..40834242a7699352c63ad2ddc82ca3663a39275f 100644
> --- a/drivers/pinctrl/qcom/pinctrl-sc8280xp-lpass-lpi.c
> +++ b/drivers/pinctrl/qcom/pinctrl-sc8280xp-lpass-lpi.c
> @@ -162,6 +162,7 @@ static const struct lpi_pinctrl_variant_data sc8280xp_lpi_data = {
> .ngroups = ARRAY_SIZE(sc8280xp_groups),
> .functions = sc8280xp_functions,
> .nfunctions = ARRAY_SIZE(sc8280xp_functions),
> + .pin_offset = pin_offset_default,
> };
>
> static const struct of_device_id lpi_pinctrl_of_match[] = {
> diff --git a/drivers/pinctrl/qcom/pinctrl-sm4250-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sm4250-lpass-lpi.c
> index c0e178be9cfc3ea8578a39d8998033058f40dabf..69074c80744663268fc034019ca5523a18ce7f22 100644
> --- a/drivers/pinctrl/qcom/pinctrl-sm4250-lpass-lpi.c
> +++ b/drivers/pinctrl/qcom/pinctrl-sm4250-lpass-lpi.c
> @@ -213,6 +213,7 @@ static const struct lpi_pinctrl_variant_data sm4250_lpi_data = {
> .ngroups = ARRAY_SIZE(sm4250_groups),
> .functions = sm4250_functions,
> .nfunctions = ARRAY_SIZE(sm4250_functions),
> + .pin_offset = pin_offset_default,
> };
>
> static const struct of_device_id lpi_pinctrl_of_match[] = {
> diff --git a/drivers/pinctrl/qcom/pinctrl-sm6115-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sm6115-lpass-lpi.c
> index b7d9186861a2ffa9f3c00a660bde00858fff9462..651e52f4c886821ebb8207af3783da87758f1a30 100644
> --- a/drivers/pinctrl/qcom/pinctrl-sm6115-lpass-lpi.c
> +++ b/drivers/pinctrl/qcom/pinctrl-sm6115-lpass-lpi.c
> @@ -133,6 +133,7 @@ static const struct lpi_pinctrl_variant_data sm6115_lpi_data = {
> .ngroups = ARRAY_SIZE(sm6115_groups),
> .functions = sm6115_functions,
> .nfunctions = ARRAY_SIZE(sm6115_functions),
> + .pin_offset = pin_offset_default,
> };
>
> static const struct of_device_id lpi_pinctrl_of_match[] = {
> diff --git a/drivers/pinctrl/qcom/pinctrl-sm8250-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sm8250-lpass-lpi.c
> index 64494a86490e2f5d3e00184622f68097bbcdfff0..a693df05c4fdb40750f449a58817e2371e564dea 100644
> --- a/drivers/pinctrl/qcom/pinctrl-sm8250-lpass-lpi.c
> +++ b/drivers/pinctrl/qcom/pinctrl-sm8250-lpass-lpi.c
> @@ -123,6 +123,7 @@ static const struct lpi_pinctrl_variant_data sm8250_lpi_data = {
> .ngroups = ARRAY_SIZE(sm8250_groups),
> .functions = sm8250_functions,
> .nfunctions = ARRAY_SIZE(sm8250_functions),
> + .pin_offset = pin_offset_default,
> };
>
> static const struct of_device_id lpi_pinctrl_of_match[] = {
> diff --git a/drivers/pinctrl/qcom/pinctrl-sm8350-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sm8350-lpass-lpi.c
> index 7b146b4acfdf42e7dd69f1f022c0041b3e45b174..15d453482d68b8b9ae2d572f7538e05f83425a12 100644
> --- a/drivers/pinctrl/qcom/pinctrl-sm8350-lpass-lpi.c
> +++ b/drivers/pinctrl/qcom/pinctrl-sm8350-lpass-lpi.c
> @@ -125,6 +125,7 @@ static const struct lpi_pinctrl_variant_data sm8350_lpi_data = {
> .ngroups = ARRAY_SIZE(sm8350_groups),
> .functions = sm8350_functions,
> .nfunctions = ARRAY_SIZE(sm8350_functions),
> + .pin_offset = pin_offset_default,
> };
>
> static const struct of_device_id lpi_pinctrl_of_match[] = {
> diff --git a/drivers/pinctrl/qcom/pinctrl-sm8450-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sm8450-lpass-lpi.c
> index 439f6541622e924a2a77db7a8b15ccb709e7a53d..629a110963d610fe7b9667ea1abab66338711bf1 100644
> --- a/drivers/pinctrl/qcom/pinctrl-sm8450-lpass-lpi.c
> +++ b/drivers/pinctrl/qcom/pinctrl-sm8450-lpass-lpi.c
> @@ -191,6 +191,7 @@ static const struct lpi_pinctrl_variant_data sm8450_lpi_data = {
> .ngroups = ARRAY_SIZE(sm8450_groups),
> .functions = sm8450_functions,
> .nfunctions = ARRAY_SIZE(sm8450_functions),
> + .pin_offset = pin_offset_default,
> };
>
> static const struct of_device_id lpi_pinctrl_of_match[] = {
> diff --git a/drivers/pinctrl/qcom/pinctrl-sm8550-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sm8550-lpass-lpi.c
> index 73065919c8c2654670b07372bd2dd5839baf2979..1ebc93a61e965f8c0d29348586905cb0e38ae074 100644
> --- a/drivers/pinctrl/qcom/pinctrl-sm8550-lpass-lpi.c
> +++ b/drivers/pinctrl/qcom/pinctrl-sm8550-lpass-lpi.c
> @@ -199,6 +199,7 @@ static const struct lpi_pinctrl_variant_data sm8550_lpi_data = {
> .ngroups = ARRAY_SIZE(sm8550_groups),
> .functions = sm8550_functions,
> .nfunctions = ARRAY_SIZE(sm8550_functions),
> + .pin_offset = pin_offset_default,
> };
>
> static const struct of_device_id lpi_pinctrl_of_match[] = {
> diff --git a/drivers/pinctrl/qcom/pinctrl-sm8650-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sm8650-lpass-lpi.c
> index f9fcedf5a65d7115e605c54229ba0096b9081636..a6dfeef0f6fa0860f44808a4bb8e5db57d10d116 100644
> --- a/drivers/pinctrl/qcom/pinctrl-sm8650-lpass-lpi.c
> +++ b/drivers/pinctrl/qcom/pinctrl-sm8650-lpass-lpi.c
> @@ -206,6 +206,7 @@ static const struct lpi_pinctrl_variant_data sm8650_lpi_data = {
> .functions = sm8650_functions,
> .nfunctions = ARRAY_SIZE(sm8650_functions),
> .flags = LPI_FLAG_SLEW_RATE_SAME_REG,
> + .pin_offset = pin_offset_default,
> };
>
> static const struct of_device_id lpi_pinctrl_of_match[] = {
>
> --
> 2.51.0
>
--
With best wishes
Dmitry
Powered by blists - more mailing lists