xref: /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mmc/sdhci-milbeaut.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun* SOCIONEXT Milbeaut SDHCI controller
2*4882a593Smuzhiyun
3*4882a593SmuzhiyunThis file documents differences between the core properties in mmc.txt
4*4882a593Smuzhiyunand the properties used by the sdhci_milbeaut driver.
5*4882a593Smuzhiyun
6*4882a593SmuzhiyunRequired properties:
7*4882a593Smuzhiyun- compatible: "socionext,milbeaut-m10v-sdhci-3.0"
8*4882a593Smuzhiyun- clocks: Must contain an entry for each entry in clock-names. It is a
9*4882a593Smuzhiyun  list of phandles and clock-specifier pairs.
10*4882a593Smuzhiyun  See ../clocks/clock-bindings.txt for details.
11*4882a593Smuzhiyun- clock-names: Should contain the following two entries:
12*4882a593Smuzhiyun	"iface" - clock used for sdhci interface
13*4882a593Smuzhiyun	"core"  - core clock for sdhci controller
14*4882a593Smuzhiyun
15*4882a593SmuzhiyunOptional properties:
16*4882a593Smuzhiyun- fujitsu,cmd-dat-delay-select: boolean property indicating that this host
17*4882a593Smuzhiyun  requires the CMD_DAT_DELAY control to be enabled.
18*4882a593Smuzhiyun
19*4882a593SmuzhiyunExample:
20*4882a593Smuzhiyun	sdhci3: mmc@1b010000 {
21*4882a593Smuzhiyun		compatible = "socionext,milbeaut-m10v-sdhci-3.0";
22*4882a593Smuzhiyun		reg = <0x1b010000 0x10000>;
23*4882a593Smuzhiyun		interrupts = <0 265 0x4>;
24*4882a593Smuzhiyun		voltage-ranges = <3300 3300>;
25*4882a593Smuzhiyun		bus-width = <4>;
26*4882a593Smuzhiyun		clocks = <&clk 7>, <&ahb_clk>;
27*4882a593Smuzhiyun		clock-names = "core", "iface";
28*4882a593Smuzhiyun		cap-sdio-irq;
29*4882a593Smuzhiyun		fujitsu,cmd-dat-delay-select;
30*4882a593Smuzhiyun	};
31