mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-15 20:36:11 +07:00
4da722ca19
Pretty much any node can have a status property, so it doesn't need to be in examples. Converted with the following command and removed examples with SoC and board specific splits: git grep -l -E 'status.*=.*' Documentation/devicetree/ | xargs sed -i -E '/\sstatus.*=.*"(disabled|ok|okay)/d' Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Rob Herring <robh@kernel.org>
31 lines
656 B
Plaintext
31 lines
656 B
Plaintext
Espressif ESP8089 wireless SDIO devices
|
|
|
|
This node provides properties for controlling the ESP8089 wireless device.
|
|
The node is expected to be specified as a child node to the SDIO controller
|
|
that connects the device to the system.
|
|
|
|
Required properties:
|
|
|
|
- compatible : Should be "esp,esp8089".
|
|
|
|
Optional properties:
|
|
- esp,crystal-26M-en: Integer value for the crystal_26M_en firmware parameter
|
|
|
|
Example:
|
|
|
|
&mmc1 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
vmmc-supply = <®_dldo1>;
|
|
mmc-pwrseq = <&wifi_pwrseq>;
|
|
bus-width = <4>;
|
|
non-removable;
|
|
|
|
esp8089: sdio_wifi@1 {
|
|
compatible = "esp,esp8089";
|
|
reg = <1>;
|
|
esp,crystal-26M-en = <2>;
|
|
};
|
|
};
|