blob: 0aa249409b511c0bb6d44f0d42f027298bf32b87 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001NXP LPC32xx USB Clock Controller
2
3Required properties:
4- compatible: should be "nxp,lpc3220-usb-clk"
5- reg: should contain clock controller registers location and length
6- #clock-cells: must be 1, the cell holds id of a clock provided by the
7 USB clock controller
8
9Examples:
10
11 usb {
12 #address-cells = <1>;
13 #size-cells = <1>;
14 compatible = "simple-bus";
15 ranges = <0x0 0x31020000 0x00001000>;
16
17 usbclk: clock-controller@f00 {
18 compatible = "nxp,lpc3220-usb-clk";
19 reg = <0xf00 0x100>;
20 #clock-cells = <1>;
21 };
22 };