Loading...
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 += irqchip
10obj-y += bus
11
12obj-$(CONFIG_GENERIC_PHY) += phy
13
14# GPIO must come after pinctrl as gpios may need to mux pins etc
15obj-$(CONFIG_PINCTRL) += pinctrl
16obj-$(CONFIG_GPIOLIB) += gpio
17obj-y += pwm
18
19obj-y += pci
20
21obj-$(CONFIG_PARISC) += parisc
22obj-$(CONFIG_RAPIDIO) += rapidio
23obj-y += video
24obj-y += idle
25
26# IPMI must come before ACPI in order to provide IPMI opregion support
27obj-y += char/ipmi
28
29obj-$(CONFIG_ACPI) += acpi
30obj-$(CONFIG_SFI) += sfi
31# PnP must come after ACPI since it will eventually need to check if acpi
32# was used and do nothing if so
33obj-$(CONFIG_PNP) += pnp
34obj-y += amba
35
36obj-y += clk
37# Many drivers will want to use DMA so this has to be made available
38# really early.
39obj-$(CONFIG_DMADEVICES) += dma
40
41# SOC specific infrastructure drivers.
42obj-y += soc
43
44obj-$(CONFIG_VIRTIO) += virtio
45obj-$(CONFIG_VDPA) += vdpa
46obj-$(CONFIG_XEN) += xen
47
48# regulators early, since some subsystems rely on them to initialize
49obj-$(CONFIG_REGULATOR) += regulator
50
51# reset controllers early, since gpu drivers might rely on them to initialize
52obj-$(CONFIG_RESET_CONTROLLER) += reset
53
54# tty comes before char so that the VT console is the boot-time
55# default.
56obj-y += tty
57obj-y += char
58
59# iommu comes before gpu as gpu are using iommu controllers
60obj-y += iommu
61
62# gpu comes after char for AGP vs DRM startup and after iommu
63obj-y += gpu
64
65obj-$(CONFIG_CONNECTOR) += connector
66
67# i810fb and intelfb depend on char/agp
68obj-$(CONFIG_FB_I810) += video/fbdev/i810
69obj-$(CONFIG_FB_INTEL) += video/fbdev/intelfb
70
71obj-$(CONFIG_PARPORT) += parport
72obj-$(CONFIG_NVM) += lightnvm
73obj-y += base block misc mfd nfc
74obj-$(CONFIG_LIBNVDIMM) += nvdimm
75obj-$(CONFIG_DAX) += dax
76obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf
77obj-$(CONFIG_NUBUS) += nubus
78obj-y += macintosh
79obj-$(CONFIG_IDE) += ide
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_PARIDE) += block/paride
103obj-$(CONFIG_TC) += tc
104obj-$(CONFIG_USB_PHY) += usb
105obj-$(CONFIG_USB) += usb
106obj-$(CONFIG_USB_SUPPORT) += usb
107obj-$(CONFIG_PCI) += usb
108obj-$(CONFIG_USB_GADGET) += usb
109obj-$(CONFIG_OF) += usb
110obj-$(CONFIG_SERIO) += input/serio
111obj-$(CONFIG_GAMEPORT) += input/gameport
112obj-$(CONFIG_INPUT) += input
113obj-$(CONFIG_RTC_LIB) += rtc
114obj-y += i2c i3c media
115obj-$(CONFIG_PPS) += pps
116obj-y += ptp
117obj-$(CONFIG_W1) += w1
118obj-y += power
119obj-$(CONFIG_HWMON) += hwmon
120obj-$(CONFIG_THERMAL) += thermal
121obj-$(CONFIG_WATCHDOG) += watchdog
122obj-$(CONFIG_MD) += md
123obj-$(CONFIG_BT) += bluetooth
124obj-$(CONFIG_ACCESSIBILITY) += accessibility
125obj-$(CONFIG_ISDN) += isdn
126obj-$(CONFIG_EDAC) += edac
127obj-$(CONFIG_EISA) += eisa
128obj-$(CONFIG_PM_OPP) += opp
129obj-$(CONFIG_CPU_FREQ) += cpufreq
130obj-$(CONFIG_CPU_IDLE) += cpuidle
131obj-y += mmc
132obj-$(CONFIG_MEMSTICK) += memstick
133obj-$(CONFIG_NEW_LEDS) += leds
134obj-$(CONFIG_INFINIBAND) += infiniband
135obj-y += firmware
136obj-$(CONFIG_CRYPTO) += crypto
137obj-$(CONFIG_SUPERH) += sh
138ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
139obj-y += clocksource
140endif
141obj-$(CONFIG_DCA) += dca
142obj-$(CONFIG_HID) += hid
143obj-$(CONFIG_PPC_PS3) += ps3
144obj-$(CONFIG_OF) += of
145obj-$(CONFIG_SSB) += ssb
146obj-$(CONFIG_BCMA) += bcma
147obj-$(CONFIG_VHOST_RING) += vhost
148obj-$(CONFIG_VHOST) += vhost
149obj-$(CONFIG_VLYNQ) += vlynq
150obj-$(CONFIG_GREYBUS) += greybus
151obj-$(CONFIG_STAGING) += staging
152obj-y += platform
153
154obj-$(CONFIG_MAILBOX) += mailbox
155obj-$(CONFIG_HWSPINLOCK) += hwspinlock
156obj-$(CONFIG_REMOTEPROC) += remoteproc
157obj-$(CONFIG_RPMSG) += rpmsg
158obj-$(CONFIG_SOUNDWIRE) += soundwire
159
160# Virtualization drivers
161obj-$(CONFIG_VIRT_DRIVERS) += virt
162obj-$(CONFIG_HYPERV) += hv
163
164obj-$(CONFIG_PM_DEVFREQ) += devfreq
165obj-$(CONFIG_EXTCON) += extcon
166obj-$(CONFIG_MEMORY) += memory
167obj-$(CONFIG_IIO) += iio
168obj-$(CONFIG_VME_BUS) += vme
169obj-$(CONFIG_IPACK_BUS) += ipack
170obj-$(CONFIG_NTB) += ntb
171obj-$(CONFIG_POWERCAP) += powercap
172obj-$(CONFIG_MCB) += mcb
173obj-$(CONFIG_PERF_EVENTS) += perf
174obj-$(CONFIG_RAS) += ras
175obj-$(CONFIG_USB4) += thunderbolt
176obj-$(CONFIG_CORESIGHT) += hwtracing/coresight
177obj-y += hwtracing/intel_th
178obj-$(CONFIG_STM) += hwtracing/stm
179obj-$(CONFIG_ANDROID) += android
180obj-$(CONFIG_NVMEM) += nvmem
181obj-$(CONFIG_FPGA) += fpga
182obj-$(CONFIG_FSI) += fsi
183obj-$(CONFIG_TEE) += tee
184obj-$(CONFIG_MULTIPLEXER) += mux
185obj-$(CONFIG_UNISYS_VISORBUS) += visorbus
186obj-$(CONFIG_SIOX) += siox
187obj-$(CONFIG_GNSS) += gnss
188obj-$(CONFIG_INTERCONNECT) += interconnect
189obj-$(CONFIG_COUNTER) += counter
190obj-$(CONFIG_MOST) += most
1#
2# Makefile for the Linux kernel device drivers.
3#
4# 15 Sep 2000, Christoph Hellwig <hch@infradead.org>
5# Rewritten to use lists instead of if-statements.
6#
7
8obj-y += irqchip
9obj-y += bus
10
11obj-$(CONFIG_GENERIC_PHY) += phy
12
13# GPIO must come after pinctrl as gpios may need to mux pins etc
14obj-$(CONFIG_PINCTRL) += pinctrl
15obj-y += gpio
16obj-y += pwm
17obj-$(CONFIG_PCI) += pci
18obj-$(CONFIG_PARISC) += parisc
19obj-$(CONFIG_RAPIDIO) += rapidio
20obj-y += video
21obj-y += idle
22
23# IPMI must come before ACPI in order to provide IPMI opregion support
24obj-$(CONFIG_IPMI_HANDLER) += char/ipmi
25
26obj-$(CONFIG_ACPI) += acpi
27obj-$(CONFIG_SFI) += sfi
28# PnP must come after ACPI since it will eventually need to check if acpi
29# was used and do nothing if so
30obj-$(CONFIG_PNP) += pnp
31obj-y += amba
32# Many drivers will want to use DMA so this has to be made available
33# really early.
34obj-$(CONFIG_DMADEVICES) += dma
35
36# SOC specific infrastructure drivers.
37obj-y += soc
38
39obj-$(CONFIG_VIRTIO) += virtio
40obj-$(CONFIG_XEN) += xen
41
42# regulators early, since some subsystems rely on them to initialize
43obj-$(CONFIG_REGULATOR) += regulator
44
45# reset controllers early, since gpu drivers might rely on them to initialize
46obj-$(CONFIG_RESET_CONTROLLER) += reset
47
48# tty comes before char so that the VT console is the boot-time
49# default.
50obj-y += tty
51obj-y += char
52
53# iommu comes before gpu as gpu are using iommu controllers
54obj-$(CONFIG_IOMMU_SUPPORT) += iommu
55
56# gpu comes after char for AGP vs DRM startup and after iommu
57obj-y += gpu
58
59obj-$(CONFIG_CONNECTOR) += connector
60
61# i810fb and intelfb depend on char/agp
62obj-$(CONFIG_FB_I810) += video/fbdev/i810
63obj-$(CONFIG_FB_INTEL) += video/fbdev/intelfb
64
65obj-$(CONFIG_PARPORT) += parport
66obj-$(CONFIG_NVM) += lightnvm
67obj-y += base block misc mfd nfc
68obj-$(CONFIG_LIBNVDIMM) += nvdimm
69obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf
70obj-$(CONFIG_NUBUS) += nubus
71obj-y += macintosh
72obj-$(CONFIG_IDE) += ide
73obj-$(CONFIG_SCSI) += scsi
74obj-y += nvme
75obj-$(CONFIG_ATA) += ata
76obj-$(CONFIG_TARGET_CORE) += target
77obj-$(CONFIG_MTD) += mtd
78obj-$(CONFIG_SPI) += spi
79obj-$(CONFIG_SPMI) += spmi
80obj-y += hsi
81obj-y += net
82obj-$(CONFIG_ATM) += atm
83obj-$(CONFIG_FUSION) += message
84obj-y += firewire
85obj-$(CONFIG_UIO) += uio
86obj-$(CONFIG_VFIO) += vfio
87obj-y += cdrom
88obj-y += auxdisplay
89obj-$(CONFIG_PCCARD) += pcmcia
90obj-$(CONFIG_DIO) += dio
91obj-$(CONFIG_SBUS) += sbus
92obj-$(CONFIG_ZORRO) += zorro
93obj-$(CONFIG_ATA_OVER_ETH) += block/aoe
94obj-$(CONFIG_PARIDE) += block/paride
95obj-$(CONFIG_TC) += tc
96obj-$(CONFIG_UWB) += uwb
97obj-$(CONFIG_USB_PHY) += usb
98obj-$(CONFIG_USB) += usb
99obj-$(CONFIG_PCI) += usb
100obj-$(CONFIG_USB_GADGET) += usb
101obj-$(CONFIG_SERIO) += input/serio
102obj-$(CONFIG_GAMEPORT) += input/gameport
103obj-$(CONFIG_INPUT) += input
104obj-$(CONFIG_RTC_LIB) += rtc
105obj-y += i2c media
106obj-$(CONFIG_PPS) += pps
107obj-$(CONFIG_PTP_1588_CLOCK) += ptp
108obj-$(CONFIG_W1) += w1
109obj-y += power
110obj-$(CONFIG_HWMON) += hwmon
111obj-$(CONFIG_THERMAL) += thermal
112obj-$(CONFIG_WATCHDOG) += watchdog
113obj-$(CONFIG_MD) += md
114obj-$(CONFIG_BT) += bluetooth
115obj-$(CONFIG_ACCESSIBILITY) += accessibility
116obj-$(CONFIG_ISDN) += isdn
117obj-$(CONFIG_EDAC) += edac
118obj-$(CONFIG_EISA) += eisa
119obj-y += lguest
120obj-$(CONFIG_CPU_FREQ) += cpufreq
121obj-$(CONFIG_CPU_IDLE) += cpuidle
122obj-y += mmc
123obj-$(CONFIG_MEMSTICK) += memstick
124obj-y += leds
125obj-$(CONFIG_INFINIBAND) += infiniband
126obj-$(CONFIG_SGI_SN) += sn
127obj-y += firmware
128obj-$(CONFIG_CRYPTO) += crypto
129obj-$(CONFIG_SUPERH) += sh
130obj-$(CONFIG_ARCH_SHMOBILE) += sh
131ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
132obj-y += clocksource
133endif
134obj-$(CONFIG_DCA) += dca
135obj-$(CONFIG_HID) += hid
136obj-$(CONFIG_PPC_PS3) += ps3
137obj-$(CONFIG_OF) += of
138obj-$(CONFIG_SSB) += ssb
139obj-$(CONFIG_BCMA) += bcma
140obj-$(CONFIG_VHOST_RING) += vhost
141obj-$(CONFIG_VLYNQ) += vlynq
142obj-$(CONFIG_STAGING) += staging
143obj-y += platform
144#common clk code
145obj-y += clk
146
147obj-$(CONFIG_MAILBOX) += mailbox
148obj-$(CONFIG_HWSPINLOCK) += hwspinlock
149obj-$(CONFIG_REMOTEPROC) += remoteproc
150obj-$(CONFIG_RPMSG) += rpmsg
151
152# Virtualization drivers
153obj-$(CONFIG_VIRT_DRIVERS) += virt
154obj-$(CONFIG_HYPERV) += hv
155
156obj-$(CONFIG_PM_DEVFREQ) += devfreq
157obj-$(CONFIG_EXTCON) += extcon
158obj-$(CONFIG_MEMORY) += memory
159obj-$(CONFIG_IIO) += iio
160obj-$(CONFIG_VME_BUS) += vme
161obj-$(CONFIG_IPACK_BUS) += ipack
162obj-$(CONFIG_NTB) += ntb
163obj-$(CONFIG_FMC) += fmc
164obj-$(CONFIG_POWERCAP) += powercap
165obj-$(CONFIG_MCB) += mcb
166obj-$(CONFIG_PERF_EVENTS) += perf
167obj-$(CONFIG_RAS) += ras
168obj-$(CONFIG_THUNDERBOLT) += thunderbolt
169obj-$(CONFIG_CORESIGHT) += hwtracing/coresight
170obj-y += hwtracing/intel_th
171obj-$(CONFIG_STM) += hwtracing/stm
172obj-$(CONFIG_ANDROID) += android
173obj-$(CONFIG_NVMEM) += nvmem
174obj-$(CONFIG_FPGA) += fpga