soc/intel/xeon_sp/chip_common: Improve the domain ID
[coreboot2.git] / src / soc / intel / jasperlake / Makefile.inc
blob31ea8657ee1b17fe19373c50d46abe28a0f2c679
1 ## SPDX-License-Identifier: GPL-2.0-only
2 ifeq ($(CONFIG_SOC_INTEL_JASPERLAKE),y)
4 subdirs-y += romstage
5 subdirs-y += ../../../cpu/intel/microcode
6 subdirs-y += ../../../cpu/intel/turbo
8 # all (bootblock, verstage, romstage, postcar, ramstage)
9 all-y += gspi.c
10 all-y += i2c.c
11 all-y += pmutil.c
12 all-y += spi.c
13 all-y += uart.c
15 bootblock-y += bootblock/bootblock.c
16 bootblock-y += bootblock/pch.c
17 bootblock-y += bootblock/report_platform.c
18 bootblock-y += espi.c
19 bootblock-y += gpio.c
20 bootblock-y += p2sb.c
22 romstage-y += espi.c
23 romstage-y += gpio.c
24 romstage-y += meminit.c
25 romstage-y += reset.c
27 ramstage-y += acpi.c
28 ramstage-y += chip.c
29 ramstage-y += cpu.c
30 ramstage-y += elog.c
31 ramstage-y += espi.c
32 ramstage-y += finalize.c
33 ramstage-y += fsp_params.c
34 ramstage-y += gpio.c
35 ramstage-y += graphics.c
36 ramstage-y += lockdown.c
37 ramstage-y += p2sb.c
38 ramstage-y += pmc.c
39 ramstage-y += reset.c
40 ramstage-y += systemagent.c
41 ramstage-y += sd.c
42 ramstage-y += xhci.c
44 smm-y += gpio.c
45 smm-y += p2sb.c
46 smm-y += pmutil.c
47 smm-y += smihandler.c
48 smm-y += uart.c
49 smm-y += elog.c
50 smm-y += xhci.c
52 verstage-y += gpio.c
54 CPPFLAGS_common += -I$(src)/soc/intel/jasperlake
55 CPPFLAGS_common += -I$(src)/soc/intel/jasperlake/include
57 cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-9c-00
59 endif