Lines Matching +full:sd +full:- +full:uhs +full:- +full:ddr50
1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
27 * the SD Simplified Specification. The following disclaimer may apply:
30 * specification ("Simplified Specification") by the SD Card Association and
31 * the SD Group. The Simplified Specification is a subset of the complete SD
32 * Specification which is owned by the SD Card Association and the SD
33 * Group. This Simplified Specification is provided on a non-confidential
35 * Simplified Specification may require a license from the SD Card
36 * Association, SD Group, SD-3C LLC or other third parties.
41 * as a standard specification for SD Cards and SD Host/Ancillary products and
42 * is provided "AS-IS" without any representations or warranties of any
43 * kind. No responsibility is assumed by the SD Group, SD-3C LLC or the SD
45 * right of the SD Group, SD-3C LLC, the SD Card Association or any third
48 * SD Group, SD-3C LLC, the SD Card Association or any third party. Nothing
49 * herein shall be construed as an obligation by the SD Group, the SD-3C LLC
50 * or the SD Card Association to disclose or distribute any technical
51 * information, know-how or other confidential information to any third party.
67 * A mmc bridge is a chipset that can have one or more mmc and/or sd
69 * while sd and sdio cards usually are attached using a star topology
70 * (meaning in practice each sd card has its own, independent slot).
78 * mmc_ios is a structure that is used to store the state of the mmc/sd
148 #define MMC_CAP_4_BIT_DATA (1 << 0) /* Can do 4-bit data transfers */
149 #define MMC_CAP_8_BIT_DATA (1 << 1) /* Can do 8-bit data transfers */
153 #define MMC_CAP_UHS_SDR12 (1 << 6) /* Can do UHS SDR12 */
154 #define MMC_CAP_UHS_SDR25 (1 << 7) /* Can do UHS SDR25 */
155 #define MMC_CAP_UHS_SDR50 (1 << 8) /* Can do UHS SDR50 */
156 #define MMC_CAP_UHS_SDR104 (1 << 9) /* Can do UHS SDR104 */
157 #define MMC_CAP_UHS_DDR50 (1 << 10) /* Can do UHS DDR50 */