6b13f685e
김민수
BSP 최초 추가
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
struct mmc_card;
struct omap2_hsmmc_info {
u8 mmc;
u32 caps;
u32 pm_caps;
bool transceiver;
bool ext_clock;
bool cover_only;
bool nonremovable;
bool power_saving;
bool no_off;
bool no_off_init;
bool vcc_aux_disable_is_sleep;
bool deferred;
int gpio_cd;
int gpio_wp;
char *name;
struct platform_device *pdev;
int ocr_mask;
int max_freq;
void (*remux)(struct device *dev, int slot, int power_on);
void (*init_card)(struct mmc_card *card);
};
#if defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE)
void omap_hsmmc_init(struct omap2_hsmmc_info *);
void omap_hsmmc_late_init(struct omap2_hsmmc_info *);
#else
static inline void omap_hsmmc_init(struct omap2_hsmmc_info *info)
{
}
static inline void omap_hsmmc_late_init(struct omap2_hsmmc_info *info)
{
}
#endif
|