From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E7EAFC04EB8 for ; Fri, 30 Nov 2018 14:13:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B561920834 for ; Fri, 30 Nov 2018 14:13:04 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B561920834 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726852AbeLABW3 (ORCPT ); Fri, 30 Nov 2018 20:22:29 -0500 Received: from mga11.intel.com ([192.55.52.93]:36062 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726340AbeLABW3 (ORCPT ); Fri, 30 Nov 2018 20:22:29 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Nov 2018 06:13:02 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,298,1539673200"; d="scan'208";a="293800445" Received: from unknown (HELO xdu1-mobl) ([10.254.212.87]) by fmsmga005.fm.intel.com with ESMTP; 30 Nov 2018 06:13:01 -0800 Date: Fri, 30 Nov 2018 22:13:00 +0800 From: "Du, Alek" To: Adrian Hunter Cc: , , Subject: Re: [PATCH] sdhci: fix the fake timeout bug Message-ID: <20181130221300.4ef2956c@xdu1-mobl> In-Reply-To: <81ba3745-8277-d16e-3aad-48324f51dc8a@intel.com> References: <20181130150028.732896d8@xdu1-mobl> <81ba3745-8277-d16e-3aad-48324f51dc8a@intel.com> Organization: Intel APAC R&D X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 30 Nov 2018 11:19:03 +0200 Adrian Hunter wrote: > Commands and resets are under spin lock, so no possibility for > preemption, and certainly a few microseconds isn't going to make any > difference to these timeouts, so I don't see how this patch could > help. Thanks for your review. I believe my case the scheduling out delay sometime can reach 10~20 milliseconds... This may be due to the hypervisor... Please look at the sdhci_enable_clk() below, there is a window in clock stabilization check. The first check is to check status register, the second check is to check if time passed. That's why I can capture a case that after time passed, the actually clock control register indicated that clock is stable. So the error handling is wrong... Also the sdhci_send_command commands is not in spin lock There is a windows between mod_timer and real command send... Thanks, Alek > > I recently sent a patch for GLK laptops that had BIOS issues: > > https://marc.info/?l=linux-mmc&m=154270005901609 > > And also some improvements to error handling: > > https://marc.info/?l=linux-mmc&m=154229013900437 > > If those don't help, please share more details of the actual problem. Sorry, I can't see how this patches could fix my problem. > > > > > Signed-off-by: Alek Du > > --- > > drivers/mmc/host/sdhci.c | 19 ++++++++++++++++--- > > 1 file changed, 16 insertions(+), 3 deletions(-) > > > > diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c > > index 99bdae53fa2e..f88c49fc574e 100644 > > --- a/drivers/mmc/host/sdhci.c > > +++ b/drivers/mmc/host/sdhci.c > > @@ -218,12 +218,17 @@ void sdhci_reset(struct sdhci_host *host, u8 > > mask) /* hw clears the bit when it's done */ > > while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) { > > if (ktime_after(ktime_get(), timeout)) { > > + /* check it again, since there is a window > > between > > + bit check and time check */ > > + if (!(sdhci_readb(host, > > SDHCI_SOFTWARE_RESET) & mask)) > > + break; > > pr_err("%s: Reset 0x%x never completed.\n", > > mmc_hostname(host->mmc), > > (int)mask); sdhci_dumpregs(host); > > return; > > + } else { > > + udelay(10); > > } > > - udelay(10); > > } > > } > > EXPORT_SYMBOL_GPL(sdhci_reset); > > @@ -1395,9 +1400,10 @@ void sdhci_send_command(struct sdhci_host > > *host, struct mmc_command *cmd) timeout += > > DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ; else > > timeout += 10 * HZ; > > - sdhci_mod_timer(host, cmd->mrq, timeout); > > > > sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), > > SDHCI_COMMAND); > > + /* setup timer after command to avoid fake timeout */ > > + sdhci_mod_timer(host, cmd->mrq, timeout); > > } > > EXPORT_SYMBOL_GPL(sdhci_send_command); > > > > @@ -1611,12 +1617,19 @@ void sdhci_enable_clk(struct sdhci_host > > *host, u16 clk) while (!((clk = sdhci_readw(host, > > SDHCI_CLOCK_CONTROL)) & SDHCI_CLOCK_INT_STABLE)) { > > if (ktime_after(ktime_get(), timeout)) { > > + /* check it again since there is a window > > between > > + status check and time check */ > > + if ((clk = sdhci_readw(host, > > SDHCI_CLOCK_CONTROL)) > > + & SDHCI_CLOCK_INT_STABLE) > > + break; > > pr_err("%s: Internal clock never > > stabilised.\n", mmc_hostname(host->mmc)); > > sdhci_dumpregs(host); > > return; > > } > > - udelay(10); > > + else { > > + udelay(10); > > + } > > } > > > > clk |= SDHCI_CLOCK_CARD_EN; > > >