Back to home page

OSCL-LXR

 
 

    


0001 Broadcom BCM53573 ILP clock
0002 ===========================
0003 
0004 This binding uses the common clock binding:
0005     Documentation/devicetree/bindings/clock/clock-bindings.txt
0006 
0007 This binding is used for ILP clock (sometimes referred as "slow clock")
0008 on Broadcom BCM53573 devices using Cortex-A7 CPU.
0009 
0010 ILP's rate has to be calculated on runtime and it depends on ALP clock
0011 which has to be referenced.
0012 
0013 This clock is part of PMU (Power Management Unit), a Broadcom's device
0014 handing power-related aspects. Its node must be sub-node of the PMU
0015 device.
0016 
0017 Required properties:
0018 - compatible: "brcm,bcm53573-ilp"
0019 - clocks: has to reference an ALP clock
0020 - #clock-cells: should be <0>
0021 - clock-output-names: from common clock bindings, should contain clock
0022                       name
0023 
0024 Example:
0025 
0026 pmu@18012000 {
0027         compatible = "simple-mfd", "syscon";
0028         reg = <0x18012000 0x00001000>;
0029 
0030         ilp {
0031                 compatible = "brcm,bcm53573-ilp";
0032                 clocks = <&alp>;
0033                 #clock-cells = <0>;
0034                 clock-output-names = "ilp";
0035         };
0036 };