mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 18:16:45 +07:00
0cfec8ed07
Few files missed recent conversion of GPL v2.0 license statements to SPDX identifiers Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
25 lines
510 B
Plaintext
25 lines
510 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Samsung's Exynos SoC syscon reboot/poweroff nodes common definition.
|
|
*/
|
|
|
|
/ {
|
|
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>;
|
|
};
|
|
};
|
|
};
|