brcm,bcm43xx-fmac.txt 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Broadcom BCM43xx Fullmac wireless SDIO devices
  2. This node provides properties for controlling the Broadcom wireless device. The
  3. node is expected to be specified as a child node to the SDIO controller that
  4. connects the device to the system.
  5. Required properties:
  6. - compatible : Should be "brcm,bcm4329-fmac".
  7. Optional properties:
  8. - brcm,drive-strength : drive strength used for SDIO pins on device in mA
  9. (default = 6).
  10. - interrupts : specifies attributes for the out-of-band interrupt (host-wake).
  11. When not specified the device will use in-band SDIO interrupts.
  12. - interrupt-names : name of the out-of-band interrupt, which must be set
  13. to "host-wake".
  14. Example:
  15. mmc3: mmc@1c12000 {
  16. #address-cells = <1>;
  17. #size-cells = <0>;
  18. pinctrl-names = "default";
  19. pinctrl-0 = <&mmc3_pins_a>;
  20. vmmc-supply = <&reg_vmmc3>;
  21. bus-width = <4>;
  22. non-removable;
  23. brcmf: wifi@1 {
  24. reg = <1>;
  25. compatible = "brcm,bcm4329-fmac";
  26. interrupt-parent = <&pio>;
  27. interrupts = <10 8>; /* PH10 / EINT10 */
  28. interrupt-names = "host-wake";
  29. };
  30. };