QEMU has a maximum of 512 of emulated harts supported. Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com> Change-Id: I149c8d8a43733c8ba3e02a84b0a3606d98f8b2c1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/81083 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: David Hendricks <david.hendricks@gmail.com> Reviewed-by: Alicja Michalska <ahplka19@gmail.com> Reviewed-by: Carlos López <carlos.lopezr4096@gmail.com>
75 lines
1.7 KiB
Makefile
75 lines
1.7 KiB
Makefile
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
subdirs-y += storage
|
|
|
|
bootblock-y += mem_pool.c
|
|
verstage-y += mem_pool.c
|
|
romstage-y += mem_pool.c
|
|
ramstage-y += mem_pool.c
|
|
postcar-y += mem_pool.c
|
|
smm-y += mem_pool.c
|
|
|
|
bootblock-y += iobuf.c
|
|
verstage-y += iobuf.c
|
|
romstage-y += iobuf.c
|
|
ramstage-y += iobuf.c
|
|
smm-y += iobuf.c
|
|
postcar-y += iobuf.c
|
|
|
|
bootblock-y += region.c
|
|
verstage-y += region.c
|
|
romstage-y += region.c
|
|
ramstage-y += region.c
|
|
smm-y += region.c
|
|
postcar-y += region.c
|
|
|
|
romstage-y += rational.c
|
|
ramstage-y += rational.c
|
|
|
|
ramstage-$(CONFIG_PLATFORM_USES_FSP1_1) += fsp_relocate.c
|
|
ifeq ($(CONFIG_FSP_M_XIP),)
|
|
romstage-$(CONFIG_PLATFORM_USES_FSP2_0) += fsp_relocate.c
|
|
endif
|
|
ramstage-$(CONFIG_PLATFORM_USES_FSP2_0) += fsp_relocate.c
|
|
|
|
bootblock-$(CONFIG_FLATTENED_DEVICE_TREE) += device_tree.c
|
|
romstage-$(CONFIG_FLATTENED_DEVICE_TREE) += device_tree.c
|
|
ramstage-$(CONFIG_FLATTENED_DEVICE_TREE) += device_tree.c
|
|
|
|
bootblock-y += bsd/cbfs_private.c
|
|
verstage-y += bsd/cbfs_private.c
|
|
romstage-y += bsd/cbfs_private.c
|
|
postcar-y += bsd/cbfs_private.c
|
|
ramstage-y += bsd/cbfs_private.c
|
|
smm-y += bsd/cbfs_private.c
|
|
|
|
bootblock-y += bsd/cbfs_mcache.c
|
|
verstage-y += bsd/cbfs_mcache.c
|
|
romstage-y += bsd/cbfs_mcache.c
|
|
postcar-y += bsd/cbfs_mcache.c
|
|
ramstage-y += bsd/cbfs_mcache.c
|
|
smm-y += bsd/cbfs_mcache.c
|
|
|
|
decompressor-y += bsd/lz4_wrapper.c
|
|
bootblock-y += bsd/lz4_wrapper.c
|
|
verstage-y += bsd/lz4_wrapper.c
|
|
romstage-y += bsd/lz4_wrapper.c
|
|
ramstage-y += bsd/lz4_wrapper.c
|
|
postcar-y += bsd/lz4_wrapper.c
|
|
|
|
all-y += list.c
|
|
|
|
ramstage-y += sort.c
|
|
|
|
romstage-y += bsd/elog.c
|
|
ramstage-y += bsd/elog.c
|
|
smm-y += bsd/elog.c
|
|
|
|
decompressor-y += bsd/gcd.c
|
|
all-y += bsd/gcd.c
|
|
|
|
all-y += bsd/ipchksum.c
|
|
|
|
decompressor-y += bsd/string.c
|
|
smm-y += bsd/string.c
|
|
all-y += bsd/string.c
|