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/serial/cdns,uart.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/serial/cdns,uart.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Cadence UART Controller Device Tree Bindings
    8 
    9 maintainers:
   10   - Michal Simek <michal.simek@xilinx.com>
   11 
   12 allOf:
   13   - $ref: /schemas/serial.yaml#
   14 
   15 properties:
   16   compatible:
   17     oneOf:
   18       - description: UART controller for Zynq-7xxx SoC
   19         items:
   20           - const: xlnx,xuartps
   21           - const: cdns,uart-r1p8
   22       - description: UART controller for Zynq Ultrascale+ MPSoC
   23         items:
   24           - const: xlnx,zynqmp-uart
   25           - const: cdns,uart-r1p12
   26 
   27   reg:
   28     maxItems: 1
   29 
   30   interrupts:
   31     maxItems: 1
   32 
   33   clocks:
   34     maxItems: 2
   35 
   36   clock-names:
   37     items:
   38       - const: uart_clk
   39       - const: pclk
   40 
   41   cts-override:
   42     description: |
   43       Override the CTS modem status signal. This signal will
   44       always be reported as active instead of being obtained
   45       from the modem status register. Define this if your serial
   46       port does not use this pin.
   47     type: boolean
   48 
   49 required:
   50   - compatible
   51   - reg
   52   - interrupts
   53   - clocks
   54   - clock-names
   55 
   56 unevaluatedProperties: false
   57 
   58 examples:
   59   - |
   60     uart0: serial@e0000000 {
   61       compatible = "xlnx,xuartps", "cdns,uart-r1p8";
   62       clocks = <&clkc 23>, <&clkc 40>;
   63       clock-names = "uart_clk", "pclk";
   64       reg = <0xE0000000 0x1000>;
   65       interrupts = <0 27 4>;
   66     };

Cache object: efe94f3cd4af7e4a0de023cc02729927


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