2005-04-16 15:20:36 -07:00
|
|
|
#
|
|
|
|
|
# Makefile for the Linux kernel device drivers.
|
|
|
|
|
#
|
|
|
|
|
# 15 Sep 2000, Christoph Hellwig <hch@infradead.org>
|
|
|
|
|
# Rewritten to use lists instead of if-statements.
|
|
|
|
|
#
|
|
|
|
|
|
2012-09-12 19:57:26 -06:00
|
|
|
obj-y += irqchip/
|
2012-08-22 14:10:02 +05:30
|
|
|
obj-y += bus/
|
2012-09-12 19:57:26 -06:00
|
|
|
|
2013-09-27 11:53:25 +05:30
|
|
|
obj-$(CONFIG_GENERIC_PHY) += phy/
|
|
|
|
|
|
2011-05-02 20:50:54 +02:00
|
|
|
# GPIO must come after pinctrl as gpios may need to mux pins etc
|
2015-07-09 10:55:01 +09:00
|
|
|
obj-$(CONFIG_PINCTRL) += pinctrl/
|
2016-06-13 15:02:00 -05:00
|
|
|
obj-$(CONFIG_GPIOLIB) += gpio/
|
2011-01-28 09:40:40 +01:00
|
|
|
obj-y += pwm/
|
2005-12-03 20:50:51 -08:00
|
|
|
obj-$(CONFIG_PCI) += pci/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_PARISC) += parisc/
|
2005-11-07 01:00:15 -08:00
|
|
|
obj-$(CONFIG_RAPIDIO) += rapidio/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-y += video/
|
2010-03-08 14:07:30 -05:00
|
|
|
obj-y += idle/
|
2012-10-16 15:53:38 -05:00
|
|
|
|
|
|
|
|
# IPMI must come before ACPI in order to provide IPMI opregion support
|
2016-09-20 09:01:38 +02:00
|
|
|
obj-y += char/ipmi/
|
2012-10-16 15:53:38 -05:00
|
|
|
|
2005-08-24 12:07:20 -04:00
|
|
|
obj-$(CONFIG_ACPI) += acpi/
|
2009-08-14 15:13:46 -04:00
|
|
|
obj-$(CONFIG_SFI) += sfi/
|
2005-04-16 15:20:36 -07:00
|
|
|
# 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/
|
2012-05-07 12:24:48 +02:00
|
|
|
obj-y += amba/
|
2016-09-19 01:16:44 +09:00
|
|
|
|
|
|
|
|
obj-y += clk/
|
2011-05-18 14:18:57 +02:00
|
|
|
# Many drivers will want to use DMA so this has to be made available
|
|
|
|
|
# really early.
|
2012-10-12 17:52:45 +02:00
|
|
|
obj-$(CONFIG_DMADEVICES) += dma/
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2014-04-23 19:46:17 -04:00
|
|
|
# SOC specific infrastructure drivers.
|
|
|
|
|
obj-y += soc/
|
|
|
|
|
|
2010-05-07 14:28:34 +09:30
|
|
|
obj-$(CONFIG_VIRTIO) += virtio/
|
2007-07-17 18:37:06 -07:00
|
|
|
obj-$(CONFIG_XEN) += xen/
|
|
|
|
|
|
2008-12-01 21:50:13 -08:00
|
|
|
# regulators early, since some subsystems rely on them to initialize
|
|
|
|
|
obj-$(CONFIG_REGULATOR) += regulator/
|
|
|
|
|
|
2012-11-19 17:23:13 +01:00
|
|
|
# reset controllers early, since gpu drivers might rely on them to initialize
|
|
|
|
|
obj-$(CONFIG_RESET_CONTROLLER) += reset/
|
|
|
|
|
|
2011-01-13 12:10:18 -08:00
|
|
|
# tty/ comes before char/ so that the VT console is the boot-time
|
2005-04-16 15:20:36 -07:00
|
|
|
# default.
|
2010-11-04 11:10:29 -07:00
|
|
|
obj-y += tty/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-y += char/
|
|
|
|
|
|
2014-12-22 11:47:37 +02:00
|
|
|
# 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
|
2008-07-21 08:42:36 +10:00
|
|
|
obj-y += gpu/
|
|
|
|
|
|
2005-09-11 19:15:07 -07:00
|
|
|
obj-$(CONFIG_CONNECTOR) += connector/
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
# i810fb and intelfb depend on char/agp/
|
2014-02-13 15:31:38 +02:00
|
|
|
obj-$(CONFIG_FB_I810) += video/fbdev/i810/
|
|
|
|
|
obj-$(CONFIG_FB_INTEL) += video/fbdev/intelfb/
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
obj-$(CONFIG_PARPORT) += parport/
|
2015-11-12 20:25:10 +01:00
|
|
|
obj-$(CONFIG_NVM) += lightnvm/
|
2011-01-12 17:00:47 -08:00
|
|
|
obj-y += base/ block/ misc/ mfd/ nfc/
|
2015-05-19 22:54:31 -04:00
|
|
|
obj-$(CONFIG_LIBNVDIMM) += nvdimm/
|
2016-05-18 09:15:08 -07:00
|
|
|
obj-$(CONFIG_DEV_DAX) += dax/
|
2014-07-01 12:57:08 +02:00
|
|
|
obj-$(CONFIG_DMA_SHARED_BUFFER) += dma-buf/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_NUBUS) += nubus/
|
2007-02-08 14:20:38 -08:00
|
|
|
obj-y += macintosh/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_IDE) += ide/
|
|
|
|
|
obj-$(CONFIG_SCSI) += scsi/
|
2015-10-09 18:17:06 +02:00
|
|
|
obj-y += nvme/
|
2006-08-10 07:31:37 -04:00
|
|
|
obj-$(CONFIG_ATA) += ata/
|
2010-12-17 11:11:26 -08:00
|
|
|
obj-$(CONFIG_TARGET_CORE) += target/
|
2009-08-18 12:34:04 -04:00
|
|
|
obj-$(CONFIG_MTD) += mtd/
|
|
|
|
|
obj-$(CONFIG_SPI) += spi/
|
2014-02-12 13:44:22 -06:00
|
|
|
obj-$(CONFIG_SPMI) += spmi/
|
2016-06-13 15:02:05 -05:00
|
|
|
obj-$(CONFIG_HSI) += hsi/
|
2009-01-26 18:58:11 -08:00
|
|
|
obj-y += net/
|
|
|
|
|
obj-$(CONFIG_ATM) += atm/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_FUSION) += message/
|
2010-09-15 13:02:44 +02:00
|
|
|
obj-y += firewire/
|
2006-12-07 10:58:29 +01:00
|
|
|
obj-$(CONFIG_UIO) += uio/
|
2012-07-31 08:16:22 -06:00
|
|
|
obj-$(CONFIG_VFIO) += vfio/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-y += cdrom/
|
2007-02-10 01:44:32 -08:00
|
|
|
obj-y += auxdisplay/
|
2005-04-16 15:20:36 -07:00
|
|
|
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/
|
2008-10-24 16:46:22 +01:00
|
|
|
obj-$(CONFIG_UWB) += uwb/
|
2013-03-07 11:13:43 +02:00
|
|
|
obj-$(CONFIG_USB_PHY) += usb/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_USB) += usb/
|
2005-12-03 20:50:51 -08:00
|
|
|
obj-$(CONFIG_PCI) += usb/
|
2011-04-07 10:59:34 +03:00
|
|
|
obj-$(CONFIG_USB_GADGET) += usb/
|
2006-02-19 00:22:51 -05:00
|
|
|
obj-$(CONFIG_SERIO) += input/serio/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_GAMEPORT) += input/gameport/
|
|
|
|
|
obj-$(CONFIG_INPUT) += input/
|
2006-03-27 01:16:34 -08:00
|
|
|
obj-$(CONFIG_RTC_LIB) += rtc/
|
2009-04-21 04:22:38 -03:00
|
|
|
obj-y += i2c/ media/
|
2009-06-17 16:28:37 -07:00
|
|
|
obj-$(CONFIG_PPS) += pps/
|
2016-11-11 00:10:07 -05:00
|
|
|
obj-y += ptp/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_W1) += w1/
|
2015-12-07 12:45:12 +09:00
|
|
|
obj-y += power/
|
2005-07-02 18:15:49 +02:00
|
|
|
obj-$(CONFIG_HWMON) += hwmon/
|
2008-01-17 15:51:08 +08:00
|
|
|
obj-$(CONFIG_THERMAL) += thermal/
|
2007-08-17 08:38:02 +00:00
|
|
|
obj-$(CONFIG_WATCHDOG) += watchdog/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_MD) += md/
|
|
|
|
|
obj-$(CONFIG_BT) += bluetooth/
|
2008-04-30 00:54:51 -07:00
|
|
|
obj-$(CONFIG_ACCESSIBILITY) += accessibility/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_ISDN) += isdn/
|
2006-01-18 17:44:13 -08:00
|
|
|
obj-$(CONFIG_EDAC) += edac/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_EISA) += eisa/
|
2008-01-18 00:16:43 -02:00
|
|
|
obj-y += lguest/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_CPU_FREQ) += cpufreq/
|
2007-10-03 18:58:00 -04:00
|
|
|
obj-$(CONFIG_CPU_IDLE) += cpuidle/
|
2011-12-27 15:48:43 +02:00
|
|
|
obj-y += mmc/
|
2008-02-09 10:20:54 -08:00
|
|
|
obj-$(CONFIG_MEMSTICK) += memstick/
|
2016-06-21 14:35:07 +02:00
|
|
|
obj-$(CONFIG_NEW_LEDS) += leds/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_INFINIBAND) += infiniband/
|
2006-01-19 04:54:00 -05:00
|
|
|
obj-$(CONFIG_SGI_SN) += sn/
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-y += firmware/
|
|
|
|
|
obj-$(CONFIG_CRYPTO) += crypto/
|
2005-11-07 00:58:19 -08:00
|
|
|
obj-$(CONFIG_SUPERH) += sh/
|
2010-07-13 17:56:20 -07:00
|
|
|
ifndef CONFIG_ARCH_USES_GETTIMEOFFSET
|
|
|
|
|
obj-y += clocksource/
|
|
|
|
|
endif
|
2007-10-16 01:27:41 -07:00
|
|
|
obj-$(CONFIG_DCA) += dca/
|
2006-12-08 18:41:30 +01:00
|
|
|
obj-$(CONFIG_HID) += hid/
|
2006-11-27 19:18:56 +01:00
|
|
|
obj-$(CONFIG_PPC_PS3) += ps3/
|
2007-05-01 16:26:07 +10:00
|
|
|
obj-$(CONFIG_OF) += of/
|
2007-09-18 15:12:50 -04:00
|
|
|
obj-$(CONFIG_SSB) += ssb/
|
2011-05-09 18:56:46 +02:00
|
|
|
obj-$(CONFIG_BCMA) += bcma/
|
2013-03-20 13:50:14 +10:30
|
|
|
obj-$(CONFIG_VHOST_RING) += vhost/
|
2016-08-02 01:53:13 +03:00
|
|
|
obj-$(CONFIG_VHOST) += vhost/
|
2009-06-16 15:33:53 -07:00
|
|
|
obj-$(CONFIG_VLYNQ) += vlynq/
|
2008-09-24 14:46:44 -07:00
|
|
|
obj-$(CONFIG_STAGING) += staging/
|
2008-12-01 00:09:47 -05:00
|
|
|
obj-y += platform/
|
2011-02-17 09:52:03 -08:00
|
|
|
|
2013-01-28 16:13:14 +00:00
|
|
|
obj-$(CONFIG_MAILBOX) += mailbox/
|
2011-02-17 09:52:03 -08:00
|
|
|
obj-$(CONFIG_HWSPINLOCK) += hwspinlock/
|
2011-10-20 16:52:46 +02:00
|
|
|
obj-$(CONFIG_REMOTEPROC) += remoteproc/
|
2011-10-20 21:10:55 +02:00
|
|
|
obj-$(CONFIG_RPMSG) += rpmsg/
|
2011-06-09 15:52:06 -05:00
|
|
|
|
|
|
|
|
# Virtualization drivers
|
|
|
|
|
obj-$(CONFIG_VIRT_DRIVERS) += virt/
|
2011-10-04 12:29:52 -07:00
|
|
|
obj-$(CONFIG_HYPERV) += hv/
|
2011-10-02 00:19:15 +02:00
|
|
|
|
|
|
|
|
obj-$(CONFIG_PM_DEVFREQ) += devfreq/
|
2012-04-20 14:16:22 +09:00
|
|
|
obj-$(CONFIG_EXTCON) += extcon/
|
2012-04-27 17:54:05 +05:30
|
|
|
obj-$(CONFIG_MEMORY) += memory/
|
2012-04-25 15:54:59 +01:00
|
|
|
obj-$(CONFIG_IIO) += iio/
|
2012-04-26 12:34:58 -07:00
|
|
|
obj-$(CONFIG_VME_BUS) += vme/
|
2012-11-16 08:14:18 -08:00
|
|
|
obj-$(CONFIG_IPACK_BUS) += ipack/
|
2012-11-16 19:27:12 -07:00
|
|
|
obj-$(CONFIG_NTB) += ntb/
|
2013-06-12 09:13:25 +02:00
|
|
|
obj-$(CONFIG_FMC) += fmc/
|
2013-10-11 16:54:57 -07:00
|
|
|
obj-$(CONFIG_POWERCAP) += powercap/
|
2014-02-26 17:29:05 +01:00
|
|
|
obj-$(CONFIG_MCB) += mcb/
|
2015-07-06 12:23:53 +01:00
|
|
|
obj-$(CONFIG_PERF_EVENTS) += perf/
|
2014-06-11 13:54:04 -07:00
|
|
|
obj-$(CONFIG_RAS) += ras/
|
2014-06-03 22:03:58 +02:00
|
|
|
obj-$(CONFIG_THUNDERBOLT) += thunderbolt/
|
2015-03-30 14:13:41 -06:00
|
|
|
obj-$(CONFIG_CORESIGHT) += hwtracing/coresight/
|
2015-09-22 15:47:14 +03:00
|
|
|
obj-y += hwtracing/intel_th/
|
2015-09-22 15:47:10 +03:00
|
|
|
obj-$(CONFIG_STM) += hwtracing/stm/
|
2014-10-16 14:40:38 +02:00
|
|
|
obj-$(CONFIG_ANDROID) += android/
|
2015-07-27 12:13:19 +01:00
|
|
|
obj-$(CONFIG_NVMEM) += nvmem/
|
2015-10-07 16:36:28 +01:00
|
|
|
obj-$(CONFIG_FPGA) += fpga/
|