Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752777AbbBKL6i (ORCPT ); Wed, 11 Feb 2015 06:58:38 -0500 Received: from mailout3.w1.samsung.com ([210.118.77.13]:18542 "EHLO mailout3.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752467AbbBKL6f (ORCPT ); Wed, 11 Feb 2015 06:58:35 -0500 X-AuditID: cbfec7f4-b7f126d000001e9a-7a-54db43578f95 Message-id: <54DB43E2.70203@samsung.com> Date: Wed, 11 Feb 2015 12:58:26 +0100 From: Andrzej Hajda User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-version: 1.0 Newsgroups: gmane.linux.documentation,gmane.linux.drivers.devicetree,gmane.linux.kernel.mmc,gmane.linux.kernel,gmane.linux.ports.arm.kernel To: Addy , Alim Akhtar Cc: robh+dt , pawel.moll@arm.com, Mark Rutland , ijc+devicetree@hellion.org.uk, galak@codeaurora.org, rdunlap@infradead.org, Seungwon Jeon , Jaehoon Chung , Chris Ball , Ulf Hansson , dinguyen@altera.com, =?UTF-8?B?SGVpa28gU3TDvGJuZXI=?= , Olof Johansson , Douglas Anderson , Sonny Rao , amstan@chromium.org, djkurtz@chromium.org, huangtao@rock-chips.com, "devicetree@vger.kernel.org" , hl@rock-chips.com, linux-doc@vger.kernel.org, yzq@rock-chips.com, zyw@rock-chips.com, zhangqing@rock-chips.com, "linux-mmc@vger.kernel.org" , "linux-kernel@vger.kernel.org" , kever.yang@rock-chips.com Subject: Re: [PATCH v2 1/2] mmc: dw_mmc: fix bug that cause 'Timeout sending command' References: <1423134801-23219-1-git-send-email-addy.ke@rock-chips.com> <1423466726-20833-1-git-send-email-addy.ke@rock-chips.com> <1423466726-20833-2-git-send-email-addy.ke@rock-chips.com> <54DAC534.4020708@rock-chips.com> In-reply-to: <54DAC534.4020708@rock-chips.com> Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 7bit X-Brightmail-Tracker: H4sIAAAAAAAAA02SW0iTcRjG+X+nfa5Wn6bxx3DGsDxUS0nij0RIRn7QjReSYXSYujzkpmxp WV0sSyNBt9RSlzqHh9RpxXROywOupWU6s4k6XWYhGB5KVFALs+Yu8u553vf3vs/NQ+NuM4Qn nSi9LpZJRckCikt8+NM7ciQqbCIysKTUC9VsrmKoevw2UnzPJ5HKagRIY7aQaKCmm0K9nypx dLdYQyLlvJZEm9/mSLT2sg9HzRWrOLLM1gE09iubRC1F6xTSZlcRyPqqlELmTSVA1aNDGOob XaaQqqiRQAv2IgJldZg5aLq/BKDFL0M46m2MQmXPqyg0/siGIc1UKx7qxWZ1qCi2obwBsE8V QwRrzcvF2Db1Zw5b92yFYptqA1h9/UOKtY+0U+zwu0ySHZvVYuyGuotg85rrAWscKcfZZT0/ Ync090ScODkxXSw7evIKN2Hp/QaZ2hF4c9GsAwqgO5gDXGjIBMPpewbg1Hvhx8kXVA7g0m5M NYA9GiXmNEsAtts7KAfFY/zgyPwU6dAEcwCqnhRzHJpi/OFGk22L8WDOQ03PHO7kXeFawSTh eLSLyQXw56plK86dOQOnfvQDxwJncjnQ2PX4n6HpPUwUVK7FO5N1GNSq3mwduDBCuK4fwBwM zvjCwkKJY4wz3rCpYQFXAVf1tjz1f0q9jaoAeD3wEKfFpspj4iVBQrlIIk+TxgtjUyR64CzH Siuo7AkxAYYGgp28CJUt0o0UpcszJCYAaVzgzgsPnYh048WJMm6JZSmXZWnJYrkJYLSLpwII Y47Vtg2gfYWyU7yAsNYH7orRG/md+KHoq1hn1GnZb5cERVmSdbfPzFJBrfG4ocKn+H5ZePdr +bClxdz4lnuprSGs8tyF+bPGwZAdfG+pn8YeEBqcnfmVF1+jW/W18c2mwWvBev826Z2uaFK/ /6KRP8kxxNoPtxtcvfuSYrUCQp4gCgrAZXLRX8U0IYH6AgAA Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 6285 Lines: 170 Hi Alim, On 02/11/2015 03:57 AM, Addy wrote: > > On 2015/02/10 23:22, Alim Akhtar wrote: >> Hi Addy, >> >> On Mon, Feb 9, 2015 at 12:55 PM, Addy Ke wrote: >>> Because of some uncertain factors, such as worse card or worse hardware, >>> DAT[3:0](the data lines) may be pulled down by card, and mmc controller >>> will be in busy state. This should not happend when mmc controller >>> send command to update card clocks. If this happends, mci_send_cmd will >>> be failed and we will get 'Timeout sending command', and then system will >>> be blocked. To avoid this, we need reset mmc controller. >>> >>> Signed-off-by: Addy Ke >>> --- >>> drivers/mmc/host/dw_mmc.c | 28 ++++++++++++++++++++++++++++ >>> 1 file changed, 28 insertions(+) >>> >>> diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c >>> index 4d2e3c2..b0b57e3 100644 >>> --- a/drivers/mmc/host/dw_mmc.c >>> +++ b/drivers/mmc/host/dw_mmc.c >>> @@ -100,6 +100,7 @@ struct idmac_desc { >>> }; >>> #endif /* CONFIG_MMC_DW_IDMAC */ >>> >>> +static int dw_mci_card_busy(struct mmc_host *mmc); >>> static bool dw_mci_reset(struct dw_mci *host); >>> static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset); >>> >>> @@ -888,6 +889,31 @@ static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg) >>> cmd, arg, cmd_status); >>> } >>> >>> +static void dw_mci_wait_busy(struct dw_mci_slot *slot) >>> +{ >>> + struct dw_mci *host = slot->host; >>> + unsigned long timeout = jiffies + msecs_to_jiffies(500); >>> + >> Why 500 msec? > This timeout value is the same as mci_send_cmd: > static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg) > { > struct dw_mci *host = slot->host; > unsigned long timeout = jiffies + msecs_to_jiffies(500); > .... > } > > I have not clear that which is suitable. > Do you have any suggestion on it? >> >>> + do { >>> + if (!dw_mci_card_busy(slot->mmc)) >>> + return; >>> + cpu_relax(); >>> + } while (time_before(jiffies, timeout)); >>> + >>> + dev_err(host->dev, "Data busy (status %#x)\n", >>> + mci_readl(slot->host, STATUS)); >>> + >>> + /* >>> + * Data busy, this should not happend when mmc controller send command >>> + * to update card clocks in non-volt-switch state. If it happends, we >>> + * should reset controller to avoid getting "Timeout sending command". >>> + */ >>> + dw_mci_ctrl_reset(host, SDMMC_CTRL_ALL_RESET_FLAGS); >>> + >> Why you need to reset all blocks? may be CTRL_RESET is good enough here. > I have tested on rk3288, if only reset ctroller, data busy bit will not > be cleaned,and we will still get > > "Timeout sending command". > >> >>> + /* Fail to reset controller or still data busy, WARN_ON! */ >>> + WARN_ON(dw_mci_card_busy(slot->mmc)); >>> +} >>> + >>> static void dw_mci_setup_bus(struct dw_mci_slot *slot, bool force_clkinit) >>> { >>> struct dw_mci *host = slot->host; >>> @@ -899,6 +925,8 @@ static void dw_mci_setup_bus(struct dw_mci_slot *slot, bool force_clkinit) >>> /* We must continue to set bit 28 in CMD until the change is complete */ >>> if (host->state == STATE_WAITING_CMD11_DONE) >>> sdmmc_cmd_bits |= SDMMC_CMD_VOLT_SWITCH; >>> + else >>> + dw_mci_wait_busy(slot); >>> >> hmm...I would suggest you to call dw_mci_wait_busy() from inside >> mci_send_cmd(), seems like dw_mmc hangs while sending update clock cmd >> in multiple cases.see [1] >> >> [1]: http://permalink.gmane.org/gmane.linux.kernel.mmc/31140 > I think this patch is more reasonable. > So I will resend patches based on this patch. > thank you! I have tested your patches instead [1] above and they do not solve my issue: Board: odroid-xu3/exynos5422/dw_mmc_250a. MMC card: absent, broken-cd quirk SD card: present System hangs during boot after few minutes kernel spits: [ 242.188098] INFO: task kworker/u16:1:50 blocked for more than 120 seconds. [ 242.193524] Not tainted 3.19.0-next-20150210-00002-gf96831b-dirty #3834 [ 242.200622] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. [ 242.208422] kworker/u16:1 D c04766ac 0 50 2 0x00000000 [ 242.214756] Workqueue: kmmcd mmc_rescan [ 242.218553] [] (__schedule) from [] (schedule+0x34/0x98) [ 242.225591] [] (schedule) from [] (schedule_timeout+0x110/0x164) [ 242.233302] [] (schedule_timeout) from [] (wait_for_common+0xb8/0x14c) [ 242.241539] [] (wait_for_common) from [] (mmc_wait_for_req+0x68/0x17c) [ 242.249861] [] (mmc_wait_for_req) from [] (mmc_wait_for_cmd+0x80/0xa0) [ 242.258002] [] (mmc_wait_for_cmd) from [] (mmc_go_idle+0x78/0xf8) [ 242.265796] [] (mmc_go_idle) from [] (mmc_rescan+0x280/0x314) [ 242.273253] [] (mmc_rescan) from [] (process_one_work+0x120/0x324) [ 242.281135] [] (process_one_work) from [] (worker_thread+0x30/0x42c) [ 242.289194] [] (worker_thread) from [] (kthread+0xd8/0xf4) [ 242.296389] [] (kthread) from [] (ret_from_fork+0x14/0x34) Just for record, Exynos4412/dw_mmc_240a with the same configuration (no MMC card, broken-cd) works OK without patches. Regards Andrzej >> >>> if (!clock) { >>> mci_writel(host, CLKENA, 0); >>> -- >>> 1.8.3.2 >>> >>> >>> >>> _______________________________________________ >>> linux-arm-kernel mailing list >>> linux-arm-kernel@lists.infradead.org >>> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel >> >> > > > -- > To unsubscribe from this list: send the line "unsubscribe linux-doc" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/