]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/Makefile
ARM: uniphier: do not erase when updating U-Boot image in eMMC device
[people/ms/u-boot.git] / drivers / Makefile
CommitLineData
da58dec8
TR
1#
2# SPDX-License-Identifier: GPL-2.0+
3#
4
040906f6 5obj-$(CONFIG_$(SPL_)DM) += core/
55259583 6obj-$(CONFIG_$(SPL_)CLK) += clk/
e00e8b39 7obj-$(CONFIG_$(SPL_)LED) += led/
d90a5a30 8obj-$(CONFIG_$(SPL_)PINCTRL) += pinctrl/
26d5fa80 9obj-$(CONFIG_$(SPL_)RAM) += ram/
040906f6 10
d6c2ac5b
MY
11ifdef CONFIG_SPL_BUILD
12
d6c2ac5b
MY
13obj-$(CONFIG_SPL_I2C_SUPPORT) += i2c/
14obj-$(CONFIG_SPL_GPIO_SUPPORT) += gpio/
15obj-$(CONFIG_SPL_MMC_SUPPORT) += mmc/
16obj-$(CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT) += ddr/fsl/
81e33f4b
SR
17obj-$(CONFIG_ARMADA_38X) += ddr/marvell/a38x/
18obj-$(CONFIG_ARMADA_XP) += ddr/marvell/axp/
d6c2ac5b
MY
19obj-$(CONFIG_ALTERA_SDRAM) += ddr/altera/
20obj-$(CONFIG_SPL_SERIAL_SUPPORT) += serial/
21obj-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += mtd/spi/
22obj-$(CONFIG_SPL_SPI_SUPPORT) += spi/
d6c2ac5b
MY
23obj-$(CONFIG_SPL_POWER_SUPPORT) += power/ power/pmic/
24obj-$(CONFIG_SPL_POWER_SUPPORT) += power/regulator/
25obj-$(CONFIG_SPL_MTD_SUPPORT) += mtd/
26obj-$(CONFIG_SPL_NAND_SUPPORT) += mtd/nand/
27obj-$(CONFIG_SPL_DRIVERS_MISC_SUPPORT) += misc/
28obj-$(CONFIG_SPL_ONENAND_SUPPORT) += mtd/onenand/
29obj-$(CONFIG_SPL_DMA_SUPPORT) += dma/
30obj-$(CONFIG_SPL_ETH_SUPPORT) += net/
31obj-$(CONFIG_SPL_ETH_SUPPORT) += net/phy/
32obj-$(CONFIG_SPL_USBETH_SUPPORT) += net/phy/
d6c2ac5b
MY
33obj-$(CONFIG_SPL_MUSB_NEW_SUPPORT) += usb/musb-new/
34obj-$(CONFIG_SPL_USBETH_SUPPORT) += usb/gadget/
35obj-$(CONFIG_SPL_WATCHDOG_SUPPORT) += watchdog/
36obj-$(CONFIG_SPL_USB_HOST_SUPPORT) += usb/host/
37obj-$(CONFIG_OMAP_USB_PHY) += usb/phy/
38obj-$(CONFIG_SPL_SATA_SUPPORT) += block/
57ebf67b 39obj-$(CONFIG_SPL_USB_HOST_SUPPORT) += block/
0776167e 40obj-$(CONFIG_SPL_MMC_SUPPORT) += block/
d6c2ac5b
MY
41
42else
43
5decbf53 44obj-y += adc/
f494e0a1 45obj-$(CONFIG_DM_DEMO) += demo/
7b6af41e 46obj-$(CONFIG_BIOSEMU) += bios_emulator/
9c3f0bc5
MY
47obj-y += block/
48obj-$(CONFIG_BOOTCOUNT_LIMIT) += bootcount/
11f4dc15 49obj-$(CONFIG_CPU) += cpu/
9c3f0bc5 50obj-y += crypto/
7b6af41e 51obj-$(CONFIG_FPGA) += fpga/
9c3f0bc5
MY
52obj-y += hwmon/
53obj-y += misc/
54obj-y += pcmcia/
55obj-y += dfu/
ca831f49 56obj-$(CONFIG_X86) += pch/
9c3f0bc5
MY
57obj-y += rtc/
58obj-y += sound/
04868b40 59obj-y += spmi/
c8a7ba9e 60obj-y += timer/
9c3f0bc5
MY
61obj-y += tpm/
62obj-y += twserial/
63obj-y += video/
64obj-y += watchdog/
4c76b552 65obj-$(CONFIG_QE) += qe/
93d33204 66obj-$(CONFIG_U_QE) += qe/
6238935d 67obj-y += mailbox/
909ea9aa 68obj-y += memory/
b2f97cf2 69obj-y += pwm/
f494e0a1 70obj-y += input/
a43febde
KI
71# SOC specific infrastructure drivers.
72obj-y += soc/
ddf56bc7 73obj-$(CONFIG_REMOTEPROC) += remoteproc/
e3568d2e 74obj-y += thermal/
d6c2ac5b 75
9ffa7a35 76obj-$(CONFIG_MACH_PIC32) += ddr/microchip/
d6c2ac5b 77endif