blob: ead57202780e6627862b97439e797e6cd4ba6773 [file] [log] [blame]
Martin Roth9231f0b2022-10-28 22:39:23 -06001## SPDX-License-Identifier: GPL-2.0-only
T Michael Turney7783c602019-10-09 07:04:54 -07002
3ifeq ($(CONFIG_SOC_QUALCOMM_SC7180),y)
4
Julius Werner87feced2020-09-29 19:23:36 -07005decompressor-y += decompressor.c
6decompressor-y += mmu.c
Ravi Kumar Bokka1faaa162021-03-31 08:05:24 +05307decompressor-y += ../common/timer.c
8all-y += ../common/timer.c
Taniya Das7a6b2ef2021-05-20 14:18:53 +05309all-y += ../common/gpio.c
Ravi Kumar Bokka42394582021-07-16 16:59:25 +053010all-y += ../common/spi.c
11all-$(CONFIG_SC7180_QSPI) += ../common/qspi.c
Rajesh Patil555c2d62021-06-16 14:13:00 +053012all-y += ../common/qupv3_i2c.c
Ravi Kumar Bokkabd0984d2021-07-17 00:01:19 +053013all-y += ../common/qupv3_spi.c
Ravi Kumar Bokka1faaa162021-03-31 08:05:24 +053014all-y += clock.c
Taniya Dasd37aeb12021-06-23 09:08:57 +053015all-y += ../common/clock.c
Ravi Kumar Bokka1faaa162021-03-31 08:05:24 +053016all-y += qcom_qup_se.c
Ravi Kumar Bokka34960d42021-07-27 21:02:54 +053017all-y += ../common/qupv3_config.c
18all-y += ../common/qup_se_handler.c
Julius Werner87feced2020-09-29 19:23:36 -070019
T Michael Turney7783c602019-10-09 07:04:54 -070020################################################################################
21bootblock-y += bootblock.c
22bootblock-y += mmu.c
Ravi Kumar Bokkab01b4762020-11-06 11:28:01 +053023bootblock-$(CONFIG_DRIVERS_UART) += ../common/uart_bitbang.c
T Michael Turney7783c602019-10-09 07:04:54 -070024################################################################################
Rajesh Patilc2800a52021-06-18 09:17:34 +053025verstage-$(CONFIG_DRIVERS_UART) += ../common/qupv3_uart.c
T Michael Turney7783c602019-10-09 07:04:54 -070026
27################################################################################
28romstage-y += cbmem.c
T Michael Turney7783c602019-10-09 07:04:54 -070029romstage-y += ../common/qclib.c
Kshitiz Godarad3f859d2022-06-23 17:18:24 +053030romstage-y += ../common/watchdog.c
Sudheer Kumar Amrabadicc4dd882022-05-09 18:20:19 +053031romstage-y += qclib.c
T Michael Turney7783c602019-10-09 07:04:54 -070032romstage-y += ../common/mmu.c
33romstage-y += mmu.c
Sandeep Maheswaram6c2b8602021-07-05 11:11:48 +053034romstage-y += ../common/usb/usb.c
mkurumela9d225b2020-09-14 23:28:53 +053035romstage-y += carve_out.c
Rajesh Patilc2800a52021-06-18 09:17:34 +053036romstage-$(CONFIG_DRIVERS_UART) += ../common/qupv3_uart.c
T Michael Turney7783c602019-10-09 07:04:54 -070037
38################################################################################
39ramstage-y += soc.c
mkurumela9d225b2020-09-14 23:28:53 +053040ramstage-y += carve_out.c
Ravi Kumar Bokka64f7eaa2021-10-15 23:02:41 +053041ramstage-y += ../common/aop_load_reset.c
Rajesh Patilc2800a52021-06-18 09:17:34 +053042ramstage-$(CONFIG_DRIVERS_UART) += ../common/qupv3_uart.c
Sandeep Maheswaram6c2b8602021-07-05 11:11:48 +053043ramstage-y += ../common/usb/usb.c
44ramstage-y += ../common/usb/qusb_phy.c
45ramstage-y += ../common/usb/qmpv3_usb_phy.c
Vinod Polimera4cdd0972020-03-03 11:22:56 +053046ramstage-$(CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT) += display/dsi_phy_pll.c
47ramstage-$(CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT) += display/dsi_phy.c
Vinod Polimerac6880b32020-03-03 11:26:36 +053048ramstage-$(CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT) += display/dsi.c
Vinod Polimera0af24f72022-05-31 06:49:15 +053049ramstage-$(CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT) += display/disp.c
50ramstage-$(CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT) += ../common/display/mdss.c
T Michael Turney7783c602019-10-09 07:04:54 -070051
52################################################################################
53
54CPPFLAGS_common += -Isrc/soc/qualcomm/sc7180/include
55CPPFLAGS_common += -Isrc/soc/qualcomm/common/include
56
ashkb05e5402019-07-30 14:22:04 +053057BL31_MAKEARGS += PLAT=sc7180
58
Felix Singerc5415672023-11-12 06:32:35 +000059ifeq ($(CONFIG_USE_QC_BLOBS),y)
60
ashkb05e5402019-07-30 14:22:04 +053061SC7180_BLOB := $(top)/3rdparty/qc_blobs/sc7180
62
T Michael Turney0b493bb2019-09-20 11:27:08 -070063ifeq ($(CONFIG_QC_SDI_ENABLE),y)
64BL31_MAKEARGS += QTI_SDI_BUILD=1
65BL31_MAKEARGS += QTISECLIB_PATH=$(SC7180_BLOB)/qtiseclib/libqtisec_dbg.a
66else
67BL31_MAKEARGS += QTISECLIB_PATH=$(SC7180_BLOB)/qtiseclib/libqtisec.a
68endif # CONFIG_QC_SDI_ENABLE
69
T Michael Turney7783c602019-10-09 07:04:54 -070070################################################################################
ashkb05e5402019-07-30 14:22:04 +053071ifeq ($(CONFIG_QC_SDI_ENABLE),y)
72QCSDI_FILE := $(SC7180_BLOB)/boot/QcSdi.elf
73QCSDI_CBFS := $(CONFIG_CBFS_PREFIX)/qcsdi
74$(QCSDI_CBFS)-file := $(QCSDI_FILE)
75$(QCSDI_CBFS)-type := stage
76$(QCSDI_CBFS)-compression := $(CBFS_COMPRESS_FLAG)
77cbfs-files-y += $(QCSDI_CBFS)
78endif
79
80################################################################################
81QCLIB_FILE := $(SC7180_BLOB)/boot/QcLib.elf
82QCLIB_CBFS := $(CONFIG_CBFS_PREFIX)/qclib
83$(QCLIB_CBFS)-file := $(QCLIB_FILE)
84$(QCLIB_CBFS)-type := stage
85$(QCLIB_CBFS)-compression := $(CBFS_PRERAM_COMPRESS_FLAG)
86cbfs-files-y += $(QCLIB_CBFS)
87
88################################################################################
89PMIC_FILE := $(SC7180_BLOB)/boot/Pmic.bin
90PMIC_CBFS := $(CONFIG_CBFS_PREFIX)/pmiccfg
91$(PMIC_CBFS)-file := $(PMIC_FILE)
92$(PMIC_CBFS)-type := raw
93$(PMIC_CBFS)-compression := $(CBFS_COMPRESS_FLAG)
94cbfs-files-y += $(PMIC_CBFS)
95
96################################################################################
97DCB_FILE := $(SC7180_BLOB)/boot/dcb.bin
98DCB_CBFS := $(CONFIG_CBFS_PREFIX)/dcb
99$(DCB_CBFS)-file := $(DCB_FILE)
100$(DCB_CBFS)-type := raw
101$(DCB_CBFS)-compression := $(CBFS_COMPRESS_FLAG)
102cbfs-files-y += $(DCB_CBFS)
103
104################################################################################
Sudheer Kumar Amrabadicc4dd882022-05-09 18:20:19 +0530105DCB_LONGSYS1P8_FILE := $(SC7180_BLOB)/boot/dcb_slow.bin
106DCB_LONGSYS1P8_CBFS := $(CONFIG_CBFS_PREFIX)/dcb_longsys1p8
107$(DCB_LONGSYS1P8_CBFS)-file := $(DCB_LONGSYS1P8_FILE)
108$(DCB_LONGSYS1P8_CBFS)-type := raw
109$(DCB_LONGSYS1P8_CBFS)-compression := $(CBFS_COMPRESS_FLAG)
110cbfs-files-y += $(DCB_LONGSYS1P8_CBFS)
111
112################################################################################
ashkb05e5402019-07-30 14:22:04 +0530113AOP_FILE := $(SC7180_BLOB)/aop/aop.mbn
114AOP_CBFS := $(CONFIG_CBFS_PREFIX)/aop
115$(AOP_CBFS)-file := $(AOP_FILE)
116$(AOP_CBFS)-type := payload
117$(AOP_CBFS)-compression := $(CBFS_COMPRESS_FLAG)
118cbfs-files-y += $(AOP_CBFS)
119
120################################################################################
121UART_FW_FILE := $(SC7180_BLOB)/qup_fw/uart_fw.bin
122UART_FW_CBFS := $(CONFIG_CBFS_PREFIX)/uart_fw
123$(UART_FW_CBFS)-file := $(UART_FW_FILE)
124$(UART_FW_CBFS)-type := raw
125$(UART_FW_CBFS)-compression := none
126cbfs-files-y += $(UART_FW_CBFS)
127
128################################################################################
129SPI_FW_FILE := $(SC7180_BLOB)/qup_fw/spi_fw.bin
130SPI_FW_CBFS := $(CONFIG_CBFS_PREFIX)/spi_fw
131$(SPI_FW_CBFS)-file := $(SPI_FW_FILE)
132$(SPI_FW_CBFS)-type := raw
133$(SPI_FW_CBFS)-compression := none
134cbfs-files-y += $(SPI_FW_CBFS)
135
136################################################################################
137I2C_FW_FILE := $(SC7180_BLOB)/qup_fw/i2c_fw.bin
138I2C_FW_CBFS := $(CONFIG_CBFS_PREFIX)/i2c_fw
139$(I2C_FW_CBFS)-file := $(I2C_FW_FILE)
140$(I2C_FW_CBFS)-type := raw
141$(I2C_FW_CBFS)-compression := none
142cbfs-files-y += $(I2C_FW_CBFS)
143
144################################################################################
145QC_SEC_FILE := $(SC7180_BLOB)/qc_sec/qc_sec.mbn
146$(objcbfs)/bootblock.bin: $(objcbfs)/bootblock.raw.elf
147 @util/qualcomm/createxbl.py --mbn_version 6 -f $(objcbfs)/bootblock.raw.elf \
148 -x $(QC_SEC_FILE) -o $(objcbfs)/merged_bb_qcsec.mbn \
149 -a 64 -d 64 -c 64
150 @printf "\nqgpt.py 4K sector size\n"
151 @util/qualcomm/qgpt.py $(objcbfs)/merged_bb_qcsec.mbn \
152 $(objcbfs)/bootblock.bin
T Michael Turney7783c602019-10-09 07:04:54 -0700153
154endif
Felix Singerc5415672023-11-12 06:32:35 +0000155
156endif