1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/mmc/core/host.c
5 * Copyright (C) 2003 Russell King, All Rights Reserved.
6 * Copyright (C) 2007-2008 Pierre Ossman
7 * Copyright (C) 2010 Linus Walleij
9 * MMC host class device management
12 #include <linux/device.h>
13 #include <linux/err.h>
14 #include <linux/idr.h>
16 #include <linux/of_gpio.h>
17 #include <linux/pagemap.h>
18 #include <linux/pm_wakeup.h>
19 #include <linux/export.h>
20 #include <linux/leds.h>
21 #include <linux/slab.h>
23 #include <linux/mmc/host.h>
24 #include <linux/mmc/card.h>
25 #include <linux/mmc/slot-gpio.h>
30 #include "slot-gpio.h"
34 #define cls_dev_to_mmc_host(d) container_of(d, struct mmc_host, class_dev)
36 static DEFINE_IDA(mmc_host_ida);
38 static void mmc_host_classdev_release(struct device *dev)
40 struct mmc_host *host = cls_dev_to_mmc_host(dev);
41 wakeup_source_unregister(host->ws);
42 ida_simple_remove(&mmc_host_ida, host->index);
46 static struct class mmc_host_class = {
48 .dev_release = mmc_host_classdev_release,
51 int mmc_register_host_class(void)
53 return class_register(&mmc_host_class);
56 void mmc_unregister_host_class(void)
58 class_unregister(&mmc_host_class);
61 void mmc_retune_enable(struct mmc_host *host)
64 if (host->retune_period)
65 mod_timer(&host->retune_timer,
66 jiffies + host->retune_period * HZ);
70 * Pause re-tuning for a small set of operations. The pause begins after the
71 * next command and after first doing re-tuning.
73 void mmc_retune_pause(struct mmc_host *host)
75 if (!host->retune_paused) {
76 host->retune_paused = 1;
77 mmc_retune_needed(host);
78 mmc_retune_hold(host);
81 EXPORT_SYMBOL(mmc_retune_pause);
83 void mmc_retune_unpause(struct mmc_host *host)
85 if (host->retune_paused) {
86 host->retune_paused = 0;
87 mmc_retune_release(host);
90 EXPORT_SYMBOL(mmc_retune_unpause);
92 void mmc_retune_disable(struct mmc_host *host)
94 mmc_retune_unpause(host);
96 del_timer_sync(&host->retune_timer);
98 host->need_retune = 0;
101 void mmc_retune_timer_stop(struct mmc_host *host)
103 del_timer_sync(&host->retune_timer);
105 EXPORT_SYMBOL(mmc_retune_timer_stop);
107 void mmc_retune_hold(struct mmc_host *host)
109 if (!host->hold_retune)
110 host->retune_now = 1;
111 host->hold_retune += 1;
114 void mmc_retune_release(struct mmc_host *host)
116 if (host->hold_retune)
117 host->hold_retune -= 1;
121 EXPORT_SYMBOL(mmc_retune_release);
123 int mmc_retune(struct mmc_host *host)
125 bool return_to_hs400 = false;
128 if (host->retune_now)
129 host->retune_now = 0;
133 if (!host->need_retune || host->doing_retune || !host->card)
136 host->need_retune = 0;
138 host->doing_retune = 1;
140 if (host->ios.timing == MMC_TIMING_MMC_HS400) {
141 err = mmc_hs400_to_hs200(host->card);
145 return_to_hs400 = true;
148 err = mmc_execute_tuning(host->card);
153 err = mmc_hs200_to_hs400(host->card);
155 host->doing_retune = 0;
160 static void mmc_retune_timer(struct timer_list *t)
162 struct mmc_host *host = from_timer(host, t, retune_timer);
164 mmc_retune_needed(host);
167 static void mmc_of_parse_timing_phase(struct device *dev, const char *prop,
168 struct mmc_clk_phase *phase)
170 int degrees[2] = {0};
173 rc = device_property_read_u32_array(dev, prop, degrees, 2);
176 phase->in_deg = degrees[0];
177 phase->out_deg = degrees[1];
182 mmc_of_parse_clk_phase(struct mmc_host *host, struct mmc_clk_phase_map *map)
184 struct device *dev = host->parent;
186 mmc_of_parse_timing_phase(dev, "clk-phase-legacy",
187 &map->phase[MMC_TIMING_LEGACY]);
188 mmc_of_parse_timing_phase(dev, "clk-phase-mmc-hs",
189 &map->phase[MMC_TIMING_MMC_HS]);
190 mmc_of_parse_timing_phase(dev, "clk-phase-sd-hs",
191 &map->phase[MMC_TIMING_SD_HS]);
192 mmc_of_parse_timing_phase(dev, "clk-phase-uhs-sdr12",
193 &map->phase[MMC_TIMING_UHS_SDR12]);
194 mmc_of_parse_timing_phase(dev, "clk-phase-uhs-sdr25",
195 &map->phase[MMC_TIMING_UHS_SDR25]);
196 mmc_of_parse_timing_phase(dev, "clk-phase-uhs-sdr50",
197 &map->phase[MMC_TIMING_UHS_SDR50]);
198 mmc_of_parse_timing_phase(dev, "clk-phase-uhs-sdr104",
199 &map->phase[MMC_TIMING_UHS_SDR104]);
200 mmc_of_parse_timing_phase(dev, "clk-phase-uhs-ddr50",
201 &map->phase[MMC_TIMING_UHS_DDR50]);
202 mmc_of_parse_timing_phase(dev, "clk-phase-mmc-ddr52",
203 &map->phase[MMC_TIMING_MMC_DDR52]);
204 mmc_of_parse_timing_phase(dev, "clk-phase-mmc-hs200",
205 &map->phase[MMC_TIMING_MMC_HS200]);
206 mmc_of_parse_timing_phase(dev, "clk-phase-mmc-hs400",
207 &map->phase[MMC_TIMING_MMC_HS400]);
209 EXPORT_SYMBOL(mmc_of_parse_clk_phase);
212 * mmc_of_parse() - parse host's device-tree node
213 * @host: host whose node should be parsed.
215 * To keep the rest of the MMC subsystem unaware of whether DT has been
216 * used to to instantiate and configure this host instance or not, we
217 * parse the properties and set respective generic mmc-host flags and
220 int mmc_of_parse(struct mmc_host *host)
222 struct device *dev = host->parent;
223 u32 bus_width, drv_type, cd_debounce_delay_ms;
226 if (!dev || !dev_fwnode(dev))
229 /* "bus-width" is translated to MMC_CAP_*_BIT_DATA flags */
230 if (device_property_read_u32(dev, "bus-width", &bus_width) < 0) {
231 dev_dbg(host->parent,
232 "\"bus-width\" property is missing, assuming 1 bit.\n");
238 host->caps |= MMC_CAP_8_BIT_DATA;
239 fallthrough; /* Hosts capable of 8-bit can also do 4 bits */
241 host->caps |= MMC_CAP_4_BIT_DATA;
246 dev_err(host->parent,
247 "Invalid \"bus-width\" value %u!\n", bus_width);
251 /* f_max is obtained from the optional "max-frequency" property */
252 device_property_read_u32(dev, "max-frequency", &host->f_max);
255 * Configure CD and WP pins. They are both by default active low to
256 * match the SDHCI spec. If GPIOs are provided for CD and / or WP, the
257 * mmc-gpio helpers are used to attach, configure and use them. If
258 * polarity inversion is specified in DT, one of MMC_CAP2_CD_ACTIVE_HIGH
259 * and MMC_CAP2_RO_ACTIVE_HIGH capability-2 flags is set. If the
260 * "broken-cd" property is provided, the MMC_CAP_NEEDS_POLL capability
261 * is set. If the "non-removable" property is found, the
262 * MMC_CAP_NONREMOVABLE capability is set and no card-detection
263 * configuration is performed.
266 /* Parse Card Detection */
268 if (device_property_read_bool(dev, "non-removable")) {
269 host->caps |= MMC_CAP_NONREMOVABLE;
271 if (device_property_read_bool(dev, "cd-inverted"))
272 host->caps2 |= MMC_CAP2_CD_ACTIVE_HIGH;
274 if (device_property_read_u32(dev, "cd-debounce-delay-ms",
275 &cd_debounce_delay_ms))
276 cd_debounce_delay_ms = 200;
278 if (device_property_read_bool(dev, "broken-cd"))
279 host->caps |= MMC_CAP_NEEDS_POLL;
281 ret = mmc_gpiod_request_cd(host, "cd", 0, false,
282 cd_debounce_delay_ms * 1000);
284 dev_info(host->parent, "Got CD GPIO\n");
285 else if (ret != -ENOENT && ret != -ENOSYS)
289 /* Parse Write Protection */
291 if (device_property_read_bool(dev, "wp-inverted"))
292 host->caps2 |= MMC_CAP2_RO_ACTIVE_HIGH;
294 ret = mmc_gpiod_request_ro(host, "wp", 0, 0);
296 dev_info(host->parent, "Got WP GPIO\n");
297 else if (ret != -ENOENT && ret != -ENOSYS)
300 if (device_property_read_bool(dev, "disable-wp"))
301 host->caps2 |= MMC_CAP2_NO_WRITE_PROTECT;
303 if (device_property_read_bool(dev, "cap-sd-highspeed"))
304 host->caps |= MMC_CAP_SD_HIGHSPEED;
305 if (device_property_read_bool(dev, "cap-mmc-highspeed"))
306 host->caps |= MMC_CAP_MMC_HIGHSPEED;
307 if (device_property_read_bool(dev, "sd-uhs-sdr12"))
308 host->caps |= MMC_CAP_UHS_SDR12;
309 if (device_property_read_bool(dev, "sd-uhs-sdr25"))
310 host->caps |= MMC_CAP_UHS_SDR25;
311 if (device_property_read_bool(dev, "sd-uhs-sdr50"))
312 host->caps |= MMC_CAP_UHS_SDR50;
313 if (device_property_read_bool(dev, "sd-uhs-sdr104"))
314 host->caps |= MMC_CAP_UHS_SDR104;
315 if (device_property_read_bool(dev, "sd-uhs-ddr50"))
316 host->caps |= MMC_CAP_UHS_DDR50;
317 if (device_property_read_bool(dev, "cap-power-off-card"))
318 host->caps |= MMC_CAP_POWER_OFF_CARD;
319 if (device_property_read_bool(dev, "cap-mmc-hw-reset"))
320 host->caps |= MMC_CAP_HW_RESET;
321 if (device_property_read_bool(dev, "cap-sdio-irq"))
322 host->caps |= MMC_CAP_SDIO_IRQ;
323 if (device_property_read_bool(dev, "full-pwr-cycle"))
324 host->caps2 |= MMC_CAP2_FULL_PWR_CYCLE;
325 if (device_property_read_bool(dev, "full-pwr-cycle-in-suspend"))
326 host->caps2 |= MMC_CAP2_FULL_PWR_CYCLE_IN_SUSPEND;
327 if (device_property_read_bool(dev, "keep-power-in-suspend"))
328 host->pm_caps |= MMC_PM_KEEP_POWER;
329 if (device_property_read_bool(dev, "wakeup-source") ||
330 device_property_read_bool(dev, "enable-sdio-wakeup")) /* legacy */
331 host->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
332 if (device_property_read_bool(dev, "mmc-ddr-3_3v"))
333 host->caps |= MMC_CAP_3_3V_DDR;
334 if (device_property_read_bool(dev, "mmc-ddr-1_8v"))
335 host->caps |= MMC_CAP_1_8V_DDR;
336 if (device_property_read_bool(dev, "mmc-ddr-1_2v"))
337 host->caps |= MMC_CAP_1_2V_DDR;
338 if (device_property_read_bool(dev, "mmc-hs200-1_8v"))
339 host->caps2 |= MMC_CAP2_HS200_1_8V_SDR;
340 if (device_property_read_bool(dev, "mmc-hs200-1_2v"))
341 host->caps2 |= MMC_CAP2_HS200_1_2V_SDR;
342 if (device_property_read_bool(dev, "mmc-hs400-1_8v"))
343 host->caps2 |= MMC_CAP2_HS400_1_8V | MMC_CAP2_HS200_1_8V_SDR;
344 if (device_property_read_bool(dev, "mmc-hs400-1_2v"))
345 host->caps2 |= MMC_CAP2_HS400_1_2V | MMC_CAP2_HS200_1_2V_SDR;
346 if (device_property_read_bool(dev, "mmc-hs400-enhanced-strobe"))
347 host->caps2 |= MMC_CAP2_HS400_ES;
348 if (device_property_read_bool(dev, "no-sdio"))
349 host->caps2 |= MMC_CAP2_NO_SDIO;
350 if (device_property_read_bool(dev, "no-sd"))
351 host->caps2 |= MMC_CAP2_NO_SD;
352 if (device_property_read_bool(dev, "no-mmc"))
353 host->caps2 |= MMC_CAP2_NO_MMC;
355 /* Must be after "non-removable" check */
356 if (device_property_read_u32(dev, "fixed-emmc-driver-type", &drv_type) == 0) {
357 if (host->caps & MMC_CAP_NONREMOVABLE)
358 host->fixed_drv_type = drv_type;
360 dev_err(host->parent,
361 "can't use fixed driver type, media is removable\n");
364 host->dsr_req = !device_property_read_u32(dev, "dsr", &host->dsr);
365 if (host->dsr_req && (host->dsr & ~0xffff)) {
366 dev_err(host->parent,
367 "device tree specified broken value for DSR: 0x%x, ignoring\n",
372 device_property_read_u32(dev, "post-power-on-delay-ms",
373 &host->ios.power_delay_ms);
375 return mmc_pwrseq_alloc(host);
378 EXPORT_SYMBOL(mmc_of_parse);
381 * mmc_of_parse_voltage - return mask of supported voltages
382 * @np: The device node need to be parsed.
383 * @mask: mask of voltages available for MMC/SD/SDIO
385 * Parse the "voltage-ranges" DT property, returning zero if it is not
386 * found, negative errno if the voltage-range specification is invalid,
387 * or one if the voltage-range is specified and successfully parsed.
389 int mmc_of_parse_voltage(struct device_node *np, u32 *mask)
391 const u32 *voltage_ranges;
394 voltage_ranges = of_get_property(np, "voltage-ranges", &num_ranges);
395 if (!voltage_ranges) {
396 pr_debug("%pOF: voltage-ranges unspecified\n", np);
399 num_ranges = num_ranges / sizeof(*voltage_ranges) / 2;
401 pr_err("%pOF: voltage-ranges empty\n", np);
405 for (i = 0; i < num_ranges; i++) {
409 ocr_mask = mmc_vddrange_to_ocrmask(
410 be32_to_cpu(voltage_ranges[j]),
411 be32_to_cpu(voltage_ranges[j + 1]));
413 pr_err("%pOF: voltage-range #%d is invalid\n",
422 EXPORT_SYMBOL(mmc_of_parse_voltage);
425 * mmc_first_nonreserved_index() - get the first index that is not reserved
427 static int mmc_first_nonreserved_index(void)
431 max = of_alias_get_highest_id("mmc");
439 * mmc_alloc_host - initialise the per-host structure.
440 * @extra: sizeof private data structure
441 * @dev: pointer to host device model structure
443 * Initialise the per-host structure.
445 struct mmc_host *mmc_alloc_host(int extra, struct device *dev)
448 struct mmc_host *host;
449 int alias_id, min_idx, max_idx;
451 host = kzalloc(sizeof(struct mmc_host) + extra, GFP_KERNEL);
455 /* scanning will be enabled when we're ready */
456 host->rescan_disable = 1;
458 alias_id = of_alias_get_id(dev->of_node, "mmc");
461 max_idx = alias_id + 1;
463 min_idx = mmc_first_nonreserved_index();
467 err = ida_simple_get(&mmc_host_ida, min_idx, max_idx, GFP_KERNEL);
475 dev_set_name(&host->class_dev, "mmc%d", host->index);
476 host->ws = wakeup_source_register(NULL, dev_name(&host->class_dev));
479 host->class_dev.parent = dev;
480 host->class_dev.class = &mmc_host_class;
481 device_initialize(&host->class_dev);
482 device_enable_async_suspend(&host->class_dev);
484 if (mmc_gpio_alloc(host)) {
485 put_device(&host->class_dev);
489 spin_lock_init(&host->lock);
490 init_waitqueue_head(&host->wq);
491 INIT_DELAYED_WORK(&host->detect, mmc_rescan);
492 INIT_DELAYED_WORK(&host->sdio_irq_work, sdio_irq_work);
493 timer_setup(&host->retune_timer, mmc_retune_timer, 0);
496 * By default, hosts do not support SGIO or large requests.
497 * They have to set these according to their abilities.
500 host->max_seg_size = PAGE_SIZE;
502 host->max_req_size = PAGE_SIZE;
503 host->max_blk_size = 512;
504 host->max_blk_count = PAGE_SIZE / 512;
506 host->fixed_drv_type = -EINVAL;
507 host->ios.power_delay_ms = 10;
508 host->ios.power_mode = MMC_POWER_UNDEFINED;
513 EXPORT_SYMBOL(mmc_alloc_host);
516 * mmc_add_host - initialise host hardware
519 * Register the host with the driver model. The host must be
520 * prepared to start servicing requests before this function
523 int mmc_add_host(struct mmc_host *host)
527 WARN_ON((host->caps & MMC_CAP_SDIO_IRQ) &&
528 !host->ops->enable_sdio_irq);
530 err = device_add(&host->class_dev);
534 led_trigger_register_simple(dev_name(&host->class_dev), &host->led);
536 #ifdef CONFIG_DEBUG_FS
537 mmc_add_host_debugfs(host);
540 mmc_start_host(host);
541 mmc_register_pm_notifier(host);
546 EXPORT_SYMBOL(mmc_add_host);
549 * mmc_remove_host - remove host hardware
552 * Unregister and remove all cards associated with this host,
553 * and power down the MMC bus. No new requests will be issued
554 * after this function has returned.
556 void mmc_remove_host(struct mmc_host *host)
558 mmc_unregister_pm_notifier(host);
561 #ifdef CONFIG_DEBUG_FS
562 mmc_remove_host_debugfs(host);
565 device_del(&host->class_dev);
567 led_trigger_unregister_simple(host->led);
570 EXPORT_SYMBOL(mmc_remove_host);
573 * mmc_free_host - free the host structure
576 * Free the host once all references to it have been dropped.
578 void mmc_free_host(struct mmc_host *host)
580 mmc_pwrseq_free(host);
581 put_device(&host->class_dev);
584 EXPORT_SYMBOL(mmc_free_host);