stih416-clock.dtsi 949 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright (C) 2013 STMicroelectronics R&D Limited
  3. * <stlinux-devel@stlinux.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. / {
  10. clocks {
  11. /*
  12. * Fixed 30MHz oscillator inputs to SoC
  13. */
  14. CLK_SYSIN: CLK_SYSIN {
  15. #clock-cells = <0>;
  16. compatible = "fixed-clock";
  17. clock-frequency = <30000000>;
  18. clock-output-names = "CLK_SYSIN";
  19. };
  20. /*
  21. * ARM Peripheral clock for timers
  22. */
  23. arm_periph_clk: arm_periph_clk {
  24. #clock-cells = <0>;
  25. compatible = "fixed-clock";
  26. clock-frequency = <600000000>;
  27. };
  28. /*
  29. * Bootloader initialized system infrastructure clock for
  30. * serial devices.
  31. */
  32. CLK_S_ICN_REG_0: clockgenA0@4 {
  33. #clock-cells = <0>;
  34. compatible = "fixed-clock";
  35. clock-frequency = <100000000>;
  36. clock-output-names = "CLK_S_ICN_REG_0";
  37. };
  38. };
  39. };