Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1 | /* |
Pierre Ossman | 70f1048 | 2007-07-11 20:04:50 +0200 | [diff] [blame] | 2 | * linux/drivers/mmc/host/sdhci.c - Secure Digital Host Controller Interface driver |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3 | * |
Pierre Ossman | b69c905 | 2008-03-08 23:44:25 +0100 | [diff] [blame] | 4 | * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved. |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
Pierre Ossman | 643f720 | 2006-09-30 23:27:52 -0700 | [diff] [blame] | 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or (at |
| 9 | * your option) any later version. |
Pierre Ossman | 84c46a5 | 2007-12-02 19:58:16 +0100 | [diff] [blame] | 10 | * |
| 11 | * Thanks to the following companies for their support: |
| 12 | * |
| 13 | * - JMicron (hardware and technical support) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 14 | */ |
| 15 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 16 | #include <linux/delay.h> |
| 17 | #include <linux/highmem.h> |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 18 | #include <linux/io.h> |
Paul Gortmaker | 88b4767 | 2011-07-03 15:15:51 -0400 | [diff] [blame] | 19 | #include <linux/module.h> |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 20 | #include <linux/dma-mapping.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Ralf Baechle | 1176360 | 2007-10-23 20:42:11 +0200 | [diff] [blame] | 22 | #include <linux/scatterlist.h> |
Marek Szyprowski | 9bea3c8 | 2010-08-10 18:01:59 -0700 | [diff] [blame] | 23 | #include <linux/regulator/consumer.h> |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 24 | #include <linux/pm_runtime.h> |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 25 | |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 26 | #include <linux/leds.h> |
| 27 | |
Aries Lee | 22113ef | 2010-12-15 08:14:24 +0100 | [diff] [blame] | 28 | #include <linux/mmc/mmc.h> |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 29 | #include <linux/mmc/host.h> |
Aaron Lu | 473b095 | 2012-07-03 17:27:49 +0800 | [diff] [blame] | 30 | #include <linux/mmc/card.h> |
Corneliu Doban | 85cc1c3 | 2015-02-09 16:06:29 -0800 | [diff] [blame] | 31 | #include <linux/mmc/sdio.h> |
Guennadi Liakhovetski | bec9d4e | 2012-09-17 16:45:10 +0800 | [diff] [blame] | 32 | #include <linux/mmc/slot-gpio.h> |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 33 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 34 | #include "sdhci.h" |
| 35 | |
| 36 | #define DRIVER_NAME "sdhci" |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 37 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 38 | #define DBG(f, x...) \ |
Russell King | c656317 | 2006-03-29 09:30:20 +0100 | [diff] [blame] | 39 | pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 40 | |
Pierre Ossman | f913431 | 2008-12-21 17:01:48 +0100 | [diff] [blame] | 41 | #if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \ |
| 42 | defined(CONFIG_MMC_SDHCI_MODULE)) |
| 43 | #define SDHCI_USE_LEDS_CLASS |
| 44 | #endif |
| 45 | |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 46 | #define MAX_TUNING_LOOP 40 |
| 47 | |
Pierre Ossman | df673b2 | 2006-06-30 02:22:31 -0700 | [diff] [blame] | 48 | static unsigned int debug_quirks = 0; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 49 | static unsigned int debug_quirks2; |
Pierre Ossman | 6743527 | 2006-06-30 02:22:31 -0700 | [diff] [blame] | 50 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 51 | static void sdhci_finish_data(struct sdhci_host *); |
| 52 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 53 | static void sdhci_finish_command(struct sdhci_host *); |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 54 | static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode); |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 55 | static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable); |
Scott Branden | 04e079cf | 2015-03-10 11:35:10 -0700 | [diff] [blame] | 56 | static int sdhci_do_get_cd(struct sdhci_host *host); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 57 | |
Rafael J. Wysocki | 162d6f9 | 2014-12-05 03:05:33 +0100 | [diff] [blame] | 58 | #ifdef CONFIG_PM |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 59 | static int sdhci_runtime_pm_get(struct sdhci_host *host); |
| 60 | static int sdhci_runtime_pm_put(struct sdhci_host *host); |
Adrian Hunter | f0710a5 | 2013-05-06 12:17:32 +0300 | [diff] [blame] | 61 | static void sdhci_runtime_pm_bus_on(struct sdhci_host *host); |
| 62 | static void sdhci_runtime_pm_bus_off(struct sdhci_host *host); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 63 | #else |
| 64 | static inline int sdhci_runtime_pm_get(struct sdhci_host *host) |
| 65 | { |
| 66 | return 0; |
| 67 | } |
| 68 | static inline int sdhci_runtime_pm_put(struct sdhci_host *host) |
| 69 | { |
| 70 | return 0; |
| 71 | } |
Adrian Hunter | f0710a5 | 2013-05-06 12:17:32 +0300 | [diff] [blame] | 72 | static void sdhci_runtime_pm_bus_on(struct sdhci_host *host) |
| 73 | { |
| 74 | } |
| 75 | static void sdhci_runtime_pm_bus_off(struct sdhci_host *host) |
| 76 | { |
| 77 | } |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 78 | #endif |
| 79 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 80 | static void sdhci_dumpregs(struct sdhci_host *host) |
| 81 | { |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 82 | pr_debug(DRIVER_NAME ": =========== REGISTER DUMP (%s)===========\n", |
Philip Rakity | 412ab65 | 2010-09-22 15:25:13 -0700 | [diff] [blame] | 83 | mmc_hostname(host->mmc)); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 84 | |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 85 | pr_debug(DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n", |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 86 | sdhci_readl(host, SDHCI_DMA_ADDRESS), |
| 87 | sdhci_readw(host, SDHCI_HOST_VERSION)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 88 | pr_debug(DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n", |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 89 | sdhci_readw(host, SDHCI_BLOCK_SIZE), |
| 90 | sdhci_readw(host, SDHCI_BLOCK_COUNT)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 91 | pr_debug(DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n", |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 92 | sdhci_readl(host, SDHCI_ARGUMENT), |
| 93 | sdhci_readw(host, SDHCI_TRANSFER_MODE)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 94 | pr_debug(DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n", |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 95 | sdhci_readl(host, SDHCI_PRESENT_STATE), |
| 96 | sdhci_readb(host, SDHCI_HOST_CONTROL)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 97 | pr_debug(DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n", |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 98 | sdhci_readb(host, SDHCI_POWER_CONTROL), |
| 99 | sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 100 | pr_debug(DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n", |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 101 | sdhci_readb(host, SDHCI_WAKE_UP_CONTROL), |
| 102 | sdhci_readw(host, SDHCI_CLOCK_CONTROL)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 103 | pr_debug(DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n", |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 104 | sdhci_readb(host, SDHCI_TIMEOUT_CONTROL), |
| 105 | sdhci_readl(host, SDHCI_INT_STATUS)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 106 | pr_debug(DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n", |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 107 | sdhci_readl(host, SDHCI_INT_ENABLE), |
| 108 | sdhci_readl(host, SDHCI_SIGNAL_ENABLE)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 109 | pr_debug(DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n", |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 110 | sdhci_readw(host, SDHCI_ACMD12_ERR), |
| 111 | sdhci_readw(host, SDHCI_SLOT_INT_STATUS)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 112 | pr_debug(DRIVER_NAME ": Caps: 0x%08x | Caps_1: 0x%08x\n", |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 113 | sdhci_readl(host, SDHCI_CAPABILITIES), |
Philip Rakity | e8120ad | 2010-11-30 00:55:23 -0500 | [diff] [blame] | 114 | sdhci_readl(host, SDHCI_CAPABILITIES_1)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 115 | pr_debug(DRIVER_NAME ": Cmd: 0x%08x | Max curr: 0x%08x\n", |
Philip Rakity | e8120ad | 2010-11-30 00:55:23 -0500 | [diff] [blame] | 116 | sdhci_readw(host, SDHCI_COMMAND), |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 117 | sdhci_readl(host, SDHCI_MAX_CURRENT)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 118 | pr_debug(DRIVER_NAME ": Host ctl2: 0x%08x\n", |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 119 | sdhci_readw(host, SDHCI_HOST_CONTROL2)); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 120 | |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 121 | if (host->flags & SDHCI_USE_ADMA) { |
| 122 | if (host->flags & SDHCI_USE_64_BIT_DMA) |
| 123 | pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x%08x\n", |
| 124 | readl(host->ioaddr + SDHCI_ADMA_ERROR), |
| 125 | readl(host->ioaddr + SDHCI_ADMA_ADDRESS_HI), |
| 126 | readl(host->ioaddr + SDHCI_ADMA_ADDRESS)); |
| 127 | else |
| 128 | pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n", |
| 129 | readl(host->ioaddr + SDHCI_ADMA_ERROR), |
| 130 | readl(host->ioaddr + SDHCI_ADMA_ADDRESS)); |
| 131 | } |
Ben Dooks | be3f4ae | 2009-06-08 23:33:52 +0100 | [diff] [blame] | 132 | |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 133 | pr_debug(DRIVER_NAME ": ===========================================\n"); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | /*****************************************************************************\ |
| 137 | * * |
| 138 | * Low level functions * |
| 139 | * * |
| 140 | \*****************************************************************************/ |
| 141 | |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 142 | static void sdhci_set_card_detection(struct sdhci_host *host, bool enable) |
| 143 | { |
Russell King | 5b4f1f6 | 2014-04-25 12:57:02 +0100 | [diff] [blame] | 144 | u32 present; |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 145 | |
Adrian Hunter | c79396c | 2011-12-27 15:48:42 +0200 | [diff] [blame] | 146 | if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) || |
Daniel Drake | 87b87a3 | 2012-04-10 00:14:20 +0100 | [diff] [blame] | 147 | (host->mmc->caps & MMC_CAP_NONREMOVABLE)) |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 148 | return; |
| 149 | |
Russell King | 5b4f1f6 | 2014-04-25 12:57:02 +0100 | [diff] [blame] | 150 | if (enable) { |
| 151 | present = sdhci_readl(host, SDHCI_PRESENT_STATE) & |
| 152 | SDHCI_CARD_PRESENT; |
Shawn Guo | d25928d | 2011-06-21 22:41:48 +0800 | [diff] [blame] | 153 | |
Russell King | 5b4f1f6 | 2014-04-25 12:57:02 +0100 | [diff] [blame] | 154 | host->ier |= present ? SDHCI_INT_CARD_REMOVE : |
| 155 | SDHCI_INT_CARD_INSERT; |
| 156 | } else { |
| 157 | host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT); |
| 158 | } |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 159 | |
| 160 | sdhci_writel(host, host->ier, SDHCI_INT_ENABLE); |
| 161 | sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE); |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | static void sdhci_enable_card_detection(struct sdhci_host *host) |
| 165 | { |
| 166 | sdhci_set_card_detection(host, true); |
| 167 | } |
| 168 | |
| 169 | static void sdhci_disable_card_detection(struct sdhci_host *host) |
| 170 | { |
| 171 | sdhci_set_card_detection(host, false); |
| 172 | } |
| 173 | |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 174 | void sdhci_reset(struct sdhci_host *host, u8 mask) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 175 | { |
Pierre Ossman | e16514d8 | 2006-06-30 02:22:24 -0700 | [diff] [blame] | 176 | unsigned long timeout; |
Philip Rakity | 393c1a3 | 2011-01-21 11:26:40 -0800 | [diff] [blame] | 177 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 178 | sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 179 | |
Adrian Hunter | f0710a5 | 2013-05-06 12:17:32 +0300 | [diff] [blame] | 180 | if (mask & SDHCI_RESET_ALL) { |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 181 | host->clock = 0; |
Adrian Hunter | f0710a5 | 2013-05-06 12:17:32 +0300 | [diff] [blame] | 182 | /* Reset-all turns off SD Bus Power */ |
| 183 | if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON) |
| 184 | sdhci_runtime_pm_bus_off(host); |
| 185 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 186 | |
Pierre Ossman | e16514d8 | 2006-06-30 02:22:24 -0700 | [diff] [blame] | 187 | /* Wait max 100 ms */ |
| 188 | timeout = 100; |
| 189 | |
| 190 | /* hw clears the bit when it's done */ |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 191 | while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) { |
Pierre Ossman | e16514d8 | 2006-06-30 02:22:24 -0700 | [diff] [blame] | 192 | if (timeout == 0) { |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 193 | pr_err("%s: Reset 0x%x never completed.\n", |
Pierre Ossman | e16514d8 | 2006-06-30 02:22:24 -0700 | [diff] [blame] | 194 | mmc_hostname(host->mmc), (int)mask); |
| 195 | sdhci_dumpregs(host); |
| 196 | return; |
| 197 | } |
| 198 | timeout--; |
| 199 | mdelay(1); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 200 | } |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 201 | } |
| 202 | EXPORT_SYMBOL_GPL(sdhci_reset); |
Anton Vorontsov | 063a9db | 2009-03-17 00:14:02 +0300 | [diff] [blame] | 203 | |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 204 | static void sdhci_do_reset(struct sdhci_host *host, u8 mask) |
| 205 | { |
| 206 | if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) { |
Ivan T. Ivanov | 135b0a2 | 2015-07-06 15:16:21 +0300 | [diff] [blame] | 207 | if (!sdhci_do_get_cd(host)) |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 208 | return; |
| 209 | } |
| 210 | |
| 211 | host->ops->reset(host, mask); |
Philip Rakity | 393c1a3 | 2011-01-21 11:26:40 -0800 | [diff] [blame] | 212 | |
Russell King | da91a8f | 2014-04-25 13:00:12 +0100 | [diff] [blame] | 213 | if (mask & SDHCI_RESET_ALL) { |
| 214 | if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) { |
| 215 | if (host->ops->enable_dma) |
| 216 | host->ops->enable_dma(host); |
| 217 | } |
| 218 | |
| 219 | /* Resetting the controller clears many */ |
| 220 | host->preset_enabled = false; |
Shaohui Xie | 3abc1e80 | 2011-12-29 16:33:00 +0800 | [diff] [blame] | 221 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 222 | } |
| 223 | |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 224 | static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios); |
| 225 | |
| 226 | static void sdhci_init(struct sdhci_host *host, int soft) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 227 | { |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 228 | if (soft) |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 229 | sdhci_do_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA); |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 230 | else |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 231 | sdhci_do_reset(host, SDHCI_RESET_ALL); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 232 | |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 233 | host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT | |
| 234 | SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT | |
| 235 | SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC | |
| 236 | SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END | |
| 237 | SDHCI_INT_RESPONSE; |
| 238 | |
| 239 | sdhci_writel(host, host->ier, SDHCI_INT_ENABLE); |
| 240 | sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE); |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 241 | |
| 242 | if (soft) { |
| 243 | /* force clock reconfiguration */ |
| 244 | host->clock = 0; |
| 245 | sdhci_set_ios(host->mmc, &host->mmc->ios); |
| 246 | } |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 247 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 248 | |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 249 | static void sdhci_reinit(struct sdhci_host *host) |
| 250 | { |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 251 | sdhci_init(host, 0); |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 252 | sdhci_enable_card_detection(host); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | static void sdhci_activate_led(struct sdhci_host *host) |
| 256 | { |
| 257 | u8 ctrl; |
| 258 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 259 | ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 260 | ctrl |= SDHCI_CTRL_LED; |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 261 | sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | static void sdhci_deactivate_led(struct sdhci_host *host) |
| 265 | { |
| 266 | u8 ctrl; |
| 267 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 268 | ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 269 | ctrl &= ~SDHCI_CTRL_LED; |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 270 | sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 271 | } |
| 272 | |
Pierre Ossman | f913431 | 2008-12-21 17:01:48 +0100 | [diff] [blame] | 273 | #ifdef SDHCI_USE_LEDS_CLASS |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 274 | static void sdhci_led_control(struct led_classdev *led, |
| 275 | enum led_brightness brightness) |
| 276 | { |
| 277 | struct sdhci_host *host = container_of(led, struct sdhci_host, led); |
| 278 | unsigned long flags; |
| 279 | |
| 280 | spin_lock_irqsave(&host->lock, flags); |
| 281 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 282 | if (host->runtime_suspended) |
| 283 | goto out; |
| 284 | |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 285 | if (brightness == LED_OFF) |
| 286 | sdhci_deactivate_led(host); |
| 287 | else |
| 288 | sdhci_activate_led(host); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 289 | out: |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 290 | spin_unlock_irqrestore(&host->lock, flags); |
| 291 | } |
| 292 | #endif |
| 293 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 294 | /*****************************************************************************\ |
| 295 | * * |
| 296 | * Core functions * |
| 297 | * * |
| 298 | \*****************************************************************************/ |
| 299 | |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 300 | static void sdhci_read_block_pio(struct sdhci_host *host) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 301 | { |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 302 | unsigned long flags; |
| 303 | size_t blksize, len, chunk; |
Steven Noonan | 7244b85 | 2008-10-01 01:50:25 -0700 | [diff] [blame] | 304 | u32 uninitialized_var(scratch); |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 305 | u8 *buf; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 306 | |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 307 | DBG("PIO reading\n"); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 308 | |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 309 | blksize = host->data->blksz; |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 310 | chunk = 0; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 311 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 312 | local_irq_save(flags); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 313 | |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 314 | while (blksize) { |
Fabio Estevam | bf3a35a | 2015-05-09 18:44:51 -0300 | [diff] [blame] | 315 | BUG_ON(!sg_miter_next(&host->sg_miter)); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 316 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 317 | len = min(host->sg_miter.length, blksize); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 318 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 319 | blksize -= len; |
| 320 | host->sg_miter.consumed = len; |
Alex Dubov | 14d836e | 2007-04-13 19:04:38 +0200 | [diff] [blame] | 321 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 322 | buf = host->sg_miter.addr; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 323 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 324 | while (len) { |
| 325 | if (chunk == 0) { |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 326 | scratch = sdhci_readl(host, SDHCI_BUFFER); |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 327 | chunk = 4; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 328 | } |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 329 | |
| 330 | *buf = scratch & 0xFF; |
| 331 | |
| 332 | buf++; |
| 333 | scratch >>= 8; |
| 334 | chunk--; |
| 335 | len--; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 336 | } |
| 337 | } |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 338 | |
| 339 | sg_miter_stop(&host->sg_miter); |
| 340 | |
| 341 | local_irq_restore(flags); |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 342 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 343 | |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 344 | static void sdhci_write_block_pio(struct sdhci_host *host) |
| 345 | { |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 346 | unsigned long flags; |
| 347 | size_t blksize, len, chunk; |
| 348 | u32 scratch; |
| 349 | u8 *buf; |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 350 | |
| 351 | DBG("PIO writing\n"); |
| 352 | |
| 353 | blksize = host->data->blksz; |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 354 | chunk = 0; |
| 355 | scratch = 0; |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 356 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 357 | local_irq_save(flags); |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 358 | |
| 359 | while (blksize) { |
Fabio Estevam | bf3a35a | 2015-05-09 18:44:51 -0300 | [diff] [blame] | 360 | BUG_ON(!sg_miter_next(&host->sg_miter)); |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 361 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 362 | len = min(host->sg_miter.length, blksize); |
Alex Dubov | 14d836e | 2007-04-13 19:04:38 +0200 | [diff] [blame] | 363 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 364 | blksize -= len; |
| 365 | host->sg_miter.consumed = len; |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 366 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 367 | buf = host->sg_miter.addr; |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 368 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 369 | while (len) { |
| 370 | scratch |= (u32)*buf << (chunk * 8); |
| 371 | |
| 372 | buf++; |
| 373 | chunk++; |
| 374 | len--; |
| 375 | |
| 376 | if ((chunk == 4) || ((len == 0) && (blksize == 0))) { |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 377 | sdhci_writel(host, scratch, SDHCI_BUFFER); |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 378 | chunk = 0; |
| 379 | scratch = 0; |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 380 | } |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 381 | } |
| 382 | } |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 383 | |
| 384 | sg_miter_stop(&host->sg_miter); |
| 385 | |
| 386 | local_irq_restore(flags); |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | static void sdhci_transfer_pio(struct sdhci_host *host) |
| 390 | { |
| 391 | u32 mask; |
| 392 | |
| 393 | BUG_ON(!host->data); |
| 394 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 395 | if (host->blocks == 0) |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 396 | return; |
| 397 | |
| 398 | if (host->data->flags & MMC_DATA_READ) |
| 399 | mask = SDHCI_DATA_AVAILABLE; |
| 400 | else |
| 401 | mask = SDHCI_SPACE_AVAILABLE; |
| 402 | |
Pierre Ossman | 4a3cba3 | 2008-07-29 00:11:16 +0200 | [diff] [blame] | 403 | /* |
| 404 | * Some controllers (JMicron JMB38x) mess up the buffer bits |
| 405 | * for transfers < 4 bytes. As long as it is just one block, |
| 406 | * we can ignore the bits. |
| 407 | */ |
| 408 | if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) && |
| 409 | (host->data->blocks == 1)) |
| 410 | mask = ~0; |
| 411 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 412 | while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) { |
Anton Vorontsov | 3e3bf20 | 2009-03-17 00:14:00 +0300 | [diff] [blame] | 413 | if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY) |
| 414 | udelay(100); |
| 415 | |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 416 | if (host->data->flags & MMC_DATA_READ) |
| 417 | sdhci_read_block_pio(host); |
| 418 | else |
| 419 | sdhci_write_block_pio(host); |
| 420 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 421 | host->blocks--; |
| 422 | if (host->blocks == 0) |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 423 | break; |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 424 | } |
| 425 | |
| 426 | DBG("PIO transfer complete.\n"); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 427 | } |
| 428 | |
Russell King | 48857d9 | 2016-01-26 13:40:16 +0000 | [diff] [blame] | 429 | static int sdhci_pre_dma_transfer(struct sdhci_host *host, |
Russell King | c0999b7 | 2016-01-26 13:40:27 +0000 | [diff] [blame] | 430 | struct mmc_data *data, int cookie) |
Russell King | 48857d9 | 2016-01-26 13:40:16 +0000 | [diff] [blame] | 431 | { |
| 432 | int sg_count; |
| 433 | |
Russell King | 94538e5 | 2016-01-26 13:40:37 +0000 | [diff] [blame] | 434 | /* |
| 435 | * If the data buffers are already mapped, return the previous |
| 436 | * dma_map_sg() result. |
| 437 | */ |
| 438 | if (data->host_cookie == COOKIE_PRE_MAPPED) |
Russell King | 48857d9 | 2016-01-26 13:40:16 +0000 | [diff] [blame] | 439 | return data->sg_count; |
Russell King | 48857d9 | 2016-01-26 13:40:16 +0000 | [diff] [blame] | 440 | |
| 441 | sg_count = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len, |
| 442 | data->flags & MMC_DATA_WRITE ? |
| 443 | DMA_TO_DEVICE : DMA_FROM_DEVICE); |
| 444 | |
| 445 | if (sg_count == 0) |
| 446 | return -ENOSPC; |
| 447 | |
| 448 | data->sg_count = sg_count; |
Russell King | c0999b7 | 2016-01-26 13:40:27 +0000 | [diff] [blame] | 449 | data->host_cookie = cookie; |
Russell King | 48857d9 | 2016-01-26 13:40:16 +0000 | [diff] [blame] | 450 | |
| 451 | return sg_count; |
| 452 | } |
| 453 | |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 454 | static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags) |
| 455 | { |
| 456 | local_irq_save(*flags); |
Cong Wang | 482fce9 | 2011-11-27 13:27:00 +0800 | [diff] [blame] | 457 | return kmap_atomic(sg_page(sg)) + sg->offset; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags) |
| 461 | { |
Cong Wang | 482fce9 | 2011-11-27 13:27:00 +0800 | [diff] [blame] | 462 | kunmap_atomic(buffer); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 463 | local_irq_restore(*flags); |
| 464 | } |
| 465 | |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 466 | static void sdhci_adma_write_desc(struct sdhci_host *host, void *desc, |
| 467 | dma_addr_t addr, int len, unsigned cmd) |
Ben Dooks | 118cd17 | 2010-03-05 13:43:26 -0800 | [diff] [blame] | 468 | { |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 469 | struct sdhci_adma2_64_desc *dma_desc = desc; |
Ben Dooks | 118cd17 | 2010-03-05 13:43:26 -0800 | [diff] [blame] | 470 | |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 471 | /* 32-bit and 64-bit descriptors have these members in same position */ |
Adrian Hunter | 0545230 | 2014-11-04 12:42:45 +0200 | [diff] [blame] | 472 | dma_desc->cmd = cpu_to_le16(cmd); |
| 473 | dma_desc->len = cpu_to_le16(len); |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 474 | dma_desc->addr_lo = cpu_to_le32((u32)addr); |
| 475 | |
| 476 | if (host->flags & SDHCI_USE_64_BIT_DMA) |
| 477 | dma_desc->addr_hi = cpu_to_le32((u64)addr >> 32); |
Ben Dooks | 118cd17 | 2010-03-05 13:43:26 -0800 | [diff] [blame] | 478 | } |
| 479 | |
Adrian Hunter | b5ffa67 | 2014-11-04 12:42:40 +0200 | [diff] [blame] | 480 | static void sdhci_adma_mark_end(void *desc) |
| 481 | { |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 482 | struct sdhci_adma2_64_desc *dma_desc = desc; |
Adrian Hunter | b5ffa67 | 2014-11-04 12:42:40 +0200 | [diff] [blame] | 483 | |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 484 | /* 32-bit and 64-bit descriptors have 'cmd' in same position */ |
Adrian Hunter | 0545230 | 2014-11-04 12:42:45 +0200 | [diff] [blame] | 485 | dma_desc->cmd |= cpu_to_le16(ADMA2_END); |
Adrian Hunter | b5ffa67 | 2014-11-04 12:42:40 +0200 | [diff] [blame] | 486 | } |
| 487 | |
Russell King | 60c6476 | 2016-01-26 13:40:22 +0000 | [diff] [blame] | 488 | static void sdhci_adma_table_pre(struct sdhci_host *host, |
| 489 | struct mmc_data *data, int sg_count) |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 490 | { |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 491 | struct scatterlist *sg; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 492 | unsigned long flags; |
Russell King | acc3ad1 | 2016-01-26 13:40:00 +0000 | [diff] [blame] | 493 | dma_addr_t addr, align_addr; |
| 494 | void *desc, *align; |
| 495 | char *buffer; |
| 496 | int len, offset, i; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 497 | |
| 498 | /* |
| 499 | * The spec does not specify endianness of descriptor table. |
| 500 | * We currently guess that it is LE. |
| 501 | */ |
| 502 | |
Russell King | 60c6476 | 2016-01-26 13:40:22 +0000 | [diff] [blame] | 503 | host->sg_count = sg_count; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 504 | |
Adrian Hunter | 4efaa6f | 2014-11-04 12:42:39 +0200 | [diff] [blame] | 505 | desc = host->adma_table; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 506 | align = host->align_buffer; |
| 507 | |
| 508 | align_addr = host->align_addr; |
| 509 | |
| 510 | for_each_sg(data->sg, sg, host->sg_count, i) { |
| 511 | addr = sg_dma_address(sg); |
| 512 | len = sg_dma_len(sg); |
| 513 | |
| 514 | /* |
Russell King | acc3ad1 | 2016-01-26 13:40:00 +0000 | [diff] [blame] | 515 | * The SDHCI specification states that ADMA addresses must |
| 516 | * be 32-bit aligned. If they aren't, then we use a bounce |
| 517 | * buffer for the (up to three) bytes that screw up the |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 518 | * alignment. |
| 519 | */ |
Adrian Hunter | 04a5ae6 | 2015-11-26 14:00:49 +0200 | [diff] [blame] | 520 | offset = (SDHCI_ADMA2_ALIGN - (addr & SDHCI_ADMA2_MASK)) & |
| 521 | SDHCI_ADMA2_MASK; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 522 | if (offset) { |
| 523 | if (data->flags & MMC_DATA_WRITE) { |
| 524 | buffer = sdhci_kmap_atomic(sg, &flags); |
| 525 | memcpy(align, buffer, offset); |
| 526 | sdhci_kunmap_atomic(buffer, &flags); |
| 527 | } |
| 528 | |
Ben Dooks | 118cd17 | 2010-03-05 13:43:26 -0800 | [diff] [blame] | 529 | /* tran, valid */ |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 530 | sdhci_adma_write_desc(host, desc, align_addr, offset, |
Adrian Hunter | 739d46d | 2014-11-04 12:42:44 +0200 | [diff] [blame] | 531 | ADMA2_TRAN_VALID); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 532 | |
| 533 | BUG_ON(offset > 65536); |
| 534 | |
Adrian Hunter | 04a5ae6 | 2015-11-26 14:00:49 +0200 | [diff] [blame] | 535 | align += SDHCI_ADMA2_ALIGN; |
| 536 | align_addr += SDHCI_ADMA2_ALIGN; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 537 | |
Adrian Hunter | 76fe379 | 2014-11-04 12:42:42 +0200 | [diff] [blame] | 538 | desc += host->desc_sz; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 539 | |
| 540 | addr += offset; |
| 541 | len -= offset; |
| 542 | } |
| 543 | |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 544 | BUG_ON(len > 65536); |
| 545 | |
Adrian Hunter | 347ea32 | 2015-11-26 14:00:48 +0200 | [diff] [blame] | 546 | if (len) { |
| 547 | /* tran, valid */ |
| 548 | sdhci_adma_write_desc(host, desc, addr, len, |
| 549 | ADMA2_TRAN_VALID); |
| 550 | desc += host->desc_sz; |
| 551 | } |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 552 | |
| 553 | /* |
| 554 | * If this triggers then we have a calculation bug |
| 555 | * somewhere. :/ |
| 556 | */ |
Adrian Hunter | 76fe379 | 2014-11-04 12:42:42 +0200 | [diff] [blame] | 557 | WARN_ON((desc - host->adma_table) >= host->adma_table_sz); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 558 | } |
| 559 | |
Thomas Abraham | 70764a9 | 2010-05-26 14:42:04 -0700 | [diff] [blame] | 560 | if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) { |
Russell King | acc3ad1 | 2016-01-26 13:40:00 +0000 | [diff] [blame] | 561 | /* Mark the last descriptor as the terminating descriptor */ |
Adrian Hunter | 4efaa6f | 2014-11-04 12:42:39 +0200 | [diff] [blame] | 562 | if (desc != host->adma_table) { |
Adrian Hunter | 76fe379 | 2014-11-04 12:42:42 +0200 | [diff] [blame] | 563 | desc -= host->desc_sz; |
Adrian Hunter | b5ffa67 | 2014-11-04 12:42:40 +0200 | [diff] [blame] | 564 | sdhci_adma_mark_end(desc); |
Thomas Abraham | 70764a9 | 2010-05-26 14:42:04 -0700 | [diff] [blame] | 565 | } |
| 566 | } else { |
Russell King | acc3ad1 | 2016-01-26 13:40:00 +0000 | [diff] [blame] | 567 | /* Add a terminating entry - nop, end, valid */ |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 568 | sdhci_adma_write_desc(host, desc, 0, 0, ADMA2_NOP_END_VALID); |
Thomas Abraham | 70764a9 | 2010-05-26 14:42:04 -0700 | [diff] [blame] | 569 | } |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | static void sdhci_adma_table_post(struct sdhci_host *host, |
| 573 | struct mmc_data *data) |
| 574 | { |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 575 | struct scatterlist *sg; |
| 576 | int i, size; |
Adrian Hunter | 1c3d5f6 | 2014-11-04 12:42:41 +0200 | [diff] [blame] | 577 | void *align; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 578 | char *buffer; |
| 579 | unsigned long flags; |
| 580 | |
Russell King | 47fa961 | 2016-01-26 13:40:06 +0000 | [diff] [blame] | 581 | if (data->flags & MMC_DATA_READ) { |
| 582 | bool has_unaligned = false; |
Russell King | de0b65a | 2014-04-25 12:58:29 +0100 | [diff] [blame] | 583 | |
Russell King | 47fa961 | 2016-01-26 13:40:06 +0000 | [diff] [blame] | 584 | /* Do a quick scan of the SG list for any unaligned mappings */ |
| 585 | for_each_sg(data->sg, sg, host->sg_count, i) |
Adrian Hunter | 04a5ae6 | 2015-11-26 14:00:49 +0200 | [diff] [blame] | 586 | if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) { |
Russell King | 47fa961 | 2016-01-26 13:40:06 +0000 | [diff] [blame] | 587 | has_unaligned = true; |
| 588 | break; |
| 589 | } |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 590 | |
Russell King | 47fa961 | 2016-01-26 13:40:06 +0000 | [diff] [blame] | 591 | if (has_unaligned) { |
| 592 | dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg, |
Russell King | f55c98f | 2016-01-26 13:40:11 +0000 | [diff] [blame] | 593 | data->sg_len, DMA_FROM_DEVICE); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 594 | |
Russell King | 47fa961 | 2016-01-26 13:40:06 +0000 | [diff] [blame] | 595 | align = host->align_buffer; |
| 596 | |
| 597 | for_each_sg(data->sg, sg, host->sg_count, i) { |
| 598 | if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) { |
| 599 | size = SDHCI_ADMA2_ALIGN - |
| 600 | (sg_dma_address(sg) & SDHCI_ADMA2_MASK); |
| 601 | |
| 602 | buffer = sdhci_kmap_atomic(sg, &flags); |
| 603 | memcpy(buffer, align, size); |
| 604 | sdhci_kunmap_atomic(buffer, &flags); |
| 605 | |
| 606 | align += SDHCI_ADMA2_ALIGN; |
| 607 | } |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 608 | } |
| 609 | } |
| 610 | } |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 611 | } |
| 612 | |
Andrei Warkentin | a3c7778 | 2011-04-11 16:13:42 -0500 | [diff] [blame] | 613 | static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 614 | { |
Pierre Ossman | 1c8cde9 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 615 | u8 count; |
Andrei Warkentin | a3c7778 | 2011-04-11 16:13:42 -0500 | [diff] [blame] | 616 | struct mmc_data *data = cmd->data; |
Pierre Ossman | 1c8cde9 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 617 | unsigned target_timeout, current_timeout; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 618 | |
Pierre Ossman | ee53ab5 | 2008-07-05 00:25:15 +0200 | [diff] [blame] | 619 | /* |
| 620 | * If the host controller provides us with an incorrect timeout |
| 621 | * value, just skip the check and use 0xE. The hardware may take |
| 622 | * longer to time out, but that's much better than having a too-short |
| 623 | * timeout value. |
| 624 | */ |
Pierre Ossman | 11a2f1b | 2009-06-21 20:59:33 +0200 | [diff] [blame] | 625 | if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL) |
Pierre Ossman | ee53ab5 | 2008-07-05 00:25:15 +0200 | [diff] [blame] | 626 | return 0xE; |
Pierre Ossman | e538fbe | 2007-08-12 16:46:32 +0200 | [diff] [blame] | 627 | |
Andrei Warkentin | a3c7778 | 2011-04-11 16:13:42 -0500 | [diff] [blame] | 628 | /* Unspecified timeout, assume max */ |
Ulf Hansson | 1d4d774 | 2014-01-08 15:06:08 +0100 | [diff] [blame] | 629 | if (!data && !cmd->busy_timeout) |
Andrei Warkentin | a3c7778 | 2011-04-11 16:13:42 -0500 | [diff] [blame] | 630 | return 0xE; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 631 | |
Andrei Warkentin | a3c7778 | 2011-04-11 16:13:42 -0500 | [diff] [blame] | 632 | /* timeout in us */ |
| 633 | if (!data) |
Ulf Hansson | 1d4d774 | 2014-01-08 15:06:08 +0100 | [diff] [blame] | 634 | target_timeout = cmd->busy_timeout * 1000; |
Andy Shevchenko | 78a2ca2 | 2011-08-03 18:35:59 +0300 | [diff] [blame] | 635 | else { |
Russell King | fafcfda | 2016-01-26 13:40:58 +0000 | [diff] [blame] | 636 | target_timeout = DIV_ROUND_UP(data->timeout_ns, 1000); |
Russell King | 7f05538 | 2016-01-26 13:41:04 +0000 | [diff] [blame] | 637 | if (host->clock && data->timeout_clks) { |
| 638 | unsigned long long val; |
| 639 | |
| 640 | /* |
| 641 | * data->timeout_clks is in units of clock cycles. |
| 642 | * host->clock is in Hz. target_timeout is in us. |
| 643 | * Hence, us = 1000000 * cycles / Hz. Round up. |
| 644 | */ |
| 645 | val = 1000000 * data->timeout_clks; |
| 646 | if (do_div(val, host->clock)) |
| 647 | target_timeout++; |
| 648 | target_timeout += val; |
| 649 | } |
Andy Shevchenko | 78a2ca2 | 2011-08-03 18:35:59 +0300 | [diff] [blame] | 650 | } |
Anton Vorontsov | 81b3980 | 2009-09-22 16:45:13 -0700 | [diff] [blame] | 651 | |
Pierre Ossman | 1c8cde9 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 652 | /* |
| 653 | * Figure out needed cycles. |
| 654 | * We do this in steps in order to fit inside a 32 bit int. |
| 655 | * The first step is the minimum timeout, which will have a |
| 656 | * minimum resolution of 6 bits: |
| 657 | * (1) 2^13*1000 > 2^22, |
| 658 | * (2) host->timeout_clk < 2^16 |
| 659 | * => |
| 660 | * (1) / (2) > 2^6 |
| 661 | */ |
| 662 | count = 0; |
| 663 | current_timeout = (1 << 13) * 1000 / host->timeout_clk; |
| 664 | while (current_timeout < target_timeout) { |
| 665 | count++; |
| 666 | current_timeout <<= 1; |
| 667 | if (count >= 0xF) |
| 668 | break; |
| 669 | } |
| 670 | |
| 671 | if (count >= 0xF) { |
Chris Ball | 09eeff5 | 2012-06-01 10:39:45 -0400 | [diff] [blame] | 672 | DBG("%s: Too large timeout 0x%x requested for CMD%d!\n", |
| 673 | mmc_hostname(host->mmc), count, cmd->opcode); |
Pierre Ossman | 1c8cde9 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 674 | count = 0xE; |
| 675 | } |
| 676 | |
Pierre Ossman | ee53ab5 | 2008-07-05 00:25:15 +0200 | [diff] [blame] | 677 | return count; |
| 678 | } |
| 679 | |
Anton Vorontsov | 6aa943a | 2009-03-17 00:13:50 +0300 | [diff] [blame] | 680 | static void sdhci_set_transfer_irqs(struct sdhci_host *host) |
| 681 | { |
| 682 | u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL; |
| 683 | u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR; |
| 684 | |
| 685 | if (host->flags & SDHCI_REQ_USE_DMA) |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 686 | host->ier = (host->ier & ~pio_irqs) | dma_irqs; |
Anton Vorontsov | 6aa943a | 2009-03-17 00:13:50 +0300 | [diff] [blame] | 687 | else |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 688 | host->ier = (host->ier & ~dma_irqs) | pio_irqs; |
| 689 | |
| 690 | sdhci_writel(host, host->ier, SDHCI_INT_ENABLE); |
| 691 | sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE); |
Anton Vorontsov | 6aa943a | 2009-03-17 00:13:50 +0300 | [diff] [blame] | 692 | } |
| 693 | |
Aisheng Dong | b45e668 | 2014-08-27 15:26:29 +0800 | [diff] [blame] | 694 | static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd) |
Pierre Ossman | ee53ab5 | 2008-07-05 00:25:15 +0200 | [diff] [blame] | 695 | { |
| 696 | u8 count; |
Aisheng Dong | b45e668 | 2014-08-27 15:26:29 +0800 | [diff] [blame] | 697 | |
| 698 | if (host->ops->set_timeout) { |
| 699 | host->ops->set_timeout(host, cmd); |
| 700 | } else { |
| 701 | count = sdhci_calc_timeout(host, cmd); |
| 702 | sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL); |
| 703 | } |
| 704 | } |
| 705 | |
| 706 | static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd) |
| 707 | { |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 708 | u8 ctrl; |
Andrei Warkentin | a3c7778 | 2011-04-11 16:13:42 -0500 | [diff] [blame] | 709 | struct mmc_data *data = cmd->data; |
Pierre Ossman | ee53ab5 | 2008-07-05 00:25:15 +0200 | [diff] [blame] | 710 | |
| 711 | WARN_ON(host->data); |
| 712 | |
Aisheng Dong | b45e668 | 2014-08-27 15:26:29 +0800 | [diff] [blame] | 713 | if (data || (cmd->flags & MMC_RSP_BUSY)) |
| 714 | sdhci_set_timeout(host, cmd); |
Andrei Warkentin | a3c7778 | 2011-04-11 16:13:42 -0500 | [diff] [blame] | 715 | |
| 716 | if (!data) |
Pierre Ossman | ee53ab5 | 2008-07-05 00:25:15 +0200 | [diff] [blame] | 717 | return; |
| 718 | |
| 719 | /* Sanity checks */ |
| 720 | BUG_ON(data->blksz * data->blocks > 524288); |
| 721 | BUG_ON(data->blksz > host->mmc->max_blk_size); |
| 722 | BUG_ON(data->blocks > 65535); |
| 723 | |
| 724 | host->data = data; |
| 725 | host->data_early = 0; |
Mikko Vinni | f6a03cb | 2011-04-12 09:36:18 -0400 | [diff] [blame] | 726 | host->data->bytes_xfered = 0; |
Pierre Ossman | ee53ab5 | 2008-07-05 00:25:15 +0200 | [diff] [blame] | 727 | |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 728 | if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) |
Pierre Ossman | c9fddbc | 2007-12-02 19:52:11 +0100 | [diff] [blame] | 729 | host->flags |= SDHCI_REQ_USE_DMA; |
| 730 | |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 731 | /* |
| 732 | * FIXME: This doesn't account for merging when mapping the |
| 733 | * scatterlist. |
Russell King | df95392 | 2016-01-26 13:41:14 +0000 | [diff] [blame^] | 734 | * |
| 735 | * The assumption here being that alignment and lengths are |
| 736 | * the same after DMA mapping to device address space. |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 737 | */ |
| 738 | if (host->flags & SDHCI_REQ_USE_DMA) { |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 739 | struct scatterlist *sg; |
Russell King | df95392 | 2016-01-26 13:41:14 +0000 | [diff] [blame^] | 740 | unsigned int length_mask, offset_mask; |
Russell King | a0eaf0f | 2016-01-26 13:41:09 +0000 | [diff] [blame] | 741 | int i; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 742 | |
Russell King | a0eaf0f | 2016-01-26 13:41:09 +0000 | [diff] [blame] | 743 | length_mask = 0; |
Russell King | df95392 | 2016-01-26 13:41:14 +0000 | [diff] [blame^] | 744 | offset_mask = 0; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 745 | if (host->flags & SDHCI_USE_ADMA) { |
Russell King | df95392 | 2016-01-26 13:41:14 +0000 | [diff] [blame^] | 746 | if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE) { |
Russell King | a0eaf0f | 2016-01-26 13:41:09 +0000 | [diff] [blame] | 747 | length_mask = 3; |
Russell King | df95392 | 2016-01-26 13:41:14 +0000 | [diff] [blame^] | 748 | /* |
| 749 | * As we use up to 3 byte chunks to work |
| 750 | * around alignment problems, we need to |
| 751 | * check the offset as well. |
| 752 | */ |
| 753 | offset_mask = 3; |
| 754 | } |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 755 | } else { |
| 756 | if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE) |
Russell King | a0eaf0f | 2016-01-26 13:41:09 +0000 | [diff] [blame] | 757 | length_mask = 3; |
Russell King | df95392 | 2016-01-26 13:41:14 +0000 | [diff] [blame^] | 758 | if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) |
| 759 | offset_mask = 3; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 760 | } |
| 761 | |
Russell King | df95392 | 2016-01-26 13:41:14 +0000 | [diff] [blame^] | 762 | if (unlikely(length_mask | offset_mask)) { |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 763 | for_each_sg(data->sg, sg, data->sg_len, i) { |
Russell King | a0eaf0f | 2016-01-26 13:41:09 +0000 | [diff] [blame] | 764 | if (sg->length & length_mask) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 765 | DBG("Reverting to PIO because of transfer size (%d)\n", |
Russell King | a0eaf0f | 2016-01-26 13:41:09 +0000 | [diff] [blame] | 766 | sg->length); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 767 | host->flags &= ~SDHCI_REQ_USE_DMA; |
| 768 | break; |
| 769 | } |
Russell King | a0eaf0f | 2016-01-26 13:41:09 +0000 | [diff] [blame] | 770 | if (sg->offset & offset_mask) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 771 | DBG("Reverting to PIO because of bad alignment\n"); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 772 | host->flags &= ~SDHCI_REQ_USE_DMA; |
| 773 | break; |
| 774 | } |
| 775 | } |
| 776 | } |
| 777 | } |
| 778 | |
Pierre Ossman | 8f1934c | 2008-06-30 21:15:49 +0200 | [diff] [blame] | 779 | if (host->flags & SDHCI_REQ_USE_DMA) { |
Russell King | c0999b7 | 2016-01-26 13:40:27 +0000 | [diff] [blame] | 780 | int sg_cnt = sdhci_pre_dma_transfer(host, data, COOKIE_MAPPED); |
Pierre Ossman | 8f1934c | 2008-06-30 21:15:49 +0200 | [diff] [blame] | 781 | |
Russell King | 60c6476 | 2016-01-26 13:40:22 +0000 | [diff] [blame] | 782 | if (sg_cnt <= 0) { |
| 783 | /* |
| 784 | * This only happens when someone fed |
| 785 | * us an invalid request. |
| 786 | */ |
| 787 | WARN_ON(1); |
| 788 | host->flags &= ~SDHCI_REQ_USE_DMA; |
| 789 | } else if (host->flags & SDHCI_USE_ADMA) { |
| 790 | sdhci_adma_table_pre(host, data, sg_cnt); |
| 791 | |
| 792 | sdhci_writel(host, host->adma_addr, SDHCI_ADMA_ADDRESS); |
| 793 | if (host->flags & SDHCI_USE_64_BIT_DMA) |
| 794 | sdhci_writel(host, |
| 795 | (u64)host->adma_addr >> 32, |
| 796 | SDHCI_ADMA_ADDRESS_HI); |
| 797 | } else { |
| 798 | WARN_ON(sg_cnt != 1); |
| 799 | sdhci_writel(host, sg_dma_address(data->sg), |
| 800 | SDHCI_DMA_ADDRESS); |
Pierre Ossman | 8f1934c | 2008-06-30 21:15:49 +0200 | [diff] [blame] | 801 | } |
| 802 | } |
| 803 | |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 804 | /* |
| 805 | * Always adjust the DMA selection as some controllers |
| 806 | * (e.g. JMicron) can't do PIO properly when the selection |
| 807 | * is ADMA. |
| 808 | */ |
| 809 | if (host->version >= SDHCI_SPEC_200) { |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 810 | ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 811 | ctrl &= ~SDHCI_CTRL_DMA_MASK; |
| 812 | if ((host->flags & SDHCI_REQ_USE_DMA) && |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 813 | (host->flags & SDHCI_USE_ADMA)) { |
| 814 | if (host->flags & SDHCI_USE_64_BIT_DMA) |
| 815 | ctrl |= SDHCI_CTRL_ADMA64; |
| 816 | else |
| 817 | ctrl |= SDHCI_CTRL_ADMA32; |
| 818 | } else { |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 819 | ctrl |= SDHCI_CTRL_SDMA; |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 820 | } |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 821 | sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); |
Pierre Ossman | c9fddbc | 2007-12-02 19:52:11 +0100 | [diff] [blame] | 822 | } |
| 823 | |
Pierre Ossman | 8f1934c | 2008-06-30 21:15:49 +0200 | [diff] [blame] | 824 | if (!(host->flags & SDHCI_REQ_USE_DMA)) { |
Sebastian Andrzej Siewior | da60a91 | 2009-06-18 09:33:32 +0200 | [diff] [blame] | 825 | int flags; |
| 826 | |
| 827 | flags = SG_MITER_ATOMIC; |
| 828 | if (host->data->flags & MMC_DATA_READ) |
| 829 | flags |= SG_MITER_TO_SG; |
| 830 | else |
| 831 | flags |= SG_MITER_FROM_SG; |
| 832 | sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags); |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 833 | host->blocks = data->blocks; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 834 | } |
Pierre Ossman | c7fa996 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 835 | |
Anton Vorontsov | 6aa943a | 2009-03-17 00:13:50 +0300 | [diff] [blame] | 836 | sdhci_set_transfer_irqs(host); |
| 837 | |
Mikko Vinni | f6a03cb | 2011-04-12 09:36:18 -0400 | [diff] [blame] | 838 | /* Set the DMA boundary value and block size */ |
| 839 | sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG, |
| 840 | data->blksz), SDHCI_BLOCK_SIZE); |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 841 | sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT); |
Pierre Ossman | c7fa996 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 842 | } |
| 843 | |
| 844 | static void sdhci_set_transfer_mode(struct sdhci_host *host, |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 845 | struct mmc_command *cmd) |
Pierre Ossman | c7fa996 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 846 | { |
Vincent Yang | d3fc5d7 | 2015-01-20 16:05:17 +0800 | [diff] [blame] | 847 | u16 mode = 0; |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 848 | struct mmc_data *data = cmd->data; |
Pierre Ossman | c7fa996 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 849 | |
Dong Aisheng | 2b558c1 | 2013-10-30 22:09:48 +0800 | [diff] [blame] | 850 | if (data == NULL) { |
Vincent Wan | 9b8ffea | 2014-11-05 14:09:00 +0800 | [diff] [blame] | 851 | if (host->quirks2 & |
| 852 | SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD) { |
| 853 | sdhci_writew(host, 0x0, SDHCI_TRANSFER_MODE); |
| 854 | } else { |
Dong Aisheng | 2b558c1 | 2013-10-30 22:09:48 +0800 | [diff] [blame] | 855 | /* clear Auto CMD settings for no data CMDs */ |
Vincent Wan | 9b8ffea | 2014-11-05 14:09:00 +0800 | [diff] [blame] | 856 | mode = sdhci_readw(host, SDHCI_TRANSFER_MODE); |
| 857 | sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 | |
Dong Aisheng | 2b558c1 | 2013-10-30 22:09:48 +0800 | [diff] [blame] | 858 | SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE); |
Vincent Wan | 9b8ffea | 2014-11-05 14:09:00 +0800 | [diff] [blame] | 859 | } |
Pierre Ossman | c7fa996 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 860 | return; |
Dong Aisheng | 2b558c1 | 2013-10-30 22:09:48 +0800 | [diff] [blame] | 861 | } |
Pierre Ossman | c7fa996 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 862 | |
Pierre Ossman | e538fbe | 2007-08-12 16:46:32 +0200 | [diff] [blame] | 863 | WARN_ON(!host->data); |
| 864 | |
Vincent Yang | d3fc5d7 | 2015-01-20 16:05:17 +0800 | [diff] [blame] | 865 | if (!(host->quirks2 & SDHCI_QUIRK2_SUPPORT_SINGLE)) |
| 866 | mode = SDHCI_TRNS_BLK_CNT_EN; |
| 867 | |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 868 | if (mmc_op_multi(cmd->opcode) || data->blocks > 1) { |
Vincent Yang | d3fc5d7 | 2015-01-20 16:05:17 +0800 | [diff] [blame] | 869 | mode = SDHCI_TRNS_BLK_CNT_EN | SDHCI_TRNS_MULTI; |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 870 | /* |
| 871 | * If we are sending CMD23, CMD12 never gets sent |
| 872 | * on successful completion (so no Auto-CMD12). |
| 873 | */ |
Corneliu Doban | 85cc1c3 | 2015-02-09 16:06:29 -0800 | [diff] [blame] | 874 | if (!host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD12) && |
| 875 | (cmd->opcode != SD_IO_RW_EXTENDED)) |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 876 | mode |= SDHCI_TRNS_AUTO_CMD12; |
Andrei Warkentin | 8edf6371 | 2011-05-23 15:06:39 -0500 | [diff] [blame] | 877 | else if (host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) { |
| 878 | mode |= SDHCI_TRNS_AUTO_CMD23; |
| 879 | sdhci_writel(host, host->mrq->sbc->arg, SDHCI_ARGUMENT2); |
| 880 | } |
Jerry Huang | c4512f7 | 2010-08-10 18:01:59 -0700 | [diff] [blame] | 881 | } |
Andrei Warkentin | 8edf6371 | 2011-05-23 15:06:39 -0500 | [diff] [blame] | 882 | |
Pierre Ossman | c7fa996 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 883 | if (data->flags & MMC_DATA_READ) |
| 884 | mode |= SDHCI_TRNS_READ; |
Pierre Ossman | c9fddbc | 2007-12-02 19:52:11 +0100 | [diff] [blame] | 885 | if (host->flags & SDHCI_REQ_USE_DMA) |
Pierre Ossman | c7fa996 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 886 | mode |= SDHCI_TRNS_DMA; |
| 887 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 888 | sdhci_writew(host, mode, SDHCI_TRANSFER_MODE); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 889 | } |
| 890 | |
| 891 | static void sdhci_finish_data(struct sdhci_host *host) |
| 892 | { |
| 893 | struct mmc_data *data; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 894 | |
| 895 | BUG_ON(!host->data); |
| 896 | |
| 897 | data = host->data; |
| 898 | host->data = NULL; |
| 899 | |
Russell King | add8913 | 2016-01-26 13:40:42 +0000 | [diff] [blame] | 900 | if ((host->flags & (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA)) == |
| 901 | (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA)) |
| 902 | sdhci_adma_table_post(host, data); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 903 | |
| 904 | /* |
Pierre Ossman | c9b74c5 | 2008-04-18 20:41:49 +0200 | [diff] [blame] | 905 | * The specification states that the block count register must |
| 906 | * be updated, but it does not specify at what point in the |
| 907 | * data flow. That makes the register entirely useless to read |
| 908 | * back so we have to assume that nothing made it to the card |
| 909 | * in the event of an error. |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 910 | */ |
Pierre Ossman | c9b74c5 | 2008-04-18 20:41:49 +0200 | [diff] [blame] | 911 | if (data->error) |
| 912 | data->bytes_xfered = 0; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 913 | else |
Pierre Ossman | c9b74c5 | 2008-04-18 20:41:49 +0200 | [diff] [blame] | 914 | data->bytes_xfered = data->blksz * data->blocks; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 915 | |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 916 | /* |
| 917 | * Need to send CMD12 if - |
| 918 | * a) open-ended multiblock transfer (no CMD23) |
| 919 | * b) error in multiblock transfer |
| 920 | */ |
| 921 | if (data->stop && |
| 922 | (data->error || |
| 923 | !host->mrq->sbc)) { |
| 924 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 925 | /* |
| 926 | * The controller needs a reset of internal state machines |
| 927 | * upon error conditions. |
| 928 | */ |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 929 | if (data->error) { |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 930 | sdhci_do_reset(host, SDHCI_RESET_CMD); |
| 931 | sdhci_do_reset(host, SDHCI_RESET_DATA); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | sdhci_send_command(host, data->stop); |
| 935 | } else |
| 936 | tasklet_schedule(&host->finish_tasklet); |
| 937 | } |
| 938 | |
Dong Aisheng | c0e55129 | 2013-09-13 19:11:31 +0800 | [diff] [blame] | 939 | void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 940 | { |
| 941 | int flags; |
Pierre Ossman | fd2208d | 2006-06-30 02:22:28 -0700 | [diff] [blame] | 942 | u32 mask; |
Pierre Ossman | 7cb2c76 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 943 | unsigned long timeout; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 944 | |
| 945 | WARN_ON(host->cmd); |
| 946 | |
Russell King | 9677620 | 2016-01-26 13:39:34 +0000 | [diff] [blame] | 947 | /* Initially, a command has no error */ |
| 948 | cmd->error = 0; |
| 949 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 950 | /* Wait max 10 ms */ |
Pierre Ossman | 7cb2c76 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 951 | timeout = 10; |
Pierre Ossman | fd2208d | 2006-06-30 02:22:28 -0700 | [diff] [blame] | 952 | |
| 953 | mask = SDHCI_CMD_INHIBIT; |
| 954 | if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY)) |
| 955 | mask |= SDHCI_DATA_INHIBIT; |
| 956 | |
| 957 | /* We shouldn't wait for data inihibit for stop commands, even |
| 958 | though they might use busy signaling */ |
| 959 | if (host->mrq->data && (cmd == host->mrq->data->stop)) |
| 960 | mask &= ~SDHCI_DATA_INHIBIT; |
| 961 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 962 | while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) { |
Pierre Ossman | 7cb2c76 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 963 | if (timeout == 0) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 964 | pr_err("%s: Controller never released inhibit bit(s).\n", |
| 965 | mmc_hostname(host->mmc)); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 966 | sdhci_dumpregs(host); |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 967 | cmd->error = -EIO; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 968 | tasklet_schedule(&host->finish_tasklet); |
| 969 | return; |
| 970 | } |
Pierre Ossman | 7cb2c76 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 971 | timeout--; |
| 972 | mdelay(1); |
| 973 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 974 | |
Adrian Hunter | 3e1a689 | 2013-11-14 10:16:20 +0200 | [diff] [blame] | 975 | timeout = jiffies; |
Ulf Hansson | 1d4d774 | 2014-01-08 15:06:08 +0100 | [diff] [blame] | 976 | if (!cmd->data && cmd->busy_timeout > 9000) |
| 977 | timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ; |
Adrian Hunter | 3e1a689 | 2013-11-14 10:16:20 +0200 | [diff] [blame] | 978 | else |
| 979 | timeout += 10 * HZ; |
| 980 | mod_timer(&host->timer, timeout); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 981 | |
| 982 | host->cmd = cmd; |
Chanho Min | e99783a | 2014-08-30 12:40:40 +0900 | [diff] [blame] | 983 | host->busy_handle = 0; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 984 | |
Andrei Warkentin | a3c7778 | 2011-04-11 16:13:42 -0500 | [diff] [blame] | 985 | sdhci_prepare_data(host, cmd); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 986 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 987 | sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 988 | |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 989 | sdhci_set_transfer_mode(host, cmd); |
Pierre Ossman | c7fa996 | 2006-06-30 02:22:25 -0700 | [diff] [blame] | 990 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 991 | if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) { |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 992 | pr_err("%s: Unsupported response type!\n", |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 993 | mmc_hostname(host->mmc)); |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 994 | cmd->error = -EINVAL; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 995 | tasklet_schedule(&host->finish_tasklet); |
| 996 | return; |
| 997 | } |
| 998 | |
| 999 | if (!(cmd->flags & MMC_RSP_PRESENT)) |
| 1000 | flags = SDHCI_CMD_RESP_NONE; |
| 1001 | else if (cmd->flags & MMC_RSP_136) |
| 1002 | flags = SDHCI_CMD_RESP_LONG; |
| 1003 | else if (cmd->flags & MMC_RSP_BUSY) |
| 1004 | flags = SDHCI_CMD_RESP_SHORT_BUSY; |
| 1005 | else |
| 1006 | flags = SDHCI_CMD_RESP_SHORT; |
| 1007 | |
| 1008 | if (cmd->flags & MMC_RSP_CRC) |
| 1009 | flags |= SDHCI_CMD_CRC; |
| 1010 | if (cmd->flags & MMC_RSP_OPCODE) |
| 1011 | flags |= SDHCI_CMD_INDEX; |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1012 | |
| 1013 | /* CMD19 is special in that the Data Present Select should be set */ |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 1014 | if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK || |
| 1015 | cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1016 | flags |= SDHCI_CMD_DATA; |
| 1017 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1018 | sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1019 | } |
Dong Aisheng | c0e55129 | 2013-09-13 19:11:31 +0800 | [diff] [blame] | 1020 | EXPORT_SYMBOL_GPL(sdhci_send_command); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1021 | |
| 1022 | static void sdhci_finish_command(struct sdhci_host *host) |
| 1023 | { |
| 1024 | int i; |
| 1025 | |
| 1026 | BUG_ON(host->cmd == NULL); |
| 1027 | |
| 1028 | if (host->cmd->flags & MMC_RSP_PRESENT) { |
| 1029 | if (host->cmd->flags & MMC_RSP_136) { |
| 1030 | /* CRC is stripped so we need to do some shifting. */ |
| 1031 | for (i = 0;i < 4;i++) { |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1032 | host->cmd->resp[i] = sdhci_readl(host, |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1033 | SDHCI_RESPONSE + (3-i)*4) << 8; |
| 1034 | if (i != 3) |
| 1035 | host->cmd->resp[i] |= |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1036 | sdhci_readb(host, |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1037 | SDHCI_RESPONSE + (3-i)*4-1); |
| 1038 | } |
| 1039 | } else { |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1040 | host->cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1041 | } |
| 1042 | } |
| 1043 | |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 1044 | /* Finished CMD23, now send actual command. */ |
| 1045 | if (host->cmd == host->mrq->sbc) { |
| 1046 | host->cmd = NULL; |
| 1047 | sdhci_send_command(host, host->mrq->cmd); |
| 1048 | } else { |
Pierre Ossman | e538fbe | 2007-08-12 16:46:32 +0200 | [diff] [blame] | 1049 | |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 1050 | /* Processed actual command. */ |
| 1051 | if (host->data && host->data_early) |
| 1052 | sdhci_finish_data(host); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1053 | |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 1054 | if (!host->cmd->data) |
| 1055 | tasklet_schedule(&host->finish_tasklet); |
| 1056 | |
| 1057 | host->cmd = NULL; |
| 1058 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1059 | } |
| 1060 | |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1061 | static u16 sdhci_get_preset_value(struct sdhci_host *host) |
| 1062 | { |
Russell King | d975f12 | 2014-04-25 12:59:31 +0100 | [diff] [blame] | 1063 | u16 preset = 0; |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1064 | |
Russell King | d975f12 | 2014-04-25 12:59:31 +0100 | [diff] [blame] | 1065 | switch (host->timing) { |
| 1066 | case MMC_TIMING_UHS_SDR12: |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1067 | preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12); |
| 1068 | break; |
Russell King | d975f12 | 2014-04-25 12:59:31 +0100 | [diff] [blame] | 1069 | case MMC_TIMING_UHS_SDR25: |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1070 | preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25); |
| 1071 | break; |
Russell King | d975f12 | 2014-04-25 12:59:31 +0100 | [diff] [blame] | 1072 | case MMC_TIMING_UHS_SDR50: |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1073 | preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50); |
| 1074 | break; |
Russell King | d975f12 | 2014-04-25 12:59:31 +0100 | [diff] [blame] | 1075 | case MMC_TIMING_UHS_SDR104: |
| 1076 | case MMC_TIMING_MMC_HS200: |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1077 | preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104); |
| 1078 | break; |
Russell King | d975f12 | 2014-04-25 12:59:31 +0100 | [diff] [blame] | 1079 | case MMC_TIMING_UHS_DDR50: |
Jisheng Zhang | 0dafa60 | 2015-08-18 16:21:39 +0800 | [diff] [blame] | 1080 | case MMC_TIMING_MMC_DDR52: |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1081 | preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50); |
| 1082 | break; |
Adrian Hunter | e9fb05d | 2014-11-06 15:19:06 +0200 | [diff] [blame] | 1083 | case MMC_TIMING_MMC_HS400: |
| 1084 | preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400); |
| 1085 | break; |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1086 | default: |
| 1087 | pr_warn("%s: Invalid UHS-I mode selected\n", |
| 1088 | mmc_hostname(host->mmc)); |
| 1089 | preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12); |
| 1090 | break; |
| 1091 | } |
| 1092 | return preset; |
| 1093 | } |
| 1094 | |
Russell King | 1771059 | 2014-04-25 12:58:55 +0100 | [diff] [blame] | 1095 | void sdhci_set_clock(struct sdhci_host *host, unsigned int clock) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1096 | { |
Arindam Nath | c3ed387 | 2011-05-05 12:19:06 +0530 | [diff] [blame] | 1097 | int div = 0; /* Initialized for compiler warning */ |
Giuseppe CAVALLARO | df16219 | 2011-11-04 13:53:19 +0100 | [diff] [blame] | 1098 | int real_div = div, clk_mul = 1; |
Arindam Nath | c3ed387 | 2011-05-05 12:19:06 +0530 | [diff] [blame] | 1099 | u16 clk = 0; |
Pierre Ossman | 7cb2c76 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 1100 | unsigned long timeout; |
ludovic.desroches@atmel.com | 5497159 | 2015-07-29 16:22:46 +0200 | [diff] [blame] | 1101 | bool switch_base_clk = false; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1102 | |
Russell King | 1650d0c | 2014-04-25 12:58:50 +0100 | [diff] [blame] | 1103 | host->mmc->actual_clock = 0; |
| 1104 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1105 | sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL); |
ludovic.desroches@atmel.com | af95176 | 2015-09-17 10:16:19 +0200 | [diff] [blame] | 1106 | if (host->quirks2 & SDHCI_QUIRK2_NEED_DELAY_AFTER_INT_CLK_RST) |
| 1107 | mdelay(1); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1108 | |
| 1109 | if (clock == 0) |
Russell King | 373073e | 2014-04-25 12:58:45 +0100 | [diff] [blame] | 1110 | return; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1111 | |
Zhangfei Gao | 85105c5 | 2010-08-06 07:10:01 +0800 | [diff] [blame] | 1112 | if (host->version >= SDHCI_SPEC_300) { |
Russell King | da91a8f | 2014-04-25 13:00:12 +0100 | [diff] [blame] | 1113 | if (host->preset_enabled) { |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1114 | u16 pre_val; |
| 1115 | |
| 1116 | clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL); |
| 1117 | pre_val = sdhci_get_preset_value(host); |
| 1118 | div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK) |
| 1119 | >> SDHCI_PRESET_SDCLK_FREQ_SHIFT; |
| 1120 | if (host->clk_mul && |
| 1121 | (pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) { |
| 1122 | clk = SDHCI_PROG_CLOCK_MODE; |
| 1123 | real_div = div + 1; |
| 1124 | clk_mul = host->clk_mul; |
| 1125 | } else { |
| 1126 | real_div = max_t(int, 1, div << 1); |
| 1127 | } |
| 1128 | goto clock_set; |
| 1129 | } |
| 1130 | |
Arindam Nath | c3ed387 | 2011-05-05 12:19:06 +0530 | [diff] [blame] | 1131 | /* |
| 1132 | * Check if the Host Controller supports Programmable Clock |
| 1133 | * Mode. |
| 1134 | */ |
| 1135 | if (host->clk_mul) { |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1136 | for (div = 1; div <= 1024; div++) { |
| 1137 | if ((host->max_clk * host->clk_mul / div) |
| 1138 | <= clock) |
| 1139 | break; |
Zhangfei Gao | 85105c5 | 2010-08-06 07:10:01 +0800 | [diff] [blame] | 1140 | } |
ludovic.desroches@atmel.com | 5497159 | 2015-07-29 16:22:46 +0200 | [diff] [blame] | 1141 | if ((host->max_clk * host->clk_mul / div) <= clock) { |
| 1142 | /* |
| 1143 | * Set Programmable Clock Mode in the Clock |
| 1144 | * Control register. |
| 1145 | */ |
| 1146 | clk = SDHCI_PROG_CLOCK_MODE; |
| 1147 | real_div = div; |
| 1148 | clk_mul = host->clk_mul; |
| 1149 | div--; |
| 1150 | } else { |
| 1151 | /* |
| 1152 | * Divisor can be too small to reach clock |
| 1153 | * speed requirement. Then use the base clock. |
| 1154 | */ |
| 1155 | switch_base_clk = true; |
| 1156 | } |
| 1157 | } |
| 1158 | |
| 1159 | if (!host->clk_mul || switch_base_clk) { |
Arindam Nath | c3ed387 | 2011-05-05 12:19:06 +0530 | [diff] [blame] | 1160 | /* Version 3.00 divisors must be a multiple of 2. */ |
| 1161 | if (host->max_clk <= clock) |
| 1162 | div = 1; |
| 1163 | else { |
| 1164 | for (div = 2; div < SDHCI_MAX_DIV_SPEC_300; |
| 1165 | div += 2) { |
| 1166 | if ((host->max_clk / div) <= clock) |
| 1167 | break; |
| 1168 | } |
| 1169 | } |
Giuseppe CAVALLARO | df16219 | 2011-11-04 13:53:19 +0100 | [diff] [blame] | 1170 | real_div = div; |
Arindam Nath | c3ed387 | 2011-05-05 12:19:06 +0530 | [diff] [blame] | 1171 | div >>= 1; |
Suneel Garapati | d1955c3 | 2015-06-09 13:01:50 +0530 | [diff] [blame] | 1172 | if ((host->quirks2 & SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN) |
| 1173 | && !div && host->max_clk <= 25000000) |
| 1174 | div = 1; |
Zhangfei Gao | 85105c5 | 2010-08-06 07:10:01 +0800 | [diff] [blame] | 1175 | } |
| 1176 | } else { |
| 1177 | /* Version 2.00 divisors must be a power of 2. */ |
Zhangfei Gao | 0397526 | 2010-09-20 15:15:18 -0400 | [diff] [blame] | 1178 | for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) { |
Zhangfei Gao | 85105c5 | 2010-08-06 07:10:01 +0800 | [diff] [blame] | 1179 | if ((host->max_clk / div) <= clock) |
| 1180 | break; |
| 1181 | } |
Giuseppe CAVALLARO | df16219 | 2011-11-04 13:53:19 +0100 | [diff] [blame] | 1182 | real_div = div; |
Arindam Nath | c3ed387 | 2011-05-05 12:19:06 +0530 | [diff] [blame] | 1183 | div >>= 1; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1184 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1185 | |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1186 | clock_set: |
Aisheng Dong | 03d6f5f | 2014-08-27 15:26:32 +0800 | [diff] [blame] | 1187 | if (real_div) |
Giuseppe CAVALLARO | df16219 | 2011-11-04 13:53:19 +0100 | [diff] [blame] | 1188 | host->mmc->actual_clock = (host->max_clk * clk_mul) / real_div; |
Arindam Nath | c3ed387 | 2011-05-05 12:19:06 +0530 | [diff] [blame] | 1189 | clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT; |
Zhangfei Gao | 85105c5 | 2010-08-06 07:10:01 +0800 | [diff] [blame] | 1190 | clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN) |
| 1191 | << SDHCI_DIVIDER_HI_SHIFT; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1192 | clk |= SDHCI_CLOCK_INT_EN; |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1193 | sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1194 | |
Chris Ball | 27f6cb1 | 2009-09-22 16:45:31 -0700 | [diff] [blame] | 1195 | /* Wait max 20 ms */ |
| 1196 | timeout = 20; |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1197 | while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL)) |
Pierre Ossman | 7cb2c76 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 1198 | & SDHCI_CLOCK_INT_STABLE)) { |
| 1199 | if (timeout == 0) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 1200 | pr_err("%s: Internal clock never stabilised.\n", |
| 1201 | mmc_hostname(host->mmc)); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1202 | sdhci_dumpregs(host); |
| 1203 | return; |
| 1204 | } |
Pierre Ossman | 7cb2c76 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 1205 | timeout--; |
| 1206 | mdelay(1); |
| 1207 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1208 | |
| 1209 | clk |= SDHCI_CLOCK_CARD_EN; |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1210 | sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1211 | } |
Russell King | 1771059 | 2014-04-25 12:58:55 +0100 | [diff] [blame] | 1212 | EXPORT_SYMBOL_GPL(sdhci_set_clock); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1213 | |
Russell King | 24fbb3c | 2014-04-25 13:00:06 +0100 | [diff] [blame] | 1214 | static void sdhci_set_power(struct sdhci_host *host, unsigned char mode, |
| 1215 | unsigned short vdd) |
Pierre Ossman | 146ad66 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 1216 | { |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 1217 | struct mmc_host *mmc = host->mmc; |
Giuseppe Cavallaro | 8364248 | 2010-09-28 10:41:28 +0200 | [diff] [blame] | 1218 | u8 pwr = 0; |
Pierre Ossman | 146ad66 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 1219 | |
Russell King | 24fbb3c | 2014-04-25 13:00:06 +0100 | [diff] [blame] | 1220 | if (mode != MMC_POWER_OFF) { |
| 1221 | switch (1 << vdd) { |
Pierre Ossman | ae62890 | 2009-05-03 20:45:03 +0200 | [diff] [blame] | 1222 | case MMC_VDD_165_195: |
| 1223 | pwr = SDHCI_POWER_180; |
| 1224 | break; |
| 1225 | case MMC_VDD_29_30: |
| 1226 | case MMC_VDD_30_31: |
| 1227 | pwr = SDHCI_POWER_300; |
| 1228 | break; |
| 1229 | case MMC_VDD_32_33: |
| 1230 | case MMC_VDD_33_34: |
| 1231 | pwr = SDHCI_POWER_330; |
| 1232 | break; |
| 1233 | default: |
Adrian Hunter | 9d5de93 | 2015-11-26 14:00:46 +0200 | [diff] [blame] | 1234 | WARN(1, "%s: Invalid vdd %#x\n", |
| 1235 | mmc_hostname(host->mmc), vdd); |
| 1236 | break; |
Pierre Ossman | ae62890 | 2009-05-03 20:45:03 +0200 | [diff] [blame] | 1237 | } |
| 1238 | } |
| 1239 | |
| 1240 | if (host->pwr == pwr) |
Russell King | e921a8b | 2014-04-25 13:00:01 +0100 | [diff] [blame] | 1241 | return; |
Pierre Ossman | 146ad66 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 1242 | |
Pierre Ossman | ae62890 | 2009-05-03 20:45:03 +0200 | [diff] [blame] | 1243 | host->pwr = pwr; |
| 1244 | |
| 1245 | if (pwr == 0) { |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1246 | sdhci_writeb(host, 0, SDHCI_POWER_CONTROL); |
Adrian Hunter | f0710a5 | 2013-05-06 12:17:32 +0300 | [diff] [blame] | 1247 | if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON) |
| 1248 | sdhci_runtime_pm_bus_off(host); |
Russell King | 24fbb3c | 2014-04-25 13:00:06 +0100 | [diff] [blame] | 1249 | vdd = 0; |
Russell King | e921a8b | 2014-04-25 13:00:01 +0100 | [diff] [blame] | 1250 | } else { |
| 1251 | /* |
| 1252 | * Spec says that we should clear the power reg before setting |
| 1253 | * a new value. Some controllers don't seem to like this though. |
| 1254 | */ |
| 1255 | if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE)) |
| 1256 | sdhci_writeb(host, 0, SDHCI_POWER_CONTROL); |
Darren Salt | 9e9dc5f | 2007-01-27 15:32:31 +0100 | [diff] [blame] | 1257 | |
Russell King | e921a8b | 2014-04-25 13:00:01 +0100 | [diff] [blame] | 1258 | /* |
| 1259 | * At least the Marvell CaFe chip gets confused if we set the |
| 1260 | * voltage and set turn on power at the same time, so set the |
| 1261 | * voltage first. |
| 1262 | */ |
| 1263 | if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER) |
| 1264 | sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL); |
Pierre Ossman | 146ad66 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 1265 | |
Russell King | e921a8b | 2014-04-25 13:00:01 +0100 | [diff] [blame] | 1266 | pwr |= SDHCI_POWER_ON; |
| 1267 | |
Pierre Ossman | ae62890 | 2009-05-03 20:45:03 +0200 | [diff] [blame] | 1268 | sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL); |
| 1269 | |
Russell King | e921a8b | 2014-04-25 13:00:01 +0100 | [diff] [blame] | 1270 | if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON) |
| 1271 | sdhci_runtime_pm_bus_on(host); |
Andres Salomon | e08c169 | 2008-07-04 10:00:03 -0700 | [diff] [blame] | 1272 | |
Russell King | e921a8b | 2014-04-25 13:00:01 +0100 | [diff] [blame] | 1273 | /* |
| 1274 | * Some controllers need an extra 10ms delay of 10ms before |
| 1275 | * they can apply clock after applying power |
| 1276 | */ |
| 1277 | if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER) |
| 1278 | mdelay(10); |
| 1279 | } |
Jisheng Zhang | 918f4cb | 2015-12-11 21:36:29 +0800 | [diff] [blame] | 1280 | |
| 1281 | if (!IS_ERR(mmc->supply.vmmc)) { |
| 1282 | spin_unlock_irq(&host->lock); |
| 1283 | mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd); |
| 1284 | spin_lock_irq(&host->lock); |
| 1285 | } |
Pierre Ossman | 146ad66 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 1286 | } |
| 1287 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1288 | /*****************************************************************************\ |
| 1289 | * * |
| 1290 | * MMC callbacks * |
| 1291 | * * |
| 1292 | \*****************************************************************************/ |
| 1293 | |
| 1294 | static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq) |
| 1295 | { |
| 1296 | struct sdhci_host *host; |
Shawn Guo | 505a868 | 2012-12-11 15:23:42 +0800 | [diff] [blame] | 1297 | int present; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1298 | unsigned long flags; |
| 1299 | |
| 1300 | host = mmc_priv(mmc); |
| 1301 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1302 | sdhci_runtime_pm_get(host); |
| 1303 | |
Scott Branden | 04e079cf | 2015-03-10 11:35:10 -0700 | [diff] [blame] | 1304 | /* Firstly check card presence */ |
Adrian Hunter | 8d28b7a | 2016-02-09 16:12:36 +0200 | [diff] [blame] | 1305 | present = mmc->ops->get_cd(mmc); |
Krzysztof Kozlowski | 2836766 | 2015-01-05 10:50:15 +0100 | [diff] [blame] | 1306 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1307 | spin_lock_irqsave(&host->lock, flags); |
| 1308 | |
| 1309 | WARN_ON(host->mrq != NULL); |
| 1310 | |
Pierre Ossman | f913431 | 2008-12-21 17:01:48 +0100 | [diff] [blame] | 1311 | #ifndef SDHCI_USE_LEDS_CLASS |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1312 | sdhci_activate_led(host); |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 1313 | #endif |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 1314 | |
| 1315 | /* |
| 1316 | * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED |
| 1317 | * requests if Auto-CMD12 is enabled. |
| 1318 | */ |
| 1319 | if (!mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) { |
Jerry Huang | c4512f7 | 2010-08-10 18:01:59 -0700 | [diff] [blame] | 1320 | if (mrq->stop) { |
| 1321 | mrq->data->stop = NULL; |
| 1322 | mrq->stop = NULL; |
| 1323 | } |
| 1324 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1325 | |
| 1326 | host->mrq = mrq; |
| 1327 | |
Anton Vorontsov | 68d1fb7 | 2009-03-17 00:13:52 +0300 | [diff] [blame] | 1328 | if (!present || host->flags & SDHCI_DEVICE_DEAD) { |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 1329 | host->mrq->cmd->error = -ENOMEDIUM; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1330 | tasklet_schedule(&host->finish_tasklet); |
Arindam Nath | cf2b5ee | 2011-05-05 12:19:07 +0530 | [diff] [blame] | 1331 | } else { |
Andrei Warkentin | 8edf6371 | 2011-05-23 15:06:39 -0500 | [diff] [blame] | 1332 | if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23)) |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 1333 | sdhci_send_command(host, mrq->sbc); |
| 1334 | else |
| 1335 | sdhci_send_command(host, mrq->cmd); |
Arindam Nath | cf2b5ee | 2011-05-05 12:19:07 +0530 | [diff] [blame] | 1336 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1337 | |
Pierre Ossman | 5f25a66 | 2006-10-04 02:15:39 -0700 | [diff] [blame] | 1338 | mmiowb(); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1339 | spin_unlock_irqrestore(&host->lock, flags); |
| 1340 | } |
| 1341 | |
Russell King | 2317f56 | 2014-04-25 12:57:07 +0100 | [diff] [blame] | 1342 | void sdhci_set_bus_width(struct sdhci_host *host, int width) |
| 1343 | { |
| 1344 | u8 ctrl; |
| 1345 | |
| 1346 | ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL); |
| 1347 | if (width == MMC_BUS_WIDTH_8) { |
| 1348 | ctrl &= ~SDHCI_CTRL_4BITBUS; |
| 1349 | if (host->version >= SDHCI_SPEC_300) |
| 1350 | ctrl |= SDHCI_CTRL_8BITBUS; |
| 1351 | } else { |
| 1352 | if (host->version >= SDHCI_SPEC_300) |
| 1353 | ctrl &= ~SDHCI_CTRL_8BITBUS; |
| 1354 | if (width == MMC_BUS_WIDTH_4) |
| 1355 | ctrl |= SDHCI_CTRL_4BITBUS; |
| 1356 | else |
| 1357 | ctrl &= ~SDHCI_CTRL_4BITBUS; |
| 1358 | } |
| 1359 | sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); |
| 1360 | } |
| 1361 | EXPORT_SYMBOL_GPL(sdhci_set_bus_width); |
| 1362 | |
Russell King | 96d7b78 | 2014-04-25 12:59:26 +0100 | [diff] [blame] | 1363 | void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing) |
| 1364 | { |
| 1365 | u16 ctrl_2; |
| 1366 | |
| 1367 | ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
| 1368 | /* Select Bus Speed Mode for host */ |
| 1369 | ctrl_2 &= ~SDHCI_CTRL_UHS_MASK; |
| 1370 | if ((timing == MMC_TIMING_MMC_HS200) || |
| 1371 | (timing == MMC_TIMING_UHS_SDR104)) |
| 1372 | ctrl_2 |= SDHCI_CTRL_UHS_SDR104; |
| 1373 | else if (timing == MMC_TIMING_UHS_SDR12) |
| 1374 | ctrl_2 |= SDHCI_CTRL_UHS_SDR12; |
| 1375 | else if (timing == MMC_TIMING_UHS_SDR25) |
| 1376 | ctrl_2 |= SDHCI_CTRL_UHS_SDR25; |
| 1377 | else if (timing == MMC_TIMING_UHS_SDR50) |
| 1378 | ctrl_2 |= SDHCI_CTRL_UHS_SDR50; |
| 1379 | else if ((timing == MMC_TIMING_UHS_DDR50) || |
| 1380 | (timing == MMC_TIMING_MMC_DDR52)) |
| 1381 | ctrl_2 |= SDHCI_CTRL_UHS_DDR50; |
Adrian Hunter | e9fb05d | 2014-11-06 15:19:06 +0200 | [diff] [blame] | 1382 | else if (timing == MMC_TIMING_MMC_HS400) |
| 1383 | ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */ |
Russell King | 96d7b78 | 2014-04-25 12:59:26 +0100 | [diff] [blame] | 1384 | sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2); |
| 1385 | } |
| 1386 | EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling); |
| 1387 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1388 | static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1389 | { |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1390 | unsigned long flags; |
| 1391 | u8 ctrl; |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 1392 | struct mmc_host *mmc = host->mmc; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1393 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1394 | spin_lock_irqsave(&host->lock, flags); |
| 1395 | |
Adrian Hunter | ceb6143 | 2011-12-27 15:48:41 +0200 | [diff] [blame] | 1396 | if (host->flags & SDHCI_DEVICE_DEAD) { |
| 1397 | spin_unlock_irqrestore(&host->lock, flags); |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 1398 | if (!IS_ERR(mmc->supply.vmmc) && |
| 1399 | ios->power_mode == MMC_POWER_OFF) |
Markus Mayer | 4e743f1 | 2014-07-03 13:27:42 -0700 | [diff] [blame] | 1400 | mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0); |
Adrian Hunter | ceb6143 | 2011-12-27 15:48:41 +0200 | [diff] [blame] | 1401 | return; |
| 1402 | } |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 1403 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1404 | /* |
| 1405 | * Reset the chip on each power off. |
| 1406 | * Should clear out any weird states. |
| 1407 | */ |
| 1408 | if (ios->power_mode == MMC_POWER_OFF) { |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1409 | sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE); |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 1410 | sdhci_reinit(host); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1411 | } |
| 1412 | |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1413 | if (host->version >= SDHCI_SPEC_300 && |
Dong Aisheng | 372c463 | 2013-10-18 19:48:50 +0800 | [diff] [blame] | 1414 | (ios->power_mode == MMC_POWER_UP) && |
| 1415 | !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1416 | sdhci_enable_preset_value(host, false); |
| 1417 | |
Russell King | 373073e | 2014-04-25 12:58:45 +0100 | [diff] [blame] | 1418 | if (!ios->clock || ios->clock != host->clock) { |
Russell King | 1771059 | 2014-04-25 12:58:55 +0100 | [diff] [blame] | 1419 | host->ops->set_clock(host, ios->clock); |
Russell King | 373073e | 2014-04-25 12:58:45 +0100 | [diff] [blame] | 1420 | host->clock = ios->clock; |
Aisheng Dong | 03d6f5f | 2014-08-27 15:26:32 +0800 | [diff] [blame] | 1421 | |
| 1422 | if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK && |
| 1423 | host->clock) { |
| 1424 | host->timeout_clk = host->mmc->actual_clock ? |
| 1425 | host->mmc->actual_clock / 1000 : |
| 1426 | host->clock / 1000; |
| 1427 | host->mmc->max_busy_timeout = |
| 1428 | host->ops->get_max_timeout_count ? |
| 1429 | host->ops->get_max_timeout_count(host) : |
| 1430 | 1 << 27; |
| 1431 | host->mmc->max_busy_timeout /= host->timeout_clk; |
| 1432 | } |
Russell King | 373073e | 2014-04-25 12:58:45 +0100 | [diff] [blame] | 1433 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1434 | |
Russell King | 24fbb3c | 2014-04-25 13:00:06 +0100 | [diff] [blame] | 1435 | sdhci_set_power(host, ios->power_mode, ios->vdd); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1436 | |
Philip Rakity | 643a81f | 2010-09-23 08:24:32 -0700 | [diff] [blame] | 1437 | if (host->ops->platform_send_init_74_clocks) |
| 1438 | host->ops->platform_send_init_74_clocks(host, ios->power_mode); |
| 1439 | |
Russell King | 2317f56 | 2014-04-25 12:57:07 +0100 | [diff] [blame] | 1440 | host->ops->set_bus_width(host, ios->bus_width); |
Philip Rakity | 15ec446 | 2010-11-19 16:48:39 -0500 | [diff] [blame] | 1441 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 1442 | ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL); |
Pierre Ossman | cd9277c | 2007-02-18 12:07:47 +0100 | [diff] [blame] | 1443 | |
Philip Rakity | 3ab9c8d | 2010-10-06 11:57:23 -0700 | [diff] [blame] | 1444 | if ((ios->timing == MMC_TIMING_SD_HS || |
| 1445 | ios->timing == MMC_TIMING_MMC_HS) |
| 1446 | && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)) |
Pierre Ossman | cd9277c | 2007-02-18 12:07:47 +0100 | [diff] [blame] | 1447 | ctrl |= SDHCI_CTRL_HISPD; |
| 1448 | else |
| 1449 | ctrl &= ~SDHCI_CTRL_HISPD; |
| 1450 | |
Arindam Nath | d6d50a1 | 2011-05-05 12:18:59 +0530 | [diff] [blame] | 1451 | if (host->version >= SDHCI_SPEC_300) { |
Arindam Nath | 49c468f | 2011-05-05 12:19:01 +0530 | [diff] [blame] | 1452 | u16 clk, ctrl_2; |
Arindam Nath | 49c468f | 2011-05-05 12:19:01 +0530 | [diff] [blame] | 1453 | |
| 1454 | /* In case of UHS-I modes, set High Speed Enable */ |
Adrian Hunter | e9fb05d | 2014-11-06 15:19:06 +0200 | [diff] [blame] | 1455 | if ((ios->timing == MMC_TIMING_MMC_HS400) || |
| 1456 | (ios->timing == MMC_TIMING_MMC_HS200) || |
Seungwon Jeon | bb8175a | 2014-03-14 21:12:48 +0900 | [diff] [blame] | 1457 | (ios->timing == MMC_TIMING_MMC_DDR52) || |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 1458 | (ios->timing == MMC_TIMING_UHS_SDR50) || |
Arindam Nath | 49c468f | 2011-05-05 12:19:01 +0530 | [diff] [blame] | 1459 | (ios->timing == MMC_TIMING_UHS_SDR104) || |
| 1460 | (ios->timing == MMC_TIMING_UHS_DDR50) || |
Alexander Elbs | dd8df17 | 2012-01-03 23:26:53 -0500 | [diff] [blame] | 1461 | (ios->timing == MMC_TIMING_UHS_SDR25)) |
Arindam Nath | 49c468f | 2011-05-05 12:19:01 +0530 | [diff] [blame] | 1462 | ctrl |= SDHCI_CTRL_HISPD; |
Arindam Nath | d6d50a1 | 2011-05-05 12:18:59 +0530 | [diff] [blame] | 1463 | |
Russell King | da91a8f | 2014-04-25 13:00:12 +0100 | [diff] [blame] | 1464 | if (!host->preset_enabled) { |
Arindam Nath | 758535c | 2011-05-05 12:19:00 +0530 | [diff] [blame] | 1465 | sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); |
Arindam Nath | d6d50a1 | 2011-05-05 12:18:59 +0530 | [diff] [blame] | 1466 | /* |
| 1467 | * We only need to set Driver Strength if the |
| 1468 | * preset value enable is not set. |
| 1469 | */ |
Russell King | da91a8f | 2014-04-25 13:00:12 +0100 | [diff] [blame] | 1470 | ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
Arindam Nath | d6d50a1 | 2011-05-05 12:18:59 +0530 | [diff] [blame] | 1471 | ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK; |
| 1472 | if (ios->drv_type == MMC_SET_DRIVER_TYPE_A) |
| 1473 | ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A; |
Petri Gynther | 43e943a | 2015-05-20 14:35:00 -0700 | [diff] [blame] | 1474 | else if (ios->drv_type == MMC_SET_DRIVER_TYPE_B) |
| 1475 | ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B; |
Arindam Nath | d6d50a1 | 2011-05-05 12:18:59 +0530 | [diff] [blame] | 1476 | else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C) |
| 1477 | ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C; |
Petri Gynther | 43e943a | 2015-05-20 14:35:00 -0700 | [diff] [blame] | 1478 | else if (ios->drv_type == MMC_SET_DRIVER_TYPE_D) |
| 1479 | ctrl_2 |= SDHCI_CTRL_DRV_TYPE_D; |
| 1480 | else { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 1481 | pr_warn("%s: invalid driver type, default to driver type B\n", |
| 1482 | mmc_hostname(mmc)); |
Petri Gynther | 43e943a | 2015-05-20 14:35:00 -0700 | [diff] [blame] | 1483 | ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B; |
| 1484 | } |
Arindam Nath | d6d50a1 | 2011-05-05 12:18:59 +0530 | [diff] [blame] | 1485 | |
| 1486 | sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2); |
Arindam Nath | 758535c | 2011-05-05 12:19:00 +0530 | [diff] [blame] | 1487 | } else { |
| 1488 | /* |
| 1489 | * According to SDHC Spec v3.00, if the Preset Value |
| 1490 | * Enable in the Host Control 2 register is set, we |
| 1491 | * need to reset SD Clock Enable before changing High |
| 1492 | * Speed Enable to avoid generating clock gliches. |
| 1493 | */ |
Arindam Nath | 758535c | 2011-05-05 12:19:00 +0530 | [diff] [blame] | 1494 | |
| 1495 | /* Reset SD Clock Enable */ |
| 1496 | clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL); |
| 1497 | clk &= ~SDHCI_CLOCK_CARD_EN; |
| 1498 | sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL); |
| 1499 | |
| 1500 | sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); |
| 1501 | |
| 1502 | /* Re-enable SD Clock */ |
Russell King | 1771059 | 2014-04-25 12:58:55 +0100 | [diff] [blame] | 1503 | host->ops->set_clock(host, host->clock); |
Arindam Nath | d6d50a1 | 2011-05-05 12:18:59 +0530 | [diff] [blame] | 1504 | } |
Arindam Nath | 49c468f | 2011-05-05 12:19:01 +0530 | [diff] [blame] | 1505 | |
Arindam Nath | 49c468f | 2011-05-05 12:19:01 +0530 | [diff] [blame] | 1506 | /* Reset SD Clock Enable */ |
| 1507 | clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL); |
| 1508 | clk &= ~SDHCI_CLOCK_CARD_EN; |
| 1509 | sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL); |
| 1510 | |
Russell King | 96d7b78 | 2014-04-25 12:59:26 +0100 | [diff] [blame] | 1511 | host->ops->set_uhs_signaling(host, ios->timing); |
Russell King | d975f12 | 2014-04-25 12:59:31 +0100 | [diff] [blame] | 1512 | host->timing = ios->timing; |
Arindam Nath | 49c468f | 2011-05-05 12:19:01 +0530 | [diff] [blame] | 1513 | |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1514 | if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) && |
| 1515 | ((ios->timing == MMC_TIMING_UHS_SDR12) || |
| 1516 | (ios->timing == MMC_TIMING_UHS_SDR25) || |
| 1517 | (ios->timing == MMC_TIMING_UHS_SDR50) || |
| 1518 | (ios->timing == MMC_TIMING_UHS_SDR104) || |
Jisheng Zhang | 0dafa60 | 2015-08-18 16:21:39 +0800 | [diff] [blame] | 1519 | (ios->timing == MMC_TIMING_UHS_DDR50) || |
| 1520 | (ios->timing == MMC_TIMING_MMC_DDR52))) { |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 1521 | u16 preset; |
| 1522 | |
| 1523 | sdhci_enable_preset_value(host, true); |
| 1524 | preset = sdhci_get_preset_value(host); |
| 1525 | ios->drv_type = (preset & SDHCI_PRESET_DRV_MASK) |
| 1526 | >> SDHCI_PRESET_DRV_SHIFT; |
| 1527 | } |
| 1528 | |
Arindam Nath | 49c468f | 2011-05-05 12:19:01 +0530 | [diff] [blame] | 1529 | /* Re-enable SD Clock */ |
Russell King | 1771059 | 2014-04-25 12:58:55 +0100 | [diff] [blame] | 1530 | host->ops->set_clock(host, host->clock); |
Arindam Nath | 758535c | 2011-05-05 12:19:00 +0530 | [diff] [blame] | 1531 | } else |
| 1532 | sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); |
Arindam Nath | d6d50a1 | 2011-05-05 12:18:59 +0530 | [diff] [blame] | 1533 | |
Leandro Dorileo | b835226 | 2007-07-25 23:47:04 +0200 | [diff] [blame] | 1534 | /* |
| 1535 | * Some (ENE) controllers go apeshit on some ios operation, |
| 1536 | * signalling timeout and CRC errors even on CMD0. Resetting |
| 1537 | * it on each ios seems to solve the problem. |
| 1538 | */ |
Mohammad Jamal | c63705e | 2015-01-13 20:47:24 +0530 | [diff] [blame] | 1539 | if (host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS) |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 1540 | sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA); |
Leandro Dorileo | b835226 | 2007-07-25 23:47:04 +0200 | [diff] [blame] | 1541 | |
Pierre Ossman | 5f25a66 | 2006-10-04 02:15:39 -0700 | [diff] [blame] | 1542 | mmiowb(); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1543 | spin_unlock_irqrestore(&host->lock, flags); |
| 1544 | } |
| 1545 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1546 | static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) |
| 1547 | { |
| 1548 | struct sdhci_host *host = mmc_priv(mmc); |
| 1549 | |
| 1550 | sdhci_runtime_pm_get(host); |
| 1551 | sdhci_do_set_ios(host, ios); |
| 1552 | sdhci_runtime_pm_put(host); |
| 1553 | } |
| 1554 | |
Kevin Liu | 94144a4 | 2013-02-28 17:35:53 +0800 | [diff] [blame] | 1555 | static int sdhci_do_get_cd(struct sdhci_host *host) |
| 1556 | { |
| 1557 | int gpio_cd = mmc_gpio_get_cd(host->mmc); |
| 1558 | |
| 1559 | if (host->flags & SDHCI_DEVICE_DEAD) |
| 1560 | return 0; |
| 1561 | |
Ivan T. Ivanov | 88af565 | 2015-07-06 15:16:19 +0300 | [diff] [blame] | 1562 | /* If nonremovable, assume that the card is always present. */ |
| 1563 | if (host->mmc->caps & MMC_CAP_NONREMOVABLE) |
Kevin Liu | 94144a4 | 2013-02-28 17:35:53 +0800 | [diff] [blame] | 1564 | return 1; |
| 1565 | |
Ivan T. Ivanov | 88af565 | 2015-07-06 15:16:19 +0300 | [diff] [blame] | 1566 | /* |
| 1567 | * Try slot gpio detect, if defined it take precedence |
| 1568 | * over build in controller functionality |
| 1569 | */ |
Kevin Liu | 94144a4 | 2013-02-28 17:35:53 +0800 | [diff] [blame] | 1570 | if (!IS_ERR_VALUE(gpio_cd)) |
| 1571 | return !!gpio_cd; |
| 1572 | |
Ivan T. Ivanov | 88af565 | 2015-07-06 15:16:19 +0300 | [diff] [blame] | 1573 | /* If polling, assume that the card is always present. */ |
| 1574 | if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) |
| 1575 | return 1; |
| 1576 | |
Kevin Liu | 94144a4 | 2013-02-28 17:35:53 +0800 | [diff] [blame] | 1577 | /* Host native card detect */ |
| 1578 | return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT); |
| 1579 | } |
| 1580 | |
| 1581 | static int sdhci_get_cd(struct mmc_host *mmc) |
| 1582 | { |
| 1583 | struct sdhci_host *host = mmc_priv(mmc); |
| 1584 | int ret; |
| 1585 | |
| 1586 | sdhci_runtime_pm_get(host); |
| 1587 | ret = sdhci_do_get_cd(host); |
| 1588 | sdhci_runtime_pm_put(host); |
| 1589 | return ret; |
| 1590 | } |
| 1591 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1592 | static int sdhci_check_ro(struct sdhci_host *host) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1593 | { |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1594 | unsigned long flags; |
Wolfram Sang | 2dfb579 | 2010-10-15 12:21:01 +0200 | [diff] [blame] | 1595 | int is_readonly; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1596 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1597 | spin_lock_irqsave(&host->lock, flags); |
| 1598 | |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 1599 | if (host->flags & SDHCI_DEVICE_DEAD) |
Wolfram Sang | 2dfb579 | 2010-10-15 12:21:01 +0200 | [diff] [blame] | 1600 | is_readonly = 0; |
| 1601 | else if (host->ops->get_ro) |
| 1602 | is_readonly = host->ops->get_ro(host); |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 1603 | else |
Wolfram Sang | 2dfb579 | 2010-10-15 12:21:01 +0200 | [diff] [blame] | 1604 | is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE) |
| 1605 | & SDHCI_WRITE_PROTECT); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1606 | |
| 1607 | spin_unlock_irqrestore(&host->lock, flags); |
| 1608 | |
Wolfram Sang | 2dfb579 | 2010-10-15 12:21:01 +0200 | [diff] [blame] | 1609 | /* This quirk needs to be replaced by a callback-function later */ |
| 1610 | return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ? |
| 1611 | !is_readonly : is_readonly; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 1612 | } |
| 1613 | |
Takashi Iwai | 82b0e23 | 2011-04-21 20:26:38 +0200 | [diff] [blame] | 1614 | #define SAMPLE_COUNT 5 |
| 1615 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1616 | static int sdhci_do_get_ro(struct sdhci_host *host) |
Takashi Iwai | 82b0e23 | 2011-04-21 20:26:38 +0200 | [diff] [blame] | 1617 | { |
Takashi Iwai | 82b0e23 | 2011-04-21 20:26:38 +0200 | [diff] [blame] | 1618 | int i, ro_count; |
| 1619 | |
Takashi Iwai | 82b0e23 | 2011-04-21 20:26:38 +0200 | [diff] [blame] | 1620 | if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT)) |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1621 | return sdhci_check_ro(host); |
Takashi Iwai | 82b0e23 | 2011-04-21 20:26:38 +0200 | [diff] [blame] | 1622 | |
| 1623 | ro_count = 0; |
| 1624 | for (i = 0; i < SAMPLE_COUNT; i++) { |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1625 | if (sdhci_check_ro(host)) { |
Takashi Iwai | 82b0e23 | 2011-04-21 20:26:38 +0200 | [diff] [blame] | 1626 | if (++ro_count > SAMPLE_COUNT / 2) |
| 1627 | return 1; |
| 1628 | } |
| 1629 | msleep(30); |
| 1630 | } |
| 1631 | return 0; |
| 1632 | } |
| 1633 | |
Adrian Hunter | 20758b6 | 2011-08-29 16:42:12 +0300 | [diff] [blame] | 1634 | static void sdhci_hw_reset(struct mmc_host *mmc) |
| 1635 | { |
| 1636 | struct sdhci_host *host = mmc_priv(mmc); |
| 1637 | |
| 1638 | if (host->ops && host->ops->hw_reset) |
| 1639 | host->ops->hw_reset(host); |
| 1640 | } |
| 1641 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1642 | static int sdhci_get_ro(struct mmc_host *mmc) |
Pierre Ossman | f75979b | 2007-09-04 07:59:18 +0200 | [diff] [blame] | 1643 | { |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1644 | struct sdhci_host *host = mmc_priv(mmc); |
| 1645 | int ret; |
Pierre Ossman | f75979b | 2007-09-04 07:59:18 +0200 | [diff] [blame] | 1646 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1647 | sdhci_runtime_pm_get(host); |
| 1648 | ret = sdhci_do_get_ro(host); |
| 1649 | sdhci_runtime_pm_put(host); |
| 1650 | return ret; |
| 1651 | } |
Pierre Ossman | f75979b | 2007-09-04 07:59:18 +0200 | [diff] [blame] | 1652 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1653 | static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable) |
| 1654 | { |
Russell King | be13855 | 2014-04-25 12:55:56 +0100 | [diff] [blame] | 1655 | if (!(host->flags & SDHCI_DEVICE_DEAD)) { |
Russell King | ef10433 | 2014-04-25 12:55:41 +0100 | [diff] [blame] | 1656 | if (enable) |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 1657 | host->ier |= SDHCI_INT_CARD_INT; |
Russell King | ef10433 | 2014-04-25 12:55:41 +0100 | [diff] [blame] | 1658 | else |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 1659 | host->ier &= ~SDHCI_INT_CARD_INT; |
| 1660 | |
| 1661 | sdhci_writel(host, host->ier, SDHCI_INT_ENABLE); |
| 1662 | sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE); |
Russell King | ef10433 | 2014-04-25 12:55:41 +0100 | [diff] [blame] | 1663 | mmiowb(); |
| 1664 | } |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1665 | } |
Pierre Ossman | f75979b | 2007-09-04 07:59:18 +0200 | [diff] [blame] | 1666 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1667 | static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable) |
| 1668 | { |
| 1669 | struct sdhci_host *host = mmc_priv(mmc); |
| 1670 | unsigned long flags; |
| 1671 | |
Russell King | ef10433 | 2014-04-25 12:55:41 +0100 | [diff] [blame] | 1672 | sdhci_runtime_pm_get(host); |
| 1673 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1674 | spin_lock_irqsave(&host->lock, flags); |
Russell King | ef10433 | 2014-04-25 12:55:41 +0100 | [diff] [blame] | 1675 | if (enable) |
| 1676 | host->flags |= SDHCI_SDIO_IRQ_ENABLED; |
| 1677 | else |
| 1678 | host->flags &= ~SDHCI_SDIO_IRQ_ENABLED; |
| 1679 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1680 | sdhci_enable_sdio_irq_nolock(host, enable); |
Pierre Ossman | f75979b | 2007-09-04 07:59:18 +0200 | [diff] [blame] | 1681 | spin_unlock_irqrestore(&host->lock, flags); |
Russell King | ef10433 | 2014-04-25 12:55:41 +0100 | [diff] [blame] | 1682 | |
| 1683 | sdhci_runtime_pm_put(host); |
Pierre Ossman | f75979b | 2007-09-04 07:59:18 +0200 | [diff] [blame] | 1684 | } |
| 1685 | |
Philip Rakity | 6231f3d | 2012-07-23 15:56:23 -0700 | [diff] [blame] | 1686 | static int sdhci_do_start_signal_voltage_switch(struct sdhci_host *host, |
Fabio Estevam | 21f5998 | 2013-02-14 10:35:03 -0200 | [diff] [blame] | 1687 | struct mmc_ios *ios) |
Philip Rakity | 6231f3d | 2012-07-23 15:56:23 -0700 | [diff] [blame] | 1688 | { |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 1689 | struct mmc_host *mmc = host->mmc; |
Philip Rakity | 6231f3d | 2012-07-23 15:56:23 -0700 | [diff] [blame] | 1690 | u16 ctrl; |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1691 | int ret; |
Philip Rakity | 6231f3d | 2012-07-23 15:56:23 -0700 | [diff] [blame] | 1692 | |
| 1693 | /* |
| 1694 | * Signal Voltage Switching is only applicable for Host Controllers |
| 1695 | * v3.00 and above. |
| 1696 | */ |
| 1697 | if (host->version < SDHCI_SPEC_300) |
| 1698 | return 0; |
| 1699 | |
Philip Rakity | 6231f3d | 2012-07-23 15:56:23 -0700 | [diff] [blame] | 1700 | ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1701 | |
Fabio Estevam | 21f5998 | 2013-02-14 10:35:03 -0200 | [diff] [blame] | 1702 | switch (ios->signal_voltage) { |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1703 | case MMC_SIGNAL_VOLTAGE_330: |
| 1704 | /* Set 1.8V Signal Enable in the Host Control2 register to 0 */ |
| 1705 | ctrl &= ~SDHCI_CTRL_VDD_180; |
| 1706 | sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2); |
| 1707 | |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 1708 | if (!IS_ERR(mmc->supply.vqmmc)) { |
| 1709 | ret = regulator_set_voltage(mmc->supply.vqmmc, 2700000, |
| 1710 | 3600000); |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1711 | if (ret) { |
Joe Perches | 6606110 | 2014-09-12 14:56:56 -0700 | [diff] [blame] | 1712 | pr_warn("%s: Switching to 3.3V signalling voltage failed\n", |
| 1713 | mmc_hostname(mmc)); |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1714 | return -EIO; |
| 1715 | } |
| 1716 | } |
| 1717 | /* Wait for 5ms */ |
| 1718 | usleep_range(5000, 5500); |
| 1719 | |
| 1720 | /* 3.3V regulator output should be stable within 5 ms */ |
| 1721 | ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
| 1722 | if (!(ctrl & SDHCI_CTRL_VDD_180)) |
| 1723 | return 0; |
| 1724 | |
Joe Perches | 6606110 | 2014-09-12 14:56:56 -0700 | [diff] [blame] | 1725 | pr_warn("%s: 3.3V regulator output did not became stable\n", |
| 1726 | mmc_hostname(mmc)); |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1727 | |
| 1728 | return -EAGAIN; |
| 1729 | case MMC_SIGNAL_VOLTAGE_180: |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 1730 | if (!IS_ERR(mmc->supply.vqmmc)) { |
| 1731 | ret = regulator_set_voltage(mmc->supply.vqmmc, |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1732 | 1700000, 1950000); |
| 1733 | if (ret) { |
Joe Perches | 6606110 | 2014-09-12 14:56:56 -0700 | [diff] [blame] | 1734 | pr_warn("%s: Switching to 1.8V signalling voltage failed\n", |
| 1735 | mmc_hostname(mmc)); |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1736 | return -EIO; |
| 1737 | } |
| 1738 | } |
| 1739 | |
| 1740 | /* |
| 1741 | * Enable 1.8V Signal Enable in the Host Control2 |
| 1742 | * register |
| 1743 | */ |
| 1744 | ctrl |= SDHCI_CTRL_VDD_180; |
| 1745 | sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2); |
| 1746 | |
Vincent Yang | 9d967a6 | 2015-01-20 16:05:15 +0800 | [diff] [blame] | 1747 | /* Some controller need to do more when switching */ |
| 1748 | if (host->ops->voltage_switch) |
| 1749 | host->ops->voltage_switch(host); |
| 1750 | |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1751 | /* 1.8V regulator output should be stable within 5 ms */ |
| 1752 | ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
| 1753 | if (ctrl & SDHCI_CTRL_VDD_180) |
| 1754 | return 0; |
| 1755 | |
Joe Perches | 6606110 | 2014-09-12 14:56:56 -0700 | [diff] [blame] | 1756 | pr_warn("%s: 1.8V regulator output did not became stable\n", |
| 1757 | mmc_hostname(mmc)); |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1758 | |
| 1759 | return -EAGAIN; |
| 1760 | case MMC_SIGNAL_VOLTAGE_120: |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 1761 | if (!IS_ERR(mmc->supply.vqmmc)) { |
| 1762 | ret = regulator_set_voltage(mmc->supply.vqmmc, 1100000, |
| 1763 | 1300000); |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1764 | if (ret) { |
Joe Perches | 6606110 | 2014-09-12 14:56:56 -0700 | [diff] [blame] | 1765 | pr_warn("%s: Switching to 1.2V signalling voltage failed\n", |
| 1766 | mmc_hostname(mmc)); |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1767 | return -EIO; |
| 1768 | } |
| 1769 | } |
| 1770 | return 0; |
| 1771 | default: |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 1772 | /* No signal voltage switch required */ |
| 1773 | return 0; |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1774 | } |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 1775 | } |
| 1776 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1777 | static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc, |
Fabio Estevam | 21f5998 | 2013-02-14 10:35:03 -0200 | [diff] [blame] | 1778 | struct mmc_ios *ios) |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1779 | { |
| 1780 | struct sdhci_host *host = mmc_priv(mmc); |
| 1781 | int err; |
| 1782 | |
| 1783 | if (host->version < SDHCI_SPEC_300) |
| 1784 | return 0; |
| 1785 | sdhci_runtime_pm_get(host); |
Fabio Estevam | 21f5998 | 2013-02-14 10:35:03 -0200 | [diff] [blame] | 1786 | err = sdhci_do_start_signal_voltage_switch(host, ios); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1787 | sdhci_runtime_pm_put(host); |
| 1788 | return err; |
| 1789 | } |
| 1790 | |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 1791 | static int sdhci_card_busy(struct mmc_host *mmc) |
| 1792 | { |
| 1793 | struct sdhci_host *host = mmc_priv(mmc); |
| 1794 | u32 present_state; |
| 1795 | |
| 1796 | sdhci_runtime_pm_get(host); |
| 1797 | /* Check whether DAT[3:0] is 0000 */ |
| 1798 | present_state = sdhci_readl(host, SDHCI_PRESENT_STATE); |
| 1799 | sdhci_runtime_pm_put(host); |
| 1800 | |
| 1801 | return !(present_state & SDHCI_DATA_LVL_MASK); |
| 1802 | } |
| 1803 | |
Adrian Hunter | b5540ce | 2014-12-05 19:25:31 +0200 | [diff] [blame] | 1804 | static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios) |
| 1805 | { |
| 1806 | struct sdhci_host *host = mmc_priv(mmc); |
| 1807 | unsigned long flags; |
| 1808 | |
| 1809 | spin_lock_irqsave(&host->lock, flags); |
| 1810 | host->flags |= SDHCI_HS400_TUNING; |
| 1811 | spin_unlock_irqrestore(&host->lock, flags); |
| 1812 | |
| 1813 | return 0; |
| 1814 | } |
| 1815 | |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 1816 | static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode) |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1817 | { |
Russell King | 4b6f37d | 2014-04-25 12:59:36 +0100 | [diff] [blame] | 1818 | struct sdhci_host *host = mmc_priv(mmc); |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1819 | u16 ctrl; |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1820 | int tuning_loop_counter = MAX_TUNING_LOOP; |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1821 | int err = 0; |
Aisheng Dong | 2b35bd8 | 2013-12-23 19:13:04 +0800 | [diff] [blame] | 1822 | unsigned long flags; |
Adrian Hunter | 38e40bf | 2014-12-05 19:25:30 +0200 | [diff] [blame] | 1823 | unsigned int tuning_count = 0; |
Adrian Hunter | b5540ce | 2014-12-05 19:25:31 +0200 | [diff] [blame] | 1824 | bool hs400_tuning; |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1825 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1826 | sdhci_runtime_pm_get(host); |
Aisheng Dong | 2b35bd8 | 2013-12-23 19:13:04 +0800 | [diff] [blame] | 1827 | spin_lock_irqsave(&host->lock, flags); |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1828 | |
Adrian Hunter | b5540ce | 2014-12-05 19:25:31 +0200 | [diff] [blame] | 1829 | hs400_tuning = host->flags & SDHCI_HS400_TUNING; |
| 1830 | host->flags &= ~SDHCI_HS400_TUNING; |
| 1831 | |
Adrian Hunter | 38e40bf | 2014-12-05 19:25:30 +0200 | [diff] [blame] | 1832 | if (host->tuning_mode == SDHCI_TUNING_MODE_1) |
| 1833 | tuning_count = host->tuning_count; |
| 1834 | |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1835 | /* |
Weijun Yang | 9faac7b | 2015-10-04 12:04:12 +0000 | [diff] [blame] | 1836 | * The Host Controller needs tuning in case of SDR104 and DDR50 |
| 1837 | * mode, and for SDR50 mode when Use Tuning for SDR50 is set in |
| 1838 | * the Capabilities register. |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 1839 | * If the Host Controller supports the HS200 mode then the |
| 1840 | * tuning function has to be executed. |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1841 | */ |
Russell King | 4b6f37d | 2014-04-25 12:59:36 +0100 | [diff] [blame] | 1842 | switch (host->timing) { |
Adrian Hunter | b5540ce | 2014-12-05 19:25:31 +0200 | [diff] [blame] | 1843 | /* HS400 tuning is done in HS200 mode */ |
Adrian Hunter | e9fb05d | 2014-11-06 15:19:06 +0200 | [diff] [blame] | 1844 | case MMC_TIMING_MMC_HS400: |
Adrian Hunter | b5540ce | 2014-12-05 19:25:31 +0200 | [diff] [blame] | 1845 | err = -EINVAL; |
| 1846 | goto out_unlock; |
| 1847 | |
Russell King | 4b6f37d | 2014-04-25 12:59:36 +0100 | [diff] [blame] | 1848 | case MMC_TIMING_MMC_HS200: |
Adrian Hunter | b5540ce | 2014-12-05 19:25:31 +0200 | [diff] [blame] | 1849 | /* |
| 1850 | * Periodic re-tuning for HS400 is not expected to be needed, so |
| 1851 | * disable it here. |
| 1852 | */ |
| 1853 | if (hs400_tuning) |
| 1854 | tuning_count = 0; |
| 1855 | break; |
| 1856 | |
Russell King | 4b6f37d | 2014-04-25 12:59:36 +0100 | [diff] [blame] | 1857 | case MMC_TIMING_UHS_SDR104: |
Weijun Yang | 9faac7b | 2015-10-04 12:04:12 +0000 | [diff] [blame] | 1858 | case MMC_TIMING_UHS_DDR50: |
Russell King | 4b6f37d | 2014-04-25 12:59:36 +0100 | [diff] [blame] | 1859 | break; |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 1860 | |
Russell King | 4b6f37d | 2014-04-25 12:59:36 +0100 | [diff] [blame] | 1861 | case MMC_TIMING_UHS_SDR50: |
| 1862 | if (host->flags & SDHCI_SDR50_NEEDS_TUNING || |
| 1863 | host->flags & SDHCI_SDR104_NEEDS_TUNING) |
| 1864 | break; |
| 1865 | /* FALLTHROUGH */ |
| 1866 | |
| 1867 | default: |
Adrian Hunter | d519c86 | 2014-12-05 19:25:29 +0200 | [diff] [blame] | 1868 | goto out_unlock; |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1869 | } |
| 1870 | |
Dong Aisheng | 4525181 | 2013-09-13 19:11:30 +0800 | [diff] [blame] | 1871 | if (host->ops->platform_execute_tuning) { |
Aisheng Dong | 2b35bd8 | 2013-12-23 19:13:04 +0800 | [diff] [blame] | 1872 | spin_unlock_irqrestore(&host->lock, flags); |
Dong Aisheng | 4525181 | 2013-09-13 19:11:30 +0800 | [diff] [blame] | 1873 | err = host->ops->platform_execute_tuning(host, opcode); |
| 1874 | sdhci_runtime_pm_put(host); |
| 1875 | return err; |
| 1876 | } |
| 1877 | |
Russell King | 4b6f37d | 2014-04-25 12:59:36 +0100 | [diff] [blame] | 1878 | ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
| 1879 | ctrl |= SDHCI_CTRL_EXEC_TUNING; |
Vincent Yang | 67d0d04 | 2015-01-20 16:05:16 +0800 | [diff] [blame] | 1880 | if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND) |
| 1881 | ctrl |= SDHCI_CTRL_TUNED_CLK; |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1882 | sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2); |
| 1883 | |
| 1884 | /* |
| 1885 | * As per the Host Controller spec v3.00, tuning command |
| 1886 | * generates Buffer Read Ready interrupt, so enable that. |
| 1887 | * |
| 1888 | * Note: The spec clearly says that when tuning sequence |
| 1889 | * is being performed, the controller does not generate |
| 1890 | * interrupts other than Buffer Read Ready interrupt. But |
| 1891 | * to make sure we don't hit a controller bug, we _only_ |
| 1892 | * enable Buffer Read Ready interrupt here. |
| 1893 | */ |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 1894 | sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE); |
| 1895 | sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE); |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1896 | |
| 1897 | /* |
| 1898 | * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number |
| 1899 | * of loops reaches 40 times or a timeout of 150ms occurs. |
| 1900 | */ |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1901 | do { |
| 1902 | struct mmc_command cmd = {0}; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 1903 | struct mmc_request mrq = {NULL}; |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1904 | |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 1905 | cmd.opcode = opcode; |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1906 | cmd.arg = 0; |
| 1907 | cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC; |
| 1908 | cmd.retries = 0; |
| 1909 | cmd.data = NULL; |
| 1910 | cmd.error = 0; |
| 1911 | |
Al Cooper | 7ce45e9 | 2014-05-09 11:34:07 -0400 | [diff] [blame] | 1912 | if (tuning_loop_counter-- == 0) |
| 1913 | break; |
| 1914 | |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1915 | mrq.cmd = &cmd; |
| 1916 | host->mrq = &mrq; |
| 1917 | |
| 1918 | /* |
| 1919 | * In response to CMD19, the card sends 64 bytes of tuning |
| 1920 | * block to the Host Controller. So we set the block size |
| 1921 | * to 64 here. |
| 1922 | */ |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 1923 | if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200) { |
| 1924 | if (mmc->ios.bus_width == MMC_BUS_WIDTH_8) |
| 1925 | sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128), |
| 1926 | SDHCI_BLOCK_SIZE); |
| 1927 | else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4) |
| 1928 | sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64), |
| 1929 | SDHCI_BLOCK_SIZE); |
| 1930 | } else { |
| 1931 | sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64), |
| 1932 | SDHCI_BLOCK_SIZE); |
| 1933 | } |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1934 | |
| 1935 | /* |
| 1936 | * The tuning block is sent by the card to the host controller. |
| 1937 | * So we set the TRNS_READ bit in the Transfer Mode register. |
| 1938 | * This also takes care of setting DMA Enable and Multi Block |
| 1939 | * Select in the same register to 0. |
| 1940 | */ |
| 1941 | sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE); |
| 1942 | |
| 1943 | sdhci_send_command(host, &cmd); |
| 1944 | |
| 1945 | host->cmd = NULL; |
| 1946 | host->mrq = NULL; |
| 1947 | |
Aisheng Dong | 2b35bd8 | 2013-12-23 19:13:04 +0800 | [diff] [blame] | 1948 | spin_unlock_irqrestore(&host->lock, flags); |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1949 | /* Wait for Buffer Read Ready interrupt */ |
| 1950 | wait_event_interruptible_timeout(host->buf_ready_int, |
| 1951 | (host->tuning_done == 1), |
| 1952 | msecs_to_jiffies(50)); |
Aisheng Dong | 2b35bd8 | 2013-12-23 19:13:04 +0800 | [diff] [blame] | 1953 | spin_lock_irqsave(&host->lock, flags); |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1954 | |
| 1955 | if (!host->tuning_done) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 1956 | pr_info(DRIVER_NAME ": Timeout waiting for Buffer Read Ready interrupt during tuning procedure, falling back to fixed sampling clock\n"); |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1957 | ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
| 1958 | ctrl &= ~SDHCI_CTRL_TUNED_CLK; |
| 1959 | ctrl &= ~SDHCI_CTRL_EXEC_TUNING; |
| 1960 | sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2); |
| 1961 | |
| 1962 | err = -EIO; |
| 1963 | goto out; |
| 1964 | } |
| 1965 | |
| 1966 | host->tuning_done = 0; |
| 1967 | |
| 1968 | ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
Nick Sanders | 197160d | 2014-05-06 18:52:38 -0700 | [diff] [blame] | 1969 | |
| 1970 | /* eMMC spec does not require a delay between tuning cycles */ |
| 1971 | if (opcode == MMC_SEND_TUNING_BLOCK) |
| 1972 | mdelay(1); |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1973 | } while (ctrl & SDHCI_CTRL_EXEC_TUNING); |
| 1974 | |
| 1975 | /* |
| 1976 | * The Host Driver has exhausted the maximum number of loops allowed, |
| 1977 | * so use fixed sampling frequency. |
| 1978 | */ |
Al Cooper | 7ce45e9 | 2014-05-09 11:34:07 -0400 | [diff] [blame] | 1979 | if (tuning_loop_counter < 0) { |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1980 | ctrl &= ~SDHCI_CTRL_TUNED_CLK; |
| 1981 | sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2); |
Al Cooper | 7ce45e9 | 2014-05-09 11:34:07 -0400 | [diff] [blame] | 1982 | } |
| 1983 | if (!(ctrl & SDHCI_CTRL_TUNED_CLK)) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 1984 | pr_info(DRIVER_NAME ": Tuning procedure failed, falling back to fixed sampling clock\n"); |
Dong Aisheng | 114f2bf | 2013-10-18 19:48:45 +0800 | [diff] [blame] | 1985 | err = -EIO; |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 1986 | } |
| 1987 | |
| 1988 | out: |
Adrian Hunter | 38e40bf | 2014-12-05 19:25:30 +0200 | [diff] [blame] | 1989 | if (tuning_count) { |
Adrian Hunter | 66c39dfc | 2015-05-07 13:10:21 +0300 | [diff] [blame] | 1990 | /* |
| 1991 | * In case tuning fails, host controllers which support |
| 1992 | * re-tuning can try tuning again at a later time, when the |
| 1993 | * re-tuning timer expires. So for these controllers, we |
| 1994 | * return 0. Since there might be other controllers who do not |
| 1995 | * have this capability, we return error for them. |
| 1996 | */ |
| 1997 | err = 0; |
Arindam Nath | cf2b5ee | 2011-05-05 12:19:07 +0530 | [diff] [blame] | 1998 | } |
| 1999 | |
Adrian Hunter | 66c39dfc | 2015-05-07 13:10:21 +0300 | [diff] [blame] | 2000 | host->mmc->retune_period = err ? 0 : tuning_count; |
Arindam Nath | cf2b5ee | 2011-05-05 12:19:07 +0530 | [diff] [blame] | 2001 | |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 2002 | sdhci_writel(host, host->ier, SDHCI_INT_ENABLE); |
| 2003 | sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE); |
Adrian Hunter | d519c86 | 2014-12-05 19:25:29 +0200 | [diff] [blame] | 2004 | out_unlock: |
Aisheng Dong | 2b35bd8 | 2013-12-23 19:13:04 +0800 | [diff] [blame] | 2005 | spin_unlock_irqrestore(&host->lock, flags); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2006 | sdhci_runtime_pm_put(host); |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 2007 | |
| 2008 | return err; |
| 2009 | } |
| 2010 | |
Adrian Hunter | cb84964 | 2015-02-06 14:12:59 +0200 | [diff] [blame] | 2011 | static int sdhci_select_drive_strength(struct mmc_card *card, |
| 2012 | unsigned int max_dtr, int host_drv, |
| 2013 | int card_drv, int *drv_type) |
| 2014 | { |
| 2015 | struct sdhci_host *host = mmc_priv(card->host); |
| 2016 | |
| 2017 | if (!host->ops->select_drive_strength) |
| 2018 | return 0; |
| 2019 | |
| 2020 | return host->ops->select_drive_strength(host, card, max_dtr, host_drv, |
| 2021 | card_drv, drv_type); |
| 2022 | } |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 2023 | |
| 2024 | static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable) |
Arindam Nath | 4d55c5a | 2011-05-05 12:19:05 +0530 | [diff] [blame] | 2025 | { |
Arindam Nath | 4d55c5a | 2011-05-05 12:19:05 +0530 | [diff] [blame] | 2026 | /* Host Controller v3.00 defines preset value registers */ |
| 2027 | if (host->version < SDHCI_SPEC_300) |
| 2028 | return; |
| 2029 | |
Arindam Nath | 4d55c5a | 2011-05-05 12:19:05 +0530 | [diff] [blame] | 2030 | /* |
| 2031 | * We only enable or disable Preset Value if they are not already |
| 2032 | * enabled or disabled respectively. Otherwise, we bail out. |
| 2033 | */ |
Russell King | da91a8f | 2014-04-25 13:00:12 +0100 | [diff] [blame] | 2034 | if (host->preset_enabled != enable) { |
| 2035 | u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2); |
| 2036 | |
| 2037 | if (enable) |
| 2038 | ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE; |
| 2039 | else |
| 2040 | ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE; |
| 2041 | |
Arindam Nath | 4d55c5a | 2011-05-05 12:19:05 +0530 | [diff] [blame] | 2042 | sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2); |
Russell King | da91a8f | 2014-04-25 13:00:12 +0100 | [diff] [blame] | 2043 | |
| 2044 | if (enable) |
| 2045 | host->flags |= SDHCI_PV_ENABLED; |
| 2046 | else |
| 2047 | host->flags &= ~SDHCI_PV_ENABLED; |
| 2048 | |
| 2049 | host->preset_enabled = enable; |
Arindam Nath | 4d55c5a | 2011-05-05 12:19:05 +0530 | [diff] [blame] | 2050 | } |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2051 | } |
| 2052 | |
Haibo Chen | 348487c | 2014-12-09 17:04:05 +0800 | [diff] [blame] | 2053 | static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq, |
| 2054 | int err) |
| 2055 | { |
| 2056 | struct sdhci_host *host = mmc_priv(mmc); |
| 2057 | struct mmc_data *data = mrq->data; |
| 2058 | |
Russell King | f48f039 | 2016-01-26 13:40:32 +0000 | [diff] [blame] | 2059 | if (data->host_cookie != COOKIE_UNMAPPED) |
Russell King | 771a3dc | 2016-01-26 13:40:53 +0000 | [diff] [blame] | 2060 | dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len, |
| 2061 | data->flags & MMC_DATA_WRITE ? |
| 2062 | DMA_TO_DEVICE : DMA_FROM_DEVICE); |
| 2063 | |
| 2064 | data->host_cookie = COOKIE_UNMAPPED; |
Haibo Chen | 348487c | 2014-12-09 17:04:05 +0800 | [diff] [blame] | 2065 | } |
| 2066 | |
Haibo Chen | 348487c | 2014-12-09 17:04:05 +0800 | [diff] [blame] | 2067 | static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq, |
| 2068 | bool is_first_req) |
| 2069 | { |
| 2070 | struct sdhci_host *host = mmc_priv(mmc); |
| 2071 | |
Haibo Chen | d31911b | 2015-08-25 10:02:11 +0800 | [diff] [blame] | 2072 | mrq->data->host_cookie = COOKIE_UNMAPPED; |
Haibo Chen | 348487c | 2014-12-09 17:04:05 +0800 | [diff] [blame] | 2073 | |
| 2074 | if (host->flags & SDHCI_REQ_USE_DMA) |
Russell King | 94538e5 | 2016-01-26 13:40:37 +0000 | [diff] [blame] | 2075 | sdhci_pre_dma_transfer(host, mrq->data, COOKIE_PRE_MAPPED); |
Haibo Chen | 348487c | 2014-12-09 17:04:05 +0800 | [diff] [blame] | 2076 | } |
| 2077 | |
Guennadi Liakhovetski | 71e6921 | 2012-12-04 16:51:40 +0100 | [diff] [blame] | 2078 | static void sdhci_card_event(struct mmc_host *mmc) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2079 | { |
Guennadi Liakhovetski | 71e6921 | 2012-12-04 16:51:40 +0100 | [diff] [blame] | 2080 | struct sdhci_host *host = mmc_priv(mmc); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2081 | unsigned long flags; |
Krzysztof Kozlowski | 2836766 | 2015-01-05 10:50:15 +0100 | [diff] [blame] | 2082 | int present; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2083 | |
Christian Daudt | 722e128 | 2013-06-20 14:26:36 -0700 | [diff] [blame] | 2084 | /* First check if client has provided their own card event */ |
| 2085 | if (host->ops->card_event) |
| 2086 | host->ops->card_event(host); |
| 2087 | |
Krzysztof Kozlowski | 2836766 | 2015-01-05 10:50:15 +0100 | [diff] [blame] | 2088 | present = sdhci_do_get_cd(host); |
| 2089 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2090 | spin_lock_irqsave(&host->lock, flags); |
| 2091 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2092 | /* Check host->mrq first in case we are runtime suspended */ |
Krzysztof Kozlowski | 2836766 | 2015-01-05 10:50:15 +0100 | [diff] [blame] | 2093 | if (host->mrq && !present) { |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 2094 | pr_err("%s: Card removed during transfer!\n", |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2095 | mmc_hostname(host->mmc)); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 2096 | pr_err("%s: Resetting controller.\n", |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2097 | mmc_hostname(host->mmc)); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2098 | |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 2099 | sdhci_do_reset(host, SDHCI_RESET_CMD); |
| 2100 | sdhci_do_reset(host, SDHCI_RESET_DATA); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2101 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2102 | host->mrq->cmd->error = -ENOMEDIUM; |
| 2103 | tasklet_schedule(&host->finish_tasklet); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2104 | } |
| 2105 | |
| 2106 | spin_unlock_irqrestore(&host->lock, flags); |
Guennadi Liakhovetski | 71e6921 | 2012-12-04 16:51:40 +0100 | [diff] [blame] | 2107 | } |
| 2108 | |
| 2109 | static const struct mmc_host_ops sdhci_ops = { |
| 2110 | .request = sdhci_request, |
Haibo Chen | 348487c | 2014-12-09 17:04:05 +0800 | [diff] [blame] | 2111 | .post_req = sdhci_post_req, |
| 2112 | .pre_req = sdhci_pre_req, |
Guennadi Liakhovetski | 71e6921 | 2012-12-04 16:51:40 +0100 | [diff] [blame] | 2113 | .set_ios = sdhci_set_ios, |
Kevin Liu | 94144a4 | 2013-02-28 17:35:53 +0800 | [diff] [blame] | 2114 | .get_cd = sdhci_get_cd, |
Guennadi Liakhovetski | 71e6921 | 2012-12-04 16:51:40 +0100 | [diff] [blame] | 2115 | .get_ro = sdhci_get_ro, |
| 2116 | .hw_reset = sdhci_hw_reset, |
| 2117 | .enable_sdio_irq = sdhci_enable_sdio_irq, |
| 2118 | .start_signal_voltage_switch = sdhci_start_signal_voltage_switch, |
Adrian Hunter | b5540ce | 2014-12-05 19:25:31 +0200 | [diff] [blame] | 2119 | .prepare_hs400_tuning = sdhci_prepare_hs400_tuning, |
Guennadi Liakhovetski | 71e6921 | 2012-12-04 16:51:40 +0100 | [diff] [blame] | 2120 | .execute_tuning = sdhci_execute_tuning, |
Adrian Hunter | cb84964 | 2015-02-06 14:12:59 +0200 | [diff] [blame] | 2121 | .select_drive_strength = sdhci_select_drive_strength, |
Guennadi Liakhovetski | 71e6921 | 2012-12-04 16:51:40 +0100 | [diff] [blame] | 2122 | .card_event = sdhci_card_event, |
Kevin Liu | 20b92a3 | 2012-12-17 19:29:26 +0800 | [diff] [blame] | 2123 | .card_busy = sdhci_card_busy, |
Guennadi Liakhovetski | 71e6921 | 2012-12-04 16:51:40 +0100 | [diff] [blame] | 2124 | }; |
| 2125 | |
| 2126 | /*****************************************************************************\ |
| 2127 | * * |
| 2128 | * Tasklets * |
| 2129 | * * |
| 2130 | \*****************************************************************************/ |
| 2131 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2132 | static void sdhci_tasklet_finish(unsigned long param) |
| 2133 | { |
| 2134 | struct sdhci_host *host; |
| 2135 | unsigned long flags; |
| 2136 | struct mmc_request *mrq; |
| 2137 | |
| 2138 | host = (struct sdhci_host*)param; |
| 2139 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2140 | spin_lock_irqsave(&host->lock, flags); |
| 2141 | |
Chris Ball | 0c9c99a | 2011-04-27 17:35:31 -0400 | [diff] [blame] | 2142 | /* |
| 2143 | * If this tasklet gets rescheduled while running, it will |
| 2144 | * be run again afterwards but without any active request. |
| 2145 | */ |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2146 | if (!host->mrq) { |
| 2147 | spin_unlock_irqrestore(&host->lock, flags); |
Chris Ball | 0c9c99a | 2011-04-27 17:35:31 -0400 | [diff] [blame] | 2148 | return; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2149 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2150 | |
| 2151 | del_timer(&host->timer); |
| 2152 | |
| 2153 | mrq = host->mrq; |
| 2154 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2155 | /* |
Russell King | 054cedf | 2016-01-26 13:40:42 +0000 | [diff] [blame] | 2156 | * Always unmap the data buffers if they were mapped by |
| 2157 | * sdhci_prepare_data() whenever we finish with a request. |
| 2158 | * This avoids leaking DMA mappings on error. |
| 2159 | */ |
| 2160 | if (host->flags & SDHCI_REQ_USE_DMA) { |
| 2161 | struct mmc_data *data = mrq->data; |
| 2162 | |
| 2163 | if (data && data->host_cookie == COOKIE_MAPPED) { |
| 2164 | dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len, |
| 2165 | (data->flags & MMC_DATA_READ) ? |
| 2166 | DMA_FROM_DEVICE : DMA_TO_DEVICE); |
| 2167 | data->host_cookie = COOKIE_UNMAPPED; |
| 2168 | } |
| 2169 | } |
| 2170 | |
| 2171 | /* |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2172 | * The controller needs a reset of internal state machines |
| 2173 | * upon error conditions. |
| 2174 | */ |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 2175 | if (!(host->flags & SDHCI_DEVICE_DEAD) && |
Ben Dooks | b7b4d34 | 2011-04-27 14:24:19 +0100 | [diff] [blame] | 2176 | ((mrq->cmd && mrq->cmd->error) || |
Andrew Gabbasov | fce9d33 | 2014-10-01 07:14:08 -0500 | [diff] [blame] | 2177 | (mrq->sbc && mrq->sbc->error) || |
| 2178 | (mrq->data && ((mrq->data->error && !mrq->data->stop) || |
| 2179 | (mrq->data->stop && mrq->data->stop->error))) || |
| 2180 | (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) { |
Pierre Ossman | 645289d | 2006-06-30 02:22:33 -0700 | [diff] [blame] | 2181 | |
| 2182 | /* Some controllers need this kick or reset won't work here */ |
Andy Shevchenko | 8213af3 | 2013-01-07 16:31:08 +0200 | [diff] [blame] | 2183 | if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET) |
Pierre Ossman | 645289d | 2006-06-30 02:22:33 -0700 | [diff] [blame] | 2184 | /* This is to force an update */ |
Russell King | 1771059 | 2014-04-25 12:58:55 +0100 | [diff] [blame] | 2185 | host->ops->set_clock(host, host->clock); |
Pierre Ossman | 645289d | 2006-06-30 02:22:33 -0700 | [diff] [blame] | 2186 | |
| 2187 | /* Spec says we should do both at the same time, but Ricoh |
| 2188 | controllers do not like that. */ |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 2189 | sdhci_do_reset(host, SDHCI_RESET_CMD); |
| 2190 | sdhci_do_reset(host, SDHCI_RESET_DATA); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2191 | } |
| 2192 | |
| 2193 | host->mrq = NULL; |
| 2194 | host->cmd = NULL; |
| 2195 | host->data = NULL; |
| 2196 | |
Pierre Ossman | f913431 | 2008-12-21 17:01:48 +0100 | [diff] [blame] | 2197 | #ifndef SDHCI_USE_LEDS_CLASS |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2198 | sdhci_deactivate_led(host); |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 2199 | #endif |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2200 | |
Pierre Ossman | 5f25a66 | 2006-10-04 02:15:39 -0700 | [diff] [blame] | 2201 | mmiowb(); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2202 | spin_unlock_irqrestore(&host->lock, flags); |
| 2203 | |
| 2204 | mmc_request_done(host->mmc, mrq); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2205 | sdhci_runtime_pm_put(host); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2206 | } |
| 2207 | |
| 2208 | static void sdhci_timeout_timer(unsigned long data) |
| 2209 | { |
| 2210 | struct sdhci_host *host; |
| 2211 | unsigned long flags; |
| 2212 | |
| 2213 | host = (struct sdhci_host*)data; |
| 2214 | |
| 2215 | spin_lock_irqsave(&host->lock, flags); |
| 2216 | |
| 2217 | if (host->mrq) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 2218 | pr_err("%s: Timeout waiting for hardware interrupt.\n", |
| 2219 | mmc_hostname(host->mmc)); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2220 | sdhci_dumpregs(host); |
| 2221 | |
| 2222 | if (host->data) { |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 2223 | host->data->error = -ETIMEDOUT; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2224 | sdhci_finish_data(host); |
| 2225 | } else { |
| 2226 | if (host->cmd) |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 2227 | host->cmd->error = -ETIMEDOUT; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2228 | else |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 2229 | host->mrq->cmd->error = -ETIMEDOUT; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2230 | |
| 2231 | tasklet_schedule(&host->finish_tasklet); |
| 2232 | } |
| 2233 | } |
| 2234 | |
Pierre Ossman | 5f25a66 | 2006-10-04 02:15:39 -0700 | [diff] [blame] | 2235 | mmiowb(); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2236 | spin_unlock_irqrestore(&host->lock, flags); |
| 2237 | } |
| 2238 | |
| 2239 | /*****************************************************************************\ |
| 2240 | * * |
| 2241 | * Interrupt handling * |
| 2242 | * * |
| 2243 | \*****************************************************************************/ |
| 2244 | |
Adrian Hunter | 6154139 | 2014-09-24 10:27:27 +0300 | [diff] [blame] | 2245 | static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *mask) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2246 | { |
| 2247 | BUG_ON(intmask == 0); |
| 2248 | |
| 2249 | if (!host->cmd) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 2250 | pr_err("%s: Got command interrupt 0x%08x even though no command operation was in progress.\n", |
| 2251 | mmc_hostname(host->mmc), (unsigned)intmask); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2252 | sdhci_dumpregs(host); |
| 2253 | return; |
| 2254 | } |
| 2255 | |
Russell King | ec014cb | 2016-01-26 13:39:39 +0000 | [diff] [blame] | 2256 | if (intmask & (SDHCI_INT_TIMEOUT | SDHCI_INT_CRC | |
| 2257 | SDHCI_INT_END_BIT | SDHCI_INT_INDEX)) { |
| 2258 | if (intmask & SDHCI_INT_TIMEOUT) |
| 2259 | host->cmd->error = -ETIMEDOUT; |
| 2260 | else |
| 2261 | host->cmd->error = -EILSEQ; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2262 | |
Russell King | 71fcbda | 2016-01-26 13:39:45 +0000 | [diff] [blame] | 2263 | /* |
| 2264 | * If this command initiates a data phase and a response |
| 2265 | * CRC error is signalled, the card can start transferring |
| 2266 | * data - the card may have received the command without |
| 2267 | * error. We must not terminate the mmc_request early. |
| 2268 | * |
| 2269 | * If the card did not receive the command or returned an |
| 2270 | * error which prevented it sending data, the data phase |
| 2271 | * will time out. |
| 2272 | */ |
| 2273 | if (host->cmd->data && |
| 2274 | (intmask & (SDHCI_INT_CRC | SDHCI_INT_TIMEOUT)) == |
| 2275 | SDHCI_INT_CRC) { |
| 2276 | host->cmd = NULL; |
| 2277 | return; |
| 2278 | } |
| 2279 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2280 | tasklet_schedule(&host->finish_tasklet); |
Pierre Ossman | e809517 | 2008-07-25 01:09:08 +0200 | [diff] [blame] | 2281 | return; |
| 2282 | } |
| 2283 | |
| 2284 | /* |
| 2285 | * The host can send and interrupt when the busy state has |
| 2286 | * ended, allowing us to wait without wasting CPU cycles. |
| 2287 | * Unfortunately this is overloaded on the "data complete" |
| 2288 | * interrupt, so we need to take some care when handling |
| 2289 | * it. |
| 2290 | * |
| 2291 | * Note: The 1.0 specification is a bit ambiguous about this |
| 2292 | * feature so there might be some problems with older |
| 2293 | * controllers. |
| 2294 | */ |
| 2295 | if (host->cmd->flags & MMC_RSP_BUSY) { |
| 2296 | if (host->cmd->data) |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 2297 | DBG("Cannot wait for busy signal when also doing a data transfer"); |
Chanho Min | e99783a | 2014-08-30 12:40:40 +0900 | [diff] [blame] | 2298 | else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ) |
| 2299 | && !host->busy_handle) { |
| 2300 | /* Mark that command complete before busy is ended */ |
| 2301 | host->busy_handle = 1; |
Pierre Ossman | e809517 | 2008-07-25 01:09:08 +0200 | [diff] [blame] | 2302 | return; |
Chanho Min | e99783a | 2014-08-30 12:40:40 +0900 | [diff] [blame] | 2303 | } |
Ben Dooks | f945405 | 2009-02-20 20:33:08 +0300 | [diff] [blame] | 2304 | |
| 2305 | /* The controller does not support the end-of-busy IRQ, |
| 2306 | * fall through and take the SDHCI_INT_RESPONSE */ |
Adrian Hunter | 6154139 | 2014-09-24 10:27:27 +0300 | [diff] [blame] | 2307 | } else if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) && |
| 2308 | host->cmd->opcode == MMC_STOP_TRANSMISSION && !host->data) { |
| 2309 | *mask &= ~SDHCI_INT_DATA_END; |
Pierre Ossman | e809517 | 2008-07-25 01:09:08 +0200 | [diff] [blame] | 2310 | } |
| 2311 | |
| 2312 | if (intmask & SDHCI_INT_RESPONSE) |
Pierre Ossman | 43b58b3 | 2007-07-25 23:15:27 +0200 | [diff] [blame] | 2313 | sdhci_finish_command(host); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2314 | } |
| 2315 | |
George G. Davis | 0957c33 | 2010-02-18 12:32:12 -0500 | [diff] [blame] | 2316 | #ifdef CONFIG_MMC_DEBUG |
Adrian Hunter | 08621b1 | 2014-11-04 12:42:38 +0200 | [diff] [blame] | 2317 | static void sdhci_adma_show_error(struct sdhci_host *host) |
Ben Dooks | 6882a8c | 2009-06-14 13:52:38 +0100 | [diff] [blame] | 2318 | { |
| 2319 | const char *name = mmc_hostname(host->mmc); |
Adrian Hunter | 1c3d5f6 | 2014-11-04 12:42:41 +0200 | [diff] [blame] | 2320 | void *desc = host->adma_table; |
Ben Dooks | 6882a8c | 2009-06-14 13:52:38 +0100 | [diff] [blame] | 2321 | |
| 2322 | sdhci_dumpregs(host); |
| 2323 | |
| 2324 | while (true) { |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 2325 | struct sdhci_adma2_64_desc *dma_desc = desc; |
Ben Dooks | 6882a8c | 2009-06-14 13:52:38 +0100 | [diff] [blame] | 2326 | |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 2327 | if (host->flags & SDHCI_USE_64_BIT_DMA) |
| 2328 | DBG("%s: %p: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n", |
| 2329 | name, desc, le32_to_cpu(dma_desc->addr_hi), |
| 2330 | le32_to_cpu(dma_desc->addr_lo), |
| 2331 | le16_to_cpu(dma_desc->len), |
| 2332 | le16_to_cpu(dma_desc->cmd)); |
| 2333 | else |
| 2334 | DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n", |
| 2335 | name, desc, le32_to_cpu(dma_desc->addr_lo), |
| 2336 | le16_to_cpu(dma_desc->len), |
| 2337 | le16_to_cpu(dma_desc->cmd)); |
Ben Dooks | 6882a8c | 2009-06-14 13:52:38 +0100 | [diff] [blame] | 2338 | |
Adrian Hunter | 76fe379 | 2014-11-04 12:42:42 +0200 | [diff] [blame] | 2339 | desc += host->desc_sz; |
Ben Dooks | 6882a8c | 2009-06-14 13:52:38 +0100 | [diff] [blame] | 2340 | |
Adrian Hunter | 0545230 | 2014-11-04 12:42:45 +0200 | [diff] [blame] | 2341 | if (dma_desc->cmd & cpu_to_le16(ADMA2_END)) |
Ben Dooks | 6882a8c | 2009-06-14 13:52:38 +0100 | [diff] [blame] | 2342 | break; |
| 2343 | } |
| 2344 | } |
| 2345 | #else |
Adrian Hunter | 08621b1 | 2014-11-04 12:42:38 +0200 | [diff] [blame] | 2346 | static void sdhci_adma_show_error(struct sdhci_host *host) { } |
Ben Dooks | 6882a8c | 2009-06-14 13:52:38 +0100 | [diff] [blame] | 2347 | #endif |
| 2348 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2349 | static void sdhci_data_irq(struct sdhci_host *host, u32 intmask) |
| 2350 | { |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 2351 | u32 command; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2352 | BUG_ON(intmask == 0); |
| 2353 | |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 2354 | /* CMD19 generates _only_ Buffer Read Ready interrupt */ |
| 2355 | if (intmask & SDHCI_INT_DATA_AVAIL) { |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 2356 | command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND)); |
| 2357 | if (command == MMC_SEND_TUNING_BLOCK || |
| 2358 | command == MMC_SEND_TUNING_BLOCK_HS200) { |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 2359 | host->tuning_done = 1; |
| 2360 | wake_up(&host->buf_ready_int); |
| 2361 | return; |
| 2362 | } |
| 2363 | } |
| 2364 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2365 | if (!host->data) { |
| 2366 | /* |
Pierre Ossman | e809517 | 2008-07-25 01:09:08 +0200 | [diff] [blame] | 2367 | * The "data complete" interrupt is also used to |
| 2368 | * indicate that a busy state has ended. See comment |
| 2369 | * above in sdhci_cmd_irq(). |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2370 | */ |
Pierre Ossman | e809517 | 2008-07-25 01:09:08 +0200 | [diff] [blame] | 2371 | if (host->cmd && (host->cmd->flags & MMC_RSP_BUSY)) { |
Matthieu CASTET | c5abd5e | 2014-08-14 16:03:17 +0200 | [diff] [blame] | 2372 | if (intmask & SDHCI_INT_DATA_TIMEOUT) { |
| 2373 | host->cmd->error = -ETIMEDOUT; |
| 2374 | tasklet_schedule(&host->finish_tasklet); |
| 2375 | return; |
| 2376 | } |
Pierre Ossman | e809517 | 2008-07-25 01:09:08 +0200 | [diff] [blame] | 2377 | if (intmask & SDHCI_INT_DATA_END) { |
Chanho Min | e99783a | 2014-08-30 12:40:40 +0900 | [diff] [blame] | 2378 | /* |
| 2379 | * Some cards handle busy-end interrupt |
| 2380 | * before the command completed, so make |
| 2381 | * sure we do things in the proper order. |
| 2382 | */ |
| 2383 | if (host->busy_handle) |
| 2384 | sdhci_finish_command(host); |
| 2385 | else |
| 2386 | host->busy_handle = 1; |
Pierre Ossman | e809517 | 2008-07-25 01:09:08 +0200 | [diff] [blame] | 2387 | return; |
| 2388 | } |
| 2389 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2390 | |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 2391 | pr_err("%s: Got data interrupt 0x%08x even though no data operation was in progress.\n", |
| 2392 | mmc_hostname(host->mmc), (unsigned)intmask); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2393 | sdhci_dumpregs(host); |
| 2394 | |
| 2395 | return; |
| 2396 | } |
| 2397 | |
| 2398 | if (intmask & SDHCI_INT_DATA_TIMEOUT) |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 2399 | host->data->error = -ETIMEDOUT; |
Aries Lee | 22113ef | 2010-12-15 08:14:24 +0100 | [diff] [blame] | 2400 | else if (intmask & SDHCI_INT_DATA_END_BIT) |
| 2401 | host->data->error = -EILSEQ; |
| 2402 | else if ((intmask & SDHCI_INT_DATA_CRC) && |
| 2403 | SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND)) |
| 2404 | != MMC_BUS_TEST_R) |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 2405 | host->data->error = -EILSEQ; |
Ben Dooks | 6882a8c | 2009-06-14 13:52:38 +0100 | [diff] [blame] | 2406 | else if (intmask & SDHCI_INT_ADMA_ERROR) { |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 2407 | pr_err("%s: ADMA error\n", mmc_hostname(host->mmc)); |
Adrian Hunter | 08621b1 | 2014-11-04 12:42:38 +0200 | [diff] [blame] | 2408 | sdhci_adma_show_error(host); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 2409 | host->data->error = -EIO; |
Haijun Zhang | a4071fb | 2012-12-04 10:41:28 +0800 | [diff] [blame] | 2410 | if (host->ops->adma_workaround) |
| 2411 | host->ops->adma_workaround(host, intmask); |
Ben Dooks | 6882a8c | 2009-06-14 13:52:38 +0100 | [diff] [blame] | 2412 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2413 | |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 2414 | if (host->data->error) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2415 | sdhci_finish_data(host); |
| 2416 | else { |
Pierre Ossman | a406f5a | 2006-07-02 16:50:59 +0100 | [diff] [blame] | 2417 | if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL)) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2418 | sdhci_transfer_pio(host); |
| 2419 | |
Pierre Ossman | 6ba736a | 2007-05-13 22:39:23 +0200 | [diff] [blame] | 2420 | /* |
| 2421 | * We currently don't do anything fancy with DMA |
| 2422 | * boundaries, but as we can't disable the feature |
| 2423 | * we need to at least restart the transfer. |
Mikko Vinni | f6a03cb | 2011-04-12 09:36:18 -0400 | [diff] [blame] | 2424 | * |
| 2425 | * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS) |
| 2426 | * should return a valid address to continue from, but as |
| 2427 | * some controllers are faulty, don't trust them. |
Pierre Ossman | 6ba736a | 2007-05-13 22:39:23 +0200 | [diff] [blame] | 2428 | */ |
Mikko Vinni | f6a03cb | 2011-04-12 09:36:18 -0400 | [diff] [blame] | 2429 | if (intmask & SDHCI_INT_DMA_END) { |
| 2430 | u32 dmastart, dmanow; |
| 2431 | dmastart = sg_dma_address(host->data->sg); |
| 2432 | dmanow = dmastart + host->data->bytes_xfered; |
| 2433 | /* |
| 2434 | * Force update to the next DMA block boundary. |
| 2435 | */ |
| 2436 | dmanow = (dmanow & |
| 2437 | ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) + |
| 2438 | SDHCI_DEFAULT_BOUNDARY_SIZE; |
| 2439 | host->data->bytes_xfered = dmanow - dmastart; |
| 2440 | DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes," |
| 2441 | " next 0x%08x\n", |
| 2442 | mmc_hostname(host->mmc), dmastart, |
| 2443 | host->data->bytes_xfered, dmanow); |
| 2444 | sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS); |
| 2445 | } |
Pierre Ossman | 6ba736a | 2007-05-13 22:39:23 +0200 | [diff] [blame] | 2446 | |
Pierre Ossman | e538fbe | 2007-08-12 16:46:32 +0200 | [diff] [blame] | 2447 | if (intmask & SDHCI_INT_DATA_END) { |
| 2448 | if (host->cmd) { |
| 2449 | /* |
| 2450 | * Data managed to finish before the |
| 2451 | * command completed. Make sure we do |
| 2452 | * things in the proper order. |
| 2453 | */ |
| 2454 | host->data_early = 1; |
| 2455 | } else { |
| 2456 | sdhci_finish_data(host); |
| 2457 | } |
| 2458 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2459 | } |
| 2460 | } |
| 2461 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 2462 | static irqreturn_t sdhci_irq(int irq, void *dev_id) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2463 | { |
Russell King | 781e989 | 2014-04-25 12:55:46 +0100 | [diff] [blame] | 2464 | irqreturn_t result = IRQ_NONE; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2465 | struct sdhci_host *host = dev_id; |
Russell King | 4100500 | 2014-04-25 12:55:36 +0100 | [diff] [blame] | 2466 | u32 intmask, mask, unexpected = 0; |
Russell King | 781e989 | 2014-04-25 12:55:46 +0100 | [diff] [blame] | 2467 | int max_loops = 16; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2468 | |
| 2469 | spin_lock(&host->lock); |
| 2470 | |
Russell King | be13855 | 2014-04-25 12:55:56 +0100 | [diff] [blame] | 2471 | if (host->runtime_suspended && !sdhci_sdio_irq_enabled(host)) { |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2472 | spin_unlock(&host->lock); |
Adrian Hunter | 655bca7 | 2014-03-11 10:09:36 +0200 | [diff] [blame] | 2473 | return IRQ_NONE; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2474 | } |
| 2475 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 2476 | intmask = sdhci_readl(host, SDHCI_INT_STATUS); |
Mark Lord | 62df67a5 | 2007-03-06 13:30:13 +0100 | [diff] [blame] | 2477 | if (!intmask || intmask == 0xffffffff) { |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2478 | result = IRQ_NONE; |
| 2479 | goto out; |
| 2480 | } |
| 2481 | |
Russell King | 4100500 | 2014-04-25 12:55:36 +0100 | [diff] [blame] | 2482 | do { |
| 2483 | /* Clear selected interrupts. */ |
| 2484 | mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK | |
| 2485 | SDHCI_INT_BUS_POWER); |
| 2486 | sdhci_writel(host, mask, SDHCI_INT_STATUS); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2487 | |
Russell King | 4100500 | 2014-04-25 12:55:36 +0100 | [diff] [blame] | 2488 | DBG("*** %s got interrupt: 0x%08x\n", |
| 2489 | mmc_hostname(host->mmc), intmask); |
| 2490 | |
| 2491 | if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) { |
| 2492 | u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) & |
| 2493 | SDHCI_CARD_PRESENT; |
| 2494 | |
| 2495 | /* |
| 2496 | * There is a observation on i.mx esdhc. INSERT |
| 2497 | * bit will be immediately set again when it gets |
| 2498 | * cleared, if a card is inserted. We have to mask |
| 2499 | * the irq to prevent interrupt storm which will |
| 2500 | * freeze the system. And the REMOVE gets the |
| 2501 | * same situation. |
| 2502 | * |
| 2503 | * More testing are needed here to ensure it works |
| 2504 | * for other platforms though. |
| 2505 | */ |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 2506 | host->ier &= ~(SDHCI_INT_CARD_INSERT | |
| 2507 | SDHCI_INT_CARD_REMOVE); |
| 2508 | host->ier |= present ? SDHCI_INT_CARD_REMOVE : |
| 2509 | SDHCI_INT_CARD_INSERT; |
| 2510 | sdhci_writel(host, host->ier, SDHCI_INT_ENABLE); |
| 2511 | sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE); |
Russell King | 4100500 | 2014-04-25 12:55:36 +0100 | [diff] [blame] | 2512 | |
| 2513 | sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT | |
| 2514 | SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS); |
Russell King | 3560db8 | 2014-04-25 12:55:51 +0100 | [diff] [blame] | 2515 | |
| 2516 | host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT | |
| 2517 | SDHCI_INT_CARD_REMOVE); |
| 2518 | result = IRQ_WAKE_THREAD; |
Russell King | 4100500 | 2014-04-25 12:55:36 +0100 | [diff] [blame] | 2519 | } |
| 2520 | |
| 2521 | if (intmask & SDHCI_INT_CMD_MASK) |
Adrian Hunter | 6154139 | 2014-09-24 10:27:27 +0300 | [diff] [blame] | 2522 | sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK, |
| 2523 | &intmask); |
Russell King | 4100500 | 2014-04-25 12:55:36 +0100 | [diff] [blame] | 2524 | |
| 2525 | if (intmask & SDHCI_INT_DATA_MASK) |
| 2526 | sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK); |
| 2527 | |
| 2528 | if (intmask & SDHCI_INT_BUS_POWER) |
| 2529 | pr_err("%s: Card is consuming too much power!\n", |
| 2530 | mmc_hostname(host->mmc)); |
| 2531 | |
Russell King | 781e989 | 2014-04-25 12:55:46 +0100 | [diff] [blame] | 2532 | if (intmask & SDHCI_INT_CARD_INT) { |
| 2533 | sdhci_enable_sdio_irq_nolock(host, false); |
| 2534 | host->thread_isr |= SDHCI_INT_CARD_INT; |
| 2535 | result = IRQ_WAKE_THREAD; |
| 2536 | } |
Russell King | 4100500 | 2014-04-25 12:55:36 +0100 | [diff] [blame] | 2537 | |
| 2538 | intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE | |
| 2539 | SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK | |
| 2540 | SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER | |
| 2541 | SDHCI_INT_CARD_INT); |
| 2542 | |
| 2543 | if (intmask) { |
| 2544 | unexpected |= intmask; |
| 2545 | sdhci_writel(host, intmask, SDHCI_INT_STATUS); |
| 2546 | } |
| 2547 | |
Russell King | 781e989 | 2014-04-25 12:55:46 +0100 | [diff] [blame] | 2548 | if (result == IRQ_NONE) |
| 2549 | result = IRQ_HANDLED; |
Russell King | 4100500 | 2014-04-25 12:55:36 +0100 | [diff] [blame] | 2550 | |
| 2551 | intmask = sdhci_readl(host, SDHCI_INT_STATUS); |
Russell King | 4100500 | 2014-04-25 12:55:36 +0100 | [diff] [blame] | 2552 | } while (intmask && --max_loops); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2553 | out: |
| 2554 | spin_unlock(&host->lock); |
| 2555 | |
Alexander Stein | 6379b23 | 2012-03-14 09:52:10 +0100 | [diff] [blame] | 2556 | if (unexpected) { |
| 2557 | pr_err("%s: Unexpected interrupt 0x%08x.\n", |
| 2558 | mmc_hostname(host->mmc), unexpected); |
| 2559 | sdhci_dumpregs(host); |
| 2560 | } |
Pierre Ossman | f75979b | 2007-09-04 07:59:18 +0200 | [diff] [blame] | 2561 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2562 | return result; |
| 2563 | } |
| 2564 | |
Russell King | 781e989 | 2014-04-25 12:55:46 +0100 | [diff] [blame] | 2565 | static irqreturn_t sdhci_thread_irq(int irq, void *dev_id) |
| 2566 | { |
| 2567 | struct sdhci_host *host = dev_id; |
| 2568 | unsigned long flags; |
| 2569 | u32 isr; |
| 2570 | |
| 2571 | spin_lock_irqsave(&host->lock, flags); |
| 2572 | isr = host->thread_isr; |
| 2573 | host->thread_isr = 0; |
| 2574 | spin_unlock_irqrestore(&host->lock, flags); |
| 2575 | |
Russell King | 3560db8 | 2014-04-25 12:55:51 +0100 | [diff] [blame] | 2576 | if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) { |
| 2577 | sdhci_card_event(host->mmc); |
| 2578 | mmc_detect_change(host->mmc, msecs_to_jiffies(200)); |
| 2579 | } |
| 2580 | |
Russell King | 781e989 | 2014-04-25 12:55:46 +0100 | [diff] [blame] | 2581 | if (isr & SDHCI_INT_CARD_INT) { |
| 2582 | sdio_run_irqs(host->mmc); |
| 2583 | |
| 2584 | spin_lock_irqsave(&host->lock, flags); |
| 2585 | if (host->flags & SDHCI_SDIO_IRQ_ENABLED) |
| 2586 | sdhci_enable_sdio_irq_nolock(host, true); |
| 2587 | spin_unlock_irqrestore(&host->lock, flags); |
| 2588 | } |
| 2589 | |
| 2590 | return isr ? IRQ_HANDLED : IRQ_NONE; |
| 2591 | } |
| 2592 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2593 | /*****************************************************************************\ |
| 2594 | * * |
| 2595 | * Suspend/resume * |
| 2596 | * * |
| 2597 | \*****************************************************************************/ |
| 2598 | |
| 2599 | #ifdef CONFIG_PM |
Kevin Liu | ad080d7 | 2013-01-05 17:21:33 +0800 | [diff] [blame] | 2600 | void sdhci_enable_irq_wakeups(struct sdhci_host *host) |
| 2601 | { |
| 2602 | u8 val; |
| 2603 | u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE |
| 2604 | | SDHCI_WAKE_ON_INT; |
| 2605 | |
| 2606 | val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL); |
| 2607 | val |= mask ; |
| 2608 | /* Avoid fake wake up */ |
| 2609 | if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) |
| 2610 | val &= ~(SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE); |
| 2611 | sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL); |
| 2612 | } |
| 2613 | EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups); |
| 2614 | |
Fabio Estevam | 0b10f47 | 2014-08-30 14:53:13 -0300 | [diff] [blame] | 2615 | static void sdhci_disable_irq_wakeups(struct sdhci_host *host) |
Kevin Liu | ad080d7 | 2013-01-05 17:21:33 +0800 | [diff] [blame] | 2616 | { |
| 2617 | u8 val; |
| 2618 | u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE |
| 2619 | | SDHCI_WAKE_ON_INT; |
| 2620 | |
| 2621 | val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL); |
| 2622 | val &= ~mask; |
| 2623 | sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL); |
| 2624 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2625 | |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 2626 | int sdhci_suspend_host(struct sdhci_host *host) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2627 | { |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 2628 | sdhci_disable_card_detection(host); |
| 2629 | |
Adrian Hunter | 66c39dfc | 2015-05-07 13:10:21 +0300 | [diff] [blame] | 2630 | mmc_retune_timer_stop(host->mmc); |
| 2631 | mmc_retune_needed(host->mmc); |
Arindam Nath | cf2b5ee | 2011-05-05 12:19:07 +0530 | [diff] [blame] | 2632 | |
Kevin Liu | ad080d7 | 2013-01-05 17:21:33 +0800 | [diff] [blame] | 2633 | if (!device_may_wakeup(mmc_dev(host->mmc))) { |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 2634 | host->ier = 0; |
| 2635 | sdhci_writel(host, 0, SDHCI_INT_ENABLE); |
| 2636 | sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE); |
Kevin Liu | ad080d7 | 2013-01-05 17:21:33 +0800 | [diff] [blame] | 2637 | free_irq(host->irq, host); |
| 2638 | } else { |
| 2639 | sdhci_enable_irq_wakeups(host); |
| 2640 | enable_irq_wake(host->irq); |
| 2641 | } |
Ulf Hansson | 4ee14ec | 2013-09-25 14:15:24 +0200 | [diff] [blame] | 2642 | return 0; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2643 | } |
| 2644 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2645 | EXPORT_SYMBOL_GPL(sdhci_suspend_host); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2646 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2647 | int sdhci_resume_host(struct sdhci_host *host) |
| 2648 | { |
Ulf Hansson | 4ee14ec | 2013-09-25 14:15:24 +0200 | [diff] [blame] | 2649 | int ret = 0; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2650 | |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 2651 | if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) { |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2652 | if (host->ops->enable_dma) |
| 2653 | host->ops->enable_dma(host); |
| 2654 | } |
| 2655 | |
Adrian Hunter | 6308d29 | 2012-02-07 14:48:54 +0200 | [diff] [blame] | 2656 | if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) && |
| 2657 | (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) { |
| 2658 | /* Card keeps power but host controller does not */ |
| 2659 | sdhci_init(host, 0); |
| 2660 | host->pwr = 0; |
| 2661 | host->clock = 0; |
| 2662 | sdhci_do_set_ios(host, &host->mmc->ios); |
| 2663 | } else { |
| 2664 | sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER)); |
| 2665 | mmiowb(); |
| 2666 | } |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2667 | |
Haibo Chen | 14a7b4164 | 2015-09-15 18:32:58 +0800 | [diff] [blame] | 2668 | if (!device_may_wakeup(mmc_dev(host->mmc))) { |
| 2669 | ret = request_threaded_irq(host->irq, sdhci_irq, |
| 2670 | sdhci_thread_irq, IRQF_SHARED, |
| 2671 | mmc_hostname(host->mmc), host); |
| 2672 | if (ret) |
| 2673 | return ret; |
| 2674 | } else { |
| 2675 | sdhci_disable_irq_wakeups(host); |
| 2676 | disable_irq_wake(host->irq); |
| 2677 | } |
| 2678 | |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 2679 | sdhci_enable_card_detection(host); |
| 2680 | |
Nicolas Pitre | 2f4cbb3 | 2010-03-05 13:43:32 -0800 | [diff] [blame] | 2681 | return ret; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2682 | } |
| 2683 | |
| 2684 | EXPORT_SYMBOL_GPL(sdhci_resume_host); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2685 | |
| 2686 | static int sdhci_runtime_pm_get(struct sdhci_host *host) |
| 2687 | { |
| 2688 | return pm_runtime_get_sync(host->mmc->parent); |
| 2689 | } |
| 2690 | |
| 2691 | static int sdhci_runtime_pm_put(struct sdhci_host *host) |
| 2692 | { |
| 2693 | pm_runtime_mark_last_busy(host->mmc->parent); |
| 2694 | return pm_runtime_put_autosuspend(host->mmc->parent); |
| 2695 | } |
| 2696 | |
Adrian Hunter | f0710a5 | 2013-05-06 12:17:32 +0300 | [diff] [blame] | 2697 | static void sdhci_runtime_pm_bus_on(struct sdhci_host *host) |
| 2698 | { |
Adrian Hunter | 5c671c4 | 2015-11-26 14:00:50 +0200 | [diff] [blame] | 2699 | if (host->bus_on) |
Adrian Hunter | f0710a5 | 2013-05-06 12:17:32 +0300 | [diff] [blame] | 2700 | return; |
| 2701 | host->bus_on = true; |
| 2702 | pm_runtime_get_noresume(host->mmc->parent); |
| 2703 | } |
| 2704 | |
| 2705 | static void sdhci_runtime_pm_bus_off(struct sdhci_host *host) |
| 2706 | { |
Adrian Hunter | 5c671c4 | 2015-11-26 14:00:50 +0200 | [diff] [blame] | 2707 | if (!host->bus_on) |
Adrian Hunter | f0710a5 | 2013-05-06 12:17:32 +0300 | [diff] [blame] | 2708 | return; |
| 2709 | host->bus_on = false; |
| 2710 | pm_runtime_put_noidle(host->mmc->parent); |
| 2711 | } |
| 2712 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2713 | int sdhci_runtime_suspend_host(struct sdhci_host *host) |
| 2714 | { |
| 2715 | unsigned long flags; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2716 | |
Adrian Hunter | 66c39dfc | 2015-05-07 13:10:21 +0300 | [diff] [blame] | 2717 | mmc_retune_timer_stop(host->mmc); |
| 2718 | mmc_retune_needed(host->mmc); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2719 | |
| 2720 | spin_lock_irqsave(&host->lock, flags); |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 2721 | host->ier &= SDHCI_INT_CARD_INT; |
| 2722 | sdhci_writel(host, host->ier, SDHCI_INT_ENABLE); |
| 2723 | sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2724 | spin_unlock_irqrestore(&host->lock, flags); |
| 2725 | |
Russell King | 781e989 | 2014-04-25 12:55:46 +0100 | [diff] [blame] | 2726 | synchronize_hardirq(host->irq); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2727 | |
| 2728 | spin_lock_irqsave(&host->lock, flags); |
| 2729 | host->runtime_suspended = true; |
| 2730 | spin_unlock_irqrestore(&host->lock, flags); |
| 2731 | |
Markus Pargmann | 8a125ba | 2014-06-04 15:24:29 +0200 | [diff] [blame] | 2732 | return 0; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2733 | } |
| 2734 | EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host); |
| 2735 | |
| 2736 | int sdhci_runtime_resume_host(struct sdhci_host *host) |
| 2737 | { |
| 2738 | unsigned long flags; |
Markus Pargmann | 8a125ba | 2014-06-04 15:24:29 +0200 | [diff] [blame] | 2739 | int host_flags = host->flags; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2740 | |
| 2741 | if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) { |
| 2742 | if (host->ops->enable_dma) |
| 2743 | host->ops->enable_dma(host); |
| 2744 | } |
| 2745 | |
| 2746 | sdhci_init(host, 0); |
| 2747 | |
| 2748 | /* Force clock and power re-program */ |
| 2749 | host->pwr = 0; |
| 2750 | host->clock = 0; |
Jisheng Zhang | 3396e73 | 2015-01-29 17:42:12 +0800 | [diff] [blame] | 2751 | sdhci_do_start_signal_voltage_switch(host, &host->mmc->ios); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2752 | sdhci_do_set_ios(host, &host->mmc->ios); |
| 2753 | |
Kevin Liu | 5298338 | 2013-01-31 11:31:37 +0800 | [diff] [blame] | 2754 | if ((host_flags & SDHCI_PV_ENABLED) && |
| 2755 | !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) { |
| 2756 | spin_lock_irqsave(&host->lock, flags); |
| 2757 | sdhci_enable_preset_value(host, true); |
| 2758 | spin_unlock_irqrestore(&host->lock, flags); |
| 2759 | } |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2760 | |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2761 | spin_lock_irqsave(&host->lock, flags); |
| 2762 | |
| 2763 | host->runtime_suspended = false; |
| 2764 | |
| 2765 | /* Enable SDIO IRQ */ |
Russell King | ef10433 | 2014-04-25 12:55:41 +0100 | [diff] [blame] | 2766 | if (host->flags & SDHCI_SDIO_IRQ_ENABLED) |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2767 | sdhci_enable_sdio_irq_nolock(host, true); |
| 2768 | |
| 2769 | /* Enable Card Detection */ |
| 2770 | sdhci_enable_card_detection(host); |
| 2771 | |
| 2772 | spin_unlock_irqrestore(&host->lock, flags); |
| 2773 | |
Markus Pargmann | 8a125ba | 2014-06-04 15:24:29 +0200 | [diff] [blame] | 2774 | return 0; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2775 | } |
| 2776 | EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host); |
| 2777 | |
Rafael J. Wysocki | 162d6f9 | 2014-12-05 03:05:33 +0100 | [diff] [blame] | 2778 | #endif /* CONFIG_PM */ |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2779 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2780 | /*****************************************************************************\ |
| 2781 | * * |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2782 | * Device allocation/registration * |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2783 | * * |
| 2784 | \*****************************************************************************/ |
| 2785 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2786 | struct sdhci_host *sdhci_alloc_host(struct device *dev, |
| 2787 | size_t priv_size) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2788 | { |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2789 | struct mmc_host *mmc; |
| 2790 | struct sdhci_host *host; |
| 2791 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2792 | WARN_ON(dev == NULL); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2793 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2794 | mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2795 | if (!mmc) |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2796 | return ERR_PTR(-ENOMEM); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2797 | |
| 2798 | host = mmc_priv(mmc); |
| 2799 | host->mmc = mmc; |
Adrian Hunter | bf60e59 | 2016-02-09 16:12:35 +0200 | [diff] [blame] | 2800 | host->mmc_host_ops = sdhci_ops; |
| 2801 | mmc->ops = &host->mmc_host_ops; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2802 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2803 | return host; |
| 2804 | } |
Pierre Ossman | 8a4da14 | 2006-10-04 02:15:40 -0700 | [diff] [blame] | 2805 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2806 | EXPORT_SYMBOL_GPL(sdhci_alloc_host); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2807 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2808 | int sdhci_add_host(struct sdhci_host *host) |
| 2809 | { |
| 2810 | struct mmc_host *mmc; |
Philip Rakity | bd6a8c3 | 2012-06-27 21:49:27 -0700 | [diff] [blame] | 2811 | u32 caps[2] = {0, 0}; |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 2812 | u32 max_current_caps; |
| 2813 | unsigned int ocr_avail; |
Adrian Hunter | f5fa92e | 2014-09-24 10:27:32 +0300 | [diff] [blame] | 2814 | unsigned int override_timeout_clk; |
Dong Aisheng | 5924175 | 2015-07-22 20:53:07 +0800 | [diff] [blame] | 2815 | u32 max_clk; |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2816 | int ret; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2817 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2818 | WARN_ON(host == NULL); |
| 2819 | if (host == NULL) |
| 2820 | return -EINVAL; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2821 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2822 | mmc = host->mmc; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2823 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2824 | if (debug_quirks) |
| 2825 | host->quirks = debug_quirks; |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 2826 | if (debug_quirks2) |
| 2827 | host->quirks2 = debug_quirks2; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2828 | |
Adrian Hunter | f5fa92e | 2014-09-24 10:27:32 +0300 | [diff] [blame] | 2829 | override_timeout_clk = host->timeout_clk; |
| 2830 | |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 2831 | sdhci_do_reset(host, SDHCI_RESET_ALL); |
Pierre Ossman | d96649e | 2006-06-30 02:22:30 -0700 | [diff] [blame] | 2832 | |
Anton Vorontsov | 4e4141a | 2009-03-17 00:13:46 +0300 | [diff] [blame] | 2833 | host->version = sdhci_readw(host, SDHCI_HOST_VERSION); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 2834 | host->version = (host->version & SDHCI_SPEC_VER_MASK) |
| 2835 | >> SDHCI_SPEC_VER_SHIFT; |
Zhangfei Gao | 85105c5 | 2010-08-06 07:10:01 +0800 | [diff] [blame] | 2836 | if (host->version > SDHCI_SPEC_300) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 2837 | pr_err("%s: Unknown controller version (%d). You may experience problems.\n", |
| 2838 | mmc_hostname(mmc), host->version); |
Pierre Ossman | 4a96550 | 2006-06-30 02:22:29 -0700 | [diff] [blame] | 2839 | } |
| 2840 | |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 2841 | caps[0] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? host->caps : |
Maxim Levitsky | ccc92c2 | 2010-08-10 18:01:42 -0700 | [diff] [blame] | 2842 | sdhci_readl(host, SDHCI_CAPABILITIES); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2843 | |
Philip Rakity | bd6a8c3 | 2012-06-27 21:49:27 -0700 | [diff] [blame] | 2844 | if (host->version >= SDHCI_SPEC_300) |
| 2845 | caps[1] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? |
| 2846 | host->caps1 : |
| 2847 | sdhci_readl(host, SDHCI_CAPABILITIES_1); |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 2848 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2849 | if (host->quirks & SDHCI_QUIRK_FORCE_DMA) |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 2850 | host->flags |= SDHCI_USE_SDMA; |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 2851 | else if (!(caps[0] & SDHCI_CAN_DO_SDMA)) |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 2852 | DBG("Controller doesn't have SDMA capability\n"); |
Pierre Ossman | 6743527 | 2006-06-30 02:22:31 -0700 | [diff] [blame] | 2853 | else |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 2854 | host->flags |= SDHCI_USE_SDMA; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2855 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2856 | if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) && |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 2857 | (host->flags & SDHCI_USE_SDMA)) { |
Rolf Eike Beer | cee687c | 2007-11-02 15:22:30 +0100 | [diff] [blame] | 2858 | DBG("Disabling DMA as it is marked broken\n"); |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 2859 | host->flags &= ~SDHCI_USE_SDMA; |
Feng Tang | 7c168e3 | 2007-09-30 12:44:18 +0200 | [diff] [blame] | 2860 | } |
| 2861 | |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 2862 | if ((host->version >= SDHCI_SPEC_200) && |
| 2863 | (caps[0] & SDHCI_CAN_DO_ADMA2)) |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 2864 | host->flags |= SDHCI_USE_ADMA; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 2865 | |
| 2866 | if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) && |
| 2867 | (host->flags & SDHCI_USE_ADMA)) { |
| 2868 | DBG("Disabling ADMA as it is marked broken\n"); |
| 2869 | host->flags &= ~SDHCI_USE_ADMA; |
| 2870 | } |
| 2871 | |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 2872 | /* |
| 2873 | * It is assumed that a 64-bit capable device has set a 64-bit DMA mask |
| 2874 | * and *must* do 64-bit DMA. A driver has the opportunity to change |
| 2875 | * that during the first call to ->enable_dma(). Similarly |
| 2876 | * SDHCI_QUIRK2_BROKEN_64_BIT_DMA must be left to the drivers to |
| 2877 | * implement. |
| 2878 | */ |
Al Cooper | 5eaa747 | 2016-02-10 15:25:39 -0500 | [diff] [blame] | 2879 | if (caps[0] & SDHCI_CAN_64BIT) |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 2880 | host->flags |= SDHCI_USE_64_BIT_DMA; |
| 2881 | |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 2882 | if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) { |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2883 | if (host->ops->enable_dma) { |
| 2884 | if (host->ops->enable_dma(host)) { |
Joe Perches | 6606110 | 2014-09-12 14:56:56 -0700 | [diff] [blame] | 2885 | pr_warn("%s: No suitable DMA available - falling back to PIO\n", |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2886 | mmc_hostname(mmc)); |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 2887 | host->flags &= |
| 2888 | ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 2889 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2890 | } |
| 2891 | } |
| 2892 | |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 2893 | /* SDMA does not support 64-bit DMA */ |
| 2894 | if (host->flags & SDHCI_USE_64_BIT_DMA) |
| 2895 | host->flags &= ~SDHCI_USE_SDMA; |
| 2896 | |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 2897 | if (host->flags & SDHCI_USE_ADMA) { |
Russell King | e66e61c | 2016-01-26 13:39:55 +0000 | [diff] [blame] | 2898 | dma_addr_t dma; |
| 2899 | void *buf; |
| 2900 | |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 2901 | /* |
Adrian Hunter | 76fe379 | 2014-11-04 12:42:42 +0200 | [diff] [blame] | 2902 | * The DMA descriptor table size is calculated as the maximum |
| 2903 | * number of segments times 2, to allow for an alignment |
| 2904 | * descriptor for each segment, plus 1 for a nop end descriptor, |
| 2905 | * all multipled by the descriptor size. |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 2906 | */ |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 2907 | if (host->flags & SDHCI_USE_64_BIT_DMA) { |
| 2908 | host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) * |
| 2909 | SDHCI_ADMA2_64_DESC_SZ; |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 2910 | host->desc_sz = SDHCI_ADMA2_64_DESC_SZ; |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 2911 | } else { |
| 2912 | host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) * |
| 2913 | SDHCI_ADMA2_32_DESC_SZ; |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 2914 | host->desc_sz = SDHCI_ADMA2_32_DESC_SZ; |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 2915 | } |
Russell King | e66e61c | 2016-01-26 13:39:55 +0000 | [diff] [blame] | 2916 | |
Adrian Hunter | 04a5ae6 | 2015-11-26 14:00:49 +0200 | [diff] [blame] | 2917 | host->align_buffer_sz = SDHCI_MAX_SEGS * SDHCI_ADMA2_ALIGN; |
Russell King | e66e61c | 2016-01-26 13:39:55 +0000 | [diff] [blame] | 2918 | buf = dma_alloc_coherent(mmc_dev(mmc), host->align_buffer_sz + |
| 2919 | host->adma_table_sz, &dma, GFP_KERNEL); |
| 2920 | if (!buf) { |
Joe Perches | 6606110 | 2014-09-12 14:56:56 -0700 | [diff] [blame] | 2921 | pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n", |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 2922 | mmc_hostname(mmc)); |
| 2923 | host->flags &= ~SDHCI_USE_ADMA; |
Russell King | e66e61c | 2016-01-26 13:39:55 +0000 | [diff] [blame] | 2924 | } else if ((dma + host->align_buffer_sz) & |
| 2925 | (SDHCI_ADMA2_DESC_ALIGN - 1)) { |
Joe Perches | 6606110 | 2014-09-12 14:56:56 -0700 | [diff] [blame] | 2926 | pr_warn("%s: unable to allocate aligned ADMA descriptor\n", |
| 2927 | mmc_hostname(mmc)); |
Russell King | d1e49f7 | 2014-04-25 12:58:34 +0100 | [diff] [blame] | 2928 | host->flags &= ~SDHCI_USE_ADMA; |
Russell King | e66e61c | 2016-01-26 13:39:55 +0000 | [diff] [blame] | 2929 | dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz + |
| 2930 | host->adma_table_sz, buf, dma); |
| 2931 | } else { |
| 2932 | host->align_buffer = buf; |
| 2933 | host->align_addr = dma; |
Russell King | edd63fc | 2016-01-26 13:39:50 +0000 | [diff] [blame] | 2934 | |
Russell King | e66e61c | 2016-01-26 13:39:55 +0000 | [diff] [blame] | 2935 | host->adma_table = buf + host->align_buffer_sz; |
| 2936 | host->adma_addr = dma + host->align_buffer_sz; |
| 2937 | } |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 2938 | } |
| 2939 | |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 2940 | /* |
| 2941 | * If we use DMA, then it's up to the caller to set the DMA |
| 2942 | * mask, but PIO does not need the hw shim so we set a new |
| 2943 | * mask here in that case. |
| 2944 | */ |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 2945 | if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) { |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 2946 | host->dma_mask = DMA_BIT_MASK(64); |
Markus Mayer | 4e743f1 | 2014-07-03 13:27:42 -0700 | [diff] [blame] | 2947 | mmc_dev(mmc)->dma_mask = &host->dma_mask; |
Pierre Ossman | 7659150 | 2008-07-21 00:32:11 +0200 | [diff] [blame] | 2948 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2949 | |
Zhangfei Gao | c4687d5 | 2010-08-20 14:02:36 -0400 | [diff] [blame] | 2950 | if (host->version >= SDHCI_SPEC_300) |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 2951 | host->max_clk = (caps[0] & SDHCI_CLOCK_V3_BASE_MASK) |
Zhangfei Gao | c4687d5 | 2010-08-20 14:02:36 -0400 | [diff] [blame] | 2952 | >> SDHCI_CLOCK_BASE_SHIFT; |
| 2953 | else |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 2954 | host->max_clk = (caps[0] & SDHCI_CLOCK_BASE_MASK) |
Zhangfei Gao | c4687d5 | 2010-08-20 14:02:36 -0400 | [diff] [blame] | 2955 | >> SDHCI_CLOCK_BASE_SHIFT; |
| 2956 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2957 | host->max_clk *= 1000000; |
Anton Vorontsov | f27f47e | 2010-05-26 14:41:53 -0700 | [diff] [blame] | 2958 | if (host->max_clk == 0 || host->quirks & |
| 2959 | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) { |
Ben Dooks | 4240ff0 | 2009-03-17 00:13:57 +0300 | [diff] [blame] | 2960 | if (!host->ops->get_max_clock) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 2961 | pr_err("%s: Hardware doesn't specify base clock frequency.\n", |
| 2962 | mmc_hostname(mmc)); |
Ben Dooks | 4240ff0 | 2009-03-17 00:13:57 +0300 | [diff] [blame] | 2963 | return -ENODEV; |
| 2964 | } |
| 2965 | host->max_clk = host->ops->get_max_clock(host); |
| 2966 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2967 | |
| 2968 | /* |
Arindam Nath | c3ed387 | 2011-05-05 12:19:06 +0530 | [diff] [blame] | 2969 | * In case of Host Controller v3.00, find out whether clock |
| 2970 | * multiplier is supported. |
| 2971 | */ |
| 2972 | host->clk_mul = (caps[1] & SDHCI_CLOCK_MUL_MASK) >> |
| 2973 | SDHCI_CLOCK_MUL_SHIFT; |
| 2974 | |
| 2975 | /* |
| 2976 | * In case the value in Clock Multiplier is 0, then programmable |
| 2977 | * clock mode is not supported, otherwise the actual clock |
| 2978 | * multiplier is one more than the value of Clock Multiplier |
| 2979 | * in the Capabilities Register. |
| 2980 | */ |
| 2981 | if (host->clk_mul) |
| 2982 | host->clk_mul += 1; |
| 2983 | |
| 2984 | /* |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 2985 | * Set host parameters. |
| 2986 | */ |
Dong Aisheng | 5924175 | 2015-07-22 20:53:07 +0800 | [diff] [blame] | 2987 | max_clk = host->max_clk; |
| 2988 | |
Marek Szyprowski | ce5f036 | 2010-08-10 18:01:56 -0700 | [diff] [blame] | 2989 | if (host->ops->get_min_clock) |
Anton Vorontsov | a9e58f2 | 2009-07-29 15:04:16 -0700 | [diff] [blame] | 2990 | mmc->f_min = host->ops->get_min_clock(host); |
Arindam Nath | c3ed387 | 2011-05-05 12:19:06 +0530 | [diff] [blame] | 2991 | else if (host->version >= SDHCI_SPEC_300) { |
| 2992 | if (host->clk_mul) { |
| 2993 | mmc->f_min = (host->max_clk * host->clk_mul) / 1024; |
Dong Aisheng | 5924175 | 2015-07-22 20:53:07 +0800 | [diff] [blame] | 2994 | max_clk = host->max_clk * host->clk_mul; |
Arindam Nath | c3ed387 | 2011-05-05 12:19:06 +0530 | [diff] [blame] | 2995 | } else |
| 2996 | mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300; |
| 2997 | } else |
Zhangfei Gao | 0397526 | 2010-09-20 15:15:18 -0400 | [diff] [blame] | 2998 | mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200; |
Philip Rakity | 15ec446 | 2010-11-19 16:48:39 -0500 | [diff] [blame] | 2999 | |
Dong Aisheng | 5924175 | 2015-07-22 20:53:07 +0800 | [diff] [blame] | 3000 | if (!mmc->f_max || (mmc->f_max && (mmc->f_max > max_clk))) |
| 3001 | mmc->f_max = max_clk; |
| 3002 | |
Aisheng Dong | 28aab05 | 2014-08-27 15:26:31 +0800 | [diff] [blame] | 3003 | if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) { |
| 3004 | host->timeout_clk = (caps[0] & SDHCI_TIMEOUT_CLK_MASK) >> |
| 3005 | SDHCI_TIMEOUT_CLK_SHIFT; |
| 3006 | if (host->timeout_clk == 0) { |
| 3007 | if (host->ops->get_timeout_clock) { |
| 3008 | host->timeout_clk = |
| 3009 | host->ops->get_timeout_clock(host); |
| 3010 | } else { |
| 3011 | pr_err("%s: Hardware doesn't specify timeout clock frequency.\n", |
| 3012 | mmc_hostname(mmc)); |
| 3013 | return -ENODEV; |
| 3014 | } |
Andy Shevchenko | 272308c | 2011-08-03 18:36:00 +0300 | [diff] [blame] | 3015 | } |
Andy Shevchenko | 272308c | 2011-08-03 18:36:00 +0300 | [diff] [blame] | 3016 | |
Aisheng Dong | 28aab05 | 2014-08-27 15:26:31 +0800 | [diff] [blame] | 3017 | if (caps[0] & SDHCI_TIMEOUT_CLK_UNIT) |
| 3018 | host->timeout_clk *= 1000; |
Andy Shevchenko | 272308c | 2011-08-03 18:36:00 +0300 | [diff] [blame] | 3019 | |
Aisheng Dong | 28aab05 | 2014-08-27 15:26:31 +0800 | [diff] [blame] | 3020 | mmc->max_busy_timeout = host->ops->get_max_timeout_count ? |
Aisheng Dong | a6ff5ae | 2014-08-27 15:26:27 +0800 | [diff] [blame] | 3021 | host->ops->get_max_timeout_count(host) : 1 << 27; |
Aisheng Dong | 28aab05 | 2014-08-27 15:26:31 +0800 | [diff] [blame] | 3022 | mmc->max_busy_timeout /= host->timeout_clk; |
| 3023 | } |
Adrian Hunter | 58d1246 | 2011-06-28 17:16:03 +0300 | [diff] [blame] | 3024 | |
Adrian Hunter | f5fa92e | 2014-09-24 10:27:32 +0300 | [diff] [blame] | 3025 | if (override_timeout_clk) |
| 3026 | host->timeout_clk = override_timeout_clk; |
| 3027 | |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 3028 | mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23; |
Russell King | 781e989 | 2014-04-25 12:55:46 +0100 | [diff] [blame] | 3029 | mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD; |
Andrei Warkentin | e89d456 | 2011-05-23 15:06:37 -0500 | [diff] [blame] | 3030 | |
| 3031 | if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12) |
| 3032 | host->flags |= SDHCI_AUTO_CMD12; |
Anton Vorontsov | 5fe23c7 | 2009-06-18 00:14:08 +0400 | [diff] [blame] | 3033 | |
Andrei Warkentin | 8edf6371 | 2011-05-23 15:06:39 -0500 | [diff] [blame] | 3034 | /* Auto-CMD23 stuff only works in ADMA or PIO. */ |
Andrei Warkentin | 4f3d3e9 | 2011-05-25 10:42:50 -0400 | [diff] [blame] | 3035 | if ((host->version >= SDHCI_SPEC_300) && |
Andrei Warkentin | 8edf6371 | 2011-05-23 15:06:39 -0500 | [diff] [blame] | 3036 | ((host->flags & SDHCI_USE_ADMA) || |
Scott Branden | 3bfa6f0 | 2015-02-09 16:06:28 -0800 | [diff] [blame] | 3037 | !(host->flags & SDHCI_USE_SDMA)) && |
| 3038 | !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) { |
Andrei Warkentin | 8edf6371 | 2011-05-23 15:06:39 -0500 | [diff] [blame] | 3039 | host->flags |= SDHCI_AUTO_CMD23; |
| 3040 | DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc)); |
| 3041 | } else { |
| 3042 | DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc)); |
| 3043 | } |
| 3044 | |
Philip Rakity | 15ec446 | 2010-11-19 16:48:39 -0500 | [diff] [blame] | 3045 | /* |
| 3046 | * A controller may support 8-bit width, but the board itself |
| 3047 | * might not have the pins brought out. Boards that support |
| 3048 | * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in |
| 3049 | * their platform code before calling sdhci_add_host(), and we |
| 3050 | * won't assume 8-bit width for hosts without that CAP. |
| 3051 | */ |
Anton Vorontsov | 5fe23c7 | 2009-06-18 00:14:08 +0400 | [diff] [blame] | 3052 | if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA)) |
Philip Rakity | 15ec446 | 2010-11-19 16:48:39 -0500 | [diff] [blame] | 3053 | mmc->caps |= MMC_CAP_4_BIT_DATA; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3054 | |
Jerry Huang | 63ef5d8 | 2012-10-25 13:47:19 +0800 | [diff] [blame] | 3055 | if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23) |
| 3056 | mmc->caps &= ~MMC_CAP_CMD23; |
| 3057 | |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3058 | if (caps[0] & SDHCI_CAN_DO_HISPD) |
Zhangfei Gao | a29e7e1 | 2010-08-16 21:15:32 -0400 | [diff] [blame] | 3059 | mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED; |
Pierre Ossman | cd9277c | 2007-02-18 12:07:47 +0100 | [diff] [blame] | 3060 | |
Jaehoon Chung | 176d1ed | 2010-09-27 09:42:20 +0100 | [diff] [blame] | 3061 | if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) && |
Ivan T. Ivanov | c31d22e | 2015-07-06 15:16:20 +0300 | [diff] [blame] | 3062 | !(mmc->caps & MMC_CAP_NONREMOVABLE) && |
| 3063 | IS_ERR_VALUE(mmc_gpio_get_cd(host->mmc))) |
Anton Vorontsov | 68d1fb7 | 2009-03-17 00:13:52 +0300 | [diff] [blame] | 3064 | mmc->caps |= MMC_CAP_NEEDS_POLL; |
| 3065 | |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 3066 | /* If there are external regulators, get them */ |
| 3067 | if (mmc_regulator_get_supply(mmc) == -EPROBE_DEFER) |
| 3068 | return -EPROBE_DEFER; |
| 3069 | |
Philip Rakity | 6231f3d | 2012-07-23 15:56:23 -0700 | [diff] [blame] | 3070 | /* If vqmmc regulator and no 1.8V signalling, then there's no UHS */ |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 3071 | if (!IS_ERR(mmc->supply.vqmmc)) { |
| 3072 | ret = regulator_enable(mmc->supply.vqmmc); |
| 3073 | if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000, |
| 3074 | 1950000)) |
Kevin Liu | 8363c37 | 2012-11-17 17:55:51 -0500 | [diff] [blame] | 3075 | caps[1] &= ~(SDHCI_SUPPORT_SDR104 | |
| 3076 | SDHCI_SUPPORT_SDR50 | |
| 3077 | SDHCI_SUPPORT_DDR50); |
Chris Ball | a3361ab | 2013-03-11 17:51:53 -0400 | [diff] [blame] | 3078 | if (ret) { |
| 3079 | pr_warn("%s: Failed to enable vqmmc regulator: %d\n", |
| 3080 | mmc_hostname(mmc), ret); |
Adrian Hunter | 4bb7431 | 2014-11-06 15:19:04 +0200 | [diff] [blame] | 3081 | mmc->supply.vqmmc = ERR_PTR(-EINVAL); |
Chris Ball | a3361ab | 2013-03-11 17:51:53 -0400 | [diff] [blame] | 3082 | } |
Kevin Liu | 8363c37 | 2012-11-17 17:55:51 -0500 | [diff] [blame] | 3083 | } |
Philip Rakity | 6231f3d | 2012-07-23 15:56:23 -0700 | [diff] [blame] | 3084 | |
Daniel Drake | 6a66180 | 2012-11-25 13:01:19 -0500 | [diff] [blame] | 3085 | if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V) |
| 3086 | caps[1] &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 | |
| 3087 | SDHCI_SUPPORT_DDR50); |
| 3088 | |
Al Cooper | 4188bba | 2012-03-16 15:54:17 -0400 | [diff] [blame] | 3089 | /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */ |
| 3090 | if (caps[1] & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 | |
| 3091 | SDHCI_SUPPORT_DDR50)) |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3092 | mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25; |
| 3093 | |
| 3094 | /* SDR104 supports also implies SDR50 support */ |
Giuseppe CAVALLARO | 156e14b | 2013-06-12 08:16:38 +0200 | [diff] [blame] | 3095 | if (caps[1] & SDHCI_SUPPORT_SDR104) { |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3096 | mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50; |
Giuseppe CAVALLARO | 156e14b | 2013-06-12 08:16:38 +0200 | [diff] [blame] | 3097 | /* SD3.0: SDR104 is supported so (for eMMC) the caps2 |
| 3098 | * field can be promoted to support HS200. |
| 3099 | */ |
Adrian Hunter | 549c0b1 | 2014-11-06 15:19:05 +0200 | [diff] [blame] | 3100 | if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200)) |
David Cohen | 13868bf | 2013-10-29 10:58:26 -0700 | [diff] [blame] | 3101 | mmc->caps2 |= MMC_CAP2_HS200; |
Giuseppe CAVALLARO | 156e14b | 2013-06-12 08:16:38 +0200 | [diff] [blame] | 3102 | } else if (caps[1] & SDHCI_SUPPORT_SDR50) |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3103 | mmc->caps |= MMC_CAP_UHS_SDR50; |
| 3104 | |
Adrian Hunter | e9fb05d | 2014-11-06 15:19:06 +0200 | [diff] [blame] | 3105 | if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 && |
| 3106 | (caps[1] & SDHCI_SUPPORT_HS400)) |
| 3107 | mmc->caps2 |= MMC_CAP2_HS400; |
| 3108 | |
Adrian Hunter | 549c0b1 | 2014-11-06 15:19:05 +0200 | [diff] [blame] | 3109 | if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) && |
| 3110 | (IS_ERR(mmc->supply.vqmmc) || |
| 3111 | !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000, |
| 3112 | 1300000))) |
| 3113 | mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V; |
| 3114 | |
Micky Ching | 9107ebb | 2014-02-21 18:40:35 +0800 | [diff] [blame] | 3115 | if ((caps[1] & SDHCI_SUPPORT_DDR50) && |
| 3116 | !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50)) |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3117 | mmc->caps |= MMC_CAP_UHS_DDR50; |
| 3118 | |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 3119 | /* Does the host need tuning for SDR50? */ |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 3120 | if (caps[1] & SDHCI_USE_SDR50_TUNING) |
| 3121 | host->flags |= SDHCI_SDR50_NEEDS_TUNING; |
| 3122 | |
Giuseppe CAVALLARO | 156e14b | 2013-06-12 08:16:38 +0200 | [diff] [blame] | 3123 | /* Does the host need tuning for SDR104 / HS200? */ |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 3124 | if (mmc->caps2 & MMC_CAP2_HS200) |
Giuseppe CAVALLARO | 156e14b | 2013-06-12 08:16:38 +0200 | [diff] [blame] | 3125 | host->flags |= SDHCI_SDR104_NEEDS_TUNING; |
Girish K S | 069c9f1 | 2012-01-06 09:56:39 +0530 | [diff] [blame] | 3126 | |
Arindam Nath | d6d50a1 | 2011-05-05 12:18:59 +0530 | [diff] [blame] | 3127 | /* Driver Type(s) (A, C, D) supported by the host */ |
| 3128 | if (caps[1] & SDHCI_DRIVER_TYPE_A) |
| 3129 | mmc->caps |= MMC_CAP_DRIVER_TYPE_A; |
| 3130 | if (caps[1] & SDHCI_DRIVER_TYPE_C) |
| 3131 | mmc->caps |= MMC_CAP_DRIVER_TYPE_C; |
| 3132 | if (caps[1] & SDHCI_DRIVER_TYPE_D) |
| 3133 | mmc->caps |= MMC_CAP_DRIVER_TYPE_D; |
| 3134 | |
Arindam Nath | cf2b5ee | 2011-05-05 12:19:07 +0530 | [diff] [blame] | 3135 | /* Initial value for re-tuning timer count */ |
| 3136 | host->tuning_count = (caps[1] & SDHCI_RETUNING_TIMER_COUNT_MASK) >> |
| 3137 | SDHCI_RETUNING_TIMER_COUNT_SHIFT; |
| 3138 | |
| 3139 | /* |
| 3140 | * In case Re-tuning Timer is not disabled, the actual value of |
| 3141 | * re-tuning timer will be 2 ^ (n - 1). |
| 3142 | */ |
| 3143 | if (host->tuning_count) |
| 3144 | host->tuning_count = 1 << (host->tuning_count - 1); |
| 3145 | |
| 3146 | /* Re-tuning mode supported by the Host Controller */ |
| 3147 | host->tuning_mode = (caps[1] & SDHCI_RETUNING_MODE_MASK) >> |
| 3148 | SDHCI_RETUNING_MODE_SHIFT; |
| 3149 | |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 3150 | ocr_avail = 0; |
Philip Rakity | bad37e1 | 2012-05-27 18:36:44 -0700 | [diff] [blame] | 3151 | |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3152 | /* |
| 3153 | * According to SD Host Controller spec v3.00, if the Host System |
| 3154 | * can afford more than 150mA, Host Driver should set XPC to 1. Also |
| 3155 | * the value is meaningful only if Voltage Support in the Capabilities |
| 3156 | * register is set. The actual current value is 4 times the register |
| 3157 | * value. |
| 3158 | */ |
| 3159 | max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT); |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 3160 | if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) { |
Chuanxiao.Dong | ae90603 | 2014-08-01 14:00:13 +0800 | [diff] [blame] | 3161 | int curr = regulator_get_current_limit(mmc->supply.vmmc); |
Philip Rakity | bad37e1 | 2012-05-27 18:36:44 -0700 | [diff] [blame] | 3162 | if (curr > 0) { |
| 3163 | |
| 3164 | /* convert to SDHCI_MAX_CURRENT format */ |
| 3165 | curr = curr/1000; /* convert to mA */ |
| 3166 | curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER; |
| 3167 | |
| 3168 | curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT); |
| 3169 | max_current_caps = |
| 3170 | (curr << SDHCI_MAX_CURRENT_330_SHIFT) | |
| 3171 | (curr << SDHCI_MAX_CURRENT_300_SHIFT) | |
| 3172 | (curr << SDHCI_MAX_CURRENT_180_SHIFT); |
| 3173 | } |
| 3174 | } |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3175 | |
| 3176 | if (caps[0] & SDHCI_CAN_VDD_330) { |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 3177 | ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34; |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3178 | |
Aaron Lu | 55c4665 | 2012-07-04 13:31:48 +0800 | [diff] [blame] | 3179 | mmc->max_current_330 = ((max_current_caps & |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3180 | SDHCI_MAX_CURRENT_330_MASK) >> |
| 3181 | SDHCI_MAX_CURRENT_330_SHIFT) * |
| 3182 | SDHCI_MAX_CURRENT_MULTIPLIER; |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3183 | } |
| 3184 | if (caps[0] & SDHCI_CAN_VDD_300) { |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 3185 | ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31; |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3186 | |
Aaron Lu | 55c4665 | 2012-07-04 13:31:48 +0800 | [diff] [blame] | 3187 | mmc->max_current_300 = ((max_current_caps & |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3188 | SDHCI_MAX_CURRENT_300_MASK) >> |
| 3189 | SDHCI_MAX_CURRENT_300_SHIFT) * |
| 3190 | SDHCI_MAX_CURRENT_MULTIPLIER; |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3191 | } |
| 3192 | if (caps[0] & SDHCI_CAN_VDD_180) { |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 3193 | ocr_avail |= MMC_VDD_165_195; |
| 3194 | |
Aaron Lu | 55c4665 | 2012-07-04 13:31:48 +0800 | [diff] [blame] | 3195 | mmc->max_current_180 = ((max_current_caps & |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3196 | SDHCI_MAX_CURRENT_180_MASK) >> |
| 3197 | SDHCI_MAX_CURRENT_180_SHIFT) * |
| 3198 | SDHCI_MAX_CURRENT_MULTIPLIER; |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3199 | } |
| 3200 | |
Ulf Hansson | 5fd26c7 | 2015-06-05 11:40:08 +0200 | [diff] [blame] | 3201 | /* If OCR set by host, use it instead. */ |
| 3202 | if (host->ocr_mask) |
| 3203 | ocr_avail = host->ocr_mask; |
| 3204 | |
| 3205 | /* If OCR set by external regulators, give it highest prio. */ |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 3206 | if (mmc->ocr_avail) |
Tim Kryger | 5222161 | 2014-06-25 00:25:34 -0700 | [diff] [blame] | 3207 | ocr_avail = mmc->ocr_avail; |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 3208 | |
Takashi Iwai | 8f230f4 | 2010-12-08 10:04:30 +0100 | [diff] [blame] | 3209 | mmc->ocr_avail = ocr_avail; |
| 3210 | mmc->ocr_avail_sdio = ocr_avail; |
| 3211 | if (host->ocr_avail_sdio) |
| 3212 | mmc->ocr_avail_sdio &= host->ocr_avail_sdio; |
| 3213 | mmc->ocr_avail_sd = ocr_avail; |
| 3214 | if (host->ocr_avail_sd) |
| 3215 | mmc->ocr_avail_sd &= host->ocr_avail_sd; |
| 3216 | else /* normal SD controllers don't support 1.8V */ |
| 3217 | mmc->ocr_avail_sd &= ~MMC_VDD_165_195; |
| 3218 | mmc->ocr_avail_mmc = ocr_avail; |
| 3219 | if (host->ocr_avail_mmc) |
| 3220 | mmc->ocr_avail_mmc &= host->ocr_avail_mmc; |
Pierre Ossman | 146ad66 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 3221 | |
| 3222 | if (mmc->ocr_avail == 0) { |
Marek Vasut | 2e4456f | 2015-11-18 10:47:02 +0100 | [diff] [blame] | 3223 | pr_err("%s: Hardware doesn't report any support voltages.\n", |
| 3224 | mmc_hostname(mmc)); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 3225 | return -ENODEV; |
Pierre Ossman | 146ad66 | 2006-06-30 02:22:23 -0700 | [diff] [blame] | 3226 | } |
| 3227 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3228 | spin_lock_init(&host->lock); |
| 3229 | |
| 3230 | /* |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 3231 | * Maximum number of segments. Depends on if the hardware |
| 3232 | * can do scatter/gather or not. |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3233 | */ |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 3234 | if (host->flags & SDHCI_USE_ADMA) |
Adrian Hunter | 4fb213f | 2014-11-04 12:42:43 +0200 | [diff] [blame] | 3235 | mmc->max_segs = SDHCI_MAX_SEGS; |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 3236 | else if (host->flags & SDHCI_USE_SDMA) |
Martin K. Petersen | a36274e | 2010-09-10 01:33:59 -0400 | [diff] [blame] | 3237 | mmc->max_segs = 1; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 3238 | else /* PIO */ |
Adrian Hunter | 4fb213f | 2014-11-04 12:42:43 +0200 | [diff] [blame] | 3239 | mmc->max_segs = SDHCI_MAX_SEGS; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3240 | |
| 3241 | /* |
Adrian Hunter | ac00531 | 2014-12-05 19:25:28 +0200 | [diff] [blame] | 3242 | * Maximum number of sectors in one transfer. Limited by SDMA boundary |
| 3243 | * size (512KiB). Note some tuning modes impose a 4MiB limit, but this |
| 3244 | * is less anyway. |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3245 | */ |
Pierre Ossman | 55db890 | 2006-11-21 17:55:45 +0100 | [diff] [blame] | 3246 | mmc->max_req_size = 524288; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3247 | |
| 3248 | /* |
| 3249 | * Maximum segment size. Could be one segment with the maximum number |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 3250 | * of bytes. When doing hardware scatter/gather, each entry cannot |
| 3251 | * be larger than 64 KiB though. |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3252 | */ |
Olof Johansson | 30652aa | 2011-01-01 18:37:32 -0600 | [diff] [blame] | 3253 | if (host->flags & SDHCI_USE_ADMA) { |
| 3254 | if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC) |
| 3255 | mmc->max_seg_size = 65535; |
| 3256 | else |
| 3257 | mmc->max_seg_size = 65536; |
| 3258 | } else { |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 3259 | mmc->max_seg_size = mmc->max_req_size; |
Olof Johansson | 30652aa | 2011-01-01 18:37:32 -0600 | [diff] [blame] | 3260 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3261 | |
| 3262 | /* |
Pierre Ossman | fe4a3c7 | 2006-11-21 17:54:23 +0100 | [diff] [blame] | 3263 | * Maximum block size. This varies from controller to controller and |
| 3264 | * is specified in the capabilities register. |
| 3265 | */ |
Anton Vorontsov | 0633f65 | 2009-03-17 00:14:03 +0300 | [diff] [blame] | 3266 | if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) { |
| 3267 | mmc->max_blk_size = 2; |
| 3268 | } else { |
Arindam Nath | f2119df | 2011-05-05 12:18:57 +0530 | [diff] [blame] | 3269 | mmc->max_blk_size = (caps[0] & SDHCI_MAX_BLOCK_MASK) >> |
Anton Vorontsov | 0633f65 | 2009-03-17 00:14:03 +0300 | [diff] [blame] | 3270 | SDHCI_MAX_BLOCK_SHIFT; |
| 3271 | if (mmc->max_blk_size >= 3) { |
Joe Perches | 6606110 | 2014-09-12 14:56:56 -0700 | [diff] [blame] | 3272 | pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n", |
| 3273 | mmc_hostname(mmc)); |
Anton Vorontsov | 0633f65 | 2009-03-17 00:14:03 +0300 | [diff] [blame] | 3274 | mmc->max_blk_size = 0; |
| 3275 | } |
| 3276 | } |
| 3277 | |
| 3278 | mmc->max_blk_size = 512 << mmc->max_blk_size; |
Pierre Ossman | fe4a3c7 | 2006-11-21 17:54:23 +0100 | [diff] [blame] | 3279 | |
| 3280 | /* |
Pierre Ossman | 55db890 | 2006-11-21 17:55:45 +0100 | [diff] [blame] | 3281 | * Maximum block count. |
| 3282 | */ |
Ben Dooks | 1388eef | 2009-06-14 12:40:53 +0100 | [diff] [blame] | 3283 | mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535; |
Pierre Ossman | 55db890 | 2006-11-21 17:55:45 +0100 | [diff] [blame] | 3284 | |
| 3285 | /* |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3286 | * Init tasklets. |
| 3287 | */ |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3288 | tasklet_init(&host->finish_tasklet, |
| 3289 | sdhci_tasklet_finish, (unsigned long)host); |
| 3290 | |
Al Viro | e4cad1b | 2006-10-10 22:47:07 +0100 | [diff] [blame] | 3291 | setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3292 | |
Adrian Hunter | 250fb7b4 | 2014-12-05 19:41:10 +0200 | [diff] [blame] | 3293 | init_waitqueue_head(&host->buf_ready_int); |
Arindam Nath | b513ea2 | 2011-05-05 12:19:04 +0530 | [diff] [blame] | 3294 | |
Shawn Guo | 2af502c | 2013-07-05 14:38:55 +0800 | [diff] [blame] | 3295 | sdhci_init(host, 0); |
| 3296 | |
Russell King | 781e989 | 2014-04-25 12:55:46 +0100 | [diff] [blame] | 3297 | ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq, |
| 3298 | IRQF_SHARED, mmc_hostname(mmc), host); |
Mark Brown | 0fc81ee | 2012-07-02 14:26:15 +0100 | [diff] [blame] | 3299 | if (ret) { |
| 3300 | pr_err("%s: Failed to request IRQ %d: %d\n", |
| 3301 | mmc_hostname(mmc), host->irq, ret); |
Pierre Ossman | 8ef1a14 | 2006-06-30 02:22:21 -0700 | [diff] [blame] | 3302 | goto untasklet; |
Mark Brown | 0fc81ee | 2012-07-02 14:26:15 +0100 | [diff] [blame] | 3303 | } |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3304 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3305 | #ifdef CONFIG_MMC_DEBUG |
| 3306 | sdhci_dumpregs(host); |
| 3307 | #endif |
| 3308 | |
Pierre Ossman | f913431 | 2008-12-21 17:01:48 +0100 | [diff] [blame] | 3309 | #ifdef SDHCI_USE_LEDS_CLASS |
Helmut Schaa | 5dbace0 | 2009-02-14 16:22:39 +0100 | [diff] [blame] | 3310 | snprintf(host->led_name, sizeof(host->led_name), |
| 3311 | "%s::", mmc_hostname(mmc)); |
| 3312 | host->led.name = host->led_name; |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 3313 | host->led.brightness = LED_OFF; |
| 3314 | host->led.default_trigger = mmc_hostname(mmc); |
| 3315 | host->led.brightness_set = sdhci_led_control; |
| 3316 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 3317 | ret = led_classdev_register(mmc_dev(mmc), &host->led); |
Mark Brown | 0fc81ee | 2012-07-02 14:26:15 +0100 | [diff] [blame] | 3318 | if (ret) { |
| 3319 | pr_err("%s: Failed to register LED device: %d\n", |
| 3320 | mmc_hostname(mmc), ret); |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 3321 | goto reset; |
Mark Brown | 0fc81ee | 2012-07-02 14:26:15 +0100 | [diff] [blame] | 3322 | } |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 3323 | #endif |
| 3324 | |
Pierre Ossman | 5f25a66 | 2006-10-04 02:15:39 -0700 | [diff] [blame] | 3325 | mmiowb(); |
| 3326 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3327 | mmc_add_host(mmc); |
| 3328 | |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 3329 | pr_info("%s: SDHCI controller on %s [%s] using %s\n", |
Kay Sievers | d1b2686 | 2008-11-08 21:37:46 +0100 | [diff] [blame] | 3330 | mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)), |
Adrian Hunter | e57a5f6 | 2014-11-04 12:42:46 +0200 | [diff] [blame] | 3331 | (host->flags & SDHCI_USE_ADMA) ? |
| 3332 | (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" : |
Richard Röjfors | a13abc7 | 2009-09-22 16:45:30 -0700 | [diff] [blame] | 3333 | (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO"); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3334 | |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 3335 | sdhci_enable_card_detection(host); |
| 3336 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3337 | return 0; |
| 3338 | |
Pierre Ossman | f913431 | 2008-12-21 17:01:48 +0100 | [diff] [blame] | 3339 | #ifdef SDHCI_USE_LEDS_CLASS |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 3340 | reset: |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 3341 | sdhci_do_reset(host, SDHCI_RESET_ALL); |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 3342 | sdhci_writel(host, 0, SDHCI_INT_ENABLE); |
| 3343 | sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE); |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 3344 | free_irq(host->irq, host); |
| 3345 | #endif |
Pierre Ossman | 8ef1a14 | 2006-06-30 02:22:21 -0700 | [diff] [blame] | 3346 | untasklet: |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3347 | tasklet_kill(&host->finish_tasklet); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3348 | |
| 3349 | return ret; |
| 3350 | } |
| 3351 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 3352 | EXPORT_SYMBOL_GPL(sdhci_add_host); |
| 3353 | |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 3354 | void sdhci_remove_host(struct sdhci_host *host, int dead) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3355 | { |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 3356 | struct mmc_host *mmc = host->mmc; |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 3357 | unsigned long flags; |
| 3358 | |
| 3359 | if (dead) { |
| 3360 | spin_lock_irqsave(&host->lock, flags); |
| 3361 | |
| 3362 | host->flags |= SDHCI_DEVICE_DEAD; |
| 3363 | |
| 3364 | if (host->mrq) { |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 3365 | pr_err("%s: Controller removed during " |
Markus Mayer | 4e743f1 | 2014-07-03 13:27:42 -0700 | [diff] [blame] | 3366 | " transfer!\n", mmc_hostname(mmc)); |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 3367 | |
| 3368 | host->mrq->cmd->error = -ENOMEDIUM; |
| 3369 | tasklet_schedule(&host->finish_tasklet); |
| 3370 | } |
| 3371 | |
| 3372 | spin_unlock_irqrestore(&host->lock, flags); |
| 3373 | } |
| 3374 | |
Anton Vorontsov | 7260cf5 | 2009-03-17 00:13:48 +0300 | [diff] [blame] | 3375 | sdhci_disable_card_detection(host); |
| 3376 | |
Markus Mayer | 4e743f1 | 2014-07-03 13:27:42 -0700 | [diff] [blame] | 3377 | mmc_remove_host(mmc); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3378 | |
Pierre Ossman | f913431 | 2008-12-21 17:01:48 +0100 | [diff] [blame] | 3379 | #ifdef SDHCI_USE_LEDS_CLASS |
Pierre Ossman | 2f730fe | 2008-03-17 10:29:38 +0100 | [diff] [blame] | 3380 | led_classdev_unregister(&host->led); |
| 3381 | #endif |
| 3382 | |
Pierre Ossman | 1e72859 | 2008-04-16 19:13:13 +0200 | [diff] [blame] | 3383 | if (!dead) |
Russell King | 03231f9 | 2014-04-25 12:57:12 +0100 | [diff] [blame] | 3384 | sdhci_do_reset(host, SDHCI_RESET_ALL); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3385 | |
Russell King | b537f94 | 2014-04-25 12:56:01 +0100 | [diff] [blame] | 3386 | sdhci_writel(host, 0, SDHCI_INT_ENABLE); |
| 3387 | sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3388 | free_irq(host->irq, host); |
| 3389 | |
| 3390 | del_timer_sync(&host->timer); |
| 3391 | |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3392 | tasklet_kill(&host->finish_tasklet); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 3393 | |
Tim Kryger | 3a48edc | 2014-06-13 10:13:56 -0700 | [diff] [blame] | 3394 | if (!IS_ERR(mmc->supply.vqmmc)) |
| 3395 | regulator_disable(mmc->supply.vqmmc); |
Philip Rakity | 6231f3d | 2012-07-23 15:56:23 -0700 | [diff] [blame] | 3396 | |
Russell King | edd63fc | 2016-01-26 13:39:50 +0000 | [diff] [blame] | 3397 | if (host->align_buffer) |
Russell King | e66e61c | 2016-01-26 13:39:55 +0000 | [diff] [blame] | 3398 | dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz + |
| 3399 | host->adma_table_sz, host->align_buffer, |
| 3400 | host->align_addr); |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 3401 | |
Adrian Hunter | 4efaa6f | 2014-11-04 12:42:39 +0200 | [diff] [blame] | 3402 | host->adma_table = NULL; |
Pierre Ossman | 2134a92 | 2008-06-28 18:28:51 +0200 | [diff] [blame] | 3403 | host->align_buffer = NULL; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3404 | } |
| 3405 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 3406 | EXPORT_SYMBOL_GPL(sdhci_remove_host); |
| 3407 | |
| 3408 | void sdhci_free_host(struct sdhci_host *host) |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3409 | { |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 3410 | mmc_free_host(host->mmc); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3411 | } |
| 3412 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 3413 | EXPORT_SYMBOL_GPL(sdhci_free_host); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3414 | |
| 3415 | /*****************************************************************************\ |
| 3416 | * * |
| 3417 | * Driver init/exit * |
| 3418 | * * |
| 3419 | \*****************************************************************************/ |
| 3420 | |
| 3421 | static int __init sdhci_drv_init(void) |
| 3422 | { |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 3423 | pr_info(DRIVER_NAME |
Pierre Ossman | 52fbf9c | 2007-02-09 08:23:41 +0100 | [diff] [blame] | 3424 | ": Secure Digital Host Controller Interface driver\n"); |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 3425 | pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n"); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3426 | |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 3427 | return 0; |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3428 | } |
| 3429 | |
| 3430 | static void __exit sdhci_drv_exit(void) |
| 3431 | { |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3432 | } |
| 3433 | |
| 3434 | module_init(sdhci_drv_init); |
| 3435 | module_exit(sdhci_drv_exit); |
| 3436 | |
Pierre Ossman | df673b2 | 2006-06-30 02:22:31 -0700 | [diff] [blame] | 3437 | module_param(debug_quirks, uint, 0444); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 3438 | module_param(debug_quirks2, uint, 0444); |
Pierre Ossman | 6743527 | 2006-06-30 02:22:31 -0700 | [diff] [blame] | 3439 | |
Pierre Ossman | 32710e8 | 2009-04-08 20:14:54 +0200 | [diff] [blame] | 3440 | MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>"); |
Pierre Ossman | b8c86fc | 2008-03-18 17:35:49 +0100 | [diff] [blame] | 3441 | MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver"); |
Pierre Ossman | d129bce | 2006-03-24 03:18:17 -0800 | [diff] [blame] | 3442 | MODULE_LICENSE("GPL"); |
Pierre Ossman | 6743527 | 2006-06-30 02:22:31 -0700 | [diff] [blame] | 3443 | |
Pierre Ossman | df673b2 | 2006-06-30 02:22:31 -0700 | [diff] [blame] | 3444 | MODULE_PARM_DESC(debug_quirks, "Force certain quirks."); |
Adrian Hunter | 66fd8ad | 2011-10-03 15:33:34 +0300 | [diff] [blame] | 3445 | MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks."); |