From: Bart Van Assche <bvanassche@acm.org>
To: Manish Pandey <quic_mapa@quicinc.com>,
Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>,
"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>,
"Martin K. Petersen" <martin.petersen@oracle.com>
Cc: linux-arm-msm@vger.kernel.org, linux-scsi@vger.kernel.org,
linux-kernel@vger.kernel.org, quic_nitirawa@quicinc.com,
quic_cang@quicinc.com, quic_nguyenb@quicinc.com
Subject: Re: [PATCH V2 3/3] scsi: ufs-qcom: Add support for testbus registers
Date: Thu, 6 Mar 2025 09:05:15 -0800 [thread overview]
Message-ID: <34aa5237-75fb-4cd1-9b90-f0a3f73753f8@acm.org> (raw)
In-Reply-To: <20250305120355.16834-4-quic_mapa@quicinc.com>
On 3/5/25 4:03 AM, Manish Pandey wrote:
> This patch introduces support for dumping testbus registers,
> enhancing the debugging capabilities for UFS-QCOM drivers.
>
> Signed-off-by: Manish Pandey <quic_mapa@quicinc.com>
> ---
> drivers/ufs/host/ufs-qcom.c | 73 +++++++++++++++++++++++++++++++++++++
> 1 file changed, 73 insertions(+)
>
> diff --git a/drivers/ufs/host/ufs-qcom.c b/drivers/ufs/host/ufs-qcom.c
> index 7daee416eb8b..c8f95519b580 100644
> --- a/drivers/ufs/host/ufs-qcom.c
> +++ b/drivers/ufs/host/ufs-qcom.c
> @@ -1566,6 +1566,75 @@ int ufs_qcom_testbus_config(struct ufs_qcom_host *host)
> return 0;
> }
>
> +static void ufs_qcom_dump_testbus(struct ufs_hba *hba)
> +{
> + struct ufs_qcom_host *host = ufshcd_get_variant(hba);
> + u32 *testbus = NULL;
> + int i, j, nminor = 0, testbus_len = 0;
> + char *prefix;
Shouldn't the declarations be ordered from longest to shortest for new
code?
Has it been considered to annotate the 'testbus' declaration with __free
and to remove the kfree(testbus) call? See also <linux/cleanup.h>
> + switch (j) {
> + case TSTBUS_UAWM:
> + prefix = "TSTBUS_UAWM ";
> + break;
> + case TSTBUS_UARM:
> + prefix = "TSTBUS_UARM ";
> + break;
> + case TSTBUS_TXUC:
> + prefix = "TSTBUS_TXUC ";
> + break;
> + case TSTBUS_RXUC:
> + prefix = "TSTBUS_RXUC ";
> + break;
> + case TSTBUS_DFC:
> + prefix = "TSTBUS_DFC ";
> + break;
> + case TSTBUS_TRLUT:
> + prefix = "TSTBUS_TRLUT ";
> + break;
> + case TSTBUS_TMRLUT:
> + prefix = "TSTBUS_TMRLUT ";
> + break;
> + case TSTBUS_OCSC:
> + prefix = "TSTBUS_OCSC ";
> + break;
> + case TSTBUS_UTP_HCI:
> + prefix = "TSTBUS_UTP_HCI ";
> + break;
> + case TSTBUS_COMBINED:
> + prefix = "TSTBUS_COMBINED ";
> + break;
> + case TSTBUS_WRAPPER:
> + prefix = "TSTBUS_WRAPPER ";
> + break;
> + case TSTBUS_UNIPRO:
> + nminor = 256;
> + prefix = "TSTBUS_UNIPRO ";
> + break;
> + default:
> + break;
> + }
Has it been considered to convert the above switch-statement into an
array lookup?
> @@ -1682,6 +1751,10 @@ static void ufs_qcom_dump_dbg_regs(struct ufs_hba *hba)
> ufs_qcom_dump_mcq_hci_regs(hba);
> usleep_range(1000, 1100);
> }
> + ufshcd_dump_regs(hba, UFS_TEST_BUS, 4, "UFS_TEST_BUS ");
> + usleep_range(1000, 1100);
> + ufs_qcom_dump_testbus(hba);
> + usleep_range(1000, 1100);
> }
> }
Please add a comment that explains why the usleep_range() calls are
present.
Thanks,
Bart.
prev parent reply other threads:[~2025-03-06 17:05 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-05 12:03 [PATCH V2 0/3] scsi: ufs-qcom: Enable Dumping of Hibern8, MCQ, and Testbus Registers Manish Pandey
2025-03-05 12:03 ` [PATCH V2 1/3] scsi: ufs-qcom: Add support for dumping HW and SW hibern8 count Manish Pandey
2025-03-05 12:03 ` [PATCH V2 2/3] scsi: ufs-qcom: Add support for dumping MCQ registers Manish Pandey
2025-03-06 17:01 ` Bart Van Assche
2025-03-05 12:03 ` [PATCH V2 3/3] scsi: ufs-qcom: Add support for testbus registers Manish Pandey
2025-03-06 17:05 ` Bart Van Assche [this message]
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=34aa5237-75fb-4cd1-9b90-f0a3f73753f8@acm.org \
--to=bvanassche@acm.org \
--cc=James.Bottomley@HansenPartnership.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=manivannan.sadhasivam@linaro.org \
--cc=martin.petersen@oracle.com \
--cc=quic_cang@quicinc.com \
--cc=quic_mapa@quicinc.com \
--cc=quic_nguyenb@quicinc.com \
--cc=quic_nitirawa@quicinc.com \
/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