0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/bus/mti,mips-cdmm.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: MIPS Common Device Memory Map
0008
0009 description: |
0010 Defines a location of the MIPS Common Device Memory Map registers.
0011
0012 maintainers:
0013 - James Hogan <jhogan@kernel.org>
0014
0015 properties:
0016 compatible:
0017 const: mti,mips-cdmm
0018
0019 reg:
0020 description: |
0021 Base address and size of an unoccupied memory region, which will be
0022 used to map the MIPS CDMM registers block.
0023 maxItems: 1
0024
0025 required:
0026 - compatible
0027 - reg
0028
0029 additionalProperties: false
0030
0031 examples:
0032 - |
0033 cdmm@1bde8000 {
0034 compatible = "mti,mips-cdmm";
0035 reg = <0x1bde8000 0x8000>;
0036 };
0037 ...