mmc: sunxi: Add DM_MMC support for A80
authorJagan Teki <jagan@amarulasolutions.com>
Mon, 21 Jan 2019 10:31:12 +0000 (16:01 +0530)
committerJagan Teki <jagan@amarulasolutions.com>
Tue, 29 Jan 2019 18:11:57 +0000 (23:41 +0530)
A80 gates clock already be part of CLK framework, so just
add mod_clk offset with A80 compatible string.

Cc: Rask Ingemann Lambertsen <rask@formelder.dk>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
drivers/mmc/sunxi_mmc.c

index 1e13a0665de167d5bf50c67aa10aec17076841bf..0c443a732d5354944233505686c959279979893a 100644 (file)
@@ -680,6 +680,10 @@ static const struct sunxi_mmc_variant sun4i_a10_variant = {
        .mclk_offset = 0x88,
 };
 
+static const struct sunxi_mmc_variant sun9i_a80_variant = {
+       .mclk_offset = 0x410,
+};
+
 static const struct sunxi_mmc_variant sun50i_h6_variant = {
        .mclk_offset = 0x830,
 };
@@ -701,6 +705,10 @@ static const struct udevice_id sunxi_mmc_ids[] = {
          .compatible = "allwinner,sun8i-a83t-emmc",
          .data = (ulong)&sun4i_a10_variant,
        },
+       {
+         .compatible = "allwinner,sun9i-a80-mmc",
+         .data = (ulong)&sun9i_a80_variant,
+       },
        {
          .compatible = "allwinner,sun50i-a64-mmc",
          .data = (ulong)&sun4i_a10_variant,