From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:4864:20::141; helo=mail-it1-x141.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-it1-x141.google.com (mail-it1-x141.google.com [IPv6:2607:f8b0:4864:20::141]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 001792119EBCF for ; Wed, 12 Dec 2018 14:04:53 -0800 (PST) Received: by mail-it1-x141.google.com with SMTP id i145so725170ita.4 for ; Wed, 12 Dec 2018 14:04:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=zi3tP0dARKd5OAG6c5nJ8yTHMA+Z/inZAZIV8MTeSxc=; b=VGxy34bOKJebLSs6rEVqtVfx3wwAYDuRLWIueeFCt9+JskrNTmWeJyKSYEH1E29b7v A7ZevgMgvvIjrKkow8ypRxpu8IrKbIQ/6h3GjjMMQrsy1IkFWS/0WcE2R5VEb2UAd7DI QIRGjBnuIMFI/x4BzkqH1eYEwZFd855W9MQss= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=zi3tP0dARKd5OAG6c5nJ8yTHMA+Z/inZAZIV8MTeSxc=; b=X5hGyZcQeYzFCXFWSeOKO3qLEsifIAHKSlnq0BEb57wfbr8fMP44/yl5BpejYEit4P CQGJE/qGAzsePpEIIZKZlTFEey8IGnx+hmyRUyxLwsqlBQwC1oEy66E5jS583R9MJd1D hzfSEaS5Uxa4045nIwONLoughHvLfGzqWFLTtCj+BPdbQZ0Bu8EwXUz5l0L+YSIP9tKp VGyU8D29lQQItZHsShe94z86baMHNCzGp+71kKMCBaWO/MYx+x7OlbCV6DQAia4VU1vU NzcOKvYUAQ5zFTxmhqsaymkQ5xGA1oVQdWpwgI2555aPRZKtUm7JgXyO8rQfWGXz+GIx bOzg== X-Gm-Message-State: AA+aEWY1cKboQhlEnPYApInXppz2xCHVxaDGLKXvZoE0l57R16epJtdg ZZxHsyxaqkT45ozzo3RlndpxMifKZYbdHmUdTk8qJA== X-Google-Smtp-Source: AFSGD/Xpik0LCeJ+KoAZe2kJ7G9eAGbtXq+C67YN53dg8umCJFEzzyYnuO18cAoi01ZUrHqgm3FNU8DZrVC+QX6zwh4= X-Received: by 2002:a02:4c9:: with SMTP id 192mr20712381jab.2.1544652292854; Wed, 12 Dec 2018 14:04:52 -0800 (PST) MIME-Version: 1.0 References: <20180504204436.3441-1-supreeth.venkatesh@arm.com> <20181209163242.GX4897@e104320-lin> In-Reply-To: <20181209163242.GX4897@e104320-lin> From: Ard Biesheuvel Date: Wed, 12 Dec 2018 23:04:40 +0100 Message-ID: To: Achin Gupta Cc: Supreeth Venkatesh , Leif Lindholm , "edk2-devel@lists.01.org" , nd Subject: Re: [edk2-platforms PATCH v2 0/2] *** Enable Standalone Management Mode Core Interface on AARCH64 FVP *** X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Dec 2018 22:04:54 -0000 Content-Type: text/plain; charset="UTF-8" On Sun, 9 Dec 2018 at 17:32, Achin Gupta wrote: > > Hi Leif,Ard, > > These patches are the last bits to complete support for Standalone MM on the > FVP. All other patches have been merged now. Could you please review these? > Sure. Could they be rebased onto current edk2-platforms and resent please? Thanks > On Fri, May 04, 2018 at 09:44:34PM +0100, Supreeth Venkatesh wrote: > > *** > > PI Specification v1.5 "Volume 4: Management Mode Core Interface" > > introduces the concept of MM Standalone Mode. This patchset enables > > Standalone Management Mode Core Interface on AARCH64 FVP. > > *** > > > > Supreeth Venkatesh (2): > > VExpressPkg: Add dsc and fdf files for generating Standalone MM Image. > > Platform/VExpressPkg: Enable MM communication driver. > > > > .../ARM/VExpressPkg/ArmVExpress-FVP-AArch64.dsc | 11 ++ > > .../ARM/VExpressPkg/ArmVExpress-FVP-AArch64.fdf | 4 + > > .../ArmVExpress-StandaloneMm-FVP-AArch64.dsc | 102 ++++++++++++ > > .../ArmVExpress-StandaloneMm-FVP-AArch64.fdf | 184 +++++++++++++++++++++ > > 4 files changed, 301 insertions(+) > > create mode 100644 Platform/ARM/VExpressPkg/ArmVExpress-StandaloneMm-FVP-AArch64.dsc > > create mode 100644 Platform/ARM/VExpressPkg/ArmVExpress-StandaloneMm-FVP-AArch64.fdf > > > > -- > > 2.16.2 > >