* [PATCH] mmc: sdhci-pci: set the clear transfer mode register quirk for O2Micro
@ 2015-08-03 6:33 Adam Lee
2015-08-05 5:46 ` Adam Lee
0 siblings, 1 reply; 3+ messages in thread
From: Adam Lee @ 2015-08-03 6:33 UTC (permalink / raw)
To: linux-mmc; +Cc: Ulf Hansson, Peter Guo
This patch fixes MMC not working issue on O2Micro/BayHub Host, which
requires transfer mode register to be cleared when sending no DMA
command.
Signed-off-by: Peter Guo <peter.guo@bayhubtech.com>
Signed-off-by: Adam Lee <adam.lee@canonical.com>
---
drivers/mmc/host/sdhci-pci.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
index 94f54d2..b3b0a3e 100644
--- a/drivers/mmc/host/sdhci-pci.c
+++ b/drivers/mmc/host/sdhci-pci.c
@@ -618,6 +618,7 @@ static int jmicron_resume(struct sdhci_pci_chip *chip)
static const struct sdhci_pci_fixes sdhci_o2 = {
.probe = sdhci_pci_o2_probe,
.quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
+ .quirks2 = SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD,
.probe_slot = sdhci_pci_o2_probe_slot,
.resume = sdhci_pci_o2_resume,
};
--
2.5.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] mmc: sdhci-pci: set the clear transfer mode register quirk for O2Micro
2015-08-03 6:33 [PATCH] mmc: sdhci-pci: set the clear transfer mode register quirk for O2Micro Adam Lee
@ 2015-08-05 5:46 ` Adam Lee
2015-08-25 12:05 ` Ulf Hansson
0 siblings, 1 reply; 3+ messages in thread
From: Adam Lee @ 2015-08-05 5:46 UTC (permalink / raw)
To: Ulf Hansson; +Cc: linux-mmc, Peter Guo
On Mon, Aug 03, 2015 at 02:33:28PM +0800, Adam Lee wrote:
> This patch fixes MMC not working issue on O2Micro/BayHub Host, which
> requires transfer mode register to be cleared when sending no DMA
> command.
>
> Signed-off-by: Peter Guo <peter.guo@bayhubtech.com>
> Signed-off-by: Adam Lee <adam.lee@canonical.com>
> ---
> drivers/mmc/host/sdhci-pci.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
> index 94f54d2..b3b0a3e 100644
> --- a/drivers/mmc/host/sdhci-pci.c
> +++ b/drivers/mmc/host/sdhci-pci.c
> @@ -618,6 +618,7 @@ static int jmicron_resume(struct sdhci_pci_chip *chip)
> static const struct sdhci_pci_fixes sdhci_o2 = {
> .probe = sdhci_pci_o2_probe,
> .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
> + .quirks2 = SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD,
> .probe_slot = sdhci_pci_o2_probe_slot,
> .resume = sdhci_pci_o2_resume,
> };
> --
> 2.5.0
>
Hi, Ulf
Please add a cc stable sign off when you apply it, I forgot it, thanks.
"Cc: stable <stable@vger.kernel.org>"
--
Adam Lee
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mmc: sdhci-pci: set the clear transfer mode register quirk for O2Micro
2015-08-05 5:46 ` Adam Lee
@ 2015-08-25 12:05 ` Ulf Hansson
0 siblings, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2015-08-25 12:05 UTC (permalink / raw)
To: Adam Lee; +Cc: linux-mmc, Peter Guo
On 5 August 2015 at 07:46, Adam Lee <adam.lee@canonical.com> wrote:
> On Mon, Aug 03, 2015 at 02:33:28PM +0800, Adam Lee wrote:
>> This patch fixes MMC not working issue on O2Micro/BayHub Host, which
>> requires transfer mode register to be cleared when sending no DMA
>> command.
>>
>> Signed-off-by: Peter Guo <peter.guo@bayhubtech.com>
>> Signed-off-by: Adam Lee <adam.lee@canonical.com>
Thanks, applied for next and adding the stable tag.
Kind regards
Uffe
>> ---
>> drivers/mmc/host/sdhci-pci.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
>> index 94f54d2..b3b0a3e 100644
>> --- a/drivers/mmc/host/sdhci-pci.c
>> +++ b/drivers/mmc/host/sdhci-pci.c
>> @@ -618,6 +618,7 @@ static int jmicron_resume(struct sdhci_pci_chip *chip)
>> static const struct sdhci_pci_fixes sdhci_o2 = {
>> .probe = sdhci_pci_o2_probe,
>> .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
>> + .quirks2 = SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD,
>> .probe_slot = sdhci_pci_o2_probe_slot,
>> .resume = sdhci_pci_o2_resume,
>> };
>> --
>> 2.5.0
>>
>
> Hi, Ulf
>
> Please add a cc stable sign off when you apply it, I forgot it, thanks.
>
> "Cc: stable <stable@vger.kernel.org>"
>
> --
> Adam Lee
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-08-25 12:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-03 6:33 [PATCH] mmc: sdhci-pci: set the clear transfer mode register quirk for O2Micro Adam Lee
2015-08-05 5:46 ` Adam Lee
2015-08-25 12:05 ` Ulf Hansson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox