@@ -12,11 +12,13 @@ Required properties:
- vmmc-supply : phandle to the regulator device tree node.
Optional properties:
-- mmc-cap-mmc-highspeed : indicates whether MMC is high speed capable.
-- mmc-cap-sd-highspeed : indicates whether SD is high speed capable.
- vqmmc-supply : phandle to the regulator device tree node.
- signal-direction : a bit pattern, indicating bus signals directions.
+Deprecated properties:
+- mmc-cap-mmc-highspeed : indicates whether MMC is high speed capable.
+- mmc-cap-sd-highspeed : indicates whether SD is high speed capable.
+
Example:
sdi0_per1@80126000 {
@@ -34,8 +36,8 @@ sdi0_per1@80126000 {
max-frequency = <100000000>;
bus-width = <4>;
- mmc-cap-sd-highspeed;
- mmc-cap-mmc-highspeed;
+ cap-sd-highspeed;
+ cap-mmc-highspeed;
cd-gpios = <&gpio2 31 0x4>; // 95
signal-direction = <(MCI_ST_DATA2DIREN | MCI_ST_CMDDIREN |
The common mmc DT parser supports bindings for highspeed mode, thus there are no need for mmci to provide it's own versions for these. Mark them as deprecated in the documentation. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> --- Documentation/devicetree/bindings/mmc/mmci.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-)