mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 17:58:23 +00:00
e71de54a49
Add Intel Tangier SoC support. Intel Tangier SoC is a core part of Intel Merrifield platform. For example, Intel Edison board is based on such platform. The patch is based on work done by the following people (in alphabetical order): Aiden Park <aiden.park@intel.com> Dukjoon Jeon <dukjoon.jeon@intel.com> eric.park <eric.park@intel.com> Fabien Chereau <fabien.chereau@intel.com> Scott D Phillips <scott.d.phillips@intel.com> Sebastien Colleur <sebastienx.colleur@intel.com> Steve Sakoman <steve.sakoman@intel.com> Vincent Tinelli <vincent.tinelli@intel.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Signed-off-by: Vincent Tinelli <vincent.tinelli@intel.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
#
|
|
# (C) Copyright 2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2002
|
|
# Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifeq ($(CONFIG_$(SPL_)X86_64),y)
|
|
extra-y = start64.o
|
|
else
|
|
extra-y = start.o
|
|
endif
|
|
extra-$(CONFIG_$(SPL_)X86_16BIT_INIT) += resetvec.o start16.o
|
|
|
|
obj-y += cpu.o cpu_x86.o
|
|
|
|
ifndef CONFIG_$(SPL_)X86_64
|
|
AFLAGS_REMOVE_call32.o := -mregparm=3 \
|
|
$(if $(CONFIG_EFI_STUB_64BIT),-march=i386 -m32)
|
|
AFLAGS_call32.o := -fpic -fshort-wchar
|
|
|
|
extra-y += call32.o
|
|
endif
|
|
|
|
obj-y += intel_common/
|
|
obj-$(CONFIG_INTEL_BAYTRAIL) += baytrail/
|
|
obj-$(CONFIG_INTEL_BROADWELL) += broadwell/
|
|
obj-$(CONFIG_SYS_COREBOOT) += coreboot/
|
|
obj-$(CONFIG_EFI_APP) += efi/
|
|
obj-$(CONFIG_QEMU) += qemu/
|
|
obj-$(CONFIG_NORTHBRIDGE_INTEL_IVYBRIDGE) += ivybridge/
|
|
obj-$(CONFIG_INTEL_QUARK) += quark/
|
|
obj-$(CONFIG_INTEL_QUEENSBAY) += queensbay/
|
|
obj-$(CONFIG_INTEL_TANGIER) += tangier/
|
|
obj-y += lapic.o ioapic.o
|
|
obj-y += irq.o
|
|
ifndef CONFIG_$(SPL_)X86_64
|
|
obj-$(CONFIG_SMP) += mp_init.o
|
|
endif
|
|
obj-y += mtrr.o
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
ifndef CONFIG_$(SPL_)X86_64
|
|
obj-$(CONFIG_SMP) += sipi_vector.o
|
|
endif
|
|
obj-y += turbo.o
|
|
obj-$(CONFIG_HAVE_ACPI_RESUME) += wakeup.o
|
|
|
|
ifeq ($(CONFIG_$(SPL_)X86_64),y)
|
|
obj-y += x86_64/
|
|
else
|
|
obj-y += i386/
|
|
endif
|