Skip to content

Commit 58e58a8

Browse files
tiennguyenzgkartben
authored andcommitted
dts: arm: renesas: Add support for Renesas RZ/V2H M33 core
Add devicetree to support for Renesas RZ/V2H M33 core Signed-off-by: Tien Nguyen <[email protected]> Signed-off-by: Quang Le <[email protected]>
1 parent 9970d21 commit 58e58a8

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Copyright (c) 2025 Renesas Electronics Corporation
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
#include <arm/armv8-m.dtsi>
7+
#include <mem.h>
8+
#include <freq.h>
9+
10+
/ {
11+
compatible = "renesas,r9a09g057-m33";
12+
#address-cells = <1>;
13+
#size-cells = <1>;
14+
15+
cpus {
16+
#address-cells = <1>;
17+
#size-cells = <0>;
18+
19+
cpu0: cpu@0 {
20+
device_type = "cpu";
21+
compatible = "arm,cortex-m33";
22+
reg = <0>;
23+
clock-frequency = <DT_FREQ_M(200)>;
24+
#address-cells = <1>;
25+
#size-cells = <1>;
26+
27+
mpu: mpu@e000ed90 {
28+
compatible = "arm,armv8m-mpu";
29+
reg = <0xe000ed90 0x40>;
30+
};
31+
};
32+
};
33+
};
34+
35+
&nvic {
36+
arm,num-irq-priority-bits = <7>;
37+
};

0 commit comments

Comments
 (0)