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/brcm,bcm6345-uart.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: BCM63xx UART
0008 
0009 maintainers:
0010   - Rafał Miłecki <rafal@milecki.pl>
0011 
0012 allOf:
0013   - $ref: serial.yaml#
0014 
0015 properties:
0016   compatible:
0017     const: brcm,bcm6345-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: refclk
0030 
0031 unevaluatedProperties: false
0032 
0033 required:
0034   - reg
0035   - interrupts
0036   - clocks
0037 
0038 examples:
0039   - |
0040     serial@14e00520 {
0041         compatible = "brcm,bcm6345-uart";
0042         reg = <0x14e00520 0x18>;
0043         interrupt-parent = <&periph_intc>;
0044         interrupts = <2>;
0045         clocks = <&periph_clk>;
0046         clock-names = "refclk";
0047     };