Thomas Gleixner | 9c92ab6 | 2019-05-29 07:17:56 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Atmel SDMMC controller driver. |
| 4 | * |
| 5 | * Copyright (C) 2015 Atmel, |
| 6 | * 2015 Ludovic Desroches <ludovic.desroches@atmel.com> |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
Masahiro Yamada | a8e809e | 2020-04-08 16:21:05 +0900 | [diff] [blame] | 9 | #include <linux/bitfield.h> |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 10 | #include <linux/clk.h> |
Ludovic Desroches | 4e289a7 | 2016-04-07 11:13:09 +0200 | [diff] [blame] | 11 | #include <linux/delay.h> |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 12 | #include <linux/err.h> |
| 13 | #include <linux/io.h> |
Claudiu Beznea | af467fa | 2021-09-24 11:28:50 +0300 | [diff] [blame] | 14 | #include <linux/iopoll.h> |
Ludovic Desroches | 4406433 | 2016-04-28 14:59:26 +0200 | [diff] [blame] | 15 | #include <linux/kernel.h> |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 16 | #include <linux/mmc/host.h> |
ludovic.desroches@atmel.com | 64e5cd7 | 2016-03-17 14:54:34 +0100 | [diff] [blame] | 17 | #include <linux/mmc/slot-gpio.h> |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 18 | #include <linux/module.h> |
| 19 | #include <linux/of.h> |
| 20 | #include <linux/of_device.h> |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 21 | #include <linux/pm.h> |
| 22 | #include <linux/pm_runtime.h> |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 23 | |
| 24 | #include "sdhci-pltfm.h" |
| 25 | |
Ludovic Desroches | d091876 | 2017-03-28 11:00:45 +0200 | [diff] [blame] | 26 | #define SDMMC_MC1R 0x204 |
| 27 | #define SDMMC_MC1R_DDR BIT(3) |
Ludovic Desroches | 7a1e3f1 | 2017-07-26 16:02:46 +0200 | [diff] [blame] | 28 | #define SDMMC_MC1R_FCD BIT(7) |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 29 | #define SDMMC_CACR 0x230 |
| 30 | #define SDMMC_CACR_CAPWREN BIT(0) |
| 31 | #define SDMMC_CACR_KEY (0x46 << 8) |
Nicolas Ferre | 727d836 | 2019-10-08 14:34:32 +0200 | [diff] [blame] | 32 | #define SDMMC_CALCR 0x240 |
| 33 | #define SDMMC_CALCR_EN BIT(0) |
| 34 | #define SDMMC_CALCR_ALWYSON BIT(4) |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 35 | |
Ludovic Desroches | 4406433 | 2016-04-28 14:59:26 +0200 | [diff] [blame] | 36 | #define SDHCI_AT91_PRESET_COMMON_CONF 0x400 /* drv type B, programmable clock mode */ |
| 37 | |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 38 | struct sdhci_at91_soc_data { |
| 39 | const struct sdhci_pltfm_data *pdata; |
| 40 | bool baseclk_is_generated_internally; |
| 41 | unsigned int divider_for_baseclk; |
| 42 | }; |
| 43 | |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 44 | struct sdhci_at91_priv { |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 45 | const struct sdhci_at91_soc_data *soc_data; |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 46 | struct clk *hclock; |
| 47 | struct clk *gck; |
| 48 | struct clk *mainck; |
Quentin Schulz | e2b372e | 2017-07-13 10:04:18 +0200 | [diff] [blame] | 49 | bool restore_needed; |
Nicolas Ferre | 727d836 | 2019-10-08 14:34:32 +0200 | [diff] [blame] | 50 | bool cal_always_on; |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 51 | }; |
| 52 | |
Ludovic Desroches | 7a1e3f1 | 2017-07-26 16:02:46 +0200 | [diff] [blame] | 53 | static void sdhci_at91_set_force_card_detect(struct sdhci_host *host) |
| 54 | { |
| 55 | u8 mc1r; |
| 56 | |
| 57 | mc1r = readb(host->ioaddr + SDMMC_MC1R); |
| 58 | mc1r |= SDMMC_MC1R_FCD; |
| 59 | writeb(mc1r, host->ioaddr + SDMMC_MC1R); |
| 60 | } |
| 61 | |
Ludovic Desroches | 4e289a7 | 2016-04-07 11:13:09 +0200 | [diff] [blame] | 62 | static void sdhci_at91_set_clock(struct sdhci_host *host, unsigned int clock) |
| 63 | { |
| 64 | u16 clk; |
Ludovic Desroches | 4e289a7 | 2016-04-07 11:13:09 +0200 | [diff] [blame] | 65 | |
| 66 | host->mmc->actual_clock = 0; |
| 67 | |
| 68 | /* |
| 69 | * There is no requirement to disable the internal clock before |
| 70 | * changing the SD clock configuration. Moreover, disabling the |
| 71 | * internal clock, changing the configuration and re-enabling the |
| 72 | * internal clock causes some bugs. It can prevent to get the internal |
| 73 | * clock stable flag ready and an unexpected switch to the base clock |
| 74 | * when using presets. |
| 75 | */ |
| 76 | clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL); |
| 77 | clk &= SDHCI_CLOCK_INT_EN; |
| 78 | sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL); |
| 79 | |
| 80 | if (clock == 0) |
| 81 | return; |
| 82 | |
| 83 | clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock); |
| 84 | |
| 85 | clk |= SDHCI_CLOCK_INT_EN; |
| 86 | sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL); |
| 87 | |
| 88 | /* Wait max 20 ms */ |
Claudiu Beznea | 30d4b99 | 2021-09-24 11:28:51 +0300 | [diff] [blame] | 89 | if (read_poll_timeout(sdhci_readw, clk, (clk & SDHCI_CLOCK_INT_STABLE), |
| 90 | 1000, 20000, false, host, SDHCI_CLOCK_CONTROL)) { |
| 91 | pr_err("%s: Internal clock never stabilised.\n", |
| 92 | mmc_hostname(host->mmc)); |
| 93 | return; |
Ludovic Desroches | 4e289a7 | 2016-04-07 11:13:09 +0200 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | clk |= SDHCI_CLOCK_CARD_EN; |
| 97 | sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL); |
| 98 | } |
| 99 | |
Colin Ian King | 519c51a | 2017-10-03 11:06:36 +0100 | [diff] [blame] | 100 | static void sdhci_at91_set_uhs_signaling(struct sdhci_host *host, |
| 101 | unsigned int timing) |
Ludovic Desroches | d091876 | 2017-03-28 11:00:45 +0200 | [diff] [blame] | 102 | { |
| 103 | if (timing == MMC_TIMING_MMC_DDR52) |
| 104 | sdhci_writeb(host, SDMMC_MC1R_DDR, SDMMC_MC1R); |
| 105 | sdhci_set_uhs_signaling(host, timing); |
| 106 | } |
| 107 | |
Ludovic Desroches | 7a1e3f1 | 2017-07-26 16:02:46 +0200 | [diff] [blame] | 108 | static void sdhci_at91_reset(struct sdhci_host *host, u8 mask) |
| 109 | { |
Nicolas Ferre | 727d836 | 2019-10-08 14:34:32 +0200 | [diff] [blame] | 110 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
| 111 | struct sdhci_at91_priv *priv = sdhci_pltfm_priv(pltfm_host); |
Claudiu Beznea | af467fa | 2021-09-24 11:28:50 +0300 | [diff] [blame] | 112 | unsigned int tmp; |
Nicolas Ferre | 727d836 | 2019-10-08 14:34:32 +0200 | [diff] [blame] | 113 | |
Ludovic Desroches | 7a1e3f1 | 2017-07-26 16:02:46 +0200 | [diff] [blame] | 114 | sdhci_reset(host, mask); |
| 115 | |
Michał Mirosław | 53dd0a7 | 2020-03-15 17:44:25 +0100 | [diff] [blame] | 116 | if ((host->mmc->caps & MMC_CAP_NONREMOVABLE) |
| 117 | || mmc_gpio_get_cd(host->mmc) >= 0) |
Ludovic Desroches | 7a1e3f1 | 2017-07-26 16:02:46 +0200 | [diff] [blame] | 118 | sdhci_at91_set_force_card_detect(host); |
Nicolas Ferre | 727d836 | 2019-10-08 14:34:32 +0200 | [diff] [blame] | 119 | |
Eugen Hristev | dbdea70 | 2020-05-27 13:56:59 +0300 | [diff] [blame] | 120 | if (priv->cal_always_on && (mask & SDHCI_RESET_ALL)) { |
| 121 | u32 calcr = sdhci_readl(host, SDMMC_CALCR); |
| 122 | |
| 123 | sdhci_writel(host, calcr | SDMMC_CALCR_ALWYSON | SDMMC_CALCR_EN, |
Nicolas Ferre | 727d836 | 2019-10-08 14:34:32 +0200 | [diff] [blame] | 124 | SDMMC_CALCR); |
Claudiu Beznea | af467fa | 2021-09-24 11:28:50 +0300 | [diff] [blame] | 125 | |
| 126 | if (read_poll_timeout(sdhci_readl, tmp, !(tmp & SDMMC_CALCR_EN), |
| 127 | 10, 20000, false, host, SDMMC_CALCR)) |
| 128 | dev_err(mmc_dev(host->mmc), "Failed to calibrate\n"); |
Eugen Hristev | dbdea70 | 2020-05-27 13:56:59 +0300 | [diff] [blame] | 129 | } |
Ludovic Desroches | 7a1e3f1 | 2017-07-26 16:02:46 +0200 | [diff] [blame] | 130 | } |
| 131 | |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 132 | static const struct sdhci_ops sdhci_at91_sama5d2_ops = { |
Ludovic Desroches | 4e289a7 | 2016-04-07 11:13:09 +0200 | [diff] [blame] | 133 | .set_clock = sdhci_at91_set_clock, |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 134 | .set_bus_width = sdhci_set_bus_width, |
Ludovic Desroches | 7a1e3f1 | 2017-07-26 16:02:46 +0200 | [diff] [blame] | 135 | .reset = sdhci_at91_reset, |
Ludovic Desroches | d091876 | 2017-03-28 11:00:45 +0200 | [diff] [blame] | 136 | .set_uhs_signaling = sdhci_at91_set_uhs_signaling, |
Nicolas Saenz Julienne | 9816056 | 2020-03-06 18:44:06 +0100 | [diff] [blame] | 137 | .set_power = sdhci_set_power_and_bus_voltage, |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 138 | }; |
| 139 | |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 140 | static const struct sdhci_pltfm_data sdhci_sama5d2_pdata = { |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 141 | .ops = &sdhci_at91_sama5d2_ops, |
| 142 | }; |
| 143 | |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 144 | static const struct sdhci_at91_soc_data soc_data_sama5d2 = { |
| 145 | .pdata = &sdhci_sama5d2_pdata, |
| 146 | .baseclk_is_generated_internally = false, |
| 147 | }; |
| 148 | |
| 149 | static const struct sdhci_at91_soc_data soc_data_sam9x60 = { |
| 150 | .pdata = &sdhci_sama5d2_pdata, |
| 151 | .baseclk_is_generated_internally = true, |
| 152 | .divider_for_baseclk = 2, |
| 153 | }; |
| 154 | |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 155 | static const struct of_device_id sdhci_at91_dt_match[] = { |
| 156 | { .compatible = "atmel,sama5d2-sdhci", .data = &soc_data_sama5d2 }, |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 157 | { .compatible = "microchip,sam9x60-sdhci", .data = &soc_data_sam9x60 }, |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 158 | {} |
| 159 | }; |
Javier Martinez Canillas | d9943c6 | 2016-10-17 13:13:45 -0300 | [diff] [blame] | 160 | MODULE_DEVICE_TABLE(of, sdhci_at91_dt_match); |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 161 | |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 162 | static int sdhci_at91_set_clks_presets(struct device *dev) |
| 163 | { |
| 164 | struct sdhci_host *host = dev_get_drvdata(dev); |
| 165 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
| 166 | struct sdhci_at91_priv *priv = sdhci_pltfm_priv(pltfm_host); |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 167 | unsigned int caps0, caps1; |
| 168 | unsigned int clk_base, clk_mul; |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 169 | unsigned int gck_rate, clk_base_rate; |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 170 | unsigned int preset_div; |
| 171 | |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 172 | clk_prepare_enable(priv->hclock); |
| 173 | caps0 = readl(host->ioaddr + SDHCI_CAPABILITIES); |
| 174 | caps1 = readl(host->ioaddr + SDHCI_CAPABILITIES_1); |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 175 | |
| 176 | gck_rate = clk_get_rate(priv->gck); |
| 177 | if (priv->soc_data->baseclk_is_generated_internally) |
| 178 | clk_base_rate = gck_rate / priv->soc_data->divider_for_baseclk; |
| 179 | else |
| 180 | clk_base_rate = clk_get_rate(priv->mainck); |
| 181 | |
| 182 | clk_base = clk_base_rate / 1000000; |
| 183 | clk_mul = gck_rate / clk_base_rate - 1; |
| 184 | |
| 185 | caps0 &= ~SDHCI_CLOCK_V3_BASE_MASK; |
Masahiro Yamada | a8e809e | 2020-04-08 16:21:05 +0900 | [diff] [blame] | 186 | caps0 |= FIELD_PREP(SDHCI_CLOCK_V3_BASE_MASK, clk_base); |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 187 | caps1 &= ~SDHCI_CLOCK_MUL_MASK; |
Masahiro Yamada | a8e809e | 2020-04-08 16:21:05 +0900 | [diff] [blame] | 188 | caps1 |= FIELD_PREP(SDHCI_CLOCK_MUL_MASK, clk_mul); |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 189 | /* Set capabilities in r/w mode. */ |
| 190 | writel(SDMMC_CACR_KEY | SDMMC_CACR_CAPWREN, host->ioaddr + SDMMC_CACR); |
| 191 | writel(caps0, host->ioaddr + SDHCI_CAPABILITIES); |
| 192 | writel(caps1, host->ioaddr + SDHCI_CAPABILITIES_1); |
| 193 | /* Set capabilities in ro mode. */ |
| 194 | writel(0, host->ioaddr + SDMMC_CACR); |
| 195 | |
Cristian Birsan | fdd8eef | 2020-03-12 14:29:24 +0000 | [diff] [blame] | 196 | dev_dbg(dev, "update clk mul to %u as gck rate is %u Hz and clk base is %u Hz\n", |
| 197 | clk_mul, gck_rate, clk_base_rate); |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 198 | |
| 199 | /* |
| 200 | * We have to set preset values because it depends on the clk_mul |
| 201 | * value. Moreover, SDR104 is supported in a degraded mode since the |
| 202 | * maximum sd clock value is 120 MHz instead of 208 MHz. For that |
| 203 | * reason, we need to use presets to support SDR104. |
| 204 | */ |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 205 | preset_div = DIV_ROUND_UP(gck_rate, 24000000) - 1; |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 206 | writew(SDHCI_AT91_PRESET_COMMON_CONF | preset_div, |
| 207 | host->ioaddr + SDHCI_PRESET_FOR_SDR12); |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 208 | preset_div = DIV_ROUND_UP(gck_rate, 50000000) - 1; |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 209 | writew(SDHCI_AT91_PRESET_COMMON_CONF | preset_div, |
| 210 | host->ioaddr + SDHCI_PRESET_FOR_SDR25); |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 211 | preset_div = DIV_ROUND_UP(gck_rate, 100000000) - 1; |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 212 | writew(SDHCI_AT91_PRESET_COMMON_CONF | preset_div, |
| 213 | host->ioaddr + SDHCI_PRESET_FOR_SDR50); |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 214 | preset_div = DIV_ROUND_UP(gck_rate, 120000000) - 1; |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 215 | writew(SDHCI_AT91_PRESET_COMMON_CONF | preset_div, |
| 216 | host->ioaddr + SDHCI_PRESET_FOR_SDR104); |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 217 | preset_div = DIV_ROUND_UP(gck_rate, 50000000) - 1; |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 218 | writew(SDHCI_AT91_PRESET_COMMON_CONF | preset_div, |
| 219 | host->ioaddr + SDHCI_PRESET_FOR_DDR50); |
| 220 | |
| 221 | clk_prepare_enable(priv->mainck); |
| 222 | clk_prepare_enable(priv->gck); |
| 223 | |
| 224 | return 0; |
| 225 | } |
| 226 | |
Quentin Schulz | e2b372e | 2017-07-13 10:04:18 +0200 | [diff] [blame] | 227 | #ifdef CONFIG_PM_SLEEP |
| 228 | static int sdhci_at91_suspend(struct device *dev) |
| 229 | { |
| 230 | struct sdhci_host *host = dev_get_drvdata(dev); |
| 231 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
| 232 | struct sdhci_at91_priv *priv = sdhci_pltfm_priv(pltfm_host); |
| 233 | int ret; |
| 234 | |
| 235 | ret = pm_runtime_force_suspend(dev); |
| 236 | |
| 237 | priv->restore_needed = true; |
| 238 | |
| 239 | return ret; |
| 240 | } |
| 241 | #endif /* CONFIG_PM_SLEEP */ |
| 242 | |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 243 | #ifdef CONFIG_PM |
| 244 | static int sdhci_at91_runtime_suspend(struct device *dev) |
| 245 | { |
| 246 | struct sdhci_host *host = dev_get_drvdata(dev); |
| 247 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
Jisheng Zhang | 10f1c13 | 2016-02-16 21:08:25 +0800 | [diff] [blame] | 248 | struct sdhci_at91_priv *priv = sdhci_pltfm_priv(pltfm_host); |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 249 | int ret; |
| 250 | |
| 251 | ret = sdhci_runtime_suspend_host(host); |
| 252 | |
Adrian Hunter | d38dcad | 2017-03-20 19:50:32 +0200 | [diff] [blame] | 253 | if (host->tuning_mode != SDHCI_TUNING_MODE_3) |
| 254 | mmc_retune_needed(host->mmc); |
| 255 | |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 256 | clk_disable_unprepare(priv->gck); |
| 257 | clk_disable_unprepare(priv->hclock); |
| 258 | clk_disable_unprepare(priv->mainck); |
| 259 | |
| 260 | return ret; |
| 261 | } |
| 262 | |
| 263 | static int sdhci_at91_runtime_resume(struct device *dev) |
| 264 | { |
| 265 | struct sdhci_host *host = dev_get_drvdata(dev); |
| 266 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
Jisheng Zhang | 10f1c13 | 2016-02-16 21:08:25 +0800 | [diff] [blame] | 267 | struct sdhci_at91_priv *priv = sdhci_pltfm_priv(pltfm_host); |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 268 | int ret; |
| 269 | |
Quentin Schulz | e2b372e | 2017-07-13 10:04:18 +0200 | [diff] [blame] | 270 | if (priv->restore_needed) { |
| 271 | ret = sdhci_at91_set_clks_presets(dev); |
| 272 | if (ret) |
| 273 | return ret; |
| 274 | |
| 275 | priv->restore_needed = false; |
| 276 | goto out; |
| 277 | } |
| 278 | |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 279 | ret = clk_prepare_enable(priv->mainck); |
| 280 | if (ret) { |
| 281 | dev_err(dev, "can't enable mainck\n"); |
| 282 | return ret; |
| 283 | } |
| 284 | |
| 285 | ret = clk_prepare_enable(priv->hclock); |
| 286 | if (ret) { |
| 287 | dev_err(dev, "can't enable hclock\n"); |
| 288 | return ret; |
| 289 | } |
| 290 | |
| 291 | ret = clk_prepare_enable(priv->gck); |
| 292 | if (ret) { |
| 293 | dev_err(dev, "can't enable gck\n"); |
| 294 | return ret; |
| 295 | } |
| 296 | |
Quentin Schulz | e2b372e | 2017-07-13 10:04:18 +0200 | [diff] [blame] | 297 | out: |
Baolin Wang | c6303c5 | 2019-07-25 11:14:22 +0800 | [diff] [blame] | 298 | return sdhci_runtime_resume_host(host, 0); |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 299 | } |
| 300 | #endif /* CONFIG_PM */ |
| 301 | |
| 302 | static const struct dev_pm_ops sdhci_at91_dev_pm_ops = { |
Quentin Schulz | e2b372e | 2017-07-13 10:04:18 +0200 | [diff] [blame] | 303 | SET_SYSTEM_SLEEP_PM_OPS(sdhci_at91_suspend, pm_runtime_force_resume) |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 304 | SET_RUNTIME_PM_OPS(sdhci_at91_runtime_suspend, |
| 305 | sdhci_at91_runtime_resume, |
| 306 | NULL) |
| 307 | }; |
| 308 | |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 309 | static int sdhci_at91_probe(struct platform_device *pdev) |
| 310 | { |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 311 | const struct sdhci_at91_soc_data *soc_data; |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 312 | struct sdhci_host *host; |
| 313 | struct sdhci_pltfm_host *pltfm_host; |
| 314 | struct sdhci_at91_priv *priv; |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 315 | int ret; |
| 316 | |
Bean Huo | 685e013 | 2022-02-02 19:06:47 +0100 | [diff] [blame] | 317 | soc_data = of_device_get_match_data(&pdev->dev); |
| 318 | if (!soc_data) |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 319 | return -EINVAL; |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 320 | |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 321 | host = sdhci_pltfm_init(pdev, soc_data->pdata, sizeof(*priv)); |
Jisheng Zhang | 10f1c13 | 2016-02-16 21:08:25 +0800 | [diff] [blame] | 322 | if (IS_ERR(host)) |
| 323 | return PTR_ERR(host); |
| 324 | |
| 325 | pltfm_host = sdhci_priv(host); |
| 326 | priv = sdhci_pltfm_priv(pltfm_host); |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 327 | priv->soc_data = soc_data; |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 328 | |
| 329 | priv->mainck = devm_clk_get(&pdev->dev, "baseclk"); |
| 330 | if (IS_ERR(priv->mainck)) { |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 331 | if (soc_data->baseclk_is_generated_internally) { |
| 332 | priv->mainck = NULL; |
| 333 | } else { |
| 334 | dev_err(&pdev->dev, "failed to get baseclk\n"); |
Michał Mirosław | a04184c | 2020-01-02 11:42:16 +0100 | [diff] [blame] | 335 | ret = PTR_ERR(priv->mainck); |
| 336 | goto sdhci_pltfm_free; |
Ludovic Desroches | 3976656 | 2019-11-28 08:45:21 +0100 | [diff] [blame] | 337 | } |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | priv->hclock = devm_clk_get(&pdev->dev, "hclock"); |
| 341 | if (IS_ERR(priv->hclock)) { |
| 342 | dev_err(&pdev->dev, "failed to get hclock\n"); |
Michał Mirosław | a04184c | 2020-01-02 11:42:16 +0100 | [diff] [blame] | 343 | ret = PTR_ERR(priv->hclock); |
| 344 | goto sdhci_pltfm_free; |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | priv->gck = devm_clk_get(&pdev->dev, "multclk"); |
| 348 | if (IS_ERR(priv->gck)) { |
| 349 | dev_err(&pdev->dev, "failed to get multclk\n"); |
Michał Mirosław | a04184c | 2020-01-02 11:42:16 +0100 | [diff] [blame] | 350 | ret = PTR_ERR(priv->gck); |
| 351 | goto sdhci_pltfm_free; |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 352 | } |
| 353 | |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 354 | ret = sdhci_at91_set_clks_presets(&pdev->dev); |
| 355 | if (ret) |
| 356 | goto sdhci_pltfm_free; |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 357 | |
Quentin Schulz | e2b372e | 2017-07-13 10:04:18 +0200 | [diff] [blame] | 358 | priv->restore_needed = false; |
| 359 | |
Nicolas Ferre | 727d836 | 2019-10-08 14:34:32 +0200 | [diff] [blame] | 360 | /* |
| 361 | * if SDCAL pin is wrongly connected, we must enable |
| 362 | * the analog calibration cell permanently. |
| 363 | */ |
| 364 | priv->cal_always_on = |
| 365 | device_property_read_bool(&pdev->dev, |
| 366 | "microchip,sdcal-inverted"); |
| 367 | |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 368 | ret = mmc_of_parse(host->mmc); |
| 369 | if (ret) |
| 370 | goto clocks_disable_unprepare; |
| 371 | |
| 372 | sdhci_get_of_property(pdev); |
| 373 | |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 374 | pm_runtime_get_noresume(&pdev->dev); |
| 375 | pm_runtime_set_active(&pdev->dev); |
| 376 | pm_runtime_enable(&pdev->dev); |
| 377 | pm_runtime_set_autosuspend_delay(&pdev->dev, 50); |
| 378 | pm_runtime_use_autosuspend(&pdev->dev); |
| 379 | |
Eugen Hristev | 7871aa6 | 2019-08-08 08:35:40 +0000 | [diff] [blame] | 380 | /* HS200 is broken at this moment */ |
Eugen Hristev | fed23c5 | 2019-11-14 12:59:26 +0000 | [diff] [blame] | 381 | host->quirks2 |= SDHCI_QUIRK2_BROKEN_HS200; |
Eugen Hristev | 7871aa6 | 2019-08-08 08:35:40 +0000 | [diff] [blame] | 382 | |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 383 | ret = sdhci_add_host(host); |
| 384 | if (ret) |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 385 | goto pm_runtime_disable; |
| 386 | |
ludovic.desroches@atmel.com | 64e5cd7 | 2016-03-17 14:54:34 +0100 | [diff] [blame] | 387 | /* |
| 388 | * When calling sdhci_runtime_suspend_host(), the sdhci layer makes |
| 389 | * the assumption that all the clocks of the controller are disabled. |
| 390 | * It means we can't get irq from it when it is runtime suspended. |
| 391 | * For that reason, it is not planned to wake-up on a card detect irq |
| 392 | * from the controller. |
| 393 | * If we want to use runtime PM and to be able to wake-up on card |
| 394 | * insertion, we have to use a GPIO for the card detection or we can |
| 395 | * use polling. Be aware that using polling will resume/suspend the |
| 396 | * controller between each attempt. |
| 397 | * Disable SDHCI_QUIRK_BROKEN_CARD_DETECTION to be sure nobody tries |
| 398 | * to enable polling via device tree with broken-cd property. |
| 399 | */ |
Jaehoon Chung | 860951c | 2016-06-21 10:13:26 +0900 | [diff] [blame] | 400 | if (mmc_card_is_removable(host->mmc) && |
Arnd Bergmann | 287980e | 2016-05-27 23:23:25 +0200 | [diff] [blame] | 401 | mmc_gpio_get_cd(host->mmc) < 0) { |
ludovic.desroches@atmel.com | 64e5cd7 | 2016-03-17 14:54:34 +0100 | [diff] [blame] | 402 | host->mmc->caps |= MMC_CAP_NEEDS_POLL; |
| 403 | host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION; |
| 404 | } |
| 405 | |
Ludovic Desroches | 7a1e3f1 | 2017-07-26 16:02:46 +0200 | [diff] [blame] | 406 | /* |
| 407 | * If the device attached to the MMC bus is not removable, it is safer |
| 408 | * to set the Force Card Detect bit. People often don't connect the |
| 409 | * card detect signal and use this pin for another purpose. If the card |
| 410 | * detect pin is not muxed to SDHCI controller, a default value is |
| 411 | * used. This value can be different from a SoC revision to another |
| 412 | * one. Problems come when this default value is not card present. To |
| 413 | * avoid this case, if the device is non removable then the card |
| 414 | * detection procedure using the SDMCC_CD signal is bypassed. |
| 415 | * This bit is reset when a software reset for all command is performed |
| 416 | * so we need to implement our own reset function to set back this bit. |
Michał Mirosław | 53dd0a7 | 2020-03-15 17:44:25 +0100 | [diff] [blame] | 417 | * |
| 418 | * WA: SAMA5D2 doesn't drive CMD if using CD GPIO line. |
Ludovic Desroches | 7a1e3f1 | 2017-07-26 16:02:46 +0200 | [diff] [blame] | 419 | */ |
Michał Mirosław | 53dd0a7 | 2020-03-15 17:44:25 +0100 | [diff] [blame] | 420 | if ((host->mmc->caps & MMC_CAP_NONREMOVABLE) |
| 421 | || mmc_gpio_get_cd(host->mmc) >= 0) |
Ludovic Desroches | 7a1e3f1 | 2017-07-26 16:02:46 +0200 | [diff] [blame] | 422 | sdhci_at91_set_force_card_detect(host); |
| 423 | |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 424 | pm_runtime_put_autosuspend(&pdev->dev); |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 425 | |
| 426 | return 0; |
| 427 | |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 428 | pm_runtime_disable: |
| 429 | pm_runtime_disable(&pdev->dev); |
| 430 | pm_runtime_set_suspended(&pdev->dev); |
Jisheng Zhang | 2df9d58 | 2016-02-02 19:55:06 +0800 | [diff] [blame] | 431 | pm_runtime_put_noidle(&pdev->dev); |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 432 | clocks_disable_unprepare: |
| 433 | clk_disable_unprepare(priv->gck); |
| 434 | clk_disable_unprepare(priv->mainck); |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 435 | clk_disable_unprepare(priv->hclock); |
Quentin Schulz | c8a019e | 2017-07-13 10:04:17 +0200 | [diff] [blame] | 436 | sdhci_pltfm_free: |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 437 | sdhci_pltfm_free(pdev); |
| 438 | return ret; |
| 439 | } |
| 440 | |
| 441 | static int sdhci_at91_remove(struct platform_device *pdev) |
| 442 | { |
| 443 | struct sdhci_host *host = platform_get_drvdata(pdev); |
| 444 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
Jisheng Zhang | 10f1c13 | 2016-02-16 21:08:25 +0800 | [diff] [blame] | 445 | struct sdhci_at91_priv *priv = sdhci_pltfm_priv(pltfm_host); |
| 446 | struct clk *gck = priv->gck; |
| 447 | struct clk *hclock = priv->hclock; |
| 448 | struct clk *mainck = priv->mainck; |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 449 | |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 450 | pm_runtime_get_sync(&pdev->dev); |
| 451 | pm_runtime_disable(&pdev->dev); |
| 452 | pm_runtime_put_noidle(&pdev->dev); |
| 453 | |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 454 | sdhci_pltfm_unregister(pdev); |
| 455 | |
Jisheng Zhang | 10f1c13 | 2016-02-16 21:08:25 +0800 | [diff] [blame] | 456 | clk_disable_unprepare(gck); |
| 457 | clk_disable_unprepare(hclock); |
| 458 | clk_disable_unprepare(mainck); |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 459 | |
| 460 | return 0; |
| 461 | } |
| 462 | |
| 463 | static struct platform_driver sdhci_at91_driver = { |
| 464 | .driver = { |
| 465 | .name = "sdhci-at91", |
Douglas Anderson | 21b2cec | 2020-09-03 16:24:36 -0700 | [diff] [blame] | 466 | .probe_type = PROBE_PREFER_ASYNCHRONOUS, |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 467 | .of_match_table = sdhci_at91_dt_match, |
ludovic.desroches@atmel.com | f5f1781 | 2015-11-11 19:11:48 +0100 | [diff] [blame] | 468 | .pm = &sdhci_at91_dev_pm_ops, |
ludovic.desroches@atmel.com | bb5f8ea | 2015-07-29 16:22:47 +0200 | [diff] [blame] | 469 | }, |
| 470 | .probe = sdhci_at91_probe, |
| 471 | .remove = sdhci_at91_remove, |
| 472 | }; |
| 473 | |
| 474 | module_platform_driver(sdhci_at91_driver); |
| 475 | |
| 476 | MODULE_DESCRIPTION("SDHCI driver for at91"); |
| 477 | MODULE_AUTHOR("Ludovic Desroches <ludovic.desroches@atmel.com>"); |
| 478 | MODULE_LICENSE("GPL v2"); |