mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 21:33:00 +00:00
4da722ca19
Pretty much any node can have a status property, so it doesn't need to be in examples. Converted with the following command and removed examples with SoC and board specific splits: git grep -l -E 'status.*=.*' Documentation/devicetree/ | xargs sed -i -E '/\sstatus.*=.*"(disabled|ok|okay)/d' Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Rob Herring <robh@kernel.org>
24 lines
603 B
Plaintext
24 lines
603 B
Plaintext
* Freescale Secure Digital Host Controller for i.MX2/3 series
|
|
|
|
This file documents differences to the properties defined in mmc.txt.
|
|
|
|
Required properties:
|
|
- compatible : Should be "fsl,<chip>-mmc", chip can be imx21 or imx31
|
|
|
|
Optional properties:
|
|
- dmas: One DMA phandle with arguments as defined by the devicetree bindings
|
|
of the used DMA controller.
|
|
- dma-names: Has to be "rx-tx".
|
|
|
|
Example:
|
|
|
|
sdhci1: sdhci@10014000 {
|
|
compatible = "fsl,imx27-mmc", "fsl,imx21-mmc";
|
|
reg = <0x10014000 0x1000>;
|
|
interrupts = <11>;
|
|
dmas = <&dma 7>;
|
|
dma-names = "rx-tx";
|
|
bus-width = <4>;
|
|
cd-gpios = <&gpio3 29>;
|
|
};
|