public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Andrew Fish <afish@apple.com>
To: "Carsey, Jaben" <jaben.carsey@intel.com>
Cc: Mike Kinney <michael.d.kinney@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
	"Gao, Liming" <liming.gao@intel.com>,
	"Yao, Jiewen" <jiewen.yao@intel.com>,
	"Zeng, Star" <star.zeng@intel.com>
Subject: Re: [PATCH v4 0/3] Remove TimerLib dependency from DP
Date: Wed, 08 Feb 2017 10:19:29 -0800	[thread overview]
Message-ID: <7E0E995C-B4E4-47A7-BB99-1F8A0455C85D@apple.com> (raw)
In-Reply-To: <CB6E33457884FA40993F35157061515C54B5B910@FMSMSX103.amr.corp.intel.com>


> On Feb 3, 2017, at 9:47 AM, Carsey, Jaben <jaben.carsey@intel.com> wrote:
> 
> I am good with this change.  I like the idea of changing platforms that build the shell from source in a separate patch series.
> 
> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
> 

Mike,

This looks good. 

 Reviewed-by: Andrew Fish <afish@apple.com <mailto:afish@apple.com>>

Thanks,

Andrew Fish

>> -----Original Message-----
>> From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of
>> Michael Kinney
>> Sent: Thursday, February 2, 2017 8:56 PM
>> To: edk2-devel@lists.01.org
>> Cc: Andrew Fish <afish@apple.com>; Gao, Liming <liming.gao@intel.com>; Yao,
>> Jiewen <jiewen.yao@intel.com>; Carsey, Jaben <jaben.carsey@intel.com>;
>> Zeng, Star <star.zeng@intel.com>
>> Subject: [edk2] [PATCH v4 0/3] Remove TimerLib dependency from DP
>> Importance: High
>> 
>> Current DP implementation depends on TimerLib, as different platforms may
>> implement and use their own TimerLib, it makes the dp needs to be built by
>> platform. The TimerLib dependency can be removed by using performance
>> property configuration table to make DP to be generic.
>> 
>> There was a discussion on edk2-devel about supporting use of different TimerLib
>> instances in different modules and updating the performance log to support
>> measurements with different timer rates.  A complete solution for this has not
>> been found.
>> 
>> This patch series that allows the DP command to get the timer rate from a
>> system configuration table is useful on its own because it allows the DP shell
>> command to be independent of the TimerLib used to collect the performance
>> logs.
>> 
>> V3:
>> Define and install performance property configuration table instead of
>> extending PEI performance log HOB. As user may want to only dump DXE or
>> SMM performance data, then PeiPerformanceLib will be not linked and PEI
>> performance log HOB will be not built.
>> 
>> V4:
>> Change name of field in PERFORMANCE_PROPERTY from CpuFreq to Frequency.
>> 
>> Cc: Andrew Fish <afish@apple.com>
>> Cc: Michael Kinney <michael.d.kinney@intel.com>
>> Cc: Liming Gao <liming.gao@intel.com>
>> Cc: Jiewen Yao <jiewen.yao@intel.com>
>> Cc: Cinnamon Shia <cinnamon.shia@hpe.com>
>> Cc: Jaben Carsey <jaben.carsey@intel.com>
>> Contributed-under: TianoCore Contribution Agreement 1.0
>> Signed-off-by: Star Zeng <star.zeng@intel.com>
>> 
>> Star Zeng (3):
>>  MdeModulePkg: Add performance property configuration table
>>  PerformancePkg Dp_App: Remove TimerLib dependency
>>  ShellPkg UefiDpLib: Remove TimerLib dependency
>> 
>> MdeModulePkg/Include/Guid/Performance.h            | 12 +++++++-
>> .../DxeCorePerformanceLib/DxeCorePerformanceLib.c  | 23 ++++++++++++--
>> .../DxeCorePerformanceLib.inf                      |  2 ++
>> .../DxeCorePerformanceLibInternal.h                |  3 +-
>> .../SmmCorePerformanceLib/SmmCorePerformanceLib.c  | 18 +++++++++++
>> .../SmmCorePerformanceLib.inf                      |  5 +++-
>> PerformancePkg/Dp_App/Dp.c                         | 35 +++++++++++-----------
>> PerformancePkg/Dp_App/Dp.inf                       |  6 ++--
>> PerformancePkg/Dp_App/DpInternal.h                 |  6 ++--
>> PerformancePkg/Dp_App/DpProfile.c                  |  3 +-
>> PerformancePkg/Dp_App/DpStrings.uni                | 10 ++++---
>> PerformancePkg/Dp_App/DpTrace.c                    | 25 ++--------------
>> PerformancePkg/Dp_App/DpUtilities.c                |  3 +-
>> PerformancePkg/Dp_App/Literals.c                   |  3 +-
>> ShellPkg/Library/UefiDpLib/Dp.c                    | 29 +++++++-----------
>> ShellPkg/Library/UefiDpLib/DpInternal.h            |  6 ++--
>> ShellPkg/Library/UefiDpLib/DpProfile.c             |  3 +-
>> ShellPkg/Library/UefiDpLib/DpTrace.c               | 25 ++--------------
>> ShellPkg/Library/UefiDpLib/DpUtilities.c           |  3 +-
>> ShellPkg/Library/UefiDpLib/Literals.c              |  3 +-
>> ShellPkg/Library/UefiDpLib/UefiDpLib.inf           |  6 ++--
>> ShellPkg/Library/UefiDpLib/UefiDpLib.uni           |  3 +-
>> ShellPkg/ShellPkg.dsc                              |  3 +-
>> 23 files changed, 117 insertions(+), 118 deletions(-)
>> 
>> --
>> 2.6.3.windows.1
>> 
>> _______________________________________________
>> edk2-devel mailing list
>> edk2-devel@lists.01.org
>> https://lists.01.org/mailman/listinfo/edk2-devel



      reply	other threads:[~2017-02-08 18:19 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-03  4:55 [PATCH v4 0/3] Remove TimerLib dependency from DP Michael Kinney
2017-02-03  4:55 ` [PATCH v4 1/3] MdeModulePkg: Add performance property configuration table Michael Kinney
2017-02-03  5:32   ` Yao, Jiewen
2017-02-23 17:30     ` Ard Biesheuvel
2017-02-24  1:32       ` Zeng, Star
2017-02-03  4:55 ` [PATCH v4 2/3] PerformancePkg Dp_App: Remove TimerLib dependency Michael Kinney
2017-02-03  5:34   ` Yao, Jiewen
2017-02-03  4:55 ` [PATCH v4 3/3] ShellPkg UefiDpLib: " Michael Kinney
2017-02-03  5:35   ` Yao, Jiewen
2017-02-03 17:36     ` Kinney, Michael D
2017-02-04  0:32       ` Yao, Jiewen
2017-02-03 17:47 ` [PATCH v4 0/3] Remove TimerLib dependency from DP Carsey, Jaben
2017-02-08 18:19   ` Andrew Fish [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=7E0E995C-B4E4-47A7-BB99-1F8A0455C85D@apple.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