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