blob: 5e23de1847cfad6d73e77c751283e4110fd95cbe [file] [log] [blame]
Nick Hawkins63ff9d92022-06-08 16:21:38 -05001# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: "http://devicetree.org/schemas/spi/hpe,gxp-spi.yaml#"
5$schema: "http://devicetree.org/meta-schemas/core.yaml#"
6
7title: HPE GXP SPI Controller
8
9maintainers:
10 - Nick Hawkins <nick.hawkins@hpe.com>
11 - Jean-Marie Verdun <verdun@hpe.com>
12
13allOf:
14 - $ref: "spi-controller.yaml#"
15
16properties:
17 compatible:
18 const: mikrotik,rb4xx-spi
19
20 reg:
21 maxItems: 1
22
23required:
24 - compatible
25 - reg
26
27unevaluatedProperties: false
28
29examples:
30 - |
31 spi@c00000200{
32 compatible = "hpe,gxp-spi";
33 reg = <0xc0000200 0x80>;
34 #address-cells = <1>;
35 #size-cells = <0>;
36 };
37