The L2LIM is 2MB in size, see: https://doc-en.rvspace.org/JH7110/TRM/JH7110_TRM/u74_memory_map.html Rename it since there are other memory blocks such as the DTIM for the S7. Signed-off-by: Daniel Maslowski <info@orangecms.org>
30 lines
475 B
Text
30 lines
475 B
Text
/*
|
|
* Copyright (c) 2024 Kanak Shilledar <kanakshilledar111@protonmail.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "starfive/jh7110-visionfive-v2.dtsi"
|
|
|
|
/ {
|
|
model = "StarFive VisionFive V2";
|
|
compatible = "starfive,visionfive-v2";
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,shell-uart = &uart0;
|
|
zephyr,sram = &l2lim;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
current-speed = <115200>;
|
|
};
|
|
|
|
&uart1 {
|
|
status = "okay";
|
|
current-speed = <115200>;
|
|
};
|