From: Matthew Schwartz <matthew.schwartz@linux.dev>
To: Adrian Hunter <adrian.hunter@intel.com>,
Ulf Hansson <ulf.hansson@linaro.org>,
Ben Chuang <ben.chuang@genesyslogic.com.tw>
Cc: linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org,
stable@vger.kernel.org
Subject: Re: [PATCH] mmc: sdhci-pci-gli: fix GL9750 DMA write corruption
Date: Fri, 27 Feb 2026 17:26:33 -0800 [thread overview]
Message-ID: <752b26fc-45e2-4c4b-aa9b-48a1112b837a@linux.dev> (raw)
In-Reply-To: <1e71a22b-48d5-4a5f-87d5-860a6cb9a04d@intel.com>
On 2/27/26 1:16 AM, Adrian Hunter wrote:
> On 27/02/2026 09:59, Matthew Schwartz wrote:
>> The GL9750 SD host controller has intermittent data corruption during
>> DMA write operations. The GM_BURST register's R_OSRC_Lmt field
>> (bits 17:16), which limits outstanding DMA read requests from system
>> memory, is not being cleared during initialization. The Windows driver
>> sets R_OSRC_Lmt to zero, limiting requests to the smallest unit.
>>
>> Clear R_OSRC_Lmt to match the Windows driver behavior. This eliminates
>> write corruption verified with f3write/f3read tests while maintaining
>> DMA performance.
>>
>> Cc: stable@vger.kernel.org
>> Fixes: e51df6ce668a ("mmc: host: sdhci-pci: Add Genesys Logic GL975x support")
>> Closes: https://lore.kernel.org/linux-mmc/33d12807-5c72-41ce-8679-57aa11831fad@linux.dev/
>> Signed-off-by: Matthew Schwartz <matthew.schwartz@linux.dev>
>
> Ben wrote "So I think your patch setting R_OSRC_Lmt to zero is reasonable."
> Can be have a Reviewed-by tag also?
Wasn't sure about the etiquette of adding a Reviewed-by without an explicit tag in an email,
but happy to re-spin a v2 and add that if it's wanted.
>
> Nevertheless:
>
> Acked-by: Adrian Hunter <adrian.hunter@intel.com>
>
>> ---
>> Link to RFC: https://lore.kernel.org/all/20260117234800.931664-1-matthew.schwartz@linux.dev/
>> Changes from RFC -> v1: use the proper name for the register field
>> ---
>> drivers/mmc/host/sdhci-pci-gli.c | 8 ++++++++
>> 1 file changed, 8 insertions(+)
>>
>> diff --git a/drivers/mmc/host/sdhci-pci-gli.c b/drivers/mmc/host/sdhci-pci-gli.c
>> index b0f91cc9e40e4..7a7be3f7bee6b 100644
>> --- a/drivers/mmc/host/sdhci-pci-gli.c
>> +++ b/drivers/mmc/host/sdhci-pci-gli.c
>> @@ -26,6 +26,9 @@
>> #define GLI_9750_WT_EN_ON 0x1
>> #define GLI_9750_WT_EN_OFF 0x0
>>
>> +#define SDHCI_GLI_9750_GM_BURST_SIZE 0x510
>> +#define SDHCI_GLI_9750_GM_BURST_SIZE_R_OSRC_LMT GENMASK(17, 16)
>> +
>> #define SDHCI_GLI_9750_CFG2 0x848
>> #define SDHCI_GLI_9750_CFG2_L1DLY GENMASK(28, 24)
>> #define GLI_9750_CFG2_L1DLY_VALUE 0x1F
>> @@ -629,6 +632,11 @@ static void gl9750_hw_setting(struct sdhci_host *host)
>>
>> gl9750_wt_on(host);
>>
>> + /* clear R_OSRC_Lmt to avoid DMA write corruption */
>> + value = sdhci_readl(host, SDHCI_GLI_9750_GM_BURST_SIZE);
>> + value &= ~SDHCI_GLI_9750_GM_BURST_SIZE_R_OSRC_LMT;
>> + sdhci_writel(host, value, SDHCI_GLI_9750_GM_BURST_SIZE);
>> +
>> value = sdhci_readl(host, SDHCI_GLI_9750_CFG2);
>> value &= ~SDHCI_GLI_9750_CFG2_L1DLY;
>> /* set ASPM L1 entry delay to 7.9us */
>
next prev parent reply other threads:[~2026-02-28 1:26 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-27 7:59 [PATCH] mmc: sdhci-pci-gli: fix GL9750 DMA write corruption Matthew Schwartz
2026-02-27 9:16 ` Adrian Hunter
2026-02-28 1:26 ` Matthew Schwartz [this message]
2026-03-02 2:54 ` BenChuang[莊智量]
2026-03-02 6:28 ` Matthew Schwartz
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=752b26fc-45e2-4c4b-aa9b-48a1112b837a@linux.dev \
--to=matthew.schwartz@linux.dev \
--cc=adrian.hunter@intel.com \
--cc=ben.chuang@genesyslogic.com.tw \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=stable@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