trogdor: SoC makefile blob support
Following blobs will includes with SoC makefile: * AOP * BOOT * QTISECLIB * QCSEC * QUPV3FW Change-Id: I85a20ef31ec91c6f22221d16fd4c3097c5cb97d1 Signed-off-by: Ashwin Kumar <ashk@codeaurora.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35508 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
parent
43e601312b
commit
b05e540217
|
@ -65,6 +65,84 @@ ramstage-$(CONFIG_DRIVERS_UART) += qupv3_uart.c
|
|||
CPPFLAGS_common += -Isrc/soc/qualcomm/sc7180/include
|
||||
CPPFLAGS_common += -Isrc/soc/qualcomm/common/include
|
||||
|
||||
BL31_MAKEARGS += PLAT=sc7180
|
||||
|
||||
SC7180_BLOB := $(top)/3rdparty/qc_blobs/sc7180
|
||||
|
||||
################################################################################
|
||||
ifeq ($(CONFIG_QC_SDI_ENABLE),y)
|
||||
QCSDI_FILE := $(SC7180_BLOB)/boot/QcSdi.elf
|
||||
QCSDI_CBFS := $(CONFIG_CBFS_PREFIX)/qcsdi
|
||||
$(QCSDI_CBFS)-file := $(QCSDI_FILE)
|
||||
$(QCSDI_CBFS)-type := stage
|
||||
$(QCSDI_CBFS)-compression := $(CBFS_COMPRESS_FLAG)
|
||||
cbfs-files-y += $(QCSDI_CBFS)
|
||||
endif
|
||||
|
||||
################################################################################
|
||||
QCLIB_FILE := $(SC7180_BLOB)/boot/QcLib.elf
|
||||
QCLIB_CBFS := $(CONFIG_CBFS_PREFIX)/qclib
|
||||
$(QCLIB_CBFS)-file := $(QCLIB_FILE)
|
||||
$(QCLIB_CBFS)-type := stage
|
||||
$(QCLIB_CBFS)-compression := $(CBFS_PRERAM_COMPRESS_FLAG)
|
||||
cbfs-files-y += $(QCLIB_CBFS)
|
||||
|
||||
################################################################################
|
||||
PMIC_FILE := $(SC7180_BLOB)/boot/Pmic.bin
|
||||
PMIC_CBFS := $(CONFIG_CBFS_PREFIX)/pmiccfg
|
||||
$(PMIC_CBFS)-file := $(PMIC_FILE)
|
||||
$(PMIC_CBFS)-type := raw
|
||||
$(PMIC_CBFS)-compression := $(CBFS_COMPRESS_FLAG)
|
||||
cbfs-files-y += $(PMIC_CBFS)
|
||||
|
||||
################################################################################
|
||||
DCB_FILE := $(SC7180_BLOB)/boot/dcb.bin
|
||||
DCB_CBFS := $(CONFIG_CBFS_PREFIX)/dcb
|
||||
$(DCB_CBFS)-file := $(DCB_FILE)
|
||||
$(DCB_CBFS)-type := raw
|
||||
$(DCB_CBFS)-compression := $(CBFS_COMPRESS_FLAG)
|
||||
cbfs-files-y += $(DCB_CBFS)
|
||||
|
||||
################################################################################
|
||||
AOP_FILE := $(SC7180_BLOB)/aop/aop.mbn
|
||||
AOP_CBFS := $(CONFIG_CBFS_PREFIX)/aop
|
||||
$(AOP_CBFS)-file := $(AOP_FILE)
|
||||
$(AOP_CBFS)-type := payload
|
||||
$(AOP_CBFS)-compression := $(CBFS_COMPRESS_FLAG)
|
||||
cbfs-files-y += $(AOP_CBFS)
|
||||
|
||||
################################################################################
|
||||
UART_FW_FILE := $(SC7180_BLOB)/qup_fw/uart_fw.bin
|
||||
UART_FW_CBFS := $(CONFIG_CBFS_PREFIX)/uart_fw
|
||||
$(UART_FW_CBFS)-file := $(UART_FW_FILE)
|
||||
$(UART_FW_CBFS)-type := raw
|
||||
$(UART_FW_CBFS)-compression := none
|
||||
cbfs-files-y += $(UART_FW_CBFS)
|
||||
|
||||
################################################################################
|
||||
SPI_FW_FILE := $(SC7180_BLOB)/qup_fw/spi_fw.bin
|
||||
SPI_FW_CBFS := $(CONFIG_CBFS_PREFIX)/spi_fw
|
||||
$(SPI_FW_CBFS)-file := $(SPI_FW_FILE)
|
||||
$(SPI_FW_CBFS)-type := raw
|
||||
$(SPI_FW_CBFS)-compression := none
|
||||
cbfs-files-y += $(SPI_FW_CBFS)
|
||||
|
||||
################################################################################
|
||||
I2C_FW_FILE := $(SC7180_BLOB)/qup_fw/i2c_fw.bin
|
||||
I2C_FW_CBFS := $(CONFIG_CBFS_PREFIX)/i2c_fw
|
||||
$(I2C_FW_CBFS)-file := $(I2C_FW_FILE)
|
||||
$(I2C_FW_CBFS)-type := raw
|
||||
$(I2C_FW_CBFS)-compression := none
|
||||
cbfs-files-y += $(I2C_FW_CBFS)
|
||||
|
||||
################################################################################
|
||||
QC_SEC_FILE := $(SC7180_BLOB)/qc_sec/qc_sec.mbn
|
||||
$(objcbfs)/bootblock.bin: $(objcbfs)/bootblock.raw.elf
|
||||
@util/qualcomm/createxbl.py --mbn_version 6 -f $(objcbfs)/bootblock.raw.elf \
|
||||
-x $(QC_SEC_FILE) -o $(objcbfs)/merged_bb_qcsec.mbn \
|
||||
-a 64 -d 64 -c 64
|
||||
@printf "\nqgpt.py 4K sector size\n"
|
||||
@util/qualcomm/qgpt.py $(objcbfs)/merged_bb_qcsec.mbn \
|
||||
$(objcbfs)/bootblock.bin
|
||||
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue