summaryrefslogtreecommitdiffstats
path: root/sbe/sample/pk_scom.h
diff options
context:
space:
mode:
authorDerk Rembold <rembold@de.ibm.com>2015-02-24 08:58:49 +0100
committerDerk Rembold <rembold@de.ibm.com>2015-02-24 09:19:34 -0600
commita4f967ae51ed4b9bad13145fa3085405f4b707a4 (patch)
tree15cf2e60705e46fba86ba30a6b3c5af43b629da1 /sbe/sample/pk_scom.h
parenta28f852be2197680c6864a8b66b8cb0743893471 (diff)
downloadtalos-sbe-a4f967ae51ed4b9bad13145fa3085405f4b707a4.tar.gz
talos-sbe-a4f967ae51ed4b9bad13145fa3085405f4b707a4.zip
checking sample see what happens
Change-Id: I583ffd4340ddc9ee73022b7fe72d3f947e7ce4c7 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/15960 Reviewed-by: Derk Rembold <rembold@de.ibm.com> Tested-by: Derk Rembold <rembold@de.ibm.com>
Diffstat (limited to 'sbe/sample/pk_scom.h')
-rw-r--r--sbe/sample/pk_scom.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/sbe/sample/pk_scom.h b/sbe/sample/pk_scom.h
new file mode 100644
index 00000000..72d5fa49
--- /dev/null
+++ b/sbe/sample/pk_scom.h
@@ -0,0 +1,42 @@
+//-----------------------------------------------------------------------------
+// *! (C) Copyright International Business Machines Corp. 2014
+// *! All Rights Reserved -- Property of IBM
+// *! *** IBM Confidential ***
+//-----------------------------------------------------------------------------
+
+/// \file sample_main.c
+/// \brief Sample program that creates and starts a thread
+///
+/// This file demonstrates how to create a thread and run it. It also provides
+/// an example of how to add traces to the code.
+
+#ifndef __PK_SCOM_H__
+#define __PK_SCOM_H__
+
+/// SCOM operations return non-zero error codes that may or may not indicate
+/// an actual error, depending on which SCOM is begin accessed. This error
+/// code is returned as the value of get/putscom(). The error code value
+/// increases with teh severity of the error.
+#define CFAM_FSI_STATUS_0x00001007 0x00001007
+typedef union cfam_fsi_status_reg {
+ uint64_t value;
+ struct {
+ uint64_t ignore_fields1 : 17 ;
+ uint64_t pib_error_code : 3 ;
+ uint64_t igore_fields2 : 44 ;
+ } fields;
+} cfam_fsi_status_reg_t;
+#define PCB_ERROR_NONE 0
+#define PCB_ERROR_RESOURCE_OCCUPIED 1
+#define PCB_ERROR_CHIPLET_OFFLINE 2
+#define PCB_ERROR_PARTIAL_GOOD 3
+#define PCB_ERROR_ADDRESS_ERROR 4
+#define PCB_ERROR_CLOCK_ERROR 5
+#define PCB_ERROR_PACKET_ERROR 6
+#define PCB_ERROR_TIMEOUT 7
+
+uint32_t putscom( uint32_t i_chiplet, uint32_t i_address, uint64_t i_data);
+
+uint32_t getscom( uint32_t i_chiplet, uint32_t i_address, uint64_t *o_data);
+
+#endif // __PK_SCOM_H__
OpenPOWER on IntegriCloud