Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/serial/socionext,uniphier-uart.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: UniPhier UART controller
0008 
0009 maintainers:
0010   - Masahiro Yamada <yamada.masahiro@socionext.com>
0011 
0012 properties:
0013   compatible:
0014     const: socionext,uniphier-uart
0015 
0016   reg:
0017     maxItems: 1
0018 
0019   interrupts:
0020     maxItems: 1
0021 
0022   clocks:
0023     maxItems: 1
0024 
0025   resets:
0026     maxItems: 1
0027 
0028   auto-flow-control:
0029     description: enable automatic flow control support.
0030     $ref: /schemas/types.yaml#/definitions/flag
0031 
0032 required:
0033   - compatible
0034   - reg
0035   - interrupts
0036   - clocks
0037 
0038 additionalProperties: false
0039 
0040 examples:
0041   - |
0042     aliases {
0043         serial0 = &serial0;
0044     };
0045 
0046     serial0: serial@54006800 {
0047         compatible = "socionext,uniphier-uart";
0048         reg = <0x54006800 0x40>;
0049         interrupts = <0 33 4>;
0050         clocks = <&uart_clk>;
0051     };