bcm283x-rpi-wifi-bt.dtsi 588 B

12345678910111213141516171819202122232425262728293031323334
  1. // SPDX-License-Identifier: GPL-2.0
  2. / {
  3. wifi_pwrseq: wifi-pwrseq {
  4. compatible = "mmc-pwrseq-simple";
  5. };
  6. };
  7. /* SDHCI is used to control the SDIO for wireless */
  8. &sdhci {
  9. #address-cells = <1>;
  10. #size-cells = <0>;
  11. pinctrl-names = "default";
  12. pinctrl-0 = <&emmc_gpio34>;
  13. bus-width = <4>;
  14. non-removable;
  15. mmc-pwrseq = <&wifi_pwrseq>;
  16. status = "okay";
  17. brcmf: wifi@1 {
  18. reg = <1>;
  19. compatible = "brcm,bcm4329-fmac";
  20. };
  21. };
  22. /* uart0 communicates with the BT module */
  23. &uart0 {
  24. status = "okay";
  25. bt: bluetooth {
  26. compatible = "brcm,bcm43438-bt";
  27. max-speed = <2000000>;
  28. };
  29. };