From: Stephane Dion Date: Thu, 13 Jun 2019 15:29:30 +0000 (+0200) Subject: SHE-17 dt-bindings: add i.MX8 SECO MU driver bindings X-Git-Tag: rel_imx_4.19.35_1.1.0~30 X-Git-Url: https://git.somdevices.com/?a=commitdiff_plain;h=b39f75577d7d418752695b0cfbee885ee9cfba95;p=linux.git SHE-17 dt-bindings: add i.MX8 SECO MU driver bindings Documentation of device-tree entry describing messaging unit (MU) used to communicate with SECO core on i.MX8. Signed-off-by: Stephane Dion (cherry picked from commit 238c7e4dab3b500c61b7def62dcd940b9c103658) --- diff --git a/Documentation/devicetree/bindings/soc/fsl/imx_seco_mu.txt b/Documentation/devicetree/bindings/soc/fsl/imx_seco_mu.txt new file mode 100644 index 000000000000..0813955af851 --- /dev/null +++ b/Documentation/devicetree/bindings/soc/fsl/imx_seco_mu.txt @@ -0,0 +1,24 @@ +NXP i.MX8 SECO MU + +Driver for exchanging messages with SECO core on i.MX8 SOC. +Communication with SECO is performed through a Messaging Unit (MU). +Exposes a char device to user-space. + +Required properties: + - compatible : Contains "fsl,imx8-seco-mu". + - reg : Offset and length of the register set for the device. + - power-domains : phandle pointing to power domain. + - interrupts : the interrupt line from the MU. + - fsl,seco_mu_id : Index of this MU from SECO point of view. + - fsl,seco_max_users: Maximum number of users allowed to share this MU. + +Example: +mu_seco2: mu@31560000 { + compatible = "fsl,imx8-seco-mu"; + reg = <0x0 0x31560000 0x0 0x10000>; + power-domains = <&pd_seco_mu_2>; + interrupts = ; + fsl,seco_mu_id = <2>; + fsl,seco_max_users = <2>; + status = "okay"; +};