brintos

brintos / linux-shallow public Read only

0
0
Text · 930 B · 3a5a448 Raw
55 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/brcm,bcm2835-sdhost.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Broadcom BCM2835 SDHOST controller8 9maintainers:10  - Stefan Wahren <stefan.wahren@i2se.com>11 12allOf:13  - $ref: mmc-controller.yaml14 15properties:16  compatible:17    const: brcm,bcm2835-sdhost18 19  reg:20    maxItems: 121 22  interrupts:23    maxItems: 124 25  clocks:26    maxItems: 127 28  dmas:29    maxItems: 130 31  dma-names:32    const: rx-tx33 34required:35  - compatible36  - reg37  - interrupts38  - clocks39 40unevaluatedProperties: false41 42examples:43  - |44    #include <dt-bindings/clock/bcm2835.h>45 46    sdhost: mmc@7e202000 {47      compatible = "brcm,bcm2835-sdhost";48      reg = <0x7e202000 0x100>;49      interrupts = <2 24>;50      clocks = <&clocks BCM2835_CLOCK_VPU>;51      dmas = <&dma 13>;52      dma-names = "rx-tx";53      bus-width = <4>;54    };55