mirror of
https://github.com/armbian/build.git
synced 2025-08-15 15:46:58 +02:00
39 lines
1.4 KiB
Diff
39 lines
1.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: The-going <48602507+The-going@users.noreply.github.com>
|
|
Date: Mon, 24 Jan 2022 13:26:03 +0300
|
|
Subject: drv:mmc:host:sunxi-mmc: add h5 emmc compatible
|
|
|
|
---
|
|
drivers/mmc/host/sunxi-mmc.c | 8 ++++++++
|
|
1 file changed, 8 insertions(+)
|
|
|
|
diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
|
|
index 111111111111..222222222222 100644
|
|
--- a/drivers/mmc/host/sunxi-mmc.c
|
|
+++ b/drivers/mmc/host/sunxi-mmc.c
|
|
@@ -1197,6 +1197,13 @@ static const struct sunxi_mmc_cfg sun50i_a64_emmc_cfg = {
|
|
.needs_new_timings = true,
|
|
};
|
|
|
|
+static const struct sunxi_mmc_cfg sun50i_h5_emmc_cfg = {
|
|
+ .idma_des_size_bits = 13,
|
|
+ .clk_delays = NULL,
|
|
+ .can_calibrate = true,
|
|
+ .needs_new_timings = false,
|
|
+};
|
|
+
|
|
static const struct sunxi_mmc_cfg sun50i_h616_cfg = {
|
|
.idma_des_size_bits = 16,
|
|
.idma_des_shift = 2,
|
|
@@ -1224,6 +1231,7 @@ static const struct of_device_id sunxi_mmc_of_match[] = {
|
|
{ .compatible = "allwinner,sun50i-a64-emmc", .data = &sun50i_a64_emmc_cfg },
|
|
{ .compatible = "allwinner,sun50i-a100-mmc", .data = &sun20i_d1_cfg },
|
|
{ .compatible = "allwinner,sun50i-a100-emmc", .data = &sun50i_a100_emmc_cfg },
|
|
+ { .compatible = "allwinner,sun50i-h5-emmc", .data = &sun50i_h5_emmc_cfg },
|
|
{ .compatible = "allwinner,sun50i-h616-mmc", .data = &sun50i_h616_cfg },
|
|
{ /* sentinel */ }
|
|
};
|
|
--
|
|
Armbian
|
|
|