The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/clock/ti/fixed-factor-clock.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 Binding for TI fixed factor rate clock sources.
    2 
    3 Binding status: Unstable - ABI compatibility may be broken in the future
    4 
    5 This binding uses the common clock binding[1], and also uses the autoidle
    6 support from TI autoidle clock [2].
    7 
    8 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
    9 [2] Documentation/devicetree/bindings/clock/ti/autoidle.txt
   10 
   11 Required properties:
   12 - compatible : shall be "ti,fixed-factor-clock".
   13 - #clock-cells : from common clock binding; shall be set to 0.
   14 - ti,clock-div: fixed divider.
   15 - ti,clock-mult: fixed multiplier.
   16 - clocks: parent clock.
   17 
   18 Optional properties:
   19 - clock-output-names : from common clock binding.
   20 - ti,autoidle-shift: bit shift of the autoidle enable bit for the clock,
   21   see [2]
   22 - reg: offset for the autoidle register of this clock, see [2]
   23 - ti,invert-autoidle-bit: autoidle is enabled by setting the bit to 0, see [2]
   24 - ti,set-rate-parent: clk_set_rate is propagated to parent
   25 
   26 Example:
   27         clock {
   28                 compatible = "ti,fixed-factor-clock";
   29                 clocks = <&parentclk>;
   30                 #clock-cells = <0>;
   31                 ti,clock-div = <2>;
   32                 ti,clock-mult = <1>;
   33         };
   34 
   35         dpll_usb_clkdcoldo_ck: dpll_usb_clkdcoldo_ck {
   36                 #clock-cells = <0>;
   37                 compatible = "ti,fixed-factor-clock";
   38                 clocks = <&dpll_usb_ck>;
   39                 ti,clock-div = <1>;
   40                 ti,autoidle-shift = <8>;
   41                 reg = <0x01b4>;
   42                 ti,clock-mult = <1>;
   43                 ti,invert-autoidle-bit;
   44         };

Cache object: 0cd47ec4ef91230dd1dc93322f75f645


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.