<feed xmlns='http://www.w3.org/2005/Atom'>
<title>talos-sbe/src/import, branch 07-25-2019</title>
<subtitle>Blackbird™ SBE sources</subtitle>
<id>https://git.raptorcs.com/git/talos-sbe/atom?h=07-25-2019</id>
<link rel='self' href='https://git.raptorcs.com/git/talos-sbe/atom?h=07-25-2019'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/'/>
<updated>2020-02-18T17:06:14+00:00</updated>
<entry>
<title>Add SPD, ATTR, and code support for thermal sensor fields</title>
<updated>2020-02-18T17:06:14+00:00</updated>
<author>
<name>Mark Pizzutillo</name>
<email>Mark.Pizzutillo@ibm.com</email>
</author>
<published>2019-10-04T21:22:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=7247b205d621a2b988e3816760c81cbc551f7f68'/>
<id>urn:sha1:7247b205d621a2b988e3816760c81cbc551f7f68</id>
<content type='text'>
In order to not break systems with old DDIMMs or old Explorer FW,
this commit includes a workaround to bypass the thermal field parsing
if the SPD revision is less than 0.3, as the decoder will try to
parse garbage. This can be replaced down the line if needed with
a proper API.

git-coreq:hostboot:I7400886b90b566bbfdf218bcedf11627acf1d2fd
Change-Id: I7400886b90b566bbfdf218bcedf11627acf1d2fd
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/87999
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Dev-Ready: Mark Pizzutillo &lt;mark.pizzutillo@ibm.com&gt;
Tested-by: PPE CI &lt;ppe-ci+hostboot@us.ibm.com&gt;
Tested-by: HWSV CI &lt;hwsv-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Louis Stermole &lt;stermole@us.ibm.com&gt;
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Reviewed-by: STEPHEN GLANCY &lt;sglancy@us.ibm.com&gt;
Tested-by: Hostboot CI &lt;hostboot-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Jennifer A Stofer &lt;stofer@us.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/88583
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>Refactor PMIC attributes to be at OCMB level</title>
<updated>2020-02-17T14:49:35+00:00</updated>
<author>
<name>Mark Pizzutillo</name>
<email>Mark.Pizzutillo@ibm.com</email>
</author>
<published>2020-01-13T21:39:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=b72e88b9179584e3c15c679830a97e8f0651f05c'/>
<id>urn:sha1:b72e88b9179584e3c15c679830a97e8f0651f05c</id>
<content type='text'>
eff_config can now put SPD attributes at OCMB level if the
attribute is defined as such. It will ignore any values for
DIMM 1 and only use those for DIMM 0 (attributes that will
be the same, like PMIC fields, for example)

Minor fix to pmic_status_tool_ut failing UTs due to mismatch
in help screen

git-coreq:hostboot:I5a66f0540ecc65434123c976d83103c99d9ae018
Change-Id: I5a66f0540ecc65434123c976d83103c99d9ae018
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/90584
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: PPE CI &lt;ppe-ci+hostboot@us.ibm.com&gt;
Tested-by: Hostboot CI &lt;hostboot-ci+hostboot@us.ibm.com&gt;
Tested-by: HWSV CI &lt;hwsv-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Louis Stermole &lt;stermole@us.ibm.com&gt;
Reviewed-by: ANDRE A MARIN &lt;aamarin@us.ibm.com&gt;
Reviewed-by: Jennifer A Stofer &lt;stofer@us.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/90830
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>Adjust idec algorithm for Explorer B.0 format</title>
<updated>2020-02-07T16:52:33+00:00</updated>
<author>
<name>Dan Crowell</name>
<email>dcrowell@us.ibm.com</email>
</author>
<published>2020-01-16T18:55:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=512f92467c65876005f92ebe1d3f2abe078db265'/>
<id>urn:sha1:512f92467c65876005f92ebe1d3f2abe078db265</id>
<content type='text'>
The update to B.0 doesn't allow for a change to the register that
previously contained the MAJOR_REVISION value.  Because of that
we are revising the logic that determines the EC level to be a
lookup based on a single number instead.

Ignore the MAJOR_RELEASE field from CHIP_INFO entirely, it will
always =1. Instead we will rely only on the EFUSE bits currently
designated for MINOR_RELEASE. Since we lost the ability to have
a common M.m we will just use a single incrementing value to
represent the ordinal revision number, regardless of major/minor,
i.e. the 1st revision is 0, the 2nd is 1, the 10th is 9, etc.
So that gives us these values for EFUSE_IMAGE_OUT_3[13:10]
  A.0 = 0 = 0x10 in Host Firmware
  A.1 = 1 = 0x11 in Host Firmware
  B.0 = 2 = 0x20 in Host Firmware
  B.1 = 3 = 0x21 in Host Firmware (if it were to happen)

