Nick Hawkins | 5438c0d | 2022-06-08 16:21:38 -0500 | [diff] [blame] | 1 | # 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 | |
| 7 | title: HPE GXP SPI Controller |
| 8 | |
| 9 | maintainers: |
| 10 | - Nick Hawkins <nick.hawkins@hpe.com> |
| 11 | - Jean-Marie Verdun <verdun@hpe.com> |
| 12 | |
| 13 | allOf: |
| 14 | - $ref: "spi-controller.yaml#" |
| 15 | |
| 16 | properties: |
| 17 | compatible: |
| 18 | const: mikrotik,rb4xx-spi |
| 19 | |
| 20 | reg: |
| 21 | maxItems: 1 |
| 22 | |
| 23 | required: |
| 24 | - compatible |
| 25 | - reg |
| 26 | |
| 27 | unevaluatedProperties: false |
| 28 | |
| 29 | examples: |
| 30 | - | |
| 31 | spi@c00000200{ |
| 32 | compatible = "hpe,gxp-spi"; |
| 33 | reg = <0xc0000200 0x80>; |
| 34 | #address-cells = <1>; |
| 35 | #size-cells = <0>; |
| 36 | }; |
| 37 | |