diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/board/mediatek/mt7622 | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/board/mediatek/mt7622')
-rw-r--r-- | roms/u-boot/board/mediatek/mt7622/Kconfig | 17 | ||||
-rw-r--r-- | roms/u-boot/board/mediatek/mt7622/MAINTAINERS | 6 | ||||
-rw-r--r-- | roms/u-boot/board/mediatek/mt7622/Makefile | 4 | ||||
-rw-r--r-- | roms/u-boot/board/mediatek/mt7622/mt7622_rfb.c | 26 |
4 files changed, 53 insertions, 0 deletions
diff --git a/roms/u-boot/board/mediatek/mt7622/Kconfig b/roms/u-boot/board/mediatek/mt7622/Kconfig new file mode 100644 index 000000000..d0abdc0a6 --- /dev/null +++ b/roms/u-boot/board/mediatek/mt7622/Kconfig @@ -0,0 +1,17 @@ +if TARGET_MT7622 + +config SYS_BOARD + default "mt7622" + +config SYS_CONFIG_NAME + default "mt7622" + +config MTK_BROM_HEADER_INFO + string + default "lk=1" + +config MTK_BROM_HEADER_INFO + string + default "media=nor" + +endif diff --git a/roms/u-boot/board/mediatek/mt7622/MAINTAINERS b/roms/u-boot/board/mediatek/mt7622/MAINTAINERS new file mode 100644 index 000000000..a3e0e75ca --- /dev/null +++ b/roms/u-boot/board/mediatek/mt7622/MAINTAINERS @@ -0,0 +1,6 @@ +MT7622 +M: Sam Shih <sam.shih@mediatek.com> +S: Maintained +F: board/mediatek/mt7622 +F: include/configs/mt7622.h +F: configs/mt7622_rfb_defconfig diff --git a/roms/u-boot/board/mediatek/mt7622/Makefile b/roms/u-boot/board/mediatek/mt7622/Makefile new file mode 100644 index 000000000..2c54d86ff --- /dev/null +++ b/roms/u-boot/board/mediatek/mt7622/Makefile @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0 + +obj-y += mt7622_rfb.o + diff --git a/roms/u-boot/board/mediatek/mt7622/mt7622_rfb.c b/roms/u-boot/board/mediatek/mt7622/mt7622_rfb.c new file mode 100644 index 000000000..0504d6177 --- /dev/null +++ b/roms/u-boot/board/mediatek/mt7622/mt7622_rfb.c @@ -0,0 +1,26 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (C) 2018 MediaTek Inc. + * Author: Sam Shih <sam.shih@mediatek.com> + */ + +#include <common.h> +#include <config.h> +#include <env.h> +#include <init.h> +#include <asm/global_data.h> + +DECLARE_GLOBAL_DATA_PTR; + +int board_init(void) +{ + gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; + return 0; +} + +int board_late_init(void) +{ + gd->env_valid = 1; //to load environment variable from persistent store + env_relocate(); + return 0; +} |