Change-Id: I878491e8e004c231ce4dcd7abe887a947c7f3dc3
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89764
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: PPE CI &lt;ppe-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Louis Stermole &lt;stermole@us.ibm.com&gt;
Tested-by: Hostboot CI &lt;hostboot-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Christian R Geddes &lt;crgeddes@us.ibm.com&gt;
Reviewed-by: Jennifer A Stofer &lt;stofer@us.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89793
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>Add attribute for SPD_REVISION (byte 1)</title>
<updated>2020-02-07T16:51:56+00:00</updated>
<author>
<name>Mark Pizzutillo</name>
<email>Mark.Pizzutillo@ibm.com</email>
</author>
<published>2020-01-28T00:13:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=972885f17f7bf7f6b3cd496d651143a2bf91d740'/>
<id>urn:sha1:972885f17f7bf7f6b3cd496d651143a2bf91d740</id>
<content type='text'>
Rename previous uses of Byte 192, the ddimm module spd section
to avoid ambiguity. Renamed from spd_revision --&gt; ddimm_module_spd_revision

git-coreq:hostboot:I039173097619111ae5847660472e75ed9f2d5f1d
git-coreq:sbe:I039173097619111ae5847660472e75ed9f2d5f1d
git-coreq:hwsv:I039173097619111ae5847660472e75ed9f2d5f1d
Change-Id: I039173097619111ae5847660472e75ed9f2d5f1d
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/90410
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: HWSV CI &lt;hwsv-ci+hostboot@us.ibm.com&gt;
Tested-by: PPE CI &lt;ppe-ci+hostboot@us.ibm.com&gt;
Reviewed-by: STEPHEN GLANCY &lt;sglancy@us.ibm.com&gt;
Tested-by: Hostboot CI &lt;hostboot-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Louis Stermole &lt;stermole@us.ibm.com&gt;
Reviewed-by: Jennifer A Stofer &lt;stofer@us.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/90506
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>Add TARGET_TYPE_GENERICI2CSLAVE and relevant attributes</title>
<updated>2020-02-07T16:51:20+00:00</updated>
<author>
<name>Mark Pizzutillo</name>
<email>Mark.Pizzutillo@ibm.com</email>
</author>
<published>2020-01-24T22:45:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=2132642e40c948b15d8508f139624c2f2cf2f76f'/>
<id>urn:sha1:2132642e40c948b15d8508f139624c2f2cf2f76f</id>
<content type='text'>
Change-Id: I7d7579f66aba39ab8a462215417e7ab7745f3a6b
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/90321
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: HWSV CI &lt;hwsv-ci+hostboot@us.ibm.com&gt;
Tested-by: PPE CI &lt;ppe-ci+hostboot@us.ibm.com&gt;
Tested-by: Hostboot CI &lt;hostboot-ci+hostboot@us.ibm.com&gt;
Reviewed-by: STEPHEN GLANCY &lt;sglancy@us.ibm.com&gt;
Reviewed-by: Louis Stermole &lt;stermole@us.ibm.com&gt;
Reviewed-by: Jennifer A Stofer &lt;stofer@us.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/90331
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>set OTL Err Rpt Mask Reg 0 bit 21, OTL TX ECC UE on CQ buffer read data.</title>
<updated>2020-01-21T10:48:41+00:00</updated>
<author>
<name>Ryan Black</name>
<email>rblack@us.ibm.com</email>
</author>
<published>2020-01-09T20:45:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=166b70c61bfc0c5082353ef67f25474d020825d8'/>
<id>urn:sha1:166b70c61bfc0c5082353ef67f25474d020825d8</id>
<content type='text'>
Change-Id: Iacb879cf0aab5db14cee794701bdcf70df2b8dd1
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89053
Reviewed-by: Thi N Tran &lt;thi@us.ibm.com&gt;
Reviewed-by: Jenny Huynh &lt;jhuynh@us.ibm.com&gt;
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: PPE CI &lt;ppe-ci+hostboot@us.ibm.com&gt;
Tested-by: Hostboot CI &lt;hostboot-ci+hostboot@us.ibm.com&gt;
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Tested-by: HWSV CI &lt;hwsv-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Jennifer A Stofer &lt;stofer@us.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89055
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>for defect number HW476620</title>
<updated>2020-01-07T16:46:21+00:00</updated>
<author>
<name>Sheng-Hao Huang</name>
<email>sheng123@ibm.com</email>
</author>
<published>2019-09-12T18:13:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=26de8811a57f8b519453069a7d70c09359c7a56c'/>
<id>urn:sha1:26de8811a57f8b519453069a7d70c09359c7a56c</id>
<content type='text'>
Change-Id: I5188183869da97f4d4f0bb9105020d562948c031
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/83724
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: PPE CI &lt;ppe-ci+hostboot@us.ibm.com&gt;
Tested-by: Hostboot CI &lt;hostboot-ci+hostboot@us.ibm.com&gt;
Tested-by: HWSV CI &lt;hwsv-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Adam S Hale &lt;adam.samuel.hale@ibm.com&gt;
Reviewed-by: SHELTON LEUNG &lt;sleung@us.ibm.com&gt;
Reviewed-by: Jennifer A Stofer &lt;stofer@us.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/83795
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>Support EXP_FW_LOG command to get Explorer FW logs</title>
<updated>2019-12-19T13:31:22+00:00</updated>
<author>
<name>Matt Derksen</name>
<email>mderkse1@us.ibm.com</email>
</author>
<published>2019-08-16T13:56:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=245b9cef8f3cb4a537689b024a05088a0df6c15a'/>
<id>urn:sha1:245b9cef8f3cb4a537689b024a05088a0df6c15a</id>
<content type='text'>
Framework to send inband command and a proof of concept
adding explorer error log data via collectFfdc RC.

