linux-mmc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mmc: sdhci-pci: remove SDHCI_QUIRK2_OWN_CARD_DETECTION
@ 2011-12-09  7:36 Adrian Hunter
  2011-12-12  2:38 ` Dong, Chuanxiao
  0 siblings, 1 reply; 3+ messages in thread
From: Adrian Hunter @ 2011-12-09  7:36 UTC (permalink / raw)
  To: Chris Ball; +Cc: linux-mmc, Adrian Hunter

Even if a driver provides separate card detection,
an interrupt is still needed to abort mmc requests
that are in progress.  SDHCI_QUIRK2_OWN_CARD_DETECTION
prevents that, so remove it.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
---
 drivers/mmc/host/sdhci-pci.c |    1 -
 drivers/mmc/host/sdhci.c     |    3 ---
 include/linux/mmc/sdhci.h    |    2 --
 3 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
index d2e77fb..abced67 100644
--- a/drivers/mmc/host/sdhci-pci.c
+++ b/drivers/mmc/host/sdhci-pci.c
@@ -233,7 +233,6 @@ static int mfd_sd_probe_slot(struct sdhci_pci_slot *slot)
 
 	slot->cd_gpio = gpio;
 	slot->cd_irq = irq;
-	slot->host->quirks2 |= SDHCI_QUIRK2_OWN_CARD_DETECTION;
 
 	return 0;
 
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index ab6018f..ec10288 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -149,9 +149,6 @@ static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
 	if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
 		return;
 
-	if (host->quirks2 & SDHCI_QUIRK2_OWN_CARD_DETECTION)
-		return;
-
 	present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
 			      SDHCI_CARD_PRESENT;
 	irqs = present ? SDHCI_INT_CARD_REMOVE : SDHCI_INT_CARD_INSERT;
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h
index e4b6935..dad7a46 100644
--- a/include/linux/mmc/sdhci.h
+++ b/include/linux/mmc/sdhci.h
@@ -90,8 +90,6 @@ struct sdhci_host {
 
 	unsigned int quirks2;	/* More deviations from spec. */
 
-#define SDHCI_QUIRK2_OWN_CARD_DETECTION			(1<<0)
-
 	int irq;		/* Device IRQ */
 	void __iomem *ioaddr;	/* Mapped address */
 
-- 
1.7.6.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH] mmc: sdhci-pci: remove SDHCI_QUIRK2_OWN_CARD_DETECTION
  2011-12-09  7:36 [PATCH] mmc: sdhci-pci: remove SDHCI_QUIRK2_OWN_CARD_DETECTION Adrian Hunter
@ 2011-12-12  2:38 ` Dong, Chuanxiao
  2011-12-12  8:19   ` Adrian Hunter
  0 siblings, 1 reply; 3+ messages in thread
From: Dong, Chuanxiao @ 2011-12-12  2:38 UTC (permalink / raw)
  To: Chris Ball; +Cc: linux-mmc@vger.kernel.org, Hunter, Adrian

Hi Adrian,
> -----Original Message-----
> From: linux-mmc-owner@vger.kernel.org
> [mailto:linux-mmc-owner@vger.kernel.org] On Behalf Of Adrian Hunter
> Sent: Friday, December 09, 2011 3:37 PM
> To: Chris Ball
> Cc: linux-mmc@vger.kernel.org; Hunter, Adrian
> Subject: [PATCH] mmc: sdhci-pci: remove SDHCI_QUIRK2_OWN_CARD_DETECTION
> 
> Even if a driver provides separate card detection,
> an interrupt is still needed to abort mmc requests
> that are in progress.  SDHCI_QUIRK2_OWN_CARD_DETECTION
> prevents that, so remove it.
I think this should be considered by the new registered irq handler but not directly removing this quirk.
If removing it directly, inserting/removing a card will cause driver to get two interrupts and that makes people confusing why there are two interrupts actually. So, shall we change the mfd_sd_cd function like below?

static irqreturn_t mfd_sd_cd(int irq, void *dev_id)
{
	struct sdhci_pci_slot *slot = dev_id;
	struct sdhci_host *host = slot->host;

	if (host->card_tasklet.func == NULL)
		return IRQ_NONE;

	tasklet_schedule(&host->card_tasklet);

	return IRQ_HANDLED;
}

With this, driver can also abort the mmc requests that are in progress.

Thanks
Chuanxiao
> 
> Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
> ---
>  drivers/mmc/host/sdhci-pci.c |    1 -
>  drivers/mmc/host/sdhci.c     |    3 ---
>  include/linux/mmc/sdhci.h    |    2 --
>  3 files changed, 0 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
> index d2e77fb..abced67 100644
> --- a/drivers/mmc/host/sdhci-pci.c
> +++ b/drivers/mmc/host/sdhci-pci.c
> @@ -233,7 +233,6 @@ static int mfd_sd_probe_slot(struct sdhci_pci_slot *slot)
> 
>  	slot->cd_gpio = gpio;
>  	slot->cd_irq = irq;
> -	slot->host->quirks2 |= SDHCI_QUIRK2_OWN_CARD_DETECTION;
> 
>  	return 0;
> 
> diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
> index ab6018f..ec10288 100644
> --- a/drivers/mmc/host/sdhci.c
> +++ b/drivers/mmc/host/sdhci.c
> @@ -149,9 +149,6 @@ static void sdhci_set_card_detection(struct sdhci_host
> *host, bool enable)
>  	if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
>  		return;
> 
> -	if (host->quirks2 & SDHCI_QUIRK2_OWN_CARD_DETECTION)
> -		return;
> -
>  	present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
>  			      SDHCI_CARD_PRESENT;
>  	irqs = present ? SDHCI_INT_CARD_REMOVE : SDHCI_INT_CARD_INSERT;
> diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h
> index e4b6935..dad7a46 100644
> --- a/include/linux/mmc/sdhci.h
> +++ b/include/linux/mmc/sdhci.h
> @@ -90,8 +90,6 @@ struct sdhci_host {
> 
>  	unsigned int quirks2;	/* More deviations from spec. */
> 
> -#define SDHCI_QUIRK2_OWN_CARD_DETECTION			(1<<0)
> -
>  	int irq;		/* Device IRQ */
>  	void __iomem *ioaddr;	/* Mapped address */
> 
> --
> 1.7.6.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] mmc: sdhci-pci: remove SDHCI_QUIRK2_OWN_CARD_DETECTION
  2011-12-12  2:38 ` Dong, Chuanxiao
