mmc: host: rk_sdmmc:
authorlintao <lintao@rock-chips.com>
Tue, 6 May 2014 07:19:24 +0000 (15:19 +0800)
committerlintao <lintao@rock-chips.com>
Tue, 6 May 2014 07:22:20 +0000 (15:22 +0800)
Add rk32 mmc controller with cap HW_RESET support, default N.

Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.txt
arch/arm/boot/dts/rk3288-tb.dts
drivers/mmc/host/rk_sdmmc.c

index 7919b4ca362b7ac3256a6414692c9598d871709a..0b5377893716904d4f83001796cb226689a520bb 100755 (executable)
@@ -82,6 +82,8 @@ Required Properties:
 * vmmc-supply: The phandle to the regulator to use for vmmc.  If this is
           specified we'll defer probe until we can find this regulator.
 
+* poll-hw-reset: need hardware reset for some eMMCs with VCCQ always supplied when powered up
+       to enter idle state.
 
 Example: adding device info in dtsi file
 
index 6f6643562980b5dc5cbed6ee3dea568d7602f5c8..fcf27607c3c5205a4af172630da2c08a47864868 100755 (executable)
                bootpart-no-access;
         ignore-pm-notify;
                keep-power-in-suspend;
-       status = "okay";
+               //poll-hw-reset 
+               status = "okay";
 };
     
 &sdmmc {
index 992e792b5b69e6a1fb90d6bb281d4297ba02c421..1f866f0ba781ae96f8d5507e4923497e8d29bb3d 100755 (executable)
@@ -2761,6 +2761,8 @@ static int dw_mci_init_slot(struct dw_mci *host, unsigned int id)
                mmc->caps |= MMC_CAP_POWER_OFF_CARD;
        if (of_find_property(host->dev->of_node, "cap-sdio-irq", NULL))
                mmc->caps |= MMC_CAP_SDIO_IRQ;
+       if (of_find_property(host->dev->of_node, "poll-hw-reset", NULL))
+               mmc->caps |= MMC_CAP_HW_RESET;
        if (of_find_property(host->dev->of_node, "full-pwr-cycle", NULL))
                mmc->caps2 |= MMC_CAP2_FULL_PWR_CYCLE;
        if (of_find_property(host->dev->of_node, "keep-power-in-suspend", NULL))