33 lines
557 B
Plaintext
33 lines
557 B
Plaintext
/*
|
|
* Copyright (c) 2023 EPAM Systems
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <mem.h>
|
|
#include <arm64/renesas/r8a77951.dtsi>
|
|
#include "rcar_h3ulcb_r8a77951_a57-pinctrl.dtsi"
|
|
|
|
/ {
|
|
model = "H3ULCB CA57";
|
|
|
|
chosen {
|
|
zephyr,sram = &ram;
|
|
zephyr,console = &scif2;
|
|
zephyr,shell-uart = &scif2;
|
|
};
|
|
|
|
ram: memory@48000000 {
|
|
device_type = "mmio-sram";
|
|
reg = <0x0 0x48000000 0x0 DT_SIZE_M(512)>;
|
|
};
|
|
};
|
|
|
|
&scif2 {
|
|
pinctrl-0 = <&scif2_data_a_tx_default &scif2_data_a_rx_default>;
|
|
pinctrl-names = "default";
|
|
status = "okay";
|
|
};
|