Skip to content

Commit

Permalink
Addition of RT keyword for mvpd and pvpd records
Browse files Browse the repository at this point in the history
Change-Id: Iaefd6c670ca611954587ae7c5120345898ee9858
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35653
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: Prachi Gupta <pragupta@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
  • Loading branch information
nagendraIBM authored and wghoffa committed Jan 31, 2017
1 parent 52bdcae commit 077cd87
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 9 deletions.
3 changes: 2 additions & 1 deletion src/include/usr/vpd/cvpdenums.H
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2013,2015 */
/* Contributors Listed Below - COPYRIGHT 2013,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -131,6 +131,7 @@ namespace CVPD
pd6 = 0x44, //#6
pd8 = 0x45, //#8
pdY = 0x46, //#Y
RT = 0x47,

// Last Keyword
CVPD_LAST_KEYWORD,
Expand Down
3 changes: 2 additions & 1 deletion src/include/usr/vpd/mvpdenums.H
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2013,2016 */
/* Contributors Listed Below - COPYRIGHT 2013,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -123,6 +123,7 @@ enum mvpdKeyword
L6 = 0x28,
L7 = 0x29,
L8 = 0x2A,
RT = 0x2B,

// Last Keyword
MVPD_LAST_KEYWORD,
Expand Down
6 changes: 5 additions & 1 deletion src/usr/hdat/hdatbldda.C
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2016 */
/* Contributors Listed Below - COPYRIGHT 2016,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -59,6 +59,7 @@ namespace HDAT
// Backplane keyword and record details
static vpdData pvpdData[] =
{
{ PVPD::VINI, PVPD::RT },
{ PVPD::VINI, PVPD::DR },
{ PVPD::VINI, PVPD::CE },
{ PVPD::VINI, PVPD::VZ },
Expand All @@ -71,15 +72,18 @@ static vpdData pvpdData[] =
{ PVPD::VINI, PVPD::B4 },
{ PVPD::VINI, PVPD::B7 },
{ PVPD::VINI, PVPD::PF },
{ PVPD::OPFR, PVPD::RT },
{ PVPD::OPFR, PVPD::VP },
{ PVPD::OPFR, PVPD::VS },
{ PVPD::OPFR, PVPD::DR },
{ PVPD::OPFR, PVPD::VN },
{ PVPD::OSYS, PVPD::RT },
{ PVPD::OSYS, PVPD::MM },
{ PVPD::OSYS, PVPD::SS },
};
const HdatKeywordInfo l_pvpdKeywords[] =
{
{ PVPD::RT, "RT" },
{ PVPD::DR, "DR" },
{ PVPD::CE, "CE" },
{ PVPD::VZ, "VZ" },
Expand Down
3 changes: 2 additions & 1 deletion src/usr/hdat/hdatiohub.C
Expand Up @@ -39,6 +39,7 @@ namespace HDAT

vpdData mvpdData[] =
{
{ PVPD::VINI, PVPD::RT },
{ PVPD::VINI, PVPD::DR },
{ PVPD::VINI, PVPD::CE },
{ PVPD::VINI, PVPD::VZ },
Expand All @@ -57,7 +58,7 @@ vpdData mvpdData[] =

const HdatKeywordInfo l_pvpdKeywords[] =
{

{ PVPD::RT, "RT" },
{ PVPD::DR, "DR" },
{ PVPD::CE, "CE" },
{ PVPD::VZ, "VZ" },
Expand Down
3 changes: 2 additions & 1 deletion src/usr/hdat/hdatmsarea.C
Expand Up @@ -50,7 +50,7 @@ uint32_t HdatMsArea::cv_actualCnt;

static vpdData cvpdData[] =
{
// { MVPD::VINI, MVPD::RT },
{ MVPD::VINI, MVPD::RT },
{ MVPD::VINI, MVPD::DR },
{ MVPD::VINI, MVPD::FN },
{ MVPD::VINI, MVPD::PN },
Expand All @@ -68,6 +68,7 @@ static vpdData cvpdData[] =

const HdatKeywordInfo l_cvpdKeywords[] =
{
{ CVPD::RT, "RT" },
{ CVPD::DR, "DR" },
{ CVPD::FN, "FN" },
{ CVPD::PN, "PN" },
Expand Down
2 changes: 2 additions & 0 deletions src/usr/hdat/hdatpcrd.C
Expand Up @@ -47,6 +47,7 @@ extern trace_desc_t *g_trac_hdat;
*/
vpdData procVpdData[] =
{
{ MVPD::VINI, MVPD::RT },
{ MVPD::VINI, MVPD::DR },
{ MVPD::VINI, MVPD::VZ },
{ MVPD::VINI, MVPD::CC },
Expand All @@ -62,6 +63,7 @@ vpdData procVpdData[] =

const HdatKeywordInfo l_mvpdKeywords[] =
{
{ MVPD::RT, "RT" },
{ MVPD::DR, "DR" },
{ MVPD::VZ, "VZ" },
{ MVPD::CC, "CC" },
Expand Down
4 changes: 2 additions & 2 deletions src/usr/hdat/hdatram.C
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2016 */
/* Contributors Listed Below - COPYRIGHT 2016,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -49,7 +49,7 @@ uint32_t HdatRam::cv_actualCnt;

vpdData cvpdData[] =
{
// { CVPD::VINI, CVPD::RT },
{ CVPD::VINI, CVPD::RT },
{ CVPD::VINI, CVPD::DR },
{ CVPD::VINI, CVPD::FN },
{ CVPD::VINI, CVPD::PN },
Expand Down
2 changes: 2 additions & 0 deletions src/usr/hdat/hdatspsubsys.C
Expand Up @@ -61,6 +61,7 @@ uint32_t HdatSpSubsys::cv_actualCnt;

vpdData mvpdDataTable[] =
{
{ MVPD::VINI, MVPD::RT },
{ MVPD::VINI, MVPD::DR },
{ MVPD::VINI, MVPD::VZ },
{ MVPD::VINI, MVPD::CC },
Expand All @@ -76,6 +77,7 @@ vpdData mvpdDataTable[] =

const HdatKeywordInfo l_mvpdKeywords[] =
{
{ MVPD::RT, "RT" },
{ MVPD::DR, "DR" },
{ MVPD::VZ, "VZ" },
{ MVPD::CC, "CC" },
Expand Down
3 changes: 2 additions & 1 deletion src/usr/vpd/cvpd.H
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2013,2015 */
/* Contributors Listed Below - COPYRIGHT 2013,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -168,6 +168,7 @@ namespace CVPD
{ pd6, "#6" },
{ pd8, "#8" },
{ pdY, "#Y" },
{ RT, "RT" },

// -------------------------------------------------------------------
// DO NOT USE!! This is for test purposes ONLY!
Expand Down
3 changes: 2 additions & 1 deletion src/usr/vpd/mvpd.H
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2013,2016 */
/* Contributors Listed Below - COPYRIGHT 2013,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -134,6 +134,7 @@ namespace MVPD
{ L6, "L6" },
{ L7, "L7" },
{ L8, "L8" },
{ RT, "RT" },

// -------------------------------------------------------------------
// DO NOT USE!! This is for test purposes ONLY!
Expand Down

0 comments on commit 077cd87

Please sign in to comment.