@@ -38,7 +38,12 @@ properties:
MT7986 should contain 3 regions consys, dcm, and sku, in this order.
interrupts:
- maxItems: 1
+ minItems: 1
+ items:
+ - description: major interrupt for rings
+ - description: additional interrupt for ring 19
+ - description: additional interrupt for ring 4
+ - description: additional interrupt for ring 5
power-domains:
maxItems: 1
@@ -213,6 +218,22 @@ properties:
description:
Half-dBm power delta for different numbers of antennas
+if:
+ properties:
+ compatible:
+ contains:
+ enum:
+ - mediatek,mt7986-wmac
+then:
+ properties:
+ interrupts:
+ minItems: 4
+else:
+ properties:
+ interrupts:
+ maxItems: 1
+
+
required:
- compatible
- reg
@@ -293,7 +314,10 @@ examples:
reg = <0x18000000 0x1000000>,
<0x10003000 0x1000>,
<0x11d10000 0x1000>;
- interrupts = <GIC_SPI 213 IRQ_TYPE_LEVEL_HIGH>;
+ interrupts = <GIC_SPI 213 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SPI 214 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SPI 215 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SPI 216 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&topckgen 50>,
<&topckgen 62>;
clock-names = "mcu", "ap2conn";
The mt7986 can support four interrupts to distribute the interrupts to different CPUs. Signed-off-by: Peter Chiu <chui-hao.chiu@mediatek.com> --- v2: Change to use description instead of using items. v3: Change to use items and set different minItems for mediatek,mt7986-wmac --- .../bindings/net/wireless/mediatek,mt76.yaml | 28 +++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-)