Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/mmc/marvell,orion-sdio.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Marvell orion-sdio controller
0008 
0009 maintainers:
0010   - Nicolas Pitre <nico@fluxnic.net>
0011   - Ulf Hansson <ulf.hansson@linaro.org>
0012 
0013 allOf:
0014   - $ref: mmc-controller.yaml#
0015 
0016 properties:
0017   compatible:
0018     const: marvell,orion-sdio
0019 
0020   reg:
0021     maxItems: 1
0022 
0023   interrupts:
0024     maxItems: 1
0025 
0026   clocks:
0027     maxItems: 1
0028 
0029 required:
0030   - compatible
0031   - reg
0032   - interrupts
0033   - clocks
0034 
0035 unevaluatedProperties: false
0036 
0037 examples:
0038   - |
0039     mmc@d00d4000 {
0040       compatible = "marvell,orion-sdio";
0041       reg = <0xd00d4000 0x200>;
0042       interrupts = <54>;
0043       clocks = <&gateclk 17>;
0044     };