1SAMSUNG S5P/Exynos SoC series System Registers (SYSREG)
2
3Properties:
4 - compatible : should contain two values. First value must be one from following list:
5		- "samsung,exynos4-sysreg" - for Exynos4 based SoCs,
6		- "samsung,exynos5-sysreg" - for Exynos5 based SoCs.
7		second value must be always "syscon".
8 - reg : offset and length of the register set.
9
10Example:
11	syscon@10010000 {
12		compatible = "samsung,exynos4-sysreg", "syscon";
13		reg = <0x10010000 0x400>;
14	};
15
16	syscon@10050000 {
17		compatible = "samsung,exynos5-sysreg", "syscon";
18		reg = <0x10050000 0x5000>;
19	};
20