Documentation / devicetree / bindings / mmc / socionext,milbeaut-m10v-sdhci-3.0.yaml


Based on kernel version 6.19. Page generated on 2026-02-12 08:38 EST.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/mmc/socionext,milbeaut-m10v-sdhci-3.0.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: SOCIONEXT Milbeaut SDHCI controller

maintainers:
  - Taichi Sugaya <sugaya.taichi@socionext.com>
  - Takao Orito <orito.takao@socionext.com>

description:
  The SOCIONEXT Milbeaut SDHCI controller is a specialized SD Host
  Controller found in some of Socionext's Milbeaut image processing SoCs.
  It features a dedicated "bridge controller." This bridge controller
  implements special functions like reset control, clock management for
  various SDR modes (SDR12, SDR25, SDR50) and physical pin property settings.

allOf:
  - $ref: sdhci-common.yaml#

properties:
  compatible:
    const: socionext,milbeaut-m10v-sdhci-3.0

  reg:
    maxItems: 1

  interrupts:
    maxItems: 1

  clocks:
    maxItems: 2

  clock-names:
    items:
      - const: core
      - const: iface

  fujitsu,cmd-dat-delay-select:
    description:
      Its presence indicates that the controller requires a specific command
      and data line delay selection mechanism for proper operation, particularly
      when dealing with high-speed SD/eMMC modes.
    type: boolean

  voltage-ranges:
    $ref: /schemas/types.yaml#/definitions/uint32-matrix
    items:
      items:
        - description: minimum slot voltage (mV).
        - description: maximum slot voltage (mV).
    maxItems: 1

required:
  - compatible
  - reg
  - interrupts
  - clocks
  - clock-names

unevaluatedProperties: false

examples:
  - |
    #include <dt-bindings/interrupt-controller/arm-gic.h>
    mmc@1b010000 {
        compatible = "socionext,milbeaut-m10v-sdhci-3.0";
        reg = <0x1b010000 0x10000>;
        interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>;
        voltage-ranges = <3300 3300>;
        bus-width = <4>;
        clocks = <&clk 7>, <&ahb_clk>;
        clock-names = "core", "iface";
        cap-sdio-irq;
        fujitsu,cmd-dat-delay-select;
    };
...