public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Jeff Fan <jeff.fan@intel.com>
To: edk2-devel@lists.01.org
Subject: [Patch 00/20] add MSR reference from SDM in comment
Date: Tue,  6 Sep 2016 19:38:32 +0800	[thread overview]
Message-ID: <20160906113852.11408-1-jeff.fan@intel.com> (raw)

Added original MSRs reference in SDM in comments. It is used to help
searching MSR definitions.

Jeff Fan (20):
  UefiCpuPkg/ArchitecturalMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/AtomMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/BroadwellMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/Core2Msr.h: add MSR reference from SDM in comment
  UefiCpuPkg/CoreMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/HaswellEMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/HaswellMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/IvyBridgeMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/NehalemMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/P6Msr.h: add MSR reference from SDM in comment
  UefiCpuPkg/Pentium4Msr.h: add MSR reference from SDM in comment
  UefiCpuPkg/PentiumMMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/PentiumMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/SandyBridgeMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/SilvermontMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/SkylakeMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/Xeon5600Msr.h: add MSR reference from SDM in comment
  UefiCpuPkg/XeonDMsr.h: add MSR reference from SDM in comment
  UefiCpuPkg/XeonE7Msr.h: add MSR reference from SDM in comment
  UefiCpuPkg/XeonPhiMsr.h: add MSR reference from SDM in comment

 UefiCpuPkg/Include/Register/ArchitecturalMsr.h   | 352 +++++++++++++++++
 UefiCpuPkg/Include/Register/Msr/AtomMsr.h        |  37 ++
 UefiCpuPkg/Include/Register/Msr/BroadwellMsr.h   |   3 +
 UefiCpuPkg/Include/Register/Msr/Core2Msr.h       |  52 +++
 UefiCpuPkg/Include/Register/Msr/CoreMsr.h        |  58 +++
 UefiCpuPkg/Include/Register/Msr/HaswellEMsr.h    | 360 ++++++++++++++++++
 UefiCpuPkg/Include/Register/Msr/HaswellMsr.h     |  58 +++
 UefiCpuPkg/Include/Register/Msr/IvyBridgeMsr.h   | 218 +++++++++++
 UefiCpuPkg/Include/Register/Msr/NehalemMsr.h     | 465 +++++++++++++++++++++++
 UefiCpuPkg/Include/Register/Msr/P6Msr.h          |  83 ++++
 UefiCpuPkg/Include/Register/Msr/Pentium4Msr.h    | 167 ++++++++
 UefiCpuPkg/Include/Register/Msr/PentiumMMsr.h    |  25 ++
 UefiCpuPkg/Include/Register/Msr/PentiumMsr.h     |   6 +
 UefiCpuPkg/Include/Register/Msr/SandyBridgeMsr.h | 271 +++++++++++++
 UefiCpuPkg/Include/Register/Msr/SilvermontMsr.h  |  57 +++
 UefiCpuPkg/Include/Register/Msr/SkylakeMsr.h     |  83 ++++
 UefiCpuPkg/Include/Register/Msr/Xeon5600Msr.h    |   4 +
 UefiCpuPkg/Include/Register/Msr/XeonDMsr.h       | 106 ++++++
 UefiCpuPkg/Include/Register/Msr/XeonE7Msr.h      |  31 ++
 UefiCpuPkg/Include/Register/Msr/XeonPhiMsr.h     |  51 +++
 20 files changed, 2487 insertions(+)

-- 
2.9.3.windows.2



             reply	other threads:[~2016-09-06 11:38 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-06 11:38 Jeff Fan [this message]
2016-09-06 11:38 ` [Patch 01/20] UefiCpuPkg/ArchitecturalMsr.h: add MSR reference from SDM in comment Jeff Fan
2016-09-06 11:38 ` [Patch 02/20] UefiCpuPkg/AtomMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 03/20] UefiCpuPkg/BroadwellMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 04/20] UefiCpuPkg/Core2Msr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 05/20] UefiCpuPkg/CoreMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 06/20] UefiCpuPkg/HaswellEMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 07/20] UefiCpuPkg/HaswellMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 08/20] UefiCpuPkg/IvyBridgeMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 09/20] UefiCpuPkg/NehalemMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 10/20] UefiCpuPkg/P6Msr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 11/20] UefiCpuPkg/Pentium4Msr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 12/20] UefiCpuPkg/PentiumMMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 13/20] UefiCpuPkg/PentiumMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 14/20] UefiCpuPkg/SandyBridgeMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 15/20] UefiCpuPkg/SilvermontMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 16/20] UefiCpuPkg/SkylakeMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 17/20] UefiCpuPkg/Xeon5600Msr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 18/20] UefiCpuPkg/XeonDMsr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 19/20] UefiCpuPkg/XeonE7Msr.h: " Jeff Fan
2016-09-06 11:38 ` [Patch 20/20] UefiCpuPkg/XeonPhiMsr.h: " Jeff Fan
2016-09-06 17:27   ` Mudusuru, Giri P

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=20160906113852.11408-1-jeff.fan@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