ARM Sunxi Platform Development
 help / color / mirror / Atom feed
From: Andre Przywara <andre.przywara@arm.com>
To: Chen-Yu Tsai <wens@csie.org>
Cc: Ulf Hansson <ulf.hansson@linaro.org>,
	Jernej Skrabec <jernej.skrabec@gmail.com>,
	Samuel Holland <samuel@sholland.org>,
	linux-mmc@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-sunxi@lists.linux.dev, Yangtao Li <tiny.windzz@gmail.com>,
	Cody Eksal <masterr3c0rd@epochal.quest>,
	Parthiban <parthiban@linumiz.com>,
	stable@vger.kernel.org
Subject: Re: [PATCH] mmc: sunxi-mmc: Fix A100 compatible description
Date: Sun, 10 Nov 2024 10:21:57 +0000	[thread overview]
Message-ID: <20241110102157.2703463e@minigeek.lan> (raw)
In-Reply-To: <CAGb2v64HUp4Xwgc3fw1fMVTBQFV2kHSVbs7=XBufzJpQ9hkuzg@mail.gmail.com>

On Sun, 10 Nov 2024 17:04:08 +0800
Chen-Yu Tsai <wens@csie.org> wrote:

Hi,

> On Thu, Nov 7, 2024 at 9:43 AM Andre Przywara <andre.przywara@arm.com> wrote:
> >
> > It turns out that the Allwinner A100/A133 SoC only supports 8K DMA
> > blocks (13 bits wide), for both the SD/SDIO and eMMC instances.
> > And while this alone would make a trivial fix, the H616 falls back to
> > the A100 compatible string, so we have to now match the H616 compatible
> > string explicitly against the description advertising 64K DMA blocks.  
> 
> Would be nice to know how this was discovered, and how the correct size
> was determined. As far as I could find, the A133 user manual says its
> 64K.

Mmh, my copy (Revision 1.1, Jul.14, 2020) only mentions bits[12:0] in
the DES1 DMA descriptor details, unconditional of SMHC0/1/2. And yes,
this is in contradiction to the prose section in "5.3.1. Overview",
which mentions a "Block size of 1 to 65535 bytes".
Also that matches the observation: eMMC was working fine (as it was
already limited to 8K), and the SD card was *somewhat* working: I could
mount a FAT filesystem, and even list the (rather short) root
directory, but any further action (reading file, benchmarking) would
hang. Which would make sense given that the first actions probably
don't ask for a block larger than 8K.

Cheers,
Andre



> 
> ChenYu
> 
> > As the A100 is now compatible with the D1 description, let the A100
> > compatible string point to that block instead, and introduce an explicit
> > match against the H616 string, pointing to the old description.
> > Also remove the redundant setting of clk_delays to NULL on the way.
> >
> > Fixes: 3536b82e5853 ("mmc: sunxi: add support for A100 mmc controller")
> > Cc: stable@vger.kernel.org
> > Signed-off-by: Andre Przywara <andre.przywara@arm.com>
> > ---
> >  drivers/mmc/host/sunxi-mmc.c | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
> > index d3bd0ac99ec46..e0ab5fd635e6c 100644
> > --- a/drivers/mmc/host/sunxi-mmc.c
> > +++ b/drivers/mmc/host/sunxi-mmc.c
> > @@ -1191,10 +1191,9 @@ static const struct sunxi_mmc_cfg sun50i_a64_emmc_cfg = {
> >         .needs_new_timings = true,
> >  };
> >
> > -static const struct sunxi_mmc_cfg sun50i_a100_cfg = {
> > +static const struct sunxi_mmc_cfg sun50i_h616_cfg = {
> >         .idma_des_size_bits = 16,
> >         .idma_des_shift = 2,
> > -       .clk_delays = NULL,
> >         .can_calibrate = true,
> >         .mask_data0 = true,
> >         .needs_new_timings = true,
> > @@ -1217,8 +1216,9 @@ static const struct of_device_id sunxi_mmc_of_match[] = {
> >         { .compatible = "allwinner,sun20i-d1-mmc", .data = &sun20i_d1_cfg },
> >         { .compatible = "allwinner,sun50i-a64-mmc", .data = &sun50i_a64_cfg },
> >         { .compatible = "allwinner,sun50i-a64-emmc", .data = &sun50i_a64_emmc_cfg },
> > -       { .compatible = "allwinner,sun50i-a100-mmc", .data = &sun50i_a100_cfg },
> > +       { .compatible = "allwinner,sun50i-a100-mmc", .data = &sun20i_d1_cfg },
> >         { .compatible = "allwinner,sun50i-a100-emmc", .data = &sun50i_a100_emmc_cfg },
> > +       { .compatible = "allwinner,sun50i-h616-mmc", .data = &sun50i_h616_cfg },
> >         { /* sentinel */ }
> >  };
> >  MODULE_DEVICE_TABLE(of, sunxi_mmc_of_match);
> > --
> > 2.46.2
> >  
> 


  reply	other threads:[~2024-11-10 10:22 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-07  1:42 [PATCH] mmc: sunxi-mmc: Fix A100 compatible description Andre Przywara
2024-11-07  4:18 ` Parthiban
2024-11-10  9:04 ` Chen-Yu Tsai
2024-11-10 10:21   ` Andre Przywara [this message]
2024-11-10 11:14     ` Chen-Yu Tsai
2024-11-12 18:43 ` Ulf Hansson

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=20241110102157.2703463e@minigeek.lan \
    --to=andre.przywara@arm.com \
    --cc=jernej.skrabec@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=linux-sunxi@lists.linux.dev \
    --cc=masterr3c0rd@epochal.quest \
    --cc=parthiban@linumiz.com \
    --cc=samuel@sholland.org \
    --cc=stable@vger.kernel.org \
    --cc=tiny.windzz@gmail.com \
    --cc=ulf.hansson@linaro.org \
    --cc=wens@csie.org \
    /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