wlbt: update pmu sequence
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / drivers / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 #
3 # Makefile for the Linux kernel device drivers.
4 #
5 # 15 Sep 2000, Christoph Hellwig <hch@infradead.org>
6 # Rewritten to use lists instead of if-statements.
7 #
8
9 obj-y += irqchip/
10 obj-y += bus/
11
12 obj-$(CONFIG_GENERIC_PHY) += phy/
13
14 # GPIO must come after pinctrl as gpios may need to mux pins etc
15 obj-$(CONFIG_PINCTRL) += pinctrl/
16 obj-$(CONFIG_GPIOLIB) += gpio/
17 obj-y += pwm/
18
19 obj-$(CONFIG_PCI) += pci/
20 obj-$(CONFIG_PCI_ENDPOINT) += pci/endpoint/
21 # PCI dwc controller drivers
22 obj-y += pci/dwc/
23
24 obj-$(CONFIG_PARISC) += parisc/
25 obj-$(CONFIG_RAPIDIO) += rapidio/
26 obj-y += video/
27 obj-y += idle/
28
29 # IPMI must come before ACPI in order to provide IPMI opregion support
30 obj-y += char/ipmi/
31
32 obj-$(CONFIG_ACPI) += acpi/
33 obj-$(CONFIG_SFI) += sfi/
34 # PnP must come after ACPI since it will eventually need to check if acpi
35 # was used and do nothing if so
36 obj-$(CONFIG_PNP) += pnp/
37 obj-y += amba/
38
39 obj-y += clk/
40 # Many drivers will want to use DMA so this has to be made available
41 # really early.
42 obj-$(CONFIG_DMADEVICES) += dma/
43
44 # SOC specific infrastructure drivers.
45 obj-y += soc/
46
47 obj-$(CONFIG_VIRTIO) += virtio/
48 obj-$(CONFIG_XEN) += xen/
49
50 # regulators early, since some subsystems rely on them to initialize
51 obj-$(CONFIG_REGULATOR) += regulator/
52
53 # reset controllers early, since gpu drivers might rely on them to initialize
54 obj-$(CONFIG_RESET_CONTROLLER) += reset/
55
56 # tty/ comes before char/ so that the VT console is the boot-time
57 # default.
58 obj-y += tty/
59 obj-y += char/
60
61 # iommu/ comes before gpu as gpu are using iommu controllers
62 obj-$(CONFIG_IOMMU_SUPPORT) += iommu/
63
64 # gpu/ comes after char for AGP vs DRM startup and after iommu
65 obj-y += gpu/
66
67 obj-$(CONFIG_CONNECTOR) += connector/
68
69 # i810fb and intelfb depend on char/agp/
70 obj-$(CONFIG_FB_I810) += video/fbdev/i810/
71 obj-$(CONFIG_FB_INTEL) += video/fbdev/intelfb/
72
73 ifdef CONFIG_MUIC_S2MU004
74 obj-$(CONFIG_USE_MUIC) += muic_mu004/
75 else
76 obj-$(CONFIG_USE_MUIC) += muic/
77 endif
78 obj-$(CONFIG_IFCONN_MANAGER) += ifconn/
79 obj-$(CONFIG_PARPORT) += parport/
80 obj-$(CONFIG_NVM) += lightnvm/
81 obj-y += base/ block/ misc/ mfd/ nfc/
82 obj-$(CONFIG_LIBNVDIMM) += nvdimm/
83 obj-$(CONFIG_DAX) += dax/
84 obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf/
85 obj-$(CONFIG_NUBUS) += nubus/
86 obj-y += macintosh/
87 obj-$(CONFIG_IDE) += ide/
88 obj-$(CONFIG_SCSI) += scsi/
89 obj-y += nvme/
90 obj-$(CONFIG_ATA) += ata/
91 obj-$(CONFIG_TARGET_CORE) += target/
92 obj-$(CONFIG_MTD) += mtd/
93 obj-$(CONFIG_SPI) += spi/
94 obj-$(CONFIG_SPMI) += spmi/
95 obj-$(CONFIG_HSI) += hsi/
96 obj-y += net/
97 obj-$(CONFIG_ATM) += atm/
98 obj-$(CONFIG_FUSION) += message/
99 obj-y += firewire/
100 obj-$(CONFIG_UIO) += uio/
101 obj-$(CONFIG_VFIO) += vfio/
102 obj-y += cdrom/
103 obj-y += auxdisplay/
104 obj-$(CONFIG_PCCARD) += pcmcia/
105 obj-$(CONFIG_DIO) += dio/
106 obj-$(CONFIG_SBUS) += sbus/
107 obj-$(CONFIG_ZORRO) += zorro/
108 obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/
109 obj-$(CONFIG_PARIDE) += block/paride/
110 obj-$(CONFIG_TC) += tc/
111 obj-$(CONFIG_UWB) += uwb/
112 obj-$(CONFIG_USB_PHY) += usb/
113 obj-$(CONFIG_USB) += usb/
114 obj-$(CONFIG_USB_SUPPORT) += usb/
115 obj-$(CONFIG_PCI) += usb/
116 obj-$(CONFIG_USB_GADGET) += usb/
117 obj-$(CONFIG_OF) += usb/
118 obj-$(CONFIG_SERIO) += input/serio/
119 obj-$(CONFIG_GAMEPORT) += input/gameport/
120 obj-$(CONFIG_INPUT) += input/
121 obj-$(CONFIG_RTC_LIB) += rtc/
122 obj-y += i2c/ media/
123 obj-$(CONFIG_PPS) += pps/
124 obj-y += ptp/
125 obj-$(CONFIG_W1) += w1/
126 obj-y += power/
127 obj-$(CONFIG_HWMON) += hwmon/
128 obj-$(CONFIG_THERMAL) += thermal/
129 obj-$(CONFIG_WATCHDOG) += watchdog/
130 obj-$(CONFIG_MD) += md/
131 obj-$(CONFIG_BT) += bluetooth/
132 obj-$(CONFIG_ACCESSIBILITY) += accessibility/
133 obj-$(CONFIG_ISDN) += isdn/
134 obj-$(CONFIG_EDAC) += edac/
135 obj-$(CONFIG_EISA) += eisa/
136 obj-$(CONFIG_CPU_FREQ) += cpufreq/
137 obj-$(CONFIG_CPU_IDLE) += cpuidle/
138 obj-y += mmc/
139 obj-$(CONFIG_MEMSTICK) += memstick/
140 obj-$(CONFIG_NEW_LEDS) += leds/
141 obj-$(CONFIG_INFINIBAND) += infiniband/
142 obj-$(CONFIG_SGI_SN) += sn/
143 obj-y += firmware/
144 obj-$(CONFIG_CRYPTO) += crypto/
145 obj-$(CONFIG_SUPERH) += sh/
146 ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
147 obj-y += clocksource/
148 endif
149 obj-$(CONFIG_DCA) += dca/
150 obj-$(CONFIG_HID) += hid/
151 obj-$(CONFIG_PPC_PS3) += ps3/
152 obj-$(CONFIG_OF) += of/
153 obj-$(CONFIG_SSB) += ssb/
154 obj-$(CONFIG_BCMA) += bcma/
155 obj-$(CONFIG_VHOST_RING) += vhost/
156 obj-$(CONFIG_VHOST) += vhost/
157 obj-$(CONFIG_VLYNQ) += vlynq/
158 obj-$(CONFIG_STAGING) += staging/
159 obj-y += platform/
160
161 obj-$(CONFIG_MAILBOX) += mailbox/
162 obj-$(CONFIG_HWSPINLOCK) += hwspinlock/
163 obj-$(CONFIG_REMOTEPROC) += remoteproc/
164 obj-$(CONFIG_RPMSG) += rpmsg/
165
166 # Virtualization drivers
167 obj-$(CONFIG_VIRT_DRIVERS) += virt/
168 obj-$(CONFIG_HYPERV) += hv/
169
170 obj-$(CONFIG_PM_DEVFREQ) += devfreq/
171 obj-$(CONFIG_EXTCON) += extcon/
172 obj-$(CONFIG_MEMORY) += memory/
173 obj-$(CONFIG_IIO) += iio/
174 obj-$(CONFIG_VME_BUS) += vme/
175 obj-$(CONFIG_IPACK_BUS) += ipack/
176 obj-$(CONFIG_NTB) += ntb/
177 obj-$(CONFIG_FMC) += fmc/
178 obj-$(CONFIG_POWERCAP) += powercap/
179 obj-$(CONFIG_MCB) += mcb/
180 obj-$(CONFIG_PERF_EVENTS) += perf/
181 obj-$(CONFIG_RAS) += ras/
182 obj-$(CONFIG_THUNDERBOLT) += thunderbolt/
183 obj-$(CONFIG_CORESIGHT) += hwtracing/coresight/
184 obj-y += hwtracing/intel_th/
185 obj-$(CONFIG_STM) += hwtracing/stm/
186 obj-$(CONFIG_ANDROID) += android/
187 obj-$(CONFIG_NVMEM) += nvmem/
188 obj-$(CONFIG_FPGA) += fpga/
189 obj-$(CONFIG_FSI) += fsi/
190 obj-$(CONFIG_TEE) += tee/
191 obj-$(CONFIG_MULTIPLEXER) += mux/
192
193 obj-$(CONFIG_EXYNOS_BTS) += bts/
194
195 obj-$(CONFIG_TRUSTONIC_TEE) += gud/
196
197 obj-$(CONFIG_USBPD_CORE) += ccic/
198
199 obj-$(CONFIG_VISION_SUPPORT) += vision/
200
201 obj-$(CONFIG_USE_CCIC) += ccic/
202 obj-$(CONFIG_SENSORS_CLASS) += sensors/