brintos

brintos / linux-shallow public Read only

0
0
Text · 939 B · f9d87c4 Raw
46 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/mtd/technologic,nand.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Technologic Systems NAND controller8 9maintainers:10  - Nikita Shubin <nikita.shubin@maquefel.me>11 12allOf:13  - $ref: nand-controller.yaml14 15properties:16  compatible:17    oneOf:18      - const: technologic,ts7200-nand19      - items:20          - enum:21              - technologic,ts7300-nand22              - technologic,ts7260-nand23              - technologic,ts7250-nand24          - const: technologic,ts7200-nand25 26  reg:27    maxItems: 128 29required:30  - compatible31  - reg32 33unevaluatedProperties: false34 35examples:36  - |37    nand-controller@60000000 {38        compatible = "technologic,ts7200-nand";39        reg = <0x60000000 0x8000000>;40        #address-cells = <1>;41        #size-cells = <0>;42        nand@0 {43           reg = <0>;44        };45    };46