Makefile 4.67 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 14
# GPIO must come after pinctrl as gpios may need to mux pins etc
obj-y				+= pinctrl/
Michael Buesch's avatar
Michael Buesch committed
15
obj-y				+= gpio/
Sascha Hauer's avatar
Sascha Hauer committed
16
obj-y				+= pwm/
17
obj-$(CONFIG_PCI)		+= pci/
Linus Torvalds's avatar
Linus Torvalds committed
18
obj-$(CONFIG_PARISC)		+= parisc/
19
obj-$(CONFIG_RAPIDIO)		+= rapidio/
Linus Torvalds's avatar
Linus Torvalds committed
20
obj-y				+= video/
21
obj-y				+= idle/
Matthew Garrett's avatar
Matthew Garrett committed
22 23 24 25

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

Len Brown's avatar
Len Brown committed
26
obj-$(CONFIG_ACPI)		+= acpi/
27
obj-$(CONFIG_SFI)		+= sfi/
Linus Torvalds's avatar
Linus Torvalds committed
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/
31
obj-y				+= amba/
Linus Walleij's avatar
Linus Walleij committed
32 33
# Many drivers will want to use DMA so this has to be made available
# really early.
34
obj-$(CONFIG_DMADEVICES)	+= dma/
Linus Torvalds's avatar
Linus Torvalds committed
35

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

Stijn Tintel's avatar
Stijn Tintel committed
39
obj-$(CONFIG_VIRTIO)		+= virtio/
40 41
obj-$(CONFIG_XEN)		+= xen/

David Brownell's avatar
David Brownell committed
42 43 44
# regulators early, since some subsystems rely on them to initialize
obj-$(CONFIG_REGULATOR)		+= regulator/

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
Linus Torvalds's avatar
Linus Torvalds committed
49
# default.
50
obj-y				+= tty/
Linus Torvalds's avatar
Linus Torvalds committed
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/

59 60
obj-$(CONFIG_CONNECTOR)		+= connector/

Linus Torvalds's avatar
Linus Torvalds committed
61
# i810fb and intelfb depend on char/agp/
62 63
obj-$(CONFIG_FB_I810)           += video/fbdev/i810/
obj-$(CONFIG_FB_INTEL)          += video/fbdev/intelfb/
Linus Torvalds's avatar
Linus Torvalds committed
64 65

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

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

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

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