stih415-clock.dtsi 840 B

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