blob: 5512af5650c8fd8782be163b1bed55bfbf51f2a0 [file] [log] [blame]
Martin Roth9231f0b2022-10-28 22:39:23 -06001## SPDX-License-Identifier: GPL-2.0-only
Nitheesh Sekar20e75872018-09-14 11:24:10 +05302
3ifeq ($(CONFIG_SOC_QUALCOMM_QCS405),y)
4
5################################################################################
Ravi Kumar Bokka1faaa162021-03-31 08:05:24 +05306all-y += clock.c
7all-y += spi.c
8all-y += ../common/timer.c
9all-y += gpio.c
10all-y += i2c.c
11all-y += qup.c
12all-y += blsp.c
13all-$(CONFIG_DRIVERS_UART) += uart.c
14
15################################################################################
Nitheesh Sekar20e75872018-09-14 11:24:10 +053016bootblock-y += bootblock.c
Nitheesh Sekar6bee0ce2018-09-14 18:50:38 +053017bootblock-y += mmu.c
Nitheesh Sekar20e75872018-09-14 11:24:10 +053018
19################################################################################
Nitheesh Sekar20e75872018-09-14 11:24:10 +053020romstage-y += cbmem.c
Vijayavardhan Vennapusadd3cffd2018-10-16 18:08:29 +053021romstage-y += usb.c
Nitheesh Sekar20e75872018-09-14 11:24:10 +053022
23################################################################################
24ramstage-y += soc.c
Vijayavardhan Vennapusadd3cffd2018-10-16 18:08:29 +053025ramstage-y += usb.c
Nitheesh Sekar20e75872018-09-14 11:24:10 +053026
27################################################################################
28
29CPPFLAGS_common += -Isrc/soc/qualcomm/qcs405/include
30
Nitheesh Sekar20e75872018-09-14 11:24:10 +053031endif