diff options
author | Oliver O'Halloran <oohall@gmail.com> | 2021-08-04 12:50:58 +0530 |
---|---|---|
committer | Vasant Hegde <hegdevasant@linux.vnet.ibm.com> | 2021-08-06 12:22:28 +0530 |
commit | 02f90c12a7949c34a2d405f939bef1f352a542d4 (patch) | |
tree | 6fe78148641c711d64dd223aa47931833279c95a /hw | |
parent | 7706e3300ceaa446e5f2fe1d3078fb0ace49b4d7 (diff) | |
download | skiboot-02f90c12a7949c34a2d405f939bef1f352a542d4.zip skiboot-02f90c12a7949c34a2d405f939bef1f352a542d4.tar.gz skiboot-02f90c12a7949c34a2d405f939bef1f352a542d4.tar.bz2 |
prd: Add base P10 support
Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/prd.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -740,6 +740,11 @@ void prd_init(void) prd_ipoll_status_reg = PRD_P9_IPOLL_REG_STATUS; prd_ipoll_mask = PRD_P9_IPOLL_MASK; break; + case proc_gen_p10: /* IPOLL regs are the same for p9 and p10 */ + prd_ipoll_mask_reg = PRD_P9_IPOLL_REG_MASK; + prd_ipoll_status_reg = PRD_P9_IPOLL_REG_STATUS; + prd_ipoll_mask = PRD_P9_IPOLL_MASK; + break; default: assert(0); } |