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::a42; helo=mail-vk1-xa42.google.com; envelope-from=sumit.garg@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-vk1-xa42.google.com (mail-vk1-xa42.google.com [IPv6:2607:f8b0:4864:20::a42]) (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 6203B21168228 for ; Wed, 17 Oct 2018 05:00:27 -0700 (PDT) Received: by mail-vk1-xa42.google.com with SMTP id l65so6271537vki.8 for ; Wed, 17 Oct 2018 05:00:27 -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=jdFz5ay5Jmdk7eVwXMVVC5W4AvTnfaXh1TfWulNEDU8=; b=LwjdgcvG/3A/VxM39zwl6Tj7Sb0iSQwIoQin1Afx/gBzI3G1kNnoOPKgsigxqq86q9 GGDIsm4fmTIB7Tqs03dkjmQaRERPGMlf0drKxmFRuYdIjlPQT7xh452Lrb8RjAvk4vRf sx87el+CioiN34g0cefmkqKLjEb6ZqGv1ZMcI= 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=jdFz5ay5Jmdk7eVwXMVVC5W4AvTnfaXh1TfWulNEDU8=; b=Dck7Q4xEKNkwgS0I9PaVll4pQeKtuJW+MMPanTHfanyErmzfQcuTPoKWNBblOCYgSK za0Bg7uk7PSD8kMZmDnUsmItBuwqcdZtqqaUYVJRRkaG4QFEeEmrMP8U/kAWqCzcEBJc guNxE7Ytky+bcnJwDlBWZIDy3VlL6BUsI4HLNy42OkcY0kqqbdHIql6wBePgsm8cHZUw FhIM/FcCf5vk8ryXQm3lPBvTjrkgt/3y4Nbd0B6iEuJkTMu0cHfSX5etSrnQmfMmFwhK QDTKkR6pCnFkkjAS9ZYXC3AQmOzWHgfTVQru4NcqLLJkKj/FbilVB7w08OOeoTBngFZX M19w== X-Gm-Message-State: ABuFfojkhJB8xAcu0EpzPx6KuV6FpXwTpsnssyO6wUulpkbBJhbuQmhN v9Z1h9YxGT7/1Gj3BJRgUOm+pBXfbfzPQS9O8zSsJQ== X-Google-Smtp-Source: ACcGV62/QyGMRkJ/AFVFRI7E2GA+HUPYx4pAipNE69twMZkaqACfb+5RrHXlw8vqu1r5lHChnmQfW8DgPXZEbVRTsqQ= X-Received: by 2002:a1f:9ec5:: with SMTP id h188-v6mr10471225vke.78.1539777626232; Wed, 17 Oct 2018 05:00:26 -0700 (PDT) MIME-Version: 1.0 References: <1539148733-5426-1-git-send-email-sumit.garg@linaro.org> In-Reply-To: <1539148733-5426-1-git-send-email-sumit.garg@linaro.org> From: Sumit Garg Date: Wed, 17 Oct 2018 17:30:14 +0530 Message-ID: To: Ard Biesheuvel , Leif Lindholm Cc: edk2-devel@lists.01.org, Michael D Kinney , tee-dev@lists.linaro.org, Daniel Thompson , Joakim Bech , Matteo.Carlini@arm.com, Achin.Gupta@arm.com, udit.kumar@nxp.com Subject: Re: [PATCH v4 0/1] 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, 17 Oct 2018 12:00:28 -0000 Content-Type: text/plain; charset="UTF-8" Gentle reminder. Please let me know if you have any further review comments. -Sumit On Wed, 10 Oct 2018 at 10:49, Sumit Garg wrote: > > Changes in v4: > Replaced abbreviations with full name which are not defined in [1]. Also > used EFI_GUID for Trusted Application UUIDs. > > [1] https://edk2-docs.gitbooks.io/edk-ii-c-coding-standards-specification/content/v/release/2.20/4_naming_conventions/#table-2-efi-supported-abbreviations > > Changes in v3: > Removed GlobalPlatform TEE return codes (IndustryStandard/GlobalPlatform.h) > that were rejected by EDK2 maintainers. Rather used custom ones for this > OP-TEE driver. > > 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 (1): > ArmPkg/OpteeLib: Add APIs to communicate with OP-TEE > > ArmPkg/Library/OpteeLib/OpteeLib.inf | 2 + > ArmPkg/Include/Library/OpteeLib.h | 88 +++++ > ArmPkg/Library/OpteeLib/OpteeSmc.h | 43 +++ > ArmPkg/Library/OpteeLib/Optee.c | 397 ++++++++++++++++++++ > 4 files changed, 530 insertions(+) > create mode 100644 ArmPkg/Library/OpteeLib/OpteeSmc.h > > -- > 2.7.4 >