From 3f4d1d65aa4b7bc13549debef5b7ca871aaa1d9d Mon Sep 17 00:00:00 2001 From: Nikita Shubin Date: Sat, 19 Nov 2022 11:35:39 +0300 Subject: [PATCH] dt-bindings: ata: Add DT bindings ep93xx pata Add YAML bindings ep93xx SoC. Signed-off-by: Nikita Shubin --- .../bindings/ata/cirrus,ep93xx-pata.yml | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Documentation/devicetree/bindings/ata/cirrus,ep93xx-pata.yml diff --git a/Documentation/devicetree/bindings/ata/cirrus,ep93xx-pata.yml b/Documentation/devicetree/bindings/ata/cirrus,ep93xx-pata.yml new file mode 100644 index 0000000000000..9af946d3e0bf3 --- /dev/null +++ b/Documentation/devicetree/bindings/ata/cirrus,ep93xx-pata.yml @@ -0,0 +1,39 @@ +# SPDX-License-Identifier: GPL-2.0 +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/ata/cirrus,ep93xx-pata.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: EP93XX PATA controller driver + +maintainers: + - Damien Le Moal + +properties: + compatible: + const: cirrus,ep93xx-pata + + reg: + maxItems: 1 + + interrupts: + maxItems: 1 + +required: + - compatible + - reg + - interrupts + +additionalProperties: false + +examples: + - | + ide@800a0000 { + compatible = "cirrus,ep93xx-pata"; + reg = <0x800a0000 0x38>; + interrupt-parent = <&vic1>; + interrupts = <8>; + pinctrl-names = "default"; + pinctrl-0 = <&ide_default_pins>; + }; + -- 2.30.2