diff options
| author | Yinbo Zhu <[email protected]> | 2019-07-16 15:09:11 +0800 |
|---|---|---|
| committer | Priyanka Jain <[email protected]> | 2019-09-12 14:05:38 +0530 |
| commit | 6f883e501b65b0d9826e994011251c3855c208a3 (patch) | |
| tree | efc6dcaf698b1b6b85200c6e6ae48834e2b9c00f /include | |
| parent | 23da111d5fbdd635c1eb4e24c6938ed6cb4bc96f (diff) | |
mmc: fsl_esdhc: Add emmc hs200 support
Add eMMC hs200 mode for ls1028a, ls1012a, lx2160a.
This increases eMMC performance.
Tuning procedure is currently not supported.
Signed-off-by: Yinbo Zhu <[email protected]>
Acked-by: Peng Fan <[email protected]>
Signed-off-by: Priyanka Jain <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/fsl_esdhc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/fsl_esdhc.h b/include/fsl_esdhc.h index 7d7e946ab3b..33dcbee53be 100644 --- a/include/fsl_esdhc.h +++ b/include/fsl_esdhc.h @@ -205,6 +205,10 @@ struct fsl_esdhc_cfg { int fsl_esdhc_mmc_init(bd_t *bis); int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg); void fdt_fixup_esdhc(void *blob, bd_t *bd); +#ifdef MMC_SUPPORTS_TUNING +static inline int fsl_esdhc_execute_tuning(struct udevice *dev, + uint32_t opcode) {return 0; } +#endif #else static inline int fsl_esdhc_mmc_init(bd_t *bis) { return -ENOSYS; } static inline void fdt_fixup_esdhc(void *blob, bd_t *bd) {} |
