U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Sumit Garg <sumit.garg@kernel.org>
To: Casey Connolly <casey.connolly@linaro.org>
Cc: Simon Glass <sjg@chromium.org>, Tom Rini <trini@konsulko.com>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Lukasz Majewski <lukma@denx.de>,
	Sean Anderson <seanga2@gmail.com>,
	u-boot@lists.denx.de, u-boot-qcom@groups.io,
	Sumit Garg <sumit.garg@oss.qualcomm.com>
Subject: Re: [PATCH v2 8/8] pinctrl: qcom: qcm2290: fix off by 1 in pin_count
Date: Fri, 2 May 2025 11:32:44 +0530	[thread overview]
Message-ID: <aBRgBFq-CPhOlxp-@sumit-X1> (raw)
In-Reply-To: <20250411-livetree-fixup-v2-8-1236823377bb@linaro.org>

Hi Casey,

On Fri, Apr 11, 2025 at 02:47:45PM +0200, Caleb Connolly wrote:
> There are 134 pins not 133, oops! This fixes the sdcard on the RB1 as
> the pins now all get configured correctly.
> 
> Fixes: 0ecb8cfcb930 ("pinctrl: qcom: add qcm2290 pinctrl driver")
> Reviewed-by: Sumit Garg <sumit.garg@oss.qualcomm.com>
> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
> Tested-by: Sumit Garg <sumit.garg@oss.qualcomm.com>
> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
> ---
>  drivers/pinctrl/qcom/pinctrl-qcm2290.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

I think this is an independent fix for SD card to work on RB1. Can you
queue it for v2025.07?

Also, I am not sure if you are planning this complete series for
v2025.07. If not then can we atleast have a DT override for USB DR mode
to make it work on RB1 in v2025.07?

-Sumit

> diff --git a/drivers/pinctrl/qcom/pinctrl-qcm2290.c b/drivers/pinctrl/qcom/pinctrl-qcm2290.c
> index 0c2222ce663e6d584d229e7521f88fedf8aa19da..84f76b63b93ad78182524661dba561672feb4c85 100644
> --- a/drivers/pinctrl/qcom/pinctrl-qcm2290.c
> +++ b/drivers/pinctrl/qcom/pinctrl-qcm2290.c
> @@ -44,9 +44,9 @@ static int qcm2290_get_function_mux(__maybe_unused unsigned int pin, unsigned in
>  }
>  
>  struct msm_pinctrl_data qcm2290_data = {
>  	.pin_data = {
> -		.pin_count = 133,
> +		.pin_count = 134,
>  		.special_pins_start = 127,
>  	},
>  	.functions_count = ARRAY_SIZE(msm_pinctrl_functions),
>  	.get_function_name = qcm2290_get_function_name,
> 
> -- 
> 2.49.0
> 

  reply	other threads:[~2025-05-02  6:02 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-11 12:47 [PATCH v2 0/8] Qualcomm: cleanup OF_LIVE fixup and fix RB1/2 Caleb Connolly
2025-04-11 12:47 ` [PATCH v2 1/8] event: signal when livetree has been built Caleb Connolly
2025-04-11 14:11   ` Neil Armstrong
2025-04-11 18:27   ` Simon Glass
2025-04-14 12:33     ` Caleb Connolly
2025-04-17 21:37       ` Simon Glass
2025-04-11 12:47 ` [PATCH v2 2/8] mach-snapdragon: use EVT_OF_LIVE_INIT to apply DT fixups Caleb Connolly
2025-04-11 14:10   ` Neil Armstrong
2025-04-11 12:47 ` [PATCH v2 3/8] mach-snapdragon: of_fixup: skip disabled USB nodes Caleb Connolly
2025-04-11 12:47 ` [PATCH v2 4/8] mach-snapdragon: of_fixup: remove confusing log message Caleb Connolly
2025-04-11 14:11   ` Neil Armstrong
2025-04-11 12:47 ` [PATCH v2 5/8] mach-snapdragon: of_fixup: update comment Caleb Connolly
2025-04-11 14:12   ` Neil Armstrong
2025-04-11 12:47 ` [PATCH v2 6/8] mach-snapdragon: of_fixup: set dr_mode for RB1/2 boards Caleb Connolly
2025-04-11 12:47 ` [PATCH v2 7/8] clk/qcom: qcm2290: show clock name in set_rate() Caleb Connolly
2025-04-11 12:47 ` [PATCH v2 8/8] pinctrl: qcom: qcm2290: fix off by 1 in pin_count Caleb Connolly
2025-05-02  6:02   ` Sumit Garg [this message]
2025-05-02 16:26 ` [PATCH v2 0/8] Qualcomm: cleanup OF_LIVE fixup and fix RB1/2 Tom Rini
2025-05-03  2:09   ` Simon Glass
2025-05-03 16:58     ` Tom Rini
2025-05-06 13:24       ` Simon Glass

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=aBRgBFq-CPhOlxp-@sumit-X1 \
    --to=sumit.garg@kernel.org \
    --cc=casey.connolly@linaro.org \
    --cc=lukma@denx.de \
    --cc=neil.armstrong@linaro.org \
    --cc=seanga2@gmail.com \
    --cc=sjg@chromium.org \
    --cc=sumit.garg@oss.qualcomm.com \
    --cc=trini@konsulko.com \
    --cc=u-boot-qcom@groups.io \
    --cc=u-boot@lists.denx.de \
    /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