nxp,lpc3220-clk.txt 862 B

123456789101112131415161718192021222324252627282930
  1. NXP LPC32xx Clock Controller
  2. Required properties:
  3. - compatible: should be "nxp,lpc3220-clk"
  4. - reg: should contain clock controller registers location and length
  5. - #clock-cells: must be 1, the cell holds id of a clock provided by the
  6. clock controller
  7. - clocks: phandles of external oscillators, the list must contain one
  8. 32768 Hz oscillator and may have one optional high frequency oscillator
  9. - clock-names: list of external oscillator clock names, must contain
  10. "xtal_32k" and may have optional "xtal"
  11. Examples:
  12. /* System Control Block */
  13. scb {
  14. compatible = "simple-bus";
  15. ranges = <0x0 0x040004000 0x00001000>;
  16. #address-cells = <1>;
  17. #size-cells = <1>;
  18. clk: clock-controller@0 {
  19. compatible = "nxp,lpc3220-clk";
  20. reg = <0x00 0x114>;
  21. #clock-cells = <1>;
  22. clocks = <&xtal_32k>, <&xtal>;
  23. clock-names = "xtal_32k", "xtal";
  24. };
  25. };