Linux MultiMedia Card development
 help / color / mirror / Atom feed
From: Adrian Hunter <adrian.hunter@intel.com>
To: Mohamed via Bugspray Bot <bugbot@kernel.org>,
	<linux-mmc@vger.kernel.org>, <ulf.hansson@linaro.org>,
	Yixun Lan <dlan@gentoo.org>
Subject: Re: Unaligned access in drivers/mmc/host/sdhci-of-k1.c (arch:ariscv soc:spacemit k1)
Date: Tue, 9 Dec 2025 09:35:36 +0200	[thread overview]
Message-ID: <f6031c0f-ef68-474e-8e21-6ce39a2cb25e@intel.com> (raw)
In-Reply-To: <20251205-b220841c0-b1d85d237308@bugzilla.kernel.org>

On 05/12/2025 23:00, Mohamed via Bugspray Bot wrote:
> Mohamed writes via Kernel.org Bugzilla:
> 
> There is an unaligned access in spacemit_sdhci_set_uhs_signaling that calls spacemit_sdhci_setbits(host, SDHCI_CTRL_VDD_180, SDHCI_HOST_CONTROL2);
> 
> As SDHCI_HOST_CONTROL2	0x3E the helper function spacemit_sdhci_setbits uses readl and writel functions, 
> ie.
> /* All helper functions will update clr/set while preserve rest bits */
> static inline void spacemit_sdhci_setbits(struct sdhci_host *host, u32 val, int reg)
> {
> 	sdhci_writel(host, sdhci_readl(host, reg) | val, reg);
> }
> 
> So you get an unaligned access exception/panic/oops with cause 5 on the read.
> 
> To reproduce this you need to enable the emmc in the dtb as none of the boards have this enabled. It seems a bit strange that the commit message says that the emmc is working, as it is disabled in the emmc, yet there is working version based on 6.6 which does work. Obviously, it must be my mistake as the commit message cannot possibly lie and say that a driver is complete and working.
> 
> View: https://bugzilla.kernel.org/show_bug.cgi?id=220841#c0
> You can reply to this message to join the discussion.

Adding Yixun Lan <dlan@gentoo.org>

Needs something like:

diff --git a/drivers/mmc/host/sdhci-of-k1.c b/drivers/mmc/host/sdhci-of-k1.c
index 0cc97e23a2f9..634a362fd66a 100644
--- a/drivers/mmc/host/sdhci-of-k1.c
+++ b/drivers/mmc/host/sdhci-of-k1.c
@@ -112,8 +112,12 @@ static void spacemit_sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned i
 
 	sdhci_set_uhs_signaling(host, timing);
 
-	if (!(host->mmc->caps2 & MMC_CAP2_NO_SDIO))
-		spacemit_sdhci_setbits(host, SDHCI_CTRL_VDD_180, SDHCI_HOST_CONTROL2);
+	if (!(host->mmc->caps2 & MMC_CAP2_NO_SDIO)) {
+		u16 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
+
+		ctrl_2 |= SDHCI_CTRL_VDD_180;
+		sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
+	}
 }
 
 static void spacemit_sdhci_set_clock(struct sdhci_host *host, unsigned int clock)


  reply	other threads:[~2025-12-09  7:35 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-05 21:00 Unaligned access in drivers/mmc/host/sdhci-of-k1.c (arch:ariscv soc:spacemit k1) Mohamed via Bugspray Bot
2025-12-09  7:35 ` Adrian Hunter [this message]
2025-12-11  1:10   ` Yixun Lan

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=f6031c0f-ef68-474e-8e21-6ce39a2cb25e@intel.com \
    --to=adrian.hunter@intel.com \
    --cc=bugbot@kernel.org \
    --cc=dlan@gentoo.org \
    --cc=linux-mmc@vger.kernel.org \
    --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