blob: c03aea1012e68e57613499167c8b6091b71e087f [file] [log] [blame]
Stefan Reinauer179206a2012-11-30 12:19:59 -08001#
2# This file is part of the coreboot project.
3#
Stefan Reinauer179206a2012-11-30 12:19:59 -08004#
Patrick Georgic49d7a32020-05-08 22:50:46 +02005# SPDX-License-Identifier: GPL-2.0-only
6
Nico Huberbe5492a2015-09-29 16:41:19 +02007subdirs-y += gnat
Stefan Reinauer24ef1342011-04-14 22:28:00 +00008
Ryan Salsamendiab37e9a2017-06-11 21:07:31 -07009ifeq ($(CONFIG_UBSAN),y)
10ramstage-y += ubsan.c
11CFLAGS_ramstage += -fsanitize=undefined
12endif
Julius Werner86fc11d2015-10-09 13:37:58 -070013
Julius Werner99f46832018-05-16 14:14:04 -070014decompressor-y += decompressor.c
15$(call src-to-obj,decompressor,$(dir)/decompressor.c): $(objcbfs)/bootblock.lz4
16$(call src-to-obj,decompressor,$(dir)/decompressor.c): CCACHE_EXTRAFILES=$(objcbfs)/bootblock.lz4
17# Must reset CCACHE_EXTRAFILES or make applies it transitively to dependencies.
18$(objcbfs)/bootblock.lz4: CCACHE_EXTRAFILES=
19
20decompressor-y += delay.c
21decompressor-$(CONFIG_GENERIC_GPIO_LIB) += gpio.c
22decompressor-y += memchr.c
23decompressor-y += memcmp.c
24decompressor-y += prog_ops.c
25decompressor-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
26
Julius Werner86fc11d2015-10-09 13:37:58 -070027bootblock-y += bootblock.c
Aaron Durbin899d13d2015-05-15 23:39:23 -050028bootblock-y += prog_loaders.c
Aaron Durbinb3847e62015-03-20 15:55:08 -050029bootblock-y += prog_ops.c
Aaron Durbin899d13d2015-05-15 23:39:23 -050030bootblock-y += cbfs.c
David Hendricks6fab3652014-11-06 15:22:10 -080031bootblock-$(CONFIG_GENERIC_GPIO_LIB) += gpio.c
Julius Werner7a8a4ab2015-05-22 16:26:40 -070032bootblock-y += libgcc.c
Aaron Durbine5e36302014-09-25 10:05:15 -050033bootblock-$(CONFIG_GENERIC_UDELAY) += timer.c
34
Patrick Georgi8b174042015-04-27 18:03:50 +020035bootblock-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
Paul Menzel2ea25552015-10-13 17:30:57 +020036
Kyösti Mälkki8659e402014-12-21 08:55:47 +020037bootblock-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
Patrick Georgib0a2d3c22016-01-19 18:10:55 +010038bootblock-y += delay.c
Hung-Te Linfe187922013-02-01 01:09:24 +080039bootblock-y += memchr.c
Hung-Te Linfe187922013-02-01 01:09:24 +080040bootblock-y += memcmp.c
Aaron Durbinc6588c52015-05-15 13:15:34 -050041bootblock-y += boot_device.c
Aaron Durbin0424c952015-03-28 23:56:22 -050042bootblock-y += fmap.c
Hung-Te Linfe187922013-02-01 01:09:24 +080043
Aaron Durbin899d13d2015-05-15 23:39:23 -050044verstage-y += prog_loaders.c
Aaron Durbinb3847e62015-03-20 15:55:08 -050045verstage-y += prog_ops.c
Daisuke Nojiribcc1d422014-06-19 19:16:24 -070046verstage-y += delay.c
47verstage-y += cbfs.c
Aaron Durbin17200ad2015-05-01 16:48:54 -050048verstage-y += halt.c
Aaron Durbin0424c952015-03-28 23:56:22 -050049verstage-y += fmap.c
Julius Werner7a8a4ab2015-05-22 16:26:40 -070050verstage-y += libgcc.c
Daisuke Nojiribcc1d422014-06-19 19:16:24 -070051verstage-y += memcmp.c
Patrick Georgi19d04382019-06-18 23:28:57 +020052verstage-y += string.c
Patrick Georgi8b174042015-04-27 18:03:50 +020053verstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
Aaron Durbinc6588c52015-05-15 13:15:34 -050054verstage-y += boot_device.c
Daisuke Nojiribcc1d422014-06-19 19:16:24 -070055verstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
Yen Lin5bdbd002015-04-08 16:55:17 -070056
Vadim Bendebury3486d1f2014-10-16 11:24:12 -070057verstage-$(CONFIG_GENERIC_UDELAY) += timer.c
David Hendricks6fab3652014-11-06 15:22:10 -080058verstage-$(CONFIG_GENERIC_GPIO_LIB) += gpio.c
Daisuke Nojiribcc1d422014-06-19 19:16:24 -070059
Patrick Rudolphbd4bcab2019-06-30 22:12:15 +020060romstage-$(CONFIG_VENDOR_EMULATION) += ramdetect.c
Aaron Durbin899d13d2015-05-15 23:39:23 -050061romstage-y += prog_loaders.c
Aaron Durbinb3847e62015-03-20 15:55:08 -050062romstage-y += prog_ops.c
Gabe Black1025f3a2011-09-16 02:18:56 -070063romstage-y += memchr.c
Stefan Reinauer24ef1342011-04-14 22:28:00 +000064romstage-y += memcmp.c
Furquan Shaikh133096b2014-07-31 09:28:55 -070065$(foreach arch,$(ARCH_SUPPORTED),\
Julius Wernerec5e5e02014-08-20 15:29:56 -070066 $(eval rmodules_$(arch)-y += memcmp.c) \
67 $(eval rmodules_$(arch)-y += rmodule.ld))
Furquan Shaikh133096b2014-07-31 09:28:55 -070068
Aaron Durbin0424c952015-03-28 23:56:22 -050069romstage-y += fmap.c
Patrick Georgi82d9a312016-01-21 12:46:10 +010070romstage-y += delay.c
Aaron Durbin899d13d2015-05-15 23:39:23 -050071romstage-y += cbfs.c
Edward O'Callaghancd31afd2014-11-11 12:27:06 +110072romstage-$(CONFIG_COMPRESS_RAMSTAGE) += lzma.c lzmadecode.c
Julius Werner7a8a4ab2015-05-22 16:26:40 -070073romstage-y += libgcc.c
Aaron Durbin5fbe12d2016-07-17 22:59:47 -050074romstage-y += memrange.c
David Hendricks560c6432014-02-13 13:07:50 -080075romstage-$(CONFIG_PRIMITIVE_MEMTEST) += primitive_memtest.c
76ramstage-$(CONFIG_PRIMITIVE_MEMTEST) += primitive_memtest.c
Kyösti Mälkki321bce42019-03-20 19:53:44 +020077romstage-y += ramtest.c
David Hendricks6fab3652014-11-06 15:22:10 -080078romstage-$(CONFIG_GENERIC_GPIO_LIB) += gpio.c
Aaron Durbincd0bc982016-11-19 12:36:09 -060079ramstage-y += region_file.c
80romstage-y += region_file.c
Aaron Durbinafe8aee2016-11-29 21:37:42 -060081ramstage-y += romstage_handoff.c
82romstage-y += romstage_handoff.c
Ronald G. Minnich3d8e53f2018-10-29 09:58:06 -070083romstage-y += selfboot.c
Julius Werner7dcf9d52015-10-16 13:10:02 -070084romstage-y += stack.c
Simon Glass2cf99e12016-06-10 20:58:24 -060085ramstage-y += rtc.c
Vladimir Serbinenko45988da2013-03-30 02:02:13 +010086
Aaron Durbinc15551a2013-03-23 00:00:54 -050087romstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
Kyösti Mälkkia2f6af32013-09-10 13:50:32 +030088romstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
Denis 'GNUtoo' Carikli8a0a8482013-06-20 16:24:14 +020089
Stefan Reinauerfb89dd02012-03-30 16:28:20 -070090romstage-y += compute_ip_checksum.c
Patrick Georgi6d0cba72014-11-29 11:32:12 +010091ifeq ($(CONFIG_COMPILER_GCC),y)
Alexandru Gagniuc66bbb312015-10-06 16:35:07 -070092bootblock-$(CONFIG_ARCH_BOOTBLOCK_X86_32) += gcc.c
Aaron Durbin75c51d92015-09-29 16:31:20 -050093verstage-$(CONFIG_ARCH_VERSTAGE_X86_32) += gcc.c
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070094romstage-$(CONFIG_ARCH_ROMSTAGE_X86_32) += gcc.c
Edward O'Callaghan4ba8ba42014-05-23 01:29:00 +100095ramstage-$(CONFIG_ARCH_RAMSTAGE_X86_32) += gcc.c
Subrata Banik27618472019-05-30 18:28:59 +053096smm-y += gcc.c
Edward O'Callaghan4ba8ba42014-05-23 01:29:00 +100097endif
Stefan Reinauer24ef1342011-04-14 22:28:00 +000098
Aaron Durbine5e36302014-09-25 10:05:15 -050099romstage-$(CONFIG_GENERIC_UDELAY) += timer.c
100
Patrick Rudolphbd4bcab2019-06-30 22:12:15 +0200101ramstage-$(CONFIG_VENDOR_EMULATION) += ramdetect.c
Aaron Durbin899d13d2015-05-15 23:39:23 -0500102ramstage-y += prog_loaders.c
Aaron Durbinb3847e62015-03-20 15:55:08 -0500103ramstage-y += prog_ops.c
Stefan Reinauer1e753292012-11-30 12:23:45 -0800104ramstage-y += hardwaremain.c
105ramstage-y += selfboot.c
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700106ramstage-y += coreboot_table.c
Aaron Durbin49048022014-02-18 21:55:02 -0600107ramstage-y += bootmem.c
Aaron Durbin0424c952015-03-28 23:56:22 -0500108ramstage-y += fmap.c
Gabe Black1025f3a2011-09-16 02:18:56 -0700109ramstage-y += memchr.c
Patrick Georgi8463dd92010-09-30 16:55:02 +0000110ramstage-y += memcmp.c
Patrick Georgi8463dd92010-09-30 16:55:02 +0000111ramstage-y += malloc.c
Raul E Rangel21db6cc2018-03-29 10:18:14 -0600112ramstage-y += dimm_info_util.c
Patrick Georgi8463dd92010-09-30 16:55:02 +0000113ramstage-y += delay.c
114ramstage-y += fallback_boot.c
115ramstage-y += compute_ip_checksum.c
Aaron Durbin899d13d2015-05-15 23:39:23 -0500116ramstage-y += cbfs.c
Edward O'Callaghancd31afd2014-11-11 12:27:06 +1100117ramstage-y += lzma.c lzmadecode.c
Ronald G. Minnich9764d4c2012-06-12 16:29:32 -0700118ramstage-y += stack.c
Duncan Laurieb9552842016-05-09 10:58:03 -0700119ramstage-y += hexstrtobin.c
Felix Durairaj7f761652015-11-20 15:51:35 -0800120ramstage-y += wrdd.c
Vadim Bendebury3e316002011-09-30 12:02:18 -0700121ramstage-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200122ramstage-$(CONFIG_BOOTSPLASH) += bootsplash.c
Stefan Reinauer24ef1342011-04-14 22:28:00 +0000123ramstage-$(CONFIG_BOOTSPLASH) += jpeg.c
Rudolf Marek7f0e9302011-09-02 23:23:41 +0200124ramstage-$(CONFIG_TRACE) += trace.c
Arthur Heymans65200f02018-12-20 11:23:56 +0100125postcar-$(CONFIG_TRACE) += trace.c
Vadim Bendebury6f72d692011-09-21 16:12:39 -0700126ramstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800127ramstage-$(CONFIG_COVERAGE) += libgcov.c
Arthur Heymansa459a8a2017-04-30 08:26:27 +0200128ramstage-y += edid.c
Nico Huber3db76532017-05-18 18:07:34 +0200129ifneq ($(CONFIG_NO_EDID_FILL_FB),y)
130ramstage-y += edid_fill_fb.c
131endif
Aaron Durbina05a8522013-03-22 20:44:46 -0500132ramstage-y += memrange.c
Aaron Durbin4409a5e2013-05-06 12:20:52 -0500133ramstage-$(CONFIG_COOP_MULTITASKING) += thread.c
Aaron Durbin340ca912013-04-30 09:58:12 -0500134ramstage-$(CONFIG_TIMER_QUEUE) += timer_queue.c
David Hendricks3b11de82014-11-05 14:05:56 -0800135ramstage-$(CONFIG_GENERIC_GPIO_LIB) += gpio.c
Aaron Durbine5e36302014-09-25 10:05:15 -0500136ramstage-$(CONFIG_GENERIC_UDELAY) += timer.c
Vadim Bendebury243c6142015-03-27 16:08:04 -0700137ramstage-y += b64_decode.c
Aaron Durbin9420a522015-11-17 16:31:00 -0600138ramstage-$(CONFIG_ACPI_NHLT) += nhlt.c
Patrick Rudolph666c1722018-04-03 09:57:33 +0200139ramstage-y += list.c
140ramstage-$(CONFIG_FLATTENED_DEVICE_TREE) += device_tree.c
Patrick Rudolpha892cde2018-04-19 14:39:07 +0200141ramstage-$(CONFIG_PAYLOAD_FIT_SUPPORT) += fit.c
142ramstage-$(CONFIG_PAYLOAD_FIT_SUPPORT) += fit_payload.c
Stefan Reinauer16ce01b2011-01-28 08:05:54 +0000143
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600144romstage-y += cbmem_common.c
145romstage-y += imd_cbmem.c
Aaron Durbin7f8afe02016-03-18 12:21:23 -0500146romstage-y += imd.c
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600147
148ramstage-y += cbmem_common.c
149ramstage-y += imd_cbmem.c
Aaron Durbin20686d82015-03-05 14:11:27 -0600150ramstage-y += imd.c
151
Patrick Rudolphbd4bcab2019-06-30 22:12:15 +0200152postcar-$(CONFIG_VENDOR_EMULATION) += ramdetect.c
Aaron Durbin7f8afe02016-03-18 12:21:23 -0500153postcar-y += cbmem_common.c
Aaron Durbin1e9a9142016-09-16 16:23:21 -0500154postcar-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
Aaron Durbin7f8afe02016-03-18 12:21:23 -0500155postcar-y += imd_cbmem.c
156postcar-y += imd.c
Aaron Durbinafe8aee2016-11-29 21:37:42 -0600157postcar-y += romstage_handoff.c
Aaron Durbin7f8afe02016-03-18 12:21:23 -0500158
Alexandru Gagniuce223e892015-10-14 09:58:36 -0700159bootblock-y += hexdump.c
Frans Hendriksd6225072019-05-21 11:04:50 +0200160postcar-y += hexdump.c
Stefan Reinauer2f38b072013-07-18 16:24:08 -0700161ramstage-y += hexdump.c
162romstage-y += hexdump.c
Duncan Laurie7fbdad82016-09-07 10:56:25 -0700163verstage-y += hexdump.c
John E. Kabat Jrd45011c2017-09-29 11:23:35 -0600164smm-y += hexdump.c
Stefan Reinauer2f38b072013-07-18 16:24:08 -0700165
Lee Leahy7a29cdc2016-06-05 18:49:55 -0700166bootblock-$(CONFIG_REG_SCRIPT) += reg_script.c
Aaron Durbin75c51d92015-09-29 16:31:20 -0500167verstage-$(CONFIG_REG_SCRIPT) += reg_script.c
Isaac Christensen0b4e8df2014-10-01 11:50:20 -0600168romstage-$(CONFIG_REG_SCRIPT) += reg_script.c
Duncan Laurie72748002013-10-31 08:26:23 -0700169ramstage-$(CONFIG_REG_SCRIPT) += reg_script.c
170
Kyösti Mälkki0a4457f2019-08-01 20:29:14 +0300171ramstage-$(CONFIG_TSEG_STAGE_CACHE) += ext_stage_cache.c
172romstage-$(CONFIG_TSEG_STAGE_CACHE) += ext_stage_cache.c
173postcar-$(CONFIG_TSEG_STAGE_CACHE) += ext_stage_cache.c
Aaron Durbinbd74a4b2015-03-06 23:17:33 -0600174
Kyösti Mälkki0a4457f2019-08-01 20:29:14 +0300175ramstage-$(CONFIG_CBMEM_STAGE_CACHE) += cbmem_stage_cache.c
176romstage-$(CONFIG_CBMEM_STAGE_CACHE) += cbmem_stage_cache.c
177postcar-$(CONFIG_CBMEM_STAGE_CACHE) += cbmem_stage_cache.c
Aaron Durbin127525c2015-03-26 12:29:12 -0500178
Aaron Durbinc6588c52015-05-15 13:15:34 -0500179romstage-y += boot_device.c
180ramstage-y += boot_device.c
Aaron Durbin75e29742013-10-10 20:37:04 -0500181
Aaron Durbinc6588c52015-05-15 13:15:34 -0500182smm-y += boot_device.c
Kyösti Mälkki60012ac2019-07-08 00:01:42 +0300183smm-y += malloc.c
Furquan Shaikh591be2d2018-03-01 15:20:20 -0800184smm-y += delay.c
Aaron Durbin0424c952015-03-28 23:56:22 -0500185smm-y += fmap.c
Aaron Durbin899d13d2015-05-15 23:39:23 -0500186smm-y += cbfs.c memcmp.c
Aaron Durbin0660d1f2018-01-24 17:16:30 -0700187smm-$(CONFIG_GENERIC_UDELAY) += timer.c
Stefan Reinauere9f32582010-03-29 13:04:13 +0000188
Kyösti Mälkkic36af7b2014-11-18 12:41:16 +0200189bootblock-y += version.c
190romstage-y += version.c
191ramstage-y += version.c
192smm-y += version.c
Aaron Durbinfd6fb262015-05-13 13:37:43 -0500193verstage-y += version.c
Aaron Durbin7f8afe02016-03-18 12:21:23 -0500194postcar-y += version.c
Kyösti Mälkkic36af7b2014-11-18 12:41:16 +0200195
Nico Huber81b09f42016-01-23 00:50:00 +0100196$(call src-to-obj,bootblock,$(dir)/version.c) : $(obj)/build.h
197$(call src-to-obj,romstage,$(dir)/version.c) : $(obj)/build.h
198$(call src-to-obj,ramstage,$(dir)/version.c) : $(obj)/build.h
199$(call src-to-obj,smm,$(dir)/version.c) : $(obj)/build.h
200$(call src-to-obj,verstage,$(dir)/version.c) : $(obj)/build.h
Aaron Durbin7f8afe02016-03-18 12:21:23 -0500201$(call src-to-obj,postcar,$(dir)/version.c) : $(obj)/build.h
Stefan Reinauerba9dae22011-07-29 15:34:14 -0700202
Aaron Durbinbf1e4812016-05-10 15:12:08 -0500203$(call src-to-obj,bootblock,$(dir)/fmap.c) : $(obj)/fmap_config.h
204$(call src-to-obj,romstage,$(dir)/fmap.c) : $(obj)/fmap_config.h
205$(call src-to-obj,ramstage,$(dir)/fmap.c) : $(obj)/fmap_config.h
206$(call src-to-obj,smm,$(dir)/fmap.c) : $(obj)/fmap_config.h
207$(call src-to-obj,verstage,$(dir)/fmap.c) : $(obj)/fmap_config.h
208$(call src-to-obj,postcar,$(dir)/fmap.c) : $(obj)/fmap_config.h
209
Subrata Banik50b92582016-07-21 23:47:38 +0530210bootblock-y += bootmode.c
Kyösti Mälkki5687fc92013-11-28 18:11:49 +0200211romstage-y += bootmode.c
212ramstage-y += bootmode.c
Aaron Durbin7bc39a02016-01-25 16:58:43 -0600213verstage-y += bootmode.c
Kyösti Mälkki5687fc92013-11-28 18:11:49 +0200214
Julius Werner99f46832018-05-16 14:14:04 -0700215decompressor-y += halt.c
Patrick Georgi1b2f2a02014-11-28 22:00:22 +0100216bootblock-y += halt.c
217romstage-y += halt.c
218ramstage-y += halt.c
219smm-y += halt.c
220
Julius Werner99f46832018-05-16 14:14:04 -0700221decompressor-y += reset.c
Julius Werner01f9aa52017-05-18 16:03:26 -0700222bootblock-y += reset.c
223verstage-y += reset.c
224romstage-y += reset.c
225postcar-y += reset.c
226ramstage-y += reset.c
227smm-y += reset.c
228
Julius Wernera66c9b82019-05-20 14:53:47 -0700229decompressor-y += string.c
230bootblock-y += string.c
231verstage-y += string.c
232romstage-y += string.c
233postcar-y += string.c
234ramstage-y += string.c
235smm-y += string.c
236
Xiang Wang4e39c822019-11-05 12:00:39 +0800237decompressor-y += crc_byte.c
238bootblock-y += crc_byte.c
239verstage-y += crc_byte.c
240romstage-y += crc_byte.c
241postcar-y += crc_byte.c
242ramstage-y += crc_byte.c
243smm-y += crc_byte.c
244
Aaron Durbin7f8afe02016-03-18 12:21:23 -0500245postcar-y += bootmode.c
246postcar-y += boot_device.c
247postcar-y += cbfs.c
Aaron Durbin7f8afe02016-03-18 12:21:23 -0500248postcar-y += delay.c
249postcar-y += fmap.c
250postcar-y += gcc.c
251postcar-y += halt.c
252postcar-y += libgcc.c
253postcar-$(CONFIG_COMPRESS_RAMSTAGE) += lzma.c lzmadecode.c
254postcar-y += memchr.c
255postcar-y += memcmp.c
256postcar-y += prog_loaders.c
257postcar-y += prog_ops.c
258postcar-y += rmodule.c
259postcar-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
Aaron Durbin0660d1f2018-01-24 17:16:30 -0700260postcar-$(CONFIG_GENERIC_UDELAY) += timer.c
Aaron Durbin7f8afe02016-03-18 12:21:23 -0500261
Aaron Durbineb907b32016-01-21 00:08:17 -0600262# Use program.ld for all the platforms which use C fo the bootblock.
Arthur Heymansc05b1a62019-11-22 21:01:30 +0100263bootblock-y += program.ld
Aaron Durbin4de29d42015-09-03 22:49:36 -0500264
Julius Werner99f46832018-05-16 14:14:04 -0700265decompressor-y += program.ld
Aaron Durbin7f8afe02016-03-18 12:21:23 -0500266postcar-y += program.ld
Aaron Durbin14714e12015-09-04 12:06:05 -0500267romstage-y += program.ld
Aaron Durbin4de29d42015-09-03 22:49:36 -0500268ramstage-y += program.ld
Aaron Durbine5bad5c2015-09-05 10:27:12 -0500269verstage-y += program.ld
Julius Wernerec5e5e02014-08-20 15:29:56 -0700270
Aaron Durbinad935522012-12-24 14:28:37 -0600271ifeq ($(CONFIG_RELOCATABLE_MODULES),y)
272ramstage-y += rmodule.c
Subrata Banik27618472019-05-30 18:28:59 +0530273romstage-y += rmodule.c
Aaron Durbinad935522012-12-24 14:28:37 -0600274
Aaron Durbind4dd44c2015-09-06 10:15:17 -0500275RMODULE_LDFLAGS := -z defs -Bsymbolic
Aaron Durbinad935522012-12-24 14:28:37 -0600276
277# rmodule_link_rules is a function that should be called with:
278# (1) the object name to link
279# (2) the dependencies
280# (3) heap size of the relocatable module
Furquan Shaikh133096b2014-07-31 09:28:55 -0700281# (4) arch for which the rmodules are to be linked
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500282# It will create the necessary Make rules to create a rmodule. The resulting
283# rmdoule is named $(1).rmod
Aaron Durbinad935522012-12-24 14:28:37 -0600284define rmodule_link
Nico Huber81b09f42016-01-23 00:50:00 +0100285$(strip $(1)): $(strip $(2)) $$(COMPILER_RT_rmodules_$(4)) $(call src-to-obj,rmodules_$(4),src/lib/rmodule.ld) | $$(RMODTOOL)
286 $$(LD_rmodules_$(4)) $$(LDFLAGS_rmodules_$(4)) $(RMODULE_LDFLAGS) -T $(call src-to-obj,rmodules_$(4),src/lib/rmodule.ld) --defsym=__heap_size=$(strip $(3)) -o $$@ --whole-archive --start-group $(filter-out %.ld,$(2)) --end-group
Furquan Shaikh133096b2014-07-31 09:28:55 -0700287 $$(NM_rmodules_$(4)) -n $$@ > $$(basename $$@).map
Aaron Durbinad935522012-12-24 14:28:37 -0600288endef
289
290endif
Aaron Durbin83bc0db2015-09-06 10:45:18 -0500291
292$(objcbfs)/%.debug.rmod: $(objcbfs)/%.debug | $(RMODTOOL)
293 $(RMODTOOL) -i $< -o $@
294
295$(obj)/%.elf.rmod: $(obj)/%.elf | $(RMODTOOL)
296 $(RMODTOOL) -i $< -o $@
Nico Huberc83239e2016-10-05 17:46:49 +0200297
Nico Huberb5679772019-01-01 22:06:01 +0100298ramstage-$(CONFIG_RAMSTAGE_ADA) += cb.ads
299
Nico Huberc83239e2016-10-05 17:46:49 +0200300ifeq ($(CONFIG_RAMSTAGE_LIBHWBASE),y)
301
Nico Huber625160f2017-07-17 23:42:33 +0200302to-ada-hex = $(eval $(1) := 16\\\#$(patsubst 0x%,%,$($(1)))\\\#)
303
304$(call to-ada-hex,CONFIG_HWBASE_DEFAULT_MMCONF)
305
Nico Huberc83239e2016-10-05 17:46:49 +0200306$(call add-special-class,hw)
307hw-handler = $(eval ramstage-srcs += $$(addprefix $(1),$(2)))
Nico Huber625160f2017-07-17 23:42:33 +0200308
309$(call add-special-class,hw-gen)
310hw-gen-handler = \
311 $(eval additional-dirs += $(dir $(2))) \
312 $(eval ramstage-srcs += $(2)) \
313 $(eval ramstage-ads-deps += $(2)) \
314 $(eval ramstage-adb-deps += $(2)) \
315 $(eval $(2): $(obj)/config.h)
316
Nico Huberc83239e2016-10-05 17:46:49 +0200317subdirs-y += ../../3rdparty/libhwbase
318
319ramstage-$(CONFIG_HAVE_MONOTONIC_TIMER) += hw-time-timer.adb
320
321endif # CONFIG_RAMSTAGE_LIBHWBASE
Naresh G Solanki335781a2016-10-26 19:43:14 +0530322
Patrick Georgi0e3c59e2017-01-28 15:59:25 +0100323romstage-y += spd_bin.c
Naresh G Solanki335781a2016-10-26 19:43:14 +0530324
Patrick Georgi0e3c59e2017-01-28 15:59:25 +0100325ifeq ($(CONFIG_GENERIC_SPD_BIN),y)
Naresh G Solanki335781a2016-10-26 19:43:14 +0530326LIB_SPD_BIN = $(obj)/spd.bin
327
328LIB_SPD_DEPS = $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/spd/$(f).spd.hex)
329
330# Include spd ROM data
331$(LIB_SPD_BIN): $(LIB_SPD_DEPS)
332 for f in $(LIB_SPD_DEPS); \
Johanna Schander36a0bb82020-01-15 09:06:48 +0100333 do for c in $$(cat $$f | grep --binary-files=text -v ^#); \
Naresh G Solanki335781a2016-10-26 19:43:14 +0530334 do printf $$(printf '\%o' 0x$$c); \
335 done; \
336 done > $@
337
338cbfs-files-$(CONFIG_GENERIC_SPD_BIN) += spd.bin
339spd.bin-file := $(LIB_SPD_BIN)
340spd.bin-type := spd
Martin Roth8e4bb312017-01-29 18:11:36 -0700341endif
Nico Huber2e6a0f82019-10-24 15:01:33 +0200342
343ramstage-y += uuid.c