diff options
| author | Mikhail Zhilkin | 2026-04-04 13:41:36 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2026-06-23 21:46:24 +0000 |
| commit | 168098b0741754ab681b7210cd514b2c58a4fe65 (patch) | |
| tree | 8680466baee15413c472f39d39c4bb0a56bb9c40 | |
| parent | 22bbb890db69fce436aeec38d5ec71bf49144616 (diff) | |
| download | openwrt-168098b0741754ab681b7210cd514b2c58a4fe65.tar.gz | |
mediatek: filogic: Qihoo 360T7: fix DDR3 rate
According to the datasheet GigaDevice GDP1BFLM-CB is 1866 Mbps DDR3 chip.
This commit reduces DDR3 rate from 2133 to 1866 Mbps.
Link: https://static6.arrow.com/aropdfconversion/c24b4942a41810a1c921df04a
99d72101eb8cd30/ds-00843-gdp1bflm-rev1.0.pdf
Fixes: c51eb17 ("uboot-mediatek: add Qihoo 360T7 support")
Signed-off-by: Mikhail Zhilkin <csharper2005@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/22797
(cherry picked from commit 2f4a052260e4b24d1ca819c6f69aa84c34fe808d)
Signed-off-by: Mikhail Zhilkin <csharper2005@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/23371
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/boot/uboot-mediatek/Makefile | 4 | ||||
| -rw-r--r-- | target/linux/mediatek/image/filogic.mk | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/package/boot/uboot-mediatek/Makefile b/package/boot/uboot-mediatek/Makefile index c01e411957..b26a9522ed 100644 --- a/package/boot/uboot-mediatek/Makefile +++ b/package/boot/uboot-mediatek/Makefile @@ -635,8 +635,8 @@ define U-Boot/mt7981_qihoo_360t7 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-1866 + DEPENDS:=+trusted-firmware-a-mt7981-spim-nand-ddr3-1866 endef define U-Boot/mt7981_snr_snr-cpe-ax2 diff --git a/target/linux/mediatek/image/filogic.mk b/target/linux/mediatek/image/filogic.mk index a5050d9760..fb73e28a50 100644 --- a/target/linux/mediatek/image/filogic.mk +++ b/target/linux/mediatek/image/filogic.mk @@ -2685,7 +2685,7 @@ define Device/qihoo_360t7 fit gzip $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb external-static-with-rootfs | append-metadata DEVICE_PACKAGES := kmod-mt7915e kmod-mt7981-firmware mt7981-wo-firmware ARTIFACTS := preloader.bin bl31-uboot.fip - ARTIFACT/preloader.bin := mt7981-bl2 spim-nand-ddr3 + ARTIFACT/preloader.bin := mt7981-bl2 spim-nand-ddr3-1866 ARTIFACT/bl31-uboot.fip := mt7981-bl31-uboot qihoo_360t7 endef TARGET_DEVICES += qihoo_360t7 |