From mboxrd@z Thu Jan 1 00:00:00 1970 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 20DFBE95A8E for ; Mon, 9 Oct 2023 11:50:28 +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:References:In-Reply-To: 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: List-Owner; bh=LhrGeeqXfOthwW6sWx2teZIyP7Y+SaTIgBJxq8HOmuo=; b=io36Ze8//XzPps Ac2J1NMJA631HJJ/exKvHW+F3RYaOtVcIKO2bP+7pWAbrMnmJt7bCUD+VP4hoFx7woWXhmQccD1Pe aVhzBQNRvORG3thF9RErrVBPPFnndT1+w9zjxDdiH6U1GSsgVP83ecvWH9VMNsvhBI6cAMi/2xEIW cLX3BMwM9wcdpWRIfZZ4doShGIUTkwKd0zhEgXCERuOlnTLqKyBCp6VU0GAid5M+Hpq9AjMVRV1tg gYXaVsL/2+O3N6IjEdaIXvqrVxgB7pi/TMthc2Kv4Lrf4BYo2SdKyY5lZdipbGYkJaakpDE8BBYsk 7PBNZnkogmO1ks8Ogd0g==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qpolv-00AVkX-39; Mon, 09 Oct 2023 11:50:03 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qpols-00AVjV-1Z for linux-arm-kernel@lists.infradead.org; Mon, 09 Oct 2023 11:50:02 +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 64BD21FB; Mon, 9 Oct 2023 04:50:37 -0700 (PDT) Received: from usa.arm.com (e103737-lin.cambridge.arm.com [10.1.197.49]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 416F53F762; Mon, 9 Oct 2023 04:49:55 -0700 (PDT) From: Sudeep Holla To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Marc Bonnici , Jens Wiklander , Coboy Chen , Lorenzo Pieralisi , Olivier Deprez , Sudeep Holla Cc: Marc Zyngier , Oliver Upton , Will Deacon , Quentin Perret Subject: Re: [PATCH v4 00/17] firmware: arm_ffa: Add FF-A v1.1 support(notification + new memory descriptor format) Date: Mon, 9 Oct 2023 12:49:52 +0100 Message-ID: <169685038705.1329488.4432517923320577763.b4-ty@arm.com> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231005-ffa_v1-1_notif-v4-0-cddd3237809c@arm.com> References: <20231005-ffa_v1-1_notif-v4-0-cddd3237809c@arm.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20231009_045000_620820_BCB9EB53 X-CRM114-Status: UNSURE ( 8.92 ) X-CRM114-Notice: Please train this message. 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: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Thu, 05 Oct 2023 15:44:53 +0100, Sudeep Holla wrote: > The series adds initial support for the notifications and memory transaction > descriptor changes added in FF-A v1.1 specification. > > The notification mechanism enables a requester/sender endpoint to notify > a service provider/receiver endpoint about an event with non-blocking > semantics. > > [...] Applied to sudeep.holla/linux (for-next/ffa/updates), thanks! [01/17] firmware: arm_ffa: Update the FF-A command list with v1.1 additions https://git.kernel.org/sudeep.holla/c/1609626c32c4 [02/17] firmware: arm_ffa: Implement notification bitmap create and destroy interfaces https://git.kernel.org/sudeep.holla/c/192e88cfea8c [03/17] firmware: arm_ffa: Implement the notification bind and unbind interface https://git.kernel.org/sudeep.holla/c/933db703e8ce [04/17] firmware: arm_ffa: Implement the FFA_RUN interface https://git.kernel.org/sudeep.holla/c/fe2ddb6b4235 [05/17] firmware: arm_ffa: Implement the FFA_NOTIFICATION_SET interface https://git.kernel.org/sudeep.holla/c/47561777d694 [06/17] firmware: arm_ffa: Implement the FFA_NOTIFICATION_GET interface https://git.kernel.org/sudeep.holla/c/faa19623e3e1 [07/17] firmware: arm_ffa: Implement the NOTIFICATION_INFO_GET interface https://git.kernel.org/sudeep.holla/c/3522be48d82b [08/17] firmware: arm_ffa: Initial support for scheduler receiver interrupt https://git.kernel.org/sudeep.holla/c/897e9e60c016 [09/17] firmware: arm_ffa: Add schedule receiver callback mechanism https://git.kernel.org/sudeep.holla/c/0184450b8b1e [10/17] firmware: arm_ffa: Add interfaces to request notification callbacks https://git.kernel.org/sudeep.holla/c/e0573444edbf [11/17] firmware: arm_ffa: Add interface to send a notification to a given partition https://git.kernel.org/sudeep.holla/c/e5adb3b20e39 [12/17] firmware: arm_ffa: Add notification handling mechanism https://git.kernel.org/sudeep.holla/c/1b6bf41b7a65 [13/17] firmware: arm_ffa: Simplify the computation of transmit and fragment length https://git.kernel.org/sudeep.holla/c/c9b21ef0d0a8 [14/17] KVM: arm64: FFA: Remove access of endpoint memory access descriptor array https://git.kernel.org/sudeep.holla/c/76cf932c95b9 [15/17] firmware: arm_ffa: Switch to using ffa_mem_desc_offset() accessor https://git.kernel.org/sudeep.holla/c/e4607b84c681 [16/17] firmware: arm_ffa: Update memory descriptor to support v1.1 format https://git.kernel.org/sudeep.holla/c/113580530ee7 [17/17] firmware: arm_ffa: Upgrade the driver version to v1.1 https://git.kernel.org/sudeep.holla/c/bcefd1bf63b1 -- Regards, Sudeep _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel