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 D8D34CA0EF1 for ; Tue, 12 Sep 2023 16:08:48 +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:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=DHp3fsBPM2M13c2cN0sxP57+GkRPcC+q8aeyjo3UxhY=; b=uvqKTp4rWDvO3G ytr20WF8vMtMY0zQCFCZsATKclYblra4HF318sWsJr3xddgPmBR4fOsM4fUNNsR2LsCn/lP7hpMQy LPSeACprrY5w28noQMu9DeBL/CQzpunv/niupN3wSVj2wXOEKaGAHlyMavFW5njRqL8eTew2jhdyp F3LooEYAzpleYODDqVXU6xuvmNMzTflpIUNLlkUS1KGnFRb3V8mEp1ZiMk45V0wTe7+nfZfzNk+D4 eABytfnINE9jglq4Sq94suSQgpTDz2Re+kmbUw/JyB3xqiymFLrjE5NriYaTQOE0Ivbi/ly04VQDA L5LyaXjD+tfQrPbJiPrQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qg5w9-003nF3-0n; Tue, 12 Sep 2023 16:08:25 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qg5w6-003nED-0r for linux-arm-kernel@lists.infradead.org; Tue, 12 Sep 2023 16:08:23 +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 B1FBBC15; Tue, 12 Sep 2023 09:08:55 -0700 (PDT) Received: from bogus (e103737-lin.cambridge.arm.com [10.1.197.49]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 81A803F738; Tue, 12 Sep 2023 09:08:17 -0700 (PDT) Date: Tue, 12 Sep 2023 17:08:14 +0100 From: Sudeep Holla To: Jens Wiklander Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Lucian Paul-Trifu , Marc Bonnici , Coboy Chen Subject: Re: [PATCH RFT 03/12] firmware: arm_ffa: Implement the notification bind and unbind interface Message-ID: <20230912160814.maooz77hthnja2py@bogus> References: <20230803-ffa_v1-1_notif-v1-0-6613ff2b1f81@arm.com> <20230803-ffa_v1-1_notif-v1-3-6613ff2b1f81@arm.com> <20230912132353.GB4160483@rayden> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20230912132353.GB4160483@rayden> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230912_090822_348078_641D8BEF X-CRM114-Status: GOOD ( 25.20 ) 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 Tue, Sep 12, 2023 at 03:23:53PM +0200, Jens Wiklander wrote: > On Thu, Aug 03, 2023 at 08:02:07PM +0100, Sudeep Holla wrote: > > A receiver endpoint must bind a notification to any sender endpoint > > before the latter can signal the notification to the former. The receiver > > assigns one or more doorbells to a specific sender. Only the sender can > > ring these doorbells. > > > > A receiver uses the FFA_NOTIFICATION_BIND interface to bind one or more > > notifications to the sender. A receiver un-binds a notification from a > > sender endpoint to stop the notification from being signaled. It uses > > the FFA_NOTIFICATION_UNBIND interface to do this. > > > > Allow the FF-A driver to be able to bind and unbind a given notification > > ID to a specific partition ID. This will be used to register and > > unregister notification callbacks from the FF-A client drivers. > > > > Signed-off-by: Sudeep Holla > > --- > > drivers/firmware/arm_ffa/driver.c | 29 +++++++++++++++++++++++++++++ > > 1 file changed, 29 insertions(+) > > > > diff --git a/drivers/firmware/arm_ffa/driver.c b/drivers/firmware/arm_ffa/driver.c > > index 022c893c9e06..a76e5d3a2422 100644 > > --- a/drivers/firmware/arm_ffa/driver.c > > +++ b/drivers/firmware/arm_ffa/driver.c > > @@ -575,6 +575,35 @@ static int ffa_notification_bitmap_destroy(void) > > return 0; > > } > > > > +#define NOTIFICATION_LOW_MASK GENMASK(31, 0) > > +#define NOTIFICATION_HIGH_MASK GENMASK(63, 32) > > +#define NOTIFICATION_BITMAP_HIGH(x) \ > > + ((u32)(FIELD_GET(NOTIFICATION_HIGH_MASK, (x)))) > > +#define NOTIFICATION_BITMAP_LOW(x) \ > > + ((u32)(FIELD_GET(NOTIFICATION_LOW_MASK, (x)))) > > + > > +static int ffa_notification_bind_common(u16 dst_id, u64 bitmap, > > + u32 flags, bool is_bind) > > +{ > > + ffa_value_t ret; > > + u32 func, src_dst_ids = PACK_TARGET_INFO(dst_id, drv_info->vm_id); > dst_id and drv_info->vm_id should be swapped in the argument to > PACK_TARGET_INFO(). > Thanks a lot for having a look at the series. I see Olivier or someone have already pointed this in private and I seem to have it fixed locally already. -- Regards, Sudeep _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel