| Anton Vorontsov | 34bcda6 | 2009-02-05 22:04:47 +0300 | [diff] [blame] | 1 | * Freescale Enhanced Secure Digital Host Controller (eSDHC) | 
|  | 2 |  | 
|  | 3 | The Enhanced Secure Digital Host Controller provides an interface | 
|  | 4 | for MMC, SD, and SDIO types of memory cards. | 
|  | 5 |  | 
|  | 6 | Required properties: | 
|  | 7 | - compatible : should be | 
| Kumar Gala | 4046147 | 2009-05-08 08:47:45 -0500 | [diff] [blame] | 8 | "fsl,<chip>-esdhc", "fsl,esdhc" | 
| Anton Vorontsov | 34bcda6 | 2009-02-05 22:04:47 +0300 | [diff] [blame] | 9 | - reg : should contain eSDHC registers location and length. | 
|  | 10 | - interrupts : should contain eSDHC interrupt. | 
|  | 11 | - interrupt-parent : interrupt source phandle. | 
|  | 12 | - clock-frequency : specifies eSDHC base clock frequency. | 
| Anton Vorontsov | 50dfe70 | 2009-09-22 16:45:14 -0700 | [diff] [blame] | 13 | - sdhci,wp-inverted : (optional) specifies that eSDHC controller | 
|  | 14 | reports inverted write-protect state; | 
| Anton Vorontsov | 5fe23c7 | 2009-06-18 00:14:08 +0400 | [diff] [blame] | 15 | - sdhci,1-bit-only : (optional) specifies that a controller can | 
|  | 16 | only handle 1-bit data transfers. | 
| Anton Vorontsov | 34bcda6 | 2009-02-05 22:04:47 +0300 | [diff] [blame] | 17 |  | 
|  | 18 | Example: | 
|  | 19 |  | 
|  | 20 | sdhci@2e000 { | 
| Kumar Gala | 4046147 | 2009-05-08 08:47:45 -0500 | [diff] [blame] | 21 | compatible = "fsl,mpc8378-esdhc", "fsl,esdhc"; | 
| Anton Vorontsov | 34bcda6 | 2009-02-05 22:04:47 +0300 | [diff] [blame] | 22 | reg = <0x2e000 0x1000>; | 
|  | 23 | interrupts = <42 0x8>; | 
|  | 24 | interrupt-parent = <&ipic>; | 
|  | 25 | /* Filled in by U-Boot */ | 
|  | 26 | clock-frequency = <0>; | 
|  | 27 | }; |