mips: mtmips: add support for MediaTek MT7621 SoC
authorWeijie Gao <weijie.gao@mediatek.com>
Fri, 20 May 2022 03:22:21 +0000 (11:22 +0800)
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Wed, 13 Jul 2022 21:03:37 +0000 (23:03 +0200)
commit4bc0104c976b910c49547f6f38f806e1b13f047d
treec6d52b05d8358b1b8cf7d75cbcaff281843370ec
parent2948d9cf8637e49e2a172b8936a9f5a3a04bca13
mips: mtmips: add support for MediaTek MT7621 SoC

This patch adds support for MediaTek MT7621 SoC.
All files are dedicated for u-boot.

The default build target is u-boot-mt7621.bin.

The specification of this chip:
https://www.mediatek.com/products/homenetworking/mt7621

Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
26 files changed:
arch/mips/Makefile
arch/mips/dts/mt7621-u-boot.dtsi [new file with mode: 0644]
arch/mips/dts/mt7621.dtsi [new file with mode: 0644]
arch/mips/mach-mtmips/Kconfig
arch/mips/mach-mtmips/Makefile
arch/mips/mach-mtmips/cpu.c
arch/mips/mach-mtmips/mt7621/Kconfig [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/Makefile [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/init.c [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/mt7621.h [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/serial.c [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/spl/Makefile [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/spl/cps.c [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/spl/dram.c [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/spl/dram.h [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/spl/launch.c [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/spl/launch.h [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/spl/launch_ll.S [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/spl/serial.c [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/spl/spl.c [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/spl/start.S [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/sram_init.S [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/tpl/Makefile [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/tpl/start.S [new file with mode: 0644]
arch/mips/mach-mtmips/mt7621/tpl/tpl.c [new file with mode: 0644]
include/configs/mt7621.h [new file with mode: 0644]