ti,wlcore.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. TI Wilink 6/7/8 (wl12xx/wl18xx) SDIO devices
  2. This node provides properties for controlling the wilink wireless device. The
  3. node is expected to be specified as a child node to the SDIO controller that
  4. connects the device to the system.
  5. Required properties:
  6. - compatible: should be one of the following:
  7. * "ti,wl1271"
  8. * "ti,wl1273"
  9. * "ti,wl1281"
  10. * "ti,wl1283"
  11. * "ti,wl1801"
  12. * "ti,wl1805"
  13. * "ti,wl1807"
  14. * "ti,wl1831"
  15. * "ti,wl1835"
  16. * "ti,wl1837"
  17. - interrupts : specifies attributes for the out-of-band interrupt.
  18. Optional properties:
  19. - interrupt-parent : the phandle for the interrupt controller to which the
  20. device interrupts are connected.
  21. - ref-clock-frequency : ref clock frequency in Hz
  22. - tcxo-clock-frequency : tcxo clock frequency in Hz
  23. Note: the *-clock-frequency properties assume internal clocks. In case of external
  24. clock, new bindings (for parsing the clock nodes) have to be added.
  25. Example:
  26. &mmc3 {
  27. status = "okay";
  28. vmmc-supply = <&wlan_en_reg>;
  29. bus-width = <4>;
  30. cap-power-off-card;
  31. keep-power-in-suspend;
  32. #address-cells = <1>;
  33. #size-cells = <0>;
  34. wlcore: wlcore@2 {
  35. compatible = "ti,wl1835";
  36. reg = <2>;
  37. interrupt-parent = <&gpio0>;
  38. interrupts = <19 IRQ_TYPE_LEVEL_HIGH>;
  39. };
  40. };