]> git.ipfire.org Git - people/ms/u-boot.git/blame - test/dm/Makefile
Merge git://git.denx.de/u-boot-marvell
[people/ms/u-boot.git] / test / dm / Makefile
CommitLineData
2e7d35d2
SG
1#
2# Copyright (c) 2013 Google, Inc
3#
4# SPDX-License-Identifier: GPL-2.0+
5#
6
06811959 7obj-$(CONFIG_CMD_DM) += cmd_dm.o
40441e0b
JH
8obj-$(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
2e7d35d2
SG
13
14# Tests for particular subsystems - when enabling driver model for a new
15# subsystem you must add sandbox tests here.
40441e0b 16obj-$(CONFIG_UT_DM) += core.o
b6a49a7a 17ifneq ($(CONFIG_SANDBOX),)
6a1c7cef 18obj-$(CONFIG_CLK) += clk.o
bfacad7d 19obj-$(CONFIG_DM_ETH) += eth.o
2e7d35d2 20obj-$(CONFIG_DM_GPIO) += gpio.o
ecc2ed55 21obj-$(CONFIG_DM_I2C) += i2c.o
3c43fba3 22obj-$(CONFIG_LED) += led.o
8e6cc461 23obj-$(CONFIG_DM_MMC) += mmc.o
d3b7ff14 24obj-$(CONFIG_DM_PCI) += pci.o
64ce0cad 25obj-$(CONFIG_RAM) += ram.o
86075bab 26obj-y += regmap.o
201c29a2 27obj-$(CONFIG_RESET) += reset.o
47725114 28obj-$(CONFIG_DM_RTC) += rtc.o
eb374221
JH
29obj-$(CONFIG_DM_SPI_FLASH) += sf.o
30obj-$(CONFIG_DM_SPI) += spi.o
04035fd3 31obj-y += syscon.o
e00cb223 32obj-$(CONFIG_DM_USB) += usb.o
e8f339e0
PM
33obj-$(CONFIG_DM_PMIC) += pmic.o
34obj-$(CONFIG_DM_REGULATOR) += regulator.o
b6a49a7a 35endif