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,dove-sdhci.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Marvell sdhci-dove controller
0008 
0009 maintainers:
0010   - Adrian Hunter <adrian.hunter@intel.com>
0011   - Ulf Hansson <ulf.hansson@linaro.org>
0012 
0013 allOf:
0014   - $ref: mmc-controller.yaml#
0015 
0016 properties:
0017   compatible:
0018     const: marvell,dove-sdhci
0019 
0020   reg:
0021     maxItems: 1
0022 
0023   interrupts:
0024     minItems: 1
0025     maxItems: 2
0026 
0027   clocks:
0028     maxItems: 1
0029 
0030 required:
0031   - compatible
0032   - reg
0033   - interrupts
0034 
0035 unevaluatedProperties: false
0036 
0037 examples:
0038   - |
0039     sdio0: mmc@92000 {
0040       compatible = "marvell,dove-sdhci";
0041       reg = <0x92000 0x100>;
0042       interrupts = <35>;
0043       clocks = <&gate_clk 9>;
0044     };