blob: b074f242a43594fc3d3a383a9dce5d126e8f3a78 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002# Makefile for the Linux device tree
3
Russell King2a41e602014-01-10 23:23:37 +00004obj-y := component.o core.o bus.o dd.o syscore.o \
gregkh@suse.decd987d32005-03-23 11:12:38 -08005 driver.o class.o platform.o \
Heiko Carstens411f0f32007-05-06 14:49:09 -07006 cpu.o firmware.o init.o map.o devres.o \
Ben Hutchingsccbc60d2011-11-24 07:04:39 +00007 attribute_container.o transport_class.o \
Heikki Krogerusf2d9b662018-03-20 15:57:02 +03008 topology.o container.o property.o cacheinfo.o \
9 devcon.o
Kay Sievers2b2af542009-04-30 15:23:42 +020010obj-$(CONFIG_DEVTMPFS) += devtmpfs.o
Aneesh Kumar K.Vf825c732013-07-02 11:15:15 +053011obj-$(CONFIG_DMA_CMA) += dma-contiguous.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070012obj-y += power/
Matthew Wilcox141e9d42007-12-03 11:57:48 -050013obj-$(CONFIG_HAS_DMA) += dma-mapping.o
Ming Leia56af872009-07-12 21:44:55 +080014obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += dma-coherent.o
William Breathitt Gray3a495512016-05-27 18:08:27 -040015obj-$(CONFIG_ISA_BUS_API) += isa.o
Luis R. Rodriguez5d6d1dd2018-03-10 06:14:50 -080016obj-y += firmware_loader/
Linus Torvalds1da177e2005-04-16 15:20:36 -070017obj-$(CONFIG_NUMA) += node.o
Keith Mannthey53947022006-09-30 23:27:08 -070018obj-$(CONFIG_MEMORY_HOTPLUG_SPARSE) += memory.o
Randy Dunlap92b42142007-12-31 10:05:43 -080019ifeq ($(CONFIG_SYSFS),y)
Greg Kroah-Hartmanc63469a2007-11-28 12:23:18 -080020obj-$(CONFIG_MODULES) += module.o
Randy Dunlap92b42142007-12-31 10:05:43 -080021endif
Michael Holzheu40394832006-05-09 12:53:49 +020022obj-$(CONFIG_SYS_HYPERVISOR) += hypervisor.o
Mark Brownb83a3132011-05-11 19:59:58 +020023obj-$(CONFIG_REGMAP) += regmap/
Lee Jones74d1d822012-02-06 11:22:22 -080024obj-$(CONFIG_SOC_BUS) += soc.o
Linus Walleijab780292013-01-22 10:56:14 -070025obj-$(CONFIG_PINCTRL) += pinctrl.o
Johannes Berg833c9542014-09-12 09:01:56 +020026obj-$(CONFIG_DEV_COREDUMP) += devcoredump.o
Marc Zyngierc09fcc4b2015-07-28 14:46:16 +010027obj-$(CONFIG_GENERIC_MSI_IRQ_DOMAIN) += platform-msi.o
Juri Lelli2ef7a292017-05-31 17:59:28 +010028obj-$(CONFIG_GENERIC_ARCH_TOPOLOGY) += arch_topology.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Dmitry Torokhov79543cf2016-09-29 17:13:14 +020030obj-y += test/
31
matt mooney7a868082010-09-24 12:17:11 -070032ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070033