Colin Cross | b44b7d7 | 2011-04-08 22:20:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/include/asm/mach/mmc.h |
| 3 | */ |
| 4 | #ifndef ASMARM_MACH_MMC_H |
| 5 | #define ASMARM_MACH_MMC_H |
| 6 | |
| 7 | #include <linux/mmc/host.h> |
| 8 | #include <linux/mmc/card.h> |
| 9 | #include <linux/mmc/sdio_func.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 10 | #include <mach/gpio.h> |
Subhash Jadavani | bcd435f | 2012-04-24 18:26:49 +0530 | [diff] [blame] | 11 | #include <mach/msm_bus.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 12 | |
| 13 | #define SDC_DAT1_DISABLE 0 |
| 14 | #define SDC_DAT1_ENABLE 1 |
| 15 | #define SDC_DAT1_ENWAKE 2 |
| 16 | #define SDC_DAT1_DISWAKE 3 |
Colin Cross | b44b7d7 | 2011-04-08 22:20:53 -0700 | [diff] [blame] | 17 | |
| 18 | struct embedded_sdio_data { |
| 19 | struct sdio_cis cis; |
| 20 | struct sdio_cccr cccr; |
| 21 | struct sdio_embedded_func *funcs; |
| 22 | int num_funcs; |
| 23 | }; |
| 24 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 25 | /* This structure keeps information per regulator */ |
| 26 | struct msm_mmc_reg_data { |
| 27 | /* voltage regulator handle */ |
| 28 | struct regulator *reg; |
| 29 | /* regulator name */ |
| 30 | const char *name; |
| 31 | /* voltage level to be set */ |
Subhash Jadavani | 99ba53a | 2011-08-01 16:04:18 +0530 | [diff] [blame] | 32 | unsigned int low_vol_level; |
| 33 | unsigned int high_vol_level; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 34 | /* Load values for low power and high power mode */ |
| 35 | unsigned int lpm_uA; |
| 36 | unsigned int hpm_uA; |
| 37 | /* |
| 38 | * is set voltage supported for this regulator? |
| 39 | * false => set voltage is not supported |
| 40 | * true => set voltage is supported |
Krishna Konda | fea6018 | 2011-11-01 16:01:34 -0700 | [diff] [blame] | 41 | * |
| 42 | * Some regulators (like gpio-regulators, LVS (low voltage swtiches) |
| 43 | * PMIC regulators) dont have the capability to call |
| 44 | * regulator_set_voltage or regulator_set_optimum_mode |
| 45 | * Use this variable to indicate if its a such regulator or not |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 46 | */ |
| 47 | bool set_voltage_sup; |
| 48 | /* is this regulator enabled? */ |
| 49 | bool is_enabled; |
| 50 | /* is this regulator needs to be always on? */ |
| 51 | bool always_on; |
| 52 | /* is low power mode setting required for this regulator? */ |
| 53 | bool lpm_sup; |
Krishna Konda | 3c4142d | 2012-06-27 11:01:56 -0700 | [diff] [blame] | 54 | /* |
| 55 | * Use to indicate if the regulator should be reset at boot time. |
| 56 | * Its needed only when sd card's vdd regulator is always on |
| 57 | * since always on regulators dont get reset at boot time. |
| 58 | * |
| 59 | * It is needed for sd 3.0 card to be detected as a sd 3.0 card |
| 60 | * on device reboot. |
| 61 | */ |
| 62 | bool reset_at_init; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | /* |
| 66 | * This structure keeps information for all the |
| 67 | * regulators required for a SDCC slot. |
| 68 | */ |
| 69 | struct msm_mmc_slot_reg_data { |
| 70 | struct msm_mmc_reg_data *vdd_data; /* keeps VDD/VCC regulator info */ |
Subhash Jadavani | 937c750 | 2012-06-01 15:34:46 +0530 | [diff] [blame] | 71 | struct msm_mmc_reg_data *vdd_io_data; /* keeps VDD IO regulator info */ |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | struct msm_mmc_gpio { |
| 75 | u32 no; |
| 76 | const char *name; |
| 77 | bool is_always_on; |
| 78 | bool is_enabled; |
| 79 | }; |
| 80 | |
| 81 | struct msm_mmc_gpio_data { |
| 82 | struct msm_mmc_gpio *gpio; |
| 83 | u8 size; |
| 84 | }; |
| 85 | |
| 86 | struct msm_mmc_pad_pull { |
| 87 | enum msm_tlmm_pull_tgt no; |
| 88 | u32 val; |
| 89 | }; |
| 90 | |
| 91 | struct msm_mmc_pad_pull_data { |
| 92 | struct msm_mmc_pad_pull *on; |
| 93 | struct msm_mmc_pad_pull *off; |
| 94 | u8 size; |
| 95 | }; |
| 96 | |
| 97 | struct msm_mmc_pad_drv { |
| 98 | enum msm_tlmm_hdrive_tgt no; |
| 99 | u32 val; |
| 100 | }; |
| 101 | |
| 102 | struct msm_mmc_pad_drv_data { |
| 103 | struct msm_mmc_pad_drv *on; |
| 104 | struct msm_mmc_pad_drv *off; |
| 105 | u8 size; |
| 106 | }; |
| 107 | |
| 108 | struct msm_mmc_pad_data { |
| 109 | struct msm_mmc_pad_pull_data *pull; |
| 110 | struct msm_mmc_pad_drv_data *drv; |
| 111 | }; |
| 112 | |
| 113 | struct msm_mmc_pin_data { |
| 114 | /* |
| 115 | * = 1 if controller pins are using gpios |
| 116 | * = 0 if controller has dedicated MSM pads |
| 117 | */ |
| 118 | u8 is_gpio; |
| 119 | u8 cfg_sts; |
| 120 | struct msm_mmc_gpio_data *gpio_data; |
| 121 | struct msm_mmc_pad_data *pad_data; |
| 122 | }; |
| 123 | |
Subhash Jadavani | bcd435f | 2012-04-24 18:26:49 +0530 | [diff] [blame] | 124 | struct msm_mmc_bus_voting_data { |
| 125 | struct msm_bus_scale_pdata *use_cases; |
| 126 | unsigned int *bw_vecs; |
| 127 | unsigned int bw_vecs_size; |
| 128 | }; |
| 129 | |
Colin Cross | b44b7d7 | 2011-04-08 22:20:53 -0700 | [diff] [blame] | 130 | struct mmc_platform_data { |
| 131 | unsigned int ocr_mask; /* available voltages */ |
| 132 | int built_in; /* built-in device flag */ |
Dmitry Shmidt | 5228a59 | 2011-05-03 11:05:04 -0700 | [diff] [blame] | 133 | int card_present; /* card detect state */ |
Colin Cross | b44b7d7 | 2011-04-08 22:20:53 -0700 | [diff] [blame] | 134 | u32 (*translate_vdd)(struct device *, unsigned int); |
| 135 | unsigned int (*status)(struct device *); |
| 136 | struct embedded_sdio_data *embedded_sdio; |
| 137 | int (*register_status_notify)(void (*callback)(int card_present, void *dev_id), void *dev_id); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 138 | /* |
| 139 | * XPC controls the maximum current in the |
| 140 | * default speed mode of SDXC card. |
| 141 | */ |
| 142 | unsigned int xpc_cap; |
| 143 | /* Supported UHS-I Modes */ |
| 144 | unsigned int uhs_caps; |
Sujit Reddy Thumma | 824b752 | 2012-05-30 13:04:34 +0530 | [diff] [blame] | 145 | /* More capabilities */ |
| 146 | unsigned int uhs_caps2; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 147 | void (*sdio_lpm_gpio_setup)(struct device *, unsigned int); |
| 148 | unsigned int status_irq; |
Sujit Reddy Thumma | f61d2e7 | 2012-06-22 15:56:39 +0530 | [diff] [blame] | 149 | int status_gpio; |
Krishna Konda | 360aa42 | 2011-12-06 18:27:41 -0800 | [diff] [blame] | 150 | /* Indicates the polarity of the GPIO line when card is inserted */ |
| 151 | bool is_status_gpio_active_low; |
Sujit Reddy Thumma | d7cdadc | 2012-08-27 12:44:04 +0530 | [diff] [blame] | 152 | int sdiowakeup_irq; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 153 | unsigned long irq_flags; |
| 154 | unsigned long mmc_bus_width; |
| 155 | int (*wpswitch) (struct device *); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 156 | unsigned int msmsdcc_fmin; |
| 157 | unsigned int msmsdcc_fmid; |
| 158 | unsigned int msmsdcc_fmax; |
| 159 | bool nonremovable; |
Subhash Jadavani | c9b8575 | 2012-04-13 11:16:49 +0530 | [diff] [blame] | 160 | unsigned int mpm_sdiowakeup_int; |
Sujit Reddy Thumma | f61d2e7 | 2012-06-22 15:56:39 +0530 | [diff] [blame] | 161 | int wpswitch_gpio; |
Sujit Reddy Thumma | 8f912ea | 2012-06-22 16:18:43 +0530 | [diff] [blame] | 162 | bool is_wpswitch_active_low; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 163 | struct msm_mmc_slot_reg_data *vreg_data; |
| 164 | int is_sdio_al_client; |
| 165 | unsigned int *sup_clk_table; |
| 166 | unsigned char sup_clk_cnt; |
| 167 | struct msm_mmc_pin_data *pin_data; |
Sahitya Tummala | d9df327 | 2011-08-19 16:50:46 +0530 | [diff] [blame] | 168 | bool disable_bam; |
Sahitya Tummala | b07e1ae | 2011-09-02 11:58:42 +0530 | [diff] [blame] | 169 | bool disable_runtime_pm; |
Sahitya Tummala | 85fa070 | 2011-09-15 09:39:37 +0530 | [diff] [blame] | 170 | bool disable_cmd23; |
Oluwafemi Adeyemi | 784b439 | 2012-04-10 13:49:38 -0700 | [diff] [blame] | 171 | u32 cpu_dma_latency; |
Subhash Jadavani | bcd435f | 2012-04-24 18:26:49 +0530 | [diff] [blame] | 172 | struct msm_mmc_bus_voting_data *msm_bus_voting_data; |
Colin Cross | b44b7d7 | 2011-04-08 22:20:53 -0700 | [diff] [blame] | 173 | }; |
| 174 | |
| 175 | #endif |