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/ti,clksel.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-only OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/clock/ti/ti,clksel.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Binding for TI clksel clock
    8 
    9 maintainers:
   10   - Tony Lindgren <tony@atomide.com>
   11 
   12 description: |
   13   The TI CLKSEL clocks consist of consist of input clock mux bits, and in some
   14   cases also has divider, multiplier and gate bits.
   15 
   16 properties:
   17   compatible:
   18     const: ti,clksel
   19 
   20   reg:
   21     maxItems: 1
   22     description: The CLKSEL register range
   23 
   24   '#address-cells':
   25     enum: [ 0, 1, 2 ]
   26 
   27   '#size-cells':
   28     enum: [ 0, 1, 2 ]
   29 
   30   ranges: true
   31 
   32   "#clock-cells":
   33     const: 2
   34     description: The CLKSEL register and bit offset
   35 
   36 required:
   37   - compatible
   38   - reg
   39   - "#clock-cells"
   40 
   41 additionalProperties:
   42   type: object
   43 
   44 examples:
   45   - |
   46     clksel_gfx_fclk: clock@52c {
   47       compatible = "ti,clksel";
   48       reg = <0x25c 0x4>;
   49       #clock-cells = <2>;
   50     };
   51 ...

Cache object: 4323c9c0eaeab737730d477b7c7abbf6


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