sdhci-pxa.txt 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. * Marvell sdhci-pxa v2/v3 controller
  2. This file documents differences between the core properties in mmc.txt
  3. and the properties used by the sdhci-pxav2 and sdhci-pxav3 drivers.
  4. Required properties:
  5. - compatible: Should be "mrvl,pxav2-mmc", "mrvl,pxav3-mmc" or
  6. "marvell,armada-380-sdhci".
  7. - reg:
  8. * for "mrvl,pxav2-mmc" and "mrvl,pxav3-mmc", one register area for
  9. the SDHCI registers.
  10. * for "marvell,armada-380-sdhci", two register areas. The first one
  11. for the SDHCI registers themselves, and the second one for the
  12. AXI/Mbus bridge registers of the SDHCI unit.
  13. Optional properties:
  14. - mrvl,clk-delay-cycles: Specify a number of cycles to delay for tuning.
  15. Example:
  16. sdhci@d4280800 {
  17. compatible = "mrvl,pxav3-mmc";
  18. reg = <0xd4280800 0x800>;
  19. bus-width = <8>;
  20. interrupts = <27>;
  21. non-removable;
  22. mrvl,clk-delay-cycles = <31>;
  23. };
  24. sdhci@d8000 {
  25. compatible = "marvell,armada-380-sdhci";
  26. reg = <0xd8000 0x1000>, <0xdc000 0x100>;
  27. interrupts = <0 25 0x4>;
  28. clocks = <&gateclk 17>;
  29. mrvl,clk-delay-cycles = <0x1F>;
  30. };