2008-12-11 01:37:17 +00:00
|
|
|
/*
|
|
|
|
* MMC definitions for OMAP2
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
2010-08-11 01:01:52 +00:00
|
|
|
struct mmc_card;
|
|
|
|
|
2010-02-15 18:03:34 +00:00
|
|
|
struct omap2_hsmmc_info {
|
2008-12-11 01:37:17 +00:00
|
|
|
u8 mmc; /* controller 1/2/3 */
|
2010-09-15 14:49:23 +00:00
|
|
|
u32 caps; /* 4/8 wires and any additional host
|
|
|
|
* capabilities OR'd (ref. linux/mmc/host.h) */
|
2011-11-22 14:02:18 +00:00
|
|
|
u32 pm_caps; /* PM capabilities */
|
2009-03-24 01:23:47 +00:00
|
|
|
bool transceiver; /* MMC-2 option */
|
|
|
|
bool ext_clock; /* use external pin for input clock */
|
2009-03-24 01:23:48 +00:00
|
|
|
bool cover_only; /* No card detect - just cover switch */
|
2009-09-22 23:44:48 +00:00
|
|
|
bool nonremovable; /* Nonremovable e.g. eMMC */
|
2009-09-22 23:44:49 +00:00
|
|
|
bool power_saving; /* Try to sleep or power off when possible */
|
2010-02-15 18:03:34 +00:00
|
|
|
bool no_off; /* power_saving and power is not to go off */
|
2011-05-30 14:25:34 +00:00
|
|
|
bool no_off_init; /* no power off when not in MMC sleep state */
|
2010-02-15 18:03:34 +00:00
|
|
|
bool vcc_aux_disable_is_sleep; /* Regulator off remapped to sleep */
|
2012-02-20 17:43:29 +00:00
|
|
|
bool deferred; /* mmc needs a deferred probe */
|
2008-12-11 01:37:17 +00:00
|
|
|
int gpio_cd; /* or -EINVAL */
|
|
|
|
int gpio_wp; /* or -EINVAL */
|
2009-03-24 01:23:48 +00:00
|
|
|
char *name; /* or NULL for default */
|
2012-02-20 17:43:29 +00:00
|
|
|
struct platform_device *pdev; /* mmc controller instance */
|
2009-05-28 21:04:03 +00:00
|
|
|
int ocr_mask; /* temporary HACK */
|
2012-02-19 12:20:33 +00:00
|
|
|
int max_freq; /* maximum clock, if constrained by external
|
|
|
|
* circuitry, or 0 for default */
|
2010-09-23 09:46:48 +00:00
|
|
|
/* Remux (pad configuration) when powering on/off */
|
2010-02-15 18:03:34 +00:00
|
|
|
void (*remux)(struct device *dev, int slot, int power_on);
|
2010-08-11 01:01:52 +00:00
|
|
|
/* init some special card */
|
|
|
|
void (*init_card)(struct mmc_card *card);
|
2008-12-11 01:37:17 +00:00
|
|
|
};
|
|
|
|
|
2010-02-15 18:03:34 +00:00
|
|
|
#if defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
|
2008-12-11 01:37:17 +00:00
|
|
|
|
2012-02-20 17:43:29 +00:00
|
|
|
void omap_hsmmc_init(struct omap2_hsmmc_info *);
|
|
|
|
void omap_hsmmc_late_init(struct omap2_hsmmc_info *);
|
2008-12-11 01:37:17 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2012-02-20 17:43:29 +00: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 01:37:17 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|