Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 1 | /* |
| 2 | * MMC definitions for OMAP2 |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | */ |
| 8 | |
Grazvydas Ignotas | ed199f7 | 2010-08-10 18:01:52 -0700 | [diff] [blame] | 9 | struct mmc_card; |
| 10 | |
Adrian Hunter | 68ff042 | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 11 | struct omap2_hsmmc_info { |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 12 | u8 mmc; /* controller 1/2/3 */ |
Sukumar Ghorai | 3a63833 | 2010-09-15 14:49:23 +0000 | [diff] [blame] | 13 | u32 caps; /* 4/8 wires and any additional host |
| 14 | * capabilities OR'd (ref. linux/mmc/host.h) */ |
Eliad Peller | 6fdc75d | 2011-11-22 16:02:18 +0200 | [diff] [blame] | 15 | u32 pm_caps; /* PM capabilities */ |
David Brownell | 0329c37 | 2009-03-23 18:23:47 -0700 | [diff] [blame] | 16 | bool transceiver; /* MMC-2 option */ |
| 17 | bool ext_clock; /* use external pin for input clock */ |
Adrian Hunter | 8d75e98 | 2009-03-23 18:23:48 -0700 | [diff] [blame] | 18 | bool cover_only; /* No card detect - just cover switch */ |
Adrian Hunter | 23d99bb | 2009-09-22 16:44:48 -0700 | [diff] [blame] | 19 | bool nonremovable; /* Nonremovable e.g. eMMC */ |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 20 | bool power_saving; /* Try to sleep or power off when possible */ |
Adrian Hunter | 1df58db | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 21 | bool no_off; /* power_saving and power is not to go off */ |
Balaji T K | b1c1df7 | 2011-05-30 19:55:34 +0530 | [diff] [blame] | 22 | bool no_off_init; /* no power off when not in MMC sleep state */ |
Adrian Hunter | e0eb242 | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 23 | bool vcc_aux_disable_is_sleep; /* Regulator off remapped to sleep */ |
Tony Lindgren | 3b972bf | 2012-02-20 09:43:29 -0800 | [diff] [blame] | 24 | bool deferred; /* mmc needs a deferred probe */ |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 25 | int gpio_cd; /* or -EINVAL */ |
| 26 | int gpio_wp; /* or -EINVAL */ |
Adrian Hunter | e51151a | 2009-03-23 18:23:48 -0700 | [diff] [blame] | 27 | char *name; /* or NULL for default */ |
Tony Lindgren | 3b972bf | 2012-02-20 09:43:29 -0800 | [diff] [blame] | 28 | struct platform_device *pdev; /* mmc controller instance */ |
David Brownell | b583f26 | 2009-05-28 14:04:03 -0700 | [diff] [blame] | 29 | int ocr_mask; /* temporary HACK */ |
Daniel Mack | d418ed8 | 2012-02-19 13:20:33 +0100 | [diff] [blame] | 30 | int max_freq; /* maximum clock, if constrained by external |
| 31 | * circuitry, or 0 for default */ |
Thomas Weber | 0b1974d | 2010-09-23 11:46:48 +0200 | [diff] [blame] | 32 | /* Remux (pad configuration) when powering on/off */ |
Adrian Hunter | ce6f001 | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 33 | void (*remux)(struct device *dev, int slot, int power_on); |
Grazvydas Ignotas | ed199f7 | 2010-08-10 18:01:52 -0700 | [diff] [blame] | 34 | /* init some special card */ |
| 35 | void (*init_card)(struct mmc_card *card); |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 36 | }; |
| 37 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 38 | #if defined(CONFIG_MMC_OMAP_HS) || defined(CONFIG_MMC_OMAP_HS_MODULE) |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 39 | |
Tony Lindgren | 3b972bf | 2012-02-20 09:43:29 -0800 | [diff] [blame] | 40 | void omap_hsmmc_init(struct omap2_hsmmc_info *); |
| 41 | void omap_hsmmc_late_init(struct omap2_hsmmc_info *); |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 42 | |
| 43 | #else |
| 44 | |
Tony Lindgren | 3b972bf | 2012-02-20 09:43:29 -0800 | [diff] [blame] | 45 | static inline void omap_hsmmc_init(struct omap2_hsmmc_info *info) |
| 46 | { |
| 47 | } |
| 48 | |
| 49 | static inline void omap_hsmmc_late_init(struct omap2_hsmmc_info *info) |
Tony Lindgren | 90c62bf | 2008-12-10 17:37:17 -0800 | [diff] [blame] | 50 | { |
| 51 | } |
| 52 | |
| 53 | #endif |