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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct twl4030_hsmmc_info {
|
|
|
|
u8 mmc; /* controller 1/2/3 */
|
|
|
|
u8 wires; /* 1/4/8 wires */
|
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 */
|
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 */
|
2009-03-24 01:23:47 +00:00
|
|
|
struct device *dev; /* returned: pointer to mmc adapter */
|
2009-05-28 21:04:03 +00:00
|
|
|
int ocr_mask; /* temporary HACK */
|
2008-12-11 01:37:17 +00:00
|
|
|
};
|
|
|
|
|
2009-05-28 21:04:03 +00:00
|
|
|
#if defined(CONFIG_REGULATOR) && \
|
2008-12-11 01:37:17 +00:00
|
|
|
(defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE) || \
|
|
|
|
defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE))
|
|
|
|
|
|
|
|
void twl4030_mmc_init(struct twl4030_hsmmc_info *);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static inline void twl4030_mmc_init(struct twl4030_hsmmc_info *info)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|