Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753217AbaKEEo4 (ORCPT ); Tue, 4 Nov 2014 23:44:56 -0500 Received: from avon.wwwdotorg.org ([70.85.31.133]:48686 "EHLO avon.wwwdotorg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751129AbaKEEov (ORCPT ); Tue, 4 Nov 2014 23:44:51 -0500 Message-ID: <5459AB41.8080101@wwwdotorg.org> Date: Tue, 04 Nov 2014 21:44:49 -0700 From: Stephen Warren User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: Scott Branden , Ulf Hansson , Russell King , Peter Griffin , Chris Ball , Piotr Krol CC: linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org, Joe Perches , linux-rpi-kernel@lists.infradead.org, Ray Jui , bcm-kernel-feedback-list@broadcom.com Subject: Re: [PATCHv2 4/5] mmc: shdci-bcm2835: add verify for 32-bit back-to-back workaround References: <1414651017-3545-1-git-send-email-sbranden@broadcom.com> <1414651017-3545-5-git-send-email-sbranden@broadcom.com> In-Reply-To: <1414651017-3545-5-git-send-email-sbranden@broadcom.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/30/2014 12:36 AM, Scott Branden wrote: > Add a verify option to driver to print out an error message if a > potential back to back write could cause a clock domain issue. > diff --git a/drivers/mmc/host/sdhci-bcm2835.c b/drivers/mmc/host/sdhci-bcm2835.c > static inline void bcm2835_sdhci_writel(struct sdhci_host *host, > u32 val, int reg) > { > +#ifdef CONFIG_MMC_SDHCI_BCM2835_VERIFY_WORKAROUND > + struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); > + struct bcm2835_sdhci_host *bcm2835_host = pltfm_host->priv; > + > + if (bcm2835_host->previous_reg == reg) { > + if ((reg != SDHCI_HOST_CONTROL) > + && (reg != SDHCI_CLOCK_CONTROL)) { > + dev_err(mmc_dev(host->mmc), > + "back-to-back write to 0x%x\n", reg); This fires a *ton* on reg 0x20 and 0x30 on my rev 2 model B with the patches applied on top of next-20141031. Without the patches applied, everything works fine. As far as I can tell, SD card accesses no longer work (or perhaps there's just so much log spew over serial that it takes more than 1.5 minutes to get to the login prompt). -- 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/