blob: ee2e16b170174df6e59c0d53a314d0058ddaff2a [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>
18#include <linux/pagemap.h>
Paul Gortmaker3ef77af2011-07-10 12:42:00 -040019#include <linux/export.h>
Pierre Ossmanaf8350c2007-09-24 07:15:48 +020020#include <linux/leds.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Maxim Levitsky4c2ef252010-08-10 18:01:41 -070022#include <linux/suspend.h>
Pierre Ossmanb93931a2007-05-19 14:06:24 +020023
24#include <linux/mmc/host.h>
Linus Walleij04566832010-11-08 21:36:50 -050025#include <linux/mmc/card.h>
Pierre Ossmanb93931a2007-05-19 14:06:24 +020026
27#include "core.h"
28#include "host.h"
29
30#define cls_dev_to_mmc_host(d) container_of(d, struct mmc_host, class_dev)
31
32static void mmc_host_classdev_release(struct device *dev)
33{
34 struct mmc_host *host = cls_dev_to_mmc_host(dev);
Guennadi Liakhovetskia7d1a1e2012-05-01 16:51:38 +020035 mutex_destroy(&host->slot.lock);
Pierre Ossmanb93931a2007-05-19 14:06:24 +020036 kfree(host);
37}
38
39static struct class mmc_host_class = {
40 .name = "mmc_host",
41 .dev_release = mmc_host_classdev_release,
42};
43
44int mmc_register_host_class(void)
45{
46 return class_register(&mmc_host_class);
47}
48
49void mmc_unregister_host_class(void)
50{
51 class_unregister(&mmc_host_class);
52}
53
54static DEFINE_IDR(mmc_host_idr);
55static DEFINE_SPINLOCK(mmc_host_lock);
56
Linus Walleij04566832010-11-08 21:36:50 -050057#ifdef CONFIG_MMC_CLKGATE
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +053058static ssize_t clkgate_delay_show(struct device *dev,
59 struct device_attribute *attr, char *buf)
60{
61 struct mmc_host *host = cls_dev_to_mmc_host(dev);
Stephen Boyd4137e502011-12-05 10:28:44 -080062 return snprintf(buf, PAGE_SIZE, "%lu\n", host->clkgate_delay);
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +053063}
64
65static ssize_t clkgate_delay_store(struct device *dev,
66 struct device_attribute *attr, const char *buf, size_t count)
67{
68 struct mmc_host *host = cls_dev_to_mmc_host(dev);
69 unsigned long flags, value;
70
71 if (kstrtoul(buf, 0, &value))
72 return -EINVAL;
73
74 spin_lock_irqsave(&host->clk_lock, flags);
75 host->clkgate_delay = value;
76 spin_unlock_irqrestore(&host->clk_lock, flags);
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +053077 return count;
78}
Linus Walleij04566832010-11-08 21:36:50 -050079
80/*
81 * Enabling clock gating will make the core call out to the host
82 * once up and once down when it performs a request or card operation
83 * intermingled in any fashion. The driver will see this through
84 * set_ios() operations with ios.clock field set to 0 to gate (disable)
85 * the block clock, and to the old frequency to enable it again.
86 */
87static void mmc_host_clk_gate_delayed(struct mmc_host *host)
88{
89 unsigned long tick_ns;
90 unsigned long freq = host->ios.clock;
91 unsigned long flags;
92
93 if (!freq) {
94 pr_debug("%s: frequency set to 0 in disable function, "
95 "this means the clock is already disabled.\n",
96 mmc_hostname(host));
97 return;
98 }
99 /*
100 * New requests may have appeared while we were scheduling,
101 * then there is no reason to delay the check before
102 * clk_disable().
103 */
104 spin_lock_irqsave(&host->clk_lock, flags);
105
106 /*
107 * Delay n bus cycles (at least 8 from MMC spec) before attempting
108 * to disable the MCI block clock. The reference count may have
109 * gone up again after this delay due to rescheduling!
110 */
111 if (!host->clk_requests) {
112 spin_unlock_irqrestore(&host->clk_lock, flags);
113 tick_ns = DIV_ROUND_UP(1000000000, freq);
114 ndelay(host->clk_delay * tick_ns);
115 } else {
116 /* New users appeared while waiting for this work */
117 spin_unlock_irqrestore(&host->clk_lock, flags);
118 return;
119 }
Chris Ball86f315b2011-05-16 11:32:26 -0400120 mutex_lock(&host->clk_gate_mutex);
Linus Walleij04566832010-11-08 21:36:50 -0500121 spin_lock_irqsave(&host->clk_lock, flags);
122 if (!host->clk_requests) {
123 spin_unlock_irqrestore(&host->clk_lock, flags);
124 /* This will set host->ios.clock to 0 */
125 mmc_gate_clock(host);
126 spin_lock_irqsave(&host->clk_lock, flags);
127 pr_debug("%s: gated MCI clock\n", mmc_hostname(host));
128 }
129 spin_unlock_irqrestore(&host->clk_lock, flags);
Chris Ball86f315b2011-05-16 11:32:26 -0400130 mutex_unlock(&host->clk_gate_mutex);
Linus Walleij04566832010-11-08 21:36:50 -0500131}
132
133/*
134 * Internal work. Work to disable the clock at some later point.
135 */
136static void mmc_host_clk_gate_work(struct work_struct *work)
137{
138 struct mmc_host *host = container_of(work, struct mmc_host,
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530139 clk_gate_work.work);
Linus Walleij04566832010-11-08 21:36:50 -0500140
141 mmc_host_clk_gate_delayed(host);
142}
143
144/**
Mika Westerberg08c14072011-08-18 15:23:47 +0300145 * mmc_host_clk_hold - ungate hardware MCI clocks
Linus Walleij04566832010-11-08 21:36:50 -0500146 * @host: host to ungate.
147 *
148 * Makes sure the host ios.clock is restored to a non-zero value
149 * past this call. Increase clock reference count and ungate clock
150 * if we're the first user.
151 */
Mika Westerberg08c14072011-08-18 15:23:47 +0300152void mmc_host_clk_hold(struct mmc_host *host)
Linus Walleij04566832010-11-08 21:36:50 -0500153{
154 unsigned long flags;
155
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530156 /* cancel any clock gating work scheduled by mmc_host_clk_release() */
157 cancel_delayed_work_sync(&host->clk_gate_work);
Chris Ball86f315b2011-05-16 11:32:26 -0400158 mutex_lock(&host->clk_gate_mutex);
Linus Walleij04566832010-11-08 21:36:50 -0500159 spin_lock_irqsave(&host->clk_lock, flags);
160 if (host->clk_gated) {
161 spin_unlock_irqrestore(&host->clk_lock, flags);
162 mmc_ungate_clock(host);
163 spin_lock_irqsave(&host->clk_lock, flags);
164 pr_debug("%s: ungated MCI clock\n", mmc_hostname(host));
165 }
166 host->clk_requests++;
167 spin_unlock_irqrestore(&host->clk_lock, flags);
Chris Ball86f315b2011-05-16 11:32:26 -0400168 mutex_unlock(&host->clk_gate_mutex);
Linus Walleij04566832010-11-08 21:36:50 -0500169}
170
171/**
172 * mmc_host_may_gate_card - check if this card may be gated
173 * @card: card to check.
174 */
175static bool mmc_host_may_gate_card(struct mmc_card *card)
176{
177 /* If there is no card we may gate it */
178 if (!card)
179 return true;
180 /*
181 * Don't gate SDIO cards! These need to be clocked at all times
182 * since they may be independent systems generating interrupts
183 * and other events. The clock requests counter from the core will
184 * go down to zero since the core does not need it, but we will not
185 * gate the clock, because there is somebody out there that may still
186 * be using it.
187 */
Pierre Tardydb993502011-02-06 19:03:47 +0100188 return !(card->quirks & MMC_QUIRK_BROKEN_CLK_GATING);
Linus Walleij04566832010-11-08 21:36:50 -0500189}
190
191/**
Mika Westerberg08c14072011-08-18 15:23:47 +0300192 * mmc_host_clk_release - gate off hardware MCI clocks
Linus Walleij04566832010-11-08 21:36:50 -0500193 * @host: host to gate.
194 *
195 * Calls the host driver with ios.clock set to zero as often as possible
196 * in order to gate off hardware MCI clocks. Decrease clock reference
197 * count and schedule disabling of clock.
198 */
Mika Westerberg08c14072011-08-18 15:23:47 +0300199void mmc_host_clk_release(struct mmc_host *host)
Linus Walleij04566832010-11-08 21:36:50 -0500200{
201 unsigned long flags;
202
203 spin_lock_irqsave(&host->clk_lock, flags);
204 host->clk_requests--;
205 if (mmc_host_may_gate_card(host->card) &&
206 !host->clk_requests)
Tejun Heo3b07e9c2012-08-20 14:51:24 -0700207 schedule_delayed_work(&host->clk_gate_work,
208 msecs_to_jiffies(host->clkgate_delay));
Linus Walleij04566832010-11-08 21:36:50 -0500209 spin_unlock_irqrestore(&host->clk_lock, flags);
210}
211
212/**
213 * mmc_host_clk_rate - get current clock frequency setting
214 * @host: host to get the clock frequency for.
215 *
216 * Returns current clock frequency regardless of gating.
217 */
218unsigned int mmc_host_clk_rate(struct mmc_host *host)
219{
220 unsigned long freq;
221 unsigned long flags;
222
223 spin_lock_irqsave(&host->clk_lock, flags);
224 if (host->clk_gated)
225 freq = host->clk_old;
226 else
227 freq = host->ios.clock;
228 spin_unlock_irqrestore(&host->clk_lock, flags);
229 return freq;
230}
231
232/**
233 * mmc_host_clk_init - set up clock gating code
234 * @host: host with potential clock to control
235 */
236static inline void mmc_host_clk_init(struct mmc_host *host)
237{
238 host->clk_requests = 0;
239 /* Hold MCI clock for 8 cycles by default */
240 host->clk_delay = 8;
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530241 /*
Guennadi Liakhovetskic84f15a2012-02-23 11:22:29 +0100242 * Default clock gating delay is 0ms to avoid wasting power.
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530243 * This value can be tuned by writing into sysfs entry.
244 */
Guennadi Liakhovetskic84f15a2012-02-23 11:22:29 +0100245 host->clkgate_delay = 0;
Linus Walleij04566832010-11-08 21:36:50 -0500246 host->clk_gated = false;
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530247 INIT_DELAYED_WORK(&host->clk_gate_work, mmc_host_clk_gate_work);
Linus Walleij04566832010-11-08 21:36:50 -0500248 spin_lock_init(&host->clk_lock);
Chris Ball86f315b2011-05-16 11:32:26 -0400249 mutex_init(&host->clk_gate_mutex);
Linus Walleij04566832010-11-08 21:36:50 -0500250}
251
252/**
253 * mmc_host_clk_exit - shut down clock gating code
254 * @host: host with potential clock to control
255 */
256static inline void mmc_host_clk_exit(struct mmc_host *host)
257{
258 /*
259 * Wait for any outstanding gate and then make sure we're
260 * ungated before exiting.
261 */
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530262 if (cancel_delayed_work_sync(&host->clk_gate_work))
Linus Walleij04566832010-11-08 21:36:50 -0500263 mmc_host_clk_gate_delayed(host);
264 if (host->clk_gated)
Mika Westerberg08c14072011-08-18 15:23:47 +0300265 mmc_host_clk_hold(host);
Linus Walleijc288b852010-12-22 09:50:12 +0100266 /* There should be only one user now */
267 WARN_ON(host->clk_requests > 1);
Linus Walleij04566832010-11-08 21:36:50 -0500268}
269
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530270static inline void mmc_host_clk_sysfs_init(struct mmc_host *host)
271{
272 host->clkgate_delay_attr.show = clkgate_delay_show;
273 host->clkgate_delay_attr.store = clkgate_delay_store;
274 sysfs_attr_init(&host->clkgate_delay_attr.attr);
275 host->clkgate_delay_attr.attr.name = "clkgate_delay";
276 host->clkgate_delay_attr.attr.mode = S_IRUGO | S_IWUSR;
277 if (device_create_file(&host->class_dev, &host->clkgate_delay_attr))
278 pr_err("%s: Failed to create clkgate_delay sysfs entry\n",
279 mmc_hostname(host));
280}
Linus Walleij04566832010-11-08 21:36:50 -0500281#else
282
283static inline void mmc_host_clk_init(struct mmc_host *host)
284{
285}
286
287static inline void mmc_host_clk_exit(struct mmc_host *host)
288{
289}
290
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530291static inline void mmc_host_clk_sysfs_init(struct mmc_host *host)
292{
293}
294
Linus Walleij04566832010-11-08 21:36:50 -0500295#endif
296
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200297/**
298 * mmc_alloc_host - initialise the per-host structure.
299 * @extra: sizeof private data structure
300 * @dev: pointer to host device model structure
301 *
302 * Initialise the per-host structure.
303 */
304struct mmc_host *mmc_alloc_host(int extra, struct device *dev)
305{
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100306 int err;
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200307 struct mmc_host *host;
308
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100309 if (!idr_pre_get(&mmc_host_idr, GFP_KERNEL))
310 return NULL;
311
Mariusz Kozlowskibe760a92007-08-10 14:00:50 -0700312 host = kzalloc(sizeof(struct mmc_host) + extra, GFP_KERNEL);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200313 if (!host)
314 return NULL;
315
Guennadi Liakhovetskid9adcc12012-06-14 10:17:39 +0200316 /* scanning will be enabled when we're ready */
317 host->rescan_disable = 1;
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100318 spin_lock(&mmc_host_lock);
319 err = idr_get_new(&mmc_host_idr, host, &host->index);
320 spin_unlock(&mmc_host_lock);
321 if (err)
322 goto free;
323
Kay Sieversd1b26862008-11-08 21:37:46 +0100324 dev_set_name(&host->class_dev, "mmc%d", host->index);
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100325
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200326 host->parent = dev;
327 host->class_dev.parent = dev;
328 host->class_dev.class = &mmc_host_class;
329 device_initialize(&host->class_dev);
330
Linus Walleij04566832010-11-08 21:36:50 -0500331 mmc_host_clk_init(host);
332
Guennadi Liakhovetskia7d1a1e2012-05-01 16:51:38 +0200333 mutex_init(&host->slot.lock);
Guennadi Liakhovetski27410ee2012-05-01 15:40:15 +0200334 host->slot.cd_irq = -EINVAL;
335
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200336 spin_lock_init(&host->lock);
337 init_waitqueue_head(&host->wq);
338 INIT_DELAYED_WORK(&host->detect, mmc_rescan);
Uwe Kleine-König81ca03a2010-08-18 09:25:38 -0700339#ifdef CONFIG_PM
Maxim Levitsky4c2ef252010-08-10 18:01:41 -0700340 host->pm_notify.notifier_call = mmc_pm_notify;
Uwe Kleine-König81ca03a2010-08-18 09:25:38 -0700341#endif
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200342
343 /*
344 * By default, hosts do not support SGIO or large requests.
345 * They have to set these according to their abilities.
346 */
Martin K. Petersena36274e2010-09-10 01:33:59 -0400347 host->max_segs = 1;
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200348 host->max_seg_size = PAGE_CACHE_SIZE;
349
350 host->max_req_size = PAGE_CACHE_SIZE;
351 host->max_blk_size = 512;
352 host->max_blk_count = PAGE_CACHE_SIZE / 512;
353
354 return host;
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100355
356free:
357 kfree(host);
358 return NULL;
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200359}
360
361EXPORT_SYMBOL(mmc_alloc_host);
362
363/**
364 * mmc_add_host - initialise host hardware
365 * @host: mmc host
Pierre Ossman67a61c42007-07-11 20:22:11 +0200366 *
367 * Register the host with the driver model. The host must be
368 * prepared to start servicing requests before this function
369 * completes.
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200370 */
371int mmc_add_host(struct mmc_host *host)
372{
373 int err;
374
Nicolas Pitre17b759a2007-07-24 02:09:39 -0400375 WARN_ON((host->caps & MMC_CAP_SDIO_IRQ) &&
376 !host->ops->enable_sdio_irq);
377
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200378 err = device_add(&host->class_dev);
379 if (err)
380 return err;
381
Wolfram Sangf317dfe2011-04-11 06:11:29 +0200382 led_trigger_register_simple(dev_name(&host->class_dev), &host->led);
383
Haavard Skinnemoen6edd8ee2008-07-24 14:18:57 +0200384#ifdef CONFIG_DEBUG_FS
385 mmc_add_host_debugfs(host);
386#endif
Sujit Reddy Thumma597dd9d792011-11-14 13:53:29 +0530387 mmc_host_clk_sysfs_init(host);
Haavard Skinnemoen6edd8ee2008-07-24 14:18:57 +0200388
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200389 mmc_start_host(host);
Maxim Levitsky4c2ef252010-08-10 18:01:41 -0700390 register_pm_notifier(&host->pm_notify);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200391
392 return 0;
393}
394
395EXPORT_SYMBOL(mmc_add_host);
396
397/**
398 * mmc_remove_host - remove host hardware
399 * @host: mmc host
400 *
401 * Unregister and remove all cards associated with this host,
Pierre Ossman67a61c42007-07-11 20:22:11 +0200402 * and power down the MMC bus. No new requests will be issued
403 * after this function has returned.
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200404 */
405void mmc_remove_host(struct mmc_host *host)
406{
Maxim Levitsky4c2ef252010-08-10 18:01:41 -0700407 unregister_pm_notifier(&host->pm_notify);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200408 mmc_stop_host(host);
409
Haavard Skinnemoen6edd8ee2008-07-24 14:18:57 +0200410#ifdef CONFIG_DEBUG_FS
411 mmc_remove_host_debugfs(host);
412#endif
413
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200414 device_del(&host->class_dev);
415
Pierre Ossman77f1fd62007-10-12 22:48:46 +0200416 led_trigger_unregister_simple(host->led);
Linus Walleij04566832010-11-08 21:36:50 -0500417
418 mmc_host_clk_exit(host);
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200419}
420
421EXPORT_SYMBOL(mmc_remove_host);
422
423/**
424 * mmc_free_host - free the host structure
425 * @host: mmc host
426 *
427 * Free the host once all references to it have been dropped.
428 */
429void mmc_free_host(struct mmc_host *host)
430{
Pierre Ossmanff3112f2008-03-08 23:43:19 +0100431 spin_lock(&mmc_host_lock);
432 idr_remove(&mmc_host_idr, host->index);
433 spin_unlock(&mmc_host_lock);
434
Pierre Ossmanb93931a2007-05-19 14:06:24 +0200435 put_device(&host->class_dev);
436}
437
438EXPORT_SYMBOL(mmc_free_host);