2013-01-03 02:41:51 +01:00
|
|
|
# Run an intermediate step when producing coreboot.rom
|
|
|
|
# that adds additional components to the final firmware
|
|
|
|
# image outside of CBFS
|
2013-04-26 03:00:58 +02:00
|
|
|
INTERMEDIATE += exynos5250_add_bl1
|
2013-01-03 02:41:51 +01:00
|
|
|
|
2013-04-25 11:38:55 +02:00
|
|
|
bootblock-y += pinmux.c mct.c power.c
|
2013-02-08 06:49:10 +01:00
|
|
|
# Clock is required for UART
|
|
|
|
bootblock-$(CONFIG_EARLY_CONSOLE) += clock_init.c
|
|
|
|
bootblock-$(CONFIG_EARLY_CONSOLE) += clock.c
|
2013-05-02 23:23:51 +02:00
|
|
|
bootblock-$(CONFIG_EARLY_CONSOLE) += monotonic_timer.c
|
2013-02-08 06:49:10 +01:00
|
|
|
bootblock-$(CONFIG_EARLY_CONSOLE) += soc.c
|
2013-02-06 15:01:18 +01:00
|
|
|
bootblock-$(CONFIG_EARLY_CONSOLE) += uart.c
|
2013-05-11 01:21:58 +02:00
|
|
|
bootblock-y += wakeup.c
|
2013-02-04 04:13:36 +01:00
|
|
|
|
2012-12-08 02:18:43 +01:00
|
|
|
romstage-y += clock.c
|
|
|
|
romstage-y += clock_init.c
|
2013-02-15 01:35:47 +01:00
|
|
|
romstage-y += pinmux.c # required by s3c24x0_i2c (exynos5-common) and uart.
|
2013-01-29 23:35:35 +01:00
|
|
|
romstage-y += dmc_common.c
|
|
|
|
romstage-y += dmc_init_ddr3.c
|
2013-03-13 05:28:07 +01:00
|
|
|
romstage-y += power.c
|
2013-04-12 00:03:28 +02:00
|
|
|
romstage-y += mct.c
|
2013-05-02 23:23:51 +02:00
|
|
|
romstage-y += monotonic_timer.c
|
2013-02-08 06:49:10 +01:00
|
|
|
romstage-$(CONFIG_EARLY_CONSOLE) += soc.c
|
2013-02-06 15:01:18 +01:00
|
|
|
romstage-$(CONFIG_EARLY_CONSOLE) += uart.c
|
2013-05-11 01:21:58 +02:00
|
|
|
romstage-y += wakeup.c
|
2012-12-08 02:18:43 +01:00
|
|
|
|
2013-02-06 15:01:18 +01:00
|
|
|
#ramstage-y += tzpc_init.c
|
2012-12-08 02:18:43 +01:00
|
|
|
ramstage-y += clock.c
|
|
|
|
ramstage-y += clock_init.c
|
|
|
|
ramstage-y += pinmux.c
|
|
|
|
ramstage-y += power.c
|
|
|
|
ramstage-y += soc.c
|
2013-02-06 15:01:18 +01:00
|
|
|
ramstage-$(CONFIG_CONSOLE_SERIAL_UART) += uart.c
|
2013-02-16 01:18:28 +01:00
|
|
|
ramstage-y += cpu.c
|
2013-04-18 23:21:15 +02:00
|
|
|
ramstage-y += exynos5250-tmu.c
|
2013-04-12 00:03:28 +02:00
|
|
|
ramstage-y += mct.c
|
2013-05-02 23:23:51 +02:00
|
|
|
ramstage-y += monotonic_timer.c
|
2012-12-08 02:18:43 +01:00
|
|
|
|
|
|
|
#ramstage-$(CONFIG_SATA_AHCI) += sata.c
|
2013-01-03 02:41:51 +01:00
|
|
|
|
|
|
|
exynos5250_add_bl1: $(obj)/coreboot.pre
|
|
|
|
printf " DD Adding Samsung Exynos5250 BL1\n"
|
|
|
|
dd if=3rdparty/cpu/samsung/exynos5250/E5250.nbl1.bin \
|
|
|
|
of=$(obj)/coreboot.pre conv=notrunc >/dev/null 2>&1
|