Change-Id: I41be5598eb6fb3239fd933e0a0563d1a99ed2fa0
RTC:205128
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/82335
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: PPE CI &lt;ppe-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Louis Stermole &lt;stermole@us.ibm.com&gt;
Tested-by: HWSV CI &lt;hwsv-ci+hostboot@us.ibm.com&gt;
Tested-by: Hostboot CI &lt;hostboot-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Christian R Geddes &lt;crgeddes@us.ibm.com&gt;
Reviewed-by: Jennifer A Stofer &lt;stofer@us.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/82796
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>Add new DDIMM spd version 0_3 and update UTs</title>
<updated>2019-12-17T04:47:33+00:00</updated>
<author>
<name>Mark Pizzutillo</name>
<email>Mark.Pizzutillo@ibm.com</email>
</author>
<published>2019-12-06T20:17:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=5f7d221ac1af6694b3ff8f0b699dad2c9ea238e4'/>
<id>urn:sha1:5f7d221ac1af6694b3ff8f0b699dad2c9ea238e4</id>
<content type='text'>
Change-Id: I0517bebd0514f0c073e424dc786be7352113c1f8
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/88225
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: Hostboot CI &lt;hostboot-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Louis Stermole &lt;stermole@us.ibm.com&gt;
Reviewed-by: STEPHEN GLANCY &lt;sglancy@us.ibm.com&gt;
Reviewed-by: ANDRE A MARIN &lt;aamarin@us.ibm.com&gt;
Dev-Ready: Mark Pizzutillo &lt;mark.pizzutillo@ibm.com&gt;
Tested-by: PPE CI &lt;ppe-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Jennifer A Stofer &lt;stofer@us.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/88232
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
<entry>
<title>Add asserts for invalid states of enterprise &amp; half dimm mode</title>
<updated>2019-12-09T04:15:54+00:00</updated>
<author>
<name>Mark Pizzutillo</name>
<email>Mark.Pizzutillo@ibm.com</email>
</author>
<published>2019-11-18T21:04:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-sbe/commit/?id=e1637c7db80eb10c39fb511463eb6bc368dba055'/>
<id>urn:sha1:e1637c7db80eb10c39fb511463eb6bc368dba055</id>
<content type='text'>
Change-Id: I995c333fc7f891ea7fa055097d4377a861a1e391
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/87345
Tested-by: FSP CI Jenkins &lt;fsp-CI-jenkins+hostboot@us.ibm.com&gt;
Tested-by: Jenkins Server &lt;pfd-jenkins+hostboot@us.ibm.com&gt;
Tested-by: PPE CI &lt;ppe-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Louis Stermole &lt;stermole@us.ibm.com&gt;
Reviewed-by: STEPHEN GLANCY &lt;sglancy@us.ibm.com&gt;
Dev-Ready: STEPHEN GLANCY &lt;sglancy@us.ibm.com&gt;
Tested-by: Hostboot CI &lt;hostboot-ci+hostboot@us.ibm.com&gt;
Reviewed-by: Jennifer A Stofer &lt;stofer@us.ibm.com&gt;
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/87599
Reviewed-by: RAJA DAS &lt;rajadas2@in.ibm.com&gt;
</content>
</entry>
</feed>
