brcm,bcm43xx-fmac.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. - interrupt-parent : the phandle for the interrupt controller to which the
  11. device interrupts are connected.
  12. - interrupts : specifies attributes for the out-of-band interrupt (host-wake).
  13. When not specified the device will use in-band SDIO interrupts.
  14. - interrupt-names : name of the out-of-band interrupt, which must be set
  15. to "host-wake".
  16. Example:
  17. mmc3: mmc@01c12000 {
  18. #address-cells = <1>;
  19. #size-cells = <0>;
  20. pinctrl-names = "default";
  21. pinctrl-0 = <&mmc3_pins_a>;
  22. vmmc-supply = <&reg_vmmc3>;
  23. bus-width = <4>;
  24. non-removable;
  25. status = "okay";
  26. brcmf: bcrmf@1 {
  27. reg = <1>;
  28. compatible = "brcm,bcm4329-fmac";
  29. interrupt-parent = <&pio>;
  30. interrupts = <10 8>; /* PH10 / EINT10 */
  31. interrupt-names = "host-wake";
  32. };
  33. };