* [PATCH 2/3] mmc:sunxi-mmc:fix clock division for timing mode
@ 2021-12-22 3:15 Michael Wu
2022-01-12 9:20 ` Maxime Ripard
0 siblings, 1 reply; 2+ messages in thread
From: Michael Wu @ 2021-12-22 3:15 UTC (permalink / raw)
To: ulf.hansson, mripard, wens, samuel, andre.przywara
Cc: jernej.skrabec, linux-mmc, linux-arm-kernel, linux-sunxi,
linux-kernel, Michael Wu
When use new timings,all speed mode requires a doubled module clock
if speed mode is ddr,requires a four times module clock
When use old timings,only 8 bit ddr requires a doubled module clock
Signed-off-by: Michael Wu <michael@allwinnertech.com>
---
drivers/mmc/host/sunxi-mmc.c | 27 +++++++++++++++------------
1 file changed, 15 insertions(+), 12 deletions(-)
diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
index afeefead6501..7b47ec453fb6 100644
--- a/drivers/mmc/host/sunxi-mmc.c
+++ b/drivers/mmc/host/sunxi-mmc.c
@@ -774,20 +774,23 @@ static int sunxi_mmc_clk_set_rate(struct sunxi_mmc_host *host,
if (!ios->clock)
return 0;
- /*
- * Under the old timing mode, 8 bit DDR requires the module
- * clock to be double the card clock. Under the new timing
- * mode, all DDR modes require a doubled module clock.
- *
- * We currently only support the standard MMC DDR52 mode.
- * This block should be updated once support for other DDR
- * modes is added.
+ /**
+ * When use new timings, all speed mode requires a doubled module clock.
+ * if speed mode is ddr, requires a four times module clock.
+ * When use old timings, only 8 bit ddr requires a doubled module clock.
*/
- if (ios->timing == MMC_TIMING_MMC_DDR52 &&
- (host->use_new_timings ||
- ios->bus_width == MMC_BUS_WIDTH_8)) {
- div = 2;
+ if (host->use_new_timings) {
clock <<= 1;
+ if (ios->timing == MMC_TIMING_MMC_DDR52) {
+ div = 2;
+ clock <<= 1;
+ }
+ } else {
+ if (ios->timing == MMC_TIMING_MMC_DDR52 &&
+ (ios->bus_width == MMC_BUS_WIDTH_8)) {
+ div = 2;
+ clock <<= 1;
+ }
}
if (host->use_new_timings && host->cfg->ccu_has_timings_switch) {
--
2.29.0
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 2/3] mmc:sunxi-mmc:fix clock division for timing mode
2021-12-22 3:15 [PATCH 2/3] mmc:sunxi-mmc:fix clock division for timing mode Michael Wu
@ 2022-01-12 9:20 ` Maxime Ripard
0 siblings, 0 replies; 2+ messages in thread
From: Maxime Ripard @ 2022-01-12 9:20 UTC (permalink / raw)
To: Michael Wu
Cc: ulf.hansson, wens, samuel, andre.przywara, jernej.skrabec,
linux-mmc, linux-arm-kernel, linux-sunxi, linux-kernel
[-- Attachment #1.1: Type: text/plain, Size: 2271 bytes --]
Hi Michael,
Thanks for your patch
On Wed, Dec 22, 2021 at 11:15:21AM +0800, Michael Wu wrote:
> When use new timings,all speed mode requires a doubled module clock
> if speed mode is ddr,requires a four times module clock
> When use old timings,only 8 bit ddr requires a doubled module clock
>
> Signed-off-by: Michael Wu <michael@allwinnertech.com>
> ---
> drivers/mmc/host/sunxi-mmc.c | 27 +++++++++++++++------------
> 1 file changed, 15 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
> index afeefead6501..7b47ec453fb6 100644
> --- a/drivers/mmc/host/sunxi-mmc.c
> +++ b/drivers/mmc/host/sunxi-mmc.c
> @@ -774,20 +774,23 @@ static int sunxi_mmc_clk_set_rate(struct sunxi_mmc_host *host,
> if (!ios->clock)
> return 0;
>
> - /*
> - * Under the old timing mode, 8 bit DDR requires the module
> - * clock to be double the card clock. Under the new timing
> - * mode, all DDR modes require a doubled module clock.
> - *
> - * We currently only support the standard MMC DDR52 mode.
> - * This block should be updated once support for other DDR
> - * modes is added.
> + /**
> + * When use new timings, all speed mode requires a doubled module clock.
> + * if speed mode is ddr, requires a four times module clock.
> + * When use old timings, only 8 bit ddr requires a doubled module clock.
> */
I found the original comment to be clearer, maybe we can change it to
something like:
/*
* Under the old timing mode, 8 bit DDR requires the module
* clock to be double the card clock. Under the new timing
* mode, all modes require a doubled module clock, and DDR modes
* require a quadrupled module clock.
*
* ...
> - if (ios->timing == MMC_TIMING_MMC_DDR52 &&
> - (host->use_new_timings ||
> - ios->bus_width == MMC_BUS_WIDTH_8)) {
> - div = 2;
> + if (host->use_new_timings) {
> clock <<= 1;
> + if (ios->timing == MMC_TIMING_MMC_DDR52) {
> + div = 2;
Shouldn't that be 4?
> + clock <<= 1;
> + }
> + } else {
> + if (ios->timing == MMC_TIMING_MMC_DDR52 &&
> + (ios->bus_width == MMC_BUS_WIDTH_8)) {
This creates some checkpatch.pl --strict warnings
Maxime
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
[-- Attachment #2: Type: text/plain, Size: 176 bytes --]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-01-12 9:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-22 3:15 [PATCH 2/3] mmc:sunxi-mmc:fix clock division for timing mode Michael Wu
2022-01-12 9:20 ` Maxime Ripard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox