mirror of
https://github.com/meizu-m86/kexec-tools-arm64
synced 2025-11-04 05:46:10 +08:00
kexec/ppc64 ELF ABIv2 ABI support
When building in PPC64 little endian mode, the compiler is now using the new ABI v2. Among other changes, this new ABI removes the function descriptors and changes the way the TOC address is computed when entering a C function. The purgatory assembly part where the dot symbols are removed, and ELF relocation code are impacted in this patch. Signed-off-by: Laurent Dufour <ldufour@linux.vnet.ibm.com> Signed-off-by: Simon Horman <horms@verge.net.au>
This commit is contained in:
committed by
Simon Horman
parent
178e393d3a
commit
d047cb716e
@@ -1984,6 +1984,10 @@ typedef Elf32_Addr Elf32_Conflict;
|
||||
#define R_PPC64_DTPREL16_HIGHERA 104 /* half16 (sym+add)@dtprel@highera */
|
||||
#define R_PPC64_DTPREL16_HIGHEST 105 /* half16 (sym+add)@dtprel@highest */
|
||||
#define R_PPC64_DTPREL16_HIGHESTA 106 /* half16 (sym+add)@dtprel@highesta */
|
||||
#define R_PPC64_REL16 249 /* half16 (sym+add-.) */
|
||||
#define R_PPC64_REL16_LO 250 /* half16 (sym+add-.)@l */
|
||||
#define R_PPC64_REL16_HI 251 /* half16 (sym+add-.)@h */
|
||||
#define R_PPC64_REL16_HA 252 /* half16 (sym+add-.)@ha */
|
||||
|
||||
/* Keep this the last entry. */
|
||||
#define R_PPC64_NUM 107
|
||||
|
||||
@@ -144,6 +144,33 @@ void machine_apply_elf_rel(struct mem_ehdr *ehdr, unsigned long r_type,
|
||||
*(uint16_t *)location = (((uint64_t)value >> 48) & 0xffff);
|
||||
break;
|
||||
|
||||
/* R_PPC64_REL16_HA and R_PPC64_REL16_LO are handled to support
|
||||
* ABIv2 r2 assignment based on r12 for PIC executable.
|
||||
* Here address is know so replace
|
||||
* 0: addis 2,12,.TOC.-0b@ha
|
||||
* addi 2,2,.TOC.-0b@l
|
||||
* by
|
||||
* lis 2,.TOC.@ha
|
||||
* addi 2,2,.TOC.@l
|
||||
*/
|
||||
case R_PPC64_REL16_HA:
|
||||
/* check that we are dealing with the addis 2,12 instruction */
|
||||
if (((*(uint32_t*)location) & 0xffff0000) != 0x3c4c0000)
|
||||
die("Unexpected instruction for R_PPC64_REL16_HA");
|
||||
value += my_r2(ehdr);
|
||||
/* replacing by lis 2 */
|
||||
*(uint32_t *)location = 0x3c400000 + ((value >> 16) & 0xffff);
|
||||
break;
|
||||
|
||||
case R_PPC64_REL16_LO:
|
||||
/* check that we are dealing with the addi 2,2 instruction */
|
||||
if (((*(uint32_t*)location) & 0xffff0000) != 0x38420000)
|
||||
die("Unexpected instruction for R_PPC64_REL16_LO");
|
||||
|
||||
value += my_r2(ehdr) - 4;
|
||||
*(uint16_t *)location = value & 0xffff;
|
||||
break;
|
||||
|
||||
default:
|
||||
die("Unknown rela relocation: %lu\n", r_type);
|
||||
break;
|
||||
|
||||
@@ -379,12 +379,12 @@ int elf_rel_load(struct mem_ehdr *ehdr, struct kexec_info *info,
|
||||
* Relocation Entries: If the index is STN_UNDEF,
|
||||
* the undefined symbol index, the relocation uses 0
|
||||
* as the "symbol value".
|
||||
* So, is this really an error condition to flag die?
|
||||
* TOC symbols appear as undefined but should be
|
||||
* resolved as well. Their type is STT_NOTYPE so allow
|
||||
* such symbols to be processed.
|
||||
*/
|
||||
/*
|
||||
die("Undefined symbol: %s\n", name);
|
||||
*/
|
||||
continue;
|
||||
if (ELF32_ST_TYPE(sym.st_info) != STT_NOTYPE)
|
||||
die("Undefined symbol: %s\n", name);
|
||||
}
|
||||
sec_base = 0;
|
||||
if (sym.st_shndx == SHN_COMMON) {
|
||||
|
||||
@@ -9,10 +9,12 @@ ppc64_PURGATORY_SRCS += purgatory/arch/ppc64/console-ppc64.c
|
||||
ppc64_PURGATORY_SRCS += purgatory/arch/ppc64/crashdump_backup.c
|
||||
ppc64_PURGATORY_SRCS += purgatory/arch/ppc64/misc.S
|
||||
|
||||
ppc64_PURGATORY_EXTRA_CFLAGS += -m64 -mcall-aixdesc -msoft-float
|
||||
ppc64_PURGATORY_EXTRA_ASFLAGS += -m64 -mcall-aixdesc
|
||||
ppc64_PURGATORY_EXTRA_CFLAGS += -m64 -msoft-float
|
||||
ppc64_PURGATORY_EXTRA_ASFLAGS += -m64
|
||||
ifeq ($(SUBARCH),BE)
|
||||
ppc64_PURGATORY_EXTRA_LDFLAGS += -melf64ppc
|
||||
ppc64_PURGATORY_EXTRA_CFLAGS += -mcall-aixdesc
|
||||
ppc64_PURGATORY_EXTRA_ASFLAGS += -mcall-aixdesc
|
||||
else
|
||||
ppc64_PURGATORY_EXTRA_LDFLAGS += -melf64lppc
|
||||
ppc64_PURGATORY_EXTRA_CFLAGS += -mlittle-endian
|
||||
|
||||
@@ -9,12 +9,13 @@
|
||||
* as published by the Free Software Foundation; either version
|
||||
* 2 of the License, or (at your option) any later version.
|
||||
*/
|
||||
#include "ppc64_asm.h"
|
||||
|
||||
#define HVSC .long 0x44000022
|
||||
.text
|
||||
.machine ppc64
|
||||
.globl .plpar_hcall_norets
|
||||
.plpar_hcall_norets:
|
||||
.globl DOTSYM(plpar_hcall_norets)
|
||||
DOTSYM(plpar_hcall_norets):
|
||||
or 6,6,6 # medium low priority
|
||||
mfcr 0
|
||||
stw 0,8(1)
|
||||
|
||||
16
purgatory/arch/ppc64/ppc64_asm.h
Normal file
16
purgatory/arch/ppc64/ppc64_asm.h
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* ppc64_asm.h - common defines for PPC64 assembly parts
|
||||
*
|
||||
* This source code is licensed under the GNU General Public License,
|
||||
* Version 2. See the file COPYING for more details.
|
||||
*/
|
||||
|
||||
/*
|
||||
* ABIv1 requires dot symbol while ABIv2 does not.
|
||||
*/
|
||||
#if defined(_CALL_ELF) && _CALL_ELF == 2
|
||||
#define DOTSYM(a) a
|
||||
#else
|
||||
#define GLUE(a,b) a##b
|
||||
#define DOTSYM(a) GLUE(.,a)
|
||||
#endif
|
||||
@@ -18,6 +18,8 @@
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
|
||||
#include "ppc64_asm.h"
|
||||
|
||||
# v2wrap.S
|
||||
# a wrapper to call purgatory code to backup first
|
||||
# 32kB of first kernel into the backup region
|
||||
@@ -77,7 +79,7 @@ master:
|
||||
ld 1,0(6) #setup stack
|
||||
|
||||
subi 1,1,112
|
||||
bl .purgatory
|
||||
bl DOTSYM(purgatory)
|
||||
nop
|
||||
|
||||
or 3,3,3 # ok now to high priority, lets boot
|
||||
|
||||
Reference in New Issue
Block a user