diff options
author | Jean-Jacques Hiblot | 2020-10-16 16:16:34 +0530 |
---|---|---|
committer | Tom Rini | 2020-10-28 11:49:31 -0400 |
commit | 739592ccbbf6d2067e5aced1750b43a6d11fcdcf (patch) | |
tree | e7cb0b5388860556712b1d83fbecfa2208ee9b25 /test/dm/Makefile | |
parent | 4145fc189c8a2cc279933ef57888dcf3d7aa463f (diff) |
test: Add tests for the multiplexer framework
Provide tests to check the behavior of the multiplexer framework.
Two sets of tests are added. One is using an emulated multiplexer driver
that can be used to test basic functionality like select, deselect, etc.
The other is using the mmio mux which adds tests specific to it.
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Signed-off-by: Pratyush Yadav <p.yadav@ti.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/dm/Makefile')
-rw-r--r-- | test/dm/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/dm/Makefile b/test/dm/Makefile index e2b07983885..93484b48ebf 100644 --- a/test/dm/Makefile +++ b/test/dm/Makefile @@ -57,6 +57,8 @@ obj-$(CONFIG_DM_SPI_FLASH) += sf.o obj-$(CONFIG_SMEM) += smem.o obj-$(CONFIG_DM_SPI) += spi.o obj-y += syscon.o +obj-$(CONFIG_MUX_MMIO) += mux-mmio.o +obj-$(CONFIG_MULTIPLEXER) += mux-emul.o obj-$(CONFIG_DM_USB) += usb.o obj-$(CONFIG_DM_PMIC) += pmic.o obj-$(CONFIG_DM_REGULATOR) += regulator.o |