1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Board-specific MMC configuration
9 #include <linux/types.h>
10 #include <linux/mmc/host.h>
12 struct davinci_mmc_config
{
13 /* get_cd()/get_wp() may sleep */
14 int (*get_cd
)(int module
);
15 int (*get_ro
)(int module
);
17 void (*set_power
)(int module
, bool on
);
19 /* wires == 0 is equivalent to wires == 4 (4-bit parallel) */
24 /* any additional host capabilities: OR'd in to mmc->f_caps */
27 /* Number of sg segments */
30 void davinci_setup_mmc(int module
, struct davinci_mmc_config
*config
);
33 MMC_CTLR_VERSION_1
= 0, /* DM644x and DM355 */
34 MMC_CTLR_VERSION_2
, /* DA830 */