From patchwork Mon Mar 27 15:45:26 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Marussi X-Patchwork-Id: 13189547 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 83ABBC76195 for ; Mon, 27 Mar 2023 15:46:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=blwiAVJPsl390gptei8iYkPW5JAe1rMXxllD2W4Q/6A=; b=S9lFHz13/YGGJG 0Yph/yGOm4zRCHVghfZlZIlLy7JHAsWOw5mJo6ktsMc7P4ipI81t/oPQd3kRFDHivykQ5z4Toj9mR C2YjnDHk+lib0qdaNaiSf25X55mYOEgSG/bJPtwR5hPIz6zbNnfdfuO9fBf11FnzaPag0tadp27zG fvYK2FxYcgeGinx1KLhCUm4X3c5fipyRrSCzzuH/XLBdjt/i5TO5pkjpNsRQMpx20VVfX5DiMT5+x 8ORMKQ0naO3YiJEUmlCxVb2bCuE302wUABUB+JhRCo5KKgifMna4dEJB8/03GfcvNzI89+PHCzo83 BuCZuWseUHgCH8DueoUg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1pgp2n-00BbkL-0J; Mon, 27 Mar 2023 15:46:01 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1pgp2j-00BbjJ-2t for linux-arm-kernel@lists.infradead.org; Mon, 27 Mar 2023 15:45:59 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B0D8EC14; Mon, 27 Mar 2023 08:46:38 -0700 (PDT) Received: from e120937-lin.. (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 14D3B3F6C4; Mon, 27 Mar 2023 08:45:52 -0700 (PDT) From: Cristian Marussi To: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org Cc: sudeep.holla@arm.com, vincent.guittot@linaro.org, souvik.chakravarty@arm.com, nicola.mazzucato@arm.com, cristian.marussi@arm.com, robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org Subject: [PATCH v2 0/2] Add SCMI support for mailbox unidirectional channels Date: Mon, 27 Mar 2023 16:45:26 +0100 Message-Id: <20230327154528.460836-1-cristian.marussi@arm.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230327_084558_026461_6F925CC3 X-CRM114-Status: GOOD ( 16.03 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi, this series aims to extend SCMI mailbox transport layer to support mailbox controllers that expose unidirectional channels. SCMI communications between an agent like Linux and the platform fw server happens through 2 main communication channels: an 'a2p' bidirectional channel (called TX in SCMI parlance) used to send synchronous commands and receive related replies and an optional 'p2a' unidirectional channel (called RX) used to convey notfications or delayed responses to asynchronous commands possibly emitted by the platform toward the agent. The current SCMI mailbox transport support was modelled around mailboxes that were bidirectional by nature, and, as such, fit well in the above SCMI communication scheme, allowing us to currently describe the mailbox transport channels as in the following examples: 1. system with a single TX 'a2p' defined over a mailbox bidirectional channel: mboxes = <&mb 0 0>; shmem = <&a2p_mem>; 2. system with a TX 'a2p' defined over a bidirectional mailbox channel AND an optional RX 'p2a' defined over a unidirectional channel: mboxes = <&mb 0 0>, <&mb 0 1>, shmem = <&a2p_shmem>, <&p2a_shmem>; This binding, as it is now, does NOT support the usage of mailbox controllers exposing channels that are unidirectional by nature, like it is the case with ARM MHUv2 mailboxes as an example, since 2 distinct unidirectional mailbox channels would be needed to represent just the SCMI TX bidirectional communication path. Note that the mboxes property referred in the SCMI nodes to configure the transport is compliant with (and parsed by) the mailbox common subsystem, which is the entity that exposes and finally handles the mailbox controller: as a consequence playing creatively (or dirty :P) with the syntax of the mboxes property to fit our needs is not an option. This series extends the SCMI mailbox-related bindings, which defines how mboxes and shmem properties are interpreted, and the logic inside the SCMI mailbox transport subsystem to support the usage of these type of unidirectional mailbox channels, while aiming to maintain backward compatibility with the original scheme based on bidirectional channels. With these proposed DT extensions, in addition to the above definitions, the following descriptions can be crafted for a system using a mailbox controller exposing unidirectional channels: 2. system with a single TX 'a2p' defined over a pair of unidirectional mailbox channels (similar to 1): mboxes = <&mb_tx 0 0>, <&mb_rx 0 0>; shmem = <&a2p_mem>; 3. system with a TX 'a2p' defined over a pair of unidirectional channels AND an RX 'p2a' defined over a unidirectional channel (similar to 2): mboxes = <&mb_tx 0 0>, <&mb_rx 0 0>, <&mb_rx 0 1>; shmem = <&a2p_shmem>, <&p2a_shmem>; The SCMI mailbox transport logic has been modified to select and make a proper use of the needed channels depending on the combination of found mboxes/shmem descriptors: a) 1 mbox / 1 shmem => SCMI TX over 1 mailbox bidirectional channel b) 2 mbox / 2 shmem => SCMI TX and RX over 2 mailbox bidirectional chans c) 2 mbox / 1 shmem => SCMI TX over 2 mailbox unidirectional chans d) 3 mbox / 2 shmem => SCMI TX and RX over 3 mailbox unidirectional chans with any other combination considered invalid. Note that, up until the changes in this series, the only valid configs accepted by the SCMI mailbox transport are a) and b): this ensures backward compatibility even in the case in which a DT sporting the new format (c,d) is, wrongly, deployed with an old kernel still not supporting this new logic: in such a case c) and d) configs will be simply rejected. (wrongly deployed because installing a c) or d) styled-DT would be required only if the underlying mailbox HW had effectively changed and used unidir chans) I have tested this on a JUNO board (MHUv1 bidirectional) and TotalCompute TC2 reference design (MHUv2 unidirectional). [1] The series is based on v6.3-rc4. Having said that, I am not completely sure if all of the above constraints should (and/or could) be expressed in a more formal way also in the YAML binding itself. Any feedback or suggestion in these regards is highly appreciated. Thanks, Cristian [1]: https://gitlab.arm.com/arm-reference-solutions/arm-reference-solutions-docs/-/blob/master/docs/totalcompute/tc2/tc2_sw_stack.rst ---- v1 --> v2 - added mbox-names unidirectional definitions and example Cristian Marussi (2): dt-bindings: firmware: arm,scmi: Support mailboxes unidirectional channels firmware: arm_scmi: Add support for unidirectional mailbox channels .../bindings/firmware/arm,scmi.yaml | 76 +++++++++++++-- drivers/firmware/arm_scmi/mailbox.c | 95 ++++++++++++++++--- 2 files changed, 150 insertions(+), 21 deletions(-)