mirror of https://github.com/acidanthera/audk.git
Add support for ARM MOVW/MOVT instructions that were added in the latest PE/COFF specification. Currently they are not hooked in as we need to wait for the tools to get updated. Tools are needed to convert ELF to PE/COFF and to refixup FVs.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11176 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
70b356a9ff
commit
bcec20df61
|
@ -2,7 +2,7 @@
|
||||||
Specific relocation fixups for ARM architecture.
|
Specific relocation fixups for ARM architecture.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
||||||
Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
Portions copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -14,8 +14,120 @@
|
||||||
**/
|
**/
|
||||||
|
|
||||||
#include "BasePeCoffLibInternals.h"
|
#include "BasePeCoffLibInternals.h"
|
||||||
|
#include <Library/BaseLib.h>
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
Pass in a pointer to an ARM MOVT or MOVW immediate instruciton and
|
||||||
|
return the immediate data encoded in the instruction
|
||||||
|
|
||||||
|
@param Instruction Pointer to ARM MOVT or MOVW immediate instruction
|
||||||
|
|
||||||
|
@return Immediate address encoded in the instruction
|
||||||
|
|
||||||
|
**/
|
||||||
|
UINT16
|
||||||
|
ThumbMovtImmediateAddress (
|
||||||
|
IN UINT16 *Instruction
|
||||||
|
)
|
||||||
|
{
|
||||||
|
UINT32 Movt;
|
||||||
|
UINT16 Address;
|
||||||
|
|
||||||
|
// Thumb2 is two 16-bit instructions working together. Not a single 32-bit instruction
|
||||||
|
// Example MOVT R0, #0 is 0x0000f2c0 or 0xf2c0 0x0000
|
||||||
|
Movt = (*Instruction << 16) | (*(Instruction + 1));
|
||||||
|
|
||||||
|
// imm16 = imm4:i:imm3:imm8
|
||||||
|
// imm4 -> Bit19:Bit16
|
||||||
|
// i -> Bit26
|
||||||
|
// imm3 -> Bit14:Bit12
|
||||||
|
// imm8 -> Bit7:Bit0
|
||||||
|
Address = (UINT16)(Movt & 0x000000ff); // imm8
|
||||||
|
Address |= (UINT16)((Movt >> 4) & 0x0000f700); // imm4 imm3
|
||||||
|
Address |= ((Movt & BIT26) ? BIT11 : 0); // i
|
||||||
|
return Address;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
Update an ARM MOVT or MOVW immediate instruction immediate data.
|
||||||
|
|
||||||
|
@param Instruction Pointer to ARM MOVT or MOVW immediate instruction
|
||||||
|
@param Address New addres to patch into the instruction
|
||||||
|
**/
|
||||||
|
VOID
|
||||||
|
ThumbMovtImmediatePatch (
|
||||||
|
IN OUT UINT16 *Instruction,
|
||||||
|
IN UINT16 Address
|
||||||
|
)
|
||||||
|
{
|
||||||
|
UINT16 Patch;
|
||||||
|
|
||||||
|
// First 16-bit chunk of instruciton
|
||||||
|
Patch = ((Address >> 12) & 0x000f); // imm4
|
||||||
|
Patch |= (((Address & BIT11) != 0) ? BIT10 : 0); // i
|
||||||
|
// Mask out instruction bits and or in address
|
||||||
|
*(Instruction) = (*Instruction & ~0x040f) | Patch;
|
||||||
|
|
||||||
|
// Second 16-bit chunk of instruction
|
||||||
|
Patch = Address & 0x000000ff; // imm8
|
||||||
|
Patch |= ((Address << 4) & 0x00007000); // imm3
|
||||||
|
// Mask out instruction bits and or in address
|
||||||
|
Instruction++;
|
||||||
|
*Instruction = (*Instruction & ~0x70ff) | Patch;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
Pass in a pointer to an ARM MOVW/MOVT instruciton pair and
|
||||||
|
return the immediate data encoded in the two` instruction
|
||||||
|
|
||||||
|
@param Instructions Pointer to ARM MOVW/MOVT insturction pair
|
||||||
|
|
||||||
|
@return Immediate address encoded in the instructions
|
||||||
|
|
||||||
|
**/
|
||||||
|
UINT32
|
||||||
|
ThumbMovwMovtImmediateAddress (
|
||||||
|
IN UINT16 *Instructions
|
||||||
|
)
|
||||||
|
{
|
||||||
|
UINT16 *Word;
|
||||||
|
UINT16 *Top;
|
||||||
|
|
||||||
|
Word = Instructions; // MOVW
|
||||||
|
Top = Word + 2; // MOVT
|
||||||
|
|
||||||
|
return (ThumbMovtImmediateAddress (Top) << 16) + ThumbMovtImmediateAddress (Word);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
Update an ARM MOVW/MOVT immediate instruction instruction pair.
|
||||||
|
|
||||||
|
@param Instructions Pointer to ARM MOVW/MOVT instruction pair
|
||||||
|
@param Address New addres to patch into the instructions
|
||||||
|
**/
|
||||||
|
VOID
|
||||||
|
ThumbMovwMovtImmediatePatch (
|
||||||
|
IN OUT UINT16 *Instructions,
|
||||||
|
IN UINT32 Address
|
||||||
|
)
|
||||||
|
{
|
||||||
|
UINT16 *Word;
|
||||||
|
UINT16 *Top;
|
||||||
|
|
||||||
|
Word = Instructions; // MOVW
|
||||||
|
Top = Word + 2; // MOVT
|
||||||
|
|
||||||
|
ThumbMovtImmediatePatch (Word, (UINT16)(Address & 0xffff));
|
||||||
|
ThumbMovtImmediatePatch (Top, (UINT16)(Address >> 16));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Performs an ARM-based specific relocation fixup and is a no-op on other
|
Performs an ARM-based specific relocation fixup and is a no-op on other
|
||||||
instruction sets.
|
instruction sets.
|
||||||
|
@ -36,7 +148,33 @@ PeCoffLoaderRelocateImageEx (
|
||||||
IN UINT64 Adjust
|
IN UINT64 Adjust
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return RETURN_UNSUPPORTED;
|
UINT16 *Fixup16;
|
||||||
|
UINT32 FixupVal;
|
||||||
|
|
||||||
|
Fixup16 = (UINT16 *) Fixup;
|
||||||
|
|
||||||
|
switch ((*Reloc) >> 12) {
|
||||||
|
|
||||||
|
case EFI_IMAGE_REL_BASED_ARM_MOV32T:
|
||||||
|
FixupVal = ThumbMovwMovtImmediateAddress (Fixup16) + (UINT32)Adjust;
|
||||||
|
ThumbMovwMovtImmediatePatch (Fixup16, FixupVal);
|
||||||
|
|
||||||
|
if (*FixupData != NULL) {
|
||||||
|
*FixupData = ALIGN_POINTER(*FixupData, sizeof(UINT64));
|
||||||
|
// Fixup16 is not aligned so we must copy it. Thumb instructions are streams of 16 bytes.
|
||||||
|
CopyMem (*FixupData, Fixup16, sizeof (UINT64));
|
||||||
|
*FixupData = *FixupData + sizeof(UINT64);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case EFI_IMAGE_REL_BASED_ARM_MOV32A:
|
||||||
|
ASSERT (FALSE);
|
||||||
|
// break omitted - ARM instruction encoding not implemented
|
||||||
|
default:
|
||||||
|
return RETURN_UNSUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
return RETURN_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -45,8 +183,6 @@ PeCoffLoaderRelocateImageEx (
|
||||||
loading and relocating of the image type. It's up to the caller to support
|
loading and relocating of the image type. It's up to the caller to support
|
||||||
the entry point.
|
the entry point.
|
||||||
|
|
||||||
The IA32/X64 version PE/COFF loader/relocater both support IA32, X64 and EBC images.
|
|
||||||
|
|
||||||
@param Machine Machine type from the PE Header.
|
@param Machine Machine type from the PE Header.
|
||||||
|
|
||||||
@return TRUE if this PE/COFF loader can load the image
|
@return TRUE if this PE/COFF loader can load the image
|
||||||
|
@ -85,6 +221,29 @@ PeHotRelocateImageEx (
|
||||||
IN UINT64 Adjust
|
IN UINT64 Adjust
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return RETURN_UNSUPPORTED;
|
UINT16 *Fixup16;
|
||||||
|
UINT32 FixupVal;
|
||||||
|
|
||||||
|
Fixup16 = (UINT16 *)Fixup;
|
||||||
|
|
||||||
|
switch ((*Reloc) >> 12) {
|
||||||
|
|
||||||
|
case EFI_IMAGE_REL_BASED_ARM_MOV32T:
|
||||||
|
*FixupData = ALIGN_POINTER (*FixupData, sizeof (UINT64));
|
||||||
|
if (*(UINT64 *) (*FixupData) == ReadUnaligned64 ((UINT64 *)Fixup16)) {
|
||||||
|
FixupVal = ThumbMovwMovtImmediateAddress (Fixup16) + (UINT32)Adjust;
|
||||||
|
ThumbMovwMovtImmediatePatch (Fixup16, FixupVal);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case EFI_IMAGE_REL_BASED_ARM_MOV32A:
|
||||||
|
ASSERT (FALSE);
|
||||||
|
// break omitted - ARM instruction encoding not implemented
|
||||||
|
default:
|
||||||
|
DEBUG ((EFI_D_ERROR, "PeHotRelocateEx:unknown fixed type\n"));
|
||||||
|
return RETURN_UNSUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
return RETURN_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue