Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mmc: sdhci-pxav3: Document clocks and additional clock-names property

Now that sdhci-pxav3 driver allows to have more than one IP clock defined,
document both clocks and clock-names properties.

Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

authored by

Sebastian Hesselbarth and committed by
Ulf Hansson
0654bb3c 8afdc9cc

+7
+7
Documentation/devicetree/bindings/mmc/sdhci-pxa.txt
··· 12 12 * for "marvell,armada-380-sdhci", two register areas. The first one 13 13 for the SDHCI registers themselves, and the second one for the 14 14 AXI/Mbus bridge registers of the SDHCI unit. 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. 15 19 16 20 Optional properties: 17 21 - mrvl,clk-delay-cycles: Specify a number of cycles to delay for tuning. ··· 27 23 reg = <0xd4280800 0x800>; 28 24 bus-width = <8>; 29 25 interrupts = <27>; 26 + clocks = <&chip CLKID_SDIO1XIN>, <&chip CLKID_SDIO1>; 27 + clock-names = "io", "core"; 30 28 non-removable; 31 29 mrvl,clk-delay-cycles = <31>; 32 30 }; ··· 38 32 reg = <0xd8000 0x1000>, <0xdc000 0x100>; 39 33 interrupts = <0 25 0x4>; 40 34 clocks = <&gateclk 17>; 35 + clock-names = "io"; 41 36 mrvl,clk-delay-cycles = <0x1F>; 42 37 };