Revert "arm64: Add verstage support"

This reverts commit 36960019dc.

Change-Id: Ie347622774bd9343face4890da2f65e8b29f4fb7
Reviewed-on: https://chromium-review.googlesource.com/221944
Reviewed-by: Michael Spang <spang@chromium.org>
Commit-Queue: Michael Spang <spang@chromium.org>
Tested-by: Michael Spang <spang@chromium.org>
This commit is contained in:
Michael Spang 2014-10-07 14:35:09 +00:00
commit 1182c46e39
5 changed files with 0 additions and 41 deletions

View file

@ -3,10 +3,6 @@ config ARCH_BOOTBLOCK_ARM64
default n
select ARCH_ARM64
config ARCH_VERSTAGE_ARM64
bool
default n
config ARCH_ROMSTAGE_ARM64
bool
default n

View file

@ -65,22 +65,6 @@ $(objcbfs)/bootblock.debug: $$(bootblock-objs)
endif # CONFIG_ARCH_BOOTBLOCK_ARM64
###############################################################################
# verification stage
###############################################################################
$(objcbfs)/verstage.debug: $$(verstage-objs) $$(VB2_LIB)
@printf " LINK $(subst $(obj)/,,$(@))\n"
$(call link,verstage,$(filter %.a %.o,$(^)),-o $(@) -L$(obj) -T $(obj)/mainboard/$(MAINBOARDDIR)/memlayout.verstage.ld,--gc-sections)
verstage-$(CONFIG_EARLY_CONSOLE) += early_console.c
verstage-y += div0.c
verstage-y += eabi_compat.c
verstage-y += ../../lib/memset.c
verstage-y += ../../lib/memcpy.c
verstage-y += ../../lib/memmove.c
verstage-y += stages.c
################################################################################
# romstage
################################################################################

View file

@ -1,9 +1,6 @@
config ARCH_BOOTBLOCK_ARM_V8_64
def_bool n
select ARCH_BOOTBLOCK_ARM64
config ARCH_VERSTAGE_ARM_V8_64
def_bool n
select ARCH_VERSTAGE_ARM64
config ARCH_ROMSTAGE_ARM_V8_64
def_bool n
select ARCH_ROMSTAGE_ARM64

View file

@ -45,20 +45,6 @@ bootblock-S-ccopts += $(armv8_asm_flags)
endif
################################################################################
## verstage
################################################################################
ifeq ($(CONFIG_ARCH_VERSTAGE_ARM_V8_64),y)
verstage-y += cache.c
verstage-y += cpu.S
verstage-y += exception.c
verstage-c-ccopts += $(armv8_flags)
verstage-S-ccopts += $(armv8_asm_flags)
endif
################################################################################
## romstage
################################################################################

View file

@ -34,10 +34,6 @@ ifeq ($(CONFIG_ARCH_BOOTBLOCK_ARM_V8_64),y)
bootblock-y += $(lib_access)
endif
ifeq ($(CONFIG_ARCH_VERSTAGE_ARM_V8_64),y)
verstage-y += $(lib_access)
endif
ifeq ($(CONFIG_ARCH_ROMSTAGE_ARM_V8_64),y)
romstage-y += $(lib_access)
endif