Makefile 5.07 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7
#
# Makefile for the Linux kernel device drivers.
#
# 15 Sep 2000, Christoph Hellwig <hch@infradead.org>
# Rewritten to use lists instead of if-statements.
#

8
obj-y				+= irqchip/
9
obj-y				+= bus/
10

11 12
obj-$(CONFIG_GENERIC_PHY)	+= phy/

13
# GPIO must come after pinctrl as gpios may need to mux pins etc
14
obj-$(CONFIG_PINCTRL)		+= pinctrl/
15
obj-$(CONFIG_GPIOLIB)		+= gpio/
16
obj-y				+= pwm/
17

18
obj-$(CONFIG_PCI)		+= pci/
19
obj-$(CONFIG_PCI_ENDPOINT)	+= pci/endpoint/
20 21 22
# PCI dwc controller drivers
obj-y				+= pci/dwc/

Linus Torvalds's avatar
Linus Torvalds committed
23
obj-$(CONFIG_PARISC)		+= parisc/
24
obj-$(CONFIG_RAPIDIO)		+= rapidio/
Linus Torvalds's avatar
Linus Torvalds committed
25
obj-y				+= video/
26
obj-y				+= idle/
Matthew Garrett's avatar
Matthew Garrett committed
27 28

# IPMI must come before ACPI in order to provide IPMI opregion support
29
obj-y				+= char/ipmi/
Matthew Garrett's avatar
Matthew Garrett committed
30

Len Brown's avatar
Len Brown committed
31
obj-$(CONFIG_ACPI)		+= acpi/
32
obj-$(CONFIG_SFI)		+= sfi/
Linus Torvalds's avatar
Linus Torvalds committed
33 34 35
# PnP must come after ACPI since it will eventually need to check if acpi
# was used and do nothing if so
obj-$(CONFIG_PNP)		+= pnp/
36
obj-y				+= amba/
37 38

obj-y				+= clk/
Linus Walleij's avatar
Linus Walleij committed
39 40
# Many drivers will want to use DMA so this has to be made available
# really early.
41
obj-$(CONFIG_DMADEVICES)	+= dma/
Linus Torvalds's avatar
Linus Torvalds committed
42

43 44 45
# SOC specific infrastructure drivers.
obj-y				+= soc/

Stijn Tintel's avatar
Stijn Tintel committed
46
obj-$(CONFIG_VIRTIO)		+= virtio/
47 48
obj-$(CONFIG_XEN)		+= xen/

49 50 51
# regulators early, since some subsystems rely on them to initialize
obj-$(CONFIG_REGULATOR)		+= regulator/

52 53 54
# reset controllers early, since gpu drivers might rely on them to initialize
obj-$(CONFIG_RESET_CONTROLLER)	+= reset/

55
# tty/ comes before char/ so that the VT console is the boot-time
Linus Torvalds's avatar
Linus Torvalds committed
56
# default.
57
obj-y				+= tty/
Linus Torvalds's avatar
Linus Torvalds committed
58 59
obj-y				+= char/

60 61 62 63
# iommu/ comes before gpu as gpu are using iommu controllers
obj-$(CONFIG_IOMMU_SUPPORT)	+= iommu/

# gpu/ comes after char for AGP vs DRM startup and after iommu
64 65
obj-y				+= gpu/

66 67
obj-$(CONFIG_CONNECTOR)		+= connector/

Linus Torvalds's avatar
Linus Torvalds committed
68
# i810fb and intelfb depend on char/agp/
69 70
obj-$(CONFIG_FB_I810)           += video/fbdev/i810/
obj-$(CONFIG_FB_INTEL)          += video/fbdev/intelfb/
Linus Torvalds's avatar
Linus Torvalds committed
71 72

