Browse Source
Add support for Renesas RZ/V2H-EVK R8 core Signed-off-by: Tien Nguyen <tien.nguyen.zg@renesas.com>pull/92102/head
6 changed files with 138 additions and 6 deletions
@ -0,0 +1,65 @@
@@ -0,0 +1,65 @@
|
||||
/* |
||||
* Copyright (c) 2025 Renesas Electronics Corporation |
||||
* SPDX-License-Identifier: Apache-2.0 |
||||
*/ |
||||
|
||||
/dts-v1/; |
||||
|
||||
#include <zephyr/dt-bindings/memory-attr/memory-attr-arm.h> |
||||
#include <zephyr/dt-bindings/input/input-event-codes.h> |
||||
#include <arm/renesas/rz/rzv/r9a09g057_cr8.dtsi> |
||||
#include "rzv2h_evk-pinctrl.dtsi" |
||||
|
||||
/ { |
||||
model = "Renesas RZ/V2H EVK"; |
||||
compatible = "renesas,rzv2h-evk"; |
||||
|
||||
aliases { |
||||
led0 = &led5; |
||||
led1 = &led6; |
||||
}; |
||||
|
||||
chosen { |
||||
zephyr,sram = &sram; |
||||
zephyr,console = &uart0; |
||||
zephyr,shell-uart = &uart0; |
||||
}; |
||||
|
||||
leds { |
||||
compatible = "gpio-leds"; |
||||
|
||||
led5: led5 { |
||||
gpios = <&gpio0 0 0>; |
||||
label = "led5"; |
||||
}; |
||||
|
||||
led6: led6 { |
||||
gpios = <&gpio0 1 0>; |
||||
label = "led6"; |
||||
}; |
||||
}; |
||||
|
||||
sram: memory@0 { |
||||
compatible = "mmio-sram"; |
||||
reg = <0x0 DT_SIZE_M(256)>; |
||||
}; |
||||
}; |
||||
|
||||
&gpio { |
||||
status = "okay"; |
||||
}; |
||||
|
||||
&gpio0 { |
||||
status = "okay"; |
||||
}; |
||||
|
||||
&sci0 { |
||||
pinctrl-0 = <&sci0_pins>; |
||||
pinctrl-names = "default"; |
||||
status = "okay"; |
||||
|
||||
uart0: uart { |
||||
current-speed = <115200>; |
||||
status = "okay"; |
||||
}; |
||||
}; |
@ -0,0 +1,11 @@
@@ -0,0 +1,11 @@
|
||||
identifier: rzv2h_evk/r9a09g057h44gbg/cr8_0 |
||||
name: Cortex-R8 for Renesas RZ/V2H EVK |
||||
type: mcu |
||||
arch: arm |
||||
toolchain: |
||||
- zephyr |
||||
- gnuarmemb |
||||
supported: |
||||
- uart |
||||
- gpio |
||||
vendor: renesas |
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
# Copyright (c) 2025 Renesas Electronics Corporation |
||||
# SPDX-License-Identifier: Apache-2.0 |
||||
|
||||
CONFIG_XIP=n |
||||
|
||||
# MPU Config |
||||
CONFIG_ARM_MPU=y |
||||
|
||||
# Enable UART driver |
||||
CONFIG_SERIAL=y |
||||
|
||||
# Enable console |
||||
CONFIG_CONSOLE=y |
||||
CONFIG_UART_CONSOLE=y |
||||
|
||||
# Cache Options |
||||
CONFIG_CACHE_MANAGEMENT=y |
||||
CONFIG_DCACHE_LINE_SIZE_DETECT=y |
||||
CONFIG_ICACHE_LINE_SIZE_DETECT=y |
Loading…
Reference in new issue