[Skiboot] [RFC PATCH 1/2] hdat: Add 'primary' property to master chip xscom node

Vasant Hegde hegdevasant at linux.vnet.ibm.com
Thu Feb 16 02:14:14 AEDT 2017


Needed for SBE communication as some of the SBE MBOX commands
has to be sent to master chip SBE only.

Signed-off-by: Vasant Hegde <hegdevasant at linux.vnet.ibm.com>
---
 hdata/spira.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/hdata/spira.c b/hdata/spira.c
index 9ab7d35..f2e5b69 100644
--- a/hdata/spira.c
+++ b/hdata/spira.c
@@ -631,8 +631,10 @@ static void add_chiptod_node(unsigned int chip_id, int flags)
 	dt_add_property_strings(node, "compatible", "ibm,power-chiptod",
 			       compat_str);
 
-	if (flags & CHIPTOD_ID_FLAGS_PRIMARY)
+	if (flags & CHIPTOD_ID_FLAGS_PRIMARY) {
+		dt_add_property(xscom_node, "primary", NULL, 0);
 		dt_add_property(node, "primary", NULL, 0);
+	}
 	if (flags & CHIPTOD_ID_FLAGS_SECONDARY)
 		dt_add_property(node, "secondary", NULL, 0);
 }
-- 
2.5.5



More information about the Skiboot mailing list