2019-06-04 15:11:33 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2008-12-11 08:37:17 +07:00
|
|
|
/*
|
|
|
|
* MMC definitions for OMAP2
|
|
|
|
*/
|
|
|
|
|
2010-08-11 08:01:52 +07:00
|
|
|
struct mmc_card;
|
|
|
|
|
2010-02-16 01:03:34 +07:00
|
|
|
struct omap2_hsmmc_info {
|
2008-12-11 08:37:17 +07:00
|
|
|
u8 mmc; /* controller 1/2/3 */
|
2010-09-15 21:49:23 +07:00
|
|
|
u32 caps; /* 4/8 wires and any additional host
|
|
|
|
* capabilities OR'd (ref. linux/mmc/host.h) */
|
2012-02-21 00:43:29 +07:00
|
|
|
struct platform_device *pdev; /* mmc controller instance */
|
2010-08-11 08:01:52 +07:00
|
|
|
/* init some special card */
|
|
|
|
void (*init_card)(struct mmc_card *card);
|
2008-12-11 08:37:17 +07:00
|
|
|
};
|
|
|
|
|
2016-08-12 02:29:45 +07:00
|
|
|
#if IS_ENABLED(CONFIG_MMC_OMAP_HS)
|
2008-12-11 08:37:17 +07:00
|
|
|
|
2012-02-21 00:43:29 +07:00
|
|
|
void omap_hsmmc_init(struct omap2_hsmmc_info *);
|
|
|
|
void omap_hsmmc_late_init(struct omap2_hsmmc_info *);
|
2008-12-11 08:37:17 +07:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2012-02-21 00:43:29 +07:00
|
|
|
static inline void omap_hsmmc_init(struct omap2_hsmmc_info *info)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void omap_hsmmc_late_init(struct omap2_hsmmc_info *info)
|
2008-12-11 08:37:17 +07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|