PICASSO_LPC_IOMUX was only used in the amd/mandolin board, but not in the corresponding SoC code, so remove it from the SoC's Kconfig and reanme it in the mainboard's Kconfig to MANDOLIN_LPC. Change-Id: I261e093d6c56be6073a816b79c60d3a0457616f8 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47891 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
bootblock-y += bootblock.c
|
|
bootblock-y += variants/$(VARIANT_DIR)/early_gpio.c
|
|
|
|
ramstage-y += variants/$(VARIANT_DIR)/gpio.c
|
|
ramstage-y += variants/$(VARIANT_DIR)/port_descriptors.c
|
|
|
|
ifneq ($(CONFIG_MANDOLIN_LPC),y)
|
|
ramstage-y += emmc_gpio.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_BOARD_AMD_MANDOLIN),y)
|
|
APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/APCB_mandolin.bin
|
|
else # CONFIG_BOARD_AMD_CEREME
|
|
APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/APCB_cereme.bin
|
|
endif
|
|
|
|
PHONY+=add_mchp_fw
|
|
INTERMEDIATE+=add_mchp_fw
|
|
|
|
ifeq ($(CONFIG_MANDOLIN_HAVE_MCHP_FW),y)
|
|
|
|
MANDOLIN_MICROCHIP_FW_OFFSET=0
|
|
add_mchp_fw: $(obj)/coreboot.pre
|
|
$(CBFSTOOL) $(obj)/coreboot.pre write -r EC -f $(CONFIG_MANDOLIN_MCHP_FW_FILE) --fill-upward
|
|
|
|
else
|
|
files_added:: warn_no_mchp
|
|
endif # CONFIG_MANDOLIN_HAVE_MCHP_FW
|
|
|
|
PHONY+=warn_no_mchp
|
|
warn_no_mchp:
|
|
printf "\n\t** WARNING **\n"
|
|
printf "coreboot has been built without an the Microchip EC.\n"
|
|
printf "Do not flash this image. Your Mandolin's power button\n"
|
|
printf "will not respond when you press it.\n\n"
|
|
|
|
CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/acpi
|