Add minimal support for RA4L1 SoC and devicetree Signed-off-by: Thao Luong <thao.luong.uw@renesas.com>
33 lines
672 B
Text
33 lines
672 B
Text
/*
|
|
* Copyright (c) 2025 Renesas Electronics Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <arm/renesas/ra/ra4/r7fa4l1bx.dtsi>
|
|
|
|
/ {
|
|
soc {
|
|
flash-controller@407e0000 {
|
|
reg = <0x407e0000 0x10000>;
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
flash0: flash@0 {
|
|
compatible = "renesas,ra-nv-flash";
|
|
reg = <0x0 DT_SIZE_K(512)>;
|
|
write-block-size = <8>;
|
|
erase-block-size = <2048>;
|
|
renesas,programming-enable;
|
|
};
|
|
|
|
flash1: flash@8000000 {
|
|
compatible = "renesas,ra-nv-flash";
|
|
reg = <0x8000000 DT_SIZE_K(8)>;
|
|
write-block-size = <1>;
|
|
erase-block-size = <256>;
|
|
renesas,programming-enable;
|
|
};
|
|
};
|
|
};
|
|
};
|