mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-17 22:28:17 +01:00
AST2700 SoCs integrates a Ibex 32-bits RISC-V core as the boot MCU for the first stage bootloader execution, namely SPL. This patch implements the preliminary base to successfully run SPL on this RV32-based MCU to the console banner message. Signed-off-by: Chia-Wei Wang <chiawei_wang@aspeedtech.com> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
41 lines
447 B
Plaintext
41 lines
447 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
|
|
|
/ {
|
|
cpus {
|
|
bootph-all;
|
|
};
|
|
|
|
memory@80000000 {
|
|
bootph-all;
|
|
};
|
|
|
|
soc0: soc@12000000 {
|
|
bootph-all;
|
|
|
|
sdrammc: sdrammc@12c00000 {
|
|
bootph-all;
|
|
};
|
|
|
|
syscon0: syscon@12c02000 {
|
|
bootph-all;
|
|
};
|
|
};
|
|
|
|
soc1: soc@14000000 {
|
|
bootph-all;
|
|
|
|
syscon1: syscon@14c02000 {
|
|
bootph-all;
|
|
};
|
|
|
|
uart12: serial@14c33b00 {
|
|
bootph-all;
|
|
};
|
|
|
|
ast_ibex_timer: timer {
|
|
bootph-all;
|
|
};
|
|
};
|
|
|
|
};
|