]> git.ipfire.org Git - people/ms/u-boot.git/blame_incremental - drivers/Makefile
arc: No need in sections defined in sources with newer tools
[people/ms/u-boot.git] / drivers / Makefile
... / ...
CommitLineData
1#
2# SPDX-License-Identifier: GPL-2.0+
3#
4
5obj-$(CONFIG_$(SPL_)DM) += core/
6obj-$(CONFIG_$(SPL_)CLK) += clk/
7obj-$(CONFIG_$(SPL_)LED) += led/
8obj-$(CONFIG_$(SPL_)PINCTRL) += pinctrl/
9obj-$(CONFIG_$(SPL_)RAM) += ram/
10
11ifdef CONFIG_SPL_BUILD
12
13obj-$(CONFIG_SPL_CRYPTO_SUPPORT) += crypto/
14obj-$(CONFIG_SPL_I2C_SUPPORT) += i2c/
15obj-$(CONFIG_SPL_GPIO_SUPPORT) += gpio/
16obj-$(CONFIG_SPL_MMC_SUPPORT) += mmc/
17obj-$(CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT) += ddr/fsl/
18obj-$(CONFIG_ARMADA_38X) += ddr/marvell/a38x/
19obj-$(CONFIG_ARMADA_XP) += ddr/marvell/axp/
20obj-$(CONFIG_ALTERA_SDRAM) += ddr/altera/
21obj-$(CONFIG_SPL_SERIAL_SUPPORT) += serial/
22obj-$(CONFIG_SPL_SPI_SUPPORT) += spi/
23obj-$(CONFIG_SPL_POWER_SUPPORT) += power/ power/pmic/
24obj-$(CONFIG_SPL_POWER_SUPPORT) += power/regulator/
25obj-$(CONFIG_SPL_DRIVERS_MISC_SUPPORT) += misc/
26obj-$(CONFIG_SPL_MTD_SUPPORT) += mtd/
27obj-$(CONFIG_SPL_NAND_SUPPORT) += mtd/nand/
28obj-$(CONFIG_SPL_ONENAND_SUPPORT) += mtd/onenand/
29obj-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += mtd/spi/
30obj-$(CONFIG_SPL_UBI) += mtd/ubispl/
31obj-$(CONFIG_SPL_DMA_SUPPORT) += dma/
32obj-$(CONFIG_SPL_ETH_SUPPORT) += net/
33obj-$(CONFIG_SPL_ETH_SUPPORT) += net/phy/
34obj-$(CONFIG_SPL_USBETH_SUPPORT) += net/phy/
35obj-$(CONFIG_SPL_MUSB_NEW_SUPPORT) += usb/musb-new/
36obj-$(CONFIG_SPL_USBETH_SUPPORT) += usb/gadget/
37obj-$(CONFIG_SPL_WATCHDOG_SUPPORT) += watchdog/
38obj-$(CONFIG_SPL_USB_HOST_SUPPORT) += usb/host/
39obj-$(CONFIG_OMAP_USB_PHY) += usb/phy/
40obj-$(CONFIG_SPL_SATA_SUPPORT) += block/
41obj-$(CONFIG_SPL_USB_HOST_SUPPORT) += block/
42obj-$(CONFIG_SPL_MMC_SUPPORT) += block/
43
44else
45
46obj-y += adc/
47obj-$(CONFIG_DM_DEMO) += demo/
48obj-$(CONFIG_BIOSEMU) += bios_emulator/
49obj-y += block/
50obj-$(CONFIG_BOOTCOUNT_LIMIT) += bootcount/
51obj-$(CONFIG_CPU) += cpu/
52obj-y += crypto/
53obj-$(CONFIG_FPGA) += fpga/
54obj-y += hwmon/
55obj-y += misc/
56obj-y += pcmcia/
57obj-y += dfu/
58obj-$(CONFIG_X86) += pch/
59obj-y += rtc/
60obj-y += sound/
61obj-y += spmi/
62obj-y += timer/
63obj-y += tpm/
64obj-y += twserial/
65obj-y += video/
66obj-y += watchdog/
67obj-$(CONFIG_QE) += qe/
68obj-$(CONFIG_U_QE) += qe/
69obj-y += mailbox/
70obj-y += memory/
71obj-y += pwm/
72obj-y += reset/
73obj-y += input/
74# SOC specific infrastructure drivers.
75obj-y += soc/
76obj-$(CONFIG_REMOTEPROC) += remoteproc/
77obj-y += thermal/
78
79obj-$(CONFIG_MACH_PIC32) += ddr/microchip/
80endif