Commit 4a6f4d2e authored by Lad Prabhakar's avatar Lad Prabhakar
Browse files

drivers: renesas: common: emmc: Select eMMC channel for RZ/G2H SoC



Select MMC_CH1 for eMMC on RZ/G2H SoC.
Signed-off-by: default avatarLad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: default avatarBiju Das <biju.das.jz@bp.renesas.com>
Change-Id: I1bdfa462fd98b144042c014701b342b87e1efc9d
parent 86c3cc30
...@@ -11,11 +11,11 @@ ...@@ -11,11 +11,11 @@
#define MMC_CH0 (0U) /* SDHI2/MMC0 */ #define MMC_CH0 (0U) /* SDHI2/MMC0 */
#define MMC_CH1 (1U) /* SDHI3/MMC1 */ #define MMC_CH1 (1U) /* SDHI3/MMC1 */
#if (RCAR_LSI == RCAR_E3) || (RCAR_LSI == RZ_G2M) #if (RCAR_LSI == RCAR_E3) || (RCAR_LSI == RZ_G2M) || (RCAR_LSI == RZ_G2H)
#define USE_MMC_CH (MMC_CH1) /* R-Car E3 or RZ/G2M */ #define USE_MMC_CH (MMC_CH1) /* R-Car E3 or RZ/G2{H,M} */
#else /* RCAR_LSI == RCAR_E3 || RCAR_LSI == RZ_G2M */ #else /* RCAR_LSI == RCAR_E3 || RCAR_LSI == RZ_G2{H,M} */
#define USE_MMC_CH (MMC_CH0) /* R-Car H3/M3/M3N */ #define USE_MMC_CH (MMC_CH0) /* R-Car H3/M3/M3N */
#endif /* RCAR_LSI == RCAR_E3 || RCAR_LSI == RZ_G2M */ #endif /* RCAR_LSI == RCAR_E3 || RCAR_LSI == RZ_G2{H,M} */
#define BIT0 (0x00000001U) #define BIT0 (0x00000001U)
#define BIT1 (0x00000002U) #define BIT1 (0x00000002U)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment