lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <n5dd7fblsfppyfci3fsxyqqchc7pdaml2q5737hprbi2q6wvso@rig42wwnyad2>
Date: Thu, 24 Oct 2024 13:12:45 -0500
From: Bjorn Andersson <andersson@...nel.org>
To: Ram Prakash Gupta <quic_rampraka@...cinc.com>
Cc: Adrian Hunter <adrian.hunter@...el.com>, 
	Ulf Hansson <ulf.hansson@...aro.org>, linux-mmc@...r.kernel.org, linux-arm-msm@...r.kernel.org, 
	linux-kernel@...r.kernel.org, quic_cang@...cinc.com, quic_nguyenb@...cinc.com, 
	quic_pragalla@...cinc.com, quic_sayalil@...cinc.com, quic_nitirawa@...cinc.com, 
	quic_sachgupt@...cinc.com, quic_bhaskarv@...cinc.com, quic_narepall@...cinc.com, 
	kernel@...cinc.com
Subject: Re: [PATCH 1/1] mmc: sdhci-msm: Toggle the FIFO write clock after
 ungate

On Tue, Oct 22, 2024 at 04:40:25PM GMT, Ram Prakash Gupta wrote:
> For Qualcomm SoCs with sdcc minor version 6B and more, command path
> state machine is getting corrupted post clock ungate which is leading
> to software timeout.
> 
> Toggle the write fifo clock to reset the async fifo to fix this issue.
> 
> Signed-off-by: Ram Prakash Gupta <quic_rampraka@...cinc.com>
> ---
>  drivers/mmc/host/sdhci-msm.c | 41 ++++++++++++++++++++++++++++++++++++
>  1 file changed, 41 insertions(+)
> 
> diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c
> index e113b99a3eab..c2ccdac21232 100644
> --- a/drivers/mmc/host/sdhci-msm.c
> +++ b/drivers/mmc/host/sdhci-msm.c
> @@ -146,6 +146,7 @@
>  /* CQHCI vendor specific registers */
>  #define CQHCI_VENDOR_CFG1	0xA00
>  #define CQHCI_VENDOR_DIS_RST_ON_CQ_EN	(0x3 << 13)
> +#define RCLK_TOGGLE BIT(1)
>  
>  struct sdhci_msm_offset {
>  	u32 core_hc_mode;
> @@ -290,6 +291,7 @@ struct sdhci_msm_host {
>  	u32 dll_config;
>  	u32 ddr_config;
>  	bool vqmmc_enabled;
> +	bool toggle_fifo_clk;
>  };
>  
>  static const struct sdhci_msm_offset *sdhci_priv_msm_offset(struct sdhci_host *host)
> @@ -1162,6 +1164,39 @@ static int sdhci_msm_restore_sdr_dll_config(struct sdhci_host *host)
>  	return ret;
>  }
>  
> +/*
> + * After MCLK ugating, toggle the FIFO write clock to get
> + * the FIFO pointers and flags to valid state.
> + */
> +static void sdhci_msm_toggle_fifo_write_clk(struct sdhci_host *host)
> +{
> +	u32 config;
> +	struct mmc_ios ios = host->mmc->ios;
> +	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
> +	struct sdhci_msm_host *msm_host = sdhci_pltfm_priv(pltfm_host);
> +	const struct sdhci_msm_offset *msm_offset = msm_host->offset;
> +
> +	if ((msm_host->tuning_done || ios.enhanced_strobe) &&
> +		host->mmc->ios.timing == MMC_TIMING_MMC_HS400) {
> +		/*
> +		 * Select MCLK as DLL input clock.
> +		 */

Seems you could fit this in a single-line comment, perhaps with an empty
line above if you want to create some separation(?)

> +		config = readl_relaxed(host->ioaddr + msm_offset->core_dll_config_3);
> +		config |= RCLK_TOGGLE;
> +		writel_relaxed(config, host->ioaddr + msm_offset->core_dll_config_3);
> +
> +		/* ensure above write as toggling same bit quickly */

"same bit quickly" is completely arbitrary. Please state exactly what
you need to wait for? E.g. is it some number of some clock ticks? If so,
which clock and is it 1, 5, or 42 ticks?

> +		wmb();

This does not guarantee that the write completes before the delay.

If you want to know that the write hit the hardware, before the sleep,
issue a readl.

Regards,
Bjorn

> +		udelay(2);
> +
> +		/*
> +		 * Select RCLK as DLL input clock
> +		 */
> +		config &= ~RCLK_TOGGLE;
> +		writel_relaxed(config, host->ioaddr + msm_offset->core_dll_config_3);
> +	}
> +}
> +
>  static void sdhci_msm_set_cdr(struct sdhci_host *host, bool enable)
>  {
>  	const struct sdhci_msm_offset *msm_offset = sdhci_priv_msm_offset(host);
> @@ -2587,6 +2622,9 @@ static int sdhci_msm_probe(struct platform_device *pdev)
>  	if (core_major == 1 && core_minor >= 0x71)
>  		msm_host->uses_tassadar_dll = true;
>  
> +	if (core_major == 1 && core_minor >= 0x6B)
> +		msm_host->toggle_fifo_clk = true;
> +
>  	ret = sdhci_msm_register_vreg(msm_host);
>  	if (ret)
>  		goto clk_disable;
> @@ -2720,6 +2758,9 @@ static __maybe_unused int sdhci_msm_runtime_resume(struct device *dev)
>  				       msm_host->bulk_clks);
>  	if (ret)
>  		return ret;
> +
> +	if (msm_host->toggle_fifo_clk)
> +		sdhci_msm_toggle_fifo_write_clk(host);
>  	/*
>  	 * Whenever core-clock is gated dynamically, it's needed to
>  	 * restore the SDR DLL settings when the clock is ungated.
> -- 
> 2.17.1
> 
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