diff options
author | Martin Roth <gaumless@gmail.com> | 2024-04-11 20:52:11 -0600 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2024-04-15 12:39:57 +0000 |
commit | 127392599975c1aa5cdf3d18e5bd3e4de9a7db6b (patch) | |
tree | cb981ffd15d36c881e62b6f866558b8d3d0e19e3 /src/soc/sifive/fu740/Makefile.mk | |
parent | dc735c19c7a1b5cc4e37c7f0c73e13b0072bdd9a (diff) |
src/mb: Rename new Makefile.inc files to Makefile.mk
These files were added after the switch.
Change-Id: I1986e4f921e0e56fe5255433d4b9216dc7c4dc59
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81856
Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/sifive/fu740/Makefile.mk')
-rw-r--r-- | src/soc/sifive/fu740/Makefile.mk | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/soc/sifive/fu740/Makefile.mk b/src/soc/sifive/fu740/Makefile.mk new file mode 100644 index 0000000000..86c90dfb77 --- /dev/null +++ b/src/soc/sifive/fu740/Makefile.mk @@ -0,0 +1,32 @@ +# SPDX-License-Identifier: GPL-2.0-only + +ifeq ($(CONFIG_SOC_SIFIVE_FU740),y) + +CPPFLAGS_common += -Isrc/soc/sifive/fu740/include + +bootblock-y += uart.c +bootblock-y += clint.c +bootblock-y += spi.c +bootblock-y += sdram.c +bootblock-y += cbmem.c +bootblock-y += otp.c +bootblock-y += clock.c +bootblock-y += ddrregs.c +bootblock-y += chip.c +bootblock-y += gpio.c + + +ramstage-y += uart.c +ramstage-y += clint.c +ramstage-y += spi.c +ramstage-y += sdram.c +ramstage-y += cbmem.c +ramstage-y += otp.c +ramstage-y += clock.c +ramstage-y += chip.c + +$(objcbfs)/bootblock.bin: $(objcbfs)/bootblock.raw.bin + @printf " GPT $(notdir $(@))\n" + @util/riscv/sifive-gpt.py $< $@ + +endif |