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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 6471CC433EF for ; Tue, 12 Apr 2022 11:43:28 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A152680A4F; Tue, 12 Apr 2022 13:43:25 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 49F6F839A7; Tue, 12 Apr 2022 13:43:24 +0200 (CEST) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by phobos.denx.de (Postfix) with ESMTP id 1025280508 for ; Tue, 12 Apr 2022 13:43:21 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=abdellatif.elkhlifi@arm.com 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 3F53C1424; Tue, 12 Apr 2022 04:43:20 -0700 (PDT) Received: from e121910.cambridge.arm.com (unknown [10.57.94.181]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 718993F5A1; Tue, 12 Apr 2022 04:43:18 -0700 (PDT) Date: Tue, 12 Apr 2022 12:43:15 +0100 From: Abdellatif El Khlifi To: Tom Rini Cc: u-boot@lists.denx.de, vishnu.banavath@arm.com, xueliang.zhong@arm.com, abdellatif.elkhlifi@arm.com, nd@arm.com, rui.silva@linaro.org, rob.herring@arm.com Subject: Re: [PATCH 0/6] introduce Arm FF-A support Message-ID: <20220412114315.GA18372@e121910.cambridge.arm.com> References: <20220329151659.16894-1-abdellatif.elkhlifi@arm.com> <20220406194711.GN14282@bill-the-cat> <20220407125424.GA32742@e121910.cambridge.arm.com> <20220407125811.GO14282@bill-the-cat> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220407125811.GO14282@bill-the-cat> User-Agent: Mutt/1.9.4 (2018-02-28) X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean On Thu, Apr 07, 2022 at 08:58:11AM -0400, Tom Rini wrote: > On Thu, Apr 07, 2022 at 01:54:24PM +0100, Abdellatif El Khlifi wrote: > > On Wed, Apr 06, 2022 at 03:47:11PM -0400, Tom Rini wrote: > > > On Tue, Mar 29, 2022 at 04:16:53PM +0100, abdellatif.elkhlifi@arm.com wrote: > > > > From: Abdellatif El Khlifi > > > > > > > > This patchset adds support for Arm FF-A (Arm Firmware Framework for Armv8-A v1.0). > > > > > > > > FF-A support is generic by design and can be used by any Arm platform. > > > > > > > > The features added are as follows: > > > > > > > > 1/ FF-A device driver > > > > 2/ armffa command > > > > 3/ FF-A Sandbox driver > > > > 4/ FF-A Sandbox test cases > > > > 5/ FF-A MM communication > > > > > > > > > > > > The suggested design sees FF-A as a data bus allowing data exchange with the firmware > > > > running under TrustZone HW (such as Optee). The same approach was followed in the > > > > FF-A driver in Linux kernel (https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/firmware/arm_ffa/bus.c?h=v5.15#n211)) > > > > > > > > u-boot boards using FF-A can provide a device tree node in a -u-boot.dtsi file. > > > > Since the node can not be hosted in Linux device tree, we suggest using u-boot device tree. > > > > > > Why can't the node be in the upstream tree? It should be, so that it > > > can be shared between all users. Especially since there's in-Linux > > > users? > > > > > > -- > > > Tom > > > > Linux already has an FF-A bus driver and doesn't use a device tree node for FF-A. > > > > The Linux driver registers FF-A as a bus: > > > > int arm_ffa_bus_init(void) > > { > > return bus_register(&ffa_bus_type); > > } > > > > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/firmware/arm_ffa/bus.c?h=v5.15#n211 > > > > So, there is no user for the node in Linux. That's why we suggest hosting the node in the u-boot device tree (a u-boot.dtsi file) > > OK, but you can still push it upstream as it's not required to have an > in tree user. > > -- > Tom During the review of Corstone-1000 patchset, Rui Silva had a discussion with the Linux device tree maintainer (Rob Herring). Rob is not in favour of an FFA node in the kernel device tree. This is why we are including the FFA node in u-boot device tree (u-boot.dtsi files). -- Abdellatif