sysreg.txt 571 B

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