summaryrefslogtreecommitdiffstats
path: root/src/usr/runtime/hdatstructs.H
diff options
context:
space:
mode:
authorStephen Cprek <smcprek@us.ibm.com>2018-01-10 16:51:09 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2018-01-17 11:57:12 -0500
commit26bbcd97d817453a114a43b661bceff5aa0131f2 (patch)
tree3d91980415cf096c63fab050df41c3fa8238b230 /src/usr/runtime/hdatstructs.H
parent329b81443b43d3fd0ea2218e72f5c0139e47d184 (diff)
downloadblackbird-hostboot-26bbcd97d817453a114a43b661bceff5aa0131f2.tar.gz
blackbird-hostboot-26bbcd97d817453a114a43b661bceff5aa0131f2.zip
Open Untrusted Communication for SP
Change-Id: I87c7fe74349521eaec6ebf373e99f13eb1bf74f8 CQ:SW412793 Backport:release-fips910 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/51742 Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Reviewed-by: Michael Baiocchi <mbaiocch@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/runtime/hdatstructs.H')
-rw-r--r--src/usr/runtime/hdatstructs.H22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/usr/runtime/hdatstructs.H b/src/usr/runtime/hdatstructs.H
index 78c057fde..29f23eac8 100644
--- a/src/usr/runtime/hdatstructs.H
+++ b/src/usr/runtime/hdatstructs.H
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2012,2017 */
+/* Contributors Listed Below - COPYRIGHT 2012,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -418,4 +418,24 @@ struct hbHypCommArea_t
}
} PACKED;
+/** @brief The fields in the CPU Controls Legacy structure are a set of
+ * address / length pairs as shown below
+ */
+struct hdatCpuCtrlPair_t
+{
+ uint64_t address; // 0x0000 Absolute main store adress relative to HRMOR
+ uint64_t size; // 0x0008 Data structure size in bytes
+}__attribute__ ((packed));
+
+/** @brief CPU Controls Legacy Structure pointed to by the CPU Controls Header
+ * Area pointer in the CPU Controls
+ */
+struct hdatCpuCtrlInfo_t
+{
+ hdatCpuCtrlPair_t spAddrTable; // SP Address Table (SPAT)
+ hdatCpuCtrlPair_t spAttnArea1; // SP Attention Area 1
+ hdatCpuCtrlPair_t spAttnArea2; // SP Attention Area 2
+ hdatCpuCtrlPair_t servRoutineData; // Service Routines Data Area
+} __attribute__ ((packed));
+
#endif
OpenPOWER on IntegriCloud