Lines Matching defs:host_caps

292 	int host_caps = slot->host.caps;
299 (host_caps & MMC_CAP_8_BIT_DATA) ? "8bits" :
300 ((host_caps & MMC_CAP_4_BIT_DATA) ? "4bits" : "1bit"),
305 (host_caps & MMC_CAP_SIGNALING_180) ? " 1.8V" : "",
306 (host_caps & MMC_CAP_SIGNALING_120) ? " 1.2V" : "",
307 (host_caps & MMC_CAP_DRIVER_TYPE_A) ? "A" : "",
308 (host_caps & MMC_CAP_DRIVER_TYPE_C) ? "C" : "",
309 (host_caps & MMC_CAP_DRIVER_TYPE_D) ? "D" : "",
314 if (host_caps & (MMC_CAP_MMC_DDR52 | MMC_CAP_MMC_HS200 |
317 (host_caps & MMC_CAP_MMC_DDR52) ? " DDR52" : "",
318 (host_caps & MMC_CAP_MMC_HS200) ? " HS200" : "",
319 (host_caps & MMC_CAP_MMC_HS400) ? " HS400" : "",
320 ((host_caps &
324 if (host_caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
327 (host_caps & MMC_CAP_UHS_SDR12) ? " SDR12" : "",
328 (host_caps & MMC_CAP_UHS_SDR25) ? " SDR25" : "",
329 (host_caps & MMC_CAP_UHS_SDR50) ? " SDR50" : "",
330 (host_caps & MMC_CAP_UHS_SDR104) ? " SDR104" : "",
331 (host_caps & MMC_CAP_UHS_DDR50) ? " DDR50" : "");
870 uint32_t caps, caps2, freq, host_caps;
966 host_caps = slot->host.caps;
967 host_caps |= MMC_CAP_4_BIT_DATA;
969 host_caps |= MMC_CAP_8_BIT_DATA;
971 host_caps |= MMC_CAP_HSPEED;
973 host_caps |= MMC_CAP_BOOT_NOACC;
975 host_caps |= MMC_CAP_WAIT_WHILE_BUSY;
979 host_caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
981 host_caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
983 host_caps |= MMC_CAP_MMC_HS200;
985 host_caps |= MMC_CAP_UHS_SDR50;
988 host_caps |= MMC_CAP_UHS_DDR50;
990 host_caps |= MMC_CAP_MMC_DDR52;
993 host_caps |= MMC_CAP_MMC_HS400;
996 host_caps |= MMC_CAP_MMC_HS400;
1006 host_caps &= ~(MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
1029 host_caps &= ~(SDHCI_CAP_MODES_TUNING(caps2));
1033 if (host_caps & SDHCI_CAP_MODES_TUNING(caps2)) {
1061 host_caps |= MMC_CAP_SIGNALING_330;
1062 if (host_caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
1066 host_caps |= MMC_CAP_SIGNALING_120 | MMC_CAP_SIGNALING_180;
1077 host_caps &= ~(MMC_CAP_SIGNALING_120 | MMC_CAP_SIGNALING_180);
1079 host_caps &= ~MMC_CAP_SIGNALING_120;
1083 host_caps |= MMC_CAP_DRIVER_TYPE_A;
1085 host_caps |= MMC_CAP_DRIVER_TYPE_C;
1087 host_caps |= MMC_CAP_DRIVER_TYPE_D;
1088 slot->host.caps = host_caps;
2678 cts->proto_specific.mmc.host_caps = slot->host.caps;