arch/arm64/boot/dts/rockchip/rk3566-qnap-ts133-pcb-13.dtso

Source file repositories/reference/linux-study-clean/arch/arm64/boot/dts/rockchip/rk3566-qnap-ts133-pcb-13.dtso

File Facts

System
Linux kernel
Corpus path
arch/arm64/boot/dts/rockchip/rk3566-qnap-ts133-pcb-13.dtso
Extension
.dtso
Size
1375 bytes
Lines
65
Domain
Architecture Layer
Bucket
arch/arm64
Inferred role
Architecture Layer: arch/arm64
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-later OR MIT)
/*
 * Device tree overlay for TS133 board PCB-13 revision.
 *
 * Copyright (C) 2025 Heiko Stuebner <heiko@sntech.de>
 */

/dts-v1/;
/plugin/;

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/pinctrl/rockchip.h>

&{/} {
	/*
	 * The default hardware-state of this gpio causes the drive
	 * to be already running when entering the kernel.
	 * regulator-boot-on is needed to prevent one additional
	 * power-cycle on the drive.
	 *
	 * With regulator-boot-on we get the expected 1 cycle
	 * per boot, without it we end up with 2 cycles as seen
	 * via smartctl.
	 */
	hdd1_pwr: regulator-hdd1-power {
		compatible = "regulator-fixed";
		gpio = <&gpio0 RK_PC2 GPIO_ACTIVE_LOW>;
		pinctrl-names = "default";
		pinctrl-0 = <&hdd1_power_pin>;
		regulator-name = "hdd1-power";
		regulator-boot-on;
		vin-supply = <&dc_12v>;
	};
};

&gpio2 {
	hdd1-present-hog {
		gpios = <RK_PA2 GPIO_ACTIVE_LOW>;
		gpio-hog;
		input;
		line-name = "hdd1-present";
	};
};

&pinctrl {
	pinctrl-names = "default";
	pinctrl-0 = <&hdd1_present_pin>;

	hdd-power {
		hdd1_power_pin: hdd1-power-pin {
			rockchip,pins = <0 RK_PC2 RK_FUNC_GPIO &pcfg_pull_none>;
		};
	};

	hdd-present {
		hdd1_present_pin: hdd1-present-pin {
			rockchip,pins = <2 RK_PA2 RK_FUNC_GPIO &pcfg_pull_up>;
		};
	};
};

&sata2_port0 {
	target-supply = <&hdd1_pwr>;
};

Annotation

Implementation Notes