1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef __SDHCI_MSM_H__ 4 #define __SDHCI_MSM_H__ 5 6 #include "soc/sdhci.h" 7 8 /* SDHC specific defines */ 9 #define SDCC_HC_VENDOR_SPECIFIC_FUNC3 0x250 10 #define VENDOR_SPEC_FUN3_POR_VAL 0x02226040 11 #define SDCC_HC_VENDOR_SPECIFIC_CAPABILITIES0 0x21C 12 13 struct sd_mmc_ctrlr *new_sdhci_msm_host(void *ioaddr); 14 15 #endif /* __SDHCI_MSM_H__ */ 16