diff options
author | Weijie Gao <weijie.gao@mediatek.com> | 2020-04-21 09:28:49 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2020-04-27 20:30:13 +0200 |
commit | 6bd888b63be40342bfa8f7780ac778310140f4d9 (patch) | |
tree | ec55b391d5575900ba7a2334601fbe671dc05120 /board/mediatek | |
parent | 757cbbe95692745ec7cbe74ef676dba1c00c3b49 (diff) | |
download | u-boot-6bd888b63be40342bfa8f7780ac778310140f4d9.tar.gz u-boot-6bd888b63be40342bfa8f7780ac778310140f4d9.tar.bz2 u-boot-6bd888b63be40342bfa8f7780ac778310140f4d9.zip |
mips: mtmips: add support for mt7628-rfb
This patch adds support for mt7628 reference board. SPL_DM and DT are not
enabled for SPL to save about 17KiB for u-boot-spl.bin.
Reviewed-by: Stefan Roese <sr@denx.de>
Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
Diffstat (limited to 'board/mediatek')
-rw-r--r-- | board/mediatek/mt7628/Kconfig | 12 | ||||
-rw-r--r-- | board/mediatek/mt7628/MAINTAINERS | 7 | ||||
-rw-r--r-- | board/mediatek/mt7628/Makefile | 3 | ||||
-rw-r--r-- | board/mediatek/mt7628/board.c | 8 |
4 files changed, 30 insertions, 0 deletions
diff --git a/board/mediatek/mt7628/Kconfig b/board/mediatek/mt7628/Kconfig new file mode 100644 index 0000000000..d6b6f9d632 --- /dev/null +++ b/board/mediatek/mt7628/Kconfig @@ -0,0 +1,12 @@ +if BOARD_MT7628_RFB + +config SYS_BOARD + default "mt7628" + +config SYS_VENDOR + default "mediatek" + +config SYS_CONFIG_NAME + default "mt7628" + +endif diff --git a/board/mediatek/mt7628/MAINTAINERS b/board/mediatek/mt7628/MAINTAINERS new file mode 100644 index 0000000000..032fd0e2f7 --- /dev/null +++ b/board/mediatek/mt7628/MAINTAINERS @@ -0,0 +1,7 @@ +MT7628_RFB BOARD +M: Weijie Gao <weijie.gao@mediatek.com> +S: Maintained +F: board/mediatek/mt7628 +F: include/configs/mt7628.h +F: configs/mt7628_rfb_defconfig +F: arch/mips/dts/mediatek,mt7628-rfb.dts diff --git a/board/mediatek/mt7628/Makefile b/board/mediatek/mt7628/Makefile new file mode 100644 index 0000000000..db129c5aba --- /dev/null +++ b/board/mediatek/mt7628/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0 + +obj-y += board.o diff --git a/board/mediatek/mt7628/board.c b/board/mediatek/mt7628/board.c new file mode 100644 index 0000000000..f837a06fbb --- /dev/null +++ b/board/mediatek/mt7628/board.c @@ -0,0 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (C) 2020 MediaTek Inc. All Rights Reserved. + * + * Author: Weijie Gao <weijie.gao@mediatek.com> + */ + +#include <common.h> |