1*7d0873ebSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*7d0873ebSEmmanuel Vadot%YAML 1.2 3*7d0873ebSEmmanuel Vadot--- 4*7d0873ebSEmmanuel Vadot$id: http://devicetree.org/schemas/ata/fsl,imx-pata.yaml# 5*7d0873ebSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*7d0873ebSEmmanuel Vadot 7*7d0873ebSEmmanuel Vadottitle: Freescale i.MX PATA Controller 8*7d0873ebSEmmanuel Vadot 9*7d0873ebSEmmanuel Vadotmaintainers: 10*7d0873ebSEmmanuel Vadot - Animesh Agarwal <animeshagarwal28@gmail.com> 11*7d0873ebSEmmanuel Vadot 12*7d0873ebSEmmanuel Vadotproperties: 13*7d0873ebSEmmanuel Vadot compatible: 14*7d0873ebSEmmanuel Vadot oneOf: 15*7d0873ebSEmmanuel Vadot - items: 16*7d0873ebSEmmanuel Vadot - enum: 17*7d0873ebSEmmanuel Vadot - fsl,imx31-pata 18*7d0873ebSEmmanuel Vadot - fsl,imx51-pata 19*7d0873ebSEmmanuel Vadot - const: fsl,imx27-pata 20*7d0873ebSEmmanuel Vadot - const: fsl,imx27-pata 21*7d0873ebSEmmanuel Vadot 22*7d0873ebSEmmanuel Vadot reg: 23*7d0873ebSEmmanuel Vadot maxItems: 1 24*7d0873ebSEmmanuel Vadot 25*7d0873ebSEmmanuel Vadot interrupts: 26*7d0873ebSEmmanuel Vadot items: 27*7d0873ebSEmmanuel Vadot - description: PATA Controller interrupts 28*7d0873ebSEmmanuel Vadot 29*7d0873ebSEmmanuel Vadot clocks: 30*7d0873ebSEmmanuel Vadot items: 31*7d0873ebSEmmanuel Vadot - description: PATA Controller clocks 32*7d0873ebSEmmanuel Vadot 33*7d0873ebSEmmanuel VadotadditionalProperties: false 34*7d0873ebSEmmanuel Vadot 35*7d0873ebSEmmanuel Vadotexamples: 36*7d0873ebSEmmanuel Vadot - | 37*7d0873ebSEmmanuel Vadot pata: pata@83fe0000 { 38*7d0873ebSEmmanuel Vadot compatible = "fsl,imx51-pata", "fsl,imx27-pata"; 39*7d0873ebSEmmanuel Vadot reg = <0x83fe0000 0x4000>; 40*7d0873ebSEmmanuel Vadot interrupts = <70>; 41*7d0873ebSEmmanuel Vadot clocks = <&clks 161>; 42*7d0873ebSEmmanuel Vadot }; 43