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