summaryrefslogtreecommitdiffstats
path: root/src/soc/qualcomm/qcs405/Makefile.inc
blob: f21ea542a989a1150cf084cefe4050ce3fe2cabb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

ifeq ($(CONFIG_SOC_QUALCOMM_QCS405),y)

################################################################################
bootblock-y += bootblock.c
bootblock-y += timer.c
bootblock-y += spi.c
bootblock-y += mmu.c
bootblock-y += gpio.c
bootblock-y += clock.c
bootblock-y += i2c.c
bootblock-y += qup.c
bootblock-y += blsp.c
bootblock-$(CONFIG_DRIVERS_UART) += uart.c

################################################################################
verstage-y += timer.c
verstage-y += spi.c
verstage-y += gpio.c
verstage-y += clock.c
verstage-y += i2c.c
verstage-y += qup.c
verstage-y += blsp.c
verstage-$(CONFIG_DRIVERS_UART) += uart.c

################################################################################
romstage-y += timer.c
romstage-y += spi.c
romstage-y += cbmem.c
romstage-y += gpio.c
romstage-y += clock.c
romstage-y += usb.c
romstage-$(CONFIG_DRIVERS_UART) += uart.c
romstage-y += i2c.c
romstage-y += qup.c
romstage-y += blsp.c

################################################################################
ramstage-y += soc.c
ramstage-y += timer.c
ramstage-y += spi.c
ramstage-y += cbmem.c
ramstage-y += gpio.c
ramstage-y += clock.c
ramstage-y += i2c.c
ramstage-y += qup.c
ramstage-y += blsp.c
ramstage-y += usb.c
ramstage-$(CONFIG_DRIVERS_UART) += uart.c

################################################################################

CPPFLAGS_common += -Isrc/soc/qualcomm/qcs405/include

endif