blob: 2716c7ab6bbfb6fd76ae2ff3084f7d61b4dcc198 [file] [log] [blame]
Pierre Ossmane29a7d72007-05-26 13:48:18 +02001/*
2 * linux/drivers/mmc/core/sdio_bus.c
3 *
4 * Copyright 2007 Pierre Ossman
5 *
6 * This program is free software; you can redistribute it and/or modify
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.
10 *
11 * SDIO function driver model
12 */
13
14#include <linux/device.h>
15#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Ohad Ben-Cohen80fd9332010-10-02 13:54:09 +020017#include <linux/pm_runtime.h>
Pierre Ossmane29a7d72007-05-26 13:48:18 +020018
19#include <linux/mmc/card.h>
20#include <linux/mmc/sdio_func.h>
21
Nicolas Pitreb1538bc2007-06-16 02:06:47 -040022#include "sdio_cis.h"
Pierre Ossmane29a7d72007-05-26 13:48:18 +020023#include "sdio_bus.h"
24
Pierre Ossmanbcfe66e2007-06-17 11:42:21 +020025/* show configuration fields */
26#define sdio_config_attr(field, format_string) \
27static ssize_t \
28field##_show(struct device *dev, struct device_attribute *attr, char *buf) \
29{ \
30 struct sdio_func *func; \
31 \
32 func = dev_to_sdio_func (dev); \
33 return sprintf (buf, format_string, func->field); \
34}
35
36sdio_config_attr(class, "0x%02x\n");
37sdio_config_attr(vendor, "0x%04x\n");
38sdio_config_attr(device, "0x%04x\n");
39
40static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
41{
42 struct sdio_func *func = dev_to_sdio_func (dev);
43
44 return sprintf(buf, "sdio:c%02Xv%04Xd%04X\n",
45 func->class, func->vendor, func->device);
46}
47
Adrian Bunk22bfc972007-07-29 16:58:09 +020048static struct device_attribute sdio_dev_attrs[] = {
Pierre Ossmanbcfe66e2007-06-17 11:42:21 +020049 __ATTR_RO(class),
50 __ATTR_RO(vendor),
51 __ATTR_RO(device),
52 __ATTR_RO(modalias),
53 __ATTR_NULL,
54};
55
Pierre Ossman3b38bea2007-06-16 15:54:55 +020056static const struct sdio_device_id *sdio_match_one(struct sdio_func *func,
57 const struct sdio_device_id *id)
58{
59 if (id->class != (__u8)SDIO_ANY_ID && id->class != func->class)
60 return NULL;
61 if (id->vendor != (__u16)SDIO_ANY_ID && id->vendor != func->vendor)
62 return NULL;
63 if (id->device != (__u16)SDIO_ANY_ID && id->device != func->device)
64 return NULL;
65 return id;
66}
67
68static const struct sdio_device_id *sdio_match_device(struct sdio_func *func,
69 struct sdio_driver *sdrv)
70{
71 const struct sdio_device_id *ids;
72
73 ids = sdrv->id_table;
74
75 if (ids) {
76 while (ids->class || ids->vendor || ids->device) {
77 if (sdio_match_one(func, ids))
78 return ids;
79 ids++;
80 }
81 }
82
83 return NULL;
84}
85
Pierre Ossmane29a7d72007-05-26 13:48:18 +020086static int sdio_bus_match(struct device *dev, struct device_driver *drv)
87{
Pierre Ossman3b38bea2007-06-16 15:54:55 +020088 struct sdio_func *func = dev_to_sdio_func(dev);
89 struct sdio_driver *sdrv = to_sdio_driver(drv);
90
91 if (sdio_match_device(func, sdrv))
92 return 1;
93
94 return 0;
Pierre Ossmane29a7d72007-05-26 13:48:18 +020095}
96
97static int
Al Viro7ac03262007-10-14 05:46:09 +010098sdio_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
Pierre Ossmane29a7d72007-05-26 13:48:18 +020099{
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200100 struct sdio_func *func = dev_to_sdio_func(dev);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200101
Al Viro7ac03262007-10-14 05:46:09 +0100102 if (add_uevent_var(env,
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200103 "SDIO_CLASS=%02X", func->class))
104 return -ENOMEM;
105
Al Viro7ac03262007-10-14 05:46:09 +0100106 if (add_uevent_var(env,
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200107 "SDIO_ID=%04X:%04X", func->vendor, func->device))
108 return -ENOMEM;
109
Al Viro7ac03262007-10-14 05:46:09 +0100110 if (add_uevent_var(env,
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200111 "MODALIAS=sdio:c%02Xv%04Xd%04X",
112 func->class, func->vendor, func->device))
113 return -ENOMEM;
114
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200115 return 0;
116}
117
118static int sdio_bus_probe(struct device *dev)
119{
Pierre Ossman3b38bea2007-06-16 15:54:55 +0200120 struct sdio_driver *drv = to_sdio_driver(dev->driver);
121 struct sdio_func *func = dev_to_sdio_func(dev);
122 const struct sdio_device_id *id;
David Vrabel9a08f822007-08-08 14:23:48 +0100123 int ret;
Pierre Ossman3b38bea2007-06-16 15:54:55 +0200124
125 id = sdio_match_device(func, drv);
126 if (!id)
127 return -ENODEV;
128
Ohad Ben-Cohen40bba0c2010-10-02 13:54:11 +0200129 /* Unbound SDIO functions are always suspended.
130 * During probe, the function is set active and the usage count
131 * is incremented. If the driver supports runtime PM,
132 * it should call pm_runtime_put_noidle() in its probe routine and
133 * pm_runtime_get_noresume() in its remove routine.
134 */
135 ret = pm_runtime_get_sync(dev);
136 if (ret < 0)
137 goto out;
138
David Vrabel9a08f822007-08-08 14:23:48 +0100139 /* Set the default block size so the driver is sure it's something
140 * sensible. */
141 sdio_claim_host(func);
142 ret = sdio_set_block_size(func, 0);
143 sdio_release_host(func);
144 if (ret)
Ohad Ben-Cohen40bba0c2010-10-02 13:54:11 +0200145 goto disable_runtimepm;
David Vrabel9a08f822007-08-08 14:23:48 +0100146
Ohad Ben-Cohen40bba0c2010-10-02 13:54:11 +0200147 ret = drv->probe(func, id);
148 if (ret)
149 goto disable_runtimepm;
150
151 return 0;
152
153disable_runtimepm:
154 pm_runtime_put_noidle(dev);
155out:
156 return ret;
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200157}
158
159static int sdio_bus_remove(struct device *dev)
160{
Pierre Ossman3b38bea2007-06-16 15:54:55 +0200161 struct sdio_driver *drv = to_sdio_driver(dev->driver);
162 struct sdio_func *func = dev_to_sdio_func(dev);
Ohad Ben-Cohen40bba0c2010-10-02 13:54:11 +0200163 int ret;
164
165 /* Make sure card is powered before invoking ->remove() */
166 ret = pm_runtime_get_sync(dev);
167 if (ret < 0)
168 goto out;
Pierre Ossman3b38bea2007-06-16 15:54:55 +0200169
170 drv->remove(func);
171
Nicolas Pitred1496c32007-06-30 16:29:41 +0200172 if (func->irq_handler) {
173 printk(KERN_WARNING "WARNING: driver %s did not remove "
174 "its interrupt handler!\n", drv->name);
175 sdio_claim_host(func);
176 sdio_release_irq(func);
177 sdio_release_host(func);
178 }
179
Ohad Ben-Cohen40bba0c2010-10-02 13:54:11 +0200180 /* First, undo the increment made directly above */
181 pm_runtime_put_noidle(dev);
182
183 /* Then undo the runtime PM settings in sdio_bus_probe() */
184 pm_runtime_put_noidle(dev);
185
186out:
187 return ret;
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200188}
189
Ohad Ben-Cohen80fd9332010-10-02 13:54:09 +0200190#ifdef CONFIG_PM_RUNTIME
191
Ohad Ben-Cohened2a9782010-10-02 13:54:13 +0200192static int sdio_bus_pm_prepare(struct device *dev)
193{
194 /*
195 * Resume an SDIO device which was suspended at run time at this
196 * point, in order to allow standard SDIO suspend/resume paths
197 * to keep working as usual.
198 *
199 * Ultimately, the SDIO driver itself will decide (in its
200 * suspend handler, or lack thereof) whether the card should be
201 * removed or kept, and if kept, at what power state.
202 *
203 * At this point, PM core have increased our use count, so it's
204 * safe to directly resume the device. After system is resumed
205 * again, PM core will drop back its runtime PM use count, and if
206 * needed device will be suspended again.
207 *
208 * The end result is guaranteed to be a power state that is
209 * coherent with the device's runtime PM use count.
210 *
211 * The return value of pm_runtime_resume is deliberately unchecked
212 * since there is little point in failing system suspend if a
213 * device can't be resumed.
214 */
215 pm_runtime_resume(dev);
216
217 return 0;
218}
219
Ohad Ben-Cohen80fd9332010-10-02 13:54:09 +0200220static const struct dev_pm_ops sdio_bus_pm_ops = {
221 SET_RUNTIME_PM_OPS(
222 pm_generic_runtime_suspend,
223 pm_generic_runtime_resume,
224 pm_generic_runtime_idle
225 )
Ohad Ben-Cohened2a9782010-10-02 13:54:13 +0200226 .prepare = sdio_bus_pm_prepare,
Ohad Ben-Cohen80fd9332010-10-02 13:54:09 +0200227};
228
229#define SDIO_PM_OPS_PTR (&sdio_bus_pm_ops)
230
231#else /* !CONFIG_PM_RUNTIME */
232
233#define SDIO_PM_OPS_PTR NULL
234
235#endif /* !CONFIG_PM_RUNTIME */
236
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200237static struct bus_type sdio_bus_type = {
238 .name = "sdio",
Pierre Ossmanbcfe66e2007-06-17 11:42:21 +0200239 .dev_attrs = sdio_dev_attrs,
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200240 .match = sdio_bus_match,
241 .uevent = sdio_bus_uevent,
242 .probe = sdio_bus_probe,
243 .remove = sdio_bus_remove,
Ohad Ben-Cohen80fd9332010-10-02 13:54:09 +0200244 .pm = SDIO_PM_OPS_PTR,
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200245};
246
247int sdio_register_bus(void)
248{
249 return bus_register(&sdio_bus_type);
250}
251
252void sdio_unregister_bus(void)
253{
254 bus_unregister(&sdio_bus_type);
255}
256
Pierre Ossmanf76c8512007-05-27 12:00:02 +0200257/**
258 * sdio_register_driver - register a function driver
259 * @drv: SDIO function driver
260 */
261int sdio_register_driver(struct sdio_driver *drv)
262{
263 drv->drv.name = drv->name;
264 drv->drv.bus = &sdio_bus_type;
265 return driver_register(&drv->drv);
266}
267EXPORT_SYMBOL_GPL(sdio_register_driver);
268
269/**
270 * sdio_unregister_driver - unregister a function driver
271 * @drv: SDIO function driver
272 */
273void sdio_unregister_driver(struct sdio_driver *drv)
274{
275 drv->drv.bus = &sdio_bus_type;
276 driver_unregister(&drv->drv);
277}
278EXPORT_SYMBOL_GPL(sdio_unregister_driver);
279
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200280static void sdio_release_func(struct device *dev)
281{
282 struct sdio_func *func = dev_to_sdio_func(dev);
283
Pierre Ossman1a632f82007-07-30 15:15:30 +0200284 sdio_free_func_cis(func);
Nicolas Pitreb1538bc2007-06-16 02:06:47 -0400285
Pierre Ossman759bdc72007-09-19 18:42:16 +0200286 if (func->info)
287 kfree(func->info);
288
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200289 kfree(func);
290}
291
292/*
293 * Allocate and initialise a new SDIO function structure.
294 */
295struct sdio_func *sdio_alloc_func(struct mmc_card *card)
296{
297 struct sdio_func *func;
298
Mariusz Kozlowski9f2fcf92007-08-01 00:05:24 +0200299 func = kzalloc(sizeof(struct sdio_func), GFP_KERNEL);
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200300 if (!func)
301 return ERR_PTR(-ENOMEM);
302
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200303 func->card = card;
304
305 device_initialize(&func->dev);
306
307 func->dev.parent = &card->dev;
308 func->dev.bus = &sdio_bus_type;
309 func->dev.release = sdio_release_func;
310
311 return func;
312}
313
314/*
315 * Register a new SDIO function with the driver model.
316 */
317int sdio_add_func(struct sdio_func *func)
318{
319 int ret;
320
Kay Sieversd1b26862008-11-08 21:37:46 +0100321 dev_set_name(&func->dev, "%s:%d", mmc_card_id(func->card), func->num);
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200322
323 ret = device_add(&func->dev);
324 if (ret == 0)
325 sdio_func_set_present(func);
326
327 return ret;
328}
329
330/*
331 * Unregister a SDIO function with the driver model, and
332 * (eventually) free it.
Daniel Drake3d10a1b2009-12-17 15:27:17 -0800333 * This function can be called through error paths where sdio_add_func() was
334 * never executed (because a failure occurred at an earlier point).
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200335 */
336void sdio_remove_func(struct sdio_func *func)
337{
Daniel Drake3d10a1b2009-12-17 15:27:17 -0800338 if (!sdio_func_present(func))
339 return;
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200340
Daniel Drake3d10a1b2009-12-17 15:27:17 -0800341 device_del(&func->dev);
Pierre Ossmane29a7d72007-05-26 13:48:18 +0200342 put_device(&func->dev);
343}
344