mb/system76/cml-u/dt: Make use of chipset devicetree
[coreboot.git] / src / soc / intel / meteorlake / Makefile.mk
blob893523c3043033c60d895c732b52103286b9a5ed
1 ## SPDX-License-Identifier: GPL-2.0-only
2 ifeq ($(CONFIG_SOC_INTEL_METEORLAKE),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
14 all-y += gpio.c
16 bootblock-y += bootblock/bootblock.c
17 bootblock-y += bootblock/ioe_die.c
18 bootblock-y += bootblock/report_platform.c
19 bootblock-y += bootblock/soc_die.c
20 bootblock-y += espi.c
21 bootblock-y += p2sb.c
22 bootblock-y += soc_info.c
24 romstage-$(CONFIG_SOC_INTEL_CSE_PRE_CPU_RESET_TELEMETRY) += cse_telemetry.c
25 romstage-y += espi.c
26 romstage-y += meminit.c
27 romstage-y += pcie_rp.c
28 romstage-y += reset.c
29 romstage-y += soc_info.c
31 ramstage-y += acpi.c
32 ramstage-y += chip.c
33 ramstage-y += cpu.c
34 ramstage-$(CONFIG_SOC_INTEL_CRASHLOG) += crashlog.c
35 ramstage-y += ioe_pmc.c
36 ramstage-y += elog.c
37 ramstage-y += espi.c
38 ramstage-y += finalize.c
39 ramstage-y += fsp_params.c
40 ramstage-y += lockdown.c
41 ramstage-y += p2sb.c
42 ramstage-y += pcie_rp.c
43 ramstage-y += pmc.c
44 ramstage-y += reset.c
45 ramstage-y += retimer.c
46 ramstage-y += soundwire.c
47 ramstage-y += systemagent.c
48 ramstage-y += tcss.c
49 ramstage-y += xhci.c
50 ramstage-y += soc_info.c
52 smm-y += elog.c
53 smm-y += gpio.c
54 smm-y += p2sb.c
55 smm-y += pmutil.c
56 smm-y += smihandler.c
57 smm-y += soc_info.c
58 smm-y += uart.c
59 smm-y += xhci.c
60 CPPFLAGS_common += -I$(src)/soc/intel/meteorlake
61 CPPFLAGS_common += -I$(src)/soc/intel/meteorlake/include
63 endif