1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/board/fsl,bcsr.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Board Control and Status 8 9maintainers: 10 - Frank Li <Frank.Li@nxp.com> 11 12properties: 13 compatible: 14 enum: 15 - fsl,mpc8360mds-bcsr 16 17 reg: 18 maxItems: 1 19 20required: 21 - compatible 22 - reg 23 24additionalProperties: false 25 26examples: 27 - | 28 board@f8000000 { 29 compatible = "fsl,mpc8360mds-bcsr"; 30 reg = <0xf8000000 0x8000>; 31 }; 32 33