Makefile 4.8 KB
Newer Older
L
Linus Torvalds 已提交
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/
M
Michael Buesch 已提交
15
obj-y				+= gpio/
S
Sascha Hauer 已提交
16
obj-y				+= pwm/
17
obj-$(CONFIG_PCI)		+= pci/
L
Linus Torvalds 已提交
18
obj-$(CONFIG_PARISC)		+= parisc/
M
Matt Porter 已提交
19
obj-$(CONFIG_RAPIDIO)		+= rapidio/
L
Linus Torvalds 已提交
20
obj-y				+= video/
21
obj-y				+= idle/
M
Matthew Garrett 已提交
22 23 24 25

# IPMI must come before ACPI in order to provide IPMI opregion support
obj-$(CONFIG_IPMI_HANDLER)	+= char/ipmi/

L
Len Brown 已提交
26
obj-$(CONFIG_ACPI)		+= acpi/
27
obj-$(CONFIG_SFI)		+= sfi/
L
Linus Torvalds 已提交
28 29 30
# 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/
H
Hiroshi DOYU 已提交
31
obj-y				+= amba/
L
Linus Walleij 已提交
32 33
# Many drivers will want to use DMA so this has to be made available
# really early.
34
obj-$(CONFIG_DMADEVICES)	+= dma/
L
Linus Torvalds 已提交
35

36 37 38
# SOC specific infrastructure drivers.
obj-y				+= soc/

S
Stijn Tintel 已提交
39
obj-$(CONFIG_VIRTIO)		+= virtio/
40 41
obj-$(CONFIG_XEN)		+= xen/

D
David Brownell 已提交
42 43 44
# regulators early, since some subsystems rely on them to initialize
obj-$(CONFIG_REGULATOR)		+= regulator/

P
Philipp Zabel 已提交
45 46 47
# reset controllers early, since gpu drivers might rely on them to initialize
obj-$(CONFIG_RESET_CONTROLLER)	+= reset/

48
# tty/ comes before char/ so that the VT console is the boot-time
L
Linus Torvalds 已提交
49
# default.
50
obj-y				+= tty/
L
Linus Torvalds 已提交
51 52
obj-y				+= char/

53 54 55 56
# 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
57 58
obj-y				+= gpu/

E
Evgeniy Polyakov 已提交
59 60
obj-$(CONFIG_CONNECTOR)		+= connector/

L
Linus Torvalds 已提交
61
# i810fb and intelfb depend on char/agp/
62 63
obj-$(CONFIG_FB_I810)           += video/fbdev/i810/
obj-$(CONFIG_FB_INTEL)          += video/fbdev/intelfb/
L
Linus Torvalds 已提交
64 65

