summaryrefslogtreecommitdiff
path: root/src/mainboard/google/myst/Makefile.inc
blob: 54d4f30d57572cbc3f3a8a8ece04ac0cc7459785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# SPDX-License-Identifier: GPL-2.0-or-later

bootblock-y += bootblock.c

romstage-y += port_descriptors.c

ramstage-y += ec.c
ramstage-y += mainboard.c
ramstage-y += port_descriptors.c
ramstage-$(CONFIG_CHROMEOS) += chromeos.c

subdirs-y += variants/baseboard
subdirs-y += variants/$(VARIANT_DIR)

CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/baseboard/include
CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/include

APCB_NAME=APCB_PHX_D5

ifneq ($(wildcard $(MAINBOARD_BLOBS_DIR)/$(APCB_NAME).bin),)
$(info APCB sources present.)

APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/$(APCB_NAME).bin

# The SPD is currently built directly into the APCB.
# Add the below section back in after the apcbtool is updated to handle the
# Phoenix APCB SPD configuration.

#ifneq ($(wildcard $(src)/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/memory/Makefile.inc),)
#
#LIB_SPD_DEPS = $(SPD_SOURCES)
#
#APCB_SOURCES = $(obj)/$(APCB_NAME).gen
#
#$(obj)/$(APCB_NAME).gen: $(SPD_SOURCES) \
#			$(APCB_V3_EDIT_TOOL) \
#			$(MAINBOARD_BLOBS_DIR)/$(APCB_NAME).bin
#	$(APCB_V3_EDIT_TOOL) $(MAINBOARD_BLOBS_DIR)/$(APCB_NAME).bin \
#			     $(obj)/$(APCB_NAME).gen  \
#			     --spd_sources $(SPD_SOURCES) \
#			     --mem_type 'lp5'
#else
#$(info SPD sources not found.  Skipping APCB.)
#files_added:: die_no_apcb
#endif

else
$(info APCB sources not found.  Skipping APCB.)
files_added:: warn_no_apcb
endif