Merge tag 'ceph-for-4.9-rc1' of git://github.com/ceph/ceph-client
[cascardo/linux.git] / Documentation / devicetree / bindings / net / wireless / esp,esp8089.txt
1 Espressif ESP8089 wireless SDIO devices
2
3 This node provides properties for controlling the ESP8089 wireless device.
4 The node is expected to be specified as a child node to the SDIO controller
5 that connects the device to the system.
6
7 Required properties:
8
9  - compatible : Should be "esp,esp8089".
10
11 Optional properties:
12  - esp,crystal-26M-en: Integer value for the crystal_26M_en firmware parameter
13
14 Example:
15
16 &mmc1 {
17         #address-cells = <1>;
18         #size-cells = <0>;
19
20         vmmc-supply = <&reg_dldo1>;
21         mmc-pwrseq = <&wifi_pwrseq>;
22         bus-width = <4>;
23         non-removable;
24         status = "okay";
25
26         esp8089: sdio_wifi@1 {
27                 compatible = "esp,esp8089";
28                 reg = <1>;
29                 esp,crystal-26M-en = <2>;
30         };
31 };