mmc: sdhci-pxav3: Fix Armada 38x controller's caps according to erratum ERR-7878951
[deliverable/linux.git] / Documentation / devicetree / bindings / mmc / sdhci-pxa.txt
CommitLineData
b650352d
CB
1* Marvell sdhci-pxa v2/v3 controller
2
3This file documents differences between the core properties in mmc.txt
4and the properties used by the sdhci-pxav2 and sdhci-pxav3 drivers.
5
6Required properties:
5491ce3f
MW
7- compatible: Should be "mrvl,pxav2-mmc", "mrvl,pxav3-mmc" or
8 "marvell,armada-380-sdhci".
9- reg:
10 * for "mrvl,pxav2-mmc" and "mrvl,pxav3-mmc", one register area for
11 the SDHCI registers.
12 * for "marvell,armada-380-sdhci", two register areas. The first one
13 for the SDHCI registers themselves, and the second one for the
14 AXI/Mbus bridge registers of the SDHCI unit.
0654bb3c
SH
15- clocks: Array of clocks required for SDHCI; requires at least one for
16 I/O clock.
17- clock-names: Array of names corresponding to clocks property; shall be
18 "io" for I/O clock and "core" for optional core clock.
b650352d
CB
19
20Optional properties:
21- mrvl,clk-delay-cycles: Specify a number of cycles to delay for tuning.
22
23Example:
24
25sdhci@d4280800 {
26 compatible = "mrvl,pxav3-mmc";
27 reg = <0xd4280800 0x800>;
28 bus-width = <8>;
29 interrupts = <27>;
0654bb3c
SH
30 clocks = <&chip CLKID_SDIO1XIN>, <&chip CLKID_SDIO1>;
31 clock-names = "io", "core";
b650352d
CB
32 non-removable;
33 mrvl,clk-delay-cycles = <31>;
34};
5491ce3f
MW
35
36sdhci@d8000 {
37 compatible = "marvell,armada-380-sdhci";
38 reg = <0xd8000 0x1000>, <0xdc000 0x100>;
39 interrupts = <0 25 0x4>;
40 clocks = <&gateclk 17>;
0654bb3c 41 clock-names = "io";
5491ce3f
MW
42 mrvl,clk-delay-cycles = <0x1F>;
43};
This page took 0.15915 seconds and 5 git commands to generate.