summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrii Kuiukoff2026-04-13 17:45:55 +0000
committerRobert Marko2026-05-20 12:48:50 +0000
commit42ea240132a32c0d67a28b6d0ae590e584485ba5 (patch)
treeecee7546874315600da5a4ab12fcca70393b6647
parentc01dc9c0fea3c45b734eccf214bfcd1a102aff00 (diff)
downloadopenwrt-42ea240132a32c0d67a28b6d0ae590e584485ba5.tar.gz
uboot-mediatek: comfast cf-wr632ax: reduce ram speed to 1866 MT/s
Fix instability by reducing RAM speed to 1866 MT/s in line with Winbond W634GU6RB-11 specs. Signed-off-by: Andrii Kuiukoff <andros.ua@gmail.com> Link: https://github.com/openwrt/openwrt/pull/22929 (cherry picked from commit 9fb99834671a89c1ddefb255b5445d67a908c712) Link: https://github.com/openwrt/openwrt/pull/23416 Signed-off-by: Robert Marko <robimarko@gmail.com>
-rw-r--r--package/boot/uboot-mediatek/Makefile4
-rw-r--r--target/linux/mediatek/image/filogic.mk2
2 files changed, 3 insertions, 3 deletions
diff --git a/package/boot/uboot-mediatek/Makefile b/package/boot/uboot-mediatek/Makefile
index 5aafea81bd..f535489449 100644
--- a/package/boot/uboot-mediatek/Makefile
+++ b/package/boot/uboot-mediatek/Makefile
@@ -311,8 +311,8 @@ define U-Boot/mt7981_comfast_cf-wr632ax
UBOOT_IMAGE:=u-boot.fip
BL2_BOOTDEV:=spim-nand
BL2_SOC:=mt7981
- BL2_DDRTYPE:=ddr3
- DEPENDS:=+trusted-firmware-a-mt7981-spim-nand-ddr3
+ BL2_DDRTYPE:=ddr3-1866mhz
+ DEPENDS:=+trusted-firmware-a-mt7981-spim-nand-ddr3-1866mhz
endef
define U-Boot/mt7981_cudy_tr3000-v1
diff --git a/target/linux/mediatek/image/filogic.mk b/target/linux/mediatek/image/filogic.mk
index c5a704f862..3aac9bc822 100644
--- a/target/linux/mediatek/image/filogic.mk
+++ b/target/linux/mediatek/image/filogic.mk
@@ -991,7 +991,7 @@ define Device/comfast_cf-wr632ax-ubootmod
IMAGE/sysupgrade.itb := append-kernel | \
fit gzip $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb external-static-with-rootfs | append-metadata
ARTIFACTS := preloader.bin bl31-uboot.fip
- ARTIFACT/preloader.bin := mt7981-bl2 spim-nand-ddr3
+ ARTIFACT/preloader.bin := mt7981-bl2 spim-nand-ddr3-1866mhz
ARTIFACT/bl31-uboot.fip := mt7981-bl31-uboot comfast_cf-wr632ax
$(call Device/comfast_cf-wr632ax-common)
endef