Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 Google, Inc. |
| 3 | * |
| 4 | * This software is licensed under the terms of the GNU General Public |
| 5 | * License version 2, as published by the Free Software Foundation, and |
| 6 | * may be copied, distributed, and modified under those terms. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | * |
| 13 | */ |
| 14 | |
| 15 | #include <linux/err.h> |
Paul Gortmaker | 96547f5 | 2011-07-03 15:15:51 -0400 | [diff] [blame] | 16 | #include <linux/module.h> |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 17 | #include <linux/init.h> |
| 18 | #include <linux/platform_device.h> |
| 19 | #include <linux/clk.h> |
| 20 | #include <linux/io.h> |
Stephen Warren | 55cd65e | 2011-08-30 13:17:16 -0600 | [diff] [blame] | 21 | #include <linux/of.h> |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 22 | #include <linux/of_device.h> |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 23 | #include <linux/mmc/card.h> |
| 24 | #include <linux/mmc/host.h> |
Lucas Stach | c3c2384 | 2015-12-22 19:41:02 +0100 | [diff] [blame] | 25 | #include <linux/mmc/mmc.h> |
Joseph Lo | 0aacd23 | 2013-03-11 14:44:11 -0600 | [diff] [blame] | 26 | #include <linux/mmc/slot-gpio.h> |
Mylene JOSSERAND | 2391b34 | 2015-03-30 23:39:25 +0200 | [diff] [blame] | 27 | #include <linux/gpio/consumer.h> |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 28 | |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 29 | #include "sdhci-pltfm.h" |
| 30 | |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 31 | /* Tegra SDHOST controller vendor register definitions */ |
Lucas Stach | 74cd42b | 2015-12-22 19:41:01 +0100 | [diff] [blame] | 32 | #define SDHCI_TEGRA_VENDOR_CLOCK_CTRL 0x100 |
Lucas Stach | c3c2384 | 2015-12-22 19:41:02 +0100 | [diff] [blame] | 33 | #define SDHCI_CLOCK_CTRL_TAP_MASK 0x00ff0000 |
| 34 | #define SDHCI_CLOCK_CTRL_TAP_SHIFT 16 |
| 35 | #define SDHCI_CLOCK_CTRL_SDR50_TUNING_OVERRIDE BIT(5) |
Lucas Stach | 74cd42b | 2015-12-22 19:41:01 +0100 | [diff] [blame] | 36 | #define SDHCI_CLOCK_CTRL_PADPIPE_CLKEN_OVERRIDE BIT(3) |
| 37 | #define SDHCI_CLOCK_CTRL_SPI_MODE_CLKEN_OVERRIDE BIT(2) |
| 38 | |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 39 | #define SDHCI_TEGRA_VENDOR_MISC_CTRL 0x120 |
Andrew Bresticker | 3145351 | 2014-05-22 08:55:35 -0700 | [diff] [blame] | 40 | #define SDHCI_MISC_CTRL_ENABLE_SDR104 0x8 |
| 41 | #define SDHCI_MISC_CTRL_ENABLE_SDR50 0x10 |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 42 | #define SDHCI_MISC_CTRL_ENABLE_SDHCI_SPEC_300 0x20 |
Andrew Bresticker | 3145351 | 2014-05-22 08:55:35 -0700 | [diff] [blame] | 43 | #define SDHCI_MISC_CTRL_ENABLE_DDR50 0x200 |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 44 | |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 45 | #define NVQUIRK_FORCE_SDHCI_SPEC_200 BIT(0) |
| 46 | #define NVQUIRK_ENABLE_BLOCK_GAP_DET BIT(1) |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 47 | #define NVQUIRK_ENABLE_SDHCI_SPEC_300 BIT(2) |
Lucas Stach | 7ad2ed1 | 2015-12-22 19:41:03 +0100 | [diff] [blame] | 48 | #define NVQUIRK_ENABLE_SDR50 BIT(3) |
| 49 | #define NVQUIRK_ENABLE_SDR104 BIT(4) |
| 50 | #define NVQUIRK_ENABLE_DDR50 BIT(5) |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 51 | |
| 52 | struct sdhci_tegra_soc_data { |
Lars-Peter Clausen | 1db5eeb | 2013-03-13 19:26:03 +0100 | [diff] [blame] | 53 | const struct sdhci_pltfm_data *pdata; |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 54 | u32 nvquirks; |
| 55 | }; |
| 56 | |
| 57 | struct sdhci_tegra { |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 58 | const struct sdhci_tegra_soc_data *soc_data; |
Mylene JOSSERAND | 2391b34 | 2015-03-30 23:39:25 +0200 | [diff] [blame] | 59 | struct gpio_desc *power_gpio; |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 60 | bool ddr_signaling; |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 61 | }; |
| 62 | |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 63 | static u16 tegra_sdhci_readw(struct sdhci_host *host, int reg) |
| 64 | { |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 65 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
Jisheng Zhang | 0734e79 | 2016-02-16 21:08:29 +0800 | [diff] [blame^] | 66 | struct sdhci_tegra *tegra_host = sdhci_pltfm_priv(pltfm_host); |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 67 | const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data; |
| 68 | |
| 69 | if (unlikely((soc_data->nvquirks & NVQUIRK_FORCE_SDHCI_SPEC_200) && |
| 70 | (reg == SDHCI_HOST_VERSION))) { |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 71 | /* Erratum: Version register is invalid in HW. */ |
| 72 | return SDHCI_SPEC_200; |
| 73 | } |
| 74 | |
| 75 | return readw(host->ioaddr + reg); |
| 76 | } |
| 77 | |
Pavan Kunapuli | 352ee86 | 2015-01-28 11:45:16 -0500 | [diff] [blame] | 78 | static void tegra_sdhci_writew(struct sdhci_host *host, u16 val, int reg) |
| 79 | { |
| 80 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
Pavan Kunapuli | 352ee86 | 2015-01-28 11:45:16 -0500 | [diff] [blame] | 81 | |
Rhyland Klein | 01df7ec | 2015-02-11 12:55:51 -0500 | [diff] [blame] | 82 | switch (reg) { |
| 83 | case SDHCI_TRANSFER_MODE: |
| 84 | /* |
| 85 | * Postpone this write, we must do it together with a |
| 86 | * command write that is down below. |
| 87 | */ |
| 88 | pltfm_host->xfer_mode_shadow = val; |
| 89 | return; |
| 90 | case SDHCI_COMMAND: |
| 91 | writel((val << 16) | pltfm_host->xfer_mode_shadow, |
| 92 | host->ioaddr + SDHCI_TRANSFER_MODE); |
| 93 | return; |
Pavan Kunapuli | 352ee86 | 2015-01-28 11:45:16 -0500 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | writew(val, host->ioaddr + reg); |
| 97 | } |
| 98 | |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 99 | static void tegra_sdhci_writel(struct sdhci_host *host, u32 val, int reg) |
| 100 | { |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 101 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
Jisheng Zhang | 0734e79 | 2016-02-16 21:08:29 +0800 | [diff] [blame^] | 102 | struct sdhci_tegra *tegra_host = sdhci_pltfm_priv(pltfm_host); |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 103 | const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data; |
| 104 | |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 105 | /* Seems like we're getting spurious timeout and crc errors, so |
| 106 | * disable signalling of them. In case of real errors software |
| 107 | * timers should take care of eventually detecting them. |
| 108 | */ |
| 109 | if (unlikely(reg == SDHCI_SIGNAL_ENABLE)) |
| 110 | val &= ~(SDHCI_INT_TIMEOUT|SDHCI_INT_CRC); |
| 111 | |
| 112 | writel(val, host->ioaddr + reg); |
| 113 | |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 114 | if (unlikely((soc_data->nvquirks & NVQUIRK_ENABLE_BLOCK_GAP_DET) && |
| 115 | (reg == SDHCI_INT_ENABLE))) { |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 116 | /* Erratum: Must enable block gap interrupt detection */ |
| 117 | u8 gap_ctrl = readb(host->ioaddr + SDHCI_BLOCK_GAP_CONTROL); |
| 118 | if (val & SDHCI_INT_CARD_INT) |
| 119 | gap_ctrl |= 0x8; |
| 120 | else |
| 121 | gap_ctrl &= ~0x8; |
| 122 | writeb(gap_ctrl, host->ioaddr + SDHCI_BLOCK_GAP_CONTROL); |
| 123 | } |
| 124 | } |
| 125 | |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 126 | static unsigned int tegra_sdhci_get_ro(struct sdhci_host *host) |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 127 | { |
Joseph Lo | 0aacd23 | 2013-03-11 14:44:11 -0600 | [diff] [blame] | 128 | return mmc_gpio_get_ro(host->mmc); |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 129 | } |
| 130 | |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 131 | static void tegra_sdhci_reset(struct sdhci_host *host, u8 mask) |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 132 | { |
| 133 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
Jisheng Zhang | 0734e79 | 2016-02-16 21:08:29 +0800 | [diff] [blame^] | 134 | struct sdhci_tegra *tegra_host = sdhci_pltfm_priv(pltfm_host); |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 135 | const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data; |
Lucas Stach | 74cd42b | 2015-12-22 19:41:01 +0100 | [diff] [blame] | 136 | u32 misc_ctrl, clk_ctrl; |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 137 | |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 138 | sdhci_reset(host, mask); |
| 139 | |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 140 | if (!(mask & SDHCI_RESET_ALL)) |
| 141 | return; |
| 142 | |
Lucas Stach | 1b84def | 2015-12-22 19:41:04 +0100 | [diff] [blame] | 143 | misc_ctrl = sdhci_readl(host, SDHCI_TEGRA_VENDOR_MISC_CTRL); |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 144 | /* Erratum: Enable SDHCI spec v3.00 support */ |
Andrew Bresticker | 3145351 | 2014-05-22 08:55:35 -0700 | [diff] [blame] | 145 | if (soc_data->nvquirks & NVQUIRK_ENABLE_SDHCI_SPEC_300) |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 146 | misc_ctrl |= SDHCI_MISC_CTRL_ENABLE_SDHCI_SPEC_300; |
Lucas Stach | 7ad2ed1 | 2015-12-22 19:41:03 +0100 | [diff] [blame] | 147 | /* Advertise UHS modes as supported by host */ |
| 148 | if (soc_data->nvquirks & NVQUIRK_ENABLE_SDR50) |
| 149 | misc_ctrl |= SDHCI_MISC_CTRL_ENABLE_SDR50; |
| 150 | if (soc_data->nvquirks & NVQUIRK_ENABLE_DDR50) |
| 151 | misc_ctrl |= SDHCI_MISC_CTRL_ENABLE_DDR50; |
| 152 | if (soc_data->nvquirks & NVQUIRK_ENABLE_SDR104) |
| 153 | misc_ctrl |= SDHCI_MISC_CTRL_ENABLE_SDR104; |
Lucas Stach | 1b84def | 2015-12-22 19:41:04 +0100 | [diff] [blame] | 154 | sdhci_writel(host, misc_ctrl, SDHCI_TEGRA_VENDOR_MISC_CTRL); |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 155 | |
Lucas Stach | 74cd42b | 2015-12-22 19:41:01 +0100 | [diff] [blame] | 156 | clk_ctrl = sdhci_readl(host, SDHCI_TEGRA_VENDOR_CLOCK_CTRL); |
| 157 | clk_ctrl &= ~SDHCI_CLOCK_CTRL_SPI_MODE_CLKEN_OVERRIDE; |
Lucas Stach | 7ad2ed1 | 2015-12-22 19:41:03 +0100 | [diff] [blame] | 158 | if (soc_data->nvquirks & SDHCI_MISC_CTRL_ENABLE_SDR50) |
Lucas Stach | c3c2384 | 2015-12-22 19:41:02 +0100 | [diff] [blame] | 159 | clk_ctrl |= SDHCI_CLOCK_CTRL_SDR50_TUNING_OVERRIDE; |
Lucas Stach | 74cd42b | 2015-12-22 19:41:01 +0100 | [diff] [blame] | 160 | sdhci_writel(host, clk_ctrl, SDHCI_TEGRA_VENDOR_CLOCK_CTRL); |
| 161 | |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 162 | tegra_host->ddr_signaling = false; |
Pavan Kunapuli | ca5879d | 2012-04-18 18:48:02 +0530 | [diff] [blame] | 163 | } |
| 164 | |
Russell King | 2317f56 | 2014-04-25 12:57:07 +0100 | [diff] [blame] | 165 | static void tegra_sdhci_set_bus_width(struct sdhci_host *host, int bus_width) |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 166 | { |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 167 | u32 ctrl; |
| 168 | |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 169 | ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL); |
Joseph Lo | 0aacd23 | 2013-03-11 14:44:11 -0600 | [diff] [blame] | 170 | if ((host->mmc->caps & MMC_CAP_8_BIT_DATA) && |
| 171 | (bus_width == MMC_BUS_WIDTH_8)) { |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 172 | ctrl &= ~SDHCI_CTRL_4BITBUS; |
| 173 | ctrl |= SDHCI_CTRL_8BITBUS; |
| 174 | } else { |
| 175 | ctrl &= ~SDHCI_CTRL_8BITBUS; |
| 176 | if (bus_width == MMC_BUS_WIDTH_4) |
| 177 | ctrl |= SDHCI_CTRL_4BITBUS; |
| 178 | else |
| 179 | ctrl &= ~SDHCI_CTRL_4BITBUS; |
| 180 | } |
| 181 | sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 182 | } |
| 183 | |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 184 | static void tegra_sdhci_set_clock(struct sdhci_host *host, unsigned int clock) |
| 185 | { |
| 186 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
Jisheng Zhang | 0734e79 | 2016-02-16 21:08:29 +0800 | [diff] [blame^] | 187 | struct sdhci_tegra *tegra_host = sdhci_pltfm_priv(pltfm_host); |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 188 | unsigned long host_clk; |
| 189 | |
| 190 | if (!clock) |
| 191 | return; |
| 192 | |
| 193 | host_clk = tegra_host->ddr_signaling ? clock * 2 : clock; |
| 194 | clk_set_rate(pltfm_host->clk, host_clk); |
| 195 | host->max_clk = clk_get_rate(pltfm_host->clk); |
| 196 | |
| 197 | return sdhci_set_clock(host, clock); |
| 198 | } |
| 199 | |
| 200 | static void tegra_sdhci_set_uhs_signaling(struct sdhci_host *host, |
| 201 | unsigned timing) |
| 202 | { |
| 203 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
Jisheng Zhang | 0734e79 | 2016-02-16 21:08:29 +0800 | [diff] [blame^] | 204 | struct sdhci_tegra *tegra_host = sdhci_pltfm_priv(pltfm_host); |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 205 | |
| 206 | if (timing == MMC_TIMING_UHS_DDR50) |
| 207 | tegra_host->ddr_signaling = true; |
| 208 | |
| 209 | return sdhci_set_uhs_signaling(host, timing); |
| 210 | } |
| 211 | |
| 212 | static unsigned int tegra_sdhci_get_max_clock(struct sdhci_host *host) |
| 213 | { |
| 214 | struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); |
| 215 | |
| 216 | /* |
| 217 | * DDR modes require the host to run at double the card frequency, so |
| 218 | * the maximum rate we can support is half of the module input clock. |
| 219 | */ |
| 220 | return clk_round_rate(pltfm_host->clk, UINT_MAX) / 2; |
| 221 | } |
| 222 | |
Lucas Stach | c3c2384 | 2015-12-22 19:41:02 +0100 | [diff] [blame] | 223 | static void tegra_sdhci_set_tap(struct sdhci_host *host, unsigned int tap) |
| 224 | { |
| 225 | u32 reg; |
| 226 | |
| 227 | reg = sdhci_readl(host, SDHCI_TEGRA_VENDOR_CLOCK_CTRL); |
| 228 | reg &= ~SDHCI_CLOCK_CTRL_TAP_MASK; |
| 229 | reg |= tap << SDHCI_CLOCK_CTRL_TAP_SHIFT; |
| 230 | sdhci_writel(host, reg, SDHCI_TEGRA_VENDOR_CLOCK_CTRL); |
| 231 | } |
| 232 | |
| 233 | static int tegra_sdhci_execute_tuning(struct sdhci_host *host, u32 opcode) |
| 234 | { |
| 235 | unsigned int min, max; |
| 236 | |
| 237 | /* |
| 238 | * Start search for minimum tap value at 10, as smaller values are |
| 239 | * may wrongly be reported as working but fail at higher speeds, |
| 240 | * according to the TRM. |
| 241 | */ |
| 242 | min = 10; |
| 243 | while (min < 255) { |
| 244 | tegra_sdhci_set_tap(host, min); |
| 245 | if (!mmc_send_tuning(host->mmc, opcode, NULL)) |
| 246 | break; |
| 247 | min++; |
| 248 | } |
| 249 | |
| 250 | /* Find the maximum tap value that still passes. */ |
| 251 | max = min + 1; |
| 252 | while (max < 255) { |
| 253 | tegra_sdhci_set_tap(host, max); |
| 254 | if (mmc_send_tuning(host->mmc, opcode, NULL)) { |
| 255 | max--; |
| 256 | break; |
| 257 | } |
| 258 | max++; |
| 259 | } |
| 260 | |
| 261 | /* The TRM states the ideal tap value is at 75% in the passing range. */ |
| 262 | tegra_sdhci_set_tap(host, min + ((max - min) * 3 / 4)); |
| 263 | |
| 264 | return mmc_send_tuning(host->mmc, opcode, NULL); |
| 265 | } |
| 266 | |
Lars-Peter Clausen | c915568 | 2013-03-13 19:26:05 +0100 | [diff] [blame] | 267 | static const struct sdhci_ops tegra_sdhci_ops = { |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 268 | .get_ro = tegra_sdhci_get_ro, |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 269 | .read_w = tegra_sdhci_readw, |
| 270 | .write_l = tegra_sdhci_writel, |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 271 | .set_clock = tegra_sdhci_set_clock, |
Russell King | 2317f56 | 2014-04-25 12:57:07 +0100 | [diff] [blame] | 272 | .set_bus_width = tegra_sdhci_set_bus_width, |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 273 | .reset = tegra_sdhci_reset, |
Lucas Stach | c3c2384 | 2015-12-22 19:41:02 +0100 | [diff] [blame] | 274 | .platform_execute_tuning = tegra_sdhci_execute_tuning, |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 275 | .set_uhs_signaling = tegra_sdhci_set_uhs_signaling, |
| 276 | .get_max_clock = tegra_sdhci_get_max_clock, |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 277 | }; |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 278 | |
Lars-Peter Clausen | 1db5eeb | 2013-03-13 19:26:03 +0100 | [diff] [blame] | 279 | static const struct sdhci_pltfm_data sdhci_tegra20_pdata = { |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 280 | .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL | |
| 281 | SDHCI_QUIRK_SINGLE_POWER_WRITE | |
| 282 | SDHCI_QUIRK_NO_HISPD_BIT | |
Andrew Bresticker | f926035 | 2014-05-22 08:55:36 -0700 | [diff] [blame] | 283 | SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC | |
| 284 | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN, |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 285 | .ops = &tegra_sdhci_ops, |
| 286 | }; |
| 287 | |
Thierry Reding | d49d19c2 | 2015-11-16 10:27:14 +0100 | [diff] [blame] | 288 | static const struct sdhci_tegra_soc_data soc_data_tegra20 = { |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 289 | .pdata = &sdhci_tegra20_pdata, |
| 290 | .nvquirks = NVQUIRK_FORCE_SDHCI_SPEC_200 | |
| 291 | NVQUIRK_ENABLE_BLOCK_GAP_DET, |
| 292 | }; |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 293 | |
Lars-Peter Clausen | 1db5eeb | 2013-03-13 19:26:03 +0100 | [diff] [blame] | 294 | static const struct sdhci_pltfm_data sdhci_tegra30_pdata = { |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 295 | .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL | |
| 296 | SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK | |
| 297 | SDHCI_QUIRK_SINGLE_POWER_WRITE | |
| 298 | SDHCI_QUIRK_NO_HISPD_BIT | |
Andrew Bresticker | f926035 | 2014-05-22 08:55:36 -0700 | [diff] [blame] | 299 | SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC | |
| 300 | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN, |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 301 | .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN, |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 302 | .ops = &tegra_sdhci_ops, |
| 303 | }; |
| 304 | |
Thierry Reding | d49d19c2 | 2015-11-16 10:27:14 +0100 | [diff] [blame] | 305 | static const struct sdhci_tegra_soc_data soc_data_tegra30 = { |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 306 | .pdata = &sdhci_tegra30_pdata, |
Andrew Bresticker | 3145351 | 2014-05-22 08:55:35 -0700 | [diff] [blame] | 307 | .nvquirks = NVQUIRK_ENABLE_SDHCI_SPEC_300 | |
Lucas Stach | 7ad2ed1 | 2015-12-22 19:41:03 +0100 | [diff] [blame] | 308 | NVQUIRK_ENABLE_SDR50 | |
| 309 | NVQUIRK_ENABLE_SDR104, |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 310 | }; |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 311 | |
Rhyland Klein | 01df7ec | 2015-02-11 12:55:51 -0500 | [diff] [blame] | 312 | static const struct sdhci_ops tegra114_sdhci_ops = { |
| 313 | .get_ro = tegra_sdhci_get_ro, |
| 314 | .read_w = tegra_sdhci_readw, |
| 315 | .write_w = tegra_sdhci_writew, |
| 316 | .write_l = tegra_sdhci_writel, |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 317 | .set_clock = tegra_sdhci_set_clock, |
Rhyland Klein | 01df7ec | 2015-02-11 12:55:51 -0500 | [diff] [blame] | 318 | .set_bus_width = tegra_sdhci_set_bus_width, |
| 319 | .reset = tegra_sdhci_reset, |
Lucas Stach | c3c2384 | 2015-12-22 19:41:02 +0100 | [diff] [blame] | 320 | .platform_execute_tuning = tegra_sdhci_execute_tuning, |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 321 | .set_uhs_signaling = tegra_sdhci_set_uhs_signaling, |
| 322 | .get_max_clock = tegra_sdhci_get_max_clock, |
Rhyland Klein | 01df7ec | 2015-02-11 12:55:51 -0500 | [diff] [blame] | 323 | }; |
| 324 | |
Lars-Peter Clausen | 1db5eeb | 2013-03-13 19:26:03 +0100 | [diff] [blame] | 325 | static const struct sdhci_pltfm_data sdhci_tegra114_pdata = { |
Rhyland Klein | 5ebf255 | 2013-02-20 13:35:17 -0500 | [diff] [blame] | 326 | .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL | |
| 327 | SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK | |
| 328 | SDHCI_QUIRK_SINGLE_POWER_WRITE | |
| 329 | SDHCI_QUIRK_NO_HISPD_BIT | |
Andrew Bresticker | f926035 | 2014-05-22 08:55:36 -0700 | [diff] [blame] | 330 | SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC | |
| 331 | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN, |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 332 | .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN, |
Rhyland Klein | 01df7ec | 2015-02-11 12:55:51 -0500 | [diff] [blame] | 333 | .ops = &tegra114_sdhci_ops, |
Rhyland Klein | 5ebf255 | 2013-02-20 13:35:17 -0500 | [diff] [blame] | 334 | }; |
| 335 | |
Thierry Reding | d49d19c2 | 2015-11-16 10:27:14 +0100 | [diff] [blame] | 336 | static const struct sdhci_tegra_soc_data soc_data_tegra114 = { |
Rhyland Klein | 5ebf255 | 2013-02-20 13:35:17 -0500 | [diff] [blame] | 337 | .pdata = &sdhci_tegra114_pdata, |
Lucas Stach | 7ad2ed1 | 2015-12-22 19:41:03 +0100 | [diff] [blame] | 338 | .nvquirks = NVQUIRK_ENABLE_SDR50 | |
| 339 | NVQUIRK_ENABLE_DDR50 | |
| 340 | NVQUIRK_ENABLE_SDR104, |
Rhyland Klein | 5ebf255 | 2013-02-20 13:35:17 -0500 | [diff] [blame] | 341 | }; |
| 342 | |
Thierry Reding | b5a84ec | 2015-11-16 10:27:15 +0100 | [diff] [blame] | 343 | static const struct sdhci_pltfm_data sdhci_tegra210_pdata = { |
| 344 | .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL | |
| 345 | SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK | |
| 346 | SDHCI_QUIRK_SINGLE_POWER_WRITE | |
| 347 | SDHCI_QUIRK_NO_HISPD_BIT | |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 348 | SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC | |
| 349 | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN, |
| 350 | .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN, |
Thierry Reding | b5a84ec | 2015-11-16 10:27:15 +0100 | [diff] [blame] | 351 | .ops = &tegra114_sdhci_ops, |
| 352 | }; |
| 353 | |
| 354 | static const struct sdhci_tegra_soc_data soc_data_tegra210 = { |
| 355 | .pdata = &sdhci_tegra210_pdata, |
Thierry Reding | b5a84ec | 2015-11-16 10:27:15 +0100 | [diff] [blame] | 356 | }; |
| 357 | |
Bill Pemberton | 498d83e | 2012-11-19 13:24:22 -0500 | [diff] [blame] | 358 | static const struct of_device_id sdhci_tegra_dt_match[] = { |
Thierry Reding | b5a84ec | 2015-11-16 10:27:15 +0100 | [diff] [blame] | 359 | { .compatible = "nvidia,tegra210-sdhci", .data = &soc_data_tegra210 }, |
Stephen Warren | 67debea | 2014-01-06 11:17:47 -0700 | [diff] [blame] | 360 | { .compatible = "nvidia,tegra124-sdhci", .data = &soc_data_tegra114 }, |
Rhyland Klein | 5ebf255 | 2013-02-20 13:35:17 -0500 | [diff] [blame] | 361 | { .compatible = "nvidia,tegra114-sdhci", .data = &soc_data_tegra114 }, |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 362 | { .compatible = "nvidia,tegra30-sdhci", .data = &soc_data_tegra30 }, |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 363 | { .compatible = "nvidia,tegra20-sdhci", .data = &soc_data_tegra20 }, |
Grant Likely | 275173b | 2011-08-23 12:15:33 -0600 | [diff] [blame] | 364 | {} |
| 365 | }; |
Arnd Bergmann | e4404fa | 2013-04-23 15:05:57 -0400 | [diff] [blame] | 366 | MODULE_DEVICE_TABLE(of, sdhci_tegra_dt_match); |
Grant Likely | 275173b | 2011-08-23 12:15:33 -0600 | [diff] [blame] | 367 | |
Bill Pemberton | c3be1ef | 2012-11-19 13:23:06 -0500 | [diff] [blame] | 368 | static int sdhci_tegra_probe(struct platform_device *pdev) |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 369 | { |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 370 | const struct of_device_id *match; |
| 371 | const struct sdhci_tegra_soc_data *soc_data; |
| 372 | struct sdhci_host *host; |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 373 | struct sdhci_pltfm_host *pltfm_host; |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 374 | struct sdhci_tegra *tegra_host; |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 375 | struct clk *clk; |
| 376 | int rc; |
| 377 | |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 378 | match = of_match_device(sdhci_tegra_dt_match, &pdev->dev); |
Joseph Lo | b37f9d9 | 2012-08-17 15:04:31 +0800 | [diff] [blame] | 379 | if (!match) |
| 380 | return -EINVAL; |
| 381 | soc_data = match->data; |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 382 | |
Jisheng Zhang | 0734e79 | 2016-02-16 21:08:29 +0800 | [diff] [blame^] | 383 | host = sdhci_pltfm_init(pdev, soc_data->pdata, sizeof(*tegra_host)); |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 384 | if (IS_ERR(host)) |
| 385 | return PTR_ERR(host); |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 386 | pltfm_host = sdhci_priv(host); |
| 387 | |
Jisheng Zhang | 0734e79 | 2016-02-16 21:08:29 +0800 | [diff] [blame^] | 388 | tegra_host = sdhci_pltfm_priv(pltfm_host); |
Lucas Stach | a8e326a | 2015-12-22 19:41:00 +0100 | [diff] [blame] | 389 | tegra_host->ddr_signaling = false; |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 390 | tegra_host->soc_data = soc_data; |
Grant Likely | 275173b | 2011-08-23 12:15:33 -0600 | [diff] [blame] | 391 | |
Mylene JOSSERAND | 2391b34 | 2015-03-30 23:39:25 +0200 | [diff] [blame] | 392 | rc = mmc_of_parse(host->mmc); |
Simon Baatz | 47caa84 | 2013-06-09 22:14:16 +0200 | [diff] [blame] | 393 | if (rc) |
| 394 | goto err_parse_dt; |
Stephen Warren | 0e78610 | 2013-02-15 15:07:19 -0700 | [diff] [blame] | 395 | |
Lucas Stach | 7ad2ed1 | 2015-12-22 19:41:03 +0100 | [diff] [blame] | 396 | if (tegra_host->soc_data->nvquirks & NVQUIRK_ENABLE_DDR50) |
Lucas Stach | c3c2384 | 2015-12-22 19:41:02 +0100 | [diff] [blame] | 397 | host->mmc->caps |= MMC_CAP_1_8V_DDR; |
| 398 | |
Mylene JOSSERAND | 2391b34 | 2015-03-30 23:39:25 +0200 | [diff] [blame] | 399 | tegra_host->power_gpio = devm_gpiod_get_optional(&pdev->dev, "power", |
| 400 | GPIOD_OUT_HIGH); |
| 401 | if (IS_ERR(tegra_host->power_gpio)) { |
| 402 | rc = PTR_ERR(tegra_host->power_gpio); |
| 403 | goto err_power_req; |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 404 | } |
| 405 | |
Kevin Hao | e4f79d9 | 2015-02-27 15:47:27 +0800 | [diff] [blame] | 406 | clk = devm_clk_get(mmc_dev(host->mmc), NULL); |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 407 | if (IS_ERR(clk)) { |
| 408 | dev_err(mmc_dev(host->mmc), "clk err\n"); |
| 409 | rc = PTR_ERR(clk); |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 410 | goto err_clk_get; |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 411 | } |
Prashant Gaikwad | 1e674bc | 2012-06-05 09:59:37 +0530 | [diff] [blame] | 412 | clk_prepare_enable(clk); |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 413 | pltfm_host->clk = clk; |
| 414 | |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 415 | rc = sdhci_add_host(host); |
| 416 | if (rc) |
| 417 | goto err_add_host; |
| 418 | |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 419 | return 0; |
| 420 | |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 421 | err_add_host: |
Prashant Gaikwad | 1e674bc | 2012-06-05 09:59:37 +0530 | [diff] [blame] | 422 | clk_disable_unprepare(pltfm_host->clk); |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 423 | err_clk_get: |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 424 | err_power_req: |
Simon Baatz | 47caa84 | 2013-06-09 22:14:16 +0200 | [diff] [blame] | 425 | err_parse_dt: |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 426 | sdhci_pltfm_free(pdev); |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 427 | return rc; |
| 428 | } |
| 429 | |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 430 | static struct platform_driver sdhci_tegra_driver = { |
| 431 | .driver = { |
| 432 | .name = "sdhci-tegra", |
Grant Likely | 275173b | 2011-08-23 12:15:33 -0600 | [diff] [blame] | 433 | .of_match_table = sdhci_tegra_dt_match, |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 434 | .pm = SDHCI_PLTFM_PMOPS, |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 435 | }, |
| 436 | .probe = sdhci_tegra_probe, |
Kevin Hao | caebcae | 2015-02-27 15:47:31 +0800 | [diff] [blame] | 437 | .remove = sdhci_pltfm_unregister, |
Olof Johansson | 03d2bfc | 2011-01-01 23:52:56 -0500 | [diff] [blame] | 438 | }; |
| 439 | |
Axel Lin | d1f81a6 | 2011-11-26 12:55:43 +0800 | [diff] [blame] | 440 | module_platform_driver(sdhci_tegra_driver); |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 441 | |
| 442 | MODULE_DESCRIPTION("SDHCI driver for Tegra"); |
Stephen Warren | 3e44a1a | 2012-02-01 16:30:55 -0700 | [diff] [blame] | 443 | MODULE_AUTHOR("Google, Inc."); |
Shawn Guo | 85d6509 | 2011-05-27 23:48:12 +0800 | [diff] [blame] | 444 | MODULE_LICENSE("GPL v2"); |