obj-$(CONFIG_PARPORT)		+= parport/
73
obj-$(CONFIG_NVM)		+= lightnvm/
74
obj-y				+= base/ block/ misc/ mfd/ nfc/
75
obj-$(CONFIG_LIBNVDIMM)		+= nvdimm/
76
obj-$(CONFIG_DAX)		+= dax/
77
obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf/
Linus Torvalds's avatar
Linus Torvalds committed
78
obj-$(CONFIG_NUBUS)		+= nubus/
79
obj-y				+= macintosh/
Linus Torvalds's avatar
Linus Torvalds committed
80 81
obj-$(CONFIG_IDE)		+= ide/
obj-$(CONFIG_SCSI)		+= scsi/
82
obj-y				+= nvme/
Jeff Garzik's avatar
Jeff Garzik committed
83
obj-$(CONFIG_ATA)		+= ata/
84
obj-$(CONFIG_TARGET_CORE)	+= target/
85 86
obj-$(CONFIG_MTD)		+= mtd/
obj-$(CONFIG_SPI)		+= spi/
87
obj-$(CONFIG_SPMI)		+= spmi/
88
obj-$(CONFIG_HSI)		+= hsi/
89 90
obj-y				+= net/
obj-$(CONFIG_ATM)		+= atm/
Linus Torvalds's avatar
Linus Torvalds committed
91
obj-$(CONFIG_FUSION)		+= message/
92
obj-y				+= firewire/
93
obj-$(CONFIG_UIO)		+= uio/
Alex Williamson's avatar
Alex Williamson committed
94
obj-$(CONFIG_VFIO)		+= vfio/
Linus Torvalds's avatar
Linus Torvalds committed
95
obj-y				+= cdrom/
96
obj-y				+= auxdisplay/
Linus Torvalds's avatar
Linus Torvalds committed
97 98 99 100 101 102 103
obj-$(CONFIG_PCCARD)		+= pcmcia/
obj-$(CONFIG_DIO)		+= dio/
obj-$(CONFIG_SBUS)		+= sbus/
obj-$(CONFIG_ZORRO)		+= zorro/
obj-$(CONFIG_ATA_OVER_ETH)	+= block/aoe/
obj-$(CONFIG_PARIDE) 		+= block/paride/
obj-$(CONFIG_TC)		+= tc/
104
obj-$(CONFIG_UWB)		+= uwb/
105
obj-$(CONFIG_USB_PHY)		+= usb/
Linus Torvalds's avatar
Linus Torvalds committed
106
obj-$(CONFIG_USB)		+= usb/
107
obj-$(CONFIG_PCI)		+= usb/
108
obj-$(CONFIG_USB_GADGET)	+= usb/
109
obj-$(CONFIG_OF)		+= usb/
110
obj-$(CONFIG_SERIO)		+= input/serio/
Linus Torvalds's avatar
Linus Torvalds committed
111 112
obj-$(CONFIG_GAMEPORT)		+= input/gameport/
obj-$(CONFIG_INPUT)		+= input/
113
obj-$(CONFIG_RTC_LIB)		+= rtc/
114
obj-y				+= i2c/ media/
Rodolfo Giometti's avatar
Rodolfo Giometti committed
115
obj-$(CONFIG_PPS)		+= pps/
116
obj-y				+= ptp/
Linus Torvalds's avatar
Linus Torvalds committed
117
obj-$(CONFIG_W1)		+= w1/
118
obj-y				+= power/
119
obj-$(CONFIG_HWMON)		+= hwmon/
Zhang Rui's avatar
Zhang Rui committed
120
obj-$(CONFIG_THERMAL)		+= thermal/
121
obj-$(CONFIG_WATCHDOG)		+= watchdog/
Linus Torvalds's avatar
Linus Torvalds committed
122 123
obj-$(CONFIG_MD)		+= md/
obj-$(CONFIG_BT)		+= bluetooth/
124
obj-$(CONFIG_ACCESSIBILITY)	+= accessibility/
Linus Torvalds's avatar
Linus Torvalds committed
125
obj-$(CONFIG_ISDN)		+= isdn/
126
obj-$(CONFIG_EDAC)		+= edac/
Linus Torvalds's avatar
Linus Torvalds committed
127
obj-$(CONFIG_EISA)		+= eisa/
128
obj-y				+= lguest/
Linus Torvalds's avatar
Linus Torvalds committed
129
obj-$(CONFIG_CPU_FREQ)		+= cpufreq/
130
obj-$(CONFIG_CPU_IDLE)		+= cpuidle/
131
obj-y				+= mmc/
132
obj-$(CONFIG_MEMSTICK)		+= memstick/
133
obj-$(CONFIG_NEW_LEDS)		+= leds/
Linus Torvalds's avatar
Linus Torvalds committed
134
obj-$(CONFIG_INFINIBAND)	+= infiniband/
135
obj-$(CONFIG_SGI_SN)		+= sn/
Linus Torvalds's avatar
Linus Torvalds committed
136 137
obj-y				+= firmware/
obj-$(CONFIG_CRYPTO)		+= crypto/
138
obj-$(CONFIG_SUPERH)		+= sh/
139 140 141
ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
obj-y				+= clocksource/
endif
142
obj-$(CONFIG_DCA)		+= dca/
143
obj-$(CONFIG_HID)		+= hid/
144
obj-$(CONFIG_PPC_PS3)		+= ps3/
145
obj-$(CONFIG_OF)		+= of/
146
obj-$(CONFIG_SSB)		+= ssb/
147
obj-$(CONFIG_BCMA)		+= bcma/
148
obj-$(CONFIG_VHOST_RING)	+= vhost/
149
obj-$(CONFIG_VHOST)		+= vhost/
150
obj-$(CONFIG_VLYNQ)		+= vlynq/
151
obj-$(CONFIG_STAGING)		+= staging/
152
obj-y				+= platform/
153

