diff options
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/DocBook/80211.tmpl | 2 | ||||
-rw-r--r-- | Documentation/devices.txt | 1 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/net/wireless/ti,wl1251.txt | 39 |
3 files changed, 42 insertions, 0 deletions
diff --git a/Documentation/DocBook/80211.tmpl b/Documentation/DocBook/80211.tmpl index 46ad6faee9ab..044b76436e83 100644 --- a/Documentation/DocBook/80211.tmpl +++ b/Documentation/DocBook/80211.tmpl | |||
@@ -98,6 +98,8 @@ | |||
98 | !Finclude/net/cfg80211.h priv_to_wiphy | 98 | !Finclude/net/cfg80211.h priv_to_wiphy |
99 | !Finclude/net/cfg80211.h set_wiphy_dev | 99 | !Finclude/net/cfg80211.h set_wiphy_dev |
100 | !Finclude/net/cfg80211.h wdev_priv | 100 | !Finclude/net/cfg80211.h wdev_priv |
101 | !Finclude/net/cfg80211.h ieee80211_iface_limit | ||
102 | !Finclude/net/cfg80211.h ieee80211_iface_combination | ||
101 | </chapter> | 103 | </chapter> |
102 | <chapter> | 104 | <chapter> |
103 | <title>Actions and configuration</title> | 105 | <title>Actions and configuration</title> |
diff --git a/Documentation/devices.txt b/Documentation/devices.txt index 10378cc48374..04356f5bc3af 100644 --- a/Documentation/devices.txt +++ b/Documentation/devices.txt | |||
@@ -353,6 +353,7 @@ Your cooperation is appreciated. | |||
353 | 133 = /dev/exttrp External device trap | 353 | 133 = /dev/exttrp External device trap |
354 | 134 = /dev/apm_bios Advanced Power Management BIOS | 354 | 134 = /dev/apm_bios Advanced Power Management BIOS |
355 | 135 = /dev/rtc Real Time Clock | 355 | 135 = /dev/rtc Real Time Clock |
356 | 137 = /dev/vhci Bluetooth virtual HCI driver | ||
356 | 139 = /dev/openprom SPARC OpenBoot PROM | 357 | 139 = /dev/openprom SPARC OpenBoot PROM |
357 | 140 = /dev/relay8 Berkshire Products Octal relay card | 358 | 140 = /dev/relay8 Berkshire Products Octal relay card |
358 | 141 = /dev/relay16 Berkshire Products ISO-16 relay card | 359 | 141 = /dev/relay16 Berkshire Products ISO-16 relay card |
diff --git a/Documentation/devicetree/bindings/net/wireless/ti,wl1251.txt b/Documentation/devicetree/bindings/net/wireless/ti,wl1251.txt new file mode 100644 index 000000000000..189ae5cad8f7 --- /dev/null +++ b/Documentation/devicetree/bindings/net/wireless/ti,wl1251.txt | |||
@@ -0,0 +1,39 @@ | |||
1 | * Texas Instruments wl1251 wireless lan controller | ||
2 | |||
3 | The wl1251 chip can be connected via SPI or via SDIO. This | ||
4 | document describes the binding for the SPI connected chip. | ||
5 | |||
6 | Required properties: | ||
7 | - compatible : Should be "ti,wl1251" | ||
8 | - reg : Chip select address of device | ||
9 | - spi-max-frequency : Maximum SPI clocking speed of device in Hz | ||
10 | - interrupts : Should contain interrupt line | ||
11 | - interrupt-parent : Should be the phandle for the interrupt controller | ||
12 | that services interrupts for this device | ||
13 | - vio-supply : phandle to regulator providing VIO | ||
14 | - ti,power-gpio : GPIO connected to chip's PMEN pin | ||
15 | |||
16 | Optional properties: | ||
17 | - ti,wl1251-has-eeprom : boolean, the wl1251 has an eeprom connected, which | ||
18 | provides configuration data (calibration, MAC, ...) | ||
19 | - Please consult Documentation/devicetree/bindings/spi/spi-bus.txt | ||
20 | for optional SPI connection related properties, | ||
21 | |||
22 | Examples: | ||
23 | |||
24 | &spi1 { | ||
25 | wl1251@0 { | ||
26 | compatible = "ti,wl1251"; | ||
27 | |||
28 | reg = <0>; | ||
29 | spi-max-frequency = <48000000>; | ||
30 | spi-cpol; | ||
31 | spi-cpha; | ||
32 | |||
33 | interrupt-parent = <&gpio2>; | ||
34 | interrupts = <10 IRQ_TYPE_NONE>; /* gpio line 42 */ | ||
35 | |||
36 | vio-supply = <&vio>; | ||
37 | ti,power-gpio = <&gpio3 23 GPIO_ACTIVE_HIGH>; /* 87 */ | ||
38 | }; | ||
39 | }; | ||