Merge tag 'powerpc-4.6-4' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[linux/fpc-iii.git] / Documentation / devicetree / bindings / net / wireless / ti,wlcore,spi.txt
blob9180724e182c30fcb28d3356e525f581fd0adf0c
1 * Texas Instruments wl1271 wireless lan controller
3 The wl1271 chip can be connected via SPI or via SDIO. This
4 document describes the binding for the SPI connected chip.
6 Required properties:
7 - compatible :          Should be "ti,wl1271"
8 - reg :                 Chip select address of device
9 - spi-max-frequency :   Maximum SPI clocking speed of device in Hz
10 - ref-clock-frequency : Reference clock frequency
11 - interrupt-parent, interrupts :
12                         Should contain parameters for 1 interrupt line.
13                         Interrupt parameters: parent, line number, type.
14 - vwlan-supply :        Point the node of the regulator that powers/enable the wl1271 chip
16 Optional properties:
17 - clock-xtal :          boolean, clock is generated from XTAL
19 - Please consult Documentation/devicetree/bindings/spi/spi-bus.txt
20   for optional SPI connection related properties,
22 Examples:
24 &spi1 {
25         wl1271@1 {
26                 compatible = "ti,wl1271";
28                 reg = <1>;
29                 spi-max-frequency = <48000000>;
30                 clock-xtal;
31                 ref-clock-frequency = <38400000>;
32                 interrupt-parent = <&gpio3>;
33                 interrupts = <8 IRQ_TYPE_LEVEL_HIGH>;
34                 vwlan-supply = <&vwlan_fixed>;
35         };