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