From patchwork Tue Feb 1 17:15:52 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Marussi X-Patchwork-Id: 12732052 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 A9B6EC433F5 for ; Tue, 1 Feb 2022 17:17:58 +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:MIME-Version:List-Subscribe:List-Help: List-Post:List-Archive:List-Unsubscribe:List-Id: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=/46LvFHZgSAUKWPIHkl+YRxH6erqBAr7f4ejjWii8FQ=; b=B2C+ka/9eVOF7+ i+E/noH6EQdz9Xp2yxuAo2zLPW0S+uMbxPBvE0N/l7EeyQamU3kpzRtGCpaoJFtRQATnZ7J2Kbds2 +5RhK8n0TndUP5xtgMnwu67iGbIOxGUpmIyUJgkJL8hIMA6wYPHEhOLb54ErgpPfH/uinFHLAyR1R 5sU/gYqJFUmPhL63Ek2HFe1VVupVWiZlg8A0ntSw3xblpgrgnJFvaG52tSDH4yP06rs60bqejd5d3 i1Lneer2AQ4TjDRuYC/Vofahxv117BLsJKoBRGXIACrnv5fke7fvmPUElrxw30iMIacrRISoFzjuS HPNV9hYKxnmV45hkIqkA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nEwlQ-00D6Tv-7k; Tue, 01 Feb 2022 17:16:20 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nEwlM-00D6SV-A9 for linux-arm-kernel@lists.infradead.org; Tue, 01 Feb 2022 17:16:18 +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 0958A11B3; Tue, 1 Feb 2022 09:16:15 -0800 (PST) Received: from e120937-lin.home (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 692013F40C; Tue, 1 Feb 2022 09:16:13 -0800 (PST) From: Cristian Marussi To: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: sudeep.holla@arm.com, james.quinlan@broadcom.com, Jonathan.Cameron@Huawei.com, f.fainelli@gmail.com, etienne.carriere@linaro.org, vincent.guittot@linaro.org, souvik.chakravarty@arm.com, peter.hilber@opensynergy.com, igor.skalkin@opensynergy.com, cristian.marussi@arm.com Subject: [PATCH 0/9] Add SCMI Virtio & Clock atomic support Date: Tue, 1 Feb 2022 17:15:52 +0000 Message-Id: <20220201171601.53316-1-cristian.marussi@arm.com> X-Mailer: git-send-email 2.17.1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220201_091616_471978_7197ED31 X-CRM114-Status: GOOD ( 17.50 ) 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: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi, This small series is the tail-subset of the previous V8 series about atomic support in SCMI [1], whose 8-patches head-subset has now been queued on [2]; as such, it is based on [2] on top of tag scmi-updates-5.17: commit 94d0cd1da14a ("firmware: arm_scmi: Add new parameter to mark_txdone") Patch [1/9] substitute virtio-scmi ready flag and lock with a reference counter to keep track of vio channels lifetime while removing the need of a wide spinlocked section (that would cause issues with introduction of virtio polling support) Patch [2/9] adds a few helpers to handle the TX free_list and a dedicated spinlock to reduce the reliance on the main one. Patch [3/9] is an RFC patch to the virtio core around virtqueue_poll() API: the aim is to solve a possible ABA problem while polling on a very busy virtqueue. Patch [4/9] adds polling mode to SCMI VirtIO transport in order to support atomic operations on such transport. Patches [5,6/9] introduce a new optional SCMI binding, atomic_threshold, to configure a platform specific time threshold used in the following patches to select with a finer grain which SCMI resources should be eligible for atomic operations when requested. Patch [7/9] exposes new SCMI Clock protocol operations to allow an SCMI user to request atomic mode on clock enable commands. Patch [8/9] adds support to SCMI Clock protocol for a new clock attributes field which advertises typical enable latency for a specific resource. It is marked as RFC since the SCMI spec including such addition is still to be finalized. Finally patch [9/9] add support for atomic operations to the SCMI clock driver; the underlying logic here is that we register with the Clock framework atomic-capable clock resources if and only if the backing SCMI transport is capable of atomic operations AND the specific clock resource has been advertised by the SCMI platform as having: clock_enable_latency <= atomic_threshold The idea is to avoid costly atomic busy-waiting for resources that have been advertised as 'slow' to operate upon. (i.e. a PLL vs a gating clock) This last patch is marked as RFC too since it is dependent on the previous one (that is RFC-tagged too) To ease testing the whole series can be find at [3]. Any feedback/testing welcome as usual. Thanks, Cristian [1]: https://lore.kernel.org/linux-arm-kernel/20211220195646.44498-1-cristian.marussi@arm.com/ [2]: https://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux.git/tag/?h=scmi-updates-5.17 [3]: https://gitlab.arm.com/linux-arm/linux-cm/-/commits/scmi_atomic_clk_virtio_V2/ --- V1 --> V2 - added vio channel refcount support patch - reviewed free_list support and usage - added virtio_ring RFC patch - shrinked spinlocked section within virtio_poll_done to exclude virtqueue_poll call - removed poll_lock - use vio channel refcount acquire/release logic when polling - using new free_list accessors - added new dedicated pending_lock to access pending_cmds_list - fixed a few comments Cristian Marussi (9): firmware: arm_scmi: Add a virtio channel refcount firmware: arm_scmi: Review virtio free_list handling [RFC] virtio_ring: Embed a wrap counter in opaque poll index value firmware: arm_scmi: Add atomic mode support to virtio transport dt-bindings: firmware: arm,scmi: Add atomic_threshold optional property firmware: arm_scmi: Support optional system wide atomic_threshold firmware: arm_scmi: Add atomic support to clock protocol [RFC] firmware: arm_scmi: Add support for clock_enable_latency [RFC] clk: scmi: Support atomic clock enable/disable API .../bindings/firmware/arm,scmi.yaml | 11 + drivers/clk/clk-scmi.c | 71 ++- drivers/firmware/arm_scmi/Kconfig | 15 + drivers/firmware/arm_scmi/clock.c | 34 +- drivers/firmware/arm_scmi/driver.c | 36 +- drivers/firmware/arm_scmi/virtio.c | 504 +++++++++++++++--- drivers/virtio/virtio_ring.c | 51 +- include/linux/scmi_protocol.h | 9 +- 8 files changed, 622 insertions(+), 109 deletions(-)