1*833e5d42SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*833e5d42SEmmanuel Vadot%YAML 1.2 3*833e5d42SEmmanuel Vadot--- 4*833e5d42SEmmanuel Vadot$id: http://devicetree.org/schemas/net/wireless/ralink,rt2880.yaml# 5*833e5d42SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*833e5d42SEmmanuel Vadot 7*833e5d42SEmmanuel Vadottitle: Ralink RT2880 wireless device 8*833e5d42SEmmanuel Vadot 9*833e5d42SEmmanuel Vadotmaintainers: 10*833e5d42SEmmanuel Vadot - Stanislaw Gruszka <stf_xl@wp.pl> 11*833e5d42SEmmanuel Vadot 12*833e5d42SEmmanuel Vadotdescription: | 13*833e5d42SEmmanuel Vadot This node provides properties for configuring RT2880 SOC wifi devices. 14*833e5d42SEmmanuel Vadot The node is expected to be specified as a root node of the device. 15*833e5d42SEmmanuel Vadot 16*833e5d42SEmmanuel VadotallOf: 17*833e5d42SEmmanuel Vadot - $ref: ieee80211.yaml# 18*833e5d42SEmmanuel Vadot 19*833e5d42SEmmanuel Vadotproperties: 20*833e5d42SEmmanuel Vadot compatible: 21*833e5d42SEmmanuel Vadot enum: 22*833e5d42SEmmanuel Vadot - ralink,rt2880-wifi 23*833e5d42SEmmanuel Vadot 24*833e5d42SEmmanuel Vadot reg: 25*833e5d42SEmmanuel Vadot maxItems: 1 26*833e5d42SEmmanuel Vadot 27*833e5d42SEmmanuel Vadot clocks: 28*833e5d42SEmmanuel Vadot maxItems: 1 29*833e5d42SEmmanuel Vadot 30*833e5d42SEmmanuel Vadot interrupts: 31*833e5d42SEmmanuel Vadot maxItems: 1 32*833e5d42SEmmanuel Vadot 33*833e5d42SEmmanuel Vadotrequired: 34*833e5d42SEmmanuel Vadot - compatible 35*833e5d42SEmmanuel Vadot - reg 36*833e5d42SEmmanuel Vadot - clocks 37*833e5d42SEmmanuel Vadot - interrupts 38*833e5d42SEmmanuel Vadot 39*833e5d42SEmmanuel VadotadditionalProperties: false 40*833e5d42SEmmanuel Vadot 41*833e5d42SEmmanuel Vadotexamples: 42*833e5d42SEmmanuel Vadot - | 43*833e5d42SEmmanuel Vadot wifi@110180000 { 44*833e5d42SEmmanuel Vadot compatible = "ralink,rt2880-wifi"; 45*833e5d42SEmmanuel Vadot reg = <0x10180000 0x40000>; 46*833e5d42SEmmanuel Vadot clocks = <&sysc 16>; 47*833e5d42SEmmanuel Vadot interrupt-parent = <&cpuintc>; 48*833e5d42SEmmanuel Vadot interrupts = <6>; 49*833e5d42SEmmanuel Vadot }; 50