xref: /linux/drivers/Makefile (revision a4d7e8ae4a541557d7a2c815835b786c18c3613c)
1b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
21da177e4SLinus Torvalds#
31da177e4SLinus Torvalds# Makefile for the Linux kernel device drivers.
41da177e4SLinus Torvalds#
51da177e4SLinus Torvalds# 15 Sep 2000, Christoph Hellwig <hch@infradead.org>
61da177e4SLinus Torvalds# Rewritten to use lists instead of if-statements.
71da177e4SLinus Torvalds#
81da177e4SLinus Torvalds
989214f00SSimon Arlottobj-y				+= irqchip/
1026a84b3eSKishon Vijay Abraham Iobj-y				+= bus/
1189214f00SSimon Arlott
12ff764963SKishon Vijay Abraham Iobj-$(CONFIG_GENERIC_PHY)	+= phy/
13ff764963SKishon Vijay Abraham I
142744e8afSLinus Walleij# GPIO must come after pinctrl as gpios may need to mux pins etc
1595b612ccSMasahiro Yamadaobj-$(CONFIG_PINCTRL)		+= pinctrl/
166b891a26SAndrew F. Davisobj-$(CONFIG_GPIOLIB)		+= gpio/
170c2498f1SSascha Hauerobj-y				+= pwm/
185e8cb403SKishon Vijay Abraham I
199de0eec2SCyrille Pitchenobj-y				+= pci/
207a2b3f02SKishon Vijay Abraham I
211da177e4SLinus Torvaldsobj-$(CONFIG_PARISC)		+= parisc/
22394b701cSMatt Porterobj-$(CONFIG_RAPIDIO)		+= rapidio/
231da177e4SLinus Torvaldsobj-y				+= video/
2426717172SLen Brownobj-y				+= idle/
25061475b6SMatthew Garrett
26061475b6SMatthew Garrett# IPMI must come before ACPI in order to provide IPMI opregion support
2754f9c4d0SAlistair Poppleobj-y				+= char/ipmi/
28061475b6SMatthew Garrett
29888ba6c6SLen Brownobj-$(CONFIG_ACPI)		+= acpi/
304590d98fSAndy Shevchenko
311da177e4SLinus Torvalds# PnP must come after ACPI since it will eventually need to check if acpi
321da177e4SLinus Torvalds# was used and do nothing if so
331da177e4SLinus Torvaldsobj-$(CONFIG_PNP)		+= pnp/
3487d0bab2SHiroshi DOYUobj-y				+= amba/
356eb1c949SMasahiro Yamada
366eb1c949SMasahiro Yamadaobj-y				+= clk/
37a0eb221aSLinus Walleij# Many drivers will want to use DMA so this has to be made available
38a0eb221aSLinus Walleij# really early.
399a322993SPhilippe De Muyterobj-$(CONFIG_DMADEVICES)	+= dma/
401da177e4SLinus Torvalds
413a6e0821SSantosh Shilimkar# SOC specific infrastructure drivers.
423a6e0821SSantosh Shilimkarobj-y				+= soc/
433a6e0821SSantosh Shilimkar
44e2dbe06cSStijn Tintelobj-$(CONFIG_VIRTIO)		+= virtio/
4564b9f64fSJason Wangobj-$(CONFIG_VIRTIO_PCI_LIB)	+= virtio/
46c9b9f5f8SMichael S. Tsirkinobj-$(CONFIG_VDPA)		+= vdpa/
47ad9a8612SJeremy Fitzhardingeobj-$(CONFIG_XEN)		+= xen/
48ad9a8612SJeremy Fitzhardinge
499f4dab49SDavid Brownell# regulators early, since some subsystems rely on them to initialize
509f4dab49SDavid Brownellobj-$(CONFIG_REGULATOR)		+= regulator/
519f4dab49SDavid Brownell
5261fc4131SPhilipp Zabel# reset controllers early, since gpu drivers might rely on them to initialize
5361fc4131SPhilipp Zabelobj-$(CONFIG_RESET_CONTROLLER)	+= reset/
5461fc4131SPhilipp Zabel
55ab4382d2SGreg Kroah-Hartman# tty/ comes before char/ so that the VT console is the boot-time
561da177e4SLinus Torvalds# default.
5796fd7ce5SGreg Kroah-Hartmanobj-y				+= tty/
581da177e4SLinus Torvaldsobj-y				+= char/
591da177e4SLinus Torvalds
601bacc894SOded Gabbay# iommu/ comes before gpu as gpu are using iommu controllers
61bd3c2e66SSakari Ailusobj-y				+= iommu/
621bacc894SOded Gabbay
631bacc894SOded Gabbay# gpu/ comes after char for AGP vs DRM startup and after iommu
64e6b51632SDave Airlieobj-y				+= gpu/
65e6b51632SDave Airlie
667672d0b5SEvgeniy Polyakovobj-$(CONFIG_CONNECTOR)		+= connector/
677672d0b5SEvgeniy Polyakov
681da177e4SLinus Torvalds# i810fb and intelfb depend on char/agp/
69f7018c21STomi Valkeinenobj-$(CONFIG_FB_I810)           += video/fbdev/i810/
70f7018c21STomi Valkeinenobj-$(CONFIG_FB_INTEL)          += video/fbdev/intelfb/
711da177e4SLinus Torvalds
721da177e4SLinus Torvaldsobj-$(CONFIG_PARPORT)		+= parport/
73b2b7e001SMatias Bjørlingobj-$(CONFIG_NVM)		+= lightnvm/
740329326eSMatti J. Aaltonenobj-y				+= base/ block/ misc/ mfd/ nfc/
75b94d5230SDan Williamsobj-$(CONFIG_LIBNVDIMM)		+= nvdimm/
767b6be844SDan Williamsobj-$(CONFIG_DAX)		+= dax/
774cdadfd5SDan Williamsobj-$(CONFIG_CXL_BUS)		+= cxl/
7835fac7e3SMaarten Lankhorstobj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf/
791da177e4SLinus Torvaldsobj-$(CONFIG_NUBUS)		+= nubus/
8045941d04SSoeren Sonnenburgobj-y				+= macintosh/
811da177e4SLinus Torvaldsobj-$(CONFIG_IDE)		+= ide/
82ad80f970SChristoph Hellwigobj-y				+= scsi/
8357dacad5SJay Sternbergobj-y				+= nvme/
84c6fd2807SJeff Garzikobj-$(CONFIG_ATA)		+= ata/
85c66ac9dbSNicholas Bellingerobj-$(CONFIG_TARGET_CORE)	+= target/
869289d4efSSudhakar Rajashekharaobj-$(CONFIG_MTD)		+= mtd/
879289d4efSSudhakar Rajashekharaobj-$(CONFIG_SPI)		+= spi/
885a86bf34SKenneth Heitkeobj-$(CONFIG_SPMI)		+= spmi/
89ea12c45fSAndrew F. Davisobj-$(CONFIG_HSI)		+= hsi/
903648e78eSSagar Dhariaobj-$(CONFIG_SLIMBUS)		+= slimbus/
910c406263SArjan van de Venobj-y				+= net/
920c406263SArjan van de Venobj-$(CONFIG_ATM)		+= atm/
931da177e4SLinus Torvaldsobj-$(CONFIG_FUSION)		+= message/
948702d33aSStefan Richterobj-y				+= firewire/
95beafc54cSHans J. Kochobj-$(CONFIG_UIO)		+= uio/
96cba3345cSAlex Williamsonobj-$(CONFIG_VFIO)		+= vfio/
971da177e4SLinus Torvaldsobj-y				+= cdrom/
9870e84049SMiguel Ojeda Sandonisobj-y				+= auxdisplay/
991da177e4SLinus Torvaldsobj-$(CONFIG_PCCARD)		+= pcmcia/
1001da177e4SLinus Torvaldsobj-$(CONFIG_DIO)		+= dio/
1011da177e4SLinus Torvaldsobj-$(CONFIG_SBUS)		+= sbus/
1021da177e4SLinus Torvaldsobj-$(CONFIG_ZORRO)		+= zorro/
1031da177e4SLinus Torvaldsobj-$(CONFIG_ATA_OVER_ETH)	+= block/aoe/
1041da177e4SLinus Torvaldsobj-$(CONFIG_PARIDE) 		+= block/paride/
1051da177e4SLinus Torvaldsobj-$(CONFIG_TC)		+= tc/
106edc7cb2eSFelipe Balbiobj-$(CONFIG_USB_PHY)		+= usb/
1071da177e4SLinus Torvaldsobj-$(CONFIG_USB)		+= usb/
108c9d24f78SRandy Dunlapobj-$(CONFIG_USB_SUPPORT)	+= usb/
1096015d2c4SLinus Torvaldsobj-$(CONFIG_PCI)		+= usb/
1104661ffc9SFelipe Balbiobj-$(CONFIG_USB_GADGET)	+= usb/
1113d615964SAlexey Brodkinobj-$(CONFIG_OF)		+= usb/
11251c38f9bSDmitry Torokhovobj-$(CONFIG_SERIO)		+= input/serio/
1131da177e4SLinus Torvaldsobj-$(CONFIG_GAMEPORT)		+= input/gameport/
1141da177e4SLinus Torvaldsobj-$(CONFIG_INPUT)		+= input/
115c58411e9SAlessandro Zummoobj-$(CONFIG_RTC_LIB)		+= rtc/
1163a379bbcSBoris Brezillonobj-y				+= i2c/ i3c/ media/
117eae9d2baSRodolfo Giomettiobj-$(CONFIG_PPS)		+= pps/
118d1cbfd77SNicolas Pitreobj-y				+= ptp/
1191da177e4SLinus Torvaldsobj-$(CONFIG_W1)		+= w1/
120f96576bdSKrzysztof Kozlowskiobj-y				+= power/
121ad2f931dSJean Delvareobj-$(CONFIG_HWMON)		+= hwmon/
122203d3d4aSZhang Ruiobj-$(CONFIG_THERMAL)		+= thermal/
123b7e04f8cSWim Van Sebroeckobj-$(CONFIG_WATCHDOG)		+= watchdog/
1241da177e4SLinus Torvaldsobj-$(CONFIG_MD)		+= md/
1251da177e4SLinus Torvaldsobj-$(CONFIG_BT)		+= bluetooth/
126f7511d5fSSamuel Thibaultobj-$(CONFIG_ACCESSIBILITY)	+= accessibility/
1271da177e4SLinus Torvaldsobj-$(CONFIG_ISDN)		+= isdn/
128da9bb1d2SAlan Coxobj-$(CONFIG_EDAC)		+= edac/
1291da177e4SLinus Torvaldsobj-$(CONFIG_EISA)		+= eisa/
1307813dd6fSViresh Kumarobj-$(CONFIG_PM_OPP)		+= opp/
1311da177e4SLinus Torvaldsobj-$(CONFIG_CPU_FREQ)		+= cpufreq/
1324f86d3a8SLen Brownobj-$(CONFIG_CPU_IDLE)		+= cpuidle/
13352c506f0SAdrian Hunterobj-y				+= mmc/
134baf8532aSAlex Dubovobj-$(CONFIG_MEMSTICK)		+= memstick/
135b1ae40a5SAndrew F. Davisobj-$(CONFIG_NEW_LEDS)		+= leds/
1361da177e4SLinus Torvaldsobj-$(CONFIG_INFINIBAND)	+= infiniband/
1371da177e4SLinus Torvaldsobj-y				+= firmware/
1381da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO)		+= crypto/
139e87eaad1SPaul Mundtobj-$(CONFIG_SUPERH)		+= sh/
140592913ecSJohn Stultzobj-y				+= clocksource/
1417589670fSShannon Nelsonobj-$(CONFIG_DCA)		+= dca/
14263f3861dSJiri Kosinaobj-$(CONFIG_HID)		+= hid/
143eb30c720SGeert Uytterhoevenobj-$(CONFIG_PPC_PS3)		+= ps3/
14497e873e5SStephen Rothwellobj-$(CONFIG_OF)		+= of/
14561e115a5SMichael Bueschobj-$(CONFIG_SSB)		+= ssb/
1468369ae33SRafał Miłeckiobj-$(CONFIG_BCMA)		+= bcma/
147f87d0fbbSRusty Russellobj-$(CONFIG_VHOST_RING)	+= vhost/
14898701a2aSRandy Dunlapobj-$(CONFIG_VHOST_IOTLB)	+= vhost/
149b2fbd8b0SMichael S. Tsirkinobj-$(CONFIG_VHOST)		+= vhost/
15055e331cfSFlorian Fainelliobj-$(CONFIG_VLYNQ)		+= vlynq/
1518465def4SGreg Kroah-Hartmanobj-$(CONFIG_GREYBUS)		+= greybus/
1528ffdff6aSGreg Kroah-Hartmanobj-$(CONFIG_COMEDI)		+= comedi/
15335045589SGreg Kroah-Hartmanobj-$(CONFIG_STAGING)		+= staging/
15441b16dceSLen Brownobj-y				+= platform/
155bd9a4c7dSOhad Ben-Cohen
15630058677SRob Herringobj-$(CONFIG_MAILBOX)		+= mailbox/
157bd9a4c7dSOhad Ben-Cohenobj-$(CONFIG_HWSPINLOCK)	+= hwspinlock/
158400e64dfSOhad Ben-Cohenobj-$(CONFIG_REMOTEPROC)	+= remoteproc/
159bcabbccaSOhad Ben-Cohenobj-$(CONFIG_RPMSG)		+= rpmsg/
1609251345dSVinod Koulobj-$(CONFIG_SOUNDWIRE)		+= soundwire/
1616db71994STimur Tabi
1626db71994STimur Tabi# Virtualization drivers
1636db71994STimur Tabiobj-$(CONFIG_VIRT_DRIVERS)	+= virt/
164*a4d7e8aeSMichael Kelleyobj-$(subst m,y,$(CONFIG_HYPERV))	+= hv/
165a3c98b8bSMyungJoo Ham
166a3c98b8bSMyungJoo Hamobj-$(CONFIG_PM_DEVFREQ)	+= devfreq/
167de55d871SMyungJoo Hamobj-$(CONFIG_EXTCON)		+= extcon/
1687ec94453SAneesh Vobj-$(CONFIG_MEMORY)		+= memory/
169a980e046SJonathan Cameronobj-$(CONFIG_IIO)		+= iio/
170db3b9e99SGreg Kroah-Hartmanobj-$(CONFIG_VME_BUS)		+= vme/
17105e5027eSGreg Kroah-Hartmanobj-$(CONFIG_IPACK_BUS)		+= ipack/
172fce8a7bbSJon Masonobj-$(CONFIG_NTB)		+= ntb/
17312cc4b38SSrinivas Pandruvadaobj-$(CONFIG_POWERCAP)		+= powercap/
1743764e82eSJohannes Thumshirnobj-$(CONFIG_MCB)		+= mcb/
175fa8ad788SMark Rutlandobj-$(CONFIG_PERF_EVENTS)	+= perf/
17676ac8275SChen, Gongobj-$(CONFIG_RAS)		+= ras/
177690ac0d2SMika Westerbergobj-$(CONFIG_USB4)		+= thunderbolt/
17801081f5aSMathieu Poirierobj-$(CONFIG_CORESIGHT)		+= hwtracing/coresight/
17939f40346SAlexander Shishkinobj-y				+= hwtracing/intel_th/
1807bd1d409SAlexander Shishkinobj-$(CONFIG_STM)		+= hwtracing/stm/
181777783e0SGreg Kroah-Hartmanobj-$(CONFIG_ANDROID)		+= android/
182eace75cfSSrinivas Kandagatlaobj-$(CONFIG_NVMEM)		+= nvmem/
1836a8c3be7SAlan Tullobj-$(CONFIG_FPGA)		+= fpga/
1840508ad1fSJeremy Kerrobj-$(CONFIG_FSI)		+= fsi/
185967c9ccaSJens Wiklanderobj-$(CONFIG_TEE)		+= tee/
186a3b02a9cSPeter Rosinobj-$(CONFIG_MULTIPLEXER)	+= mux/
18793d3ad90SDavid Kershnerobj-$(CONFIG_UNISYS_VISORBUS)	+= visorbus/
188bbecb07fSUwe Kleine-Königobj-$(CONFIG_SIOX)		+= siox/
1892b6a4403SJohan Hovoldobj-$(CONFIG_GNSS)		+= gnss/
19011f1cecaSGeorgi Djakovobj-$(CONFIG_INTERCONNECT)	+= interconnect/
1910040a390SWilliam Breathitt Grayobj-$(CONFIG_COUNTER)		+= counter/
192b2765275SChristian Grommobj-$(CONFIG_MOST)		+= most/
193