From: Frank Li <Frank.li@oss.nxp.com>
To: Larisa Grigore <larisa.grigore@oss.nxp.com>
Cc: NXP S32 Linux Team <s32@nxp.com>,
Alim Akhtar <alim.akhtar@samsung.com>,
Avri Altman <avri.altman@sandisk.com>,
Bart Van Assche <bvanassche@acm.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>, Frank Li <Frank.Li@nxp.com>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
"James E.J. Bottomley" <James.Bottomley@hansenpartnership.com>,
"Martin K. Petersen" <mkp@kernel.org>,
Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>,
Ajay Neeli <ajay.neeli@amd.com>,
Manivannan Sadhasivam <mani@kernel.org>,
Pedro Sousa <pedrom.sousa@synopsys.com>,
Hannes Reinicke <hare@suse.de>,
Joao Pinto <Joao.Pinto@synopsys.com>,
linux-scsi@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
linux-arm-msm@vger.kernel.org, clizzi@redhat.com,
aruizrui@redhat.com, eballetb@redhat.com, echanude@redhat.com
Subject: Re: [PATCH v5 08/12] scsi: ufs: dwc: Sort CBCRCTRL and CBREFCLKCTRL2 by offset
Date: Tue, 22 Sep 2026 13:40:14 -0500 [thread overview]
Message-ID: <arLLjqpp0iv1PCxQ@SMW015318> (raw)
In-Reply-To: <20260922073009.1449688-9-larisa.grigore@oss.nxp.com>
On Tue, Sep 22, 2026 at 09:30:05AM +0200, Larisa Grigore wrote:
> The RMMI attribute defines in ufshcd-dwc.h are otherwise listed in
> ascending register-offset order, but CBREFCLKCTRL2 (0x8132) and
> CBCRCTRL (0x811F) were placed at the top out of order. Move them down
> into their sorted position next to the other CBCREG* attributes.
>
> Pure cleanup, no functional change.
>
> Signed-off-by: Larisa Grigore <larisa.grigore@oss.nxp.com>
> ---
Nit: keep b4 review-by order, put it before your signed-off-by if need
respin patch.
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> drivers/ufs/host/ufshcd-dwc.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/ufs/host/ufshcd-dwc.h b/drivers/ufs/host/ufshcd-dwc.h
> index 53b523ef59df..1abf2b1deac4 100644
> --- a/drivers/ufs/host/ufshcd-dwc.h
> +++ b/drivers/ufs/host/ufshcd-dwc.h
> @@ -13,8 +13,6 @@
> #include <ufs/ufshcd.h>
>
> /* RMMI Attributes */
> -#define CBREFCLKCTRL2 0x8132
> -#define CBCRCTRL 0x811F
> #define CBC10DIRECTCONF2 0x810E
> #define CBRATESEL 0x8114
> #define CBCREGADDRLSB 0x8116
> @@ -24,6 +22,8 @@
> #define CBCREGRDLSB 0x811A
> #define CBCREGRDMSB 0x811B
> #define CBCREGRDWRSEL 0x811C
> +#define CBCRCTRL 0x811F
> +#define CBREFCLKCTRL2 0x8132
>
> #define CBREFREFCLK_GATE_OVR_EN BIT(7)
>
> --
> 2.43.0
>
>
next prev parent reply other threads:[~2026-09-22 18:40 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-22 7:29 [PATCH v5 00/12] Add S32N79RDB UFS support Larisa Grigore
2026-09-22 7:29 ` [PATCH v5 01/12] scsi: ufs: dwc: Return a negative error if the link is down Larisa Grigore
2026-09-22 7:29 ` [PATCH v5 02/12] ufs: unipro: Move Tx/Rx FSM state definitions to unipro.h Larisa Grigore
2026-09-22 7:30 ` [PATCH v5 03/12] ufs: unipro: Add TX/RX FSM state attributes Larisa Grigore
2026-09-22 7:30 ` [PATCH v5 04/12] ufs: host: Add common Hibern8 TX FSM polling helper Larisa Grigore
2026-09-22 7:30 ` [PATCH v5 05/12] scsi: ufs: Move Versal2 M-PHY CREG access helpers into ufshcd-dwc Larisa Grigore
2026-09-22 7:30 ` [PATCH v5 06/12] scsi: ufs: dwc: Export common clock divider and link status helpers Larisa Grigore
2026-09-22 7:30 ` [PATCH v5 07/12] dt-bindings: ufs: Add NXP S32N79 UFS host controller Larisa Grigore
2026-09-22 7:30 ` [PATCH v5 08/12] scsi: ufs: dwc: Sort CBCRCTRL and CBREFCLKCTRL2 by offset Larisa Grigore
2026-09-22 18:40 ` Frank Li [this message]
2026-09-22 7:30 ` [PATCH v5 09/12] scsi: ufs: Add NXP S32N79 UFS host controller driver Larisa Grigore
2026-09-22 18:51 ` Frank Li
2026-09-22 7:30 ` [PATCH v5 10/12] arm64: dts: freescale: s32n79: Add UFS host controller Larisa Grigore
2026-09-22 7:30 ` [PATCH v5 11/12] arm64: dts: freescale: s32n79-rdb: Enable UFS Larisa Grigore
2026-09-22 7:30 ` [PATCH v5 12/12] MAINTAINERS: Add NXP S32N7 UFS host controller entry Larisa Grigore
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=arLLjqpp0iv1PCxQ@SMW015318 \
--to=frank.li@oss.nxp.com \
--cc=Frank.Li@nxp.com \
--cc=James.Bottomley@hansenpartnership.com \
--cc=Joao.Pinto@synopsys.com \
--cc=ajay.neeli@amd.com \
--cc=alim.akhtar@samsung.com \
--cc=aruizrui@redhat.com \
--cc=avri.altman@sandisk.com \
--cc=bvanassche@acm.org \
--cc=clizzi@redhat.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=eballetb@redhat.com \
--cc=echanude@redhat.com \
--cc=festevam@gmail.com \
--cc=hare@suse.de \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=krzk+dt@kernel.org \
--cc=larisa.grigore@oss.nxp.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=mani@kernel.org \
--cc=mkp@kernel.org \
--cc=pedrom.sousa@synopsys.com \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=s32@nxp.com \
--cc=sai.krishna.potthuri@amd.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
all inboxes | Powered by JetHome®