brintos

brintos / linux-shallow public Read only

0
0
Text · 2.1 KiB · 8c8ade8 Raw
93 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/atmel,sama5d2-sdhci.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Atmel SDHCI controller8 9maintainers:10  - Aubin Constans <aubin.constans@microchip.com>11  - Nicolas Ferre <nicolas.ferre@microchip.com>12 13description:14  Bindings for the SDHCI controller found in Atmel/Microchip SoCs.15 16properties:17  compatible:18    oneOf:19      - enum:20          - atmel,sama5d2-sdhci21          - microchip,sam9x60-sdhci22      - items:23          - enum:24              - microchip,sam9x7-sdhci25              - microchip,sama7g5-sdhci26          - const: microchip,sam9x60-sdhci27 28  reg:29    maxItems: 130 31  interrupts:32    maxItems: 133 34  clocks:35    items:36      - description: hclock37      - description: multclk38      - description: baseclk39    minItems: 240 41  clock-names:42    items:43      - const: hclock44      - const: multclk45      - const: baseclk46    minItems: 247 48  microchip,sdcal-inverted:49    type: boolean50    description:51      When present, polarity on the SDCAL SoC pin is inverted. The default52      polarity for this signal is described in the datasheet. For instance on53      SAMA5D2, the pin is usually tied to the GND with a resistor and a54      capacitor (see "SDMMC I/O Calibration" chapter).55 56required:57  - compatible58  - reg59  - interrupts60  - clocks61  - clock-names62 63allOf:64  - $ref: sdhci-common.yaml#65  - if:66      properties:67        compatible:68          contains:69            enum:70              - atmel,sama5d2-sdhci71    then:72      properties:73        clocks:74          minItems: 375        clock-names:76          minItems: 377 78unevaluatedProperties: false79 80examples:81  - |82    #include <dt-bindings/interrupt-controller/irq.h>83    #include <dt-bindings/clock/at91.h>84    mmc@a0000000 {85        compatible = "atmel,sama5d2-sdhci";86        reg = <0xa0000000 0x300>;87        interrupts = <31 IRQ_TYPE_LEVEL_HIGH 0>;88        clocks = <&sdmmc0_hclk>, <&sdmmc0_gclk>, <&main>;89        clock-names = "hclock", "multclk", "baseclk";90        assigned-clocks = <&sdmmc0_gclk>;91        assigned-clock-rates = <480000000>;92    };93