SDIO ベースの Wi-Fi モジュールがあり、Zynq Petalinux で使用するためにプレイしています。したがって、デバイス ツリーには SDIO1 インターフェイスがあり、さらに固定レギュレータがあります。しかし、Linux でこの SDIO1 インターフェイスを Wi-Fi に使用する方法がわかりませんでした。
Linux が RTC に 1 つの I2C デバイスを使用するには、何かをエコーする必要があることを覚えています。では、ここは似ていますか?
ここに私のデバイスツリーがあります:
wlcore {
compatible = "wlcore";
interrupt-parent = <&intc>;
irq = <0x0>;
platform-quirks = <0x1>;
board-ref-clock = <0x4>;
};
fixedregulator@1 {
compatible = "regulator-fixed";
regulator-name = "wlan-en-regulator";
regulator-min-microvolt = <0x325aa0>;
regulator-max-microvolt = <0x325aa0>;
/* WLAN_EN GPIO for this board - Bank1, pin9, what does 4 mean? */
gpio = <&gpio0 0x9 0x4>;
startup-delay-us = <0x11170>;
enable-active-high;
linux,phandle = <0x6>;
phandle = <0x6>;
};
};
&sdhci1{
xlnx,has-cd = <0x1>;
xlnx,has-power = <0x0>;
xlnx,has-wp = <0x0>;
vmmc-supply = <0x6>;
cap-power-off-card;
status = "okay";
compatible = "arasan,sdhci-8.9a";
clock-names = "clk_xin", "clk_ahb";
clocks = <&clkc 22>, <&clkc 33>;
interrupt-parent = <&intc>;
interrupts = <0 47 4>;
reg = <0xe0101000 0x1000>;
};
質問
この SDIO1 を Wi-Fi に使用するように Linux に指示するにはどうすればよいですか?