mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 00:11:32 +00:00

Introduce the new board, define every bits. Tested-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
17 lines
302 B
Text
17 lines
302 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2024 Jiaxun Yang <jiaxun.yang@flygoat.com>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
/ {
|
|
memory@0 {
|
|
device_type = "memory";
|
|
#if XCHAL_HAVE_PTP_MMU
|
|
reg = <0x00000000 CFG_SYS_SDRAM_SIZE>;
|
|
#else
|
|
reg = <CFG_SYS_MEMORY_BASE CFG_SYS_SDRAM_SIZE>;
|
|
#endif
|
|
};
|
|
};
|