blob: e2cad924a26f69b127300abeb30e08beafcd0142 [file] [log] [blame]
Pierre Ossmanb93931a2007-05-19 14:06:24 +02001/*
2 * linux/drivers/mmc/core/host.c
3 *
4 * Copyright (C) 2003 Russell King, All Rights Reserved.
Pierre Ossmanff3112f2008-03-08 23:43:19 +01005 * Copyright (C) 2007-2008 Pierre Ossman
Linus Walleij04566832010-11-08 21:36:50 -05006 * Copyright (C) 2010 Linus Walleij
Pierre Ossmanb93931a2007-05-19 14:06:24 +02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * MMC host class device management
13 */
14
15#include <linux/device.h>
16#include <linux/err.h>
17#include <linux/idr.h>
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +010018#include <linux/of.h>
19#include <linux/of_gpio.h>
Pierre Ossmanb93931a2007-05-19 14:06:24 +020020#include <linux/pagemap.h>
Paul Gortmaker3ef77af2011-07-10 12:42:00 -040021#include <linux/export.h>
Pierre Ossmanaf8350c2007-09-24 07:15:48 +020022#include <linux/leds.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Maxim Levitsky4c2ef252010-08-10 18:01:41 -070024#include <linux/suspend.h>
Pierre Ossmanb93931a2007-05-19 14:06:24 +020025
26#include <linux/mmc/host.h>
Linus Walleij04566832010-11-08 21:36:50 -050027#include <linux/mmc/card.h>
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +010028#include <linux/mmc/slot-gpio.h>
Pierre Ossmanb93931a2007-05-19 14:06:24 +020029
30#include "core.h"
31#include "host.h"
Ulf Hanssondf8aca12014-12-18 15:44:36 +010032#include "slot-gpio.h"
Ulf Hansson3aa87932014-11-28 14:38:36 +010033#include "pwrseq.h"
Pierre Ossmanb93931a2007-05-19 14:06:24 +020034
35#define cls_dev_to_mmc_host(d) container_of(d, struct mmc_host, class_dev)
36
Ulf Hanssone2d19262014-12-18 15:44:35 +010037static DEFINE_IDR(mmc_host_idr);
38static DEFINE_SPINLOCK(mmc_host_lock);
39
Pierre Ossmanb93931a2007-05-19 14:06:24 +020040static void mmc_host_classdev_release(struct device *dev)
41{
42 struct mmc_host *host = cls_dev_to_mmc_host(dev);
Ulf Hanssone2d19262014-12-18 15:44:35 +010043 spin_lock(&mmc_host_lock);
44 idr_remove(&mmc_host_idr, host->index);
45 spin_unlock(&mmc_host_lock);
Pierre Ossmanb93931a2007-05-19 14:06:24 +020046 kfree(host);
47}
48
49static struct class mmc_host_class = {
50 .name = "mmc_host",
51 .dev_release = mmc_host_classdev_release,
52};
53
54int mmc_register_host_class(void)
55{
56 return class_register(&mmc_host_class);
57}
58
59void mmc_unregister_host_class(void)
60{
61 class_unregister(&mmc_host_class);
62}
63
Adrian Hunterdfa13eb2015-05-07 13:10:12 +030064void mmc_retune_enable(struct mmc_host *host)
65{
66 host->can_retune = 1;
67 if (host->retune_period)
68 mod_timer(&host->retune_timer,
69 jiffies + host->retune_period * HZ);
70}
71
72void mmc_retune_disable(struct mmc_host *host)
73{
74 host->can_retune = 0;
75 del_timer_sync(&host->retune_timer);
76 host->retune_now = 0;
77 host->need_retune = 0;
78}
79
80void mmc_retune_timer_stop(struct mmc_host *host)
81{
82 del_timer_sync(&host->retune_timer);
83}
84EXPORT_SYMBOL(mmc_retune_timer_stop);
85
86void mmc_retune_hold(struct mmc_host *host)
87{
88 if (!host->hold_retune)
89 host->retune_now = 1;
90 host->hold_retune += 1;
91}
92
93void mmc_retune_release(struct mmc_host *host)
94{
95 if (host->hold_retune)
96 host->hold_retune -= 1;
97 else
98 WARN_ON(1);
99}
100
101int mmc_retune(struct mmc_host *host)
102{
Adrian Hunter6376f692015-05-07 13:10:20 +0300103 bool return_to_hs400 = false;
Adrian Hunterdfa13eb2015-05-07 13:10:12 +0300104 int err;
105
106 if (host->retune_now)
107 host->retune_now = 0;
108 else
109 return 0;
110
111 if (!host->need_retune || host->doing_retune || !host->card)
112 return 0;
113
114 host->need_retune = 0;
115
116 host->doing_retune = 1;
117
Adrian Hunter6376f692015-05-07 13:10:20 +0300118 if (host->ios.timing == MMC_TIMING_MMC_HS400) {
119 err = mmc_hs400_to_hs200(host->card);
120 if (err)
121 goto out;
Adrian Hunterdfa13eb2015-05-07 13:10:12 +0300122
Adrian Hunter6376f692015-05-07 13:10:20 +0300123 return_to_hs400 = true;
124
125 if (host->ops->prepare_hs400_tuning)
126 host->ops->prepare_hs400_tuning(host, &host->ios);
127 }
128
129 err = mmc_execute_tuning(host->card);
130 if (err)
131 goto out;
132
133 if (return_to_hs400)
134 err = mmc_hs200_to_hs400(host->card);
135out:
Adrian Hunterdfa13eb2015-05-07 13:10:12 +0300136 host->doing_retune = 0;
137
138 return err;
139}
140
141static void mmc_retune_timer(unsigned long data)
142{
143 struct mmc_host *host = (struct mmc_host *)data;
144
145 mmc_retune_needed(host);
146}
147
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200148/**
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100149 * mmc_of_parse() - parse host's device-tree node
150 * @host: host whose node should be parsed.
151 *
152 * To keep the rest of the MMC subsystem unaware of whether DT has been
153 * used to to instantiate and configure this host instance or not, we
154 * parse the properties and set respective generic mmc-host flags and
155 * parameters.
156 */
Simon Baatzec0a7512013-06-09 22:14:11 +0200157int mmc_of_parse(struct mmc_host *host)
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100158{
159 struct device_node *np;
160 u32 bus_width;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300161 int ret;
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200162 bool cd_cap_invert, cd_gpio_invert = false;
163 bool ro_cap_invert, ro_gpio_invert = false;
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100164
165 if (!host->parent || !host->parent->of_node)
Simon Baatzec0a7512013-06-09 22:14:11 +0200166 return 0;
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100167
168 np = host->parent->of_node;
169
170 /* "bus-width" is translated to MMC_CAP_*_BIT_DATA flags */
171 if (of_property_read_u32(np, "bus-width", &bus_width) < 0) {
172 dev_dbg(host->parent,
173 "\"bus-width\" property is missing, assuming 1 bit.\n");
174 bus_width = 1;
175 }
176
177 switch (bus_width) {
178 case 8:
179 host->caps |= MMC_CAP_8_BIT_DATA;
180 /* Hosts capable of 8-bit transfers can also do 4 bits */
181 case 4:
182 host->caps |= MMC_CAP_4_BIT_DATA;
183 break;
184 case 1:
185 break;
186 default:
187 dev_err(host->parent,
Alexander Shiyan1c279f42014-02-15 15:40:58 +0400188 "Invalid \"bus-width\" value %u!\n", bus_width);
Simon Baatzec0a7512013-06-09 22:14:11 +0200189 return -EINVAL;
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100190 }
191
192 /* f_max is obtained from the optional "max-frequency" property */
193 of_property_read_u32(np, "max-frequency", &host->f_max);
194
195 /*
196 * Configure CD and WP pins. They are both by default active low to
197 * match the SDHCI spec. If GPIOs are provided for CD and / or WP, the
198 * mmc-gpio helpers are used to attach, configure and use them. If
199 * polarity inversion is specified in DT, one of MMC_CAP2_CD_ACTIVE_HIGH
200 * and MMC_CAP2_RO_ACTIVE_HIGH capability-2 flags is set. If the
201 * "broken-cd" property is provided, the MMC_CAP_NEEDS_POLL capability
202 * is set. If the "non-removable" property is found, the
203 * MMC_CAP_NONREMOVABLE capability is set and no card-detection
204 * configuration is performed.
205 */
206
207 /* Parse Card Detection */
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300208 if (of_property_read_bool(np, "non-removable")) {
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100209 host->caps |= MMC_CAP_NONREMOVABLE;
210 } else {
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200211 cd_cap_invert = of_property_read_bool(np, "cd-inverted");
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100212
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300213 if (of_property_read_bool(np, "broken-cd"))
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100214 host->caps |= MMC_CAP_NEEDS_POLL;
215
Linus Walleij89168b42014-10-02 09:08:46 +0200216 ret = mmc_gpiod_request_cd(host, "cd", 0, true,
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200217 0, &cd_gpio_invert);
Ulf Hansson91167522014-12-18 10:41:44 +0100218 if (!ret)
Linus Walleij98e90de2014-08-27 13:00:52 +0200219 dev_info(host->parent, "Got CD GPIO\n");
Ulf Hansson43934ec2015-09-14 12:18:55 +0200220 else if (ret != -ENOENT && ret != -ENOSYS)
Ulf Hansson91167522014-12-18 10:41:44 +0100221 return ret;
Linus Walleij89168b42014-10-02 09:08:46 +0200222
223 /*
224 * There are two ways to flag that the CD line is inverted:
225 * through the cd-inverted flag and by the GPIO line itself
226 * being inverted from the GPIO subsystem. This is a leftover
227 * from the times when the GPIO subsystem did not make it
228 * possible to flag a line as inverted.
229 *
230 * If the capability on the host AND the GPIO line are
231 * both inverted, the end result is that the CD line is
232 * not inverted.
233 */
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200234 if (cd_cap_invert ^ cd_gpio_invert)
Linus Walleij89168b42014-10-02 09:08:46 +0200235 host->caps2 |= MMC_CAP2_CD_ACTIVE_HIGH;
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100236 }
237
238 /* Parse Write Protection */
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200239 ro_cap_invert = of_property_read_bool(np, "wp-inverted");
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100240
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200241 ret = mmc_gpiod_request_ro(host, "wp", 0, false, 0, &ro_gpio_invert);
Ulf Hansson91167522014-12-18 10:41:44 +0100242 if (!ret)
Linus Walleij98e90de2014-08-27 13:00:52 +0200243 dev_info(host->parent, "Got WP GPIO\n");
Ulf Hansson43934ec2015-09-14 12:18:55 +0200244 else if (ret != -ENOENT && ret != -ENOSYS)
Ulf Hansson91167522014-12-18 10:41:44 +0100245 return ret;
Linus Walleij98e90de2014-08-27 13:00:52 +0200246
Lars-Peter Clausen19f44242015-05-06 20:31:20 +0200247 if (of_property_read_bool(np, "disable-wp"))
248 host->caps2 |= MMC_CAP2_NO_WRITE_PROTECT;
249
Linus Walleij89168b42014-10-02 09:08:46 +0200250 /* See the comment on CD inversion above */
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200251 if (ro_cap_invert ^ ro_gpio_invert)
Linus Walleij89168b42014-10-02 09:08:46 +0200252 host->caps2 |= MMC_CAP2_RO_ACTIVE_HIGH;
253
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300254 if (of_property_read_bool(np, "cap-sd-highspeed"))
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100255 host->caps |= MMC_CAP_SD_HIGHSPEED;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300256 if (of_property_read_bool(np, "cap-mmc-highspeed"))
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100257 host->caps |= MMC_CAP_MMC_HIGHSPEED;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300258 if (of_property_read_bool(np, "sd-uhs-sdr12"))
Ulf Hanssonb66bd0e2014-02-14 13:27:07 +0100259 host->caps |= MMC_CAP_UHS_SDR12;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300260 if (of_property_read_bool(np, "sd-uhs-sdr25"))
Ulf Hanssonb66bd0e2014-02-14 13:27:07 +0100261 host->caps |= MMC_CAP_UHS_SDR25;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300262 if (of_property_read_bool(np, "sd-uhs-sdr50"))
Ulf Hanssonb66bd0e2014-02-14 13:27:07 +0100263 host->caps |= MMC_CAP_UHS_SDR50;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300264 if (of_property_read_bool(np, "sd-uhs-sdr104"))
Ulf Hanssonb66bd0e2014-02-14 13:27:07 +0100265 host->caps |= MMC_CAP_UHS_SDR104;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300266 if (of_property_read_bool(np, "sd-uhs-ddr50"))
Ulf Hanssonb66bd0e2014-02-14 13:27:07 +0100267 host->caps |= MMC_CAP_UHS_DDR50;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300268 if (of_property_read_bool(np, "cap-power-off-card"))
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100269 host->caps |= MMC_CAP_POWER_OFF_CARD;
Chaotian Jing794f1572015-10-27 14:24:21 +0800270 if (of_property_read_bool(np, "cap-mmc-hw-reset"))
271 host->caps |= MMC_CAP_HW_RESET;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300272 if (of_property_read_bool(np, "cap-sdio-irq"))
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100273 host->caps |= MMC_CAP_SDIO_IRQ;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300274 if (of_property_read_bool(np, "full-pwr-cycle"))
Ulf Hansson5a36d6b2013-06-10 17:03:47 +0200275 host->caps2 |= MMC_CAP2_FULL_PWR_CYCLE;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300276 if (of_property_read_bool(np, "keep-power-in-suspend"))
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100277 host->pm_caps |= MMC_PM_KEEP_POWER;
Sudeep Holla0dbcdc02015-10-21 11:10:02 +0100278 if (of_property_read_bool(np, "wakeup-source") ||
279 of_property_read_bool(np, "enable-sdio-wakeup")) /* legacy */
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100280 host->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300281 if (of_property_read_bool(np, "mmc-ddr-1_8v"))
Ulf Hanssonc0baf842014-02-14 13:27:08 +0100282 host->caps |= MMC_CAP_1_8V_DDR;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300283 if (of_property_read_bool(np, "mmc-ddr-1_2v"))
Ulf Hanssonc0baf842014-02-14 13:27:08 +0100284 host->caps |= MMC_CAP_1_2V_DDR;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300285 if (of_property_read_bool(np, "mmc-hs200-1_8v"))
Jaehoon Chung321bd412014-02-14 13:27:09 +0100286 host->caps2 |= MMC_CAP2_HS200_1_8V_SDR;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300287 if (of_property_read_bool(np, "mmc-hs200-1_2v"))
Jaehoon Chung321bd412014-02-14 13:27:09 +0100288 host->caps2 |= MMC_CAP2_HS200_1_2V_SDR;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300289 if (of_property_read_bool(np, "mmc-hs400-1_8v"))
Seungwon Jeonc373eb42014-04-23 17:15:08 +0900290 host->caps2 |= MMC_CAP2_HS400_1_8V | MMC_CAP2_HS200_1_8V_SDR;
Sergei Shtylyov90614cd2015-08-07 01:06:48 +0300291 if (of_property_read_bool(np, "mmc-hs400-1_2v"))
Seungwon Jeonc373eb42014-04-23 17:15:08 +0900292 host->caps2 |= MMC_CAP2_HS400_1_2V | MMC_CAP2_HS200_1_2V_SDR;
Simon Baatzec0a7512013-06-09 22:14:11 +0200293
Sascha Hauer3d705d12014-08-19 10:45:51 +0200294 host->dsr_req = !of_property_read_u32(np, "dsr", &host->dsr);
295 if (host->dsr_req && (host->dsr & ~0xffff)) {
296 dev_err(host->parent,
297 "device tree specified broken value for DSR: 0x%x, ignoring\n",
298 host->dsr);
299 host->dsr_req = 0;
300 }
301
Ulf Hansson3aa87932014-11-28 14:38:36 +0100302 return mmc_pwrseq_alloc(host);
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100303}
304
305EXPORT_SYMBOL(mmc_of_parse);
306
307/**
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200308 * mmc_alloc_host - initialise the per-host structure.
309 * @extra: sizeof private data structure
310 * @dev: pointer to host device model structure
311 *
312 * Initialise the per-host structure.
313 */
314struct mmc_host *mmc_alloc_host(int extra, struct device *dev)
315{
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100316 int err;
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200317 struct mmc_host *host;
318
Mariusz Kozlowskibe760a92007-08-10 14:00:50 -0700319 host = kzalloc(sizeof(struct mmc_host) + extra, GFP_KERNEL);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200320 if (!host)
321 return NULL;
322
Guennadi Liakhovetskid9adcc12012-06-14 10:17:39 +0200323 /* scanning will be enabled when we're ready */
324 host->rescan_disable = 1;
Tejun Heo803d9e02013-02-27 17:04:32 -0800325 idr_preload(GFP_KERNEL);
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100326 spin_lock(&mmc_host_lock);
Tejun Heo803d9e02013-02-27 17:04:32 -0800327 err = idr_alloc(&mmc_host_idr, host, 0, 0, GFP_NOWAIT);
328 if (err >= 0)
329 host->index = err;
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100330 spin_unlock(&mmc_host_lock);
Tejun Heo803d9e02013-02-27 17:04:32 -0800331 idr_preload_end();
Ulf Hanssondf8aca12014-12-18 15:44:36 +0100332 if (err < 0) {
333 kfree(host);
334 return NULL;
335 }
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100336
Kay Sieversd1b26862008-11-08 21:37:46 +0100337 dev_set_name(&host->class_dev, "mmc%d", host->index);
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100338
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200339 host->parent = dev;
340 host->class_dev.parent = dev;
341 host->class_dev.class = &mmc_host_class;
342 device_initialize(&host->class_dev);
343
Ulf Hanssondf8aca12014-12-18 15:44:36 +0100344 if (mmc_gpio_alloc(host)) {
345 put_device(&host->class_dev);
346 return NULL;
347 }
Linus Walleij04566832010-11-08 21:36:50 -0500348
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200349 spin_lock_init(&host->lock);
350 init_waitqueue_head(&host->wq);
351 INIT_DELAYED_WORK(&host->detect, mmc_rescan);
Uwe Kleine-König81ca03a2010-08-18 09:25:38 -0700352#ifdef CONFIG_PM
Maxim Levitsky4c2ef252010-08-10 18:01:41 -0700353 host->pm_notify.notifier_call = mmc_pm_notify;
Uwe Kleine-König81ca03a2010-08-18 09:25:38 -0700354#endif
Adrian Hunterdfa13eb2015-05-07 13:10:12 +0300355 setup_timer(&host->retune_timer, mmc_retune_timer, (unsigned long)host);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200356
357 /*
358 * By default, hosts do not support SGIO or large requests.
359 * They have to set these according to their abilities.
360 */
Martin K. Petersena36274e2010-09-10 01:33:59 -0400361 host->max_segs = 1;
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200362 host->max_seg_size = PAGE_CACHE_SIZE;
363
364 host->max_req_size = PAGE_CACHE_SIZE;
365 host->max_blk_size = 512;
366 host->max_blk_count = PAGE_CACHE_SIZE / 512;
367
368 return host;
369}
370
371EXPORT_SYMBOL(mmc_alloc_host);
372
373/**
374 * mmc_add_host - initialise host hardware
375 * @host: mmc host
Pierre Ossman67a61c42007-07-11 20:22:11 +0200376 *
377 * Register the host with the driver model. The host must be
378 * prepared to start servicing requests before this function
379 * completes.
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200380 */
381int mmc_add_host(struct mmc_host *host)
382{
383 int err;
384
Nicolas Pitre17b759a2007-07-24 02:09:39 -0400385 WARN_ON((host->caps & MMC_CAP_SDIO_IRQ) &&
386 !host->ops->enable_sdio_irq);
387
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200388 err = device_add(&host->class_dev);
389 if (err)
390 return err;
391
Wolfram Sangf317dfe2011-04-11 06:11:29 +0200392 led_trigger_register_simple(dev_name(&host->class_dev), &host->led);
393
Haavard Skinnemoen6edd8ee2008-07-24 14:18:57 +0200394#ifdef CONFIG_DEBUG_FS
395 mmc_add_host_debugfs(host);
396#endif
397
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200398 mmc_start_host(host);
Maxim Levitsky4c2ef252010-08-10 18:01:41 -0700399 register_pm_notifier(&host->pm_notify);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200400
401 return 0;
402}
403
404EXPORT_SYMBOL(mmc_add_host);
405
406/**
407 * mmc_remove_host - remove host hardware
408 * @host: mmc host
409 *
410 * Unregister and remove all cards associated with this host,
Pierre Ossman67a61c42007-07-11 20:22:11 +0200411 * and power down the MMC bus. No new requests will be issued
412 * after this function has returned.
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200413 */
414void mmc_remove_host(struct mmc_host *host)
415{
Maxim Levitsky4c2ef252010-08-10 18:01:41 -0700416 unregister_pm_notifier(&host->pm_notify);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200417 mmc_stop_host(host);
418
Haavard Skinnemoen6edd8ee2008-07-24 14:18:57 +0200419#ifdef CONFIG_DEBUG_FS
420 mmc_remove_host_debugfs(host);
421#endif
422
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200423 device_del(&host->class_dev);
424
Pierre Ossman77f1fd62007-10-12 22:48:46 +0200425 led_trigger_unregister_simple(host->led);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200426}
427
428EXPORT_SYMBOL(mmc_remove_host);
429
430/**
431 * mmc_free_host - free the host structure
432 * @host: mmc host
433 *
434 * Free the host once all references to it have been dropped.
435 */
436void mmc_free_host(struct mmc_host *host)
437{
Ulf Hansson3aa87932014-11-28 14:38:36 +0100438 mmc_pwrseq_free(host);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200439 put_device(&host->class_dev);
440}
441
442EXPORT_SYMBOL(mmc_free_host);