1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
4 $id: "http://devicetree.org/schemas/mailbox/st,stm32-ipcc.yaml#"
5 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
7 title: STMicroelectronics STM32 IPC controller bindings
10 The IPCC block provides a non blocking signaling mechanism to post and
11 retrieve messages in an atomic way between two processors.
12 It provides the signaling for N bidirectionnal channels. The number of
13 channels (N) can be read from a dedicated register.
16 - Fabien Dessenne <fabien.dessenne@st.com>
17 - Arnaud Pouliquen <arnaud.pouliquen@st.com>
21 const: st,stm32mp1-ipcc
31 - description: rx channel occupied
32 - description: tx channel free
33 - description: wakeup source
51 description: Processor id using the mailbox (0 or 1)
53 - $ref: /schemas/types.yaml#/definitions/uint32
65 additionalProperties: false
69 #include <dt-bindings/interrupt-controller/arm-gic.h>
70 #include <dt-bindings/clock/stm32mp1-clks.h>
71 ipcc: mailbox@4c001000 {
72 compatible = "st,stm32mp1-ipcc";
74 reg = <0x4c001000 0x400>;
76 interrupts-extended = <&intc GIC_SPI 100 IRQ_TYPE_NONE>,
77 <&intc GIC_SPI 101 IRQ_TYPE_NONE>,
79 interrupt-names = "rx", "tx", "wakeup";
80 clocks = <&rcc_clk IPCC>;