Home
last modified time | relevance | path

Searched refs:MMC_CAP_8_BIT_DATA (Results 1 – 10 of 10) sorted by relevance

/linux/drivers/mmc/host/
H A Dsdhci-npcm.c55 host->mmc->caps |= MMC_CAP_8_BIT_DATA; in npcm_sdhci_probe()
H A Dsdhci-bcm-kona.c265 (host->mmc->caps & MMC_CAP_8_BIT_DATA) ? 'Y' : 'N'); in sdhci_bcm_kona_probe()
H A Dsdhci-pci-arasan.c304 slot->host->mmc->caps |= MMC_CAP_NONREMOVABLE | MMC_CAP_8_BIT_DATA; in arasan_pci_probe_slot()
H A Dsdhci-pxav2.c301 host->mmc->caps |= MMC_CAP_8_BIT_DATA; in sdhci_pxav2_probe()
H A Dlitex_mmc.c548 mmc->caps &= ~MMC_CAP_8_BIT_DATA; in litex_mmc_probe()
H A Dsdhci-pci-o2micro.c744 host->mmc->caps |= MMC_CAP_8_BIT_DATA; in sdhci_pci_o2_probe_slot()
H A Drtsx_pci_sdmmc.c1406 mmc->caps |= MMC_CAP_8_BIT_DATA; in init_extra_caps()
/linux/drivers/mmc/core/
H A Dhost.c283 host->caps |= MMC_CAP_8_BIT_DATA; in mmc_of_parse()
621 if (!(caps & (MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA)) && in mmc_validate_host_caps()
630 !(caps & MMC_CAP_8_BIT_DATA) && !(caps2 & MMC_CAP2_NO_MMC)) { in mmc_validate_host_caps()
H A Dmmc.c1039 !(host->caps & (MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA))) in mmc_select_bus_width()
1042 idx = (host->caps & MMC_CAP_8_BIT_DATA) ? 0 : 1; in mmc_select_bus_width()
/linux/include/linux/mmc/
H A Dhost.h399 #define MMC_CAP_8_BIT_DATA (1 << 6) /* Can the host do 8 bit transfers */ macro