2 * drivers/mmc/host/sdhci-msm.c - Qualcomm SDHCI Platform driver
4 * Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 and
8 * only version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
17 #include <linux/module.h>
18 #include <linux/of_device.h>
19 #include <linux/delay.h>
20 #include <linux/mmc/mmc.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/slab.h>
23 #include <linux/iopoll.h>
24 #include <linux/regulator/consumer.h>
26 #include "sdhci-pltfm.h"
28 #define CORE_MCI_VERSION 0x50
29 #define CORE_VERSION_MAJOR_SHIFT 28
30 #define CORE_VERSION_MAJOR_MASK (0xf << CORE_VERSION_MAJOR_SHIFT)
31 #define CORE_VERSION_MINOR_MASK 0xff
33 #define CORE_MCI_GENERICS 0x70
34 #define SWITCHABLE_SIGNALING_VOLTAGE BIT(29)
36 #define HC_MODE_EN 0x1
37 #define CORE_POWER 0x0
38 #define CORE_SW_RST BIT(7)
39 #define FF_CLK_SW_RST_DIS BIT(13)
41 #define CORE_PWRCTL_BUS_OFF BIT(0)
42 #define CORE_PWRCTL_BUS_ON BIT(1)
43 #define CORE_PWRCTL_IO_LOW BIT(2)
44 #define CORE_PWRCTL_IO_HIGH BIT(3)
45 #define CORE_PWRCTL_BUS_SUCCESS BIT(0)
46 #define CORE_PWRCTL_IO_SUCCESS BIT(2)
47 #define REQ_BUS_OFF BIT(0)
48 #define REQ_BUS_ON BIT(1)
49 #define REQ_IO_LOW BIT(2)
50 #define REQ_IO_HIGH BIT(3)
53 #define CORE_DLL_LOCK BIT(7)
54 #define CORE_DDR_DLL_LOCK BIT(11)
55 #define CORE_DLL_EN BIT(16)
56 #define CORE_CDR_EN BIT(17)
57 #define CORE_CK_OUT_EN BIT(18)
58 #define CORE_CDR_EXT_EN BIT(19)
59 #define CORE_DLL_PDN BIT(29)
60 #define CORE_DLL_RST BIT(30)
61 #define CORE_CMD_DAT_TRACK_SEL BIT(0)
63 #define CORE_DDR_CAL_EN BIT(0)
64 #define CORE_FLL_CYCLE_CNT BIT(18)
65 #define CORE_DLL_CLOCK_DISABLE BIT(21)
67 #define CORE_VENDOR_SPEC_POR_VAL 0xa1c
68 #define CORE_CLK_PWRSAVE BIT(1)
69 #define CORE_HC_MCLK_SEL_DFLT (2 << 8)
70 #define CORE_HC_MCLK_SEL_HS400 (3 << 8)
71 #define CORE_HC_MCLK_SEL_MASK (3 << 8)
72 #define CORE_IO_PAD_PWR_SWITCH_EN (1 << 15)
73 #define CORE_IO_PAD_PWR_SWITCH (1 << 16)
74 #define CORE_HC_SELECT_IN_EN BIT(18)
75 #define CORE_HC_SELECT_IN_HS400 (6 << 19)
76 #define CORE_HC_SELECT_IN_MASK (7 << 19)
78 #define CORE_3_0V_SUPPORT (1 << 25)
79 #define CORE_1_8V_SUPPORT (1 << 26)
80 #define CORE_VOLT_SUPPORT (CORE_3_0V_SUPPORT | CORE_1_8V_SUPPORT)
82 #define CORE_CSR_CDC_CTLR_CFG0 0x130
83 #define CORE_SW_TRIG_FULL_CALIB BIT(16)
84 #define CORE_HW_AUTOCAL_ENA BIT(17)
86 #define CORE_CSR_CDC_CTLR_CFG1 0x134
87 #define CORE_CSR_CDC_CAL_TIMER_CFG0 0x138
88 #define CORE_TIMER_ENA BIT(16)
90 #define CORE_CSR_CDC_CAL_TIMER_CFG1 0x13C
91 #define CORE_CSR_CDC_REFCOUNT_CFG 0x140
92 #define CORE_CSR_CDC_COARSE_CAL_CFG 0x144
93 #define CORE_CDC_OFFSET_CFG 0x14C
94 #define CORE_CSR_CDC_DELAY_CFG 0x150
95 #define CORE_CDC_SLAVE_DDA_CFG 0x160
96 #define CORE_CSR_CDC_STATUS0 0x164
97 #define CORE_CALIBRATION_DONE BIT(0)
99 #define CORE_CDC_ERROR_CODE_MASK 0x7000000
101 #define CORE_CSR_CDC_GEN_CFG 0x178
102 #define CORE_CDC_SWITCH_BYPASS_OFF BIT(0)
103 #define CORE_CDC_SWITCH_RC_EN BIT(1)
105 #define CORE_CDC_T4_DLY_SEL BIT(0)
106 #define CORE_CMDIN_RCLK_EN BIT(1)
107 #define CORE_START_CDC_TRAFFIC BIT(6)
109 #define CORE_PWRSAVE_DLL BIT(3)
111 #define DDR_CONFIG_POR_VAL 0x80040873
114 #define INVALID_TUNING_PHASE -1
115 #define SDHCI_MSM_MIN_CLOCK 400000
116 #define CORE_FREQ_100MHZ (100 * 1000 * 1000)
118 #define CDR_SELEXT_SHIFT 20
119 #define CDR_SELEXT_MASK (0xf << CDR_SELEXT_SHIFT)
120 #define CMUX_SHIFT_PHASE_SHIFT 24
121 #define CMUX_SHIFT_PHASE_MASK (7 << CMUX_SHIFT_PHASE_SHIFT)
123 #define MSM_MMC_AUTOSUSPEND_DELAY_MS 50
125 /* Timeout value to avoid infinite waiting for pwr_irq */
126 #define MSM_PWR_IRQ_TIMEOUT_MS 5000
128 #define msm_host_readl(msm_host, host, offset) \
129 msm_host->var_ops->msm_readl_relaxed(host, offset)
131 #define msm_host_writel(msm_host, val, host, offset) \
132 msm_host->var_ops->msm_writel_relaxed(val, host, offset)
134 struct sdhci_msm_offset
{
136 u32 core_mci_data_cnt
;
138 u32 core_mci_fifo_cnt
;
139 u32 core_mci_version
;
141 u32 core_testbus_config
;
142 u32 core_testbus_sel2_bit
;
143 u32 core_testbus_ena
;
144 u32 core_testbus_sel2
;
145 u32 core_pwrctl_status
;
146 u32 core_pwrctl_mask
;
147 u32 core_pwrctl_clear
;
149 u32 core_sdcc_debug_reg
;
152 u32 core_vendor_spec
;
153 u32 core_vendor_spec_adma_err_addr0
;
154 u32 core_vendor_spec_adma_err_addr1
;
155 u32 core_vendor_spec_func2
;
156 u32 core_vendor_spec_capabilities0
;
157 u32 core_ddr_200_cfg
;
158 u32 core_vendor_spec3
;
159 u32 core_dll_config_2
;
160 u32 core_dll_config_3
;
161 u32 core_ddr_config_old
; /* Applicable to sdcc minor ver < 0x49 */
165 static const struct sdhci_msm_offset sdhci_msm_v5_offset
= {
166 .core_mci_data_cnt
= 0x35c,
167 .core_mci_status
= 0x324,
168 .core_mci_fifo_cnt
= 0x308,
169 .core_mci_version
= 0x318,
170 .core_generics
= 0x320,
171 .core_testbus_config
= 0x32c,
172 .core_testbus_sel2_bit
= 3,
173 .core_testbus_ena
= (1 << 31),
174 .core_testbus_sel2
= (1 << 3),
175 .core_pwrctl_status
= 0x240,
176 .core_pwrctl_mask
= 0x244,
177 .core_pwrctl_clear
= 0x248,
178 .core_pwrctl_ctl
= 0x24c,
179 .core_sdcc_debug_reg
= 0x358,
180 .core_dll_config
= 0x200,
181 .core_dll_status
= 0x208,
182 .core_vendor_spec
= 0x20c,
183 .core_vendor_spec_adma_err_addr0
= 0x214,
184 .core_vendor_spec_adma_err_addr1
= 0x218,
185 .core_vendor_spec_func2
= 0x210,
186 .core_vendor_spec_capabilities0
= 0x21c,
187 .core_ddr_200_cfg
= 0x224,
188 .core_vendor_spec3
= 0x250,
189 .core_dll_config_2
= 0x254,
190 .core_dll_config_3
= 0x258,
191 .core_ddr_config
= 0x25c,
194 static const struct sdhci_msm_offset sdhci_msm_mci_offset
= {
195 .core_hc_mode
= 0x78,
196 .core_mci_data_cnt
= 0x30,
197 .core_mci_status
= 0x34,
198 .core_mci_fifo_cnt
= 0x44,
199 .core_mci_version
= 0x050,
200 .core_generics
= 0x70,
201 .core_testbus_config
= 0x0cc,
202 .core_testbus_sel2_bit
= 4,
203 .core_testbus_ena
= (1 << 3),
204 .core_testbus_sel2
= (1 << 4),
205 .core_pwrctl_status
= 0xdc,
206 .core_pwrctl_mask
= 0xe0,
207 .core_pwrctl_clear
= 0xe4,
208 .core_pwrctl_ctl
= 0xe8,
209 .core_sdcc_debug_reg
= 0x124,
210 .core_dll_config
= 0x100,
211 .core_dll_status
= 0x108,
212 .core_vendor_spec
= 0x10c,
213 .core_vendor_spec_adma_err_addr0
= 0x114,
214 .core_vendor_spec_adma_err_addr1
= 0x118,
215 .core_vendor_spec_func2
= 0x110,
216 .core_vendor_spec_capabilities0
= 0x11c,
217 .core_ddr_200_cfg
= 0x184,
218 .core_vendor_spec3
= 0x1b0,
219 .core_dll_config_2
= 0x1b4,
220 .core_ddr_config_old
= 0x1b8,
221 .core_ddr_config
= 0x1bc,
224 struct sdhci_msm_variant_ops
{
225 u32 (*msm_readl_relaxed
)(struct sdhci_host
*host
, u32 offset
);
226 void (*msm_writel_relaxed
)(u32 val
, struct sdhci_host
*host
,
231 * From V5, register spaces have changed. Wrap this info in a structure
232 * and choose the data_structure based on version info mentioned in DT.
234 struct sdhci_msm_variant_info
{
236 const struct sdhci_msm_variant_ops
*var_ops
;
237 const struct sdhci_msm_offset
*offset
;
240 struct sdhci_msm_host
{
241 struct platform_device
*pdev
;
242 void __iomem
*core_mem
; /* MSM SDCC mapped address */
243 int pwr_irq
; /* power irq */
244 struct clk
*bus_clk
; /* SDHC bus voter clock */
245 struct clk
*xo_clk
; /* TCXO clk needed for FLL feature of cm_dll*/
246 struct clk_bulk_data bulk_clks
[4]; /* core, iface, cal, sleep clocks */
247 unsigned long clk_rate
;
248 struct mmc_host
*mmc
;
249 bool use_14lpp_dll_reset
;
251 bool calibration_done
;
252 u8 saved_tuning_phase
;
256 wait_queue_head_t pwr_irq_wait
;
260 const struct sdhci_msm_variant_ops
*var_ops
;
261 const struct sdhci_msm_offset
*offset
;
264 bool updated_ddr_cfg
;
267 static const struct sdhci_msm_offset
*sdhci_priv_msm_offset(struct sdhci_host
*host
)
269 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
270 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
272 return msm_host
->offset
;
276 * APIs to read/write to vendor specific registers which were there in the
277 * core_mem region before MCI was removed.
279 static u32
sdhci_msm_mci_variant_readl_relaxed(struct sdhci_host
*host
,
282 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
283 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
285 return readl_relaxed(msm_host
->core_mem
+ offset
);
288 static u32
sdhci_msm_v5_variant_readl_relaxed(struct sdhci_host
*host
,
291 return readl_relaxed(host
->ioaddr
+ offset
);
294 static void sdhci_msm_mci_variant_writel_relaxed(u32 val
,
295 struct sdhci_host
*host
, u32 offset
)
297 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
298 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
300 writel_relaxed(val
, msm_host
->core_mem
+ offset
);
303 static void sdhci_msm_v5_variant_writel_relaxed(u32 val
,
304 struct sdhci_host
*host
, u32 offset
)
306 writel_relaxed(val
, host
->ioaddr
+ offset
);
309 static unsigned int msm_get_clock_rate_for_bus_mode(struct sdhci_host
*host
,
312 struct mmc_ios ios
= host
->mmc
->ios
;
314 * The SDHC requires internal clock frequency to be double the
315 * actual clock that will be set for DDR mode. The controller
316 * uses the faster clock(100/400MHz) for some of its parts and
317 * send the actual required clock (50/200MHz) to the card.
319 if (ios
.timing
== MMC_TIMING_UHS_DDR50
||
320 ios
.timing
== MMC_TIMING_MMC_DDR52
||
321 ios
.timing
== MMC_TIMING_MMC_HS400
||
322 host
->flags
& SDHCI_HS400_TUNING
)
327 static void msm_set_clock_rate_for_bus_mode(struct sdhci_host
*host
,
330 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
331 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
332 struct mmc_ios curr_ios
= host
->mmc
->ios
;
333 struct clk
*core_clk
= msm_host
->bulk_clks
[0].clk
;
336 clock
= msm_get_clock_rate_for_bus_mode(host
, clock
);
337 rc
= clk_set_rate(core_clk
, clock
);
339 pr_err("%s: Failed to set clock at rate %u at timing %d\n",
340 mmc_hostname(host
->mmc
), clock
,
344 msm_host
->clk_rate
= clock
;
345 pr_debug("%s: Setting clock at rate %lu at timing %d\n",
346 mmc_hostname(host
->mmc
), clk_get_rate(core_clk
),
350 /* Platform specific tuning */
351 static inline int msm_dll_poll_ck_out_en(struct sdhci_host
*host
, u8 poll
)
355 struct mmc_host
*mmc
= host
->mmc
;
356 const struct sdhci_msm_offset
*msm_offset
=
357 sdhci_priv_msm_offset(host
);
359 /* Poll for CK_OUT_EN bit. max. poll time = 50us */
360 ck_out_en
= !!(readl_relaxed(host
->ioaddr
+
361 msm_offset
->core_dll_config
) & CORE_CK_OUT_EN
);
363 while (ck_out_en
!= poll
) {
364 if (--wait_cnt
== 0) {
365 dev_err(mmc_dev(mmc
), "%s: CK_OUT_EN bit is not %d\n",
366 mmc_hostname(mmc
), poll
);
371 ck_out_en
= !!(readl_relaxed(host
->ioaddr
+
372 msm_offset
->core_dll_config
) & CORE_CK_OUT_EN
);
378 static int msm_config_cm_dll_phase(struct sdhci_host
*host
, u8 phase
)
381 static const u8 grey_coded_phase_table
[] = {
382 0x0, 0x1, 0x3, 0x2, 0x6, 0x7, 0x5, 0x4,
383 0xc, 0xd, 0xf, 0xe, 0xa, 0xb, 0x9, 0x8
387 struct mmc_host
*mmc
= host
->mmc
;
388 const struct sdhci_msm_offset
*msm_offset
=
389 sdhci_priv_msm_offset(host
);
394 spin_lock_irqsave(&host
->lock
, flags
);
396 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_dll_config
);
397 config
&= ~(CORE_CDR_EN
| CORE_CK_OUT_EN
);
398 config
|= (CORE_CDR_EXT_EN
| CORE_DLL_EN
);
399 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_dll_config
);
401 /* Wait until CK_OUT_EN bit of DLL_CONFIG register becomes '0' */
402 rc
= msm_dll_poll_ck_out_en(host
, 0);
407 * Write the selected DLL clock output phase (0 ... 15)
408 * to CDR_SELEXT bit field of DLL_CONFIG register.
410 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_dll_config
);
411 config
&= ~CDR_SELEXT_MASK
;
412 config
|= grey_coded_phase_table
[phase
] << CDR_SELEXT_SHIFT
;
413 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_dll_config
);
415 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_dll_config
);
416 config
|= CORE_CK_OUT_EN
;
417 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_dll_config
);
419 /* Wait until CK_OUT_EN bit of DLL_CONFIG register becomes '1' */
420 rc
= msm_dll_poll_ck_out_en(host
, 1);
424 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_dll_config
);
425 config
|= CORE_CDR_EN
;
426 config
&= ~CORE_CDR_EXT_EN
;
427 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_dll_config
);
431 dev_err(mmc_dev(mmc
), "%s: Failed to set DLL phase: %d\n",
432 mmc_hostname(mmc
), phase
);
434 spin_unlock_irqrestore(&host
->lock
, flags
);
439 * Find out the greatest range of consecuitive selected
440 * DLL clock output phases that can be used as sampling
441 * setting for SD3.0 UHS-I card read operation (in SDR104
442 * timing mode) or for eMMC4.5 card read operation (in
443 * HS400/HS200 timing mode).
444 * Select the 3/4 of the range and configure the DLL with the
445 * selected DLL clock output phase.
448 static int msm_find_most_appropriate_phase(struct sdhci_host
*host
,
449 u8
*phase_table
, u8 total_phases
)
452 u8 ranges
[MAX_PHASES
][MAX_PHASES
] = { {0}, {0} };
453 u8 phases_per_row
[MAX_PHASES
] = { 0 };
454 int row_index
= 0, col_index
= 0, selected_row_index
= 0, curr_max
= 0;
455 int i
, cnt
, phase_0_raw_index
= 0, phase_15_raw_index
= 0;
456 bool phase_0_found
= false, phase_15_found
= false;
457 struct mmc_host
*mmc
= host
->mmc
;
459 if (!total_phases
|| (total_phases
> MAX_PHASES
)) {
460 dev_err(mmc_dev(mmc
), "%s: Invalid argument: total_phases=%d\n",
461 mmc_hostname(mmc
), total_phases
);
465 for (cnt
= 0; cnt
< total_phases
; cnt
++) {
466 ranges
[row_index
][col_index
] = phase_table
[cnt
];
467 phases_per_row
[row_index
] += 1;
470 if ((cnt
+ 1) == total_phases
) {
472 /* check if next phase in phase_table is consecutive or not */
473 } else if ((phase_table
[cnt
] + 1) != phase_table
[cnt
+ 1]) {
479 if (row_index
>= MAX_PHASES
)
482 /* Check if phase-0 is present in first valid window? */
484 phase_0_found
= true;
485 phase_0_raw_index
= 0;
486 /* Check if cycle exist between 2 valid windows */
487 for (cnt
= 1; cnt
<= row_index
; cnt
++) {
488 if (phases_per_row
[cnt
]) {
489 for (i
= 0; i
< phases_per_row
[cnt
]; i
++) {
490 if (ranges
[cnt
][i
] == 15) {
491 phase_15_found
= true;
492 phase_15_raw_index
= cnt
;
500 /* If 2 valid windows form cycle then merge them as single window */
501 if (phase_0_found
&& phase_15_found
) {
502 /* number of phases in raw where phase 0 is present */
503 u8 phases_0
= phases_per_row
[phase_0_raw_index
];
504 /* number of phases in raw where phase 15 is present */
505 u8 phases_15
= phases_per_row
[phase_15_raw_index
];
507 if (phases_0
+ phases_15
>= MAX_PHASES
)
509 * If there are more than 1 phase windows then total
510 * number of phases in both the windows should not be
511 * more than or equal to MAX_PHASES.
515 /* Merge 2 cyclic windows */
517 for (cnt
= 0; cnt
< phases_0
; cnt
++) {
518 ranges
[phase_15_raw_index
][i
] =
519 ranges
[phase_0_raw_index
][cnt
];
520 if (++i
>= MAX_PHASES
)
524 phases_per_row
[phase_0_raw_index
] = 0;
525 phases_per_row
[phase_15_raw_index
] = phases_15
+ phases_0
;
528 for (cnt
= 0; cnt
<= row_index
; cnt
++) {
529 if (phases_per_row
[cnt
] > curr_max
) {
530 curr_max
= phases_per_row
[cnt
];
531 selected_row_index
= cnt
;
535 i
= (curr_max
* 3) / 4;
539 ret
= ranges
[selected_row_index
][i
];
541 if (ret
>= MAX_PHASES
) {
543 dev_err(mmc_dev(mmc
), "%s: Invalid phase selected=%d\n",
544 mmc_hostname(mmc
), ret
);
550 static inline void msm_cm_dll_set_freq(struct sdhci_host
*host
)
552 u32 mclk_freq
= 0, config
;
553 const struct sdhci_msm_offset
*msm_offset
=
554 sdhci_priv_msm_offset(host
);
556 /* Program the MCLK value to MCLK_FREQ bit field */
557 if (host
->clock
<= 112000000)
559 else if (host
->clock
<= 125000000)
561 else if (host
->clock
<= 137000000)
563 else if (host
->clock
<= 150000000)
565 else if (host
->clock
<= 162000000)
567 else if (host
->clock
<= 175000000)
569 else if (host
->clock
<= 187000000)
571 else if (host
->clock
<= 200000000)
574 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_dll_config
);
575 config
&= ~CMUX_SHIFT_PHASE_MASK
;
576 config
|= mclk_freq
<< CMUX_SHIFT_PHASE_SHIFT
;
577 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_dll_config
);
580 /* Initialize the DLL (Programmable Delay Line) */
581 static int msm_init_cm_dll(struct sdhci_host
*host
)
583 struct mmc_host
*mmc
= host
->mmc
;
584 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
585 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
587 unsigned long flags
, xo_clk
= 0;
589 const struct sdhci_msm_offset
*msm_offset
=
592 if (msm_host
->use_14lpp_dll_reset
&& !IS_ERR_OR_NULL(msm_host
->xo_clk
))
593 xo_clk
= clk_get_rate(msm_host
->xo_clk
);
595 spin_lock_irqsave(&host
->lock
, flags
);
598 * Make sure that clock is always enabled when DLL
599 * tuning is in progress. Keeping PWRSAVE ON may
600 * turn off the clock.
602 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_vendor_spec
);
603 config
&= ~CORE_CLK_PWRSAVE
;
604 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_vendor_spec
);
606 if (msm_host
->use_14lpp_dll_reset
) {
607 config
= readl_relaxed(host
->ioaddr
+
608 msm_offset
->core_dll_config
);
609 config
&= ~CORE_CK_OUT_EN
;
610 writel_relaxed(config
, host
->ioaddr
+
611 msm_offset
->core_dll_config
);
613 config
= readl_relaxed(host
->ioaddr
+
614 msm_offset
->core_dll_config_2
);
615 config
|= CORE_DLL_CLOCK_DISABLE
;
616 writel_relaxed(config
, host
->ioaddr
+
617 msm_offset
->core_dll_config_2
);
620 config
= readl_relaxed(host
->ioaddr
+
621 msm_offset
->core_dll_config
);
622 config
|= CORE_DLL_RST
;
623 writel_relaxed(config
, host
->ioaddr
+
624 msm_offset
->core_dll_config
);
626 config
= readl_relaxed(host
->ioaddr
+
627 msm_offset
->core_dll_config
);
628 config
|= CORE_DLL_PDN
;
629 writel_relaxed(config
, host
->ioaddr
+
630 msm_offset
->core_dll_config
);
631 msm_cm_dll_set_freq(host
);
633 if (msm_host
->use_14lpp_dll_reset
&&
634 !IS_ERR_OR_NULL(msm_host
->xo_clk
)) {
637 config
= readl_relaxed(host
->ioaddr
+
638 msm_offset
->core_dll_config_2
);
639 config
&= CORE_FLL_CYCLE_CNT
;
641 mclk_freq
= DIV_ROUND_CLOSEST_ULL((host
->clock
* 8),
644 mclk_freq
= DIV_ROUND_CLOSEST_ULL((host
->clock
* 4),
647 config
= readl_relaxed(host
->ioaddr
+
648 msm_offset
->core_dll_config_2
);
649 config
&= ~(0xFF << 10);
650 config
|= mclk_freq
<< 10;
652 writel_relaxed(config
, host
->ioaddr
+
653 msm_offset
->core_dll_config_2
);
654 /* wait for 5us before enabling DLL clock */
658 config
= readl_relaxed(host
->ioaddr
+
659 msm_offset
->core_dll_config
);
660 config
&= ~CORE_DLL_RST
;
661 writel_relaxed(config
, host
->ioaddr
+
662 msm_offset
->core_dll_config
);
664 config
= readl_relaxed(host
->ioaddr
+
665 msm_offset
->core_dll_config
);
666 config
&= ~CORE_DLL_PDN
;
667 writel_relaxed(config
, host
->ioaddr
+
668 msm_offset
->core_dll_config
);
670 if (msm_host
->use_14lpp_dll_reset
) {
671 msm_cm_dll_set_freq(host
);
672 config
= readl_relaxed(host
->ioaddr
+
673 msm_offset
->core_dll_config_2
);
674 config
&= ~CORE_DLL_CLOCK_DISABLE
;
675 writel_relaxed(config
, host
->ioaddr
+
676 msm_offset
->core_dll_config_2
);
679 config
= readl_relaxed(host
->ioaddr
+
680 msm_offset
->core_dll_config
);
681 config
|= CORE_DLL_EN
;
682 writel_relaxed(config
, host
->ioaddr
+
683 msm_offset
->core_dll_config
);
685 config
= readl_relaxed(host
->ioaddr
+
686 msm_offset
->core_dll_config
);
687 config
|= CORE_CK_OUT_EN
;
688 writel_relaxed(config
, host
->ioaddr
+
689 msm_offset
->core_dll_config
);
691 /* Wait until DLL_LOCK bit of DLL_STATUS register becomes '1' */
692 while (!(readl_relaxed(host
->ioaddr
+ msm_offset
->core_dll_status
) &
694 /* max. wait for 50us sec for LOCK bit to be set */
695 if (--wait_cnt
== 0) {
696 dev_err(mmc_dev(mmc
), "%s: DLL failed to LOCK\n",
698 spin_unlock_irqrestore(&host
->lock
, flags
);
704 spin_unlock_irqrestore(&host
->lock
, flags
);
708 static void msm_hc_select_default(struct sdhci_host
*host
)
710 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
711 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
713 const struct sdhci_msm_offset
*msm_offset
=
716 if (!msm_host
->use_cdclp533
) {
717 config
= readl_relaxed(host
->ioaddr
+
718 msm_offset
->core_vendor_spec3
);
719 config
&= ~CORE_PWRSAVE_DLL
;
720 writel_relaxed(config
, host
->ioaddr
+
721 msm_offset
->core_vendor_spec3
);
724 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_vendor_spec
);
725 config
&= ~CORE_HC_MCLK_SEL_MASK
;
726 config
|= CORE_HC_MCLK_SEL_DFLT
;
727 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_vendor_spec
);
730 * Disable HC_SELECT_IN to be able to use the UHS mode select
731 * configuration from Host Control2 register for all other
733 * Write 0 to HC_SELECT_IN and HC_SELECT_IN_EN field
734 * in VENDOR_SPEC_FUNC
736 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_vendor_spec
);
737 config
&= ~CORE_HC_SELECT_IN_EN
;
738 config
&= ~CORE_HC_SELECT_IN_MASK
;
739 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_vendor_spec
);
742 * Make sure above writes impacting free running MCLK are completed
743 * before changing the clk_rate at GCC.
748 static void msm_hc_select_hs400(struct sdhci_host
*host
)
750 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
751 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
752 struct mmc_ios ios
= host
->mmc
->ios
;
753 u32 config
, dll_lock
;
755 const struct sdhci_msm_offset
*msm_offset
=
758 /* Select the divided clock (free running MCLK/2) */
759 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_vendor_spec
);
760 config
&= ~CORE_HC_MCLK_SEL_MASK
;
761 config
|= CORE_HC_MCLK_SEL_HS400
;
763 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_vendor_spec
);
765 * Select HS400 mode using the HC_SELECT_IN from VENDOR SPEC
768 if ((msm_host
->tuning_done
|| ios
.enhanced_strobe
) &&
769 !msm_host
->calibration_done
) {
770 config
= readl_relaxed(host
->ioaddr
+
771 msm_offset
->core_vendor_spec
);
772 config
|= CORE_HC_SELECT_IN_HS400
;
773 config
|= CORE_HC_SELECT_IN_EN
;
774 writel_relaxed(config
, host
->ioaddr
+
775 msm_offset
->core_vendor_spec
);
777 if (!msm_host
->clk_rate
&& !msm_host
->use_cdclp533
) {
779 * Poll on DLL_LOCK or DDR_DLL_LOCK bits in
780 * core_dll_status to be set. This should get set
781 * within 15 us at 200 MHz.
783 rc
= readl_relaxed_poll_timeout(host
->ioaddr
+
784 msm_offset
->core_dll_status
,
788 CORE_DDR_DLL_LOCK
)), 10,
790 if (rc
== -ETIMEDOUT
)
791 pr_err("%s: Unable to get DLL_LOCK/DDR_DLL_LOCK, dll_status: 0x%08x\n",
792 mmc_hostname(host
->mmc
), dll_lock
);
795 * Make sure above writes impacting free running MCLK are completed
796 * before changing the clk_rate at GCC.
802 * sdhci_msm_hc_select_mode :- In general all timing modes are
803 * controlled via UHS mode select in Host Control2 register.
804 * eMMC specific HS200/HS400 doesn't have their respective modes
805 * defined here, hence we use these values.
807 * HS200 - SDR104 (Since they both are equivalent in functionality)
808 * HS400 - This involves multiple configurations
809 * Initially SDR104 - when tuning is required as HS200
810 * Then when switching to DDR @ 400MHz (HS400) we use
811 * the vendor specific HC_SELECT_IN to control the mode.
813 * In addition to controlling the modes we also need to select the
814 * correct input clock for DLL depending on the mode.
816 * HS400 - divided clock (free running MCLK/2)
817 * All other modes - default (free running MCLK)
819 static void sdhci_msm_hc_select_mode(struct sdhci_host
*host
)
821 struct mmc_ios ios
= host
->mmc
->ios
;
823 if (ios
.timing
== MMC_TIMING_MMC_HS400
||
824 host
->flags
& SDHCI_HS400_TUNING
)
825 msm_hc_select_hs400(host
);
827 msm_hc_select_default(host
);
830 static int sdhci_msm_cdclp533_calibration(struct sdhci_host
*host
)
832 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
833 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
834 u32 config
, calib_done
;
836 const struct sdhci_msm_offset
*msm_offset
=
839 pr_debug("%s: %s: Enter\n", mmc_hostname(host
->mmc
), __func__
);
842 * Retuning in HS400 (DDR mode) will fail, just reset the
843 * tuning block and restore the saved tuning phase.
845 ret
= msm_init_cm_dll(host
);
849 /* Set the selected phase in delay line hw block */
850 ret
= msm_config_cm_dll_phase(host
, msm_host
->saved_tuning_phase
);
854 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_dll_config
);
855 config
|= CORE_CMD_DAT_TRACK_SEL
;
856 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_dll_config
);
858 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_ddr_200_cfg
);
859 config
&= ~CORE_CDC_T4_DLY_SEL
;
860 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_ddr_200_cfg
);
862 config
= readl_relaxed(host
->ioaddr
+ CORE_CSR_CDC_GEN_CFG
);
863 config
&= ~CORE_CDC_SWITCH_BYPASS_OFF
;
864 writel_relaxed(config
, host
->ioaddr
+ CORE_CSR_CDC_GEN_CFG
);
866 config
= readl_relaxed(host
->ioaddr
+ CORE_CSR_CDC_GEN_CFG
);
867 config
|= CORE_CDC_SWITCH_RC_EN
;
868 writel_relaxed(config
, host
->ioaddr
+ CORE_CSR_CDC_GEN_CFG
);
870 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_ddr_200_cfg
);
871 config
&= ~CORE_START_CDC_TRAFFIC
;
872 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_ddr_200_cfg
);
874 /* Perform CDC Register Initialization Sequence */
876 writel_relaxed(0x11800EC, host
->ioaddr
+ CORE_CSR_CDC_CTLR_CFG0
);
877 writel_relaxed(0x3011111, host
->ioaddr
+ CORE_CSR_CDC_CTLR_CFG1
);
878 writel_relaxed(0x1201000, host
->ioaddr
+ CORE_CSR_CDC_CAL_TIMER_CFG0
);
879 writel_relaxed(0x4, host
->ioaddr
+ CORE_CSR_CDC_CAL_TIMER_CFG1
);
880 writel_relaxed(0xCB732020, host
->ioaddr
+ CORE_CSR_CDC_REFCOUNT_CFG
);
881 writel_relaxed(0xB19, host
->ioaddr
+ CORE_CSR_CDC_COARSE_CAL_CFG
);
882 writel_relaxed(0x4E2, host
->ioaddr
+ CORE_CSR_CDC_DELAY_CFG
);
883 writel_relaxed(0x0, host
->ioaddr
+ CORE_CDC_OFFSET_CFG
);
884 writel_relaxed(0x16334, host
->ioaddr
+ CORE_CDC_SLAVE_DDA_CFG
);
886 /* CDC HW Calibration */
888 config
= readl_relaxed(host
->ioaddr
+ CORE_CSR_CDC_CTLR_CFG0
);
889 config
|= CORE_SW_TRIG_FULL_CALIB
;
890 writel_relaxed(config
, host
->ioaddr
+ CORE_CSR_CDC_CTLR_CFG0
);
892 config
= readl_relaxed(host
->ioaddr
+ CORE_CSR_CDC_CTLR_CFG0
);
893 config
&= ~CORE_SW_TRIG_FULL_CALIB
;
894 writel_relaxed(config
, host
->ioaddr
+ CORE_CSR_CDC_CTLR_CFG0
);
896 config
= readl_relaxed(host
->ioaddr
+ CORE_CSR_CDC_CTLR_CFG0
);
897 config
|= CORE_HW_AUTOCAL_ENA
;
898 writel_relaxed(config
, host
->ioaddr
+ CORE_CSR_CDC_CTLR_CFG0
);
900 config
= readl_relaxed(host
->ioaddr
+ CORE_CSR_CDC_CAL_TIMER_CFG0
);
901 config
|= CORE_TIMER_ENA
;
902 writel_relaxed(config
, host
->ioaddr
+ CORE_CSR_CDC_CAL_TIMER_CFG0
);
904 ret
= readl_relaxed_poll_timeout(host
->ioaddr
+ CORE_CSR_CDC_STATUS0
,
906 (calib_done
& CORE_CALIBRATION_DONE
),
909 if (ret
== -ETIMEDOUT
) {
910 pr_err("%s: %s: CDC calibration was not completed\n",
911 mmc_hostname(host
->mmc
), __func__
);
915 ret
= readl_relaxed(host
->ioaddr
+ CORE_CSR_CDC_STATUS0
)
916 & CORE_CDC_ERROR_CODE_MASK
;
918 pr_err("%s: %s: CDC error code %d\n",
919 mmc_hostname(host
->mmc
), __func__
, ret
);
924 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_ddr_200_cfg
);
925 config
|= CORE_START_CDC_TRAFFIC
;
926 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_ddr_200_cfg
);
928 pr_debug("%s: %s: Exit, ret %d\n", mmc_hostname(host
->mmc
),
933 static int sdhci_msm_cm_dll_sdc4_calibration(struct sdhci_host
*host
)
935 struct mmc_host
*mmc
= host
->mmc
;
936 u32 dll_status
, config
, ddr_cfg_offset
;
938 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
939 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
940 const struct sdhci_msm_offset
*msm_offset
=
941 sdhci_priv_msm_offset(host
);
943 pr_debug("%s: %s: Enter\n", mmc_hostname(host
->mmc
), __func__
);
946 * Currently the core_ddr_config register defaults to desired
947 * configuration on reset. Currently reprogramming the power on
948 * reset (POR) value in case it might have been modified by
949 * bootloaders. In the future, if this changes, then the desired
950 * values will need to be programmed appropriately.
952 if (msm_host
->updated_ddr_cfg
)
953 ddr_cfg_offset
= msm_offset
->core_ddr_config
;
955 ddr_cfg_offset
= msm_offset
->core_ddr_config_old
;
956 writel_relaxed(DDR_CONFIG_POR_VAL
, host
->ioaddr
+ ddr_cfg_offset
);
958 if (mmc
->ios
.enhanced_strobe
) {
959 config
= readl_relaxed(host
->ioaddr
+
960 msm_offset
->core_ddr_200_cfg
);
961 config
|= CORE_CMDIN_RCLK_EN
;
962 writel_relaxed(config
, host
->ioaddr
+
963 msm_offset
->core_ddr_200_cfg
);
966 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_dll_config_2
);
967 config
|= CORE_DDR_CAL_EN
;
968 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_dll_config_2
);
970 ret
= readl_relaxed_poll_timeout(host
->ioaddr
+
971 msm_offset
->core_dll_status
,
973 (dll_status
& CORE_DDR_DLL_LOCK
),
976 if (ret
== -ETIMEDOUT
) {
977 pr_err("%s: %s: CM_DLL_SDC4 calibration was not completed\n",
978 mmc_hostname(host
->mmc
), __func__
);
982 config
= readl_relaxed(host
->ioaddr
+ msm_offset
->core_vendor_spec3
);
983 config
|= CORE_PWRSAVE_DLL
;
984 writel_relaxed(config
, host
->ioaddr
+ msm_offset
->core_vendor_spec3
);
987 * Drain writebuffer to ensure above DLL calibration
988 * and PWRSAVE DLL is enabled.
992 pr_debug("%s: %s: Exit, ret %d\n", mmc_hostname(host
->mmc
),
997 static int sdhci_msm_hs400_dll_calibration(struct sdhci_host
*host
)
999 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1000 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1001 struct mmc_host
*mmc
= host
->mmc
;
1004 const struct sdhci_msm_offset
*msm_offset
=
1007 pr_debug("%s: %s: Enter\n", mmc_hostname(host
->mmc
), __func__
);
1010 * Retuning in HS400 (DDR mode) will fail, just reset the
1011 * tuning block and restore the saved tuning phase.
1013 ret
= msm_init_cm_dll(host
);
1017 if (!mmc
->ios
.enhanced_strobe
) {
1018 /* Set the selected phase in delay line hw block */
1019 ret
= msm_config_cm_dll_phase(host
,
1020 msm_host
->saved_tuning_phase
);
1023 config
= readl_relaxed(host
->ioaddr
+
1024 msm_offset
->core_dll_config
);
1025 config
|= CORE_CMD_DAT_TRACK_SEL
;
1026 writel_relaxed(config
, host
->ioaddr
+
1027 msm_offset
->core_dll_config
);
1030 if (msm_host
->use_cdclp533
)
1031 ret
= sdhci_msm_cdclp533_calibration(host
);
1033 ret
= sdhci_msm_cm_dll_sdc4_calibration(host
);
1035 pr_debug("%s: %s: Exit, ret %d\n", mmc_hostname(host
->mmc
),
1040 static void sdhci_msm_set_cdr(struct sdhci_host
*host
, bool enable
)
1042 const struct sdhci_msm_offset
*msm_offset
= sdhci_priv_msm_offset(host
);
1043 u32 config
, oldconfig
= readl_relaxed(host
->ioaddr
+
1044 msm_offset
->core_dll_config
);
1048 config
|= CORE_CDR_EN
;
1049 config
&= ~CORE_CDR_EXT_EN
;
1051 config
&= ~CORE_CDR_EN
;
1052 config
|= CORE_CDR_EXT_EN
;
1055 if (config
!= oldconfig
)
1056 writel_relaxed(config
, host
->ioaddr
+
1057 msm_offset
->core_dll_config
);
1060 static int sdhci_msm_execute_tuning(struct mmc_host
*mmc
, u32 opcode
)
1062 struct sdhci_host
*host
= mmc_priv(mmc
);
1063 int tuning_seq_cnt
= 3;
1064 u8 phase
, tuned_phases
[16], tuned_phase_cnt
= 0;
1066 struct mmc_ios ios
= host
->mmc
->ios
;
1067 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1068 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1071 * Tuning is required for SDR104, HS200 and HS400 cards and
1072 * if clock frequency is greater than 100MHz in these modes.
1074 if (host
->clock
<= CORE_FREQ_100MHZ
||
1075 !(ios
.timing
== MMC_TIMING_MMC_HS400
||
1076 ios
.timing
== MMC_TIMING_MMC_HS200
||
1077 ios
.timing
== MMC_TIMING_UHS_SDR104
)) {
1078 msm_host
->use_cdr
= false;
1079 sdhci_msm_set_cdr(host
, false);
1083 /* Clock-Data-Recovery used to dynamically adjust RX sampling point */
1084 msm_host
->use_cdr
= true;
1087 * For HS400 tuning in HS200 timing requires:
1088 * - select MCLK/2 in VENDOR_SPEC
1089 * - program MCLK to 400MHz (or nearest supported) in GCC
1091 if (host
->flags
& SDHCI_HS400_TUNING
) {
1092 sdhci_msm_hc_select_mode(host
);
1093 msm_set_clock_rate_for_bus_mode(host
, ios
.clock
);
1094 host
->flags
&= ~SDHCI_HS400_TUNING
;
1098 /* First of all reset the tuning block */
1099 rc
= msm_init_cm_dll(host
);
1105 /* Set the phase in delay line hw block */
1106 rc
= msm_config_cm_dll_phase(host
, phase
);
1110 msm_host
->saved_tuning_phase
= phase
;
1111 rc
= mmc_send_tuning(mmc
, opcode
, NULL
);
1113 /* Tuning is successful at this tuning point */
1114 tuned_phases
[tuned_phase_cnt
++] = phase
;
1115 dev_dbg(mmc_dev(mmc
), "%s: Found good phase = %d\n",
1116 mmc_hostname(mmc
), phase
);
1118 } while (++phase
< ARRAY_SIZE(tuned_phases
));
1120 if (tuned_phase_cnt
) {
1121 rc
= msm_find_most_appropriate_phase(host
, tuned_phases
,
1129 * Finally set the selected phase in delay
1132 rc
= msm_config_cm_dll_phase(host
, phase
);
1135 dev_dbg(mmc_dev(mmc
), "%s: Setting the tuning phase to %d\n",
1136 mmc_hostname(mmc
), phase
);
1138 if (--tuning_seq_cnt
)
1141 dev_dbg(mmc_dev(mmc
), "%s: No tuning point found\n",
1147 msm_host
->tuning_done
= true;
1152 * sdhci_msm_hs400 - Calibrate the DLL for HS400 bus speed mode operation.
1153 * This needs to be done for both tuning and enhanced_strobe mode.
1154 * DLL operation is only needed for clock > 100MHz. For clock <= 100MHz
1155 * fixed feedback clock is used.
1157 static void sdhci_msm_hs400(struct sdhci_host
*host
, struct mmc_ios
*ios
)
1159 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1160 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1163 if (host
->clock
> CORE_FREQ_100MHZ
&&
1164 (msm_host
->tuning_done
|| ios
->enhanced_strobe
) &&
1165 !msm_host
->calibration_done
) {
1166 ret
= sdhci_msm_hs400_dll_calibration(host
);
1168 msm_host
->calibration_done
= true;
1170 pr_err("%s: Failed to calibrate DLL for hs400 mode (%d)\n",
1171 mmc_hostname(host
->mmc
), ret
);
1175 static void sdhci_msm_set_uhs_signaling(struct sdhci_host
*host
,
1178 struct mmc_host
*mmc
= host
->mmc
;
1179 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1180 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1183 const struct sdhci_msm_offset
*msm_offset
=
1186 ctrl_2
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
1187 /* Select Bus Speed Mode for host */
1188 ctrl_2
&= ~SDHCI_CTRL_UHS_MASK
;
1190 case MMC_TIMING_UHS_SDR12
:
1191 ctrl_2
|= SDHCI_CTRL_UHS_SDR12
;
1193 case MMC_TIMING_UHS_SDR25
:
1194 ctrl_2
|= SDHCI_CTRL_UHS_SDR25
;
1196 case MMC_TIMING_UHS_SDR50
:
1197 ctrl_2
|= SDHCI_CTRL_UHS_SDR50
;
1199 case MMC_TIMING_MMC_HS400
:
1200 case MMC_TIMING_MMC_HS200
:
1201 case MMC_TIMING_UHS_SDR104
:
1202 ctrl_2
|= SDHCI_CTRL_UHS_SDR104
;
1204 case MMC_TIMING_UHS_DDR50
:
1205 case MMC_TIMING_MMC_DDR52
:
1206 ctrl_2
|= SDHCI_CTRL_UHS_DDR50
;
1211 * When clock frequency is less than 100MHz, the feedback clock must be
1212 * provided and DLL must not be used so that tuning can be skipped. To
1213 * provide feedback clock, the mode selection can be any value less
1214 * than 3'b011 in bits [2:0] of HOST CONTROL2 register.
1216 if (host
->clock
<= CORE_FREQ_100MHZ
) {
1217 if (uhs
== MMC_TIMING_MMC_HS400
||
1218 uhs
== MMC_TIMING_MMC_HS200
||
1219 uhs
== MMC_TIMING_UHS_SDR104
)
1220 ctrl_2
&= ~SDHCI_CTRL_UHS_MASK
;
1222 * DLL is not required for clock <= 100MHz
1223 * Thus, make sure DLL it is disabled when not required
1225 config
= readl_relaxed(host
->ioaddr
+
1226 msm_offset
->core_dll_config
);
1227 config
|= CORE_DLL_RST
;
1228 writel_relaxed(config
, host
->ioaddr
+
1229 msm_offset
->core_dll_config
);
1231 config
= readl_relaxed(host
->ioaddr
+
1232 msm_offset
->core_dll_config
);
1233 config
|= CORE_DLL_PDN
;
1234 writel_relaxed(config
, host
->ioaddr
+
1235 msm_offset
->core_dll_config
);
1238 * The DLL needs to be restored and CDCLP533 recalibrated
1239 * when the clock frequency is set back to 400MHz.
1241 msm_host
->calibration_done
= false;
1244 dev_dbg(mmc_dev(mmc
), "%s: clock=%u uhs=%u ctrl_2=0x%x\n",
1245 mmc_hostname(host
->mmc
), host
->clock
, uhs
, ctrl_2
);
1246 sdhci_writew(host
, ctrl_2
, SDHCI_HOST_CONTROL2
);
1248 if (mmc
->ios
.timing
== MMC_TIMING_MMC_HS400
)
1249 sdhci_msm_hs400(host
, &mmc
->ios
);
1252 static inline void sdhci_msm_init_pwr_irq_wait(struct sdhci_msm_host
*msm_host
)
1254 init_waitqueue_head(&msm_host
->pwr_irq_wait
);
1257 static inline void sdhci_msm_complete_pwr_irq_wait(
1258 struct sdhci_msm_host
*msm_host
)
1260 wake_up(&msm_host
->pwr_irq_wait
);
1264 * sdhci_msm_check_power_status API should be called when registers writes
1265 * which can toggle sdhci IO bus ON/OFF or change IO lines HIGH/LOW happens.
1266 * To what state the register writes will change the IO lines should be passed
1267 * as the argument req_type. This API will check whether the IO line's state
1268 * is already the expected state and will wait for power irq only if
1269 * power irq is expected to be trigerred based on the current IO line state
1270 * and expected IO line state.
1272 static void sdhci_msm_check_power_status(struct sdhci_host
*host
, u32 req_type
)
1274 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1275 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1277 u32 val
= SWITCHABLE_SIGNALING_VOLTAGE
;
1278 const struct sdhci_msm_offset
*msm_offset
=
1281 pr_debug("%s: %s: request %d curr_pwr_state %x curr_io_level %x\n",
1282 mmc_hostname(host
->mmc
), __func__
, req_type
,
1283 msm_host
->curr_pwr_state
, msm_host
->curr_io_level
);
1286 * The power interrupt will not be generated for signal voltage
1287 * switches if SWITCHABLE_SIGNALING_VOLTAGE in MCI_GENERICS is not set.
1288 * Since sdhci-msm-v5, this bit has been removed and SW must consider
1291 if (!msm_host
->mci_removed
)
1292 val
= msm_host_readl(msm_host
, host
,
1293 msm_offset
->core_generics
);
1294 if ((req_type
& REQ_IO_HIGH
|| req_type
& REQ_IO_LOW
) &&
1295 !(val
& SWITCHABLE_SIGNALING_VOLTAGE
)) {
1300 * The IRQ for request type IO High/LOW will be generated when -
1301 * there is a state change in 1.8V enable bit (bit 3) of
1302 * SDHCI_HOST_CONTROL2 register. The reset state of that bit is 0
1303 * which indicates 3.3V IO voltage. So, when MMC core layer tries
1304 * to set it to 3.3V before card detection happens, the
1305 * IRQ doesn't get triggered as there is no state change in this bit.
1306 * The driver already handles this case by changing the IO voltage
1307 * level to high as part of controller power up sequence. Hence, check
1308 * for host->pwr to handle a case where IO voltage high request is
1309 * issued even before controller power up.
1311 if ((req_type
& REQ_IO_HIGH
) && !host
->pwr
) {
1312 pr_debug("%s: do not wait for power IRQ that never comes, req_type: %d\n",
1313 mmc_hostname(host
->mmc
), req_type
);
1316 if ((req_type
& msm_host
->curr_pwr_state
) ||
1317 (req_type
& msm_host
->curr_io_level
))
1320 * This is needed here to handle cases where register writes will
1321 * not change the current bus state or io level of the controller.
1322 * In this case, no power irq will be triggerred and we should
1326 if (!wait_event_timeout(msm_host
->pwr_irq_wait
,
1327 msm_host
->pwr_irq_flag
,
1328 msecs_to_jiffies(MSM_PWR_IRQ_TIMEOUT_MS
)))
1329 dev_warn(&msm_host
->pdev
->dev
,
1330 "%s: pwr_irq for req: (%d) timed out\n",
1331 mmc_hostname(host
->mmc
), req_type
);
1333 pr_debug("%s: %s: request %d done\n", mmc_hostname(host
->mmc
),
1334 __func__
, req_type
);
1337 static void sdhci_msm_dump_pwr_ctrl_regs(struct sdhci_host
*host
)
1339 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1340 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1341 const struct sdhci_msm_offset
*msm_offset
=
1344 pr_err("%s: PWRCTL_STATUS: 0x%08x | PWRCTL_MASK: 0x%08x | PWRCTL_CTL: 0x%08x\n",
1345 mmc_hostname(host
->mmc
),
1346 msm_host_readl(msm_host
, host
, msm_offset
->core_pwrctl_status
),
1347 msm_host_readl(msm_host
, host
, msm_offset
->core_pwrctl_mask
),
1348 msm_host_readl(msm_host
, host
, msm_offset
->core_pwrctl_ctl
));
1351 static void sdhci_msm_handle_pwr_irq(struct sdhci_host
*host
, int irq
)
1353 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1354 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1355 u32 irq_status
, irq_ack
= 0;
1357 u32 pwr_state
= 0, io_level
= 0;
1359 const struct sdhci_msm_offset
*msm_offset
= msm_host
->offset
;
1361 irq_status
= msm_host_readl(msm_host
, host
,
1362 msm_offset
->core_pwrctl_status
);
1363 irq_status
&= INT_MASK
;
1365 msm_host_writel(msm_host
, irq_status
, host
,
1366 msm_offset
->core_pwrctl_clear
);
1369 * There is a rare HW scenario where the first clear pulse could be
1370 * lost when actual reset and clear/read of status register is
1371 * happening at a time. Hence, retry for at least 10 times to make
1372 * sure status register is cleared. Otherwise, this will result in
1373 * a spurious power IRQ resulting in system instability.
1375 while (irq_status
& msm_host_readl(msm_host
, host
,
1376 msm_offset
->core_pwrctl_status
)) {
1378 pr_err("%s: Timedout clearing (0x%x) pwrctl status register\n",
1379 mmc_hostname(host
->mmc
), irq_status
);
1380 sdhci_msm_dump_pwr_ctrl_regs(host
);
1384 msm_host_writel(msm_host
, irq_status
, host
,
1385 msm_offset
->core_pwrctl_clear
);
1390 /* Handle BUS ON/OFF*/
1391 if (irq_status
& CORE_PWRCTL_BUS_ON
) {
1392 pwr_state
= REQ_BUS_ON
;
1393 io_level
= REQ_IO_HIGH
;
1394 irq_ack
|= CORE_PWRCTL_BUS_SUCCESS
;
1396 if (irq_status
& CORE_PWRCTL_BUS_OFF
) {
1397 pwr_state
= REQ_BUS_OFF
;
1398 io_level
= REQ_IO_LOW
;
1399 irq_ack
|= CORE_PWRCTL_BUS_SUCCESS
;
1401 /* Handle IO LOW/HIGH */
1402 if (irq_status
& CORE_PWRCTL_IO_LOW
) {
1403 io_level
= REQ_IO_LOW
;
1404 irq_ack
|= CORE_PWRCTL_IO_SUCCESS
;
1406 if (irq_status
& CORE_PWRCTL_IO_HIGH
) {
1407 io_level
= REQ_IO_HIGH
;
1408 irq_ack
|= CORE_PWRCTL_IO_SUCCESS
;
1412 * The driver has to acknowledge the interrupt, switch voltages and
1413 * report back if it succeded or not to this register. The voltage
1414 * switches are handled by the sdhci core, so just report success.
1416 msm_host_writel(msm_host
, irq_ack
, host
,
1417 msm_offset
->core_pwrctl_ctl
);
1420 * If we don't have info regarding the voltage levels supported by
1421 * regulators, don't change the IO PAD PWR SWITCH.
1423 if (msm_host
->caps_0
& CORE_VOLT_SUPPORT
) {
1426 * We should unset IO PAD PWR switch only if the register write
1427 * can set IO lines high and the regulator also switches to 3 V.
1428 * Else, we should keep the IO PAD PWR switch set.
1429 * This is applicable to certain targets where eMMC vccq supply
1430 * is only 1.8V. In such targets, even during REQ_IO_HIGH, the
1431 * IO PAD PWR switch must be kept set to reflect actual
1432 * regulator voltage. This way, during initialization of
1433 * controllers with only 1.8V, we will set the IO PAD bit
1434 * without waiting for a REQ_IO_LOW.
1436 config
= readl_relaxed(host
->ioaddr
+
1437 msm_offset
->core_vendor_spec
);
1438 new_config
= config
;
1440 if ((io_level
& REQ_IO_HIGH
) &&
1441 (msm_host
->caps_0
& CORE_3_0V_SUPPORT
))
1442 new_config
&= ~CORE_IO_PAD_PWR_SWITCH
;
1443 else if ((io_level
& REQ_IO_LOW
) ||
1444 (msm_host
->caps_0
& CORE_1_8V_SUPPORT
))
1445 new_config
|= CORE_IO_PAD_PWR_SWITCH
;
1447 if (config
^ new_config
)
1448 writel_relaxed(new_config
, host
->ioaddr
+
1449 msm_offset
->core_vendor_spec
);
1453 msm_host
->curr_pwr_state
= pwr_state
;
1455 msm_host
->curr_io_level
= io_level
;
1457 pr_debug("%s: %s: Handled IRQ(%d), irq_status=0x%x, ack=0x%x\n",
1458 mmc_hostname(msm_host
->mmc
), __func__
, irq
, irq_status
,
1462 static irqreturn_t
sdhci_msm_pwr_irq(int irq
, void *data
)
1464 struct sdhci_host
*host
= (struct sdhci_host
*)data
;
1465 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1466 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1468 sdhci_msm_handle_pwr_irq(host
, irq
);
1469 msm_host
->pwr_irq_flag
= 1;
1470 sdhci_msm_complete_pwr_irq_wait(msm_host
);
1476 static unsigned int sdhci_msm_get_max_clock(struct sdhci_host
*host
)
1478 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1479 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1480 struct clk
*core_clk
= msm_host
->bulk_clks
[0].clk
;
1482 return clk_round_rate(core_clk
, ULONG_MAX
);
1485 static unsigned int sdhci_msm_get_min_clock(struct sdhci_host
*host
)
1487 return SDHCI_MSM_MIN_CLOCK
;
1491 * __sdhci_msm_set_clock - sdhci_msm clock control.
1494 * MSM controller does not use internal divider and
1495 * instead directly control the GCC clock as per
1496 * HW recommendation.
1498 static void __sdhci_msm_set_clock(struct sdhci_host
*host
, unsigned int clock
)
1502 * Keep actual_clock as zero -
1503 * - since there is no divider used so no need of having actual_clock.
1504 * - MSM controller uses SDCLK for data timeout calculation. If
1505 * actual_clock is zero, host->clock is taken for calculation.
1507 host
->mmc
->actual_clock
= 0;
1509 sdhci_writew(host
, 0, SDHCI_CLOCK_CONTROL
);
1515 * MSM controller do not use clock divider.
1516 * Thus read SDHCI_CLOCK_CONTROL and only enable
1517 * clock with no divider value programmed.
1519 clk
= sdhci_readw(host
, SDHCI_CLOCK_CONTROL
);
1520 sdhci_enable_clk(host
, clk
);
1523 /* sdhci_msm_set_clock - Called with (host->lock) spinlock held. */
1524 static void sdhci_msm_set_clock(struct sdhci_host
*host
, unsigned int clock
)
1526 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1527 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1530 msm_host
->clk_rate
= clock
;
1534 sdhci_msm_hc_select_mode(host
);
1536 msm_set_clock_rate_for_bus_mode(host
, clock
);
1538 __sdhci_msm_set_clock(host
, clock
);
1542 * Platform specific register write functions. This is so that, if any
1543 * register write needs to be followed up by platform specific actions,
1544 * they can be added here. These functions can go to sleep when writes
1545 * to certain registers are done.
1546 * These functions are relying on sdhci_set_ios not using spinlock.
1548 static int __sdhci_msm_check_write(struct sdhci_host
*host
, u16 val
, int reg
)
1550 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1551 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1555 case SDHCI_HOST_CONTROL2
:
1556 req_type
= (val
& SDHCI_CTRL_VDD_180
) ? REQ_IO_LOW
:
1559 case SDHCI_SOFTWARE_RESET
:
1560 if (host
->pwr
&& (val
& SDHCI_RESET_ALL
))
1561 req_type
= REQ_BUS_OFF
;
1563 case SDHCI_POWER_CONTROL
:
1564 req_type
= !val
? REQ_BUS_OFF
: REQ_BUS_ON
;
1566 case SDHCI_TRANSFER_MODE
:
1567 msm_host
->transfer_mode
= val
;
1570 if (!msm_host
->use_cdr
)
1572 if ((msm_host
->transfer_mode
& SDHCI_TRNS_READ
) &&
1573 SDHCI_GET_CMD(val
) != MMC_SEND_TUNING_BLOCK_HS200
&&
1574 SDHCI_GET_CMD(val
) != MMC_SEND_TUNING_BLOCK
)
1575 sdhci_msm_set_cdr(host
, true);
1577 sdhci_msm_set_cdr(host
, false);
1582 msm_host
->pwr_irq_flag
= 0;
1584 * Since this register write may trigger a power irq, ensure
1585 * all previous register writes are complete by this point.
1592 /* This function may sleep*/
1593 static void sdhci_msm_writew(struct sdhci_host
*host
, u16 val
, int reg
)
1597 req_type
= __sdhci_msm_check_write(host
, val
, reg
);
1598 writew_relaxed(val
, host
->ioaddr
+ reg
);
1601 sdhci_msm_check_power_status(host
, req_type
);
1604 /* This function may sleep*/
1605 static void sdhci_msm_writeb(struct sdhci_host
*host
, u8 val
, int reg
)
1609 req_type
= __sdhci_msm_check_write(host
, val
, reg
);
1611 writeb_relaxed(val
, host
->ioaddr
+ reg
);
1614 sdhci_msm_check_power_status(host
, req_type
);
1617 static void sdhci_msm_set_regulator_caps(struct sdhci_msm_host
*msm_host
)
1619 struct mmc_host
*mmc
= msm_host
->mmc
;
1620 struct regulator
*supply
= mmc
->supply
.vqmmc
;
1621 u32 caps
= 0, config
;
1622 struct sdhci_host
*host
= mmc_priv(mmc
);
1623 const struct sdhci_msm_offset
*msm_offset
= msm_host
->offset
;
1625 if (!IS_ERR(mmc
->supply
.vqmmc
)) {
1626 if (regulator_is_supported_voltage(supply
, 1700000, 1950000))
1627 caps
|= CORE_1_8V_SUPPORT
;
1628 if (regulator_is_supported_voltage(supply
, 2700000, 3600000))
1629 caps
|= CORE_3_0V_SUPPORT
;
1632 pr_warn("%s: 1.8/3V not supported for vqmmc\n",
1638 * Set the PAD_PWR_SWITCH_EN bit so that the PAD_PWR_SWITCH
1639 * bit can be used as required later on.
1641 u32 io_level
= msm_host
->curr_io_level
;
1643 config
= readl_relaxed(host
->ioaddr
+
1644 msm_offset
->core_vendor_spec
);
1645 config
|= CORE_IO_PAD_PWR_SWITCH_EN
;
1647 if ((io_level
& REQ_IO_HIGH
) && (caps
& CORE_3_0V_SUPPORT
))
1648 config
&= ~CORE_IO_PAD_PWR_SWITCH
;
1649 else if ((io_level
& REQ_IO_LOW
) || (caps
& CORE_1_8V_SUPPORT
))
1650 config
|= CORE_IO_PAD_PWR_SWITCH
;
1652 writel_relaxed(config
,
1653 host
->ioaddr
+ msm_offset
->core_vendor_spec
);
1655 msm_host
->caps_0
|= caps
;
1656 pr_debug("%s: supported caps: 0x%08x\n", mmc_hostname(mmc
), caps
);
1659 static const struct sdhci_msm_variant_ops mci_var_ops
= {
1660 .msm_readl_relaxed
= sdhci_msm_mci_variant_readl_relaxed
,
1661 .msm_writel_relaxed
= sdhci_msm_mci_variant_writel_relaxed
,
1664 static const struct sdhci_msm_variant_ops v5_var_ops
= {
1665 .msm_readl_relaxed
= sdhci_msm_v5_variant_readl_relaxed
,
1666 .msm_writel_relaxed
= sdhci_msm_v5_variant_writel_relaxed
,
1669 static const struct sdhci_msm_variant_info sdhci_msm_mci_var
= {
1670 .mci_removed
= false,
1671 .var_ops
= &mci_var_ops
,
1672 .offset
= &sdhci_msm_mci_offset
,
1675 static const struct sdhci_msm_variant_info sdhci_msm_v5_var
= {
1676 .mci_removed
= true,
1677 .var_ops
= &v5_var_ops
,
1678 .offset
= &sdhci_msm_v5_offset
,
1681 static const struct of_device_id sdhci_msm_dt_match
[] = {
1682 {.compatible
= "qcom,sdhci-msm-v4", .data
= &sdhci_msm_mci_var
},
1683 {.compatible
= "qcom,sdhci-msm-v5", .data
= &sdhci_msm_v5_var
},
1687 MODULE_DEVICE_TABLE(of
, sdhci_msm_dt_match
);
1689 static const struct sdhci_ops sdhci_msm_ops
= {
1690 .reset
= sdhci_reset
,
1691 .set_clock
= sdhci_msm_set_clock
,
1692 .get_min_clock
= sdhci_msm_get_min_clock
,
1693 .get_max_clock
= sdhci_msm_get_max_clock
,
1694 .set_bus_width
= sdhci_set_bus_width
,
1695 .set_uhs_signaling
= sdhci_msm_set_uhs_signaling
,
1696 .write_w
= sdhci_msm_writew
,
1697 .write_b
= sdhci_msm_writeb
,
1700 static const struct sdhci_pltfm_data sdhci_msm_pdata
= {
1701 .quirks
= SDHCI_QUIRK_BROKEN_CARD_DETECTION
|
1702 SDHCI_QUIRK_SINGLE_POWER_WRITE
|
1703 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN
,
1704 .quirks2
= SDHCI_QUIRK2_PRESET_VALUE_BROKEN
,
1705 .ops
= &sdhci_msm_ops
,
1708 static int sdhci_msm_probe(struct platform_device
*pdev
)
1710 struct sdhci_host
*host
;
1711 struct sdhci_pltfm_host
*pltfm_host
;
1712 struct sdhci_msm_host
*msm_host
;
1713 struct resource
*core_memres
;
1716 u16 host_version
, core_minor
;
1717 u32 core_version
, config
;
1719 const struct sdhci_msm_offset
*msm_offset
;
1720 const struct sdhci_msm_variant_info
*var_info
;
1722 host
= sdhci_pltfm_init(pdev
, &sdhci_msm_pdata
, sizeof(*msm_host
));
1724 return PTR_ERR(host
);
1726 host
->sdma_boundary
= 0;
1727 pltfm_host
= sdhci_priv(host
);
1728 msm_host
= sdhci_pltfm_priv(pltfm_host
);
1729 msm_host
->mmc
= host
->mmc
;
1730 msm_host
->pdev
= pdev
;
1732 ret
= mmc_of_parse(host
->mmc
);
1737 * Based on the compatible string, load the required msm host info from
1738 * the data associated with the version info.
1740 var_info
= of_device_get_match_data(&pdev
->dev
);
1742 msm_host
->mci_removed
= var_info
->mci_removed
;
1743 msm_host
->var_ops
= var_info
->var_ops
;
1744 msm_host
->offset
= var_info
->offset
;
1746 msm_offset
= msm_host
->offset
;
1748 sdhci_get_of_property(pdev
);
1750 msm_host
->saved_tuning_phase
= INVALID_TUNING_PHASE
;
1752 /* Setup SDCC bus voter clock. */
1753 msm_host
->bus_clk
= devm_clk_get(&pdev
->dev
, "bus");
1754 if (!IS_ERR(msm_host
->bus_clk
)) {
1755 /* Vote for max. clk rate for max. performance */
1756 ret
= clk_set_rate(msm_host
->bus_clk
, INT_MAX
);
1759 ret
= clk_prepare_enable(msm_host
->bus_clk
);
1764 /* Setup main peripheral bus clock */
1765 clk
= devm_clk_get(&pdev
->dev
, "iface");
1768 dev_err(&pdev
->dev
, "Peripheral clk setup failed (%d)\n", ret
);
1769 goto bus_clk_disable
;
1771 msm_host
->bulk_clks
[1].clk
= clk
;
1773 /* Setup SDC MMC clock */
1774 clk
= devm_clk_get(&pdev
->dev
, "core");
1777 dev_err(&pdev
->dev
, "SDC MMC clk setup failed (%d)\n", ret
);
1778 goto bus_clk_disable
;
1780 msm_host
->bulk_clks
[0].clk
= clk
;
1782 /* Vote for maximum clock rate for maximum performance */
1783 ret
= clk_set_rate(clk
, INT_MAX
);
1785 dev_warn(&pdev
->dev
, "core clock boost failed\n");
1787 clk
= devm_clk_get(&pdev
->dev
, "cal");
1790 msm_host
->bulk_clks
[2].clk
= clk
;
1792 clk
= devm_clk_get(&pdev
->dev
, "sleep");
1795 msm_host
->bulk_clks
[3].clk
= clk
;
1797 ret
= clk_bulk_prepare_enable(ARRAY_SIZE(msm_host
->bulk_clks
),
1798 msm_host
->bulk_clks
);
1800 goto bus_clk_disable
;
1803 * xo clock is needed for FLL feature of cm_dll.
1804 * In case if xo clock is not mentioned in DT, warn and proceed.
1806 msm_host
->xo_clk
= devm_clk_get(&pdev
->dev
, "xo");
1807 if (IS_ERR(msm_host
->xo_clk
)) {
1808 ret
= PTR_ERR(msm_host
->xo_clk
);
1809 dev_warn(&pdev
->dev
, "TCXO clk not present (%d)\n", ret
);
1812 if (!msm_host
->mci_removed
) {
1813 core_memres
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1814 msm_host
->core_mem
= devm_ioremap_resource(&pdev
->dev
,
1817 if (IS_ERR(msm_host
->core_mem
)) {
1818 ret
= PTR_ERR(msm_host
->core_mem
);
1823 /* Reset the vendor spec register to power on reset state */
1824 writel_relaxed(CORE_VENDOR_SPEC_POR_VAL
,
1825 host
->ioaddr
+ msm_offset
->core_vendor_spec
);
1827 if (!msm_host
->mci_removed
) {
1828 /* Set HC_MODE_EN bit in HC_MODE register */
1829 msm_host_writel(msm_host
, HC_MODE_EN
, host
,
1830 msm_offset
->core_hc_mode
);
1831 config
= msm_host_readl(msm_host
, host
,
1832 msm_offset
->core_hc_mode
);
1833 config
|= FF_CLK_SW_RST_DIS
;
1834 msm_host_writel(msm_host
, config
, host
,
1835 msm_offset
->core_hc_mode
);
1838 host_version
= readw_relaxed((host
->ioaddr
+ SDHCI_HOST_VERSION
));
1839 dev_dbg(&pdev
->dev
, "Host Version: 0x%x Vendor Version 0x%x\n",
1840 host_version
, ((host_version
& SDHCI_VENDOR_VER_MASK
) >>
1841 SDHCI_VENDOR_VER_SHIFT
));
1843 core_version
= msm_host_readl(msm_host
, host
,
1844 msm_offset
->core_mci_version
);
1845 core_major
= (core_version
& CORE_VERSION_MAJOR_MASK
) >>
1846 CORE_VERSION_MAJOR_SHIFT
;
1847 core_minor
= core_version
& CORE_VERSION_MINOR_MASK
;
1848 dev_dbg(&pdev
->dev
, "MCI Version: 0x%08x, major: 0x%04x, minor: 0x%02x\n",
1849 core_version
, core_major
, core_minor
);
1851 if (core_major
== 1 && core_minor
>= 0x42)
1852 msm_host
->use_14lpp_dll_reset
= true;
1855 * SDCC 5 controller with major version 1, minor version 0x34 and later
1856 * with HS 400 mode support will use CM DLL instead of CDC LP 533 DLL.
1858 if (core_major
== 1 && core_minor
< 0x34)
1859 msm_host
->use_cdclp533
= true;
1862 * Support for some capabilities is not advertised by newer
1863 * controller versions and must be explicitly enabled.
1865 if (core_major
>= 1 && core_minor
!= 0x11 && core_minor
!= 0x12) {
1866 config
= readl_relaxed(host
->ioaddr
+ SDHCI_CAPABILITIES
);
1867 config
|= SDHCI_CAN_VDD_300
| SDHCI_CAN_DO_8BIT
;
1868 writel_relaxed(config
, host
->ioaddr
+
1869 msm_offset
->core_vendor_spec_capabilities0
);
1872 if (core_major
== 1 && core_minor
>= 0x49)
1873 msm_host
->updated_ddr_cfg
= true;
1876 * Power on reset state may trigger power irq if previous status of
1877 * PWRCTL was either BUS_ON or IO_HIGH_V. So before enabling pwr irq
1878 * interrupt in GIC, any pending power irq interrupt should be
1879 * acknowledged. Otherwise power irq interrupt handler would be
1880 * fired prematurely.
1882 sdhci_msm_handle_pwr_irq(host
, 0);
1885 * Ensure that above writes are propogated before interrupt enablement
1890 /* Setup IRQ for handling power/voltage tasks with PMIC */
1891 msm_host
->pwr_irq
= platform_get_irq_byname(pdev
, "pwr_irq");
1892 if (msm_host
->pwr_irq
< 0) {
1893 dev_err(&pdev
->dev
, "Get pwr_irq failed (%d)\n",
1895 ret
= msm_host
->pwr_irq
;
1899 sdhci_msm_init_pwr_irq_wait(msm_host
);
1900 /* Enable pwr irq interrupts */
1901 msm_host_writel(msm_host
, INT_MASK
, host
,
1902 msm_offset
->core_pwrctl_mask
);
1904 ret
= devm_request_threaded_irq(&pdev
->dev
, msm_host
->pwr_irq
, NULL
,
1905 sdhci_msm_pwr_irq
, IRQF_ONESHOT
,
1906 dev_name(&pdev
->dev
), host
);
1908 dev_err(&pdev
->dev
, "Request IRQ failed (%d)\n", ret
);
1912 pm_runtime_get_noresume(&pdev
->dev
);
1913 pm_runtime_set_active(&pdev
->dev
);
1914 pm_runtime_enable(&pdev
->dev
);
1915 pm_runtime_set_autosuspend_delay(&pdev
->dev
,
1916 MSM_MMC_AUTOSUSPEND_DELAY_MS
);
1917 pm_runtime_use_autosuspend(&pdev
->dev
);
1919 host
->mmc_host_ops
.execute_tuning
= sdhci_msm_execute_tuning
;
1920 ret
= sdhci_add_host(host
);
1922 goto pm_runtime_disable
;
1923 sdhci_msm_set_regulator_caps(msm_host
);
1925 pm_runtime_mark_last_busy(&pdev
->dev
);
1926 pm_runtime_put_autosuspend(&pdev
->dev
);
1931 pm_runtime_disable(&pdev
->dev
);
1932 pm_runtime_set_suspended(&pdev
->dev
);
1933 pm_runtime_put_noidle(&pdev
->dev
);
1935 clk_bulk_disable_unprepare(ARRAY_SIZE(msm_host
->bulk_clks
),
1936 msm_host
->bulk_clks
);
1938 if (!IS_ERR(msm_host
->bus_clk
))
1939 clk_disable_unprepare(msm_host
->bus_clk
);
1941 sdhci_pltfm_free(pdev
);
1945 static int sdhci_msm_remove(struct platform_device
*pdev
)
1947 struct sdhci_host
*host
= platform_get_drvdata(pdev
);
1948 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1949 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1950 int dead
= (readl_relaxed(host
->ioaddr
+ SDHCI_INT_STATUS
) ==
1953 sdhci_remove_host(host
, dead
);
1955 pm_runtime_get_sync(&pdev
->dev
);
1956 pm_runtime_disable(&pdev
->dev
);
1957 pm_runtime_put_noidle(&pdev
->dev
);
1959 clk_bulk_disable_unprepare(ARRAY_SIZE(msm_host
->bulk_clks
),
1960 msm_host
->bulk_clks
);
1961 if (!IS_ERR(msm_host
->bus_clk
))
1962 clk_disable_unprepare(msm_host
->bus_clk
);
1963 sdhci_pltfm_free(pdev
);
1968 static int sdhci_msm_runtime_suspend(struct device
*dev
)
1970 struct sdhci_host
*host
= dev_get_drvdata(dev
);
1971 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1972 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1974 clk_bulk_disable_unprepare(ARRAY_SIZE(msm_host
->bulk_clks
),
1975 msm_host
->bulk_clks
);
1980 static int sdhci_msm_runtime_resume(struct device
*dev
)
1982 struct sdhci_host
*host
= dev_get_drvdata(dev
);
1983 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
1984 struct sdhci_msm_host
*msm_host
= sdhci_pltfm_priv(pltfm_host
);
1986 return clk_bulk_prepare_enable(ARRAY_SIZE(msm_host
->bulk_clks
),
1987 msm_host
->bulk_clks
);
1991 static const struct dev_pm_ops sdhci_msm_pm_ops
= {
1992 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
1993 pm_runtime_force_resume
)
1994 SET_RUNTIME_PM_OPS(sdhci_msm_runtime_suspend
,
1995 sdhci_msm_runtime_resume
,
1999 static struct platform_driver sdhci_msm_driver
= {
2000 .probe
= sdhci_msm_probe
,
2001 .remove
= sdhci_msm_remove
,
2003 .name
= "sdhci_msm",
2004 .of_match_table
= sdhci_msm_dt_match
,
2005 .pm
= &sdhci_msm_pm_ops
,
2009 module_platform_driver(sdhci_msm_driver
);
2011 MODULE_DESCRIPTION("Qualcomm Secure Digital Host Controller Interface driver");
2012 MODULE_LICENSE("GPL v2");