Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: document common IEEE 802.11 frequency limit property

This new file should be used for properties that apply to all wireless
devices.

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>

authored by

Rafał Miłecki and committed by
Johannes Berg
b330b25e 3db5e3e7

+24
+24
Documentation/devicetree/bindings/net/wireless/ieee80211.txt
··· 1 + Common IEEE 802.11 properties 2 + 3 + This provides documentation of common properties that are valid for all wireless 4 + devices. 5 + 6 + Optional properties: 7 + - ieee80211-freq-limit : list of supported frequency ranges in KHz. This can be 8 + used for devices that in a given config support less channels than 9 + normally. It may happen chipset supports a wide wireless band but it is 10 + limited to some part of it due to used antennas or power amplifier. 11 + An example case for this can be tri-band wireless router with two 12 + identical chipsets used for two different 5 GHz subbands. Using them 13 + incorrectly could not work or decrease performance noticeably. 14 + 15 + Example: 16 + 17 + pcie@0,0 { 18 + reg = <0x0000 0 0 0 0>; 19 + wifi@0,0 { 20 + reg = <0x0000 0 0 0 0>; 21 + ieee80211-freq-limit = <2402000 2482000>, 22 + <5170000 5250000>; 23 + }; 24 + };