@ 2011-12-12  8:19   ` Adrian Hunter
  0 siblings, 0 replies; 3+ messages in thread
From: Adrian Hunter @ 2011-12-12  8:19 UTC (permalink / raw)
  To: Dong, Chuanxiao; +Cc: Chris Ball, linux-mmc@vger.kernel.org

On 12/12/11 04:38, Dong, Chuanxiao wrote:
> Hi Adrian,
>> -----Original Message-----
>> From: linux-mmc-owner@vger.kernel.org
>> [mailto:linux-mmc-owner@vger.kernel.org] On Behalf Of Adrian Hunter
>> Sent: Friday, December 09, 2011 3:37 PM
>> To: Chris Ball
>> Cc: linux-mmc@vger.kernel.org; Hunter, Adrian
>> Subject: [PATCH] mmc: sdhci-pci: remove SDHCI_QUIRK2_OWN_CARD_DETECTION
>>
>> Even if a driver provides separate card detection,
>> an interrupt is still needed to abort mmc requests
>> that are in progress.  SDHCI_QUIRK2_OWN_CARD_DETECTION
>> prevents that, so remove it.
> I think this should be considered by the new registered irq handler but not directly removing this quirk.
> If removing it directly, inserting/removing a card will cause driver to get two interrupts and that makes people confusing why there are two interrupts actually. So, shall we change the mfd_sd_cd function like below?
> 
> static irqreturn_t mfd_sd_cd(int irq, void *dev_id)
> {
> 	struct sdhci_pci_slot *slot = dev_id;
> 	struct sdhci_host *host = slot->host;
> 
> 	if (host->card_tasklet.func == NULL)
> 		return IRQ_NONE;
> 
> 	tasklet_schedule(&host->card_tasklet);

If the gpio interrupt were too quick for the host controller
the "present" bit might not be cleared yet.  I don't like to
think about stuff like that because all the possibilities
seem too complex.  I would prefer to play it safe and let
the host controller process its interrupt in the normal way.

> 
> 	return IRQ_HANDLED;
> }
> 
> With this, driver can also abort the mmc requests that are in progress.
> 
> Thanks
> Chuanxiao
>>
>> Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
>> ---
>>  drivers/mmc/host/sdhci-pci.c |    1 -
>>  drivers/mmc/host/sdhci.c     |    3 ---
>>  include/linux/mmc/sdhci.h    |    2 --
>>  3 files changed, 0 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
>> index d2e77fb..abced67 100644
>> --- a/drivers/mmc/host/sdhci-pci.c
>> +++ b/drivers/mmc/host/sdhci-pci.c
>> @@ -233,7 +233,6 @@ static int mfd_sd_probe_slot(struct sdhci_pci_slot *slot)
>>
>>  	slot->cd_gpio = gpio;
>>  	slot->cd_irq = irq;
>> -	slot->host->quirks2 |= SDHCI_QUIRK2_OWN_CARD_DETECTION;
>>
>>  	return 0;
>>
>> diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
>> index ab6018f..ec10288 100644
>> --- a/drivers/mmc/host/sdhci.c
>> +++ b/drivers/mmc/host/sdhci.c
>> @@ -149,9 +149,6 @@ static void sdhci_set_card_detection(struct sdhci_host
>> *host, bool enable)
>>  	if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
>>  		return;
>>
>> -	if (host->quirks2 & SDHCI_QUIRK2_OWN_CARD_DETECTION)
>> -		return;
>> -
>>  	present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
>>  			      SDHCI_CARD_PRESENT;
>>  	irqs = present ? SDHCI_INT_CARD_REMOVE : SDHCI_INT_CARD_INSERT;
>> diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h
>> index e4b6935..dad7a46 100644
>> --- a/include/linux/mmc/sdhci.h
>> +++ b/include/linux/mmc/sdhci.h
>> @@ -90,8 +90,6 @@ struct sdhci_host {
>>
>>  	unsigned int quirks2;	/* More deviations from spec. */
>>
>> -#define SDHCI_QUIRK2_OWN_CARD_DETECTION			(1<<0)
>> -
>>  	int irq;		/* Device IRQ */
>>  	void __iomem *ioaddr;	/* Mapped address */
>>
>> --
>> 1.7.6.4
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-12-12  8:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-09  7:36 [PATCH] mmc: sdhci-pci: remove SDHCI_QUIRK2_OWN_CARD_DETECTION Adrian Hunter
2011-12-12  2:38 ` Dong, Chuanxiao
2011-12-12  8:19   ` Adrian Hunter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).