nxp,lpc3220-usb-clk.txt 528 B

12345678910111213141516171819202122
  1. NXP LPC32xx USB Clock Controller
  2. Required properties:
  3. - compatible: should be "nxp,lpc3220-usb-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. USB clock controller
  7. Examples:
  8. usb {
  9. #address-cells = <1>;
  10. #size-cells = <1>;
  11. compatible = "simple-bus";
  12. ranges = <0x0 0x31020000 0x00001000>;
  13. usbclk: clock-controller@f00 {
  14. compatible = "nxp,lpc3220-usb-clk";
  15. reg = <0xf00 0x100>;
  16. #clock-cells = <1>;
  17. };
  18. };