arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts

Source file repositories/reference/linux-study-clean/arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts

File Facts

System
Linux kernel
Corpus path
arch/arm64/boot/dts/renesas/r9a09g057h44-rzv2h-evk.dts
Extension
.dts
Size
10930 bytes
Lines
626
Domain
Architecture Layer
Bucket
arch/arm64
Inferred role
Architecture Layer: configuration, schema, or hardware description
Status
atlas-only

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
/*
 * Device Tree Source for the RZ/V2H EVK board
 *
 * Copyright (C) 2024 Renesas Electronics Corp.
 */

/dts-v1/;

#include <dt-bindings/pinctrl/renesas,r9a09g057-pinctrl.h>
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
#include "r9a09g057.dtsi"

/ {
	model = "Renesas RZ/V2H EVK Board based on r9a09g057h44";
	compatible = "renesas,rzv2h-evk", "renesas,r9a09g057h44", "renesas,r9a09g057";

	aliases {
		ethernet0 = &eth0;
		ethernet1 = &eth1;
		i2c0 = &i2c0;
		i2c1 = &i2c1;
		i2c2 = &i2c2;
		i2c3 = &i2c3;
		i2c6 = &i2c6;
		i2c7 = &i2c7;
		i2c8 = &i2c8;
		mmc1 = &sdhi1;
		rtc0 = &rtc;
		serial0 = &scif;
	};

	chosen {
		bootargs = "ignore_loglevel";
		stdout-path = "serial0:115200n8";
	};

	hdmi-out {
		compatible = "hdmi-connector";
		type = "d";

		port {
			hdmi_con_out: endpoint {
				remote-endpoint = <&adv7535_out>;
			};
		};
	};

	keys: keys {
		compatible = "gpio-keys";

		key-wakeup {
			interrupts-extended = <&icu 0 IRQ_TYPE_EDGE_FALLING>;
			linux,code = <KEY_WAKEUP>;
			label = "NMI_SW";
			debounce-interval = <20>;
			wakeup-source;
		};
	};

	memory@48000000 {
		device_type = "memory";
		/* first 128MB is reserved for secure area. */
		reg = <0x0 0x48000000 0x1 0xf8000000>;
	};

	memory@240000000 {
		device_type = "memory";
		reg = <0x2 0x40000000 0x2 0x00000000>;

Annotation

Implementation Notes