1* Microchip WILC wireless SPI device
2
3The wilc1000 chips can be connected via SPI. This document describes
4the binding for the SPI connected module.
5
6Required properties:
7- compatible		: Should be "microchip,wilc1000-spi"
8- spi-max-frequency	: Maximum SPI clocking speed of device in Hz
9- reg			: Chip select address of device
10- irq-gpios		: Connect to a host IRQ
11
12
13Examples:
14
15spi1: spi@fc018000 {
16		cs-gpios = <&pioB 21 0>;
17		status = "okay";
18
19		wilc_spi@0 {
20			compatible = "microchip,wilc1000-spi";
21			spi-max-frequency = <48000000>;
22			reg = <0>;
23			irq-gpios = <&pioC 27 0>;
24			status = "okay";
25		};
26};
27