mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
Add compatible string fsl,imx25-aips to fix below CHECK_DTBS warnings: arch/arm/boot/dts/nxp/imx/imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dtb: /soc/bus@43f00000/bridge@43f00000: failed to match any schema with compatible: ['fsl,imx25-aips'] Signed-off-by: Frank Li <Frank.Li@nxp.com> Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com> Link: https://patch.msgid.link/20260211221529.3745404-1-Frank.Li@nxp.com Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
43 lines
921 B
YAML
43 lines
921 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/arm/freescale/fsl,imx51-m4if.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Freescale Multi Master Multi Memory Interface (M4IF) and Tigerp module
|
|
|
|
description: collect the imx devices, which only have compatible and reg property
|
|
|
|
maintainers:
|
|
- Frank Li <Frank.Li@nxp.com>
|
|
|
|
properties:
|
|
compatible:
|
|
oneOf:
|
|
- enum:
|
|
- fsl,imx25-aips
|
|
- fsl,imx51-m4if
|
|
- fsl,imx51-tigerp
|
|
- fsl,imx51-aipstz
|
|
- fsl,imx53-aipstz
|
|
- fsl,imx7d-pcie-phy
|
|
- items:
|
|
- const: fsl,imx53-tigerp
|
|
- const: fsl,imx51-tigerp
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
m4if@83fd8000 {
|
|
compatible = "fsl,imx51-m4if";
|
|
reg = <0x83fd8000 0x1000>;
|
|
};
|