brintos

brintos / linux-shallow public Read only

0
0
Text · 747 B · 196fdbf Raw
46 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/mmc/npcm,sdhci.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: NPCM SDHCI Controller8 9maintainers:10  - Tomer Maimon <tmaimon77@gmail.com>11 12allOf:13  - $ref: mmc-controller.yaml#14 15properties:16  compatible:17    enum:18      - nuvoton,npcm750-sdhci19      - nuvoton,npcm845-sdhci20 21  reg:22    maxItems: 123 24  interrupts:25    maxItems: 126 27  clocks:28    maxItems: 129 30required:31  - compatible32  - reg33  - interrupts34  - clocks35 36unevaluatedProperties: false37 38examples:39  - |40    mmc@f0840000 {41      compatible = "nuvoton,npcm750-sdhci";42      reg = <0xf0840000 0x200>;43      interrupts = <0 27 4>;44      clocks = <&clk 4>;45    };46