Back to home page

OSCL-LXR

 
 

    


0001 Binding for Imagination Technologies MIPS Boston clock sources.
0002 
0003 This binding uses the common clock binding[1].
0004 
0005 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
0006 
0007 The device node must be a child node of the syscon node corresponding to the
0008 Boston system's platform registers.
0009 
0010 Required properties:
0011 - compatible : Should be "img,boston-clock".
0012 - #clock-cells : Should be set to 1.
0013   Values available for clock consumers can be found in the header file:
0014     <dt-bindings/clock/boston-clock.h>
0015 
0016 Example:
0017 
0018         system-controller@17ffd000 {
0019                 compatible = "img,boston-platform-regs", "syscon";
0020                 reg = <0x17ffd000 0x1000>;
0021 
0022                 clk_boston: clock {
0023                         compatible = "img,boston-clock";
0024                         #clock-cells = <1>;
0025                 };
0026         };
0027 
0028         uart0: uart@17ffe000 {
0029                 /* ... */
0030                 clocks = <&clk_boston BOSTON_CLK_SYS>;
0031         };