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