blob: 3ff1b75e6f840600b5bbb97cbead84b03497aab8 [file] [log] [blame]
Simon Glass2e7d35d2014-02-26 15:59:21 -07001#
2# Copyright (c) 2013 Google, Inc
3#
4# SPDX-License-Identifier: GPL-2.0+
5#
6
Simon Glass06811952014-02-26 15:59:22 -07007obj-$(CONFIG_CMD_DM) += cmd_dm.o
Joe Hershberger40441e02015-05-20 14:27:29 -05008obj-$(CONFIG_UT_DM) += bus.o
9obj-$(CONFIG_UT_DM) += test-driver.o
10obj-$(CONFIG_UT_DM) += test-fdt.o
11obj-$(CONFIG_UT_DM) += test-main.o
12obj-$(CONFIG_UT_DM) += test-uclass.o
Simon Glass2e7d35d2014-02-26 15:59:21 -070013
14# Tests for particular subsystems - when enabling driver model for a new
15# subsystem you must add sandbox tests here.
Joe Hershberger40441e02015-05-20 14:27:29 -050016obj-$(CONFIG_UT_DM) += core.o
Simon Glassb6a49a72014-06-11 23:29:50 -060017ifneq ($(CONFIG_SANDBOX),)
Simon Glass6a1c7ce2015-07-06 12:54:24 -060018obj-$(CONFIG_CLK) += clk.o
Joe Hershbergerbfacad72015-03-22 17:09:15 -050019obj-$(CONFIG_DM_ETH) += eth.o
Simon Glass2e7d35d2014-02-26 15:59:21 -070020obj-$(CONFIG_DM_GPIO) += gpio.o
Simon Glassecc2ed52014-12-10 08:55:55 -070021obj-$(CONFIG_DM_I2C) += i2c.o
Simon Glass3c43fba2015-07-06 12:54:34 -060022obj-$(CONFIG_LED) += led.o
Simon Glass8e6cc462015-07-06 12:54:32 -060023obj-$(CONFIG_DM_MMC) += mmc.o
Simon Glassd3b7ff12015-03-05 12:25:34 -070024obj-$(CONFIG_DM_PCI) += pci.o
Simon Glass64ce0ca2015-07-06 12:54:31 -060025obj-$(CONFIG_RAM) += ram.o
Simon Glass86075ba2015-07-06 12:54:39 -060026obj-y += regmap.o
Nishanth Menonbfaa2d92015-09-17 15:42:42 -050027obj-$(CONFIG_REMOTEPROC) += remoteproc.o
Simon Glass201c29a2015-07-06 12:54:30 -060028obj-$(CONFIG_RESET) += reset.o
Simon Glass47725112015-04-20 12:37:31 -060029obj-$(CONFIG_DM_RTC) += rtc.o
Simon Glassb0425662016-01-03 13:50:29 -070030#obj-$(CONFIG_DM_SPI_FLASH) += sf.o
31#obj-$(CONFIG_DM_SPI) += spi.o
Simon Glass04035fd2015-07-06 12:54:35 -060032obj-y += syscon.o
Simon Glasse00cb222015-03-25 12:23:05 -060033obj-$(CONFIG_DM_USB) += usb.o
Przemyslaw Marczake8f339e2015-05-13 13:38:33 +020034obj-$(CONFIG_DM_PMIC) += pmic.o
35obj-$(CONFIG_DM_REGULATOR) += regulator.o
Thomas Chou9961a0b2015-10-30 15:35:52 +080036obj-$(CONFIG_TIMER) += timer.o
Przemyslaw Marczakc48cb7e2015-10-27 13:08:07 +010037obj-$(CONFIG_ADC) += adc.o
Simon Glassb6a49a72014-06-11 23:29:50 -060038endif