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/arm/tegra/nvidia,tegra194-axi2apb.yaml#"
0005 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
0006 
0007 title: NVIDIA Tegra194 AXI2APB bridge
0008 
0009 maintainers:
0010   - Sumit Gupta <sumitg@nvidia.com>
0011 
0012 properties:
0013   $nodename:
0014     pattern: "^axi2apb@([0-9a-f]+)$"
0015 
0016   compatible:
0017     enum:
0018       - nvidia,tegra194-axi2apb
0019 
0020   reg:
0021     maxItems: 6
0022     description: Physical base address and length of registers for all bridges
0023 
0024 additionalProperties: false
0025 
0026 required:
0027   - compatible
0028   - reg
0029 
0030 examples:
0031   - |
0032     axi2apb: axi2apb@2390000 {
0033       compatible = "nvidia,tegra194-axi2apb";
0034       reg = <0x02390000 0x1000>,
0035             <0x023a0000 0x1000>,
0036             <0x023b0000 0x1000>,
0037             <0x023c0000 0x1000>,
0038             <0x023d0000 0x1000>,
0039             <0x023e0000 0x1000>;
0040     };