arch/arm64/boot/dts/rockchip/px30-pp1516.dtsi

Source file repositories/reference/linux-study-clean/arch/arm64/boot/dts/rockchip/px30-pp1516.dtsi

File Facts

System
Linux kernel
Corpus path
arch/arm64/boot/dts/rockchip/px30-pp1516.dtsi
Extension
.dtsi
Size
12012 bytes
Lines
602
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+ OR MIT)
/*
 * Copyright (c) 2025 Cherry Embedded Solutions GmbH
 */

/dts-v1/;
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
#include <dt-bindings/pinctrl/rockchip.h>
#include "px30.dtsi"

/ {
	aliases {
		mmc0 = &emmc;
	};

	chosen {
		stdout-path = "serial5:115200n8";
	};

	backlight: backlight {
		compatible = "pwm-backlight";
		power-supply = <&vcc5v0_sys>;
		pwms = <&pwm0 0 25000 0>;
	};

	beeper {
		compatible = "pwm-beeper";
		pwms = <&pwm1 0 1000 0>;
	};

	emmc_pwrseq: emmc-pwrseq {
		compatible = "mmc-pwrseq-emmc";
		pinctrl-0 = <&emmc_reset>;
		pinctrl-names = "default";
		reset-gpios = <&gpio1 RK_PB3 GPIO_ACTIVE_HIGH>;
	};

	gpio-leds {
		compatible = "gpio-leds";
		pinctrl-names = "default";
		pinctrl-0 = <&debug_led_pin>, <&heartbeat_led_pin>;

		/*
		 * LED2 on the PCB, left of the USB-C connector.
		 * Typically NOT populated.
		 */
		debug: led-0 {
			label = "debug";
			gpios = <&gpio3 RK_PC3 GPIO_ACTIVE_HIGH>;
			linux,default-trigger = "none";
		};

		/*
		 * LED14 on the PCB, left of the PX30 SoC.
		 * Typically NOT populated.
		 */
		heartbeat: led-1 {
			label = "heartbeat";
			gpios = <&gpio0 RK_PA0 GPIO_ACTIVE_HIGH>;
			linux,default-trigger = "heartbeat";
		};
	};

	vcc5v0_sys: regulator-vccsys {
		compatible = "regulator-fixed";
		regulator-name = "vcc5v0_sys";
		regulator-always-on;
		regulator-boot-on;
		regulator-min-microvolt = <5000000>;

Annotation

Implementation Notes