xref: /aosp_15_r20/external/coreboot/src/mainboard/amd/mayan/Makefile.mk (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1# SPDX-License-Identifier: GPL-2.0-only
2
3bootblock-y += bootblock.c
4bootblock-y += early_gpio.c
5bootblock-y += ec.c
6
7romstage-y += port_descriptors.c
8
9ramstage-y += chromeos.c
10ramstage-y += gpio.c
11ramstage-y += port_descriptors.c
12
13ifneq ($(wildcard $(MAINBOARD_BLOBS_DIR)/APCB_Updatable.bin),)
14APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/APCB_Updatable.bin
15APCB_SOURCES_RECOVERY = $(MAINBOARD_BLOBS_DIR)/APCB_DefaultRecovery.bin
16else
17show_notices:: warn_no_apcb
18endif
19
20ifeq ($(CONFIG_MAYAN_HAVE_MCHP_FW),y)
21$(call add_intermediate, add_mchp_fw)
22	$(CBFSTOOL) $(obj)/coreboot.pre write -r EC -f $(CONFIG_MAYAN_MCHP_SIG_FILE) --fill-upward
23
24cbfs-files-y += ec/ecfw
25ec/ecfw-file := $(CONFIG_MAYAN_MCHP_FW_FILE)
26ec/ecfw-position := $(CONFIG_MAYAN_MCHP_FW_OFFSET)
27ec/ecfw-type := raw
28
29else
30show_notices:: warn_no_mchp
31endif # CONFIG_MAYAN_HAVE_MCHP_FW
32
33PHONY+=warn_no_mchp
34warn_no_mchp:
35	printf "\n\t** WARNING **\n"
36	printf "coreboot has been built without the EC FW.\n"
37	printf "Do not flash this image.  Your Mayan's power button\n"
38	printf "will not respond when you press it.\n\n"
39