obj-$(CONFIG_PARPORT)		+= parport/
66
obj-y				+= base/ block/ misc/ mfd/ nfc/
67
obj-$(CONFIG_LIBNVDIMM)		+= nvdimm/
68
obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf/
L
Linus Torvalds 已提交
69
obj-$(CONFIG_NUBUS)		+= nubus/
70
obj-y				+= macintosh/
L
Linus Torvalds 已提交
71 72
obj-$(CONFIG_IDE)		+= ide/
obj-$(CONFIG_SCSI)		+= scsi/
73
obj-$(CONFIG_NVM)		+= lightnvm/
74
obj-y				+= nvme/
J
Jeff Garzik 已提交
75
obj-$(CONFIG_ATA)		+= ata/
76
obj-$(CONFIG_TARGET_CORE)	+= target/
77 78
obj-$(CONFIG_MTD)		+= mtd/
obj-$(CONFIG_SPI)		+= spi/
79
obj-$(CONFIG_SPMI)		+= spmi/
80
obj-y				+= hsi/
81 82
obj-y				+= net/
obj-$(CONFIG_ATM)		+= atm/
L
Linus Torvalds 已提交
83
obj-$(CONFIG_FUSION)		+= message/
84
obj-y				+= firewire/
H
Hans J. Koch 已提交
85
obj-$(CONFIG_UIO)		+= uio/
A
Alex Williamson 已提交
86
obj-$(CONFIG_VFIO)		+= vfio/
L
Linus Torvalds 已提交
87
obj-y				+= cdrom/
88
obj-y				+= auxdisplay/
L
Linus Torvalds 已提交
89 90 91 92 93 94 95
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/
D
David Vrabel 已提交
96
obj-$(CONFIG_UWB)		+= uwb/
F
Felipe Balbi 已提交
97
obj-$(CONFIG_USB_PHY)		+= usb/
L
Linus Torvalds 已提交
98
obj-$(CONFIG_USB)		+= usb/
99
obj-$(CONFIG_PCI)		+= usb/
100
obj-$(CONFIG_USB_GADGET)	+= usb/
101
obj-$(CONFIG_SERIO)		+= input/serio/
L
Linus Torvalds 已提交
102 103
obj-$(CONFIG_GAMEPORT)		+= input/gameport/
obj-$(CONFIG_INPUT)		+= input/
104
obj-$(CONFIG_RTC_LIB)		+= rtc/
105
obj-y				+= i2c/ media/
R
Rodolfo Giometti 已提交
106
obj-$(CONFIG_PPS)		+= pps/
107
obj-$(CONFIG_PTP_1588_CLOCK)	+= ptp/
L
Linus Torvalds 已提交
108
obj-$(CONFIG_W1)		+= w1/
109
obj-$(CONFIG_POWER_SUPPLY)	+= power/
110
obj-$(CONFIG_HWMON)		+= hwmon/
Z
Zhang Rui 已提交
111
obj-$(CONFIG_THERMAL)		+= thermal/
W
Wim Van Sebroeck 已提交
112
obj-$(CONFIG_WATCHDOG)		+= watchdog/
L
Linus Torvalds 已提交
113 114
obj-$(CONFIG_MD)		+= md/
obj-$(CONFIG_BT)		+= bluetooth/
115
obj-$(CONFIG_ACCESSIBILITY)	+= accessibility/
L
Linus Torvalds 已提交
116
obj-$(CONFIG_ISDN)		+= isdn/
A
Alan Cox 已提交
117
obj-$(CONFIG_EDAC)		+= edac/
L
Linus Torvalds 已提交
118
obj-$(CONFIG_EISA)		+= eisa/
119
obj-y				+= lguest/
L
Linus Torvalds 已提交
120
obj-$(CONFIG_CPU_FREQ)		+= cpufreq/
121
obj-$(CONFIG_CPU_IDLE)		+= cpuidle/
122
obj-y				+= mmc/
123
obj-$(CONFIG_MEMSTICK)		+= memstick/
124
obj-y				+= leds/
L
Linus Torvalds 已提交
125
obj-$(CONFIG_INFINIBAND)	+= infiniband/
126
obj-$(CONFIG_SGI_SN)		+= sn/
L
Linus Torvalds 已提交
127 128
obj-y				+= firmware/
obj-$(CONFIG_CRYPTO)		+= crypto/
129
obj-$(CONFIG_SUPERH)		+= sh/
130
obj-$(CONFIG_ARCH_SHMOBILE)	+= sh/
J
John Stultz 已提交
131 132 133
ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
obj-y				+= clocksource/
endif
134
obj-$(CONFIG_DCA)		+= dca/
J
Jiri Kosina 已提交
135
obj-$(CONFIG_HID)		+= hid/
136
obj-$(CONFIG_PPC_PS3)		+= ps3/
137
obj-$(CONFIG_OF)		+= of/
138
obj-$(CONFIG_SSB)		+= ssb/
139
obj-$(CONFIG_BCMA)		+= bcma/
140
obj-$(CONFIG_VHOST_RING)	+= vhost/
141
obj-$(CONFIG_VLYNQ)		+= vlynq/
142
obj-$(CONFIG_STAGING)		+= staging/
143
obj-y				+= platform/
144 145
#common clk code
obj-y				+= clk/
146

147
obj-$(CONFIG_MAILBOX)		+= mailbox/
148
obj-$(CONFIG_HWSPINLOCK)	+= hwspinlock/
149
obj-$(CONFIG_REMOTEPROC)	+= remoteproc/
150
obj-$(CONFIG_RPMSG)		+= rpmsg/
151 152 153

# Virtualization drivers
obj-$(CONFIG_VIRT_DRIVERS)	+= virt/
154
obj-$(CONFIG_HYPERV)		+= hv/
155 156

obj-$(CONFIG_PM_DEVFREQ)	+= devfreq/
157
obj-$(CONFIG_EXTCON)		+= extcon/
158
obj-$(CONFIG_MEMORY)		+= memory/
159
obj-$(CONFIG_IIO)		+= iio/
160
obj-$(CONFIG_VME_BUS)		+= vme/
161
obj-$(CONFIG_IPACK_BUS)		+= ipack/
162
obj-$(CONFIG_NTB)		+= ntb/
163
obj-$(CONFIG_FMC)		+= fmc/
164
obj-$(CONFIG_POWERCAP)		+= powercap/
165
obj-$(CONFIG_MCB)		+= mcb/
166
obj-$(CONFIG_PERF_EVENTS)	+= perf/
167
obj-$(CONFIG_RAS)		+= ras/
168
obj-$(CONFIG_THUNDERBOLT)	+= thunderbolt/
169
obj-$(CONFIG_CORESIGHT)		+= hwtracing/coresight/
170
obj-$(CONFIG_ANDROID)		+= android/
171
obj-$(CONFIG_NVMEM)		+= nvmem/