xref: /linux/Documentation/devicetree/bindings/net/wireless/st,stlc4560.yaml (revision 05d32474ab547fb097cfe3f3eb00a2aa7cdf4067)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/net/wireless/st,stlc4560.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: ST/Intersil/Conexant stlc45xx/p54spi/cx3110x SPI wireless device
8
9maintainers:
10  - Christian Lamparter <chunkeey@gmail.com>
11
12description:
13  The SPI variant of the Intersil Prism54 wireless device was sold
14  under a variety of names, including Conexant CX3110x and
15  ST Microelectronics STLC5460.
16
17allOf:
18  - $ref: ieee80211.yaml#
19  - $ref: /schemas/spi/spi-peripheral-props.yaml#
20
21properties:
22  compatible:
23    oneOf:
24      - const: st,stlc4560
25      - items:
26          - enum:
27              - cnxt,3110x
28              - isil,p54spi
29              - st,stlc4550
30          - const: st,stlc4560
31
32  reg:
33    maxItems: 1
34
35  interrupts:
36    maxItems: 1
37
38  powerdown-gpios:
39    maxItems: 1
40
41required:
42  - compatible
43  - reg
44  - interrupts
45
46unevaluatedProperties: false
47
48examples:
49  - |
50    spi {
51        #address-cells = <1>;
52        #size-cells = <0>;
53
54        wifi@0 {
55            compatible = "st,stlc4560";
56            reg = <0>;
57            spi-max-frequency = <48000000>;
58            interrupts-extended = <&gpio 23>;
59            powerdown-gpios = <&gpio 1>;
60        };
61    };
62