1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/arm/freescale/fsl,imx51-m4if.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Freescale Multi Master Multi Memory Interface (M4IF) and Tigerp module 8 9description: collect the imx devices, which only have compatible and reg property 10 11maintainers: 12 - Frank Li <Frank.Li@nxp.com> 13 14properties: 15 compatible: 16 oneOf: 17 - enum: 18 - fsl,imx51-m4if 19 - fsl,imx51-tigerp 20 - fsl,imx51-aipstz 21 - fsl,imx53-aipstz 22 - fsl,imx7d-pcie-phy 23 - items: 24 - const: fsl,imx53-tigerp 25 - const: fsl,imx51-tigerp 26 27 reg: 28 maxItems: 1 29 30required: 31 - compatible 32 - reg 33 34additionalProperties: false 35 36examples: 37 - | 38 m4if@83fd8000 { 39 compatible = "fsl,imx51-m4if"; 40 reg = <0x83fd8000 0x1000>; 41 }; 42