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/ralink,rt2880.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Ralink RT2880 wireless device 8 9maintainers: 10 - Stanislaw Gruszka <stf_xl@wp.pl> 11 12description: | 13 This node provides properties for configuring RT2880 SOC wifi devices. 14 The node is expected to be specified as a root node of the device. 15 16allOf: 17 - $ref: ieee80211.yaml# 18 19properties: 20 compatible: 21 enum: 22 - ralink,rt2880-wifi 23 24 reg: 25 maxItems: 1 26 27 clocks: 28 maxItems: 1 29 30 interrupts: 31 maxItems: 1 32 33required: 34 - compatible 35 - reg 36 - clocks 37 - interrupts 38 39additionalProperties: false 40 41examples: 42 - | 43 wifi@110180000 { 44 compatible = "ralink,rt2880-wifi"; 45 reg = <0x10180000 0x40000>; 46 clocks = <&sysc 16>; 47 interrupt-parent = <&cpuintc>; 48 interrupts = <6>; 49 }; 50