1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * linux/drivers/mmc/core/sdio_bus.c
5 * Copyright 2007 Pierre Ossman
7 * SDIO function driver model
10 #include <linux/device.h>
11 #include <linux/err.h>
12 #include <linux/export.h>
13 #include <linux/slab.h>
14 #include <linux/pm_runtime.h>
15 #include <linux/pm_domain.h>
16 #include <linux/acpi.h>
18 #include <linux/mmc/card.h>
19 #include <linux/mmc/host.h>
20 #include <linux/mmc/sdio_func.h>
28 #define to_sdio_driver(d) container_of(d, struct sdio_driver, drv)
30 /* show configuration fields */
31 #define sdio_config_attr(field, format_string, args...) \
33 field##_show(struct device *dev, struct device_attribute *attr, char *buf) \
35 struct sdio_func *func; \
37 func = dev_to_sdio_func (dev); \
38 return sprintf(buf, format_string, args); \
40 static DEVICE_ATTR_RO(field)
42 sdio_config_attr(class, "0x%02x\n", func
->class);
43 sdio_config_attr(vendor
, "0x%04x\n", func
->vendor
);
44 sdio_config_attr(device
, "0x%04x\n", func
->device
);
45 sdio_config_attr(revision
, "%u.%u\n", func
->major_rev
, func
->minor_rev
);
46 sdio_config_attr(modalias
, "sdio:c%02Xv%04Xd%04X\n", func
->class, func
->vendor
, func
->device
);
48 #define sdio_info_attr(num) \
49 static ssize_t info##num##_show(struct device *dev, struct device_attribute *attr, char *buf) \
51 struct sdio_func *func = dev_to_sdio_func(dev); \
53 if (num > func->num_info) \
55 if (!func->info[num-1][0]) \
57 return sprintf(buf, "%s\n", func->info[num-1]); \
59 static DEVICE_ATTR_RO(info##num)
66 static struct attribute
*sdio_dev_attrs
[] = {
68 &dev_attr_vendor
.attr
,
69 &dev_attr_device
.attr
,
70 &dev_attr_revision
.attr
,
75 &dev_attr_modalias
.attr
,
78 ATTRIBUTE_GROUPS(sdio_dev
);
80 static const struct sdio_device_id
*sdio_match_one(struct sdio_func
*func
,
81 const struct sdio_device_id
*id
)
83 if (id
->class != (__u8
)SDIO_ANY_ID
&& id
->class != func
->class)
85 if (id
->vendor
!= (__u16
)SDIO_ANY_ID
&& id
->vendor
!= func
->vendor
)
87 if (id
->device
!= (__u16
)SDIO_ANY_ID
&& id
->device
!= func
->device
)
92 static const struct sdio_device_id
*sdio_match_device(struct sdio_func
*func
,
93 struct sdio_driver
*sdrv
)
95 const struct sdio_device_id
*ids
;
100 while (ids
->class || ids
->vendor
|| ids
->device
) {
101 if (sdio_match_one(func
, ids
))
110 static int sdio_bus_match(struct device
*dev
, struct device_driver
*drv
)
112 struct sdio_func
*func
= dev_to_sdio_func(dev
);
113 struct sdio_driver
*sdrv
= to_sdio_driver(drv
);
115 if (sdio_match_device(func
, sdrv
))
122 sdio_bus_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
124 struct sdio_func
*func
= dev_to_sdio_func(dev
);
127 if (add_uevent_var(env
,
128 "SDIO_CLASS=%02X", func
->class))
131 if (add_uevent_var(env
,
132 "SDIO_ID=%04X:%04X", func
->vendor
, func
->device
))
135 if (add_uevent_var(env
,
136 "SDIO_REVISION=%u.%u", func
->major_rev
, func
->minor_rev
))
139 for (i
= 0; i
< func
->num_info
; i
++) {
140 if (add_uevent_var(env
, "SDIO_INFO%u=%s", i
+1, func
->info
[i
]))
144 if (add_uevent_var(env
,
145 "MODALIAS=sdio:c%02Xv%04Xd%04X",
146 func
->class, func
->vendor
, func
->device
))
152 static int sdio_bus_probe(struct device
*dev
)
154 struct sdio_driver
*drv
= to_sdio_driver(dev
->driver
);
155 struct sdio_func
*func
= dev_to_sdio_func(dev
);
156 const struct sdio_device_id
*id
;
159 id
= sdio_match_device(func
, drv
);
163 ret
= dev_pm_domain_attach(dev
, false);
167 atomic_inc(&func
->card
->sdio_funcs_probed
);
169 /* Unbound SDIO functions are always suspended.
170 * During probe, the function is set active and the usage count
171 * is incremented. If the driver supports runtime PM,
172 * it should call pm_runtime_put_noidle() in its probe routine and
173 * pm_runtime_get_noresume() in its remove routine.
175 if (func
->card
->host
->caps
& MMC_CAP_POWER_OFF_CARD
) {
176 ret
= pm_runtime_get_sync(dev
);
178 goto disable_runtimepm
;
181 /* Set the default block size so the driver is sure it's something
183 sdio_claim_host(func
);
184 if (mmc_card_removed(func
->card
))
187 ret
= sdio_set_block_size(func
, 0);
188 sdio_release_host(func
);
190 goto disable_runtimepm
;
192 ret
= drv
->probe(func
, id
);
194 goto disable_runtimepm
;
199 atomic_dec(&func
->card
->sdio_funcs_probed
);
200 if (func
->card
->host
->caps
& MMC_CAP_POWER_OFF_CARD
)
201 pm_runtime_put_noidle(dev
);
202 dev_pm_domain_detach(dev
, false);
206 static int sdio_bus_remove(struct device
*dev
)
208 struct sdio_driver
*drv
= to_sdio_driver(dev
->driver
);
209 struct sdio_func
*func
= dev_to_sdio_func(dev
);
211 /* Make sure card is powered before invoking ->remove() */
212 if (func
->card
->host
->caps
& MMC_CAP_POWER_OFF_CARD
)
213 pm_runtime_get_sync(dev
);
216 atomic_dec(&func
->card
->sdio_funcs_probed
);
218 if (func
->irq_handler
) {
219 pr_warn("WARNING: driver %s did not remove its interrupt handler!\n",
221 sdio_claim_host(func
);
222 sdio_release_irq(func
);
223 sdio_release_host(func
);
226 /* First, undo the increment made directly above */
227 if (func
->card
->host
->caps
& MMC_CAP_POWER_OFF_CARD
)
228 pm_runtime_put_noidle(dev
);
230 /* Then undo the runtime PM settings in sdio_bus_probe() */
231 if (func
->card
->host
->caps
& MMC_CAP_POWER_OFF_CARD
)
232 pm_runtime_put_sync(dev
);
234 dev_pm_domain_detach(dev
, false);
239 static const struct dev_pm_ops sdio_bus_pm_ops
= {
240 SET_SYSTEM_SLEEP_PM_OPS(pm_generic_suspend
, pm_generic_resume
)
242 pm_generic_runtime_suspend
,
243 pm_generic_runtime_resume
,
248 static struct bus_type sdio_bus_type
= {
250 .dev_groups
= sdio_dev_groups
,
251 .match
= sdio_bus_match
,
252 .uevent
= sdio_bus_uevent
,
253 .probe
= sdio_bus_probe
,
254 .remove
= sdio_bus_remove
,
255 .pm
= &sdio_bus_pm_ops
,
258 int sdio_register_bus(void)
260 return bus_register(&sdio_bus_type
);
263 void sdio_unregister_bus(void)
265 bus_unregister(&sdio_bus_type
);
269 * sdio_register_driver - register a function driver
270 * @drv: SDIO function driver
272 int sdio_register_driver(struct sdio_driver
*drv
)
274 drv
->drv
.name
= drv
->name
;
275 drv
->drv
.bus
= &sdio_bus_type
;
276 return driver_register(&drv
->drv
);
278 EXPORT_SYMBOL_GPL(sdio_register_driver
);
281 * sdio_unregister_driver - unregister a function driver
282 * @drv: SDIO function driver
284 void sdio_unregister_driver(struct sdio_driver
*drv
)
286 drv
->drv
.bus
= &sdio_bus_type
;
287 driver_unregister(&drv
->drv
);
289 EXPORT_SYMBOL_GPL(sdio_unregister_driver
);
291 static void sdio_release_func(struct device
*dev
)
293 struct sdio_func
*func
= dev_to_sdio_func(dev
);
295 sdio_free_func_cis(func
);
303 * Allocate and initialise a new SDIO function structure.
305 struct sdio_func
*sdio_alloc_func(struct mmc_card
*card
)
307 struct sdio_func
*func
;
309 func
= kzalloc(sizeof(struct sdio_func
), GFP_KERNEL
);
311 return ERR_PTR(-ENOMEM
);
314 * allocate buffer separately to make sure it's properly aligned for
315 * DMA usage (incl. 64 bit DMA)
317 func
->tmpbuf
= kmalloc(4, GFP_KERNEL
);
320 return ERR_PTR(-ENOMEM
);
325 device_initialize(&func
->dev
);
327 func
->dev
.parent
= &card
->dev
;
328 func
->dev
.bus
= &sdio_bus_type
;
329 func
->dev
.release
= sdio_release_func
;
335 static void sdio_acpi_set_handle(struct sdio_func
*func
)
337 struct mmc_host
*host
= func
->card
->host
;
338 u64 addr
= ((u64
)host
->slotno
<< 16) | func
->num
;
340 acpi_preset_companion(&func
->dev
, ACPI_COMPANION(host
->parent
), addr
);
343 static inline void sdio_acpi_set_handle(struct sdio_func
*func
) {}
346 static void sdio_set_of_node(struct sdio_func
*func
)
348 struct mmc_host
*host
= func
->card
->host
;
350 func
->dev
.of_node
= mmc_of_find_child_device(host
, func
->num
);
354 * Register a new SDIO function with the driver model.
356 int sdio_add_func(struct sdio_func
*func
)
360 dev_set_name(&func
->dev
, "%s:%d", mmc_card_id(func
->card
), func
->num
);
362 sdio_set_of_node(func
);
363 sdio_acpi_set_handle(func
);
364 device_enable_async_suspend(&func
->dev
);
365 ret
= device_add(&func
->dev
);
367 sdio_func_set_present(func
);
373 * Unregister a SDIO function with the driver model, and
374 * (eventually) free it.
375 * This function can be called through error paths where sdio_add_func() was
376 * never executed (because a failure occurred at an earlier point).
378 void sdio_remove_func(struct sdio_func
*func
)
380 if (!sdio_func_present(func
))
383 device_del(&func
->dev
);
384 of_node_put(func
->dev
.of_node
);
385 put_device(&func
->dev
);