summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/memory/lib/mcbist/patterns.C
diff options
context:
space:
mode:
authorMcIlvain <kmcilva@us.ibm.com>2016-08-23 15:25:14 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2016-10-18 22:27:51 -0400
commit205723945f242a3085b76eddfeba467e88102eca (patch)
treece95b6c96dbd5c67f8594bceaa5cc223741972e4 /src/import/chips/p9/procedures/hwp/memory/lib/mcbist/patterns.C
parentc1228ce824c63b46eb5634e7baa1fc270c98aa51 (diff)
downloadtalos-hostboot-205723945f242a3085b76eddfeba467e88102eca.tar.gz
talos-hostboot-205723945f242a3085b76eddfeba467e88102eca.zip
MCBIST additional test types and features for shmoos
Change-Id: Idd0ced39ba823c1bd01ba5de7a090fb16a0b7132 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/28693 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: STEPHEN GLANCY <sglancy@us.ibm.com> Reviewed-by: Brian R. Silver <bsilver@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/28738 Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9/procedures/hwp/memory/lib/mcbist/patterns.C')
-rw-r--r--src/import/chips/p9/procedures/hwp/memory/lib/mcbist/patterns.C58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/import/chips/p9/procedures/hwp/memory/lib/mcbist/patterns.C b/src/import/chips/p9/procedures/hwp/memory/lib/mcbist/patterns.C
index 09f7fb548..bb2f60823 100644
--- a/src/import/chips/p9/procedures/hwp/memory/lib/mcbist/patterns.C
+++ b/src/import/chips/p9/procedures/hwp/memory/lib/mcbist/patterns.C
@@ -81,6 +81,64 @@ const std::vector< pattern > patterns =
{0x1234567887654321, 0x8765432112345678},
{0x1234567887654321, 0x8765432112345678},
},
+
+ // Pattern index 10 (Pattern 11 is this inverted), MPR pattern
+ { {0x0000000000000000, 0xFFFFFFFFFFFFFFFF},
+ {0x0000000000000000, 0xFFFFFFFFFFFFFFFF},
+ {0x0000000000000000, 0xFFFFFFFFFFFFFFFF},
+ {0x0000000000000000, 0xFFFFFFFFFFFFFFFF},
+ },
+};
+
+// TK Want a new RC for random 24
+/// Vector of 24b random data seeds
+const std::vector< random24_data_seed > random24_data_seeds =
+{
+ // 24 Bit Pattern index 0 (Pattern 1 is this inverted)
+ { {0x010203},
+ {0x040506},
+ {0x070809},
+ },
+
+ // 24 Bit Pattern index 2 (Pattern 3 is this inverted)
+ { {0x112233},
+ {0x445566},
+ {0x778899},
+ },
+
+};
+
+/// Vector of 24b random data seed mappings
+// Not sure how many mapping we will want, for now it should be sufficient to
+// have all bytes point to a different LFSR or all bytes point to the same LFSR
+const std::vector< random24_seed_map > random24_seed_maps =
+{
+ // 8 Bit Pattern index 0
+ // This selection maps every data byte to a different random LFSR
+ { {0x0},
+ {0x1},
+ {0x2},
+ {0x3},
+ {0x4},
+ {0x5},
+ {0x6},
+ {0x7},
+ {0x8},
+ },
+
+ // 8 Bit Pattern index 1
+ // This selection maps every data byte to random LFSR 0
+ { {0x0},
+ {0x0},
+ {0x0},
+ {0x0},
+ {0x0},
+ {0x0},
+ {0x0},
+ {0x0},
+ {0x0},
+ },
+
};
}
OpenPOWER on IntegriCloud