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.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Touches IRQ or DMA behavior; this matters for the representative real-device path.
Dependency Surface
dt-bindings/gpio/gpio.hdt-bindings/input/input.hdt-bindings/pinctrl/rockchip.hpx30.dtsi
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
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
- Immediate include surface: `dt-bindings/gpio/gpio.h`, `dt-bindings/input/input.h`, `dt-bindings/pinctrl/rockchip.h`, `px30.dtsi`.
- Atlas domain: Architecture Layer / arch/arm64.
- Implementation status: atlas-only.
- IRQ or DMA behavior appears here, which is relevant to the selected PCIe/NVMe device path.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.