summaryrefslogblamecommitdiffstats
path: root/arch/arm/boot/dts/exynos-syscon-restart.dtsi
blob: 09a2040054edc360435b378d50202ceb55144df1 (plain) (tree)


























                                                                       
/*
 * Samsung's Exynos SoC syscon reboot/poweroff nodes common definition.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

/ {
	soc {
		compatible = "simple-bus";

		poweroff: syscon-poweroff {
			compatible = "syscon-poweroff";
			regmap = <&pmu_system_controller>;
			offset = <0x330C>; /* PS_HOLD_CONTROL */
			mask = <0x5200>; /* reset value */
		};

		reboot: syscon-reboot {
			compatible = "syscon-reboot";
			regmap = <&pmu_system_controller>;
			offset = <0x0400>; /* SWRESET */
			mask = <0x1>;
		};
	};
};