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/fsl,plldig.yaml

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 # SPDX-License-Identifier: GPL-2.0
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/clock/fsl,plldig.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: NXP QorIQ Layerscape LS1028A Display PIXEL Clock Binding
    8 
    9 maintainers:
   10   - Wen He <wen.he_1@nxp.com>
   11 
   12 description: |
   13   NXP LS1028A has a clock domain PXLCLK0 used for the Display output
   14   interface in the display core, as implemented in TSMC CLN28HPM PLL.
   15   which generate and offers pixel clocks to Display.
   16 
   17 properties:
   18   compatible:
   19     const: fsl,ls1028a-plldig
   20 
   21   reg:
   22     maxItems: 1
   23 
   24   clocks:
   25     maxItems: 1
   26 
   27   '#clock-cells':
   28     const: 0
   29 
   30   fsl,vco-hz:
   31     description: Optional for VCO frequency of the PLL in Hertz. The VCO frequency
   32       of this PLL cannot be changed during runtime only at startup. Therefore,
   33       the output frequencies are very limited and might not even closely match
   34       the requested frequency. To work around this restriction the user may specify
   35       its own desired VCO frequency for the PLL.
   36     minimum: 650000000
   37     maximum: 1300000000
   38     default: 1188000000
   39 
   40 required:
   41   - compatible
   42   - reg
   43   - clocks
   44   - '#clock-cells'
   45 
   46 additionalProperties: false
   47 
   48 examples:
   49   # Display PIXEL Clock node:
   50   - |
   51     dpclk: clock-display@f1f0000 {
   52         compatible = "fsl,ls1028a-plldig";
   53         reg = <0xf1f0000 0xffff>;
   54         #clock-cells = <0>;
   55         clocks = <&osc_27m>;
   56     };
   57 
   58 ...

Cache object: 101e2632a5c707ddbf5711c482e4d628


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