]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - Documentation/devicetree/bindings/mmc/fsl-esdhc.txt
Merge tag 'jfs-3.12' of git://github.com/kleikamp/linux-shaggy
[mirror_ubuntu-eoan-kernel.git] / Documentation / devicetree / bindings / mmc / fsl-esdhc.txt
CommitLineData
34bcda61
AV
1* Freescale Enhanced Secure Digital Host Controller (eSDHC)
2
3The Enhanced Secure Digital Host Controller provides an interface
4for MMC, SD, and SDIO types of memory cards.
5
4efafee0
CB
6This file documents differences between the core properties described
7by mmc.txt and the properties used by the sdhci-esdhc driver.
8
34bcda61 9Required properties:
34bcda61
AV
10 - interrupt-parent : interrupt source phandle.
11 - clock-frequency : specifies eSDHC base clock frequency.
4efafee0
CB
12
13Optional properties:
14 - sdhci,wp-inverted : specifies that eSDHC controller reports
15 inverted write-protect state; New devices should use the generic
16 "wp-inverted" property.
17 - sdhci,1-bit-only : specifies that a controller can only handle
18 1-bit data transfers. New devices should use the generic
19 "bus-width = <1>" property.
20 - sdhci,auto-cmd12: specifies that a controller can only handle auto
21 CMD12.
6e9e318b
HZ
22 - voltage-ranges : two cells are required, first cell specifies minimum
23 slot voltage (mV), second cell specifies maximum slot voltage (mV).
24 Several ranges could be specified.
34bcda61
AV
25
26Example:
27
28sdhci@2e000 {
40461472 29 compatible = "fsl,mpc8378-esdhc", "fsl,esdhc";
34bcda61
AV
30 reg = <0x2e000 0x1000>;
31 interrupts = <42 0x8>;
32 interrupt-parent = <&ipic>;
33 /* Filled in by U-Boot */
34 clock-frequency = <0>;
6e9e318b 35 voltage-ranges = <3300 3300>;
34bcda61 36};