1*d5b0e70fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*d5b0e70fSEmmanuel Vadot%YAML 1.2 3*d5b0e70fSEmmanuel Vadot--- 4*d5b0e70fSEmmanuel Vadot$id: http://devicetree.org/schemas/mmc/marvell,orion-sdio.yaml# 5*d5b0e70fSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*d5b0e70fSEmmanuel Vadot 7*d5b0e70fSEmmanuel Vadottitle: Marvell orion-sdio controller 8*d5b0e70fSEmmanuel Vadot 9*d5b0e70fSEmmanuel Vadotmaintainers: 10*d5b0e70fSEmmanuel Vadot - Nicolas Pitre <nico@fluxnic.net> 11*d5b0e70fSEmmanuel Vadot - Ulf Hansson <ulf.hansson@linaro.org> 12*d5b0e70fSEmmanuel Vadot 13*d5b0e70fSEmmanuel VadotallOf: 14*d5b0e70fSEmmanuel Vadot - $ref: mmc-controller.yaml# 15*d5b0e70fSEmmanuel Vadot 16*d5b0e70fSEmmanuel Vadotproperties: 17*d5b0e70fSEmmanuel Vadot compatible: 18*d5b0e70fSEmmanuel Vadot const: marvell,orion-sdio 19*d5b0e70fSEmmanuel Vadot 20*d5b0e70fSEmmanuel Vadot reg: 21*d5b0e70fSEmmanuel Vadot maxItems: 1 22*d5b0e70fSEmmanuel Vadot 23*d5b0e70fSEmmanuel Vadot interrupts: 24*d5b0e70fSEmmanuel Vadot maxItems: 1 25*d5b0e70fSEmmanuel Vadot 26*d5b0e70fSEmmanuel Vadot clocks: 27*d5b0e70fSEmmanuel Vadot maxItems: 1 28*d5b0e70fSEmmanuel Vadot 29*d5b0e70fSEmmanuel Vadotrequired: 30*d5b0e70fSEmmanuel Vadot - compatible 31*d5b0e70fSEmmanuel Vadot - reg 32*d5b0e70fSEmmanuel Vadot - interrupts 33*d5b0e70fSEmmanuel Vadot - clocks 34*d5b0e70fSEmmanuel Vadot 35*d5b0e70fSEmmanuel VadotunevaluatedProperties: false 36*d5b0e70fSEmmanuel Vadot 37*d5b0e70fSEmmanuel Vadotexamples: 38*d5b0e70fSEmmanuel Vadot - | 39*d5b0e70fSEmmanuel Vadot mmc@d00d4000 { 40*d5b0e70fSEmmanuel Vadot compatible = "marvell,orion-sdio"; 41*d5b0e70fSEmmanuel Vadot reg = <0xd00d4000 0x200>; 42*d5b0e70fSEmmanuel Vadot interrupts = <54>; 43*d5b0e70fSEmmanuel Vadot clocks = <&gateclk 17>; 44*d5b0e70fSEmmanuel Vadot }; 45