blob: 92a9023b0b2f1369a82c817b5a83c2104eef54fb [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Wolfgang Denk511d0c72006-10-09 00:42:01 +02004#
wdenk2262cfe2002-11-18 00:14:45 +00005# (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02006# Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
wdenk2262cfe2002-11-18 00:14:45 +00007#
Wolfgang Denk1a459662013-07-08 09:37:19 +02008# SPDX-License-Identifier: GPL-2.0+
wdenk2262cfe2002-11-18 00:14:45 +00009#
10
Simon Glassdca92202017-01-16 07:03:48 -070011ifeq ($(CONFIG_$(SPL_)X86_64),y)
12extra-y = start64.o
13else
Masahiro Yamada3954b732013-10-21 11:53:34 +090014extra-y = start.o
Simon Glassdca92202017-01-16 07:03:48 -070015endif
Simon Glass972188b2017-01-16 07:03:45 -070016extra-$(CONFIG_$(SPL_)X86_16BIT_INIT) += resetvec.o start16.o
Simon Glass23b89d42017-01-16 07:04:10 -070017
18obj-y += cpu.o cpu_x86.o
Masahiro Yamada165ecd22014-11-13 12:28:40 +090019
Simon Glassfb355612017-01-16 07:04:11 -070020ifndef CONFIG_$(SPL_)X86_64
Simon Glass6f92ed82015-08-04 12:33:55 -060021AFLAGS_REMOVE_call32.o := -mregparm=3 \
22 $(if $(CONFIG_EFI_STUB_64BIT),-march=i386 -m32)
23AFLAGS_call32.o := -fpic -fshort-wchar
24
25extra-y += call32.o
Simon Glassfb355612017-01-16 07:04:11 -070026endif
Simon Glass6f92ed82015-08-04 12:33:55 -060027
Simon Glass1223d732016-03-11 22:06:53 -070028obj-y += intel_common/
Simon Glass3a1a18f2015-01-27 22:13:47 -070029obj-$(CONFIG_INTEL_BAYTRAIL) += baytrail/
Simon Glass2f3f4772016-03-11 22:07:18 -070030obj-$(CONFIG_INTEL_BROADWELL) += broadwell/
Masahiro Yamada37c99402014-11-13 12:28:41 +090031obj-$(CONFIG_SYS_COREBOOT) += coreboot/
Ben Stoltz3dcdd172015-08-04 12:33:46 -060032obj-$(CONFIG_EFI_APP) += efi/
Bin Menga65b25d2015-05-07 21:34:08 +080033obj-$(CONFIG_QEMU) += qemu/
Simon Glass2f6d42b2014-11-24 21:18:20 -070034obj-$(CONFIG_NORTHBRIDGE_INTEL_IVYBRIDGE) += ivybridge/
Bin Mengef46bea2015-02-02 22:35:29 +080035obj-$(CONFIG_INTEL_QUARK) += quark/
Bin Meng240a79d2014-12-17 15:50:39 +080036obj-$(CONFIG_INTEL_QUEENSBAY) += queensbay/
Simon Glassfb355612017-01-16 07:04:11 -070037obj-y += lapic.o ioapic.o
Simon Glassfb355612017-01-16 07:04:11 -070038obj-y += irq.o
Bin Mengd8f25c22017-01-18 03:32:54 -080039ifndef CONFIG_$(SPL_)X86_64
Simon Glass45b5a372015-04-29 22:25:59 -060040obj-$(CONFIG_SMP) += mp_init.o
Simon Glassfb355612017-01-16 07:04:11 -070041endif
Simon Glassaff25232015-01-01 16:18:07 -070042obj-y += mtrr.o
Simon Glassd188b182014-11-12 22:42:11 -070043obj-$(CONFIG_PCI) += pci.o
Simon Glassfb355612017-01-16 07:04:11 -070044ifndef CONFIG_$(SPL_)X86_64
Simon Glass45b5a372015-04-29 22:25:59 -060045obj-$(CONFIG_SMP) += sipi_vector.o
Simon Glassfb355612017-01-16 07:04:11 -070046endif
Simon Glass18739e22014-11-14 18:18:43 -070047obj-y += turbo.o
Simon Glassbe059e82017-01-16 07:03:57 -070048
Simon Glass93031592017-01-16 07:03:58 -070049ifeq ($(CONFIG_$(SPL_)X86_64),y)
50obj-y += x86_64/
51else
Simon Glassbe059e82017-01-16 07:03:57 -070052obj-y += i386/
53endif