i2c: Rename SPL/TPL_I2C_SUPPORT to I2C
[platform/kernel/u-boot.git] / drivers / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2
3 obj-$(CONFIG_$(SPL_TPL_)BUTTON) += button/
4 obj-$(CONFIG_$(SPL_TPL_)CACHE) += cache/
5 obj-$(CONFIG_$(SPL_TPL_)CLK) += clk/
6 obj-$(CONFIG_$(SPL_TPL_)DM) += core/
7 obj-$(CONFIG_$(SPL_TPL_)DFU) += dfu/
8 obj-$(CONFIG_$(SPL_TPL_)GPIO) += gpio/
9 obj-$(CONFIG_$(SPL_TPL_)DRIVERS_MISC) += misc/
10 obj-$(CONFIG_$(SPL_TPL_)SYSRESET) += sysreset/
11 obj-$(CONFIG_$(SPL_TPL_)FIRMWARE) +=firmware/
12
13 # This is needed for now, until we drop the i2c/ rule in the top-level Makefile
14 ifdef CONFIG_SPL_BUILD
15 obj-$(CONFIG_$(SPL_TPL_)I2C) += i2c/
16 endif
17 obj-$(CONFIG_$(SPL_TPL_)INPUT) += input/
18 obj-$(CONFIG_$(SPL_TPL_)LED) += led/
19 obj-$(CONFIG_$(SPL_TPL_)MMC_SUPPORT) += mmc/
20 obj-y += mtd/
21 obj-$(CONFIG_$(SPL_)MULTIPLEXER) += mux/
22 obj-$(CONFIG_$(SPL_TPL_)PCH_SUPPORT) += pch/
23 obj-$(CONFIG_$(SPL_TPL_)PCI) += pci/
24 obj-$(CONFIG_$(SPL_TPL_)PHY) += phy/
25 obj-$(CONFIG_$(SPL_TPL_)PINCTRL) += pinctrl/
26 obj-$(CONFIG_$(SPL_TPL_)RAM) += ram/
27 obj-$(CONFIG_$(SPL_TPL_)RTC_SUPPORT) += rtc/
28 obj-$(CONFIG_$(SPL_TPL_)SERIAL_SUPPORT) += serial/
29 obj-$(CONFIG_$(SPL_TPL_)SPI_SUPPORT) += spi/
30 obj-$(CONFIG_$(SPL_TPL_)TIMER) += timer/
31 obj-$(CONFIG_$(SPL_TPL_)VIRTIO) += virtio/
32 obj-$(CONFIG_$(SPL_)DM_MAILBOX) += mailbox/
33 obj-$(CONFIG_$(SPL_)REMOTEPROC) += remoteproc/
34 obj-$(CONFIG_$(SPL_)SYSINFO) += sysinfo/
35 obj-$(CONFIG_$(SPL_TPL_)TPM) += tpm/
36 obj-$(CONFIG_$(SPL_TPL_)ACPI_PMC) += power/acpi_pmc/
37 obj-$(CONFIG_XEN) += xen/
38 obj-$(CONFIG_$(SPL_)FPGA) += fpga/
39
40 ifndef CONFIG_TPL_BUILD
41 ifdef CONFIG_SPL_BUILD
42
43 obj-$(CONFIG_SPL_BOOTCOUNT_LIMIT) += bootcount/
44 obj-$(CONFIG_SPL_CACHE_SUPPORT) += cache/
45 obj-$(CONFIG_SPL_CPU) += cpu/
46 obj-$(CONFIG_SPL_CRYPTO) += crypto/
47 obj-$(CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT) += ddr/fsl/
48 obj-$(CONFIG_ARMADA_38X) += ddr/marvell/a38x/
49 obj-$(CONFIG_ARMADA_XP) += ddr/marvell/axp/
50 obj-$(CONFIG_$(SPL_)ALTERA_SDRAM) += ddr/altera/
51 obj-$(CONFIG_ARCH_IMX8M) += ddr/imx/imx8m/
52 obj-$(CONFIG_SPL_POWER) += power/ power/pmic/
53 obj-$(CONFIG_SPL_POWER) += power/regulator/
54 obj-$(CONFIG_SPL_POWER_DOMAIN) += power/domain/
55 obj-$(CONFIG_SPL_DM_RESET) += reset/
56 obj-$(CONFIG_SPL_DMA) += dma/
57 obj-$(CONFIG_SPL_ETH) += net/
58 obj-$(CONFIG_SPL_ETH) += net/phy/
59 obj-$(CONFIG_SPL_USB_ETHER) += net/phy/
60 obj-$(CONFIG_SPL_MUSB_NEW) += usb/musb-new/
61 obj-$(CONFIG_SPL_USB_GADGET) += usb/gadget/
62 obj-$(CONFIG_SPL_USB_GADGET) += usb/common/
63 obj-$(CONFIG_SPL_USB_GADGET) += usb/gadget/udc/
64 obj-$(CONFIG_SPL_WATCHDOG) += watchdog/
65 obj-$(CONFIG_SPL_USB_HOST) += usb/host/
66 obj-$(CONFIG_OMAP_USB_PHY) += usb/phy/
67 obj-$(CONFIG_SPL_SATA_SUPPORT) += ata/ scsi/
68 obj-$(CONFIG_HAVE_BLOCK_DEVICE) += block/
69 obj-$(CONFIG_SPL_THERMAL) += thermal/
70
71 endif
72 endif
73
74 ifdef CONFIG_TPL_BUILD
75
76 obj-$(CONFIG_TPL_BOOTCOUNT_LIMIT) += bootcount/
77 obj-$(CONFIG_TPL_MPC8XXX_INIT_DDR_SUPPORT) += ddr/fsl/
78
79 endif
80
81 ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TPL_BUILD),)
82
83 obj-y += adc/
84 obj-y += ata/
85 obj-y += bus/
86 obj-$(CONFIG_DM_DEMO) += demo/
87 obj-$(CONFIG_BIOSEMU) += bios_emulator/
88 obj-y += block/
89 obj-$(CONFIG_BOOTCOUNT_LIMIT) += bootcount/
90 obj-y += cache/
91 obj-$(CONFIG_CPU) += cpu/
92 obj-y += crypto/
93 obj-$(CONFIG_FASTBOOT) += fastboot/
94 obj-y += misc/
95 obj-$(CONFIG_MMC) += mmc/
96 obj-$(CONFIG_NVME) += nvme/
97 obj-$(CONFIG_PCI_ENDPOINT) += pci_endpoint/
98 obj-y += dfu/
99 obj-$(CONFIG_PCH) += pch/
100 obj-$(CONFIG_DM_REBOOT_MODE) += reboot-mode/
101 obj-y += rtc/
102 obj-y += scsi/
103 obj-y += sound/
104 obj-y += spmi/
105 obj-y += video/
106 obj-y += watchdog/
107 obj-$(CONFIG_QE) += qe/
108 obj-$(CONFIG_U_QE) += qe/
109 obj-y += mailbox/
110 obj-y += memory/
111 obj-y += mtd/
112 obj-y += pwm/
113 obj-y += reset/
114 obj-y += input/
115 # SOC specific infrastructure drivers.
116 obj-y += smem/
117 obj-y += thermal/
118 obj-$(CONFIG_TEE) += tee/
119 obj-y += axi/
120 obj-y += ufs/
121 obj-$(CONFIG_W1) += w1/
122 obj-$(CONFIG_W1_EEPROM) += w1-eeprom/
123
124 obj-$(CONFIG_MACH_PIC32) += ddr/microchip/
125 obj-$(CONFIG_DM_HWSPINLOCK) += hwspinlock/
126 obj-$(CONFIG_DM_RNG) += rng/
127 endif
128
129 obj-y += soc/