Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / Documentation / devicetree / bindings / mmc / ti-omap-hsmmc.txt
blobbe76a23b34c408133bb1d397c2c3395cac59c66a
1 * TI Highspeed MMC host controller for OMAP
3 The Highspeed MMC Host Controller on TI OMAP family
4 provides an interface for MMC, SD, and SDIO types of memory cards.
6 This file documents differences between the core properties described
7 by mmc.txt and the properties used by the omap_hsmmc driver.
9 Required 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
16 Optional properties:
17 ti,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
20 ti,non-removable: non-removable slot (like eMMC)
21 ti,needs-special-reset: Requires a special softreset sequence
23 Example:
24         mmc1: mmc@0x4809c000 {
25                 compatible = "ti,omap4-hsmmc";
26                 reg = <0x4809c000 0x400>;
27                 ti,hwmods = "mmc1";
28                 ti,dual-volt;
29                 bus-width = <4>;
30                 vmmc-supply = <&vmmc>; /* phandle to regulator node */
31                 ti,non-removable;
32         };