mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
[PATCH] mmc: avoid some resets without card
Some Ricoh controllers only respect a full reset when there is no card in the slot. As we wait for the reset to complete, we must avoid even requesting those resets on the buggy controllers. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx> Cc: Russell King <rmk@arm.linux.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
5f25a66f6b
commit
8a4da1430f
@ -35,6 +35,8 @@ static unsigned int debug_quirks = 0;
|
|||||||
|
|
||||||
#define SDHCI_QUIRK_CLOCK_BEFORE_RESET (1<<0)
|
#define SDHCI_QUIRK_CLOCK_BEFORE_RESET (1<<0)
|
||||||
#define SDHCI_QUIRK_FORCE_DMA (1<<1)
|
#define SDHCI_QUIRK_FORCE_DMA (1<<1)
|
||||||
|
/* Controller doesn't like some resets when there is no card inserted. */
|
||||||
|
#define SDHCI_QUIRK_NO_CARD_NO_RESET (1<<2)
|
||||||
|
|
||||||
static const struct pci_device_id pci_ids[] __devinitdata = {
|
static const struct pci_device_id pci_ids[] __devinitdata = {
|
||||||
{
|
{
|
||||||
@ -51,7 +53,8 @@ static const struct pci_device_id pci_ids[] __devinitdata = {
|
|||||||
.device = PCI_DEVICE_ID_RICOH_R5C822,
|
.device = PCI_DEVICE_ID_RICOH_R5C822,
|
||||||
.subvendor = PCI_ANY_ID,
|
.subvendor = PCI_ANY_ID,
|
||||||
.subdevice = PCI_ANY_ID,
|
.subdevice = PCI_ANY_ID,
|
||||||
.driver_data = SDHCI_QUIRK_FORCE_DMA,
|
.driver_data = SDHCI_QUIRK_FORCE_DMA |
|
||||||
|
SDHCI_QUIRK_NO_CARD_NO_RESET,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -125,6 +128,12 @@ static void sdhci_reset(struct sdhci_host *host, u8 mask)
|
|||||||
{
|
{
|
||||||
unsigned long timeout;
|
unsigned long timeout;
|
||||||
|
|
||||||
|
if (host->chip->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
|
||||||
|
if (!(readl(host->ioaddr + SDHCI_PRESENT_STATE) &
|
||||||
|
SDHCI_CARD_PRESENT))
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
writeb(mask, host->ioaddr + SDHCI_SOFTWARE_RESET);
|
writeb(mask, host->ioaddr + SDHCI_SOFTWARE_RESET);
|
||||||
|
|
||||||
if (mask & SDHCI_RESET_ALL)
|
if (mask & SDHCI_RESET_ALL)
|
||||||
@ -1174,6 +1183,9 @@ static int __devinit sdhci_probe_slot(struct pci_dev *pdev, int slot)
|
|||||||
host = mmc_priv(mmc);
|
host = mmc_priv(mmc);
|
||||||
host->mmc = mmc;
|
host->mmc = mmc;
|
||||||
|
|
||||||
|
host->chip = chip;
|
||||||
|
chip->hosts[slot] = host;
|
||||||
|
|
||||||
host->bar = first_bar + slot;
|
host->bar = first_bar + slot;
|
||||||
|
|
||||||
host->addr = pci_resource_start(pdev, host->bar);
|
host->addr = pci_resource_start(pdev, host->bar);
|
||||||
@ -1330,9 +1342,6 @@ static int __devinit sdhci_probe_slot(struct pci_dev *pdev, int slot)
|
|||||||
sdhci_dumpregs(host);
|
sdhci_dumpregs(host);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
host->chip = chip;
|
|
||||||
chip->hosts[slot] = host;
|
|
||||||
|
|
||||||
mmiowb();
|
mmiowb();
|
||||||
|
|
||||||
mmc_add_host(mmc);
|
mmc_add_host(mmc);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user