0001 // SPDX-License-Identifier: GPL-2.0
0002
0003 / {
0004 wifi_pwrseq: wifi-pwrseq {
0005 compatible = "mmc-pwrseq-simple";
0006 };
0007 };
0008
0009 /* SDHCI is used to control the SDIO for wireless */
0010 &sdhci {
0011 #address-cells = <1>;
0012 #size-cells = <0>;
0013 pinctrl-names = "default";
0014 pinctrl-0 = <&emmc_gpio34>;
0015 bus-width = <4>;
0016 non-removable;
0017 mmc-pwrseq = <&wifi_pwrseq>;
0018 status = "okay";
0019
0020 brcmf: wifi@1 {
0021 reg = <1>;
0022 compatible = "brcm,bcm4329-fmac";
0023 };
0024 };
0025
0026 /* uart0 communicates with the BT module */
0027 &uart0 {
0028 status = "okay";
0029
0030 bt: bluetooth {
0031 compatible = "brcm,bcm43438-bt";
0032 max-speed = <2000000>;
0033 };
0034 };