From: Andrew Jeffery <andrew@codeconstruct.com.au>
To: Cool Lee <cool_lee@aspeedtech.com>,
"adrian.hunter@intel.com" <adrian.hunter@intel.com>,
"ulf.hansson@linaro.org" <ulf.hansson@linaro.org>,
"joel@jms.id.au" <joel@jms.id.au>,
"p.zabel@pengutronix.de" <p.zabel@pengutronix.de>,
"linux-aspeed@lists.ozlabs.org" <linux-aspeed@lists.ozlabs.org>,
"openbmc@lists.ozlabs.org" <openbmc@lists.ozlabs.org>,
"linux-mmc@vger.kernel.org" <linux-mmc@vger.kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
BMC-SW <BMC-SW@aspeedtech.com>
Subject: Re: [PATCH 1/8] mmc: sdhci-of-aspeed: Fix sdhci software reset can't be cleared issue.
Date: Fri, 20 Jun 2025 17:13:06 +0930 [thread overview]
Message-ID: <2d17ec4f5f9e2cfd75902217a8dd621538a73bc2.camel@codeconstruct.com.au> (raw)
In-Reply-To: <TYSPR06MB7068A5F04CE0A5BDB03073C0957DA@TYSPR06MB7068.apcprd06.prod.outlook.com>
Hello,
On Thu, 2025-06-19 at 06:53 +0000, Cool Lee wrote:
>
> > > Replace sdhci software reset by scu reset from top.
> > >
> > > Signed-off-by: Cool Lee <cool_lee@aspeedtech.com>
> >
> > Can you please add a Fixes: tag?
> This patch wasn't used to fix a commit. This is a workaround for a hardware bug.
A hardware bug in which SoCs? AST2400-AST2700? Or just the AST2700?
> For this condition, do I need a Fixes?
If the bug exists for all SoCs it's a deficiency in the original driver
and so should have a Fixes: tag.
> >
> > > +
> > > + for (i = 0; i < ARRAY_SIZE(reg_array); i++)
> > > + sdhci_writel(host, save_array[i],
> > > +reg_array[i]);
> > > +
> > > + sdhci_writew(host, tran_mode,
> > SDHCI_TRANSFER_MODE);
> > > + writel(mmc8_mode, aspeed_sdc->regs);
> > > +
> > > + aspeed_sdhci_set_clock(host, host->clock);
> > > + }
> > > +
> > > + sdhci_reset(host, mask);
> >
> > Given that we do this after the SCU reset above, what exactly is the SCU reset
> > fixing? Can you provide more details?
> The issue is sdhci Software Reset ALL (0x12C[24]) cannot complete which means it's always being 1 and not back to 0.
> The root cause is when sdhci dma operates, it might hold some state signals which is not well cleared by Software Reset. These signals prevent Software Reset to be cleared.
> This is a hardware issue so that the workaround is resetting whole SDHCI controller from SCU reset.
Can you please put these details in the commit message?
>
> >
> > > +}
> > > +
> > > static const struct sdhci_ops aspeed_sdhci_ops = {
> > > .read_l = aspeed_sdhci_readl,
> > > .set_clock = aspeed_sdhci_set_clock,
> > > .get_max_clock = aspeed_sdhci_get_max_clock,
> > > .set_bus_width = aspeed_sdhci_set_bus_width,
> > > .get_timeout_clock = sdhci_pltfm_clk_get_max_clock,
> > > - .reset = sdhci_reset,
> > > + .reset = aspeed_sdhci_reset,
> > > .set_uhs_signaling = sdhci_set_uhs_signaling,
> > > };
> > >
> > > @@ -535,6 +582,12 @@ static int aspeed_sdc_probe(struct
> > > platform_device *pdev)
> > >
> > > spin_lock_init(&sdc->lock);
> > >
> > > + sdc->rst = devm_reset_control_get(&pdev->dev, NULL);
> > > + if (!IS_ERR(sdc->rst)) {
> > > + reset_control_assert(sdc->rst);
> > > + reset_control_deassert(sdc->rst);
> > > + }
> > > +
> >
> > The clock driver for the AST2400, AST2500 and AST2600 manages the reset as
> > part of managing the clock[1][2].
> >
> > [1]:
> > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers
> > /clk/clk-aspeed.c?h=v6.16-rc2#n71
> > [2]:
> > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers
> > /clk/clk-aspeed.c?h=v6.16-rc2#n209
> >
> > What you have here asks for a resets property, but that's not currently
> > specified in the devicetree binding.
> >
> > So: is the clock driver not doing the right thing given we enable the clock
> > directly below this hunk? If not, should we fix that instead?
> >
> > We can add the resets property to the binding, but I'd also like a better
> > explanation of the problem.
> For legacy projects, the clock property handles reset simultaneously in the clock driver.
> For new project AST2700, clock and reset are separated, and we add a reset property to the binding.
> Hence, the patch won't affect until the reset property to the binding.
> Should I add the reset property in this patch serious?
Yes, please.
Andrew
next prev parent reply other threads:[~2025-06-20 7:45 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-15 3:57 [PATCH 0/8] Aspeed SDHCI driver workaround and auto tune Cool Lee
2025-06-15 3:57 ` [PATCH 1/8] mmc: sdhci-of-aspeed: Fix sdhci software reset can't be cleared issue Cool Lee
2025-06-16 13:22 ` Philipp Zabel
2025-06-18 1:34 ` Cool Lee
2025-06-18 2:14 ` Andrew Jeffery
2025-06-19 6:53 ` Cool Lee
2025-06-20 7:43 ` Andrew Jeffery [this message]
2025-06-21 8:29 ` Cool Lee
2025-06-15 3:57 ` [PATCH 2/8] mmc: sdhci-of-aspeed: Add runtime tuning Cool Lee
2025-06-18 2:31 ` Andrew Jeffery
2025-06-19 6:57 ` Cool Lee
2025-06-15 3:57 ` [PATCH 3/8] mmc: sdhci-of-aspeed: Patch HOST_CONTROL2 register missing after top reset Cool Lee
2025-06-18 2:32 ` Andrew Jeffery
2025-06-19 6:57 ` Cool Lee
2025-06-15 3:57 ` [PATCH 4/8] mmc: sdhci-of-aspeed: Get max clockk by using default api Cool Lee
2025-06-18 2:39 ` Andrew Jeffery
2025-06-20 8:18 ` Cool Lee
2025-06-15 3:58 ` [PATCH 5/8] mmc: sdhci-of-aspeed: Fix null pointer Cool Lee
2025-06-18 2:49 ` Andrew Jeffery
2025-06-20 8:18 ` Cool Lee
2025-06-15 3:58 ` [PATCH 6/8] mmc: sdhci-of-aspeed: Add output timing phase tuning Cool Lee
2025-06-18 2:51 ` Andrew Jeffery
2025-06-20 8:19 ` Cool Lee
2025-06-15 3:58 ` [PATCH 7/8] mmc: sdhci-of-aspeed: Remove timing phase Cool Lee
2025-06-18 2:56 ` Andrew Jeffery
2025-06-20 10:23 ` Cool Lee
2025-06-24 23:31 ` Andrew Jeffery
2025-06-25 0:22 ` Cool Lee
2025-06-25 0:23 ` Andrew Jeffery
2025-06-15 3:58 ` [PATCH 8/8] mmc: sdhci-of-aspeed: Add sdr50 support Cool Lee
2025-06-18 3:06 ` Andrew Jeffery
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=2d17ec4f5f9e2cfd75902217a8dd621538a73bc2.camel@codeconstruct.com.au \
--to=andrew@codeconstruct.com.au \
--cc=BMC-SW@aspeedtech.com \
--cc=adrian.hunter@intel.com \
--cc=cool_lee@aspeedtech.com \
--cc=joel@jms.id.au \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-aspeed@lists.ozlabs.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=openbmc@lists.ozlabs.org \
--cc=p.zabel@pengutronix.de \
--cc=ulf.hansson@linaro.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;
as well as URLs for NNTP newsgroup(s).