From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:4003:c06::244; helo=mail-oi0-x244.google.com; envelope-from=sumit.garg@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-oi0-x244.google.com (mail-oi0-x244.google.com [IPv6:2607:f8b0:4003:c06::244]) (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 7F84A21B02822 for ; Wed, 12 Sep 2018 00:28:35 -0700 (PDT) Received: by mail-oi0-x244.google.com with SMTP id 13-v6so1825614ois.1 for ; Wed, 12 Sep 2018 00:28:35 -0700 (PDT) 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=OUHBUEycg37lina6PS/c2T6b6d79/RrEpYsw5zOrL6Q=; b=cIp4Eh3iP5d2brzjhd0/3wlfgZDStJLUKkjrnQFLXyitIQje3c7BwTEEuYP63nVswB d8h6wvPDjTk2WovMVrC3/iOFijnBdiWGgTCXNvNOUKrQHBPd82EqnC6TPb/FDDVnZsqA +Hlmpj9+rTQXB+79AQvbmjfkjpPbSfDT0YdsI= 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=OUHBUEycg37lina6PS/c2T6b6d79/RrEpYsw5zOrL6Q=; b=YwyTt/bcfl7EmBc6nNzCEQahaYu0xJIv9E/7QQfm7I0tgdrkFuxhFDC6yPoK2RfwOo mXqTeGlZkZZz+xVv00KlzcI3zns6WzAouzpMO4VJtvPqfzlNw4bTPvmWJtyyL6c6XcZL Fft0UxJEkyiV0SxoLtisqOsEQVvGQoIpA/D8kGSldTQPpjLHOMS3/zddDoOsxZzrTTut 2h0i5O+vP1v4QEYdmj5l72cHAexmiPP66GaQnEnG2qbW8tpTG3bUiRRHHArTlcalNxS+ noRDr2Js0glr96cOE2QG96dA5AxFLRBCvv6giCThImummLFxhgqYy9A/hkFz+6em50I9 kHWA== X-Gm-Message-State: APzg51CqL7rBfdI/FU5j1hr67FVVTwm6Doqxv0paBYVEseeVC2qGseQw qlCw3IyPCBBIK1JvEpwdxgaLMHOKdUyl20HyRfk4nw== X-Google-Smtp-Source: ANB0VdYkrEQD31kuvVRKdnFZAiw6cX8kkWJIW4nZr+TR2owcd2lsFula2JbYkDmul1E6TpK/6x6VLl7I+h5LelIJ+fM= X-Received: by 2002:aca:e80c:: with SMTP id f12-v6mr613176oih.38.1536737315108; Wed, 12 Sep 2018 00:28:35 -0700 (PDT) MIME-Version: 1.0 References: <1535370620-10032-1-git-send-email-sumit.garg@linaro.org> In-Reply-To: <1535370620-10032-1-git-send-email-sumit.garg@linaro.org> From: Sumit Garg Date: Wed, 12 Sep 2018 12:58:24 +0530 Message-ID: To: Ard Biesheuvel , Leif Lindholm , Michael D Kinney , Liming Gao Cc: edk2-devel@lists.01.org, tee-dev@lists.linaro.org, Daniel Thompson , Matteo.Carlini@arm.com, Achin.Gupta@arm.com, udit.kumar@nxp.com, bhsharma@redhat.com Subject: Re: [PATCH v2 0/2] Add ArmPkg/Optee library APIs 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 Sep 2018 07:28:36 -0000 Content-Type: text/plain; charset="UTF-8" On Mon, 27 Aug 2018 at 17:20, Sumit Garg wrote: > > Changes in v2: > 1. Separate patch for MdePkg/Include/IndustryStandard/GlobalPlatform.h. > 2. Correct comments style for struct members. > 3. Update commit message. > > Sumit Garg (2): > MdePkg/IndustryStandard: Add Global Plaform header file > ArmPkg/OpteeLib: Add APIs to communicate with OP-TEE > I hope you have reviewed this patch-set. Please let me know if you have any more review comments. -Sumit > ArmPkg/Include/Library/OpteeLib.h | 87 ++++++ > ArmPkg/Library/OpteeLib/Optee.c | 358 +++++++++++++++++++++++ > ArmPkg/Library/OpteeLib/OpteeLib.inf | 2 + > ArmPkg/Library/OpteeLib/OpteeSmc.h | 43 +++ > MdePkg/Include/IndustryStandard/GlobalPlatform.h | 27 ++ > 5 files changed, 517 insertions(+) > create mode 100644 ArmPkg/Library/OpteeLib/OpteeSmc.h > create mode 100644 MdePkg/Include/IndustryStandard/GlobalPlatform.h > > -- > 2.7.4 >