diff options
author | Oliver O'Halloran <oohall@gmail.com> | 2017-01-13 17:56:16 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-01-16 09:18:05 +1100 |
commit | 45b1170171775ad3df994da69933f2f8c659c398 (patch) | |
tree | 3272bde86d744811b3ef382cabac1743b213d3dd | |
parent | a30758f6a32eafc31c0f5bb5929d1c615c7b43ce (diff) | |
download | skiboot-45b1170171775ad3df994da69933f2f8c659c398.zip skiboot-45b1170171775ad3df994da69933f2f8c659c398.tar.gz skiboot-45b1170171775ad3df994da69933f2f8c659c398.tar.bz2 |
head: add new OPAL entry points to the NACA
The NACA now incorporates the entry points for the primary and secondary
threads.
Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | asm/head.S | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -107,6 +107,7 @@ hir_trigger: /* Entry point set by the FSP */ .= 0x180 +hdat_entry: li %r27,0 b boot_entry @@ -777,7 +778,9 @@ naca: .byte 0 /* 0x01b5 : default state for SW attn */ .space 1 .byte 0x01 /* 0x01b7 : PCIA format */ - .space 0xe48 + .llong hdat_entry /* 0x01b8 : Primary thread entry */ + .llong hdat_entry /* 0x01c0 : Secondary thread entry */ + .space 0xe38 .balign 0x10 hv_release_data: |