blob: ed271fc255b23c5d3595f1a1725687cb74d077be [file] [log] [blame]
Rajendra Nayak46856a62012-03-12 20:32:37 +05301* TI Highspeed MMC host controller for OMAP
2
3The Highspeed MMC Host Controller on TI OMAP family
4provides an interface for MMC, SD, and SDIO types of memory cards.
5
Chris Ball4efafee2012-06-11 21:48:16 -04006This file documents differences between the core properties described
7by mmc.txt and the properties used by the omap_hsmmc driver.
8
Rajendra Nayak46856a62012-03-12 20:32:37 +05309Required properties:
10- compatible:
11 Should be "ti,omap2-hsmmc", for OMAP2 controllers
12 Should be "ti,omap3-hsmmc", for OMAP3 controllers
13 Should be "ti,omap4-hsmmc", for OMAP4 controllers
14- ti,hwmods: Must be "mmc<n>", n is controller instance starting 1
Rajendra Nayak46856a62012-03-12 20:32:37 +053015
16Optional properties:
17ti,dual-volt: boolean, supports dual voltage cards
18<supply-name>-supply: phandle to the regulator device tree node
19"supply-name" examples are "vmmc", "vmmc_aux" etc
Rajendra Nayak46856a62012-03-12 20:32:37 +053020ti,non-removable: non-removable slot (like eMMC)
21ti,needs-special-reset: Requires a special softreset sequence
Hebbar, Gururajacd587092012-11-19 21:59:58 +053022ti,needs-special-hs-handling: HSMMC IP needs special setting for handling High Speed
Rajendra Nayak46856a62012-03-12 20:32:37 +053023
24Example:
25 mmc1: mmc@0x4809c000 {
26 compatible = "ti,omap4-hsmmc";
27 reg = <0x4809c000 0x400>;
28 ti,hwmods = "mmc1";
29 ti,dual-volt;
Arnd Bergmann7f217792012-05-13 00:14:24 -040030 bus-width = <4>;
Rajendra Nayak46856a62012-03-12 20:32:37 +053031 vmmc-supply = <&vmmc>; /* phandle to regulator node */
32 ti,non-removable;
33 };