blob: e7de62ee0ad0444132cbb1a741375cb396ce4ddd [file] [log] [blame]
Colin Crossb44b7d72011-04-08 22:20:53 -07001/*
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 Huntsman3f2bc4d2011-08-16 17:27:22 -070010#include <mach/gpio.h>
Subhash Jadavanibcd435f2012-04-24 18:26:49 +053011#include <mach/msm_bus.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070012
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 Crossb44b7d72011-04-08 22:20:53 -070017
18struct 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 Huntsman3f2bc4d2011-08-16 17:27:22 -070025/* This structure keeps information per regulator */
26struct 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 Jadavani99ba53a2011-08-01 16:04:18 +053032 unsigned int low_vol_level;
33 unsigned int high_vol_level;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070034 /* 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 Kondafea60182011-11-01 16:01:34 -070041 *
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 Huntsman3f2bc4d2011-08-16 17:27:22 -070046 */
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 Konda3c4142d2012-06-27 11:01:56 -070054 /*
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 Huntsman3f2bc4d2011-08-16 17:27:22 -070063};
64
65/*
66 * This structure keeps information for all the
67 * regulators required for a SDCC slot.
68 */
69struct msm_mmc_slot_reg_data {
70 struct msm_mmc_reg_data *vdd_data; /* keeps VDD/VCC regulator info */
Subhash Jadavani937c7502012-06-01 15:34:46 +053071 struct msm_mmc_reg_data *vdd_io_data; /* keeps VDD IO regulator info */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070072};
73
74struct msm_mmc_gpio {
75 u32 no;
76 const char *name;
77 bool is_always_on;
78 bool is_enabled;
79};
80
81struct msm_mmc_gpio_data {
82 struct msm_mmc_gpio *gpio;
83 u8 size;
84};
85
86struct msm_mmc_pad_pull {
87 enum msm_tlmm_pull_tgt no;
88 u32 val;
89};
90
91struct msm_mmc_pad_pull_data {
92 struct msm_mmc_pad_pull *on;
93 struct msm_mmc_pad_pull *off;
94 u8 size;
95};
96
97struct msm_mmc_pad_drv {
98 enum msm_tlmm_hdrive_tgt no;
99 u32 val;
100};
101
102struct msm_mmc_pad_drv_data {
103 struct msm_mmc_pad_drv *on;
104 struct msm_mmc_pad_drv *off;
105 u8 size;
106};
107
108struct msm_mmc_pad_data {
109 struct msm_mmc_pad_pull_data *pull;
110 struct msm_mmc_pad_drv_data *drv;
111};
112
113struct 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 Jadavanibcd435f2012-04-24 18:26:49 +0530124struct 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 Crossb44b7d72011-04-08 22:20:53 -0700130struct mmc_platform_data {
131 unsigned int ocr_mask; /* available voltages */
132 int built_in; /* built-in device flag */
Dmitry Shmidt5228a592011-05-03 11:05:04 -0700133 int card_present; /* card detect state */
Colin Crossb44b7d72011-04-08 22:20:53 -0700134 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 Huntsman3f2bc4d2011-08-16 17:27:22 -0700138 /*
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 Thumma824b7522012-05-30 13:04:34 +0530145 /* More capabilities */
146 unsigned int uhs_caps2;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700147 void (*sdio_lpm_gpio_setup)(struct device *, unsigned int);
148 unsigned int status_irq;
Sujit Reddy Thummaf61d2e72012-06-22 15:56:39 +0530149 int status_gpio;
Krishna Konda360aa422011-12-06 18:27:41 -0800150 /* Indicates the polarity of the GPIO line when card is inserted */
151 bool is_status_gpio_active_low;
Sujit Reddy Thummad7cdadc2012-08-27 12:44:04 +0530152 int sdiowakeup_irq;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700153 unsigned long irq_flags;
154 unsigned long mmc_bus_width;
155 int (*wpswitch) (struct device *);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700156 unsigned int msmsdcc_fmin;
157 unsigned int msmsdcc_fmid;
158 unsigned int msmsdcc_fmax;
159 bool nonremovable;
Subhash Jadavanic9b85752012-04-13 11:16:49 +0530160 unsigned int mpm_sdiowakeup_int;
Sujit Reddy Thummaf61d2e72012-06-22 15:56:39 +0530161 int wpswitch_gpio;
Sujit Reddy Thumma8f912ea2012-06-22 16:18:43 +0530162 bool is_wpswitch_active_low;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700163 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 Tummalad9df3272011-08-19 16:50:46 +0530168 bool disable_bam;
Sahitya Tummalab07e1ae2011-09-02 11:58:42 +0530169 bool disable_runtime_pm;
Sahitya Tummala85fa0702011-09-15 09:39:37 +0530170 bool disable_cmd23;
Oluwafemi Adeyemi784b4392012-04-10 13:49:38 -0700171 u32 cpu_dma_latency;
Subhash Jadavanibcd435f2012-04-24 18:26:49 +0530172 struct msm_mmc_bus_voting_data *msm_bus_voting_data;
Colin Crossb44b7d72011-04-08 22:20:53 -0700173};
174
175#endif