Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/spi/qca,ar934x-spi.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Qualcomm Atheros AR934x/QCA95xx SoC SPI controller
0008 
0009 maintainers:
0010   - Chuanhong Guo <gch981213@gmail.com>
0011 
0012 allOf:
0013   - $ref: spi-controller.yaml#
0014 
0015 properties:
0016   compatible:
0017     const: qca,ar934x-spi
0018 
0019   reg:
0020     maxItems: 1
0021 
0022   clocks:
0023     maxItems: 1
0024 
0025 required:
0026   - compatible
0027   - reg
0028   - clocks
0029   - '#address-cells'
0030   - '#size-cells'
0031 
0032 unevaluatedProperties: false
0033 
0034 examples:
0035   - |
0036     #include <dt-bindings/clock/ath79-clk.h>
0037     spi: spi@1f000000 {
0038         compatible = "qca,ar934x-spi";
0039         reg = <0x1f000000 0x1c>;
0040         clocks = <&pll ATH79_CLK_AHB>;
0041         #address-cells = <1>;
0042         #size-cells = <0>;
0043     };