mirror of
https://github.com/armbian/build.git
synced 2025-08-14 15:16:58 +02:00
AR-1 - Adding support category for distributions AR-4 - Remove Allwinner legacy AR-5 - Drop Udoo family and move Udoo board into newly created imx6 family AR-9 - Rename sunxi-next to sunxi-legacy AR-10 - Rename sunxi-dev to sunxi-current AR-11 - Adding Radxa Rockpi S support AR-13 - Rename rockchip64-default to rockchip64-legacy AR-14 - Add rockchip64-current as mainline source AR-15 - Drop Rockchip 4.19.y NEXT, current become 5.3.y AR-16 - Rename RK3399 default to legacy AR-17 - Rename Odroid XU4 next and default to legacy 4.14.y, add DEV 5.4.y AR-18 - Add Odroid N2 current mainline AR-19 - Move Odroid C1 to meson family AR-20 - Rename mvebu64-default to mvebu64-legacy AR-21 - Rename mvebu-default to mvebu-legacy AR-22 - Rename mvebu-next to mvebu-current AR-23 - Drop meson64 default and next, current becomes former DEV 5.3.y AR-24 - Drop cubox family and move Cubox/Hummingboard boards under imx6 AR-26 - Adjust motd AR-27 - Enabling distribution release status AR-28 - Added new GCC compilers AR-29 - Implementing Ubuntu Eoan AR-30 - Add desktop packages per board or family AR-31 - Remove (Ubuntu/Debian) distribution name from image filename AR-32 - Move arch configs from configuration.sh to separate arm64 and armhf config files AR-33 - Revision numbers for beta builds changed to day_in_the_year AR-34 - Patches support linked patches AR-35 - Break meson64 family into gxbb and gxl AR-36 - Add Nanopineo2 Black AR-38 - Upgrade option from old branches to new one via armbian-config AR-41 - Show full timezone info AR-43 - Merge Odroid N2 to meson64 AR-44 - Enable FORCE_BOOTSCRIPT_UPDATE for all builds
60 lines
2.3 KiB
Diff
60 lines
2.3 KiB
Diff
Subject: [PATCH v2 1/3] mmc: sunxi: Disable HS-DDR mode for H5 eMMC controller by default
|
|
|
|
Some H5 boards seem to not have proper trace lengths for eMMC to be able
|
|
to use the default setting for the delay chains under HS-DDR mode. These
|
|
include the Bananapi M2+ H5 and NanoPi NEO Core2. However the Libre
|
|
Computer ALL-H3-CC-H5 works just fine.
|
|
|
|
For the H5 (at least for now), default to not enabling HS-DDR modes in
|
|
the driver, and expect the device tree to signal HS-DDR capability on
|
|
boards that work.
|
|
---
|
|
drivers/mmc/host/sunxi-mmc.c | 11 ++++++++++-
|
|
1 file changed, 10 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
|
|
index 279e326e397e..7415af8c8ff6 100644
|
|
--- a/drivers/mmc/host/sunxi-mmc.c
|
|
+++ b/drivers/mmc/host/sunxi-mmc.c
|
|
@@ -1399,7 +1399,16 @@ static int sunxi_mmc_probe(struct platform_device *pdev)
|
|
mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
|
|
MMC_CAP_ERASE | MMC_CAP_SDIO_IRQ;
|
|
|
|
- if (host->cfg->clk_delays || host->use_new_timings)
|
|
+ /*
|
|
+ * Some H5 devices do not have signal traces precise enough to
|
|
+ * use HS DDR mode for their eMMC chips.
|
|
+ *
|
|
+ * We still enable HS DDR modes for all the other controller
|
|
+ * variants that support them.
|
|
+ */
|
|
+ if ((host->cfg->clk_delays || host->use_new_timings) &&
|
|
+ !of_device_is_compatible(pdev->dev.of_node,
|
|
+ "allwinner,sun50i-h5-emmc"))
|
|
mmc->caps |= MMC_CAP_1_8V_DDR | MMC_CAP_3_3V_DDR;
|
|
|
|
ret = mmc_of_parse(mmc);
|
|
|
|
Subject: [PATCH v2 3/3] arm64: dts: allwinner: h5: libretech-all-h3-cc: Mark eMMC HS-DDR 3.3V capable
|
|
|
|
The Libre Computer ALL-H3-CC H5 is one of the few boards that can have
|
|
its eMMC run at HS-DDR speed mode. Mark it as such.
|
|
|
|
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
|
|
---
|
|
.../boot/dts/allwinner/sun50i-h5-libretech-all-h3-cc.dts | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h3-cc.dts b/arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h3-cc.dts
|
|
index 95e113ce8699..d68bdfea2271 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h3-cc.dts
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h3-cc.dts
|
|
@@ -12,3 +12,7 @@
|
|
model = "Libre Computer Board ALL-H3-CC H5";
|
|
compatible = "libretech,all-h3-cc-h5", "allwinner,sun50i-h5";
|
|
};
|
|
+
|
|
+&mmc2 {
|
|
+ mmc-ddr-3_3v;
|
|
+};
|