arasan,sdhci.txt 1009 B

123456789101112131415161718192021222324252627
  1. Device Tree Bindings for the Arasan SDHCI Controller
  2. The bindings follow the mmc[1], clock[2] and interrupt[3] bindings. Only
  3. deviations are documented here.
  4. [1] Documentation/devicetree/bindings/mmc/mmc.txt
  5. [2] Documentation/devicetree/bindings/clock/clock-bindings.txt
  6. [3] Documentation/devicetree/bindings/interrupt-controller/interrupts.txt
  7. Required Properties:
  8. - compatible: Compatibility string. Must be 'arasan,sdhci-8.9a'
  9. - reg: From mmc bindings: Register location and length.
  10. - clocks: From clock bindings: Handles to clock inputs.
  11. - clock-names: From clock bindings: Tuple including "clk_xin" and "clk_ahb"
  12. - interrupts: Interrupt specifier
  13. - interrupt-parent: Phandle for the interrupt controller that services
  14. interrupts for this device.
  15. Example:
  16. sdhci@e0100000 {
  17. compatible = "arasan,sdhci-8.9a";
  18. reg = <0xe0100000 0x1000>;
  19. clock-names = "clk_xin", "clk_ahb";
  20. clocks = <&clkc 21>, <&clkc 32>;
  21. interrupt-parent = <&gic>;
  22. interrupts = <0 24 4>;
  23. } ;