]> git.sur5r.net Git - u-boot/blob - arch/x86/lib/Makefile
x86: fsp: Add FSP_GRAPHICS_INFO_HOB
[u-boot] / arch / x86 / lib / Makefile
1 #
2 # (C) Copyright 2002-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 ifndef CONFIG_X86_64
9 obj-y += bios.o
10 obj-y += bios_asm.o
11 obj-y += bios_interrupts.o
12 endif
13 ifndef CONFIG_SPL_BUILD
14 obj-$(CONFIG_CMD_BOOTM) += bootm.o
15 endif
16 obj-y   += cmd_boot.o
17 obj-$(CONFIG_SEABIOS) += coreboot_table.o
18 obj-y   += early_cmos.o
19 obj-$(CONFIG_EFI) += efi/
20 obj-y   += e820.o
21 obj-y   += gcc.o
22 obj-y   += init_helpers.o
23 obj-y   += interrupts.o
24 obj-y   += lpc-uclass.o
25 obj-y   += mpspec.o
26 obj-$(CONFIG_ENABLE_MRC_CACHE) += mrccache.o
27 obj-y += cmd_mtrr.o
28 obj-y   += northbridge-uclass.o
29 obj-$(CONFIG_I8259_PIC) += i8259.o
30 obj-$(CONFIG_I8254_TIMER) += i8254.o
31 obj-y   += pinctrl_ich6.o
32 obj-y   += pirq_routing.o
33 obj-y   += relocate.o
34 obj-y += physmem.o
35 obj-$(CONFIG_INTEL_MID) += pmu.o
36 obj-$(CONFIG_X86_RAMTEST) += ramtest.o
37 obj-$(CONFIG_INTEL_MID) += scu.o
38 obj-y   += sections.o
39 obj-y += sfi.o
40 obj-y   += string.o
41 obj-$(CONFIG_HAVE_ACPI_RESUME) += acpi_s3.o
42 ifndef CONFIG_QEMU
43 obj-$(CONFIG_GENERATE_ACPI_TABLE) += acpi_table.o
44 endif
45 obj-y   += tables.o
46 ifndef CONFIG_SPL_BUILD
47 obj-$(CONFIG_CMD_ZBOOT) += zimage.o
48 endif
49 obj-$(CONFIG_HAVE_FSP) += fsp/
50 obj-$(CONFIG_SPL_BUILD) += spl.o
51
52 extra-$(CONFIG_USE_PRIVATE_LIBGCC) += lib.a
53
54 NORMAL_LIBGCC = $(shell $(CC) $(PLATFORM_CPPFLAGS) -print-libgcc-file-name)
55 OBJCOPYFLAGS := --prefix-symbols=__normal_
56 $(obj)/lib.a: $(NORMAL_LIBGCC) FORCE
57         $(call if_changed,objcopy)
58
59 ifeq ($(CONFIG_$(SPL_)X86_64),)
60 obj-$(CONFIG_EFI_APP) += crt0_ia32_efi.o reloc_ia32_efi.o
61 endif
62
63 ifneq ($(CONFIG_EFI_STUB),)
64
65 CFLAGS_REMOVE_reloc_ia32_efi.o += -mregparm=3
66 CFLAGS_reloc_ia32_efi.o += -fpic -fshort-wchar
67
68 # When building for 64-bit we must remove the i386-specific flags
69 CFLAGS_REMOVE_reloc_x86_64_efi.o += -mregparm=3 -march=i386 -m32
70 CFLAGS_reloc_x86_64_efi.o += -fpic -fshort-wchar
71
72 AFLAGS_REMOVE_crt0_x86_64_efi.o += -mregparm=3 -march=i386 -m32
73 AFLAGS_crt0_x86_64_efi.o += -fpic -fshort-wchar
74
75 extra-$(CONFIG_EFI_STUB_32BIT) += crt0_ia32_efi.o reloc_ia32_efi.o
76 extra-$(CONFIG_EFI_STUB_64BIT) += crt0_x86_64_efi.o reloc_x86_64_efi.o
77
78 endif
79
80 ifneq ($(CONFIG_EFI_STUB)$(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),)
81 ifeq ($(CONFIG_$(SPL_)X86_64),)
82 extra-y += $(EFI_CRT0) $(EFI_RELOC)
83 endif
84 endif