diff options
author | Chia-Wei, Wang <chiawei_wang@aspeedtech.com> | 2020-12-14 13:54:28 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-01-18 15:23:06 -0500 |
commit | 4a84cf06aa05b10b31b876e6d6f43168945213af (patch) | |
tree | a04a83aecd845f2762fa875a16b0cc1b1a6d58dc /board/aspeed/evb_ast2600 | |
parent | ec55a1df39405451f9e62ee76477e397bebb2087 (diff) | |
download | u-boot-4a84cf06aa05b10b31b876e6d6f43168945213af.tar.gz u-boot-4a84cf06aa05b10b31b876e6d6f43168945213af.tar.xz u-boot-4a84cf06aa05b10b31b876e6d6f43168945213af.zip |
aspeed: Add AST2600 platform support
Add low level platform initialization for the AST2600 SoC.
The 2-stage booting with U-Boot SPL are leveraged to support
different booting mode.
However, currently the patch supports only the booting from
memory-mapped SPI flash.
Signed-off-by: Chia-Wei, Wang <chiawei_wang@aspeedtech.com>
Reviewed-by: Ryan Chen <ryan_chen@aspeedtech.com>
Diffstat (limited to 'board/aspeed/evb_ast2600')
-rw-r--r-- | board/aspeed/evb_ast2600/Kconfig | 12 | ||||
-rw-r--r-- | board/aspeed/evb_ast2600/Makefile | 1 | ||||
-rw-r--r-- | board/aspeed/evb_ast2600/evb_ast2600.c | 5 |
3 files changed, 18 insertions, 0 deletions
diff --git a/board/aspeed/evb_ast2600/Kconfig b/board/aspeed/evb_ast2600/Kconfig new file mode 100644 index 0000000000..42008cd033 --- /dev/null +++ b/board/aspeed/evb_ast2600/Kconfig @@ -0,0 +1,12 @@ +if TARGET_EVB_AST2600 + +config SYS_BOARD + default "evb_ast2600" + +config SYS_VENDOR + default "aspeed" + +config SYS_CONFIG_NAME + default "evb_ast2600" + +endif diff --git a/board/aspeed/evb_ast2600/Makefile b/board/aspeed/evb_ast2600/Makefile new file mode 100644 index 0000000000..9291db6ee1 --- /dev/null +++ b/board/aspeed/evb_ast2600/Makefile @@ -0,0 +1 @@ +obj-y += evb_ast2600.o diff --git a/board/aspeed/evb_ast2600/evb_ast2600.c b/board/aspeed/evb_ast2600/evb_ast2600.c new file mode 100644 index 0000000000..e6dc8c7952 --- /dev/null +++ b/board/aspeed/evb_ast2600/evb_ast2600.c @@ -0,0 +1,5 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (c) Aspeed Technology Inc. + */ +#include <common.h> |