All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vasily Khoruzhick <anarsoul@gmail.com>
To: Maxim Levitsky <maximlevitsky@gmail.com>
Cc: linux-mmc@vger.kernel.org
Subject: Re: [PATCH v2] Enable DMA for Ricoh reader on Lenovo laptops
Date: Mon, 15 Feb 2010 18:20:39 +0200	[thread overview]
Message-ID: <201002151820.45110.anarsoul@gmail.com> (raw)
In-Reply-To: <1266249504.10662.5.camel@maxim-laptop>


[-- Attachment #1.1: Type: Text/Plain, Size: 686 bytes --]

В сообщении от 15 февраля 2010 17:58:24 автор Maxim Levitsky написал:
> Not sure if I need the SDHCI_QUIRK_CLOCK_BEFORE_RESET.

Driver sometimes doesn't detect card without this quirk for me.

> What I don't get is why DMA capability isn't advertised?
> 
> Since xD and memstick portions do support DMA, I can't belive that they
> don't use DMA in SD/SDHCI portion. 
> 
> Ah, I forgot that SDHCI is handled by microsoft driver.... Maybe it
> doesn't test the DMA bits.
> 
> If we were to follow the way MS driver works, we wouldn't need the
> quirks, right?

We need generic quirk for ricoh readers, see attached patch

Regards
Vasily

[-- Attachment #1.2: 0001-Enable-DMA-on-Ricoh-sdhci-reader-by-default.patch --]
[-- Type: text/x-patch, Size: 1336 bytes --]

From 9cbd6c6667d8a2fce583e1e2e7c253b75ec1b675 Mon Sep 17 00:00:00 2001
From: Vasily Khoruzhick <anarsoul@gmail.com>
Date: Mon, 15 Feb 2010 18:10:41 +0200
Subject: [PATCH] Enable DMA on Ricoh sdhci reader by default

Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
---
 drivers/mmc/host/sdhci-pci.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
index 5c3a176..12f5b09 100644
--- a/drivers/mmc/host/sdhci-pci.c
+++ b/drivers/mmc/host/sdhci-pci.c
@@ -80,9 +80,6 @@ struct sdhci_pci_chip {
 
 static int ricoh_probe(struct sdhci_pci_chip *chip)
 {
-	if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_IBM)
-		chip->quirks |= SDHCI_QUIRK_CLOCK_BEFORE_RESET;
-
 	if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG ||
 	    chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY)
 		chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
@@ -92,7 +89,9 @@ static int ricoh_probe(struct sdhci_pci_chip *chip)
 
 static const struct sdhci_pci_fixes sdhci_ricoh = {
 	.probe		= ricoh_probe,
-	.quirks		= SDHCI_QUIRK_32BIT_DMA_ADDR,
+	.quirks		= SDHCI_QUIRK_32BIT_DMA_ADDR |
+			  SDHCI_QUIRK_FORCE_DMA |
+			  SDHCI_QUIRK_CLOCK_BEFORE_RESET,
 };
 
 static const struct sdhci_pci_fixes sdhci_ene_712 = {
-- 
1.6.6.1


[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

  reply	other threads:[~2010-02-15 16:21 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-02-01  9:10 [PATCH] Enable DMA for Ricoh reader on Lenovo laptops Vasily Khoruzhick
2010-02-02 16:17 ` [PATCH v2] " Vasily Khoruzhick
2010-02-13 22:38   ` Vasily Khoruzhick
2010-02-14 16:39     ` Maxim Levitsky
2010-02-14 23:06       ` Vasily Khoruzhick
2010-02-14 23:20         ` Maxim Levitsky
2010-02-15  9:49           ` Vasily Khoruzhick
2010-02-15 15:58             ` Maxim Levitsky
2010-02-15 16:20               ` Vasily Khoruzhick [this message]
2010-02-17  0:35                 ` Maxim Levitsky
2010-02-20  8:49                 ` Vasily Khoruzhick
2010-02-20 22:21                   ` Maxim Levitsky
2010-02-24 20:00                     ` Andrew Morton
2010-02-26 21:25                       ` [PATCH] Subject: MMC: Enable DMA on Ricoh sdhci reader by default Maxim Levitsky

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201002151820.45110.anarsoul@gmail.com \
    --to=anarsoul@gmail.com \
    --cc=linux-mmc@vger.kernel.org \
    --cc=maximlevitsky@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.