Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/soc/imx/fsl,aips-bus.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: i.MX AHB to IP Bridge
0008 
0009 maintainers:
0010   - Peng Fan <peng.fan@nxp.com>
0011 
0012 description: |
0013   This particular peripheral is designed as the bridge between
0014   AHB bus and peripherals with the lower bandwidth IP Slave (IPS)
0015   buses.
0016 
0017 select:
0018   properties:
0019     compatible:
0020       contains:
0021         const: fsl,aips-bus
0022   required:
0023     - compatible
0024 
0025 properties:
0026   compatible:
0027     items:
0028       - const: fsl,aips-bus
0029       - const: simple-bus
0030 
0031   reg:
0032     maxItems: 1
0033 
0034 required:
0035   - compatible
0036   - reg
0037 
0038 additionalProperties: true
0039 
0040 examples:
0041   - |
0042     bus@30000000 {
0043       compatible = "fsl,aips-bus", "simple-bus";
0044       reg = <0x30000000 0x400000>;
0045       #address-cells = <1>;
0046       #size-cells = <1>;
0047       ranges;
0048     };
0049 ...