]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mmc: sh_mobile_sdhi: Add r7s72100 support
authorChris Brandt <chris.brandt@renesas.com>
Mon, 12 Sep 2016 14:15:07 +0000 (10:15 -0400)
committerUlf Hansson <ulf.hansson@linaro.org>
Tue, 29 Nov 2016 08:00:53 +0000 (09:00 +0100)
Add support for r7s72100 SoC.

Signed-off-by: Chris Brandt <chris.brandt@renesas.com>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Documentation/devicetree/bindings/mmc/tmio_mmc.txt
drivers/mmc/host/sh_mobile_sdhi.c

index 13df9c2399c38988b0797ba05f30b0d16e4937f8..08b3a30091443bd5fc05e2420ec6f70cfb326fc7 100644 (file)
@@ -13,6 +13,7 @@ Required properties:
 - compatible:  "renesas,sdhi-shmobile" - a generic sh-mobile SDHI unit
                "renesas,sdhi-sh7372" - SDHI IP on SH7372 SoC
                "renesas,sdhi-sh73a0" - SDHI IP on SH73A0 SoC
+               "renesas,sdhi-r7s72100" - SDHI IP on R7S72100 SoC
                "renesas,sdhi-r8a73a4" - SDHI IP on R8A73A4 SoC
                "renesas,sdhi-r8a7740" - SDHI IP on R8A7740 SoC
                "renesas,sdhi-r8a7778" - SDHI IP on R8A7778 SoC
index e99bd9d98ba02be800a1761a4dcb2722adfbc390..bda5e6745701fe00d916881eb404faeccf79993f 100644 (file)
@@ -61,6 +61,12 @@ static const struct sh_mobile_sdhi_of_data of_default_cfg = {
        .tmio_flags = TMIO_MMC_HAS_IDLE_WAIT,
 };
 
+static const struct sh_mobile_sdhi_of_data of_rz_compatible = {
+       .tmio_flags     = TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_32BIT_DATA_PORT,
+       .tmio_ocr_mask  = MMC_VDD_32_33,
+       .capabilities   = MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ,
+};
+
 static const struct sh_mobile_sdhi_of_data of_rcar_gen1_compatible = {
        .tmio_flags     = TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_WRPROTECT_DISABLE |
                          TMIO_MMC_CLK_ACTUAL,
@@ -87,6 +93,7 @@ static const struct of_device_id sh_mobile_sdhi_of_match[] = {
        { .compatible = "renesas,sdhi-sh73a0", .data = &of_default_cfg, },
        { .compatible = "renesas,sdhi-r8a73a4", .data = &of_default_cfg, },
        { .compatible = "renesas,sdhi-r8a7740", .data = &of_default_cfg, },
+       { .compatible = "renesas,sdhi-r7s72100", .data = &of_rz_compatible, },
        { .compatible = "renesas,sdhi-r8a7778", .data = &of_rcar_gen1_compatible, },
        { .compatible = "renesas,sdhi-r8a7779", .data = &of_rcar_gen1_compatible, },
        { .compatible = "renesas,sdhi-r8a7790", .data = &of_rcar_gen2_compatible, },