2 * linux/drivers/mmc/core/bus.c
4 * Copyright (C) 2003 Russell King, All Rights Reserved.
5 * Copyright (C) 2007 Pierre Ossman
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * MMC card bus driver model
14 #include <linux/export.h>
15 #include <linux/device.h>
16 #include <linux/err.h>
17 #include <linux/slab.h>
18 #include <linux/stat.h>
20 #include <linux/pm_runtime.h>
22 #include <linux/mmc/card.h>
23 #include <linux/mmc/host.h>
29 #define to_mmc_driver(d) container_of(d, struct mmc_driver, drv)
31 static ssize_t
type_show(struct device
*dev
,
32 struct device_attribute
*attr
, char *buf
)
34 struct mmc_card
*card
= mmc_dev_to_card(dev
);
38 return sprintf(buf
, "MMC\n");
40 return sprintf(buf
, "SD\n");
42 return sprintf(buf
, "SDIO\n");
43 case MMC_TYPE_SD_COMBO
:
44 return sprintf(buf
, "SDcombo\n");
49 static DEVICE_ATTR_RO(type
);
51 static struct attribute
*mmc_dev_attrs
[] = {
55 ATTRIBUTE_GROUPS(mmc_dev
);
58 * This currently matches any MMC driver to any MMC card - drivers
59 * themselves make the decision whether to drive this card in their
62 static int mmc_bus_match(struct device
*dev
, struct device_driver
*drv
)
68 mmc_bus_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
70 struct mmc_card
*card
= mmc_dev_to_card(dev
);
84 case MMC_TYPE_SD_COMBO
:
92 retval
= add_uevent_var(env
, "MMC_TYPE=%s", type
);
97 retval
= add_uevent_var(env
, "MMC_NAME=%s", mmc_card_name(card
));
102 * Request the mmc_block device. Note: that this is a direct request
103 * for the module it carries no information as to what is inserted.
105 retval
= add_uevent_var(env
, "MODALIAS=mmc:block");
110 static int mmc_bus_probe(struct device
*dev
)
112 struct mmc_driver
*drv
= to_mmc_driver(dev
->driver
);
113 struct mmc_card
*card
= mmc_dev_to_card(dev
);
115 return drv
->probe(card
);
118 static int mmc_bus_remove(struct device
*dev
)
120 struct mmc_driver
*drv
= to_mmc_driver(dev
->driver
);
121 struct mmc_card
*card
= mmc_dev_to_card(dev
);
128 static void mmc_bus_shutdown(struct device
*dev
)
130 struct mmc_driver
*drv
= to_mmc_driver(dev
->driver
);
131 struct mmc_card
*card
= mmc_dev_to_card(dev
);
132 struct mmc_host
*host
= card
->host
;
135 if (dev
->driver
&& drv
->shutdown
)
138 if (host
->bus_ops
->shutdown
) {
139 ret
= host
->bus_ops
->shutdown(host
);
141 pr_warn("%s: error %d during shutdown\n",
142 mmc_hostname(host
), ret
);
146 #ifdef CONFIG_PM_SLEEP
147 static int mmc_bus_suspend(struct device
*dev
)
149 struct mmc_card
*card
= mmc_dev_to_card(dev
);
150 struct mmc_host
*host
= card
->host
;
153 ret
= pm_generic_suspend(dev
);
157 ret
= host
->bus_ops
->suspend(host
);
161 static int mmc_bus_resume(struct device
*dev
)
163 struct mmc_card
*card
= mmc_dev_to_card(dev
);
164 struct mmc_host
*host
= card
->host
;
167 ret
= host
->bus_ops
->resume(host
);
169 pr_warn("%s: error %d during resume (card was removed?)\n",
170 mmc_hostname(host
), ret
);
172 ret
= pm_generic_resume(dev
);
178 static int mmc_runtime_suspend(struct device
*dev
)
180 struct mmc_card
*card
= mmc_dev_to_card(dev
);
181 struct mmc_host
*host
= card
->host
;
183 return host
->bus_ops
->runtime_suspend(host
);
186 static int mmc_runtime_resume(struct device
*dev
)
188 struct mmc_card
*card
= mmc_dev_to_card(dev
);
189 struct mmc_host
*host
= card
->host
;
191 return host
->bus_ops
->runtime_resume(host
);
193 #endif /* !CONFIG_PM */
195 static const struct dev_pm_ops mmc_bus_pm_ops
= {
196 SET_RUNTIME_PM_OPS(mmc_runtime_suspend
, mmc_runtime_resume
, NULL
)
197 SET_SYSTEM_SLEEP_PM_OPS(mmc_bus_suspend
, mmc_bus_resume
)
200 static struct bus_type mmc_bus_type
= {
202 .dev_groups
= mmc_dev_groups
,
203 .match
= mmc_bus_match
,
204 .uevent
= mmc_bus_uevent
,
205 .probe
= mmc_bus_probe
,
206 .remove
= mmc_bus_remove
,
207 .shutdown
= mmc_bus_shutdown
,
208 .pm
= &mmc_bus_pm_ops
,
211 int mmc_register_bus(void)
213 return bus_register(&mmc_bus_type
);
216 void mmc_unregister_bus(void)
218 bus_unregister(&mmc_bus_type
);
222 * mmc_register_driver - register a media driver
223 * @drv: MMC media driver
225 int mmc_register_driver(struct mmc_driver
*drv
)
227 drv
->drv
.bus
= &mmc_bus_type
;
228 return driver_register(&drv
->drv
);
231 EXPORT_SYMBOL(mmc_register_driver
);
234 * mmc_unregister_driver - unregister a media driver
235 * @drv: MMC media driver
237 void mmc_unregister_driver(struct mmc_driver
*drv
)
239 drv
->drv
.bus
= &mmc_bus_type
;
240 driver_unregister(&drv
->drv
);
243 EXPORT_SYMBOL(mmc_unregister_driver
);
245 static void mmc_release_card(struct device
*dev
)
247 struct mmc_card
*card
= mmc_dev_to_card(dev
);
249 sdio_free_common_cis(card
);
257 * Allocate and initialise a new MMC card structure.
259 struct mmc_card
*mmc_alloc_card(struct mmc_host
*host
, struct device_type
*type
)
261 struct mmc_card
*card
;
263 card
= kzalloc(sizeof(struct mmc_card
), GFP_KERNEL
);
265 return ERR_PTR(-ENOMEM
);
269 device_initialize(&card
->dev
);
271 card
->dev
.parent
= mmc_classdev(host
);
272 card
->dev
.bus
= &mmc_bus_type
;
273 card
->dev
.release
= mmc_release_card
;
274 card
->dev
.type
= type
;
280 * Register a new MMC card with the driver model.
282 int mmc_add_card(struct mmc_card
*card
)
286 const char *uhs_bus_speed_mode
= "";
287 static const char *const uhs_speeds
[] = {
288 [UHS_SDR12_BUS_SPEED
] = "SDR12 ",
289 [UHS_SDR25_BUS_SPEED
] = "SDR25 ",
290 [UHS_SDR50_BUS_SPEED
] = "SDR50 ",
291 [UHS_SDR104_BUS_SPEED
] = "SDR104 ",
292 [UHS_DDR50_BUS_SPEED
] = "DDR50 ",
296 dev_set_name(&card
->dev
, "%s:%04x", mmc_hostname(card
->host
), card
->rca
);
298 switch (card
->type
) {
304 if (mmc_card_blockaddr(card
)) {
305 if (mmc_card_ext_capacity(card
))
314 case MMC_TYPE_SD_COMBO
:
316 if (mmc_card_blockaddr(card
))
324 if (mmc_card_uhs(card
) &&
325 (card
->sd_bus_speed
< ARRAY_SIZE(uhs_speeds
)))
326 uhs_bus_speed_mode
= uhs_speeds
[card
->sd_bus_speed
];
328 if (mmc_host_is_spi(card
->host
)) {
329 pr_info("%s: new %s%s%s card on SPI\n",
330 mmc_hostname(card
->host
),
331 mmc_card_hs(card
) ? "high speed " : "",
332 mmc_card_ddr52(card
) ? "DDR " : "",
335 pr_info("%s: new %s%s%s%s%s%s card at address %04x\n",
336 mmc_hostname(card
->host
),
337 mmc_card_uhs(card
) ? "ultra high speed " :
338 (mmc_card_hs(card
) ? "high speed " : ""),
339 mmc_card_hs400(card
) ? "HS400 " :
340 (mmc_card_hs200(card
) ? "HS200 " : ""),
341 mmc_card_hs400es(card
) ? "Enhanced strobe " : "",
342 mmc_card_ddr52(card
) ? "DDR " : "",
343 uhs_bus_speed_mode
, type
, card
->rca
);
346 #ifdef CONFIG_DEBUG_FS
347 mmc_add_card_debugfs(card
);
349 mmc_init_context_info(card
->host
);
351 card
->dev
.of_node
= mmc_of_find_child_device(card
->host
, 0);
353 device_enable_async_suspend(&card
->dev
);
355 ret
= device_add(&card
->dev
);
359 mmc_card_set_present(card
);
365 * Unregister a new MMC card with the driver model, and
366 * (eventually) free it.
368 void mmc_remove_card(struct mmc_card
*card
)
370 #ifdef CONFIG_DEBUG_FS
371 mmc_remove_card_debugfs(card
);
374 if (mmc_card_present(card
)) {
375 if (mmc_host_is_spi(card
->host
)) {
376 pr_info("%s: SPI card removed\n",
377 mmc_hostname(card
->host
));
379 pr_info("%s: card %04x removed\n",
380 mmc_hostname(card
->host
), card
->rca
);
382 device_del(&card
->dev
);
383 of_node_put(card
->dev
.of_node
);
386 put_device(&card
->dev
);