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/qca,ar9330-uart.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Qualcomm Atheros AR9330 High-Speed UART
0008 
0009 maintainers:
0010   - Oleksij Rempel <o.rempel@pengutronix.de>
0011 
0012 allOf:
0013   - $ref: serial.yaml#
0014 
0015 properties:
0016   compatible:
0017     const: qca,ar9330-uart
0018 
0019   reg:
0020     maxItems: 1
0021 
0022   interrupts:
0023     maxItems: 1
0024 
0025   clocks:
0026     maxItems: 1
0027 
0028   clock-names:
0029     const: uart
0030 
0031 required:
0032   - compatible
0033   - reg
0034   - interrupts
0035   - clocks
0036   - clock-names
0037 
0038 unevaluatedProperties: false
0039 
0040 examples:
0041   - |
0042     serial@18020000 {
0043       compatible = "qca,ar9330-uart";
0044       reg = <0x18020000 0x14>;
0045       clocks = <&ref>;
0046       clock-names = "uart";
0047       interrupt-parent = <&intc>;
0048       interrupts = <3>;
0049     };
0050 ...