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 D94B8C77B7A for ; Wed, 7 Jun 2023 05:36:31 +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=UW89AMHkVjTFT+2X51tO6tkhj20A5dhlEOchmCV6XhQ=; b=bIS/SMzXhgD/B8 DIpqdhm2ICuI5hxG9kw6MOjvjd/W8aykM6h5JXS7V8+kxV00vwj66dxWoXeQFa7wqoovUosKB48V+ xCCKqnfgnypOJXvCcsQ/mRu8jt+yJHp2++LoP7KUPmXcu/YkycNdkbDM8qqqyhWrtijLExfbOgq7W xd9jQ9zLlBMm06NVkCNnhcPRJ6NMS/5Q4PN/4Fe9YYTzci3onn96l5sgV8XQ6QqYR6z6FkCuM6JXx Dim7UOKj4Z79LPmHZwKF4l5+toZE8tLzzw29f1aJ6L7sCeA7U0dQZKDpObdZs5Bg7IlHOVScJNMpK 6FYkiwMRDz4HIKXOfQTQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1q6lq5-004ReD-2B; Wed, 07 Jun 2023 05:36:09 +0000 Received: from out-12.mta0.migadu.com ([91.218.175.12]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1q6lq1-004Rcu-2u for linux-arm-kernel@lists.infradead.org; Wed, 07 Jun 2023 05:36:07 +0000 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1686116162; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=USrFGEg2q1AHZBNLT0/M2P/V3pLpAJEE6bgtAh84aZA=; b=GODTtmvTIMPGvkH9OWlj63dg2SpeNUImI8Sy6A8HFxMAHPvB1YfheYv6kGomvnxtwyaNj1 +d7OQYqSYQr2h9h2K8WU47krTpHNXNaHzosCmN7rFLpkuV075GClNi2uwYHmb+wqF9Th9Z UMJC7cbsCfYUEYh5MsMMQ1tR70xXwgA= From: Oliver Upton To: linux-arm-kernel@lists.infradead.org, Will Deacon Cc: Oliver Upton , Marc Zyngier , Quentin Perret , Suzuki K Poulose , Sebastian Ene , James Morse , Fuad Tabba , Sudeep Holla , kernel-team@android.com, kvmarm@lists.linux.dev, Alexandru Elisei Subject: Re: [PATCH v3 00/10] KVM: arm64: FF-A proxy for pKVM Date: Wed, 7 Jun 2023 05:35:12 +0000 Message-ID: <168611608139.777371.2190834678777367651.b4-ty@linux.dev> In-Reply-To: <20230523101828.7328-1-will@kernel.org> References: <20230523101828.7328-1-will@kernel.org> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230606_223606_083038_182370D8 X-CRM114-Status: UNSURE ( 7.03 ) 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 Tue, 23 May 2023 11:18:17 +0100, Will Deacon wrote: > This is version three of the pKVM FF-A proxy series previously posted > here: > > v1: https://lore.kernel.org/r/20221116170335.2341003-1-qperret@google.com > v2: https://lore.kernel.org/r/20230419122051.1341-1-will@kernel.org > > Changes since v2 include: > > [...] Applied to kvmarm/next, thanks! [01/10] KVM: arm64: Block unsafe FF-A calls from the host https://git.kernel.org/kvmarm/kvmarm/c/048be5fea43d [02/10] KVM: arm64: Probe FF-A version and host/hyp partition ID during init https://git.kernel.org/kvmarm/kvmarm/c/12bdce4f4119 [03/10] KVM: arm64: Allocate pages for hypervisor FF-A mailboxes https://git.kernel.org/kvmarm/kvmarm/c/bc3888a0f4e9 [04/10] KVM: arm64: Handle FFA_RXTX_MAP and FFA_RXTX_UNMAP calls from the host https://git.kernel.org/kvmarm/kvmarm/c/9d0c6a9af9e3 [05/10] KVM: arm64: Add FF-A helpers to share/unshare memory with secure world https://git.kernel.org/kvmarm/kvmarm/c/f9112eade788 [06/10] KVM: arm64: Handle FFA_MEM_SHARE calls from the host https://git.kernel.org/kvmarm/kvmarm/c/436090001776 [07/10] KVM: arm64: Handle FFA_MEM_RECLAIM calls from the host https://git.kernel.org/kvmarm/kvmarm/c/0e3bcb49c135 [08/10] KVM: arm64: Handle FFA_MEM_LEND calls from the host https://git.kernel.org/kvmarm/kvmarm/c/634d90cf0ac6 [09/10] KVM: arm64: Handle FFA_FEATURES call from the host https://git.kernel.org/kvmarm/kvmarm/c/20936cd11479 [10/10] KVM: arm64: pkvm: Add support for fragmented FF-A descriptors https://git.kernel.org/kvmarm/kvmarm/c/0a9f15fd5674 -- Best, Oliver _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel