Home
last modified time | relevance | path

Searched refs:IS_SD (Results 1 – 12 of 12) sorted by relevance

/rk3399_rockchip-uboot/drivers/mmc/
H A Dmmc_write.c39 if (IS_SD(mmc)) { in mmc_erase_t()
111 if (!IS_SD(mmc)) { in mmc_berase()
141 if (IS_SD(mmc) && mmc->ssr.au) { in mmc_berase()
H A Dmv_sdhci.c52 if (!IS_SD(mmc) && reg == SDHCI_HOST_CONTROL) { in mv_sdhci_writeb()
H A Dmmc_legacy.c92 mmc_type = IS_SD(m) ? "SD" : "eMMC"; in print_mmc_devices()
H A Dmmc.c941 if (IS_SD(mmc))
1316 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4_41)) {
1801 if (IS_SD(mmc))
1854 if (IS_SD(mmc))
1906 if (!IS_SD(mmc) && (mmc->version >= MMC_VERSION_4)) {
2068 if (IS_SD(mmc))
2079 if (IS_SD(mmc)) {
H A Dmmc-uclass.c256 mmc_type = IS_SD(m) ? "SD" : "eMMC"; in print_mmc_devices()
H A Dftsdc010_mci.c117 if (IS_SD(mmc)) { in ftsdc010_clkset()
H A Dxenon_sdhci.c329 if (IS_SD(host->mmc)) { in xenon_sdhci_set_ios_post()
/rk3399_rockchip-uboot/cmd/
H A Dmmc.c38 printf("%s version %d.%d", IS_SD(mmc) ? "SD" : "MMC", in print_mmcinfo()
55 if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) { in print_mmcinfo()
823 if (IS_SD(mmc)) { in do_mmc_bootbus()
848 if (IS_SD(mmc)) { in do_mmc_boot_resize()
900 if (IS_SD(mmc)) { in do_mmc_partconf()
942 if (IS_SD(mmc)) { in do_mmc_rst_func()
994 if (IS_SD(mmc)) { in do_mmc_bkops_enable()
/rk3399_rockchip-uboot/board/samsung/common/
H A Dexynos5-dt.c204 if (IS_SD(mmc)) in get_dfu_alt_boot()
/rk3399_rockchip-uboot/cmd/mvebu/
H A Dbubt.c133 printf("%s(%d) init failed\n", IS_SD(mmc) ? "SD" : "MMC", in mmc_burn_image()
151 start_lba = IS_SD(mmc) ? 1 : 0; in mmc_burn_image()
201 printf("%s(%d) init failed\n", IS_SD(mmc) ? "SD" : "MMC", in mmc_read_file()
/rk3399_rockchip-uboot/board/samsung/odroid/
H A Dodroid.c87 alt_boot = IS_SD(mmc) ? CONFIG_DFU_ALT_BOOT_SD : in get_dfu_alt_boot()
/rk3399_rockchip-uboot/include/
H A Dmmc.h67 #define IS_SD(x) ((x)->version & SD_VERSION_SD) macro