]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/Makefile
2e17d0268db11a18724f9094a294daf791921c30
[karo-tx-uboot.git] / drivers / Makefile
1 obj-$(CONFIG_$(SPL_)DM)         += core/
2
3 ifdef CONFIG_SPL_BUILD
4
5 obj-$(CONFIG_SPL_CLK) += clk/
6 obj-$(CONFIG_SPL_I2C_SUPPORT) += i2c/
7 obj-$(CONFIG_SPL_GPIO_SUPPORT) += gpio/
8 obj-$(CONFIG_SPL_MMC_SUPPORT) += mmc/
9 obj-$(CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT) += ddr/fsl/
10 obj-$(CONFIG_SYS_MVEBU_DDR_A38X) += ddr/marvell/a38x/
11 obj-$(CONFIG_SYS_MVEBU_DDR_AXP) += ddr/marvell/axp/
12 obj-$(CONFIG_ALTERA_SDRAM) += ddr/altera/
13 obj-$(CONFIG_SPL_SERIAL_SUPPORT) += serial/
14 obj-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += mtd/spi/
15 obj-$(CONFIG_SPL_SPI_SUPPORT) += spi/
16 obj-$(CONFIG_SPL_LED_SUPPORT) += led/
17 obj-$(CONFIG_SPL_POWER_SUPPORT) += power/ power/pmic/
18 obj-$(CONFIG_SPL_POWER_SUPPORT) += power/regulator/
19 obj-$(CONFIG_SPL_MTD_SUPPORT) += mtd/
20 obj-$(CONFIG_SPL_NAND_SUPPORT) += mtd/nand/
21 obj-$(CONFIG_SPL_DRIVERS_MISC_SUPPORT) += misc/
22 obj-$(CONFIG_SPL_ONENAND_SUPPORT) += mtd/onenand/
23 obj-$(CONFIG_SPL_DMA_SUPPORT) += dma/
24 obj-$(CONFIG_SPL_ETH_SUPPORT) += net/
25 obj-$(CONFIG_SPL_ETH_SUPPORT) += net/phy/
26 obj-$(CONFIG_SPL_USBETH_SUPPORT) += net/phy/
27 obj-$(CONFIG_SPL_RAM_SUPPORT) += ram/
28 obj-$(CONFIG_SPL_MUSB_NEW_SUPPORT) += usb/musb-new/
29 obj-$(CONFIG_SPL_USBETH_SUPPORT) += usb/gadget/
30 obj-$(CONFIG_SPL_WATCHDOG_SUPPORT) += watchdog/
31 obj-$(CONFIG_SPL_USB_HOST_SUPPORT) += usb/host/
32 obj-$(CONFIG_OMAP_USB_PHY) += usb/phy/
33 obj-$(CONFIG_SPL_SATA_SUPPORT) += block/
34
35 else
36
37 obj-$(CONFIG_CLK) += clk/
38 obj-$(CONFIG_DM_DEMO) += demo/
39 obj-$(CONFIG_BIOSEMU) += bios_emulator/
40 obj-y += block/
41 obj-$(CONFIG_BOOTCOUNT_LIMIT) += bootcount/
42 obj-$(CONFIG_CPU) += cpu/
43 obj-y += crypto/
44 obj-$(CONFIG_FPGA) += fpga/
45 obj-y += hwmon/
46 obj-$(CONFIG_LED) += led/
47 obj-y += misc/
48 obj-y += pcmcia/
49 obj-y += dfu/
50 obj-$(CONFIG_RAM) += ram/
51 obj-y += rtc/
52 obj-y += sound/
53 obj-y += tpm/
54 obj-y += twserial/
55 obj-y += video/
56 obj-y += watchdog/
57 obj-$(CONFIG_QE) += qe/
58 obj-$(CONFIG_U_QE) += qe/
59 obj-y += memory/
60 obj-y += pwm/
61 obj-y += input/
62 # SOC specific infrastructure drivers.
63 obj-y += soc/
64 obj-y += thermal/
65
66 endif