mediatek,mt76.txt 870 B

1234567891011121314151617181920212223242526272829303132
  1. * MediaTek mt76xx devices
  2. This node provides properties for configuring the MediaTek mt76xx wireless
  3. device. The node is expected to be specified as a child node of the PCI
  4. controller to which the wireless chip is connected.
  5. Optional properties:
  6. - mac-address: See ethernet.txt in the parent directory
  7. - local-mac-address: See ethernet.txt in the parent directory
  8. - ieee80211-freq-limit: See ieee80211.txt
  9. - mediatek,mtd-eeprom: Specify a MTD partition + offset containing EEPROM data
  10. Optional nodes:
  11. - led: Properties for a connected LED
  12. Optional properties:
  13. - led-sources: See Documentation/devicetree/bindings/leds/common.txt
  14. &pcie {
  15. pcie0 {
  16. wifi@0,0 {
  17. compatible = "mediatek,mt76";
  18. reg = <0x0000 0 0 0 0>;
  19. ieee80211-freq-limit = <5000000 6000000>;
  20. mediatek,mtd-eeprom = <&factory 0x8000>;
  21. led {
  22. led-sources = <2>;
  23. };
  24. };
  25. };
  26. };