Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: mailbox: remove the IPCC "wakeup" IRQ

The stm32 ipcc mailbox driver supports only two interrupts (rx and tx), so
remove the unsupported "wakeup" one.

Signed-off-by: Fabien Dessenne <fabien.dessenne@foss.st.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>

authored by

Fabien Dessenne and committed by
Jassi Brar
9accf46b a022c7c9

+3 -8
+3 -8
Documentation/devicetree/bindings/mailbox/st,stm32-ipcc.yaml
··· 30 30 items: 31 31 - description: rx channel occupied 32 32 - description: tx channel free 33 - - description: wakeup source 34 - minItems: 2 35 33 36 34 interrupt-names: 37 35 items: 38 36 - const: rx 39 37 - const: tx 40 - - const: wakeup 41 - minItems: 2 42 38 43 39 wakeup-source: true 44 40 ··· 66 70 #mbox-cells = <1>; 67 71 reg = <0x4c001000 0x400>; 68 72 st,proc-id = <0>; 69 - interrupts-extended = <&intc GIC_SPI 100 IRQ_TYPE_NONE>, 70 - <&intc GIC_SPI 101 IRQ_TYPE_NONE>, 71 - <&aiec 62 1>; 72 - interrupt-names = "rx", "tx", "wakeup"; 73 + interrupts-extended = <&exti 61 1>, 74 + <&intc GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>; 75 + interrupt-names = "rx", "tx"; 73 76 clocks = <&rcc_clk IPCC>; 74 77 wakeup-source; 75 78 };