1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/mmc/fujitsu,sdhci-fujitsu.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Fujitsu SDHCI controller (F_SDH30)
8
9maintainers:
10  - Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
11
12allOf:
13  - $ref: mmc-controller.yaml#
14
15properties:
16  compatible:
17    const: fujitsu,mb86s70-sdhci-3.0
18
19  reg:
20    maxItems: 1
21
22  clocks:
23    maxItems: 2
24
25  clock-names:
26    items:
27      - const: iface
28      - const: core
29
30  resets:
31    maxItems: 1
32
33  fujitsu,cmd-dat-delay-select:
34    type: boolean
35    description: |
36      Indicating that this host requires the CMD_DAT_DELAY control to be enabled
37
38unevaluatedProperties: false
39
40required:
41  - compatible
42  - reg
43  - clocks
44  - clock-names
45
46examples:
47  - |
48    sdhci1: mmc@36600000 {
49        compatible = "fujitsu,mb86s70-sdhci-3.0";
50        reg = <0x36600000 0x1000>;
51        bus-width = <4>;
52        vqmmc-supply = <&vccq_sdhci1>;
53        clocks = <&clock 2 2 0>, <&clock 2 3 0>;
54        clock-names = "iface", "core";
55    };
56