diff options
author | Tom Rini <trini@konsulko.com> | 2019-04-18 12:12:16 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-04-18 12:12:16 -0400 |
commit | 1f4ae66eaab29bfb5d1eb44996f7826c9cd01ed1 (patch) | |
tree | b65f730ba946fa3518b96ccfd374c7661e7db39c /doc | |
parent | 36c97c4db71769bb11bd1f130f1442e4122728a8 (diff) | |
parent | cc2f7b6c7d7d5adeedecdb6c0599998b2e40b3f4 (diff) | |
download | u-boot-1f4ae66eaab29bfb5d1eb44996f7826c9cd01ed1.tar.gz |
Merge tag 'arc-for-2019.07' of git://git.denx.de/u-boot-arc
In this small series we migrate ARC boards to DM_MMC
so we're hopefully are good now and our boards will be kept
in U-Boot for some more time :)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/device-tree-bindings/mmc/snps,dw-mmc.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/mmc/snps,dw-mmc.txt b/doc/device-tree-bindings/mmc/snps,dw-mmc.txt new file mode 100644 index 0000000000..69faefa95e --- /dev/null +++ b/doc/device-tree-bindings/mmc/snps,dw-mmc.txt @@ -0,0 +1,33 @@ +Synopsys Designware Mobile Storage Host Controller extensions +used in Synopsys ARC devboards + +Required Properties: + +* compatible: should be - "snps,dw-mshc". +* bus-width: number of data lines connected to the controller. +* clocks: from common clock binding: handle to biu and ciu clocks for the + bus interface unit clock and the card interface unit clock. +* clock-names: from common clock binding: Shall be "biu" and "ciu". + +Optional properties: + +* fifo-depth: The maximum size of the tx/rx fifo's. If this property is not + specified, the default value of the fifo size is determined from the + controller registers. +* fifo-mode: Don't use DMA. +* max-frequency: Maximum operating clock frequency, driver uses 'ciu' clock + frequency if it is not set. + +Example: + +mmc0@f000a000 { + compatible = "snps,dw-mshc"; + reg = <0xf000a000 0x400>; + + bus-width = <4>; + fifo-depth = <256>; + clocks = <&mmcclk_biu>, <&mmcclk_ciu>; + clock-names = "biu", "ciu"; + max-frequency = <25000000>; +}; + |