diff options
author | Vasant Hegde <hegdevasant@linux.vnet.ibm.com> | 2019-06-24 14:12:29 +0530 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2019-06-27 11:35:22 +1000 |
commit | 0bf01d93ee39c48fa06b5d4ecbac77f5592395b6 (patch) | |
tree | 5e1ace4995a2f67dbd43188e36c4c68dd7a8efd0 | |
parent | d2005818bea35e74b8991a615ac5bee389263126 (diff) | |
download | skiboot-0bf01d93ee39c48fa06b5d4ecbac77f5592395b6.zip skiboot-0bf01d93ee39c48fa06b5d4ecbac77f5592395b6.tar.gz skiboot-0bf01d93ee39c48fa06b5d4ecbac77f5592395b6.tar.bz2 |
platform/zz: Add new platform type
We have new platform type under ZZ. Lets add them. With this fix
we are able to boot the system.
Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r-- | platforms/ibm-fsp/zz.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/platforms/ibm-fsp/zz.c b/platforms/ibm-fsp/zz.c index ac608f6..f44c618 100644 --- a/platforms/ibm-fsp/zz.c +++ b/platforms/ibm-fsp/zz.c @@ -51,7 +51,10 @@ static bool zz_probe(void) if (dt_node_is_compatible(dt_root, "ibm,zz-1s2u") || dt_node_is_compatible(dt_root, "ibm,zz-1s4u") || dt_node_is_compatible(dt_root, "ibm,zz-2s2u") || - dt_node_is_compatible(dt_root, "ibm,zz-2s4u")) + dt_node_is_compatible(dt_root, "ibm,zz-2s4u") || + dt_node_is_compatible(dt_root, "ibm,zz-1s4u+gen4") || + dt_node_is_compatible(dt_root, "ibm,zz-2s2u+gen4") || + dt_node_is_compatible(dt_root, "ibm,zz-2s4u+gen4")) return true; return false; |