public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Zeng, Star" <star.zeng@intel.com>
To: "Chasel, Chiu" <chasel.chiu@intel.com>, edk2-devel@lists.01.org
Cc: star.zeng@intel.com
Subject: Re: [PATCH] IntelFsp2Pkg: Add function to get bootloader stack pointer
Date: Fri, 25 Jan 2019 09:43:13 +0800	[thread overview]
Message-ID: <be0b3aea-12dd-ce51-8d8f-951e8395131c@intel.com> (raw)
In-Reply-To: <20190123053628.1664-1-chasel.chiu@intel.com>

On 2019/1/23 13:36, Chasel, Chiu wrote:
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1391
> 
> FSP on-going enhancement for stack utilization required
> to know bootloader stack pointer and this pointer can be
> retrieved by first input parameter address when FSP-M
> entry API invoked by bootloader.
> 
> Test: Verified on internal platform and booting successfully
> 
> Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
> Cc: Star Zeng <star.zeng@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Chasel Chiu <chasel.chiu@intel.com>

Minor comments below, with them addressed, Reviewed-by: Star Zeng 
<star.zeng@intel.com>.

> ---
>   IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c | 27 ++++++++++++++++++++++-----
>   IntelFsp2Pkg/Include/Library/FspCommonLib.h          | 21 ++++++++++++++++-----
>   2 files changed, 38 insertions(+), 10 deletions(-)
> 
> diff --git a/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c b/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c
> index 64ffba1d16..2f2861281c 100644
> --- a/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c
> +++ b/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c
> @@ -1,6 +1,6 @@
>   /** @file
>   
> -  Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved.<BR>
> +  Copyright (c) 2014 - 2019, Intel Corporation. All rights reserved.<BR>
>     This program and the accompanying materials
>     are licensed and made available under the terms and conditions of the BSD License
>     which accompanies this distribution.  The full text of the license may be found at
> @@ -87,9 +87,9 @@ GetFspGlobalDataPointer (
>   }
>   
>   /**
> -  This function gets back the FSP API first parameter passed by the bootlaoder.
> +  This function gets back the FSP API first parameter passed by the bootloader.
>   
> -  @retval ApiParameter FSP API first parameter passed by the bootlaoder.
> +  @retval ApiParameter FSP API first parameter passed by the bootloader.
>   **/
>   UINT32
>   EFIAPI
> @@ -104,9 +104,26 @@ GetFspApiParameter (
>   }
>   
>   /**
> -  This function gets back the FSP API second parameter passed by the bootlaoder.
> +  This function returns the FSP entry stack pointer from address of the first API parameter
>   
> -  @retval ApiParameter FSP API second parameter passed by the bootlaoder.
> +  @retval FSP entry stack pointer.
> +**/
> +VOID*
> +EFIAPI
> +GetFspEntryStack (
> +  VOID
> +  )
> +{
> +  FSP_GLOBAL_DATA  *FspData;
> +
> +  FspData  = GetFspGlobalDataPointer ();
> +  return (VOID*)(FspData->CoreStack + CONTEXT_STACK_OFFSET(ApiParam[0]));
> +}
> +
> +/**
> +  This function gets back the FSP API second parameter passed by the bootloader.
> +
> +  @retval ApiParameter FSP API second parameter passed by the bootloader.
>   **/
>   UINT32
>   EFIAPI
> diff --git a/IntelFsp2Pkg/Include/Library/FspCommonLib.h b/IntelFsp2Pkg/Include/Library/FspCommonLib.h
> index 1c99be3b1f..e98b180fca 100644
> --- a/IntelFsp2Pkg/Include/Library/FspCommonLib.h
> +++ b/IntelFsp2Pkg/Include/Library/FspCommonLib.h
> @@ -1,6 +1,6 @@
>   /** @file
>   
> -  Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved.<BR>
> +  Copyright (c) 2014 - 2019, Intel Corporation. All rights reserved.<BR>
>     This program and the accompanying materials
>     are licensed and made available under the terms and conditions of the BSD License
>     which accompanies this distribution.  The full text of the license may be found at
> @@ -40,9 +40,9 @@ GetFspGlobalDataPointer (
>     );
>   
>   /**
> -  This function gets back the FSP API first parameter passed by the bootlaoder.
> +  This function gets back the FSP API first parameter passed by the bootloader.
>   
> -  @retval ApiParameter FSP API first parameter passed by the bootlaoder.
> +  @retval ApiParameter FSP API first parameter passed by the bootloader.
>   **/
>   UINT32
>   EFIAPI
> @@ -51,9 +51,9 @@ GetFspApiParameter (
>     );
>   
>   /**
> -  This function gets back the FSP API second parameter passed by the bootlaoder.
> +  This function gets back the FSP API second parameter passed by the bootloader.
>   
> -  @retval ApiParameter FSP API second parameter passed by the bootlaoder.
> +  @retval ApiParameter FSP API second parameter passed by the bootloader.
>   **/
>   UINT32
>   EFIAPI
> @@ -61,6 +61,17 @@ GetFspApiParameter2 (
>     VOID
>     );
>   
> +

Remove this new line?

> +/**
> +  This function returns the FSP entry stack pointer from address of the first API parameter
> +
> +  @retval FSP entry stack pointer.
> +**/
> +VOID*
> +EFIAPI
> +GetFspEntryStack (
> +  VOID
> +  );

Add a new line?


Thanks,
Star

>   /**
>     This function sets the FSP API parameter in the stack.
>   
> 



      parent reply	other threads:[~2019-01-25  1:43 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-23  5:36 [PATCH] IntelFsp2Pkg: Add function to get bootloader stack pointer Chasel, Chiu
2019-01-25  0:26 ` Desimone, Nathaniel L
2019-01-25  1:43 ` Zeng, Star [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=be0b3aea-12dd-ce51-8d8f-951e8395131c@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox