mb/google/fatcat: config GPP_F23 as ISH gpio pin
[coreboot.git] / src / soc / intel / pantherlake / Makefile.mk
blobf3403b5143f183b9996f2a5956e0bddd2bdcf7be
1 ## SPDX-License-Identifier: GPL-2.0-only
3 ifeq ($(CONFIG_SOC_INTEL_PANTHERLAKE_BASE),y)
5 subdirs-y += romstage
6 subdirs-y += ../../../cpu/intel/microcode
7 subdirs-y += ../../../cpu/intel/turbo
9 # all (bootblock, verstage, romstage, postcar, ramstage)
10 all-y += gspi.c
11 all-y += i2c.c
12 all-y += pmutil.c
13 all-y += spi.c
14 all-y += uart.c
15 all-y += gpio.c
17 bootblock-y += bootblock/bootblock.c
18 bootblock-y += bootblock/pcd.c
19 bootblock-y += bootblock/report_platform.c
20 bootblock-y += espi.c
22 romstage-$(CONFIG_SOC_INTEL_CSE_PRE_CPU_RESET_TELEMETRY) += cse_telemetry.c
23 romstage-y += espi.c
24 romstage-y += meminit.c
25 romstage-y += pcie_rp.c
26 romstage-y += reset.c
28 ramstage-y += acpi.c
29 ramstage-y += chip.c
30 ramstage-y += cpu.c
31 ramstage-$(CONFIG_SOC_INTEL_CRASHLOG) += crashlog.c
32 ramstage-y += elog.c
33 ramstage-y += espi.c
34 ramstage-y += finalize.c
35 ramstage-y += fsp_params.c
36 ramstage-y += lockdown.c
37 ramstage-y += p2sb.c
38 ramstage-y += pcie_rp.c
39 ramstage-y += pmc.c
40 ramstage-y += reset.c
41 ramstage-y += retimer.c
42 ramstage-y += soundwire.c
43 ramstage-y += systemagent.c
44 ramstage-y += tcss.c
45 ramstage-y += xhci.c
47 smm-y += elog.c
48 smm-y += gpio.c
49 smm-y += p2sb.c
50 smm-y += pmutil.c
51 smm-y += smihandler.c
52 smm-y += uart.c
53 smm-y += xhci.c
54 CPPFLAGS_common += -I$(src)/soc/intel/pantherlake
55 CPPFLAGS_common += -I$(src)/soc/intel/pantherlake/include
57 endif