|
@@ -855,61 +855,72 @@ void mmc_rescan(struct work_struct *work)
|
|
|
|
|
|
mmc_bus_get(host);
|
|
mmc_bus_get(host);
|
|
|
|
|
|
- if (host->bus_ops == NULL) {
|
|
|
|
- /*
|
|
|
|
- * Only we can add a new handler, so it's safe to
|
|
|
|
- * release the lock here.
|
|
|
|
- */
|
|
|
|
|
|
+ /* if there is a card registered, check whether it is still present */
|
|
|
|
+ if ((host->bus_ops != NULL) && host->bus_ops->detect && !host->bus_dead)
|
|
|
|
+ host->bus_ops->detect(host);
|
|
|
|
+
|
|
|
|
+ mmc_bus_put(host);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ mmc_bus_get(host);
|
|
|
|
+
|
|
|
|
+ /* if there still is a card present, stop here */
|
|
|
|
+ if (host->bus_ops != NULL) {
|
|
mmc_bus_put(host);
|
|
mmc_bus_put(host);
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
|
|
- if (host->ops->get_cd && host->ops->get_cd(host) == 0)
|
|
|
|
- goto out;
|
|
|
|
|
|
+ /* detect a newly inserted card */
|
|
|
|
|
|
- mmc_claim_host(host);
|
|
|
|
|
|
+ /*
|
|
|
|
+ * Only we can add a new handler, so it's safe to
|
|
|
|
+ * release the lock here.
|
|
|
|
+ */
|
|
|
|
+ mmc_bus_put(host);
|
|
|
|
|
|
- mmc_power_up(host);
|
|
|
|
- mmc_go_idle(host);
|
|
|
|
|
|
+ if (host->ops->get_cd && host->ops->get_cd(host) == 0)
|
|
|
|
+ goto out;
|
|
|
|
|
|
- mmc_send_if_cond(host, host->ocr_avail);
|
|
|
|
|
|
+ mmc_claim_host(host);
|
|
|
|
|
|
- /*
|
|
|
|
- * First we search for SDIO...
|
|
|
|
- */
|
|
|
|
- err = mmc_send_io_op_cond(host, 0, &ocr);
|
|
|
|
- if (!err) {
|
|
|
|
- if (mmc_attach_sdio(host, ocr))
|
|
|
|
- mmc_power_off(host);
|
|
|
|
- goto out;
|
|
|
|
- }
|
|
|
|
|
|
+ mmc_power_up(host);
|
|
|
|
+ mmc_go_idle(host);
|
|
|
|
|
|
- /*
|
|
|
|
- * ...then normal SD...
|
|
|
|
- */
|
|
|
|
- err = mmc_send_app_op_cond(host, 0, &ocr);
|
|
|
|
- if (!err) {
|
|
|
|
- if (mmc_attach_sd(host, ocr))
|
|
|
|
- mmc_power_off(host);
|
|
|
|
- goto out;
|
|
|
|
- }
|
|
|
|
|
|
+ mmc_send_if_cond(host, host->ocr_avail);
|
|
|
|
|
|
- /*
|
|
|
|
- * ...and finally MMC.
|
|
|
|
- */
|
|
|
|
- err = mmc_send_op_cond(host, 0, &ocr);
|
|
|
|
- if (!err) {
|
|
|
|
- if (mmc_attach_mmc(host, ocr))
|
|
|
|
- mmc_power_off(host);
|
|
|
|
- goto out;
|
|
|
|
- }
|
|
|
|
|
|
+ /*
|
|
|
|
+ * First we search for SDIO...
|
|
|
|
+ */
|
|
|
|
+ err = mmc_send_io_op_cond(host, 0, &ocr);
|
|
|
|
+ if (!err) {
|
|
|
|
+ if (mmc_attach_sdio(host, ocr))
|
|
|
|
+ mmc_power_off(host);
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
|
|
- mmc_release_host(host);
|
|
|
|
- mmc_power_off(host);
|
|
|
|
- } else {
|
|
|
|
- if (host->bus_ops->detect && !host->bus_dead)
|
|
|
|
- host->bus_ops->detect(host);
|
|
|
|
|
|
+ /*
|
|
|
|
+ * ...then normal SD...
|
|
|
|
+ */
|
|
|
|
+ err = mmc_send_app_op_cond(host, 0, &ocr);
|
|
|
|
+ if (!err) {
|
|
|
|
+ if (mmc_attach_sd(host, ocr))
|
|
|
|
+ mmc_power_off(host);
|
|
|
|
+ goto out;
|
|
|
|
+ }
|
|
|
|
|
|
- mmc_bus_put(host);
|
|
|
|
|
|
+ /*
|
|
|
|
+ * ...and finally MMC.
|
|
|
|
+ */
|
|
|
|
+ err = mmc_send_op_cond(host, 0, &ocr);
|
|
|
|
+ if (!err) {
|
|
|
|
+ if (mmc_attach_mmc(host, ocr))
|
|
|
|
+ mmc_power_off(host);
|
|
|
|
+ goto out;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ mmc_release_host(host);
|
|
|
|
+ mmc_power_off(host);
|
|
|
|
+
|
|
out:
|
|
out:
|
|
if (host->caps & MMC_CAP_NEEDS_POLL)
|
|
if (host->caps & MMC_CAP_NEEDS_POLL)
|
|
mmc_schedule_delayed_work(&host->detect, HZ);
|
|
mmc_schedule_delayed_work(&host->detect, HZ);
|