mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 13:51:44 +00:00
4da722ca19
Pretty much any node can have a status property, so it doesn't need to be in examples. Converted with the following command and removed examples with SoC and board specific splits: git grep -l -E 'status.*=.*' Documentation/devicetree/ | xargs sed -i -E '/\sstatus.*=.*"(disabled|ok|okay)/d' Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Rob Herring <robh@kernel.org>
31 lines
671 B
Plaintext
31 lines
671 B
Plaintext
mmc-card / eMMC bindings
|
|
------------------------
|
|
|
|
This documents describes the devicetree bindings for a mmc-host controller
|
|
child node describing a mmc-card / an eMMC, see "Use of Function subnodes"
|
|
in mmc.txt
|
|
|
|
Required properties:
|
|
-compatible : Must be "mmc-card"
|
|
-reg : Must be <0>
|
|
|
|
Optional properties:
|
|
-broken-hpi : Use this to indicate that the mmc-card has a broken hpi
|
|
implementation, and that hpi should not be used
|
|
|
|
Example:
|
|
|
|
&mmc2 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&mmc2_pins_a>;
|
|
vmmc-supply = <®_vcc3v3>;
|
|
bus-width = <8>;
|
|
non-removable;
|
|
|
|
mmccard: mmccard@0 {
|
|
reg = <0>;
|
|
compatible = "mmc-card";
|
|
broken-hpi;
|
|
};
|
|
};
|