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/apll.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 Texas Instruments APLL clock.
    2 
    3 Binding status: Unstable - ABI compatibility may be broken in the future
    4 
    5 This binding uses the common clock binding[1].  It assumes a
    6 register-mapped APLL with usually two selectable input clocks
    7 (reference clock and bypass clock), with analog phase locked
    8 loop logic for multiplying the input clock to a desired output
    9 clock. This clock also typically supports different operation
   10 modes (locked, low power stop etc.) APLL mostly behaves like
   11 a subtype of a DPLL [2], although a simplified one at that.
   12 
   13 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
   14 [2] Documentation/devicetree/bindings/clock/ti/dpll.txt
   15 
   16 Required properties:
   17 - compatible : shall be "ti,dra7-apll-clock" or "ti,omap2-apll-clock"
   18 - #clock-cells : from common clock binding; shall be set to 0.
   19 - clocks : link phandles of parent clocks (clk-ref and clk-bypass)
   20 - reg : address and length of the register set for controlling the APLL.
   21   It contains the information of registers in the following order:
   22         "control" - contains the control register offset
   23         "idlest" - contains the idlest register offset
   24         "autoidle" - contains the autoidle register offset (OMAP2 only)
   25 - ti,clock-frequency : static clock frequency for the clock (OMAP2 only)
   26 - ti,idlest-shift : bit-shift for the idlest field (OMAP2 only)
   27 - ti,bit-shift : bit-shift for enable and autoidle fields (OMAP2 only)
   28 
   29 Examples:
   30         apll_pcie_ck: apll_pcie_ck {
   31                 #clock-cells = <0>;
   32                 clocks = <&apll_pcie_in_clk_mux>, <&dpll_pcie_ref_ck>;
   33                 reg = <0x021c>, <0x0220>;
   34                 compatible = "ti,dra7-apll-clock";
   35         };
   36 
   37         apll96_ck: apll96_ck {
   38                 #clock-cells = <0>;
   39                 compatible = "ti,omap2-apll-clock";
   40                 clocks = <&sys_ck>;
   41                 ti,bit-shift = <2>;
   42                 ti,idlest-shift = <8>;
   43                 ti,clock-frequency = <96000000>;
   44                 reg = <0x0500>, <0x0530>, <0x0520>;
   45         };

Cache object: 890eb7b5e1ccc8c5c6027368668b7667


[ 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.