aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2015-09-15 12:40:06 +0930
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-09-30 20:59:32 +1000
commit308f4889524576ca779add4756d83bb95b351af9 (patch)
tree11f94acc3da56580a068a7b5d006562493155e38 /include
parenta667be78eb3865cd444d5a19be3378f3b073da15 (diff)
downloadskiboot-308f4889524576ca779add4756d83bb95b351af9.zip
skiboot-308f4889524576ca779add4756d83bb95b351af9.tar.gz
skiboot-308f4889524576ca779add4756d83bb95b351af9.tar.bz2
Add opal_boot_complete to debug descriptor
This tells us when we've entered the host. First use case is knowing if we can can rely on host communication working, such as receiving and acting on an opal_msg. Signed-off-by: Joel Stanley <joel@jms.id.au> Reviewed-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com> [stewart@linux.vnet.ibm.com: use real bit field rather than C bitfield] Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/skiboot.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/skiboot.h b/include/skiboot.h
index 4b58597..4eec6db 100644
--- a/include/skiboot.h
+++ b/include/skiboot.h
@@ -56,6 +56,7 @@ static inline bool is_rodata(const void *p)
return ((const char *)p >= __rodata_start && (const char *)p < __rodata_end);
}
+#define OPAL_BOOT_COMPLETE 0x1
/* Debug descriptor. This structure is pointed to by the word at offset
* 0x80 in the sapphire binary
*/
@@ -65,7 +66,7 @@ struct debug_descriptor {
u32 version;
u8 console_log_levels; /* high 4 bits in memory,
* low 4 bits driver (e.g. uart). */
- u8 reserved1;
+ u8 state_flags; /* various state flags - OPAL_BOOT_COMPLETE etc */
u16 reserved2;
u32 reserved[2];