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/adpll.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 ADPLL 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 ADPLL with two to three selectable input clocks
    7 and three to four children.
    8 
    9 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
   10 
   11 Required properties:
   12 - compatible : shall be one of "ti,dm814-adpll-s-clock" or
   13   "ti,dm814-adpll-lj-clock" depending on the type of the ADPLL
   14 - #clock-cells : from common clock binding; shall be set to 1.
   15 - clocks : link phandles of parent clocks clkinp and clkinpulow, note
   16   that the adpll-s-clock also has an optional clkinphif
   17 - reg : address and length of the register set for controlling the ADPLL.
   18 
   19 Examples:
   20         adpll_mpu_ck: adpll@40 {
   21                 #clock-cells = <1>;
   22                 compatible = "ti,dm814-adpll-s-clock";
   23                 reg = <0x40 0x40>;
   24                 clocks = <&devosc_ck &devosc_ck &devosc_ck>;
   25                 clock-names = "clkinp", "clkinpulow", "clkinphif";
   26                 clock-output-names = "481c5040.adpll.dcoclkldo",
   27                                      "481c5040.adpll.clkout",
   28                                      "481c5040.adpll.clkoutx2",
   29                                      "481c5040.adpll.clkouthif";
   30         };
   31 
   32         adpll_dsp_ck: adpll@80 {
   33                 #clock-cells = <1>;
   34                 compatible = "ti,dm814-adpll-lj-clock";
   35                 reg = <0x80 0x30>;
   36                 clocks = <&devosc_ck &devosc_ck>;
   37                 clock-names = "clkinp", "clkinpulow";
   38                 clock-output-names = "481c5080.adpll.dcoclkldo",
   39                                      "481c5080.adpll.clkout",
   40                                      "481c5080.adpll.clkoutldo";
   41         };

Cache object: 82fe996a74d237873431de95f4b64bbb


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