mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
07255f2816
Since sdhci-iproc can support bcm2835 we need add the compatible string to the binding. Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> Acked-by: Scott Branden <sbranden@broadcom.com> Acked-by: Eric Anholt <eric@anholt.net> Acked-by: Rob Herring <robh@kernel.org> Acked-by: Scott Branden <sbranden@broadcom.com> Acked-by: Stephen Warren <swarren@wwwdotorg.org> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
27 lines
711 B
Plaintext
27 lines
711 B
Plaintext
Broadcom IPROC SDHCI controller
|
|
|
|
This file documents differences between the core properties described
|
|
by mmc.txt and the properties that represent the IPROC SDHCI controller.
|
|
|
|
Required properties:
|
|
- compatible : Should be one of the following
|
|
"brcm,bcm2835-sdhci"
|
|
"brcm,sdhci-iproc-cygnus"
|
|
|
|
- clocks : The clock feeding the SDHCI controller.
|
|
|
|
Optional properties:
|
|
- sdhci,auto-cmd12: specifies that controller should use auto CMD12.
|
|
|
|
Example:
|
|
|
|
sdhci0: sdhci@0x18041000 {
|
|
compatible = "brcm,sdhci-iproc-cygnus";
|
|
reg = <0x18041000 0x100>;
|
|
interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&lcpll0_clks BCM_CYGNUS_LCPLL0_SDIO_CLK>;
|
|
bus-width = <4>;
|
|
sdhci,auto-cmd12;
|
|
no-1-8-v;
|
|
};
|