1* Hisilicon specific extensions to the Synopsys Designware Mobile
2  Storage Host Controller
3
4Read synopsys-dw-mshc.txt for more details
5
6The Synopsys designware mobile storage host controller is used to interface
7a SoC with storage medium such as eMMC or SD/MMC cards. This file documents
8differences between the core Synopsys dw mshc controller properties described
9by synopsys-dw-mshc.txt and the properties used by the Hisilicon specific
10extensions to the Synopsys Designware Mobile Storage Host Controller.
11
12Required Properties:
13
14* compatible: should be one of the following.
15  - "hisilicon,hi4511-dw-mshc": for controllers with hi4511 specific extensions.
16
17Example:
18
19	/* for Hi3620 */
20
21	/* SoC portion */
22	dwmmc_0: dwmmc0@fcd03000 {
23		compatible = "hisilicon,hi4511-dw-mshc";
24		reg = <0xfcd03000 0x1000>;
25		interrupts = <0 16 4>;
26		#address-cells = <1>;
27		#size-cells = <0>;
28		clocks = <&mmc_clock HI3620_SD_CIUCLK>, <&clock HI3620_DDRC_PER_CLK>;
29		clock-names = "ciu", "biu";
30	};
31
32	/* Board portion */
33	dwmmc0@fcd03000 {
34		num-slots = <1>;
35		vmmc-supply = <&ldo12>;
36		fifo-depth = <0x100>;
37		pinctrl-names = "default";
38		pinctrl-0 = <&sd_pmx_pins &sd_cfg_func1 &sd_cfg_func2>;
39		bus-width = <4>;
40		disable-wp;
41		cd-gpios = <&gpio10 3 0>;
42		cap-mmc-highspeed;
43		cap-sd-highspeed;
44	};
45