xref: /freebsd/sys/contrib/device-tree/Bindings/mtd/technologic,nand.yaml (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1*b2d2a78aSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2*b2d2a78aSEmmanuel Vadot%YAML 1.2
3*b2d2a78aSEmmanuel Vadot---
4*b2d2a78aSEmmanuel Vadot$id: http://devicetree.org/schemas/mtd/technologic,nand.yaml#
5*b2d2a78aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*b2d2a78aSEmmanuel Vadot
7*b2d2a78aSEmmanuel Vadottitle: Technologic Systems NAND controller
8*b2d2a78aSEmmanuel Vadot
9*b2d2a78aSEmmanuel Vadotmaintainers:
10*b2d2a78aSEmmanuel Vadot  - Nikita Shubin <nikita.shubin@maquefel.me>
11*b2d2a78aSEmmanuel Vadot
12*b2d2a78aSEmmanuel VadotallOf:
13*b2d2a78aSEmmanuel Vadot  - $ref: nand-controller.yaml
14*b2d2a78aSEmmanuel Vadot
15*b2d2a78aSEmmanuel Vadotproperties:
16*b2d2a78aSEmmanuel Vadot  compatible:
17*b2d2a78aSEmmanuel Vadot    oneOf:
18*b2d2a78aSEmmanuel Vadot      - const: technologic,ts7200-nand
19*b2d2a78aSEmmanuel Vadot      - items:
20*b2d2a78aSEmmanuel Vadot          - enum:
21*b2d2a78aSEmmanuel Vadot              - technologic,ts7300-nand
22*b2d2a78aSEmmanuel Vadot              - technologic,ts7260-nand
23*b2d2a78aSEmmanuel Vadot              - technologic,ts7250-nand
24*b2d2a78aSEmmanuel Vadot          - const: technologic,ts7200-nand
25*b2d2a78aSEmmanuel Vadot
26*b2d2a78aSEmmanuel Vadot  reg:
27*b2d2a78aSEmmanuel Vadot    maxItems: 1
28*b2d2a78aSEmmanuel Vadot
29*b2d2a78aSEmmanuel Vadotrequired:
30*b2d2a78aSEmmanuel Vadot  - compatible
31*b2d2a78aSEmmanuel Vadot  - reg
32*b2d2a78aSEmmanuel Vadot
33*b2d2a78aSEmmanuel VadotunevaluatedProperties: false
34*b2d2a78aSEmmanuel Vadot
35*b2d2a78aSEmmanuel Vadotexamples:
36*b2d2a78aSEmmanuel Vadot  - |
37*b2d2a78aSEmmanuel Vadot    nand-controller@60000000 {
38*b2d2a78aSEmmanuel Vadot        compatible = "technologic,ts7200-nand";
39*b2d2a78aSEmmanuel Vadot        reg = <0x60000000 0x8000000>;
40*b2d2a78aSEmmanuel Vadot        #address-cells = <1>;
41*b2d2a78aSEmmanuel Vadot        #size-cells = <0>;
42*b2d2a78aSEmmanuel Vadot        nand@0 {
43*b2d2a78aSEmmanuel Vadot           reg = <0>;
44*b2d2a78aSEmmanuel Vadot        };
45*b2d2a78aSEmmanuel Vadot    };
46