blob: fcb7f06373cf7bdfcac34ac2b493b6b69a798cfb [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"
32
33#define cls_dev_to_mmc_host(d) container_of(d, struct mmc_host, class_dev)
34
Ulf Hanssone2d19262014-12-18 15:44:35 +010035static DEFINE_IDR(mmc_host_idr);
36static DEFINE_SPINLOCK(mmc_host_lock);
37
Pierre Ossmanb93931a2007-05-19 14:06:24 +020038static void mmc_host_classdev_release(struct device *dev)
39{
40 struct mmc_host *host = cls_dev_to_mmc_host(dev);
Guennadi Liakhovetskia7d1a1e2012-05-01 16:51:38 +020041 mutex_destroy(&host->slot.lock);
Ulf Hanssone2d19262014-12-18 15:44:35 +010042 spin_lock(&mmc_host_lock);
43 idr_remove(&mmc_host_idr, host->index);
44 spin_unlock(&mmc_host_lock);
Pierre Ossmanb93931a2007-05-19 14:06:24 +020045 kfree(host);
46}
47
48static struct class mmc_host_class = {
49 .name = "mmc_host",
50 .dev_release = mmc_host_classdev_release,
51};
52
53int mmc_register_host_class(void)
54{
55 return class_register(&mmc_host_class);
56}
57
58void mmc_unregister_host_class(void)
59{
60 class_unregister(&mmc_host_class);
61}
62
Linus Walleij04566832010-11-08 21:36:50 -050063#ifdef CONFIG_MMC_CLKGATE
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +053064static ssize_t clkgate_delay_show(struct device *dev,
65 struct device_attribute *attr, char *buf)
66{
67 struct mmc_host *host = cls_dev_to_mmc_host(dev);
Stephen Boyd4137e502011-12-05 10:28:44 -080068 return snprintf(buf, PAGE_SIZE, "%lu\n", host->clkgate_delay);
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +053069}
70
71static ssize_t clkgate_delay_store(struct device *dev,
72 struct device_attribute *attr, const char *buf, size_t count)
73{
74 struct mmc_host *host = cls_dev_to_mmc_host(dev);
75 unsigned long flags, value;
76
77 if (kstrtoul(buf, 0, &value))
78 return -EINVAL;
79
80 spin_lock_irqsave(&host->clk_lock, flags);
81 host->clkgate_delay = value;
82 spin_unlock_irqrestore(&host->clk_lock, flags);
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +053083 return count;
84}
Linus Walleij04566832010-11-08 21:36:50 -050085
86/*
87 * Enabling clock gating will make the core call out to the host
88 * once up and once down when it performs a request or card operation
89 * intermingled in any fashion. The driver will see this through
90 * set_ios() operations with ios.clock field set to 0 to gate (disable)
91 * the block clock, and to the old frequency to enable it again.
92 */
93static void mmc_host_clk_gate_delayed(struct mmc_host *host)
94{
95 unsigned long tick_ns;
96 unsigned long freq = host->ios.clock;
97 unsigned long flags;
98
99 if (!freq) {
100 pr_debug("%s: frequency set to 0 in disable function, "
101 "this means the clock is already disabled.\n",
102 mmc_hostname(host));
103 return;
104 }
105 /*
106 * New requests may have appeared while we were scheduling,
107 * then there is no reason to delay the check before
108 * clk_disable().
109 */
110 spin_lock_irqsave(&host->clk_lock, flags);
111
112 /*
113 * Delay n bus cycles (at least 8 from MMC spec) before attempting
114 * to disable the MCI block clock. The reference count may have
115 * gone up again after this delay due to rescheduling!
116 */
117 if (!host->clk_requests) {
118 spin_unlock_irqrestore(&host->clk_lock, flags);
119 tick_ns = DIV_ROUND_UP(1000000000, freq);
120 ndelay(host->clk_delay * tick_ns);
121 } else {
122 /* New users appeared while waiting for this work */
123 spin_unlock_irqrestore(&host->clk_lock, flags);
124 return;
125 }
Chris Ball86f315b2011-05-16 11:32:26 -0400126 mutex_lock(&host->clk_gate_mutex);
Linus Walleij04566832010-11-08 21:36:50 -0500127 spin_lock_irqsave(&host->clk_lock, flags);
128 if (!host->clk_requests) {
129 spin_unlock_irqrestore(&host->clk_lock, flags);
130 /* This will set host->ios.clock to 0 */
131 mmc_gate_clock(host);
132 spin_lock_irqsave(&host->clk_lock, flags);
133 pr_debug("%s: gated MCI clock\n", mmc_hostname(host));
134 }
135 spin_unlock_irqrestore(&host->clk_lock, flags);
Chris Ball86f315b2011-05-16 11:32:26 -0400136 mutex_unlock(&host->clk_gate_mutex);
Linus Walleij04566832010-11-08 21:36:50 -0500137}
138
139/*
140 * Internal work. Work to disable the clock at some later point.
141 */
142static void mmc_host_clk_gate_work(struct work_struct *work)
143{
144 struct mmc_host *host = container_of(work, struct mmc_host,
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530145 clk_gate_work.work);
Linus Walleij04566832010-11-08 21:36:50 -0500146
147 mmc_host_clk_gate_delayed(host);
148}
149
150/**
Mika Westerberg08c14072011-08-18 15:23:47 +0300151 * mmc_host_clk_hold - ungate hardware MCI clocks
Linus Walleij04566832010-11-08 21:36:50 -0500152 * @host: host to ungate.
153 *
154 * Makes sure the host ios.clock is restored to a non-zero value
155 * past this call. Increase clock reference count and ungate clock
156 * if we're the first user.
157 */
Mika Westerberg08c14072011-08-18 15:23:47 +0300158void mmc_host_clk_hold(struct mmc_host *host)
Linus Walleij04566832010-11-08 21:36:50 -0500159{
160 unsigned long flags;
161
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530162 /* cancel any clock gating work scheduled by mmc_host_clk_release() */
163 cancel_delayed_work_sync(&host->clk_gate_work);
Chris Ball86f315b2011-05-16 11:32:26 -0400164 mutex_lock(&host->clk_gate_mutex);
Linus Walleij04566832010-11-08 21:36:50 -0500165 spin_lock_irqsave(&host->clk_lock, flags);
166 if (host->clk_gated) {
167 spin_unlock_irqrestore(&host->clk_lock, flags);
168 mmc_ungate_clock(host);
169 spin_lock_irqsave(&host->clk_lock, flags);
170 pr_debug("%s: ungated MCI clock\n", mmc_hostname(host));
171 }
172 host->clk_requests++;
173 spin_unlock_irqrestore(&host->clk_lock, flags);
Chris Ball86f315b2011-05-16 11:32:26 -0400174 mutex_unlock(&host->clk_gate_mutex);
Linus Walleij04566832010-11-08 21:36:50 -0500175}
176
177/**
178 * mmc_host_may_gate_card - check if this card may be gated
179 * @card: card to check.
180 */
181static bool mmc_host_may_gate_card(struct mmc_card *card)
182{
183 /* If there is no card we may gate it */
184 if (!card)
185 return true;
186 /*
187 * Don't gate SDIO cards! These need to be clocked at all times
188 * since they may be independent systems generating interrupts
189 * and other events. The clock requests counter from the core will
190 * go down to zero since the core does not need it, but we will not
191 * gate the clock, because there is somebody out there that may still
192 * be using it.
193 */
Pierre Tardydb993502011-02-06 19:03:47 +0100194 return !(card->quirks & MMC_QUIRK_BROKEN_CLK_GATING);
Linus Walleij04566832010-11-08 21:36:50 -0500195}
196
197/**
Mika Westerberg08c14072011-08-18 15:23:47 +0300198 * mmc_host_clk_release - gate off hardware MCI clocks
Linus Walleij04566832010-11-08 21:36:50 -0500199 * @host: host to gate.
200 *
201 * Calls the host driver with ios.clock set to zero as often as possible
202 * in order to gate off hardware MCI clocks. Decrease clock reference
203 * count and schedule disabling of clock.
204 */
Mika Westerberg08c14072011-08-18 15:23:47 +0300205void mmc_host_clk_release(struct mmc_host *host)
Linus Walleij04566832010-11-08 21:36:50 -0500206{
207 unsigned long flags;
208
209 spin_lock_irqsave(&host->clk_lock, flags);
210 host->clk_requests--;
211 if (mmc_host_may_gate_card(host->card) &&
212 !host->clk_requests)
Tejun Heo3b07e9c2012-08-20 14:51:24 -0700213 schedule_delayed_work(&host->clk_gate_work,
214 msecs_to_jiffies(host->clkgate_delay));
Linus Walleij04566832010-11-08 21:36:50 -0500215 spin_unlock_irqrestore(&host->clk_lock, flags);
216}
217
218/**
219 * mmc_host_clk_rate - get current clock frequency setting
220 * @host: host to get the clock frequency for.
221 *
222 * Returns current clock frequency regardless of gating.
223 */
224unsigned int mmc_host_clk_rate(struct mmc_host *host)
225{
226 unsigned long freq;
227 unsigned long flags;
228
229 spin_lock_irqsave(&host->clk_lock, flags);
230 if (host->clk_gated)
231 freq = host->clk_old;
232 else
233 freq = host->ios.clock;
234 spin_unlock_irqrestore(&host->clk_lock, flags);
235 return freq;
236}
237
238/**
239 * mmc_host_clk_init - set up clock gating code
240 * @host: host with potential clock to control
241 */
242static inline void mmc_host_clk_init(struct mmc_host *host)
243{
244 host->clk_requests = 0;
245 /* Hold MCI clock for 8 cycles by default */
246 host->clk_delay = 8;
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530247 /*
Guennadi Liakhovetskic84f15a2012-02-23 11:22:29 +0100248 * Default clock gating delay is 0ms to avoid wasting power.
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530249 * This value can be tuned by writing into sysfs entry.
250 */
Guennadi Liakhovetskic84f15a2012-02-23 11:22:29 +0100251 host->clkgate_delay = 0;
Linus Walleij04566832010-11-08 21:36:50 -0500252 host->clk_gated = false;
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530253 INIT_DELAYED_WORK(&host->clk_gate_work, mmc_host_clk_gate_work);
Linus Walleij04566832010-11-08 21:36:50 -0500254 spin_lock_init(&host->clk_lock);
Chris Ball86f315b2011-05-16 11:32:26 -0400255 mutex_init(&host->clk_gate_mutex);
Linus Walleij04566832010-11-08 21:36:50 -0500256}
257
258/**
259 * mmc_host_clk_exit - shut down clock gating code
260 * @host: host with potential clock to control
261 */
262static inline void mmc_host_clk_exit(struct mmc_host *host)
263{
264 /*
265 * Wait for any outstanding gate and then make sure we're
266 * ungated before exiting.
267 */
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530268 if (cancel_delayed_work_sync(&host->clk_gate_work))
Linus Walleij04566832010-11-08 21:36:50 -0500269 mmc_host_clk_gate_delayed(host);
270 if (host->clk_gated)
Mika Westerberg08c14072011-08-18 15:23:47 +0300271 mmc_host_clk_hold(host);
Linus Walleijc288b852010-12-22 09:50:12 +0100272 /* There should be only one user now */
273 WARN_ON(host->clk_requests > 1);
Linus Walleij04566832010-11-08 21:36:50 -0500274}
275
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530276static inline void mmc_host_clk_sysfs_init(struct mmc_host *host)
277{
278 host->clkgate_delay_attr.show = clkgate_delay_show;
279 host->clkgate_delay_attr.store = clkgate_delay_store;
280 sysfs_attr_init(&host->clkgate_delay_attr.attr);
281 host->clkgate_delay_attr.attr.name = "clkgate_delay";
282 host->clkgate_delay_attr.attr.mode = S_IRUGO | S_IWUSR;
283 if (device_create_file(&host->class_dev, &host->clkgate_delay_attr))
284 pr_err("%s: Failed to create clkgate_delay sysfs entry\n",
285 mmc_hostname(host));
286}
Linus Walleij04566832010-11-08 21:36:50 -0500287#else
288
289static inline void mmc_host_clk_init(struct mmc_host *host)
290{
291}
292
293static inline void mmc_host_clk_exit(struct mmc_host *host)
294{
295}
296
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530297static inline void mmc_host_clk_sysfs_init(struct mmc_host *host)
298{
299}
300
Linus Walleij04566832010-11-08 21:36:50 -0500301#endif
302
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200303/**
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100304 * mmc_of_parse() - parse host's device-tree node
305 * @host: host whose node should be parsed.
306 *
307 * To keep the rest of the MMC subsystem unaware of whether DT has been
308 * used to to instantiate and configure this host instance or not, we
309 * parse the properties and set respective generic mmc-host flags and
310 * parameters.
311 */
Simon Baatzec0a7512013-06-09 22:14:11 +0200312int mmc_of_parse(struct mmc_host *host)
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100313{
314 struct device_node *np;
315 u32 bus_width;
Linus Walleij98e90de2014-08-27 13:00:52 +0200316 int len, ret;
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200317 bool cd_cap_invert, cd_gpio_invert = false;
318 bool ro_cap_invert, ro_gpio_invert = false;
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100319
320 if (!host->parent || !host->parent->of_node)
Simon Baatzec0a7512013-06-09 22:14:11 +0200321 return 0;
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100322
323 np = host->parent->of_node;
324
325 /* "bus-width" is translated to MMC_CAP_*_BIT_DATA flags */
326 if (of_property_read_u32(np, "bus-width", &bus_width) < 0) {
327 dev_dbg(host->parent,
328 "\"bus-width\" property is missing, assuming 1 bit.\n");
329 bus_width = 1;
330 }
331
332 switch (bus_width) {
333 case 8:
334 host->caps |= MMC_CAP_8_BIT_DATA;
335 /* Hosts capable of 8-bit transfers can also do 4 bits */
336 case 4:
337 host->caps |= MMC_CAP_4_BIT_DATA;
338 break;
339 case 1:
340 break;
341 default:
342 dev_err(host->parent,
Alexander Shiyan1c279f42014-02-15 15:40:58 +0400343 "Invalid \"bus-width\" value %u!\n", bus_width);
Simon Baatzec0a7512013-06-09 22:14:11 +0200344 return -EINVAL;
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100345 }
346
347 /* f_max is obtained from the optional "max-frequency" property */
348 of_property_read_u32(np, "max-frequency", &host->f_max);
349
350 /*
351 * Configure CD and WP pins. They are both by default active low to
352 * match the SDHCI spec. If GPIOs are provided for CD and / or WP, the
353 * mmc-gpio helpers are used to attach, configure and use them. If
354 * polarity inversion is specified in DT, one of MMC_CAP2_CD_ACTIVE_HIGH
355 * and MMC_CAP2_RO_ACTIVE_HIGH capability-2 flags is set. If the
356 * "broken-cd" property is provided, the MMC_CAP_NEEDS_POLL capability
357 * is set. If the "non-removable" property is found, the
358 * MMC_CAP_NONREMOVABLE capability is set and no card-detection
359 * configuration is performed.
360 */
361
362 /* Parse Card Detection */
363 if (of_find_property(np, "non-removable", &len)) {
364 host->caps |= MMC_CAP_NONREMOVABLE;
365 } else {
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200366 cd_cap_invert = of_property_read_bool(np, "cd-inverted");
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100367
368 if (of_find_property(np, "broken-cd", &len))
369 host->caps |= MMC_CAP_NEEDS_POLL;
370
Linus Walleij89168b42014-10-02 09:08:46 +0200371 ret = mmc_gpiod_request_cd(host, "cd", 0, true,
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200372 0, &cd_gpio_invert);
Ulf Hansson91167522014-12-18 10:41:44 +0100373 if (!ret)
Linus Walleij98e90de2014-08-27 13:00:52 +0200374 dev_info(host->parent, "Got CD GPIO\n");
Ulf Hansson91167522014-12-18 10:41:44 +0100375 else if (ret != -ENOENT)
376 return ret;
Linus Walleij89168b42014-10-02 09:08:46 +0200377
378 /*
379 * There are two ways to flag that the CD line is inverted:
380 * through the cd-inverted flag and by the GPIO line itself
381 * being inverted from the GPIO subsystem. This is a leftover
382 * from the times when the GPIO subsystem did not make it
383 * possible to flag a line as inverted.
384 *
385 * If the capability on the host AND the GPIO line are
386 * both inverted, the end result is that the CD line is
387 * not inverted.
388 */
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200389 if (cd_cap_invert ^ cd_gpio_invert)
Linus Walleij89168b42014-10-02 09:08:46 +0200390 host->caps2 |= MMC_CAP2_CD_ACTIVE_HIGH;
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100391 }
392
393 /* Parse Write Protection */
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200394 ro_cap_invert = of_property_read_bool(np, "wp-inverted");
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100395
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200396 ret = mmc_gpiod_request_ro(host, "wp", 0, false, 0, &ro_gpio_invert);
Ulf Hansson91167522014-12-18 10:41:44 +0100397 if (!ret)
Linus Walleij98e90de2014-08-27 13:00:52 +0200398 dev_info(host->parent, "Got WP GPIO\n");
Ulf Hansson91167522014-12-18 10:41:44 +0100399 else if (ret != -ENOENT)
400 return ret;
Linus Walleij98e90de2014-08-27 13:00:52 +0200401
Linus Walleij89168b42014-10-02 09:08:46 +0200402 /* See the comment on CD inversion above */
Kristina Martsenkoa31b0c62014-11-05 02:22:41 +0200403 if (ro_cap_invert ^ ro_gpio_invert)
Linus Walleij89168b42014-10-02 09:08:46 +0200404 host->caps2 |= MMC_CAP2_RO_ACTIVE_HIGH;
405
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100406 if (of_find_property(np, "cap-sd-highspeed", &len))
407 host->caps |= MMC_CAP_SD_HIGHSPEED;
408 if (of_find_property(np, "cap-mmc-highspeed", &len))
409 host->caps |= MMC_CAP_MMC_HIGHSPEED;
Ulf Hanssonb66bd0e2014-02-14 13:27:07 +0100410 if (of_find_property(np, "sd-uhs-sdr12", &len))
411 host->caps |= MMC_CAP_UHS_SDR12;
412 if (of_find_property(np, "sd-uhs-sdr25", &len))
413 host->caps |= MMC_CAP_UHS_SDR25;
414 if (of_find_property(np, "sd-uhs-sdr50", &len))
415 host->caps |= MMC_CAP_UHS_SDR50;
416 if (of_find_property(np, "sd-uhs-sdr104", &len))
417 host->caps |= MMC_CAP_UHS_SDR104;
418 if (of_find_property(np, "sd-uhs-ddr50", &len))
419 host->caps |= MMC_CAP_UHS_DDR50;
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100420 if (of_find_property(np, "cap-power-off-card", &len))
421 host->caps |= MMC_CAP_POWER_OFF_CARD;
422 if (of_find_property(np, "cap-sdio-irq", &len))
423 host->caps |= MMC_CAP_SDIO_IRQ;
Ulf Hansson5a36d6b2013-06-10 17:03:47 +0200424 if (of_find_property(np, "full-pwr-cycle", &len))
425 host->caps2 |= MMC_CAP2_FULL_PWR_CYCLE;
Guennadi Liakhovetski2fdb6e22013-02-15 16:14:01 +0100426 if (of_find_property(np, "keep-power-in-suspend", &len))
427 host->pm_caps |= MMC_PM_KEEP_POWER;
428 if (of_find_property(np, "enable-sdio-wakeup", &len))
429 host->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
Ulf Hanssonc0baf842014-02-14 13:27:08 +0100430 if (of_find_property(np, "mmc-ddr-1_8v", &len))
431 host->caps |= MMC_CAP_1_8V_DDR;
432 if (of_find_property(np, "mmc-ddr-1_2v", &len))
433 host->caps |= MMC_CAP_1_2V_DDR;
Jaehoon Chung321bd412014-02-14 13:27:09 +0100434 if (of_find_property(np, "mmc-hs200-1_8v", &len))
435 host->caps2 |= MMC_CAP2_HS200_1_8V_SDR;
436 if (of_find_property(np, "mmc-hs200-1_2v", &len))
437 host->caps2 |= MMC_CAP2_HS200_1_2V_SDR;
Seungwon Jeonc373eb42014-04-23 17:15:08 +0900438 if (of_find_property(np, "mmc-hs400-1_8v", &len))
439 host->caps2 |= MMC_CAP2_HS400_1_8V | MMC_CAP2_HS200_1_8V_SDR;
440 if (of_find_property(np, "mmc-hs400-1_2v", &len))
441 host->caps2 |= MMC_CAP2_HS400_1_2V | MMC_CAP2_HS200_1_2V_SDR;
Simon Baatzec0a7512013-06-09 22:14:11 +0200442
Sascha Hauer3d705d12014-08-19 10:45:51 +0200443 host->dsr_req = !of_property_read_u32(np, "dsr", &host->dsr);
444 if (host->dsr_req && (host->dsr & ~0xffff)) {
445 dev_err(host->parent,
446 "device tree specified broken value for DSR: 0x%x, ignoring\n",
447 host->dsr);
448 host->dsr_req = 0;
449 }
450
Simon Baatzec0a7512013-06-09 22:14:11 +0200451 return 0;
Guennadi Liakhovetski6c56e7a2013-02-16 16:21:16 +0100452}
453
454EXPORT_SYMBOL(mmc_of_parse);
455
456/**
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200457 * mmc_alloc_host - initialise the per-host structure.
458 * @extra: sizeof private data structure
459 * @dev: pointer to host device model structure
460 *
461 * Initialise the per-host structure.
462 */
463struct mmc_host *mmc_alloc_host(int extra, struct device *dev)
464{
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100465 int err;
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200466 struct mmc_host *host;
467
Mariusz Kozlowskibe760a92007-08-10 14:00:50 -0700468 host = kzalloc(sizeof(struct mmc_host) + extra, GFP_KERNEL);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200469 if (!host)
470 return NULL;
471
Guennadi Liakhovetskid9adcc12012-06-14 10:17:39 +0200472 /* scanning will be enabled when we're ready */
473 host->rescan_disable = 1;
Tejun Heo803d9e02013-02-27 17:04:32 -0800474 idr_preload(GFP_KERNEL);
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100475 spin_lock(&mmc_host_lock);
Tejun Heo803d9e02013-02-27 17:04:32 -0800476 err = idr_alloc(&mmc_host_idr, host, 0, 0, GFP_NOWAIT);
477 if (err >= 0)
478 host->index = err;
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100479 spin_unlock(&mmc_host_lock);
Tejun Heo803d9e02013-02-27 17:04:32 -0800480 idr_preload_end();
481 if (err < 0)
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100482 goto free;
483
Kay Sieversd1b26862008-11-08 21:37:46 +0100484 dev_set_name(&host->class_dev, "mmc%d", host->index);
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100485
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200486 host->parent = dev;
487 host->class_dev.parent = dev;
488 host->class_dev.class = &mmc_host_class;
489 device_initialize(&host->class_dev);
490
Linus Walleij04566832010-11-08 21:36:50 -0500491 mmc_host_clk_init(host);
492
Guennadi Liakhovetskia7d1a1e2012-05-01 16:51:38 +0200493 mutex_init(&host->slot.lock);
Guennadi Liakhovetski27410ee2012-05-01 15:40:15 +0200494 host->slot.cd_irq = -EINVAL;
495
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200496 spin_lock_init(&host->lock);
497 init_waitqueue_head(&host->wq);
498 INIT_DELAYED_WORK(&host->detect, mmc_rescan);
Uwe Kleine-König81ca03a2010-08-18 09:25:38 -0700499#ifdef CONFIG_PM
Maxim Levitsky4c2ef252010-08-10 18:01:41 -0700500 host->pm_notify.notifier_call = mmc_pm_notify;
Uwe Kleine-König81ca03a2010-08-18 09:25:38 -0700501#endif
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200502
503 /*
504 * By default, hosts do not support SGIO or large requests.
505 * They have to set these according to their abilities.
506 */
Martin K. Petersena36274e2010-09-10 01:33:59 -0400507 host->max_segs = 1;
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200508 host->max_seg_size = PAGE_CACHE_SIZE;
509
510 host->max_req_size = PAGE_CACHE_SIZE;
511 host->max_blk_size = 512;
512 host->max_blk_count = PAGE_CACHE_SIZE / 512;
513
514 return host;
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100515
516free:
517 kfree(host);
518 return NULL;
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200519}
520
521EXPORT_SYMBOL(mmc_alloc_host);
522
523/**
524 * mmc_add_host - initialise host hardware
525 * @host: mmc host
Pierre Ossman67a61c42007-07-11 20:22:11 +0200526 *
527 * Register the host with the driver model. The host must be
528 * prepared to start servicing requests before this function
529 * completes.
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200530 */
531int mmc_add_host(struct mmc_host *host)
532{
533 int err;
534
Nicolas Pitre17b759a2007-07-24 02:09:39 -0400535 WARN_ON((host->caps & MMC_CAP_SDIO_IRQ) &&
536 !host->ops->enable_sdio_irq);
537
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200538 err = device_add(&host->class_dev);
539 if (err)
540 return err;
541
Wolfram Sangf317dfe2011-04-11 06:11:29 +0200542 led_trigger_register_simple(dev_name(&host->class_dev), &host->led);
543
Haavard Skinnemoen6edd8ee2008-07-24 14:18:57 +0200544#ifdef CONFIG_DEBUG_FS
545 mmc_add_host_debugfs(host);
546#endif
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530547 mmc_host_clk_sysfs_init(host);
Haavard Skinnemoen6edd8ee2008-07-24 14:18:57 +0200548
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200549 mmc_start_host(host);
Maxim Levitsky4c2ef252010-08-10 18:01:41 -0700550 register_pm_notifier(&host->pm_notify);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200551
552 return 0;
553}
554
555EXPORT_SYMBOL(mmc_add_host);
556
557/**
558 * mmc_remove_host - remove host hardware
559 * @host: mmc host
560 *
561 * Unregister and remove all cards associated with this host,
Pierre Ossman67a61c42007-07-11 20:22:11 +0200562 * and power down the MMC bus. No new requests will be issued
563 * after this function has returned.
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200564 */
565void mmc_remove_host(struct mmc_host *host)
566{
Maxim Levitsky4c2ef252010-08-10 18:01:41 -0700567 unregister_pm_notifier(&host->pm_notify);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200568 mmc_stop_host(host);
569
Haavard Skinnemoen6edd8ee2008-07-24 14:18:57 +0200570#ifdef CONFIG_DEBUG_FS
571 mmc_remove_host_debugfs(host);
572#endif
573
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200574 device_del(&host->class_dev);
575
Pierre Ossman77f1fd62007-10-12 22:48:46 +0200576 led_trigger_unregister_simple(host->led);
Linus Walleij04566832010-11-08 21:36:50 -0500577
578 mmc_host_clk_exit(host);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200579}
580
581EXPORT_SYMBOL(mmc_remove_host);
582
583/**
584 * mmc_free_host - free the host structure
585 * @host: mmc host
586 *
587 * Free the host once all references to it have been dropped.
588 */
589void mmc_free_host(struct mmc_host *host)
590{
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200591 put_device(&host->class_dev);
592}
593
594EXPORT_SYMBOL(mmc_free_host);