Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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
9obj-y += cache/
10obj-y += irqchip/
11obj-y += bus/
12
13obj-$(CONFIG_GENERIC_PHY) += phy/
14
15# GPIO must come after pinctrl as gpios may need to mux pins etc
16obj-$(CONFIG_PINCTRL) += pinctrl/
17obj-$(CONFIG_GPIOLIB) += gpio/
18obj-y += pwm/
19
20# LEDs must come before PCI, it is needed by NPEM driver
21obj-y += leds/
22
23obj-y += pci/
24
25obj-$(CONFIG_PARISC) += parisc/
26obj-$(CONFIG_RAPIDIO) += rapidio/
27obj-y += video/
28obj-y += idle/
29
30# IPMI must come before ACPI in order to provide IPMI opregion support
31obj-y += char/ipmi/
32
33obj-$(CONFIG_ACPI) += acpi/
34
35# PnP must come after ACPI since it will eventually need to check if acpi
36# was used and do nothing if so
37obj-$(CONFIG_PNP) += pnp/
38obj-y += amba/
39
40obj-y += clk/
41# Many drivers will want to use DMA so this has to be made available
42# really early.
43obj-$(CONFIG_DMADEVICES) += dma/
44
45# SOC specific infrastructure drivers.
46obj-y += soc/
47obj-$(CONFIG_PM_GENERIC_DOMAINS) += pmdomain/
48
49obj-y += virtio/
50obj-$(CONFIG_VDPA) += vdpa/
51obj-$(CONFIG_XEN) += xen/
52
53# regulators early, since some subsystems rely on them to initialize
54obj-$(CONFIG_REGULATOR) += regulator/
55
56# reset controllers early, since gpu drivers might rely on them to initialize
57obj-$(CONFIG_RESET_CONTROLLER) += reset/
58
59# tty/ comes before char/ so that the VT console is the boot-time
60# default.
61obj-y += tty/
62obj-y += char/
63
64# iommu/ comes before gpu as gpu are using iommu controllers
65obj-y += iommu/
66
67# gpu/ comes after char for AGP vs DRM startup and after iommu
68obj-y += gpu/
69
70obj-$(CONFIG_CONNECTOR) += connector/
71
72# i810fb depends on char/agp/
73obj-$(CONFIG_FB_I810) += video/fbdev/i810/
74
75obj-$(CONFIG_PARPORT) += parport/
76obj-y += base/ block/ misc/ mfd/ nfc/
77obj-$(CONFIG_LIBNVDIMM) += nvdimm/
78obj-y += dax/
79obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf/
80obj-$(CONFIG_NUBUS) += nubus/
81obj-y += cxl/
82obj-y += macintosh/
83obj-y += scsi/
84obj-y += nvme/
85obj-$(CONFIG_ATA) += ata/
86obj-$(CONFIG_TARGET_CORE) += target/
87obj-$(CONFIG_MTD) += mtd/
88obj-$(CONFIG_SPI) += spi/
89obj-$(CONFIG_SPMI) += spmi/
90obj-$(CONFIG_HSI) += hsi/
91obj-$(CONFIG_SLIMBUS) += slimbus/
92obj-y += net/
93obj-$(CONFIG_ATM) += atm/
94obj-$(CONFIG_FUSION) += message/
95obj-y += firewire/
96obj-$(CONFIG_UIO) += uio/
97obj-$(CONFIG_VFIO) += vfio/
98obj-y += cdrom/
99obj-y += auxdisplay/
100obj-$(CONFIG_PCCARD) += pcmcia/
101obj-$(CONFIG_DIO) += dio/
102obj-$(CONFIG_SBUS) += sbus/
103obj-$(CONFIG_ZORRO) += zorro/
104obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/
105obj-$(CONFIG_TC) += tc/
106obj-$(CONFIG_USB_PHY) += usb/
107obj-$(CONFIG_USB) += usb/
108obj-$(CONFIG_USB_SUPPORT) += usb/
109obj-$(CONFIG_PCI) += usb/
110obj-$(CONFIG_USB_GADGET) += usb/
111obj-$(CONFIG_OF) += usb/
112obj-$(CONFIG_SERIO) += input/serio/
113obj-$(CONFIG_GAMEPORT) += input/gameport/
114obj-$(CONFIG_INPUT) += input/
115obj-$(CONFIG_RTC_LIB) += rtc/
116obj-y += i2c/ i3c/ media/
117obj-$(CONFIG_PPS) += pps/
118obj-y += ptp/
119obj-$(CONFIG_W1) += w1/
120obj-y += power/
121obj-$(CONFIG_HWMON) += hwmon/
122obj-$(CONFIG_THERMAL) += thermal/
123obj-$(CONFIG_WATCHDOG) += watchdog/
124obj-$(CONFIG_MD) += md/
125obj-$(CONFIG_BT) += bluetooth/
126obj-$(CONFIG_ACCESSIBILITY) += accessibility/
127obj-$(CONFIG_ISDN) += isdn/
128obj-$(CONFIG_EDAC) += edac/
129obj-$(CONFIG_EISA) += eisa/
130obj-$(CONFIG_PM_OPP) += opp/
131obj-$(CONFIG_CPU_FREQ) += cpufreq/
132obj-$(CONFIG_CPU_IDLE) += cpuidle/
133obj-y += mmc/
134obj-y += ufs/
135obj-$(CONFIG_MEMSTICK) += memstick/
136obj-$(CONFIG_INFINIBAND) += infiniband/
137obj-y += firmware/
138obj-$(CONFIG_FWCTL) += fwctl/
139obj-$(CONFIG_CRYPTO) += crypto/
140obj-$(CONFIG_SUPERH) += sh/
141obj-y += clocksource/
142obj-$(CONFIG_DCA) += dca/
143obj-$(CONFIG_HID_SUPPORT) += hid/
144obj-$(CONFIG_PPC_PS3) += ps3/
145obj-$(CONFIG_OF) += of/
146obj-$(CONFIG_SSB) += ssb/
147obj-$(CONFIG_BCMA) += bcma/
148obj-$(CONFIG_VHOST_RING) += vhost/
149obj-$(CONFIG_VHOST_IOTLB) += vhost/
150obj-$(CONFIG_VHOST) += vhost/
151obj-$(CONFIG_GREYBUS) += greybus/
152obj-$(CONFIG_COMEDI) += comedi/
153obj-$(CONFIG_GPIB) += gpib/
154obj-$(CONFIG_STAGING) += staging/
155obj-y += platform/
156
157obj-$(CONFIG_MAILBOX) += mailbox/
158obj-$(CONFIG_HWSPINLOCK) += hwspinlock/
159obj-$(CONFIG_REMOTEPROC) += remoteproc/
160obj-$(CONFIG_RPMSG) += rpmsg/
161obj-$(CONFIG_SOUNDWIRE) += soundwire/
162
163# Virtualization drivers
164obj-y += virt/
165obj-$(CONFIG_HYPERV) += hv/
166
167obj-$(CONFIG_PM_DEVFREQ) += devfreq/
168obj-$(CONFIG_EXTCON) += extcon/
169obj-$(CONFIG_MEMORY) += memory/
170obj-$(CONFIG_IIO) += iio/
171obj-$(CONFIG_IPACK_BUS) += ipack/
172obj-$(CONFIG_NTB) += ntb/
173obj-$(CONFIG_POWERCAP) += powercap/
174obj-$(CONFIG_MCB) += mcb/
175obj-$(CONFIG_PERF_EVENTS) += perf/
176obj-$(CONFIG_RAS) += ras/
177obj-$(CONFIG_USB4) += thunderbolt/
178obj-$(CONFIG_CORESIGHT) += hwtracing/coresight/
179obj-y += hwtracing/intel_th/
180obj-$(CONFIG_STM) += hwtracing/stm/
181obj-$(CONFIG_HISI_PTT) += hwtracing/ptt/
182obj-y += android/
183obj-$(CONFIG_NVMEM) += nvmem/
184obj-$(CONFIG_FPGA) += fpga/
185obj-$(CONFIG_FSI) += fsi/
186obj-$(CONFIG_TEE) += tee/
187obj-$(CONFIG_MULTIPLEXER) += mux/
188obj-$(CONFIG_SIOX) += siox/
189obj-$(CONFIG_GNSS) += gnss/
190obj-$(CONFIG_INTERCONNECT) += interconnect/
191obj-$(CONFIG_COUNTER) += counter/
192obj-$(CONFIG_MOST) += most/
193obj-$(CONFIG_PECI) += peci/
194obj-$(CONFIG_HTE) += hte/
195obj-$(CONFIG_DRM_ACCEL) += accel/
196obj-$(CONFIG_CDX_BUS) += cdx/
197obj-$(CONFIG_DPLL) += dpll/
198obj-y += resctrl/
199
200obj-$(CONFIG_DIBS) += dibs/
201obj-$(CONFIG_S390) += s390/