aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVasant Hegde <hegdevasant@linux.vnet.ibm.com>2017-11-29 18:41:17 +0530
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-12-14 23:56:06 -0600
commit9088e400d3196d691980e36b908548cefcbcd3e0 (patch)
tree6439308ec2b5bd40e1fea3b55fbffa0f9b959578 /include
parent7a2610a145a85cc473e4075298b72e276a1ce684 (diff)
downloadskiboot-9088e400d3196d691980e36b908548cefcbcd3e0.zip
skiboot-9088e400d3196d691980e36b908548cefcbcd3e0.tar.gz
skiboot-9088e400d3196d691980e36b908548cefcbcd3e0.tar.bz2
prd: Add generic response structure inside prd_fw_msg
This patch adds generic response structure. Also sync prd_fw_msg type macros with hostboot. Next patch makes use of this structure/macro. CC: Jeremy Kerr <jk@ozlabs.org> Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/prd-fw-msg.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/prd-fw-msg.h b/include/prd-fw-msg.h
index c00405d..d68482c 100644
--- a/include/prd-fw-msg.h
+++ b/include/prd-fw-msg.h
@@ -26,10 +26,20 @@
enum {
PRD_FW_MSG_TYPE_REQ_NOP = 0,
PRD_FW_MSG_TYPE_RESP_NOP = 1,
+ PRD_FW_MSG_TYPE_RESP_GENERIC = 2,
+ PRD_FW_MSG_TYPE_REQ_HCODE_UPDATE = 3,
+ PRD_FW_MSG_TYPE_HBRT_FSP = 4,
+ PRD_FW_MSG_TYPE_ERROR_LOG = 5,
+ PRD_FW_MSG_TYPE_FSP_HBRT = 6,
};
struct prd_fw_msg {
__be64 type;
+ union {
+ struct {
+ __be64 status;
+ } generic_resp;
+ };
};
#define PRD_FW_MSG_BASE_SIZE sizeof(__be64)