Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[sfrench/cifs-2.6.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
25         esp8089: sdio_wifi@1 {
26                 compatible = "esp,esp8089";
27                 reg = <1>;
28                 esp,crystal-26M-en = <2>;
29         };
30 };