esp,esp8089.txt 674 B

12345678910111213141516171819202122232425262728293031
  1. Espressif ESP8089 wireless SDIO devices
  2. This node provides properties for controlling the ESP8089 wireless device.
  3. The node is expected to be specified as a child node to the SDIO controller
  4. that connects the device to the system.
  5. Required properties:
  6. - compatible : Should be "esp,esp8089".
  7. Optional properties:
  8. - esp,crystal-26M-en: Integer value for the crystal_26M_en firmware parameter
  9. Example:
  10. &mmc1 {
  11. #address-cells = <1>;
  12. #size-cells = <0>;
  13. vmmc-supply = <&reg_dldo1>;
  14. mmc-pwrseq = <&wifi_pwrseq>;
  15. bus-width = <4>;
  16. non-removable;
  17. status = "okay";
  18. esp8089: sdio_wifi@1 {
  19. compatible = "esp,esp8089";
  20. reg = <1>;
  21. esp,crystal-26M-en = <2>;
  22. };
  23. };