]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mmc: omap_hsmmc: support more DT properties
authorDaniel Mack <zonque@gmail.com>
Mon, 17 Feb 2014 11:36:33 +0000 (12:36 +0100)
committerChris Ball <chris@printf.net>
Tue, 4 Mar 2014 16:44:39 +0000 (11:44 -0500)
This should probably be done implicitly through mmc_of_parse(), but that
doesn't play well along with the multi-slot model the hsmmc driver
features. Hence, for now, do it manually. The properties are already
documented in Documentation/devicetree/bindings/mmc/mmc.txt.

Signed-off-by: Daniel Mack <zonque@gmail.com>
Acked-by: Balaji T K <balajitk@ti.com>
Signed-off-by: Chris Ball <chris@printf.net>
drivers/mmc/host/omap_hsmmc.c

index b1ac26a7630688853cdbf00275579a32840f6ec9..83240f05e917d6b4ef55bce96c69666fa07b367f 100644 (file)
@@ -1753,6 +1753,12 @@ static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
        if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
                pdata->slots[0].features |= HSMMC_HAS_HSPE_SUPPORT;
 
+       if (of_find_property(np, "keep-power-in-suspend", NULL))
+               pdata->slots[0].pm_caps |= MMC_PM_KEEP_POWER;
+
+       if (of_find_property(np, "enable-sdio-wakeup", NULL))
+               pdata->slots[0].pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
+
        return pdata;
 }
 #else