mmc-card.txt 689 B

12345678910111213141516171819202122232425262728293031
  1. mmc-card / eMMC bindings
  2. ------------------------
  3. This documents describes the devicetree bindings for a mmc-host controller
  4. child node describing a mmc-card / an eMMC, see "Use of Function subnodes"
  5. in mmc.txt
  6. Required properties:
  7. -compatible : Must be "mmc-card"
  8. -reg : Must be <0>
  9. Optional properties:
  10. -broken-hpi : Use this to indicate that the mmc-card has a broken hpi
  11. implementation, and that hpi should not be used
  12. Example:
  13. &mmc2 {
  14. pinctrl-names = "default";
  15. pinctrl-0 = <&mmc2_pins_a>;
  16. vmmc-supply = <&reg_vcc3v3>;
  17. bus-width = <8>;
  18. non-removable;
  19. status = "okay";
  20. mmccard: mmccard@0 {
  21. reg = <0>;
  22. compatible = "mmc-card";
  23. broken-hpi;
  24. };
  25. };