154
obj-$(CONFIG_MAILBOX)		+= mailbox/
155
obj-$(CONFIG_HWSPINLOCK)	+= hwspinlock/
156
obj-$(CONFIG_REMOTEPROC)	+= remoteproc/
157
obj-$(CONFIG_RPMSG)		+= rpmsg/
158 159 160

# Virtualization drivers
obj-$(CONFIG_VIRT_DRIVERS)	+= virt/
161
obj-$(CONFIG_HYPERV)		+= hv/
162 163

obj-$(CONFIG_PM_DEVFREQ)	+= devfreq/
164
obj-$(CONFIG_EXTCON)		+= extcon/
165
obj-$(CONFIG_MEMORY)		+= memory/
166
obj-$(CONFIG_IIO)		+= iio/
167
obj-$(CONFIG_VME_BUS)		+= vme/
168
obj-$(CONFIG_IPACK_BUS)		+= ipack/
169
obj-$(CONFIG_NTB)		+= ntb/
170
obj-$(CONFIG_FMC)		+= fmc/
171
obj-$(CONFIG_POWERCAP)		+= powercap/
172
obj-$(CONFIG_MCB)		+= mcb/
173
obj-$(CONFIG_PERF_EVENTS)	+= perf/
174
obj-$(CONFIG_RAS)		+= ras/
175
obj-$(CONFIG_THUNDERBOLT)	+= thunderbolt/
176
obj-$(CONFIG_CORESIGHT)		+= hwtracing/coresight/
177
obj-y				+= hwtracing/intel_th/
178
obj-$(CONFIG_STM)		+= hwtracing/stm/
179
obj-$(CONFIG_ANDROID)		+= android/
180
obj-$(CONFIG_NVMEM)		+= nvmem/
Alan Tull's avatar
Alan Tull committed
181
obj-$(CONFIG_FPGA)		+= fpga/
182
obj-$(CONFIG_FSI)		+= fsi/
183
obj-$(CONFIG_TEE)		+= tee/