blob: 3f5a634afd5cf16023ebba51ffb5d4c008e68b1a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass2e7d35d2014-02-26 15:59:21 -07002#
3# Copyright (c) 2013 Google, Inc
Simon Glass2e7d35d2014-02-26 15:59:21 -07004
Simon Glass06811952014-02-26 15:59:22 -07005obj-$(CONFIG_CMD_DM) += cmd_dm.o
Joe Hershberger40441e02015-05-20 14:27:29 -05006obj-$(CONFIG_UT_DM) += bus.o
7obj-$(CONFIG_UT_DM) += test-driver.o
8obj-$(CONFIG_UT_DM) += test-fdt.o
9obj-$(CONFIG_UT_DM) += test-main.o
10obj-$(CONFIG_UT_DM) += test-uclass.o
Simon Glass2e7d35d2014-02-26 15:59:21 -070011
12# Tests for particular subsystems - when enabling driver model for a new
13# subsystem you must add sandbox tests here.
Joe Hershberger40441e02015-05-20 14:27:29 -050014obj-$(CONFIG_UT_DM) += core.o
Simon Glassb6a49a72014-06-11 23:29:50 -060015ifneq ($(CONFIG_SANDBOX),)
Simon Glasse4fb8632016-03-13 08:22:36 -060016obj-$(CONFIG_BLK) += blk.o
Simon Glass6a1c7ce2015-07-06 12:54:24 -060017obj-$(CONFIG_CLK) += clk.o
Joe Hershbergerbfacad72015-03-22 17:09:15 -050018obj-$(CONFIG_DM_ETH) += eth.o
Simon Glass2e7d35d2014-02-26 15:59:21 -070019obj-$(CONFIG_DM_GPIO) += gpio.o
Simon Glassecc2ed52014-12-10 08:55:55 -070020obj-$(CONFIG_DM_I2C) += i2c.o
Simon Glass3c43fba2015-07-06 12:54:34 -060021obj-$(CONFIG_LED) += led.o
Stephen Warren8961b522016-05-16 17:41:37 -060022obj-$(CONFIG_DM_MAILBOX) += mailbox.o
Simon Glass8e6cc462015-07-06 12:54:32 -060023obj-$(CONFIG_DM_MMC) += mmc.o
Masahiro Yamada04ca8712018-04-27 01:02:02 +090024obj-y += ofnode.o
Simon Glassd3b7ff12015-03-05 12:25:34 -070025obj-$(CONFIG_DM_PCI) += pci.o
Jean-Jacques Hiblot86322f52017-04-24 11:51:28 +020026obj-$(CONFIG_PHY) += phy.o
Stephen Warren61f5ddc2016-07-13 13:45:31 -060027obj-$(CONFIG_POWER_DOMAIN) += power-domain.o
Simon Glass43b41562017-04-16 21:01:11 -060028obj-$(CONFIG_DM_PWM) += pwm.o
Simon Glass64ce0ca2015-07-06 12:54:31 -060029obj-$(CONFIG_RAM) += ram.o
Simon Glass86075ba2015-07-06 12:54:39 -060030obj-y += regmap.o
Nishanth Menonbfaa2d92015-09-17 15:42:42 -050031obj-$(CONFIG_REMOTEPROC) += remoteproc.o
Stephen Warren4581b712016-06-17 09:43:59 -060032obj-$(CONFIG_DM_RESET) += reset.o
Stephen Warren11636252016-05-12 12:03:35 -060033obj-$(CONFIG_SYSRESET) += sysreset.o
Simon Glass47725112015-04-20 12:37:31 -060034obj-$(CONFIG_DM_RTC) += rtc.o
Simon Glassf8025b52016-02-24 09:14:57 -070035obj-$(CONFIG_DM_SPI_FLASH) += sf.o
Ramon Fried20e77052018-07-02 02:58:00 +030036obj-$(CONFIG_SMEM) += smem.o
Simon Glassf8025b52016-02-24 09:14:57 -070037obj-$(CONFIG_DM_SPI) += spi.o
Simon Glass04035fd2015-07-06 12:54:35 -060038obj-y += syscon.o
Simon Glasse00cb222015-03-25 12:23:05 -060039obj-$(CONFIG_DM_USB) += usb.o
Przemyslaw Marczake8f339e2015-05-13 13:38:33 +020040obj-$(CONFIG_DM_PMIC) += pmic.o
41obj-$(CONFIG_DM_REGULATOR) += regulator.o
Thomas Chou9961a0b2015-10-30 15:35:52 +080042obj-$(CONFIG_TIMER) += timer.o
Simon Glass3c97c4f2016-01-18 19:52:26 -070043obj-$(CONFIG_DM_VIDEO) += video.o
Przemyslaw Marczakc48cb7e2015-10-27 13:08:07 +010044obj-$(CONFIG_ADC) += adc.o
Mateusz Kulikowskid33776e2016-03-31 23:12:28 +020045obj-$(CONFIG_SPMI) += spmi.o
maxims@google.com0753bc22017-04-17 12:00:21 -070046obj-$(CONFIG_WDT) += wdt.o
Mario Six87940ec2018-08-09 14:51:20 +020047obj-$(CONFIG_AXI) += axi.o
Mario Six004e67c2018-07-31 14:24:14 +020048obj-$(CONFIG_MISC) += misc.o
Patrice Chotardd7c09682018-08-03 15:07:41 +020049obj-$(CONFIG_DM_SERIAL) += serial.o
Simon Glassb6a49a72014-06-11 23:29:50 -060050endif