aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2017-11-21 04:50:51 -0500
committerKalle Valo <kvalo@codeaurora.org>2017-12-07 08:35:54 -0500
commit9402f8eb9bed7a3dc6ff776dfa7f0b78750f21ed (patch)
tree1ad71b80f60a059472c9c0a2da532ed239981470
parenta765c8fdc8691cd3b8a4ad83d6378376e7268e73 (diff)
dt-bindings: net: add mt76 wireless device binding
Add documentation describing how device tree can be used to configure wireless chips supported by the mt76 driver. Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
-rw-r--r--Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt32
1 files changed, 32 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt b/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt
new file mode 100644
index 000000000000..0c17a0ec9b7b
--- /dev/null
+++ b/Documentation/devicetree/bindings/net/wireless/mediatek,mt76.txt
@@ -0,0 +1,32 @@
1* MediaTek mt76xx devices
2
3This node provides properties for configuring the MediaTek mt76xx wireless
4device. The node is expected to be specified as a child node of the PCI
5controller to which the wireless chip is connected.
6
7Optional properties:
8
9- mac-address: See ethernet.txt in the parent directory
10- local-mac-address: See ethernet.txt in the parent directory
11- ieee80211-freq-limit: See ieee80211.txt
12- mediatek,mtd-eeprom: Specify a MTD partition + offset containing EEPROM data
13
14Optional nodes:
15- led: Properties for a connected LED
16 Optional properties:
17 - led-sources: See Documentation/devicetree/bindings/leds/common.txt
18
19&pcie {
20 pcie0 {
21 wifi@0,0 {
22 compatible = "mediatek,mt76";
23 reg = <0x0000 0 0 0 0>;
24 ieee80211-freq-limit = <5000000 6000000>;
25 mediatek,mtd-eeprom = <&factory 0x8000>;
26
27 led {
28 led-sources = <2>;
29 };
30 };
31 };
32};