From patchwork Thu Jul 12 07:26:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Hesselbarth X-Patchwork-Id: 1187451 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 5B6643FDAE for ; Thu, 12 Jul 2012 07:35:16 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1SpDqU-0008JL-4q; Thu, 12 Jul 2012 07:29:54 +0000 Received: from mail-bk0-f49.google.com ([209.85.214.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1SpDnf-0007jD-CS for linux-arm-kernel@lists.infradead.org; Thu, 12 Jul 2012 07:27:02 +0000 Received: by bkcji2 with SMTP id ji2so1762328bkc.36 for ; Thu, 12 Jul 2012 00:26:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; bh=povc/gA990U2Th4ILksKLFFZylbannSKRzJCE3PjM/I=; b=tPnTOCwCbkj9Ol3NslZmZ/Q1y639jcBoGjhmWfuYtUQZTLjxGMpCF1ckvGqvYPm0DA lWaiBThsdKooaIC2D9fkA2aGL+Y5TOlIa2iKd20WqewfjhYBOrX3zgtKma8ouB0by14E QGzktDd6JxZH/kxEtJMAmS675MK64v0gq/zWUAtWytcMwJktV7w+u5/h7P30YlE1skba uDC8O0vKJQjPZ7uMqi60TsuWHjABphUpQ+F3dZsZfa4xtL7ZR03fO/kDTdy18hy64DhX Ic1axreJcglLn0AUeFwzlFNr3kpBnUVnZwRoGHyvfeWYEtOmmYLGniEJwT2fRKHD2y/x XkhA== Received: by 10.204.157.151 with SMTP id b23mr24914469bkx.44.1342078011185; Thu, 12 Jul 2012 00:26:51 -0700 (PDT) Received: from [192.168.1.100] (dslc-082-083-232-154.pools.arcor-ip.net. [82.83.232.154]) by mx.google.com with ESMTPS id 14sm2271138bkq.12.2012.07.12.00.26.49 (version=SSLv3 cipher=OTHER); Thu, 12 Jul 2012 00:26:50 -0700 (PDT) Message-ID: <4FFE7C38.9020800@googlemail.com> Date: Thu, 12 Jul 2012 09:26:48 +0200 From: Sebastian Hesselbarth User-Agent: Mozilla/5.0 (X11; Linux i686; rv:10.0.5) Gecko/20120624 Icedove/10.0.5 MIME-Version: 1.0 To: Rabeeh Khoury Subject: [RESEND PATCH v1 1/2] mmc: sdhci-dove: Add SDHCI_QUIRK_NO_HISPD_BIT X-Spam-Note: CRM114 invocation failed X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (sebastian.hesselbarth[at]googlemail.com) -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.0 T_DKIM_INVALID DKIM-Signature header exists but is not valid Cc: Chris Ball , linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org, Manuel Lauss , Anton Vorontsov , Shawn Guo , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Bump. There has been no discussion on this patch nor on patch 2/2. Is there anybody out there willing to test and confirm these patches? --- The sdio controller on dove doesn't have a bit to indicate high-speed. With the quirk set it fixes accessing high-speed sdcards. Signed-off-by: Sebastian Hesselbarth Cc: Chris Ball Cc: Anton Vorontsov Cc: Shawn Guo Cc: Manuel Lauss Cc: linux-mmc@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org Cc: linux-kernel@vger.kernel.org --- drivers/mmc/host/sdhci-dove.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/host/sdhci-dove.c b/drivers/mmc/host/sdhci-dove.c index 177f697..9c85368 100644 --- a/drivers/mmc/host/sdhci-dove.c +++ b/drivers/mmc/host/sdhci-dove.c @@ -66,7 +66,8 @@ static struct sdhci_pltfm_data sdhci_dove_pdata = { .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER | SDHCI_QUIRK_NO_BUSY_IRQ | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL | - SDHCI_QUIRK_FORCE_DMA, + SDHCI_QUIRK_FORCE_DMA | + SDHCI_QUIRK_NO_HISPD_BIT, }; static int __devinit sdhci_dove_probe(struct platform_device *pdev) -- 1.7.10